fold-const.c (fold_unary_loc): Move abs(abs(x)) -> abs(x)...
[gcc.git] / gcc / fold-const.c
1 /* Fold a constant sub-tree into a single node for C-compiler
2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 /*@@ This file should be rewritten to use an arbitrary precision
21 @@ representation for "struct tree_int_cst" and "struct tree_real_cst".
22 @@ Perhaps the routines could also be used for bc/dc, and made a lib.
23 @@ The routines that translate from the ap rep should
24 @@ warn if precision et. al. is lost.
25 @@ This would also make life easier when this technology is used
26 @@ for cross-compilers. */
27
28 /* The entry points in this file are fold, size_int_wide and size_binop.
29
30 fold takes a tree as argument and returns a simplified tree.
31
32 size_binop takes a tree code for an arithmetic operation
33 and two operands that are trees, and produces a tree for the
34 result, assuming the type comes from `sizetype'.
35
36 size_int takes an integer value, and creates a tree constant
37 with type from `sizetype'.
38
39 Note: Since the folders get called on non-gimple code as well as
40 gimple code, we need to handle GIMPLE tuples as well as their
41 corresponding tree equivalents. */
42
43 #include "config.h"
44 #include "system.h"
45 #include "coretypes.h"
46 #include "tm.h"
47 #include "flags.h"
48 #include "alias.h"
49 #include "symtab.h"
50 #include "tree.h"
51 #include "fold-const.h"
52 #include "stor-layout.h"
53 #include "calls.h"
54 #include "tree-iterator.h"
55 #include "realmpfr.h"
56 #include "rtl.h"
57 #include "hard-reg-set.h"
58 #include "function.h"
59 #include "insn-config.h"
60 #include "expmed.h"
61 #include "dojump.h"
62 #include "explow.h"
63 #include "emit-rtl.h"
64 #include "varasm.h"
65 #include "stmt.h"
66 #include "expr.h"
67 #include "tm_p.h"
68 #include "target.h"
69 #include "diagnostic-core.h"
70 #include "intl.h"
71 #include "langhooks.h"
72 #include "md5.h"
73 #include "predict.h"
74 #include "basic-block.h"
75 #include "tree-ssa-alias.h"
76 #include "internal-fn.h"
77 #include "tree-eh.h"
78 #include "gimple-expr.h"
79 #include "gimple.h"
80 #include "gimplify.h"
81 #include "tree-dfa.h"
82 #include "builtins.h"
83 #include "cgraph.h"
84 #include "generic-match.h"
85 #include "optabs.h"
86
87 /* Nonzero if we are folding constants inside an initializer; zero
88 otherwise. */
89 int folding_initializer = 0;
90
91 /* The following constants represent a bit based encoding of GCC's
92 comparison operators. This encoding simplifies transformations
93 on relational comparison operators, such as AND and OR. */
94 enum comparison_code {
95 COMPCODE_FALSE = 0,
96 COMPCODE_LT = 1,
97 COMPCODE_EQ = 2,
98 COMPCODE_LE = 3,
99 COMPCODE_GT = 4,
100 COMPCODE_LTGT = 5,
101 COMPCODE_GE = 6,
102 COMPCODE_ORD = 7,
103 COMPCODE_UNORD = 8,
104 COMPCODE_UNLT = 9,
105 COMPCODE_UNEQ = 10,
106 COMPCODE_UNLE = 11,
107 COMPCODE_UNGT = 12,
108 COMPCODE_NE = 13,
109 COMPCODE_UNGE = 14,
110 COMPCODE_TRUE = 15
111 };
112
113 static bool negate_mathfn_p (enum built_in_function);
114 static bool negate_expr_p (tree);
115 static tree negate_expr (tree);
116 static tree split_tree (tree, enum tree_code, tree *, tree *, tree *, int);
117 static tree associate_trees (location_t, tree, tree, enum tree_code, tree);
118 static enum comparison_code comparison_to_compcode (enum tree_code);
119 static enum tree_code compcode_to_comparison (enum comparison_code);
120 static int operand_equal_for_comparison_p (tree, tree, tree);
121 static int twoval_comparison_p (tree, tree *, tree *, int *);
122 static tree eval_subst (location_t, tree, tree, tree, tree, tree);
123 static tree distribute_bit_expr (location_t, enum tree_code, tree, tree, tree);
124 static tree make_bit_field_ref (location_t, tree, tree,
125 HOST_WIDE_INT, HOST_WIDE_INT, int);
126 static tree optimize_bit_field_compare (location_t, enum tree_code,
127 tree, tree, tree);
128 static tree decode_field_reference (location_t, tree, HOST_WIDE_INT *,
129 HOST_WIDE_INT *,
130 machine_mode *, int *, int *,
131 tree *, tree *);
132 static int simple_operand_p (const_tree);
133 static bool simple_operand_p_2 (tree);
134 static tree range_binop (enum tree_code, tree, tree, int, tree, int);
135 static tree range_predecessor (tree);
136 static tree range_successor (tree);
137 static tree fold_range_test (location_t, enum tree_code, tree, tree, tree);
138 static tree fold_cond_expr_with_comparison (location_t, tree, tree, tree, tree);
139 static tree unextend (tree, int, int, tree);
140 static tree optimize_minmax_comparison (location_t, enum tree_code,
141 tree, tree, tree);
142 static tree extract_muldiv (tree, tree, enum tree_code, tree, bool *);
143 static tree extract_muldiv_1 (tree, tree, enum tree_code, tree, bool *);
144 static tree fold_binary_op_with_conditional_arg (location_t,
145 enum tree_code, tree,
146 tree, tree,
147 tree, tree, int);
148 static tree fold_mathfn_compare (location_t,
149 enum built_in_function, enum tree_code,
150 tree, tree, tree);
151 static tree fold_inf_compare (location_t, enum tree_code, tree, tree, tree);
152 static tree fold_div_compare (location_t, enum tree_code, tree, tree, tree);
153 static bool reorder_operands_p (const_tree, const_tree);
154 static tree fold_negate_const (tree, tree);
155 static tree fold_not_const (const_tree, tree);
156 static tree fold_relational_const (enum tree_code, tree, tree, tree);
157 static tree fold_convert_const (enum tree_code, tree, tree);
158 static tree fold_view_convert_expr (tree, tree);
159 static bool vec_cst_ctor_to_array (tree, tree *);
160
161
162 /* Return EXPR_LOCATION of T if it is not UNKNOWN_LOCATION.
163 Otherwise, return LOC. */
164
165 static location_t
166 expr_location_or (tree t, location_t loc)
167 {
168 location_t tloc = EXPR_LOCATION (t);
169 return tloc == UNKNOWN_LOCATION ? loc : tloc;
170 }
171
172 /* Similar to protected_set_expr_location, but never modify x in place,
173 if location can and needs to be set, unshare it. */
174
175 static inline tree
176 protected_set_expr_location_unshare (tree x, location_t loc)
177 {
178 if (CAN_HAVE_LOCATION_P (x)
179 && EXPR_LOCATION (x) != loc
180 && !(TREE_CODE (x) == SAVE_EXPR
181 || TREE_CODE (x) == TARGET_EXPR
182 || TREE_CODE (x) == BIND_EXPR))
183 {
184 x = copy_node (x);
185 SET_EXPR_LOCATION (x, loc);
186 }
187 return x;
188 }
189 \f
190 /* If ARG2 divides ARG1 with zero remainder, carries out the exact
191 division and returns the quotient. Otherwise returns
192 NULL_TREE. */
193
194 tree
195 div_if_zero_remainder (const_tree arg1, const_tree arg2)
196 {
197 widest_int quo;
198
199 if (wi::multiple_of_p (wi::to_widest (arg1), wi::to_widest (arg2),
200 SIGNED, &quo))
201 return wide_int_to_tree (TREE_TYPE (arg1), quo);
202
203 return NULL_TREE;
204 }
205 \f
206 /* This is nonzero if we should defer warnings about undefined
207 overflow. This facility exists because these warnings are a
208 special case. The code to estimate loop iterations does not want
209 to issue any warnings, since it works with expressions which do not
210 occur in user code. Various bits of cleanup code call fold(), but
211 only use the result if it has certain characteristics (e.g., is a
212 constant); that code only wants to issue a warning if the result is
213 used. */
214
215 static int fold_deferring_overflow_warnings;
216
217 /* If a warning about undefined overflow is deferred, this is the
218 warning. Note that this may cause us to turn two warnings into
219 one, but that is fine since it is sufficient to only give one
220 warning per expression. */
221
222 static const char* fold_deferred_overflow_warning;
223
224 /* If a warning about undefined overflow is deferred, this is the
225 level at which the warning should be emitted. */
226
227 static enum warn_strict_overflow_code fold_deferred_overflow_code;
228
229 /* Start deferring overflow warnings. We could use a stack here to
230 permit nested calls, but at present it is not necessary. */
231
232 void
233 fold_defer_overflow_warnings (void)
234 {
235 ++fold_deferring_overflow_warnings;
236 }
237
238 /* Stop deferring overflow warnings. If there is a pending warning,
239 and ISSUE is true, then issue the warning if appropriate. STMT is
240 the statement with which the warning should be associated (used for
241 location information); STMT may be NULL. CODE is the level of the
242 warning--a warn_strict_overflow_code value. This function will use
243 the smaller of CODE and the deferred code when deciding whether to
244 issue the warning. CODE may be zero to mean to always use the
245 deferred code. */
246
247 void
248 fold_undefer_overflow_warnings (bool issue, const_gimple stmt, int code)
249 {
250 const char *warnmsg;
251 location_t locus;
252
253 gcc_assert (fold_deferring_overflow_warnings > 0);
254 --fold_deferring_overflow_warnings;
255 if (fold_deferring_overflow_warnings > 0)
256 {
257 if (fold_deferred_overflow_warning != NULL
258 && code != 0
259 && code < (int) fold_deferred_overflow_code)
260 fold_deferred_overflow_code = (enum warn_strict_overflow_code) code;
261 return;
262 }
263
264 warnmsg = fold_deferred_overflow_warning;
265 fold_deferred_overflow_warning = NULL;
266
267 if (!issue || warnmsg == NULL)
268 return;
269
270 if (gimple_no_warning_p (stmt))
271 return;
272
273 /* Use the smallest code level when deciding to issue the
274 warning. */
275 if (code == 0 || code > (int) fold_deferred_overflow_code)
276 code = fold_deferred_overflow_code;
277
278 if (!issue_strict_overflow_warning (code))
279 return;
280
281 if (stmt == NULL)
282 locus = input_location;
283 else
284 locus = gimple_location (stmt);
285 warning_at (locus, OPT_Wstrict_overflow, "%s", warnmsg);
286 }
287
288 /* Stop deferring overflow warnings, ignoring any deferred
289 warnings. */
290
291 void
292 fold_undefer_and_ignore_overflow_warnings (void)
293 {
294 fold_undefer_overflow_warnings (false, NULL, 0);
295 }
296
297 /* Whether we are deferring overflow warnings. */
298
299 bool
300 fold_deferring_overflow_warnings_p (void)
301 {
302 return fold_deferring_overflow_warnings > 0;
303 }
304
305 /* This is called when we fold something based on the fact that signed
306 overflow is undefined. */
307
308 static void
309 fold_overflow_warning (const char* gmsgid, enum warn_strict_overflow_code wc)
310 {
311 if (fold_deferring_overflow_warnings > 0)
312 {
313 if (fold_deferred_overflow_warning == NULL
314 || wc < fold_deferred_overflow_code)
315 {
316 fold_deferred_overflow_warning = gmsgid;
317 fold_deferred_overflow_code = wc;
318 }
319 }
320 else if (issue_strict_overflow_warning (wc))
321 warning (OPT_Wstrict_overflow, gmsgid);
322 }
323 \f
324 /* Return true if the built-in mathematical function specified by CODE
325 is odd, i.e. -f(x) == f(-x). */
326
327 static bool
328 negate_mathfn_p (enum built_in_function code)
329 {
330 switch (code)
331 {
332 CASE_FLT_FN (BUILT_IN_ASIN):
333 CASE_FLT_FN (BUILT_IN_ASINH):
334 CASE_FLT_FN (BUILT_IN_ATAN):
335 CASE_FLT_FN (BUILT_IN_ATANH):
336 CASE_FLT_FN (BUILT_IN_CASIN):
337 CASE_FLT_FN (BUILT_IN_CASINH):
338 CASE_FLT_FN (BUILT_IN_CATAN):
339 CASE_FLT_FN (BUILT_IN_CATANH):
340 CASE_FLT_FN (BUILT_IN_CBRT):
341 CASE_FLT_FN (BUILT_IN_CPROJ):
342 CASE_FLT_FN (BUILT_IN_CSIN):
343 CASE_FLT_FN (BUILT_IN_CSINH):
344 CASE_FLT_FN (BUILT_IN_CTAN):
345 CASE_FLT_FN (BUILT_IN_CTANH):
346 CASE_FLT_FN (BUILT_IN_ERF):
347 CASE_FLT_FN (BUILT_IN_LLROUND):
348 CASE_FLT_FN (BUILT_IN_LROUND):
349 CASE_FLT_FN (BUILT_IN_ROUND):
350 CASE_FLT_FN (BUILT_IN_SIN):
351 CASE_FLT_FN (BUILT_IN_SINH):
352 CASE_FLT_FN (BUILT_IN_TAN):
353 CASE_FLT_FN (BUILT_IN_TANH):
354 CASE_FLT_FN (BUILT_IN_TRUNC):
355 return true;
356
357 CASE_FLT_FN (BUILT_IN_LLRINT):
358 CASE_FLT_FN (BUILT_IN_LRINT):
359 CASE_FLT_FN (BUILT_IN_NEARBYINT):
360 CASE_FLT_FN (BUILT_IN_RINT):
361 return !flag_rounding_math;
362
363 default:
364 break;
365 }
366 return false;
367 }
368
369 /* Check whether we may negate an integer constant T without causing
370 overflow. */
371
372 bool
373 may_negate_without_overflow_p (const_tree t)
374 {
375 tree type;
376
377 gcc_assert (TREE_CODE (t) == INTEGER_CST);
378
379 type = TREE_TYPE (t);
380 if (TYPE_UNSIGNED (type))
381 return false;
382
383 return !wi::only_sign_bit_p (t);
384 }
385
386 /* Determine whether an expression T can be cheaply negated using
387 the function negate_expr without introducing undefined overflow. */
388
389 static bool
390 negate_expr_p (tree t)
391 {
392 tree type;
393
394 if (t == 0)
395 return false;
396
397 type = TREE_TYPE (t);
398
399 STRIP_SIGN_NOPS (t);
400 switch (TREE_CODE (t))
401 {
402 case INTEGER_CST:
403 if (INTEGRAL_TYPE_P (type) && TYPE_OVERFLOW_WRAPS (type))
404 return true;
405
406 /* Check that -CST will not overflow type. */
407 return may_negate_without_overflow_p (t);
408 case BIT_NOT_EXPR:
409 return (INTEGRAL_TYPE_P (type)
410 && TYPE_OVERFLOW_WRAPS (type));
411
412 case FIXED_CST:
413 return true;
414
415 case NEGATE_EXPR:
416 return !TYPE_OVERFLOW_SANITIZED (type);
417
418 case REAL_CST:
419 /* We want to canonicalize to positive real constants. Pretend
420 that only negative ones can be easily negated. */
421 return REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
422
423 case COMPLEX_CST:
424 return negate_expr_p (TREE_REALPART (t))
425 && negate_expr_p (TREE_IMAGPART (t));
426
427 case VECTOR_CST:
428 {
429 if (FLOAT_TYPE_P (TREE_TYPE (type)) || TYPE_OVERFLOW_WRAPS (type))
430 return true;
431
432 int count = TYPE_VECTOR_SUBPARTS (type), i;
433
434 for (i = 0; i < count; i++)
435 if (!negate_expr_p (VECTOR_CST_ELT (t, i)))
436 return false;
437
438 return true;
439 }
440
441 case COMPLEX_EXPR:
442 return negate_expr_p (TREE_OPERAND (t, 0))
443 && negate_expr_p (TREE_OPERAND (t, 1));
444
445 case CONJ_EXPR:
446 return negate_expr_p (TREE_OPERAND (t, 0));
447
448 case PLUS_EXPR:
449 if (HONOR_SIGN_DEPENDENT_ROUNDING (element_mode (type))
450 || HONOR_SIGNED_ZEROS (element_mode (type)))
451 return false;
452 /* -(A + B) -> (-B) - A. */
453 if (negate_expr_p (TREE_OPERAND (t, 1))
454 && reorder_operands_p (TREE_OPERAND (t, 0),
455 TREE_OPERAND (t, 1)))
456 return true;
457 /* -(A + B) -> (-A) - B. */
458 return negate_expr_p (TREE_OPERAND (t, 0));
459
460 case MINUS_EXPR:
461 /* We can't turn -(A-B) into B-A when we honor signed zeros. */
462 return !HONOR_SIGN_DEPENDENT_ROUNDING (element_mode (type))
463 && !HONOR_SIGNED_ZEROS (element_mode (type))
464 && reorder_operands_p (TREE_OPERAND (t, 0),
465 TREE_OPERAND (t, 1));
466
467 case MULT_EXPR:
468 if (TYPE_UNSIGNED (TREE_TYPE (t)))
469 break;
470
471 /* Fall through. */
472
473 case RDIV_EXPR:
474 if (! HONOR_SIGN_DEPENDENT_ROUNDING (element_mode (TREE_TYPE (t))))
475 return negate_expr_p (TREE_OPERAND (t, 1))
476 || negate_expr_p (TREE_OPERAND (t, 0));
477 break;
478
479 case TRUNC_DIV_EXPR:
480 case ROUND_DIV_EXPR:
481 case EXACT_DIV_EXPR:
482 /* In general we can't negate A / B, because if A is INT_MIN and
483 B is 1, we may turn this into INT_MIN / -1 which is undefined
484 and actually traps on some architectures. But if overflow is
485 undefined, we can negate, because - (INT_MIN / 1) is an
486 overflow. */
487 if (INTEGRAL_TYPE_P (TREE_TYPE (t)))
488 {
489 if (!TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (t)))
490 break;
491 /* If overflow is undefined then we have to be careful because
492 we ask whether it's ok to associate the negate with the
493 division which is not ok for example for
494 -((a - b) / c) where (-(a - b)) / c may invoke undefined
495 overflow because of negating INT_MIN. So do not use
496 negate_expr_p here but open-code the two important cases. */
497 if (TREE_CODE (TREE_OPERAND (t, 0)) == NEGATE_EXPR
498 || (TREE_CODE (TREE_OPERAND (t, 0)) == INTEGER_CST
499 && may_negate_without_overflow_p (TREE_OPERAND (t, 0))))
500 return true;
501 }
502 else if (negate_expr_p (TREE_OPERAND (t, 0)))
503 return true;
504 return negate_expr_p (TREE_OPERAND (t, 1));
505
506 case NOP_EXPR:
507 /* Negate -((double)float) as (double)(-float). */
508 if (TREE_CODE (type) == REAL_TYPE)
509 {
510 tree tem = strip_float_extensions (t);
511 if (tem != t)
512 return negate_expr_p (tem);
513 }
514 break;
515
516 case CALL_EXPR:
517 /* Negate -f(x) as f(-x). */
518 if (negate_mathfn_p (builtin_mathfn_code (t)))
519 return negate_expr_p (CALL_EXPR_ARG (t, 0));
520 break;
521
522 case RSHIFT_EXPR:
523 /* Optimize -((int)x >> 31) into (unsigned)x >> 31 for int. */
524 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
525 {
526 tree op1 = TREE_OPERAND (t, 1);
527 if (wi::eq_p (op1, TYPE_PRECISION (type) - 1))
528 return true;
529 }
530 break;
531
532 default:
533 break;
534 }
535 return false;
536 }
537
538 /* Given T, an expression, return a folded tree for -T or NULL_TREE, if no
539 simplification is possible.
540 If negate_expr_p would return true for T, NULL_TREE will never be
541 returned. */
542
543 static tree
544 fold_negate_expr (location_t loc, tree t)
545 {
546 tree type = TREE_TYPE (t);
547 tree tem;
548
549 switch (TREE_CODE (t))
550 {
551 /* Convert - (~A) to A + 1. */
552 case BIT_NOT_EXPR:
553 if (INTEGRAL_TYPE_P (type))
554 return fold_build2_loc (loc, PLUS_EXPR, type, TREE_OPERAND (t, 0),
555 build_one_cst (type));
556 break;
557
558 case INTEGER_CST:
559 tem = fold_negate_const (t, type);
560 if (TREE_OVERFLOW (tem) == TREE_OVERFLOW (t)
561 || (ANY_INTEGRAL_TYPE_P (type)
562 && !TYPE_OVERFLOW_TRAPS (type)
563 && TYPE_OVERFLOW_WRAPS (type))
564 || (flag_sanitize & SANITIZE_SI_OVERFLOW) == 0)
565 return tem;
566 break;
567
568 case REAL_CST:
569 tem = fold_negate_const (t, type);
570 return tem;
571
572 case FIXED_CST:
573 tem = fold_negate_const (t, type);
574 return tem;
575
576 case COMPLEX_CST:
577 {
578 tree rpart = fold_negate_expr (loc, TREE_REALPART (t));
579 tree ipart = fold_negate_expr (loc, TREE_IMAGPART (t));
580 if (rpart && ipart)
581 return build_complex (type, rpart, ipart);
582 }
583 break;
584
585 case VECTOR_CST:
586 {
587 int count = TYPE_VECTOR_SUBPARTS (type), i;
588 tree *elts = XALLOCAVEC (tree, count);
589
590 for (i = 0; i < count; i++)
591 {
592 elts[i] = fold_negate_expr (loc, VECTOR_CST_ELT (t, i));
593 if (elts[i] == NULL_TREE)
594 return NULL_TREE;
595 }
596
597 return build_vector (type, elts);
598 }
599
600 case COMPLEX_EXPR:
601 if (negate_expr_p (t))
602 return fold_build2_loc (loc, COMPLEX_EXPR, type,
603 fold_negate_expr (loc, TREE_OPERAND (t, 0)),
604 fold_negate_expr (loc, TREE_OPERAND (t, 1)));
605 break;
606
607 case CONJ_EXPR:
608 if (negate_expr_p (t))
609 return fold_build1_loc (loc, CONJ_EXPR, type,
610 fold_negate_expr (loc, TREE_OPERAND (t, 0)));
611 break;
612
613 case NEGATE_EXPR:
614 if (!TYPE_OVERFLOW_SANITIZED (type))
615 return TREE_OPERAND (t, 0);
616 break;
617
618 case PLUS_EXPR:
619 if (!HONOR_SIGN_DEPENDENT_ROUNDING (element_mode (type))
620 && !HONOR_SIGNED_ZEROS (element_mode (type)))
621 {
622 /* -(A + B) -> (-B) - A. */
623 if (negate_expr_p (TREE_OPERAND (t, 1))
624 && reorder_operands_p (TREE_OPERAND (t, 0),
625 TREE_OPERAND (t, 1)))
626 {
627 tem = negate_expr (TREE_OPERAND (t, 1));
628 return fold_build2_loc (loc, MINUS_EXPR, type,
629 tem, TREE_OPERAND (t, 0));
630 }
631
632 /* -(A + B) -> (-A) - B. */
633 if (negate_expr_p (TREE_OPERAND (t, 0)))
634 {
635 tem = negate_expr (TREE_OPERAND (t, 0));
636 return fold_build2_loc (loc, MINUS_EXPR, type,
637 tem, TREE_OPERAND (t, 1));
638 }
639 }
640 break;
641
642 case MINUS_EXPR:
643 /* - (A - B) -> B - A */
644 if (!HONOR_SIGN_DEPENDENT_ROUNDING (element_mode (type))
645 && !HONOR_SIGNED_ZEROS (element_mode (type))
646 && reorder_operands_p (TREE_OPERAND (t, 0), TREE_OPERAND (t, 1)))
647 return fold_build2_loc (loc, MINUS_EXPR, type,
648 TREE_OPERAND (t, 1), TREE_OPERAND (t, 0));
649 break;
650
651 case MULT_EXPR:
652 if (TYPE_UNSIGNED (type))
653 break;
654
655 /* Fall through. */
656
657 case RDIV_EXPR:
658 if (! HONOR_SIGN_DEPENDENT_ROUNDING (element_mode (type)))
659 {
660 tem = TREE_OPERAND (t, 1);
661 if (negate_expr_p (tem))
662 return fold_build2_loc (loc, TREE_CODE (t), type,
663 TREE_OPERAND (t, 0), negate_expr (tem));
664 tem = TREE_OPERAND (t, 0);
665 if (negate_expr_p (tem))
666 return fold_build2_loc (loc, TREE_CODE (t), type,
667 negate_expr (tem), TREE_OPERAND (t, 1));
668 }
669 break;
670
671 case TRUNC_DIV_EXPR:
672 case ROUND_DIV_EXPR:
673 case EXACT_DIV_EXPR:
674 /* In general we can't negate A / B, because if A is INT_MIN and
675 B is 1, we may turn this into INT_MIN / -1 which is undefined
676 and actually traps on some architectures. But if overflow is
677 undefined, we can negate, because - (INT_MIN / 1) is an
678 overflow. */
679 if (!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
680 {
681 const char * const warnmsg = G_("assuming signed overflow does not "
682 "occur when negating a division");
683 tem = TREE_OPERAND (t, 1);
684 if (negate_expr_p (tem))
685 {
686 if (INTEGRAL_TYPE_P (type)
687 && (TREE_CODE (tem) != INTEGER_CST
688 || integer_onep (tem)))
689 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MISC);
690 return fold_build2_loc (loc, TREE_CODE (t), type,
691 TREE_OPERAND (t, 0), negate_expr (tem));
692 }
693 /* If overflow is undefined then we have to be careful because
694 we ask whether it's ok to associate the negate with the
695 division which is not ok for example for
696 -((a - b) / c) where (-(a - b)) / c may invoke undefined
697 overflow because of negating INT_MIN. So do not use
698 negate_expr_p here but open-code the two important cases. */
699 tem = TREE_OPERAND (t, 0);
700 if ((INTEGRAL_TYPE_P (type)
701 && (TREE_CODE (tem) == NEGATE_EXPR
702 || (TREE_CODE (tem) == INTEGER_CST
703 && may_negate_without_overflow_p (tem))))
704 || !INTEGRAL_TYPE_P (type))
705 return fold_build2_loc (loc, TREE_CODE (t), type,
706 negate_expr (tem), TREE_OPERAND (t, 1));
707 }
708 break;
709
710 case NOP_EXPR:
711 /* Convert -((double)float) into (double)(-float). */
712 if (TREE_CODE (type) == REAL_TYPE)
713 {
714 tem = strip_float_extensions (t);
715 if (tem != t && negate_expr_p (tem))
716 return fold_convert_loc (loc, type, negate_expr (tem));
717 }
718 break;
719
720 case CALL_EXPR:
721 /* Negate -f(x) as f(-x). */
722 if (negate_mathfn_p (builtin_mathfn_code (t))
723 && negate_expr_p (CALL_EXPR_ARG (t, 0)))
724 {
725 tree fndecl, arg;
726
727 fndecl = get_callee_fndecl (t);
728 arg = negate_expr (CALL_EXPR_ARG (t, 0));
729 return build_call_expr_loc (loc, fndecl, 1, arg);
730 }
731 break;
732
733 case RSHIFT_EXPR:
734 /* Optimize -((int)x >> 31) into (unsigned)x >> 31 for int. */
735 if (TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST)
736 {
737 tree op1 = TREE_OPERAND (t, 1);
738 if (wi::eq_p (op1, TYPE_PRECISION (type) - 1))
739 {
740 tree ntype = TYPE_UNSIGNED (type)
741 ? signed_type_for (type)
742 : unsigned_type_for (type);
743 tree temp = fold_convert_loc (loc, ntype, TREE_OPERAND (t, 0));
744 temp = fold_build2_loc (loc, RSHIFT_EXPR, ntype, temp, op1);
745 return fold_convert_loc (loc, type, temp);
746 }
747 }
748 break;
749
750 default:
751 break;
752 }
753
754 return NULL_TREE;
755 }
756
757 /* Like fold_negate_expr, but return a NEGATE_EXPR tree, if T can not be
758 negated in a simpler way. Also allow for T to be NULL_TREE, in which case
759 return NULL_TREE. */
760
761 static tree
762 negate_expr (tree t)
763 {
764 tree type, tem;
765 location_t loc;
766
767 if (t == NULL_TREE)
768 return NULL_TREE;
769
770 loc = EXPR_LOCATION (t);
771 type = TREE_TYPE (t);
772 STRIP_SIGN_NOPS (t);
773
774 tem = fold_negate_expr (loc, t);
775 if (!tem)
776 tem = build1_loc (loc, NEGATE_EXPR, TREE_TYPE (t), t);
777 return fold_convert_loc (loc, type, tem);
778 }
779 \f
780 /* Split a tree IN into a constant, literal and variable parts that could be
781 combined with CODE to make IN. "constant" means an expression with
782 TREE_CONSTANT but that isn't an actual constant. CODE must be a
783 commutative arithmetic operation. Store the constant part into *CONP,
784 the literal in *LITP and return the variable part. If a part isn't
785 present, set it to null. If the tree does not decompose in this way,
786 return the entire tree as the variable part and the other parts as null.
787
788 If CODE is PLUS_EXPR we also split trees that use MINUS_EXPR. In that
789 case, we negate an operand that was subtracted. Except if it is a
790 literal for which we use *MINUS_LITP instead.
791
792 If NEGATE_P is true, we are negating all of IN, again except a literal
793 for which we use *MINUS_LITP instead.
794
795 If IN is itself a literal or constant, return it as appropriate.
796
797 Note that we do not guarantee that any of the three values will be the
798 same type as IN, but they will have the same signedness and mode. */
799
800 static tree
801 split_tree (tree in, enum tree_code code, tree *conp, tree *litp,
802 tree *minus_litp, int negate_p)
803 {
804 tree var = 0;
805
806 *conp = 0;
807 *litp = 0;
808 *minus_litp = 0;
809
810 /* Strip any conversions that don't change the machine mode or signedness. */
811 STRIP_SIGN_NOPS (in);
812
813 if (TREE_CODE (in) == INTEGER_CST || TREE_CODE (in) == REAL_CST
814 || TREE_CODE (in) == FIXED_CST)
815 *litp = in;
816 else if (TREE_CODE (in) == code
817 || ((! FLOAT_TYPE_P (TREE_TYPE (in)) || flag_associative_math)
818 && ! SAT_FIXED_POINT_TYPE_P (TREE_TYPE (in))
819 /* We can associate addition and subtraction together (even
820 though the C standard doesn't say so) for integers because
821 the value is not affected. For reals, the value might be
822 affected, so we can't. */
823 && ((code == PLUS_EXPR && TREE_CODE (in) == MINUS_EXPR)
824 || (code == MINUS_EXPR && TREE_CODE (in) == PLUS_EXPR))))
825 {
826 tree op0 = TREE_OPERAND (in, 0);
827 tree op1 = TREE_OPERAND (in, 1);
828 int neg1_p = TREE_CODE (in) == MINUS_EXPR;
829 int neg_litp_p = 0, neg_conp_p = 0, neg_var_p = 0;
830
831 /* First see if either of the operands is a literal, then a constant. */
832 if (TREE_CODE (op0) == INTEGER_CST || TREE_CODE (op0) == REAL_CST
833 || TREE_CODE (op0) == FIXED_CST)
834 *litp = op0, op0 = 0;
835 else if (TREE_CODE (op1) == INTEGER_CST || TREE_CODE (op1) == REAL_CST
836 || TREE_CODE (op1) == FIXED_CST)
837 *litp = op1, neg_litp_p = neg1_p, op1 = 0;
838
839 if (op0 != 0 && TREE_CONSTANT (op0))
840 *conp = op0, op0 = 0;
841 else if (op1 != 0 && TREE_CONSTANT (op1))
842 *conp = op1, neg_conp_p = neg1_p, op1 = 0;
843
844 /* If we haven't dealt with either operand, this is not a case we can
845 decompose. Otherwise, VAR is either of the ones remaining, if any. */
846 if (op0 != 0 && op1 != 0)
847 var = in;
848 else if (op0 != 0)
849 var = op0;
850 else
851 var = op1, neg_var_p = neg1_p;
852
853 /* Now do any needed negations. */
854 if (neg_litp_p)
855 *minus_litp = *litp, *litp = 0;
856 if (neg_conp_p)
857 *conp = negate_expr (*conp);
858 if (neg_var_p)
859 var = negate_expr (var);
860 }
861 else if (TREE_CODE (in) == BIT_NOT_EXPR
862 && code == PLUS_EXPR)
863 {
864 /* -X - 1 is folded to ~X, undo that here. */
865 *minus_litp = build_one_cst (TREE_TYPE (in));
866 var = negate_expr (TREE_OPERAND (in, 0));
867 }
868 else if (TREE_CONSTANT (in))
869 *conp = in;
870 else
871 var = in;
872
873 if (negate_p)
874 {
875 if (*litp)
876 *minus_litp = *litp, *litp = 0;
877 else if (*minus_litp)
878 *litp = *minus_litp, *minus_litp = 0;
879 *conp = negate_expr (*conp);
880 var = negate_expr (var);
881 }
882
883 return var;
884 }
885
886 /* Re-associate trees split by the above function. T1 and T2 are
887 either expressions to associate or null. Return the new
888 expression, if any. LOC is the location of the new expression. If
889 we build an operation, do it in TYPE and with CODE. */
890
891 static tree
892 associate_trees (location_t loc, tree t1, tree t2, enum tree_code code, tree type)
893 {
894 if (t1 == 0)
895 return t2;
896 else if (t2 == 0)
897 return t1;
898
899 /* If either input is CODE, a PLUS_EXPR, or a MINUS_EXPR, don't
900 try to fold this since we will have infinite recursion. But do
901 deal with any NEGATE_EXPRs. */
902 if (TREE_CODE (t1) == code || TREE_CODE (t2) == code
903 || TREE_CODE (t1) == MINUS_EXPR || TREE_CODE (t2) == MINUS_EXPR)
904 {
905 if (code == PLUS_EXPR)
906 {
907 if (TREE_CODE (t1) == NEGATE_EXPR)
908 return build2_loc (loc, MINUS_EXPR, type,
909 fold_convert_loc (loc, type, t2),
910 fold_convert_loc (loc, type,
911 TREE_OPERAND (t1, 0)));
912 else if (TREE_CODE (t2) == NEGATE_EXPR)
913 return build2_loc (loc, MINUS_EXPR, type,
914 fold_convert_loc (loc, type, t1),
915 fold_convert_loc (loc, type,
916 TREE_OPERAND (t2, 0)));
917 else if (integer_zerop (t2))
918 return fold_convert_loc (loc, type, t1);
919 }
920 else if (code == MINUS_EXPR)
921 {
922 if (integer_zerop (t2))
923 return fold_convert_loc (loc, type, t1);
924 }
925
926 return build2_loc (loc, code, type, fold_convert_loc (loc, type, t1),
927 fold_convert_loc (loc, type, t2));
928 }
929
930 return fold_build2_loc (loc, code, type, fold_convert_loc (loc, type, t1),
931 fold_convert_loc (loc, type, t2));
932 }
933 \f
934 /* Check whether TYPE1 and TYPE2 are equivalent integer types, suitable
935 for use in int_const_binop, size_binop and size_diffop. */
936
937 static bool
938 int_binop_types_match_p (enum tree_code code, const_tree type1, const_tree type2)
939 {
940 if (!INTEGRAL_TYPE_P (type1) && !POINTER_TYPE_P (type1))
941 return false;
942 if (!INTEGRAL_TYPE_P (type2) && !POINTER_TYPE_P (type2))
943 return false;
944
945 switch (code)
946 {
947 case LSHIFT_EXPR:
948 case RSHIFT_EXPR:
949 case LROTATE_EXPR:
950 case RROTATE_EXPR:
951 return true;
952
953 default:
954 break;
955 }
956
957 return TYPE_UNSIGNED (type1) == TYPE_UNSIGNED (type2)
958 && TYPE_PRECISION (type1) == TYPE_PRECISION (type2)
959 && TYPE_MODE (type1) == TYPE_MODE (type2);
960 }
961
962
963 /* Combine two integer constants ARG1 and ARG2 under operation CODE
964 to produce a new constant. Return NULL_TREE if we don't know how
965 to evaluate CODE at compile-time. */
966
967 static tree
968 int_const_binop_1 (enum tree_code code, const_tree arg1, const_tree parg2,
969 int overflowable)
970 {
971 wide_int res;
972 tree t;
973 tree type = TREE_TYPE (arg1);
974 signop sign = TYPE_SIGN (type);
975 bool overflow = false;
976
977 wide_int arg2 = wide_int::from (parg2, TYPE_PRECISION (type),
978 TYPE_SIGN (TREE_TYPE (parg2)));
979
980 switch (code)
981 {
982 case BIT_IOR_EXPR:
983 res = wi::bit_or (arg1, arg2);
984 break;
985
986 case BIT_XOR_EXPR:
987 res = wi::bit_xor (arg1, arg2);
988 break;
989
990 case BIT_AND_EXPR:
991 res = wi::bit_and (arg1, arg2);
992 break;
993
994 case RSHIFT_EXPR:
995 case LSHIFT_EXPR:
996 if (wi::neg_p (arg2))
997 {
998 arg2 = -arg2;
999 if (code == RSHIFT_EXPR)
1000 code = LSHIFT_EXPR;
1001 else
1002 code = RSHIFT_EXPR;
1003 }
1004
1005 if (code == RSHIFT_EXPR)
1006 /* It's unclear from the C standard whether shifts can overflow.
1007 The following code ignores overflow; perhaps a C standard
1008 interpretation ruling is needed. */
1009 res = wi::rshift (arg1, arg2, sign);
1010 else
1011 res = wi::lshift (arg1, arg2);
1012 break;
1013
1014 case RROTATE_EXPR:
1015 case LROTATE_EXPR:
1016 if (wi::neg_p (arg2))
1017 {
1018 arg2 = -arg2;
1019 if (code == RROTATE_EXPR)
1020 code = LROTATE_EXPR;
1021 else
1022 code = RROTATE_EXPR;
1023 }
1024
1025 if (code == RROTATE_EXPR)
1026 res = wi::rrotate (arg1, arg2);
1027 else
1028 res = wi::lrotate (arg1, arg2);
1029 break;
1030
1031 case PLUS_EXPR:
1032 res = wi::add (arg1, arg2, sign, &overflow);
1033 break;
1034
1035 case MINUS_EXPR:
1036 res = wi::sub (arg1, arg2, sign, &overflow);
1037 break;
1038
1039 case MULT_EXPR:
1040 res = wi::mul (arg1, arg2, sign, &overflow);
1041 break;
1042
1043 case MULT_HIGHPART_EXPR:
1044 res = wi::mul_high (arg1, arg2, sign);
1045 break;
1046
1047 case TRUNC_DIV_EXPR:
1048 case EXACT_DIV_EXPR:
1049 if (arg2 == 0)
1050 return NULL_TREE;
1051 res = wi::div_trunc (arg1, arg2, sign, &overflow);
1052 break;
1053
1054 case FLOOR_DIV_EXPR:
1055 if (arg2 == 0)
1056 return NULL_TREE;
1057 res = wi::div_floor (arg1, arg2, sign, &overflow);
1058 break;
1059
1060 case CEIL_DIV_EXPR:
1061 if (arg2 == 0)
1062 return NULL_TREE;
1063 res = wi::div_ceil (arg1, arg2, sign, &overflow);
1064 break;
1065
1066 case ROUND_DIV_EXPR:
1067 if (arg2 == 0)
1068 return NULL_TREE;
1069 res = wi::div_round (arg1, arg2, sign, &overflow);
1070 break;
1071
1072 case TRUNC_MOD_EXPR:
1073 if (arg2 == 0)
1074 return NULL_TREE;
1075 res = wi::mod_trunc (arg1, arg2, sign, &overflow);
1076 break;
1077
1078 case FLOOR_MOD_EXPR:
1079 if (arg2 == 0)
1080 return NULL_TREE;
1081 res = wi::mod_floor (arg1, arg2, sign, &overflow);
1082 break;
1083
1084 case CEIL_MOD_EXPR:
1085 if (arg2 == 0)
1086 return NULL_TREE;
1087 res = wi::mod_ceil (arg1, arg2, sign, &overflow);
1088 break;
1089
1090 case ROUND_MOD_EXPR:
1091 if (arg2 == 0)
1092 return NULL_TREE;
1093 res = wi::mod_round (arg1, arg2, sign, &overflow);
1094 break;
1095
1096 case MIN_EXPR:
1097 res = wi::min (arg1, arg2, sign);
1098 break;
1099
1100 case MAX_EXPR:
1101 res = wi::max (arg1, arg2, sign);
1102 break;
1103
1104 default:
1105 return NULL_TREE;
1106 }
1107
1108 t = force_fit_type (type, res, overflowable,
1109 (((sign == SIGNED || overflowable == -1)
1110 && overflow)
1111 | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (parg2)));
1112
1113 return t;
1114 }
1115
1116 tree
1117 int_const_binop (enum tree_code code, const_tree arg1, const_tree arg2)
1118 {
1119 return int_const_binop_1 (code, arg1, arg2, 1);
1120 }
1121
1122 /* Combine two constants ARG1 and ARG2 under operation CODE to produce a new
1123 constant. We assume ARG1 and ARG2 have the same data type, or at least
1124 are the same kind of constant and the same machine mode. Return zero if
1125 combining the constants is not allowed in the current operating mode. */
1126
1127 static tree
1128 const_binop (enum tree_code code, tree arg1, tree arg2)
1129 {
1130 /* Sanity check for the recursive cases. */
1131 if (!arg1 || !arg2)
1132 return NULL_TREE;
1133
1134 STRIP_NOPS (arg1);
1135 STRIP_NOPS (arg2);
1136
1137 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg2) == INTEGER_CST)
1138 {
1139 if (code == POINTER_PLUS_EXPR)
1140 return int_const_binop (PLUS_EXPR,
1141 arg1, fold_convert (TREE_TYPE (arg1), arg2));
1142
1143 return int_const_binop (code, arg1, arg2);
1144 }
1145
1146 if (TREE_CODE (arg1) == REAL_CST && TREE_CODE (arg2) == REAL_CST)
1147 {
1148 machine_mode mode;
1149 REAL_VALUE_TYPE d1;
1150 REAL_VALUE_TYPE d2;
1151 REAL_VALUE_TYPE value;
1152 REAL_VALUE_TYPE result;
1153 bool inexact;
1154 tree t, type;
1155
1156 /* The following codes are handled by real_arithmetic. */
1157 switch (code)
1158 {
1159 case PLUS_EXPR:
1160 case MINUS_EXPR:
1161 case MULT_EXPR:
1162 case RDIV_EXPR:
1163 case MIN_EXPR:
1164 case MAX_EXPR:
1165 break;
1166
1167 default:
1168 return NULL_TREE;
1169 }
1170
1171 d1 = TREE_REAL_CST (arg1);
1172 d2 = TREE_REAL_CST (arg2);
1173
1174 type = TREE_TYPE (arg1);
1175 mode = TYPE_MODE (type);
1176
1177 /* Don't perform operation if we honor signaling NaNs and
1178 either operand is a NaN. */
1179 if (HONOR_SNANS (mode)
1180 && (REAL_VALUE_ISNAN (d1) || REAL_VALUE_ISNAN (d2)))
1181 return NULL_TREE;
1182
1183 /* Don't perform operation if it would raise a division
1184 by zero exception. */
1185 if (code == RDIV_EXPR
1186 && REAL_VALUES_EQUAL (d2, dconst0)
1187 && (flag_trapping_math || ! MODE_HAS_INFINITIES (mode)))
1188 return NULL_TREE;
1189
1190 /* If either operand is a NaN, just return it. Otherwise, set up
1191 for floating-point trap; we return an overflow. */
1192 if (REAL_VALUE_ISNAN (d1))
1193 return arg1;
1194 else if (REAL_VALUE_ISNAN (d2))
1195 return arg2;
1196
1197 inexact = real_arithmetic (&value, code, &d1, &d2);
1198 real_convert (&result, mode, &value);
1199
1200 /* Don't constant fold this floating point operation if
1201 the result has overflowed and flag_trapping_math. */
1202 if (flag_trapping_math
1203 && MODE_HAS_INFINITIES (mode)
1204 && REAL_VALUE_ISINF (result)
1205 && !REAL_VALUE_ISINF (d1)
1206 && !REAL_VALUE_ISINF (d2))
1207 return NULL_TREE;
1208
1209 /* Don't constant fold this floating point operation if the
1210 result may dependent upon the run-time rounding mode and
1211 flag_rounding_math is set, or if GCC's software emulation
1212 is unable to accurately represent the result. */
1213 if ((flag_rounding_math
1214 || (MODE_COMPOSITE_P (mode) && !flag_unsafe_math_optimizations))
1215 && (inexact || !real_identical (&result, &value)))
1216 return NULL_TREE;
1217
1218 t = build_real (type, result);
1219
1220 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2);
1221 return t;
1222 }
1223
1224 if (TREE_CODE (arg1) == FIXED_CST)
1225 {
1226 FIXED_VALUE_TYPE f1;
1227 FIXED_VALUE_TYPE f2;
1228 FIXED_VALUE_TYPE result;
1229 tree t, type;
1230 int sat_p;
1231 bool overflow_p;
1232
1233 /* The following codes are handled by fixed_arithmetic. */
1234 switch (code)
1235 {
1236 case PLUS_EXPR:
1237 case MINUS_EXPR:
1238 case MULT_EXPR:
1239 case TRUNC_DIV_EXPR:
1240 if (TREE_CODE (arg2) != FIXED_CST)
1241 return NULL_TREE;
1242 f2 = TREE_FIXED_CST (arg2);
1243 break;
1244
1245 case LSHIFT_EXPR:
1246 case RSHIFT_EXPR:
1247 {
1248 if (TREE_CODE (arg2) != INTEGER_CST)
1249 return NULL_TREE;
1250 wide_int w2 = arg2;
1251 f2.data.high = w2.elt (1);
1252 f2.data.low = w2.elt (0);
1253 f2.mode = SImode;
1254 }
1255 break;
1256
1257 default:
1258 return NULL_TREE;
1259 }
1260
1261 f1 = TREE_FIXED_CST (arg1);
1262 type = TREE_TYPE (arg1);
1263 sat_p = TYPE_SATURATING (type);
1264 overflow_p = fixed_arithmetic (&result, code, &f1, &f2, sat_p);
1265 t = build_fixed (type, result);
1266 /* Propagate overflow flags. */
1267 if (overflow_p | TREE_OVERFLOW (arg1) | TREE_OVERFLOW (arg2))
1268 TREE_OVERFLOW (t) = 1;
1269 return t;
1270 }
1271
1272 if (TREE_CODE (arg1) == COMPLEX_CST && TREE_CODE (arg2) == COMPLEX_CST)
1273 {
1274 tree type = TREE_TYPE (arg1);
1275 tree r1 = TREE_REALPART (arg1);
1276 tree i1 = TREE_IMAGPART (arg1);
1277 tree r2 = TREE_REALPART (arg2);
1278 tree i2 = TREE_IMAGPART (arg2);
1279 tree real, imag;
1280
1281 switch (code)
1282 {
1283 case PLUS_EXPR:
1284 case MINUS_EXPR:
1285 real = const_binop (code, r1, r2);
1286 imag = const_binop (code, i1, i2);
1287 break;
1288
1289 case MULT_EXPR:
1290 if (COMPLEX_FLOAT_TYPE_P (type))
1291 return do_mpc_arg2 (arg1, arg2, type,
1292 /* do_nonfinite= */ folding_initializer,
1293 mpc_mul);
1294
1295 real = const_binop (MINUS_EXPR,
1296 const_binop (MULT_EXPR, r1, r2),
1297 const_binop (MULT_EXPR, i1, i2));
1298 imag = const_binop (PLUS_EXPR,
1299 const_binop (MULT_EXPR, r1, i2),
1300 const_binop (MULT_EXPR, i1, r2));
1301 break;
1302
1303 case RDIV_EXPR:
1304 if (COMPLEX_FLOAT_TYPE_P (type))
1305 return do_mpc_arg2 (arg1, arg2, type,
1306 /* do_nonfinite= */ folding_initializer,
1307 mpc_div);
1308 /* Fallthru ... */
1309 case TRUNC_DIV_EXPR:
1310 case CEIL_DIV_EXPR:
1311 case FLOOR_DIV_EXPR:
1312 case ROUND_DIV_EXPR:
1313 if (flag_complex_method == 0)
1314 {
1315 /* Keep this algorithm in sync with
1316 tree-complex.c:expand_complex_div_straight().
1317
1318 Expand complex division to scalars, straightforward algorithm.
1319 a / b = ((ar*br + ai*bi)/t) + i((ai*br - ar*bi)/t)
1320 t = br*br + bi*bi
1321 */
1322 tree magsquared
1323 = const_binop (PLUS_EXPR,
1324 const_binop (MULT_EXPR, r2, r2),
1325 const_binop (MULT_EXPR, i2, i2));
1326 tree t1
1327 = const_binop (PLUS_EXPR,
1328 const_binop (MULT_EXPR, r1, r2),
1329 const_binop (MULT_EXPR, i1, i2));
1330 tree t2
1331 = const_binop (MINUS_EXPR,
1332 const_binop (MULT_EXPR, i1, r2),
1333 const_binop (MULT_EXPR, r1, i2));
1334
1335 real = const_binop (code, t1, magsquared);
1336 imag = const_binop (code, t2, magsquared);
1337 }
1338 else
1339 {
1340 /* Keep this algorithm in sync with
1341 tree-complex.c:expand_complex_div_wide().
1342
1343 Expand complex division to scalars, modified algorithm to minimize
1344 overflow with wide input ranges. */
1345 tree compare = fold_build2 (LT_EXPR, boolean_type_node,
1346 fold_abs_const (r2, TREE_TYPE (type)),
1347 fold_abs_const (i2, TREE_TYPE (type)));
1348
1349 if (integer_nonzerop (compare))
1350 {
1351 /* In the TRUE branch, we compute
1352 ratio = br/bi;
1353 div = (br * ratio) + bi;
1354 tr = (ar * ratio) + ai;
1355 ti = (ai * ratio) - ar;
1356 tr = tr / div;
1357 ti = ti / div; */
1358 tree ratio = const_binop (code, r2, i2);
1359 tree div = const_binop (PLUS_EXPR, i2,
1360 const_binop (MULT_EXPR, r2, ratio));
1361 real = const_binop (MULT_EXPR, r1, ratio);
1362 real = const_binop (PLUS_EXPR, real, i1);
1363 real = const_binop (code, real, div);
1364
1365 imag = const_binop (MULT_EXPR, i1, ratio);
1366 imag = const_binop (MINUS_EXPR, imag, r1);
1367 imag = const_binop (code, imag, div);
1368 }
1369 else
1370 {
1371 /* In the FALSE branch, we compute
1372 ratio = d/c;
1373 divisor = (d * ratio) + c;
1374 tr = (b * ratio) + a;
1375 ti = b - (a * ratio);
1376 tr = tr / div;
1377 ti = ti / div; */
1378 tree ratio = const_binop (code, i2, r2);
1379 tree div = const_binop (PLUS_EXPR, r2,
1380 const_binop (MULT_EXPR, i2, ratio));
1381
1382 real = const_binop (MULT_EXPR, i1, ratio);
1383 real = const_binop (PLUS_EXPR, real, r1);
1384 real = const_binop (code, real, div);
1385
1386 imag = const_binop (MULT_EXPR, r1, ratio);
1387 imag = const_binop (MINUS_EXPR, i1, imag);
1388 imag = const_binop (code, imag, div);
1389 }
1390 }
1391 break;
1392
1393 default:
1394 return NULL_TREE;
1395 }
1396
1397 if (real && imag)
1398 return build_complex (type, real, imag);
1399 }
1400
1401 if (TREE_CODE (arg1) == VECTOR_CST
1402 && TREE_CODE (arg2) == VECTOR_CST)
1403 {
1404 tree type = TREE_TYPE (arg1);
1405 int count = TYPE_VECTOR_SUBPARTS (type), i;
1406 tree *elts = XALLOCAVEC (tree, count);
1407
1408 for (i = 0; i < count; i++)
1409 {
1410 tree elem1 = VECTOR_CST_ELT (arg1, i);
1411 tree elem2 = VECTOR_CST_ELT (arg2, i);
1412
1413 elts[i] = const_binop (code, elem1, elem2);
1414
1415 /* It is possible that const_binop cannot handle the given
1416 code and return NULL_TREE */
1417 if (elts[i] == NULL_TREE)
1418 return NULL_TREE;
1419 }
1420
1421 return build_vector (type, elts);
1422 }
1423
1424 /* Shifts allow a scalar offset for a vector. */
1425 if (TREE_CODE (arg1) == VECTOR_CST
1426 && TREE_CODE (arg2) == INTEGER_CST)
1427 {
1428 tree type = TREE_TYPE (arg1);
1429 int count = TYPE_VECTOR_SUBPARTS (type), i;
1430 tree *elts = XALLOCAVEC (tree, count);
1431
1432 for (i = 0; i < count; i++)
1433 {
1434 tree elem1 = VECTOR_CST_ELT (arg1, i);
1435
1436 elts[i] = const_binop (code, elem1, arg2);
1437
1438 /* It is possible that const_binop cannot handle the given
1439 code and return NULL_TREE. */
1440 if (elts[i] == NULL_TREE)
1441 return NULL_TREE;
1442 }
1443
1444 return build_vector (type, elts);
1445 }
1446 return NULL_TREE;
1447 }
1448
1449 /* Overload that adds a TYPE parameter to be able to dispatch
1450 to fold_relational_const. */
1451
1452 tree
1453 const_binop (enum tree_code code, tree type, tree arg1, tree arg2)
1454 {
1455 if (TREE_CODE_CLASS (code) == tcc_comparison)
1456 return fold_relational_const (code, type, arg1, arg2);
1457
1458 /* ??? Until we make the const_binop worker take the type of the
1459 result as argument put those cases that need it here. */
1460 switch (code)
1461 {
1462 case COMPLEX_EXPR:
1463 if ((TREE_CODE (arg1) == REAL_CST
1464 && TREE_CODE (arg2) == REAL_CST)
1465 || (TREE_CODE (arg1) == INTEGER_CST
1466 && TREE_CODE (arg2) == INTEGER_CST))
1467 return build_complex (type, arg1, arg2);
1468 return NULL_TREE;
1469
1470 case VEC_PACK_TRUNC_EXPR:
1471 case VEC_PACK_FIX_TRUNC_EXPR:
1472 {
1473 unsigned int nelts = TYPE_VECTOR_SUBPARTS (type), i;
1474 tree *elts;
1475
1476 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg1)) == nelts / 2
1477 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg2)) == nelts / 2);
1478 if (TREE_CODE (arg1) != VECTOR_CST
1479 || TREE_CODE (arg2) != VECTOR_CST)
1480 return NULL_TREE;
1481
1482 elts = XALLOCAVEC (tree, nelts);
1483 if (!vec_cst_ctor_to_array (arg1, elts)
1484 || !vec_cst_ctor_to_array (arg2, elts + nelts / 2))
1485 return NULL_TREE;
1486
1487 for (i = 0; i < nelts; i++)
1488 {
1489 elts[i] = fold_convert_const (code == VEC_PACK_TRUNC_EXPR
1490 ? NOP_EXPR : FIX_TRUNC_EXPR,
1491 TREE_TYPE (type), elts[i]);
1492 if (elts[i] == NULL_TREE || !CONSTANT_CLASS_P (elts[i]))
1493 return NULL_TREE;
1494 }
1495
1496 return build_vector (type, elts);
1497 }
1498
1499 case VEC_WIDEN_MULT_LO_EXPR:
1500 case VEC_WIDEN_MULT_HI_EXPR:
1501 case VEC_WIDEN_MULT_EVEN_EXPR:
1502 case VEC_WIDEN_MULT_ODD_EXPR:
1503 {
1504 unsigned int nelts = TYPE_VECTOR_SUBPARTS (type);
1505 unsigned int out, ofs, scale;
1506 tree *elts;
1507
1508 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg1)) == nelts * 2
1509 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg2)) == nelts * 2);
1510 if (TREE_CODE (arg1) != VECTOR_CST || TREE_CODE (arg2) != VECTOR_CST)
1511 return NULL_TREE;
1512
1513 elts = XALLOCAVEC (tree, nelts * 4);
1514 if (!vec_cst_ctor_to_array (arg1, elts)
1515 || !vec_cst_ctor_to_array (arg2, elts + nelts * 2))
1516 return NULL_TREE;
1517
1518 if (code == VEC_WIDEN_MULT_LO_EXPR)
1519 scale = 0, ofs = BYTES_BIG_ENDIAN ? nelts : 0;
1520 else if (code == VEC_WIDEN_MULT_HI_EXPR)
1521 scale = 0, ofs = BYTES_BIG_ENDIAN ? 0 : nelts;
1522 else if (code == VEC_WIDEN_MULT_EVEN_EXPR)
1523 scale = 1, ofs = 0;
1524 else /* if (code == VEC_WIDEN_MULT_ODD_EXPR) */
1525 scale = 1, ofs = 1;
1526
1527 for (out = 0; out < nelts; out++)
1528 {
1529 unsigned int in1 = (out << scale) + ofs;
1530 unsigned int in2 = in1 + nelts * 2;
1531 tree t1, t2;
1532
1533 t1 = fold_convert_const (NOP_EXPR, TREE_TYPE (type), elts[in1]);
1534 t2 = fold_convert_const (NOP_EXPR, TREE_TYPE (type), elts[in2]);
1535
1536 if (t1 == NULL_TREE || t2 == NULL_TREE)
1537 return NULL_TREE;
1538 elts[out] = const_binop (MULT_EXPR, t1, t2);
1539 if (elts[out] == NULL_TREE || !CONSTANT_CLASS_P (elts[out]))
1540 return NULL_TREE;
1541 }
1542
1543 return build_vector (type, elts);
1544 }
1545
1546 default:;
1547 }
1548
1549 if (TREE_CODE_CLASS (code) != tcc_binary)
1550 return NULL_TREE;
1551
1552 /* Make sure type and arg0 have the same saturating flag. */
1553 gcc_checking_assert (TYPE_SATURATING (type)
1554 == TYPE_SATURATING (TREE_TYPE (arg1)));
1555
1556 return const_binop (code, arg1, arg2);
1557 }
1558
1559 /* Compute CODE ARG1 with resulting type TYPE with ARG1 being constant.
1560 Return zero if computing the constants is not possible. */
1561
1562 tree
1563 const_unop (enum tree_code code, tree type, tree arg0)
1564 {
1565 switch (code)
1566 {
1567 CASE_CONVERT:
1568 case FLOAT_EXPR:
1569 case FIX_TRUNC_EXPR:
1570 case FIXED_CONVERT_EXPR:
1571 return fold_convert_const (code, type, arg0);
1572
1573 case ADDR_SPACE_CONVERT_EXPR:
1574 if (integer_zerop (arg0))
1575 return fold_convert_const (code, type, arg0);
1576 break;
1577
1578 case VIEW_CONVERT_EXPR:
1579 return fold_view_convert_expr (type, arg0);
1580
1581 case NEGATE_EXPR:
1582 {
1583 /* Can't call fold_negate_const directly here as that doesn't
1584 handle all cases and we might not be able to negate some
1585 constants. */
1586 tree tem = fold_negate_expr (UNKNOWN_LOCATION, arg0);
1587 if (tem && CONSTANT_CLASS_P (tem))
1588 return tem;
1589 break;
1590 }
1591
1592 case ABS_EXPR:
1593 if (TREE_CODE (arg0) == INTEGER_CST || TREE_CODE (arg0) == REAL_CST)
1594 return fold_abs_const (arg0, type);
1595 break;
1596
1597 case CONJ_EXPR:
1598 if (TREE_CODE (arg0) == COMPLEX_CST)
1599 {
1600 tree ipart = fold_negate_const (TREE_IMAGPART (arg0),
1601 TREE_TYPE (type));
1602 return build_complex (type, TREE_REALPART (arg0), ipart);
1603 }
1604 break;
1605
1606 case BIT_NOT_EXPR:
1607 if (TREE_CODE (arg0) == INTEGER_CST)
1608 return fold_not_const (arg0, type);
1609 /* Perform BIT_NOT_EXPR on each element individually. */
1610 else if (TREE_CODE (arg0) == VECTOR_CST)
1611 {
1612 tree *elements;
1613 tree elem;
1614 unsigned count = VECTOR_CST_NELTS (arg0), i;
1615
1616 elements = XALLOCAVEC (tree, count);
1617 for (i = 0; i < count; i++)
1618 {
1619 elem = VECTOR_CST_ELT (arg0, i);
1620 elem = const_unop (BIT_NOT_EXPR, TREE_TYPE (type), elem);
1621 if (elem == NULL_TREE)
1622 break;
1623 elements[i] = elem;
1624 }
1625 if (i == count)
1626 return build_vector (type, elements);
1627 }
1628 break;
1629
1630 case TRUTH_NOT_EXPR:
1631 if (TREE_CODE (arg0) == INTEGER_CST)
1632 return constant_boolean_node (integer_zerop (arg0), type);
1633 break;
1634
1635 case REALPART_EXPR:
1636 if (TREE_CODE (arg0) == COMPLEX_CST)
1637 return fold_convert (type, TREE_REALPART (arg0));
1638 break;
1639
1640 case IMAGPART_EXPR:
1641 if (TREE_CODE (arg0) == COMPLEX_CST)
1642 return fold_convert (type, TREE_IMAGPART (arg0));
1643 break;
1644
1645 case VEC_UNPACK_LO_EXPR:
1646 case VEC_UNPACK_HI_EXPR:
1647 case VEC_UNPACK_FLOAT_LO_EXPR:
1648 case VEC_UNPACK_FLOAT_HI_EXPR:
1649 {
1650 unsigned int nelts = TYPE_VECTOR_SUBPARTS (type), i;
1651 tree *elts;
1652 enum tree_code subcode;
1653
1654 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg0)) == nelts * 2);
1655 if (TREE_CODE (arg0) != VECTOR_CST)
1656 return NULL_TREE;
1657
1658 elts = XALLOCAVEC (tree, nelts * 2);
1659 if (!vec_cst_ctor_to_array (arg0, elts))
1660 return NULL_TREE;
1661
1662 if ((!BYTES_BIG_ENDIAN) ^ (code == VEC_UNPACK_LO_EXPR
1663 || code == VEC_UNPACK_FLOAT_LO_EXPR))
1664 elts += nelts;
1665
1666 if (code == VEC_UNPACK_LO_EXPR || code == VEC_UNPACK_HI_EXPR)
1667 subcode = NOP_EXPR;
1668 else
1669 subcode = FLOAT_EXPR;
1670
1671 for (i = 0; i < nelts; i++)
1672 {
1673 elts[i] = fold_convert_const (subcode, TREE_TYPE (type), elts[i]);
1674 if (elts[i] == NULL_TREE || !CONSTANT_CLASS_P (elts[i]))
1675 return NULL_TREE;
1676 }
1677
1678 return build_vector (type, elts);
1679 }
1680
1681 case REDUC_MIN_EXPR:
1682 case REDUC_MAX_EXPR:
1683 case REDUC_PLUS_EXPR:
1684 {
1685 unsigned int nelts, i;
1686 tree *elts;
1687 enum tree_code subcode;
1688
1689 if (TREE_CODE (arg0) != VECTOR_CST)
1690 return NULL_TREE;
1691 nelts = TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg0));
1692
1693 elts = XALLOCAVEC (tree, nelts);
1694 if (!vec_cst_ctor_to_array (arg0, elts))
1695 return NULL_TREE;
1696
1697 switch (code)
1698 {
1699 case REDUC_MIN_EXPR: subcode = MIN_EXPR; break;
1700 case REDUC_MAX_EXPR: subcode = MAX_EXPR; break;
1701 case REDUC_PLUS_EXPR: subcode = PLUS_EXPR; break;
1702 default: gcc_unreachable ();
1703 }
1704
1705 for (i = 1; i < nelts; i++)
1706 {
1707 elts[0] = const_binop (subcode, elts[0], elts[i]);
1708 if (elts[0] == NULL_TREE || !CONSTANT_CLASS_P (elts[0]))
1709 return NULL_TREE;
1710 }
1711
1712 return elts[0];
1713 }
1714
1715 default:
1716 break;
1717 }
1718
1719 return NULL_TREE;
1720 }
1721
1722 /* Create a sizetype INT_CST node with NUMBER sign extended. KIND
1723 indicates which particular sizetype to create. */
1724
1725 tree
1726 size_int_kind (HOST_WIDE_INT number, enum size_type_kind kind)
1727 {
1728 return build_int_cst (sizetype_tab[(int) kind], number);
1729 }
1730 \f
1731 /* Combine operands OP1 and OP2 with arithmetic operation CODE. CODE
1732 is a tree code. The type of the result is taken from the operands.
1733 Both must be equivalent integer types, ala int_binop_types_match_p.
1734 If the operands are constant, so is the result. */
1735
1736 tree
1737 size_binop_loc (location_t loc, enum tree_code code, tree arg0, tree arg1)
1738 {
1739 tree type = TREE_TYPE (arg0);
1740
1741 if (arg0 == error_mark_node || arg1 == error_mark_node)
1742 return error_mark_node;
1743
1744 gcc_assert (int_binop_types_match_p (code, TREE_TYPE (arg0),
1745 TREE_TYPE (arg1)));
1746
1747 /* Handle the special case of two integer constants faster. */
1748 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1749 {
1750 /* And some specific cases even faster than that. */
1751 if (code == PLUS_EXPR)
1752 {
1753 if (integer_zerop (arg0) && !TREE_OVERFLOW (arg0))
1754 return arg1;
1755 if (integer_zerop (arg1) && !TREE_OVERFLOW (arg1))
1756 return arg0;
1757 }
1758 else if (code == MINUS_EXPR)
1759 {
1760 if (integer_zerop (arg1) && !TREE_OVERFLOW (arg1))
1761 return arg0;
1762 }
1763 else if (code == MULT_EXPR)
1764 {
1765 if (integer_onep (arg0) && !TREE_OVERFLOW (arg0))
1766 return arg1;
1767 }
1768
1769 /* Handle general case of two integer constants. For sizetype
1770 constant calculations we always want to know about overflow,
1771 even in the unsigned case. */
1772 return int_const_binop_1 (code, arg0, arg1, -1);
1773 }
1774
1775 return fold_build2_loc (loc, code, type, arg0, arg1);
1776 }
1777
1778 /* Given two values, either both of sizetype or both of bitsizetype,
1779 compute the difference between the two values. Return the value
1780 in signed type corresponding to the type of the operands. */
1781
1782 tree
1783 size_diffop_loc (location_t loc, tree arg0, tree arg1)
1784 {
1785 tree type = TREE_TYPE (arg0);
1786 tree ctype;
1787
1788 gcc_assert (int_binop_types_match_p (MINUS_EXPR, TREE_TYPE (arg0),
1789 TREE_TYPE (arg1)));
1790
1791 /* If the type is already signed, just do the simple thing. */
1792 if (!TYPE_UNSIGNED (type))
1793 return size_binop_loc (loc, MINUS_EXPR, arg0, arg1);
1794
1795 if (type == sizetype)
1796 ctype = ssizetype;
1797 else if (type == bitsizetype)
1798 ctype = sbitsizetype;
1799 else
1800 ctype = signed_type_for (type);
1801
1802 /* If either operand is not a constant, do the conversions to the signed
1803 type and subtract. The hardware will do the right thing with any
1804 overflow in the subtraction. */
1805 if (TREE_CODE (arg0) != INTEGER_CST || TREE_CODE (arg1) != INTEGER_CST)
1806 return size_binop_loc (loc, MINUS_EXPR,
1807 fold_convert_loc (loc, ctype, arg0),
1808 fold_convert_loc (loc, ctype, arg1));
1809
1810 /* If ARG0 is larger than ARG1, subtract and return the result in CTYPE.
1811 Otherwise, subtract the other way, convert to CTYPE (we know that can't
1812 overflow) and negate (which can't either). Special-case a result
1813 of zero while we're here. */
1814 if (tree_int_cst_equal (arg0, arg1))
1815 return build_int_cst (ctype, 0);
1816 else if (tree_int_cst_lt (arg1, arg0))
1817 return fold_convert_loc (loc, ctype,
1818 size_binop_loc (loc, MINUS_EXPR, arg0, arg1));
1819 else
1820 return size_binop_loc (loc, MINUS_EXPR, build_int_cst (ctype, 0),
1821 fold_convert_loc (loc, ctype,
1822 size_binop_loc (loc,
1823 MINUS_EXPR,
1824 arg1, arg0)));
1825 }
1826 \f
1827 /* A subroutine of fold_convert_const handling conversions of an
1828 INTEGER_CST to another integer type. */
1829
1830 static tree
1831 fold_convert_const_int_from_int (tree type, const_tree arg1)
1832 {
1833 /* Given an integer constant, make new constant with new type,
1834 appropriately sign-extended or truncated. Use widest_int
1835 so that any extension is done according ARG1's type. */
1836 return force_fit_type (type, wi::to_widest (arg1),
1837 !POINTER_TYPE_P (TREE_TYPE (arg1)),
1838 TREE_OVERFLOW (arg1));
1839 }
1840
1841 /* A subroutine of fold_convert_const handling conversions a REAL_CST
1842 to an integer type. */
1843
1844 static tree
1845 fold_convert_const_int_from_real (enum tree_code code, tree type, const_tree arg1)
1846 {
1847 bool overflow = false;
1848 tree t;
1849
1850 /* The following code implements the floating point to integer
1851 conversion rules required by the Java Language Specification,
1852 that IEEE NaNs are mapped to zero and values that overflow
1853 the target precision saturate, i.e. values greater than
1854 INT_MAX are mapped to INT_MAX, and values less than INT_MIN
1855 are mapped to INT_MIN. These semantics are allowed by the
1856 C and C++ standards that simply state that the behavior of
1857 FP-to-integer conversion is unspecified upon overflow. */
1858
1859 wide_int val;
1860 REAL_VALUE_TYPE r;
1861 REAL_VALUE_TYPE x = TREE_REAL_CST (arg1);
1862
1863 switch (code)
1864 {
1865 case FIX_TRUNC_EXPR:
1866 real_trunc (&r, VOIDmode, &x);
1867 break;
1868
1869 default:
1870 gcc_unreachable ();
1871 }
1872
1873 /* If R is NaN, return zero and show we have an overflow. */
1874 if (REAL_VALUE_ISNAN (r))
1875 {
1876 overflow = true;
1877 val = wi::zero (TYPE_PRECISION (type));
1878 }
1879
1880 /* See if R is less than the lower bound or greater than the
1881 upper bound. */
1882
1883 if (! overflow)
1884 {
1885 tree lt = TYPE_MIN_VALUE (type);
1886 REAL_VALUE_TYPE l = real_value_from_int_cst (NULL_TREE, lt);
1887 if (REAL_VALUES_LESS (r, l))
1888 {
1889 overflow = true;
1890 val = lt;
1891 }
1892 }
1893
1894 if (! overflow)
1895 {
1896 tree ut = TYPE_MAX_VALUE (type);
1897 if (ut)
1898 {
1899 REAL_VALUE_TYPE u = real_value_from_int_cst (NULL_TREE, ut);
1900 if (REAL_VALUES_LESS (u, r))
1901 {
1902 overflow = true;
1903 val = ut;
1904 }
1905 }
1906 }
1907
1908 if (! overflow)
1909 val = real_to_integer (&r, &overflow, TYPE_PRECISION (type));
1910
1911 t = force_fit_type (type, val, -1, overflow | TREE_OVERFLOW (arg1));
1912 return t;
1913 }
1914
1915 /* A subroutine of fold_convert_const handling conversions of a
1916 FIXED_CST to an integer type. */
1917
1918 static tree
1919 fold_convert_const_int_from_fixed (tree type, const_tree arg1)
1920 {
1921 tree t;
1922 double_int temp, temp_trunc;
1923 unsigned int mode;
1924
1925 /* Right shift FIXED_CST to temp by fbit. */
1926 temp = TREE_FIXED_CST (arg1).data;
1927 mode = TREE_FIXED_CST (arg1).mode;
1928 if (GET_MODE_FBIT (mode) < HOST_BITS_PER_DOUBLE_INT)
1929 {
1930 temp = temp.rshift (GET_MODE_FBIT (mode),
1931 HOST_BITS_PER_DOUBLE_INT,
1932 SIGNED_FIXED_POINT_MODE_P (mode));
1933
1934 /* Left shift temp to temp_trunc by fbit. */
1935 temp_trunc = temp.lshift (GET_MODE_FBIT (mode),
1936 HOST_BITS_PER_DOUBLE_INT,
1937 SIGNED_FIXED_POINT_MODE_P (mode));
1938 }
1939 else
1940 {
1941 temp = double_int_zero;
1942 temp_trunc = double_int_zero;
1943 }
1944
1945 /* If FIXED_CST is negative, we need to round the value toward 0.
1946 By checking if the fractional bits are not zero to add 1 to temp. */
1947 if (SIGNED_FIXED_POINT_MODE_P (mode)
1948 && temp_trunc.is_negative ()
1949 && TREE_FIXED_CST (arg1).data != temp_trunc)
1950 temp += double_int_one;
1951
1952 /* Given a fixed-point constant, make new constant with new type,
1953 appropriately sign-extended or truncated. */
1954 t = force_fit_type (type, temp, -1,
1955 (temp.is_negative ()
1956 && (TYPE_UNSIGNED (type)
1957 < TYPE_UNSIGNED (TREE_TYPE (arg1))))
1958 | TREE_OVERFLOW (arg1));
1959
1960 return t;
1961 }
1962
1963 /* A subroutine of fold_convert_const handling conversions a REAL_CST
1964 to another floating point type. */
1965
1966 static tree
1967 fold_convert_const_real_from_real (tree type, const_tree arg1)
1968 {
1969 REAL_VALUE_TYPE value;
1970 tree t;
1971
1972 real_convert (&value, TYPE_MODE (type), &TREE_REAL_CST (arg1));
1973 t = build_real (type, value);
1974
1975 /* If converting an infinity or NAN to a representation that doesn't
1976 have one, set the overflow bit so that we can produce some kind of
1977 error message at the appropriate point if necessary. It's not the
1978 most user-friendly message, but it's better than nothing. */
1979 if (REAL_VALUE_ISINF (TREE_REAL_CST (arg1))
1980 && !MODE_HAS_INFINITIES (TYPE_MODE (type)))
1981 TREE_OVERFLOW (t) = 1;
1982 else if (REAL_VALUE_ISNAN (TREE_REAL_CST (arg1))
1983 && !MODE_HAS_NANS (TYPE_MODE (type)))
1984 TREE_OVERFLOW (t) = 1;
1985 /* Regular overflow, conversion produced an infinity in a mode that
1986 can't represent them. */
1987 else if (!MODE_HAS_INFINITIES (TYPE_MODE (type))
1988 && REAL_VALUE_ISINF (value)
1989 && !REAL_VALUE_ISINF (TREE_REAL_CST (arg1)))
1990 TREE_OVERFLOW (t) = 1;
1991 else
1992 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1);
1993 return t;
1994 }
1995
1996 /* A subroutine of fold_convert_const handling conversions a FIXED_CST
1997 to a floating point type. */
1998
1999 static tree
2000 fold_convert_const_real_from_fixed (tree type, const_tree arg1)
2001 {
2002 REAL_VALUE_TYPE value;
2003 tree t;
2004
2005 real_convert_from_fixed (&value, TYPE_MODE (type), &TREE_FIXED_CST (arg1));
2006 t = build_real (type, value);
2007
2008 TREE_OVERFLOW (t) = TREE_OVERFLOW (arg1);
2009 return t;
2010 }
2011
2012 /* A subroutine of fold_convert_const handling conversions a FIXED_CST
2013 to another fixed-point type. */
2014
2015 static tree
2016 fold_convert_const_fixed_from_fixed (tree type, const_tree arg1)
2017 {
2018 FIXED_VALUE_TYPE value;
2019 tree t;
2020 bool overflow_p;
2021
2022 overflow_p = fixed_convert (&value, TYPE_MODE (type), &TREE_FIXED_CST (arg1),
2023 TYPE_SATURATING (type));
2024 t = build_fixed (type, value);
2025
2026 /* Propagate overflow flags. */
2027 if (overflow_p | TREE_OVERFLOW (arg1))
2028 TREE_OVERFLOW (t) = 1;
2029 return t;
2030 }
2031
2032 /* A subroutine of fold_convert_const handling conversions an INTEGER_CST
2033 to a fixed-point type. */
2034
2035 static tree
2036 fold_convert_const_fixed_from_int (tree type, const_tree arg1)
2037 {
2038 FIXED_VALUE_TYPE value;
2039 tree t;
2040 bool overflow_p;
2041 double_int di;
2042
2043 gcc_assert (TREE_INT_CST_NUNITS (arg1) <= 2);
2044
2045 di.low = TREE_INT_CST_ELT (arg1, 0);
2046 if (TREE_INT_CST_NUNITS (arg1) == 1)
2047 di.high = (HOST_WIDE_INT) di.low < 0 ? (HOST_WIDE_INT) -1 : 0;
2048 else
2049 di.high = TREE_INT_CST_ELT (arg1, 1);
2050
2051 overflow_p = fixed_convert_from_int (&value, TYPE_MODE (type), di,
2052 TYPE_UNSIGNED (TREE_TYPE (arg1)),
2053 TYPE_SATURATING (type));
2054 t = build_fixed (type, value);
2055
2056 /* Propagate overflow flags. */
2057 if (overflow_p | TREE_OVERFLOW (arg1))
2058 TREE_OVERFLOW (t) = 1;
2059 return t;
2060 }
2061
2062 /* A subroutine of fold_convert_const handling conversions a REAL_CST
2063 to a fixed-point type. */
2064
2065 static tree
2066 fold_convert_const_fixed_from_real (tree type, const_tree arg1)
2067 {
2068 FIXED_VALUE_TYPE value;
2069 tree t;
2070 bool overflow_p;
2071
2072 overflow_p = fixed_convert_from_real (&value, TYPE_MODE (type),
2073 &TREE_REAL_CST (arg1),
2074 TYPE_SATURATING (type));
2075 t = build_fixed (type, value);
2076
2077 /* Propagate overflow flags. */
2078 if (overflow_p | TREE_OVERFLOW (arg1))
2079 TREE_OVERFLOW (t) = 1;
2080 return t;
2081 }
2082
2083 /* Attempt to fold type conversion operation CODE of expression ARG1 to
2084 type TYPE. If no simplification can be done return NULL_TREE. */
2085
2086 static tree
2087 fold_convert_const (enum tree_code code, tree type, tree arg1)
2088 {
2089 if (TREE_TYPE (arg1) == type)
2090 return arg1;
2091
2092 if (POINTER_TYPE_P (type) || INTEGRAL_TYPE_P (type)
2093 || TREE_CODE (type) == OFFSET_TYPE)
2094 {
2095 if (TREE_CODE (arg1) == INTEGER_CST)
2096 return fold_convert_const_int_from_int (type, arg1);
2097 else if (TREE_CODE (arg1) == REAL_CST)
2098 return fold_convert_const_int_from_real (code, type, arg1);
2099 else if (TREE_CODE (arg1) == FIXED_CST)
2100 return fold_convert_const_int_from_fixed (type, arg1);
2101 }
2102 else if (TREE_CODE (type) == REAL_TYPE)
2103 {
2104 if (TREE_CODE (arg1) == INTEGER_CST)
2105 return build_real_from_int_cst (type, arg1);
2106 else if (TREE_CODE (arg1) == REAL_CST)
2107 return fold_convert_const_real_from_real (type, arg1);
2108 else if (TREE_CODE (arg1) == FIXED_CST)
2109 return fold_convert_const_real_from_fixed (type, arg1);
2110 }
2111 else if (TREE_CODE (type) == FIXED_POINT_TYPE)
2112 {
2113 if (TREE_CODE (arg1) == FIXED_CST)
2114 return fold_convert_const_fixed_from_fixed (type, arg1);
2115 else if (TREE_CODE (arg1) == INTEGER_CST)
2116 return fold_convert_const_fixed_from_int (type, arg1);
2117 else if (TREE_CODE (arg1) == REAL_CST)
2118 return fold_convert_const_fixed_from_real (type, arg1);
2119 }
2120 return NULL_TREE;
2121 }
2122
2123 /* Construct a vector of zero elements of vector type TYPE. */
2124
2125 static tree
2126 build_zero_vector (tree type)
2127 {
2128 tree t;
2129
2130 t = fold_convert_const (NOP_EXPR, TREE_TYPE (type), integer_zero_node);
2131 return build_vector_from_val (type, t);
2132 }
2133
2134 /* Returns true, if ARG is convertible to TYPE using a NOP_EXPR. */
2135
2136 bool
2137 fold_convertible_p (const_tree type, const_tree arg)
2138 {
2139 tree orig = TREE_TYPE (arg);
2140
2141 if (type == orig)
2142 return true;
2143
2144 if (TREE_CODE (arg) == ERROR_MARK
2145 || TREE_CODE (type) == ERROR_MARK
2146 || TREE_CODE (orig) == ERROR_MARK)
2147 return false;
2148
2149 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (orig))
2150 return true;
2151
2152 switch (TREE_CODE (type))
2153 {
2154 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2155 case POINTER_TYPE: case REFERENCE_TYPE:
2156 case OFFSET_TYPE:
2157 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2158 || TREE_CODE (orig) == OFFSET_TYPE)
2159 return true;
2160 return (TREE_CODE (orig) == VECTOR_TYPE
2161 && tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2162
2163 case REAL_TYPE:
2164 case FIXED_POINT_TYPE:
2165 case COMPLEX_TYPE:
2166 case VECTOR_TYPE:
2167 case VOID_TYPE:
2168 return TREE_CODE (type) == TREE_CODE (orig);
2169
2170 default:
2171 return false;
2172 }
2173 }
2174
2175 /* Convert expression ARG to type TYPE. Used by the middle-end for
2176 simple conversions in preference to calling the front-end's convert. */
2177
2178 tree
2179 fold_convert_loc (location_t loc, tree type, tree arg)
2180 {
2181 tree orig = TREE_TYPE (arg);
2182 tree tem;
2183
2184 if (type == orig)
2185 return arg;
2186
2187 if (TREE_CODE (arg) == ERROR_MARK
2188 || TREE_CODE (type) == ERROR_MARK
2189 || TREE_CODE (orig) == ERROR_MARK)
2190 return error_mark_node;
2191
2192 switch (TREE_CODE (type))
2193 {
2194 case POINTER_TYPE:
2195 case REFERENCE_TYPE:
2196 /* Handle conversions between pointers to different address spaces. */
2197 if (POINTER_TYPE_P (orig)
2198 && (TYPE_ADDR_SPACE (TREE_TYPE (type))
2199 != TYPE_ADDR_SPACE (TREE_TYPE (orig))))
2200 return fold_build1_loc (loc, ADDR_SPACE_CONVERT_EXPR, type, arg);
2201 /* fall through */
2202
2203 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
2204 case OFFSET_TYPE:
2205 if (TREE_CODE (arg) == INTEGER_CST)
2206 {
2207 tem = fold_convert_const (NOP_EXPR, type, arg);
2208 if (tem != NULL_TREE)
2209 return tem;
2210 }
2211 if (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2212 || TREE_CODE (orig) == OFFSET_TYPE)
2213 return fold_build1_loc (loc, NOP_EXPR, type, arg);
2214 if (TREE_CODE (orig) == COMPLEX_TYPE)
2215 return fold_convert_loc (loc, type,
2216 fold_build1_loc (loc, REALPART_EXPR,
2217 TREE_TYPE (orig), arg));
2218 gcc_assert (TREE_CODE (orig) == VECTOR_TYPE
2219 && tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2220 return fold_build1_loc (loc, NOP_EXPR, type, arg);
2221
2222 case REAL_TYPE:
2223 if (TREE_CODE (arg) == INTEGER_CST)
2224 {
2225 tem = fold_convert_const (FLOAT_EXPR, type, arg);
2226 if (tem != NULL_TREE)
2227 return tem;
2228 }
2229 else if (TREE_CODE (arg) == REAL_CST)
2230 {
2231 tem = fold_convert_const (NOP_EXPR, type, arg);
2232 if (tem != NULL_TREE)
2233 return tem;
2234 }
2235 else if (TREE_CODE (arg) == FIXED_CST)
2236 {
2237 tem = fold_convert_const (FIXED_CONVERT_EXPR, type, arg);
2238 if (tem != NULL_TREE)
2239 return tem;
2240 }
2241
2242 switch (TREE_CODE (orig))
2243 {
2244 case INTEGER_TYPE:
2245 case BOOLEAN_TYPE: case ENUMERAL_TYPE:
2246 case POINTER_TYPE: case REFERENCE_TYPE:
2247 return fold_build1_loc (loc, FLOAT_EXPR, type, arg);
2248
2249 case REAL_TYPE:
2250 return fold_build1_loc (loc, NOP_EXPR, type, arg);
2251
2252 case FIXED_POINT_TYPE:
2253 return fold_build1_loc (loc, FIXED_CONVERT_EXPR, type, arg);
2254
2255 case COMPLEX_TYPE:
2256 tem = fold_build1_loc (loc, REALPART_EXPR, TREE_TYPE (orig), arg);
2257 return fold_convert_loc (loc, type, tem);
2258
2259 default:
2260 gcc_unreachable ();
2261 }
2262
2263 case FIXED_POINT_TYPE:
2264 if (TREE_CODE (arg) == FIXED_CST || TREE_CODE (arg) == INTEGER_CST
2265 || TREE_CODE (arg) == REAL_CST)
2266 {
2267 tem = fold_convert_const (FIXED_CONVERT_EXPR, type, arg);
2268 if (tem != NULL_TREE)
2269 goto fold_convert_exit;
2270 }
2271
2272 switch (TREE_CODE (orig))
2273 {
2274 case FIXED_POINT_TYPE:
2275 case INTEGER_TYPE:
2276 case ENUMERAL_TYPE:
2277 case BOOLEAN_TYPE:
2278 case REAL_TYPE:
2279 return fold_build1_loc (loc, FIXED_CONVERT_EXPR, type, arg);
2280
2281 case COMPLEX_TYPE:
2282 tem = fold_build1_loc (loc, REALPART_EXPR, TREE_TYPE (orig), arg);
2283 return fold_convert_loc (loc, type, tem);
2284
2285 default:
2286 gcc_unreachable ();
2287 }
2288
2289 case COMPLEX_TYPE:
2290 switch (TREE_CODE (orig))
2291 {
2292 case INTEGER_TYPE:
2293 case BOOLEAN_TYPE: case ENUMERAL_TYPE:
2294 case POINTER_TYPE: case REFERENCE_TYPE:
2295 case REAL_TYPE:
2296 case FIXED_POINT_TYPE:
2297 return fold_build2_loc (loc, COMPLEX_EXPR, type,
2298 fold_convert_loc (loc, TREE_TYPE (type), arg),
2299 fold_convert_loc (loc, TREE_TYPE (type),
2300 integer_zero_node));
2301 case COMPLEX_TYPE:
2302 {
2303 tree rpart, ipart;
2304
2305 if (TREE_CODE (arg) == COMPLEX_EXPR)
2306 {
2307 rpart = fold_convert_loc (loc, TREE_TYPE (type),
2308 TREE_OPERAND (arg, 0));
2309 ipart = fold_convert_loc (loc, TREE_TYPE (type),
2310 TREE_OPERAND (arg, 1));
2311 return fold_build2_loc (loc, COMPLEX_EXPR, type, rpart, ipart);
2312 }
2313
2314 arg = save_expr (arg);
2315 rpart = fold_build1_loc (loc, REALPART_EXPR, TREE_TYPE (orig), arg);
2316 ipart = fold_build1_loc (loc, IMAGPART_EXPR, TREE_TYPE (orig), arg);
2317 rpart = fold_convert_loc (loc, TREE_TYPE (type), rpart);
2318 ipart = fold_convert_loc (loc, TREE_TYPE (type), ipart);
2319 return fold_build2_loc (loc, COMPLEX_EXPR, type, rpart, ipart);
2320 }
2321
2322 default:
2323 gcc_unreachable ();
2324 }
2325
2326 case VECTOR_TYPE:
2327 if (integer_zerop (arg))
2328 return build_zero_vector (type);
2329 gcc_assert (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (orig)));
2330 gcc_assert (INTEGRAL_TYPE_P (orig) || POINTER_TYPE_P (orig)
2331 || TREE_CODE (orig) == VECTOR_TYPE);
2332 return fold_build1_loc (loc, VIEW_CONVERT_EXPR, type, arg);
2333
2334 case VOID_TYPE:
2335 tem = fold_ignored_result (arg);
2336 return fold_build1_loc (loc, NOP_EXPR, type, tem);
2337
2338 default:
2339 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (orig))
2340 return fold_build1_loc (loc, NOP_EXPR, type, arg);
2341 gcc_unreachable ();
2342 }
2343 fold_convert_exit:
2344 protected_set_expr_location_unshare (tem, loc);
2345 return tem;
2346 }
2347 \f
2348 /* Return false if expr can be assumed not to be an lvalue, true
2349 otherwise. */
2350
2351 static bool
2352 maybe_lvalue_p (const_tree x)
2353 {
2354 /* We only need to wrap lvalue tree codes. */
2355 switch (TREE_CODE (x))
2356 {
2357 case VAR_DECL:
2358 case PARM_DECL:
2359 case RESULT_DECL:
2360 case LABEL_DECL:
2361 case FUNCTION_DECL:
2362 case SSA_NAME:
2363
2364 case COMPONENT_REF:
2365 case MEM_REF:
2366 case INDIRECT_REF:
2367 case ARRAY_REF:
2368 case ARRAY_RANGE_REF:
2369 case BIT_FIELD_REF:
2370 case OBJ_TYPE_REF:
2371
2372 case REALPART_EXPR:
2373 case IMAGPART_EXPR:
2374 case PREINCREMENT_EXPR:
2375 case PREDECREMENT_EXPR:
2376 case SAVE_EXPR:
2377 case TRY_CATCH_EXPR:
2378 case WITH_CLEANUP_EXPR:
2379 case COMPOUND_EXPR:
2380 case MODIFY_EXPR:
2381 case TARGET_EXPR:
2382 case COND_EXPR:
2383 case BIND_EXPR:
2384 break;
2385
2386 default:
2387 /* Assume the worst for front-end tree codes. */
2388 if ((int)TREE_CODE (x) >= NUM_TREE_CODES)
2389 break;
2390 return false;
2391 }
2392
2393 return true;
2394 }
2395
2396 /* Return an expr equal to X but certainly not valid as an lvalue. */
2397
2398 tree
2399 non_lvalue_loc (location_t loc, tree x)
2400 {
2401 /* While we are in GIMPLE, NON_LVALUE_EXPR doesn't mean anything to
2402 us. */
2403 if (in_gimple_form)
2404 return x;
2405
2406 if (! maybe_lvalue_p (x))
2407 return x;
2408 return build1_loc (loc, NON_LVALUE_EXPR, TREE_TYPE (x), x);
2409 }
2410
2411 /* When pedantic, return an expr equal to X but certainly not valid as a
2412 pedantic lvalue. Otherwise, return X. */
2413
2414 static tree
2415 pedantic_non_lvalue_loc (location_t loc, tree x)
2416 {
2417 return protected_set_expr_location_unshare (x, loc);
2418 }
2419 \f
2420 /* Given a tree comparison code, return the code that is the logical inverse.
2421 It is generally not safe to do this for floating-point comparisons, except
2422 for EQ_EXPR, NE_EXPR, ORDERED_EXPR and UNORDERED_EXPR, so we return
2423 ERROR_MARK in this case. */
2424
2425 enum tree_code
2426 invert_tree_comparison (enum tree_code code, bool honor_nans)
2427 {
2428 if (honor_nans && flag_trapping_math && code != EQ_EXPR && code != NE_EXPR
2429 && code != ORDERED_EXPR && code != UNORDERED_EXPR)
2430 return ERROR_MARK;
2431
2432 switch (code)
2433 {
2434 case EQ_EXPR:
2435 return NE_EXPR;
2436 case NE_EXPR:
2437 return EQ_EXPR;
2438 case GT_EXPR:
2439 return honor_nans ? UNLE_EXPR : LE_EXPR;
2440 case GE_EXPR:
2441 return honor_nans ? UNLT_EXPR : LT_EXPR;
2442 case LT_EXPR:
2443 return honor_nans ? UNGE_EXPR : GE_EXPR;
2444 case LE_EXPR:
2445 return honor_nans ? UNGT_EXPR : GT_EXPR;
2446 case LTGT_EXPR:
2447 return UNEQ_EXPR;
2448 case UNEQ_EXPR:
2449 return LTGT_EXPR;
2450 case UNGT_EXPR:
2451 return LE_EXPR;
2452 case UNGE_EXPR:
2453 return LT_EXPR;
2454 case UNLT_EXPR:
2455 return GE_EXPR;
2456 case UNLE_EXPR:
2457 return GT_EXPR;
2458 case ORDERED_EXPR:
2459 return UNORDERED_EXPR;
2460 case UNORDERED_EXPR:
2461 return ORDERED_EXPR;
2462 default:
2463 gcc_unreachable ();
2464 }
2465 }
2466
2467 /* Similar, but return the comparison that results if the operands are
2468 swapped. This is safe for floating-point. */
2469
2470 enum tree_code
2471 swap_tree_comparison (enum tree_code code)
2472 {
2473 switch (code)
2474 {
2475 case EQ_EXPR:
2476 case NE_EXPR:
2477 case ORDERED_EXPR:
2478 case UNORDERED_EXPR:
2479 case LTGT_EXPR:
2480 case UNEQ_EXPR:
2481 return code;
2482 case GT_EXPR:
2483 return LT_EXPR;
2484 case GE_EXPR:
2485 return LE_EXPR;
2486 case LT_EXPR:
2487 return GT_EXPR;
2488 case LE_EXPR:
2489 return GE_EXPR;
2490 case UNGT_EXPR:
2491 return UNLT_EXPR;
2492 case UNGE_EXPR:
2493 return UNLE_EXPR;
2494 case UNLT_EXPR:
2495 return UNGT_EXPR;
2496 case UNLE_EXPR:
2497 return UNGE_EXPR;
2498 default:
2499 gcc_unreachable ();
2500 }
2501 }
2502
2503
2504 /* Convert a comparison tree code from an enum tree_code representation
2505 into a compcode bit-based encoding. This function is the inverse of
2506 compcode_to_comparison. */
2507
2508 static enum comparison_code
2509 comparison_to_compcode (enum tree_code code)
2510 {
2511 switch (code)
2512 {
2513 case LT_EXPR:
2514 return COMPCODE_LT;
2515 case EQ_EXPR:
2516 return COMPCODE_EQ;
2517 case LE_EXPR:
2518 return COMPCODE_LE;
2519 case GT_EXPR:
2520 return COMPCODE_GT;
2521 case NE_EXPR:
2522 return COMPCODE_NE;
2523 case GE_EXPR:
2524 return COMPCODE_GE;
2525 case ORDERED_EXPR:
2526 return COMPCODE_ORD;
2527 case UNORDERED_EXPR:
2528 return COMPCODE_UNORD;
2529 case UNLT_EXPR:
2530 return COMPCODE_UNLT;
2531 case UNEQ_EXPR:
2532 return COMPCODE_UNEQ;
2533 case UNLE_EXPR:
2534 return COMPCODE_UNLE;
2535 case UNGT_EXPR:
2536 return COMPCODE_UNGT;
2537 case LTGT_EXPR:
2538 return COMPCODE_LTGT;
2539 case UNGE_EXPR:
2540 return COMPCODE_UNGE;
2541 default:
2542 gcc_unreachable ();
2543 }
2544 }
2545
2546 /* Convert a compcode bit-based encoding of a comparison operator back
2547 to GCC's enum tree_code representation. This function is the
2548 inverse of comparison_to_compcode. */
2549
2550 static enum tree_code
2551 compcode_to_comparison (enum comparison_code code)
2552 {
2553 switch (code)
2554 {
2555 case COMPCODE_LT:
2556 return LT_EXPR;
2557 case COMPCODE_EQ:
2558 return EQ_EXPR;
2559 case COMPCODE_LE:
2560 return LE_EXPR;
2561 case COMPCODE_GT:
2562 return GT_EXPR;
2563 case COMPCODE_NE:
2564 return NE_EXPR;
2565 case COMPCODE_GE:
2566 return GE_EXPR;
2567 case COMPCODE_ORD:
2568 return ORDERED_EXPR;
2569 case COMPCODE_UNORD:
2570 return UNORDERED_EXPR;
2571 case COMPCODE_UNLT:
2572 return UNLT_EXPR;
2573 case COMPCODE_UNEQ:
2574 return UNEQ_EXPR;
2575 case COMPCODE_UNLE:
2576 return UNLE_EXPR;
2577 case COMPCODE_UNGT:
2578 return UNGT_EXPR;
2579 case COMPCODE_LTGT:
2580 return LTGT_EXPR;
2581 case COMPCODE_UNGE:
2582 return UNGE_EXPR;
2583 default:
2584 gcc_unreachable ();
2585 }
2586 }
2587
2588 /* Return a tree for the comparison which is the combination of
2589 doing the AND or OR (depending on CODE) of the two operations LCODE
2590 and RCODE on the identical operands LL_ARG and LR_ARG. Take into account
2591 the possibility of trapping if the mode has NaNs, and return NULL_TREE
2592 if this makes the transformation invalid. */
2593
2594 tree
2595 combine_comparisons (location_t loc,
2596 enum tree_code code, enum tree_code lcode,
2597 enum tree_code rcode, tree truth_type,
2598 tree ll_arg, tree lr_arg)
2599 {
2600 bool honor_nans = HONOR_NANS (ll_arg);
2601 enum comparison_code lcompcode = comparison_to_compcode (lcode);
2602 enum comparison_code rcompcode = comparison_to_compcode (rcode);
2603 int compcode;
2604
2605 switch (code)
2606 {
2607 case TRUTH_AND_EXPR: case TRUTH_ANDIF_EXPR:
2608 compcode = lcompcode & rcompcode;
2609 break;
2610
2611 case TRUTH_OR_EXPR: case TRUTH_ORIF_EXPR:
2612 compcode = lcompcode | rcompcode;
2613 break;
2614
2615 default:
2616 return NULL_TREE;
2617 }
2618
2619 if (!honor_nans)
2620 {
2621 /* Eliminate unordered comparisons, as well as LTGT and ORD
2622 which are not used unless the mode has NaNs. */
2623 compcode &= ~COMPCODE_UNORD;
2624 if (compcode == COMPCODE_LTGT)
2625 compcode = COMPCODE_NE;
2626 else if (compcode == COMPCODE_ORD)
2627 compcode = COMPCODE_TRUE;
2628 }
2629 else if (flag_trapping_math)
2630 {
2631 /* Check that the original operation and the optimized ones will trap
2632 under the same condition. */
2633 bool ltrap = (lcompcode & COMPCODE_UNORD) == 0
2634 && (lcompcode != COMPCODE_EQ)
2635 && (lcompcode != COMPCODE_ORD);
2636 bool rtrap = (rcompcode & COMPCODE_UNORD) == 0
2637 && (rcompcode != COMPCODE_EQ)
2638 && (rcompcode != COMPCODE_ORD);
2639 bool trap = (compcode & COMPCODE_UNORD) == 0
2640 && (compcode != COMPCODE_EQ)
2641 && (compcode != COMPCODE_ORD);
2642
2643 /* In a short-circuited boolean expression the LHS might be
2644 such that the RHS, if evaluated, will never trap. For
2645 example, in ORD (x, y) && (x < y), we evaluate the RHS only
2646 if neither x nor y is NaN. (This is a mixed blessing: for
2647 example, the expression above will never trap, hence
2648 optimizing it to x < y would be invalid). */
2649 if ((code == TRUTH_ORIF_EXPR && (lcompcode & COMPCODE_UNORD))
2650 || (code == TRUTH_ANDIF_EXPR && !(lcompcode & COMPCODE_UNORD)))
2651 rtrap = false;
2652
2653 /* If the comparison was short-circuited, and only the RHS
2654 trapped, we may now generate a spurious trap. */
2655 if (rtrap && !ltrap
2656 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
2657 return NULL_TREE;
2658
2659 /* If we changed the conditions that cause a trap, we lose. */
2660 if ((ltrap || rtrap) != trap)
2661 return NULL_TREE;
2662 }
2663
2664 if (compcode == COMPCODE_TRUE)
2665 return constant_boolean_node (true, truth_type);
2666 else if (compcode == COMPCODE_FALSE)
2667 return constant_boolean_node (false, truth_type);
2668 else
2669 {
2670 enum tree_code tcode;
2671
2672 tcode = compcode_to_comparison ((enum comparison_code) compcode);
2673 return fold_build2_loc (loc, tcode, truth_type, ll_arg, lr_arg);
2674 }
2675 }
2676 \f
2677 /* Return nonzero if two operands (typically of the same tree node)
2678 are necessarily equal. If either argument has side-effects this
2679 function returns zero. FLAGS modifies behavior as follows:
2680
2681 If OEP_ONLY_CONST is set, only return nonzero for constants.
2682 This function tests whether the operands are indistinguishable;
2683 it does not test whether they are equal using C's == operation.
2684 The distinction is important for IEEE floating point, because
2685 (1) -0.0 and 0.0 are distinguishable, but -0.0==0.0, and
2686 (2) two NaNs may be indistinguishable, but NaN!=NaN.
2687
2688 If OEP_ONLY_CONST is unset, a VAR_DECL is considered equal to itself
2689 even though it may hold multiple values during a function.
2690 This is because a GCC tree node guarantees that nothing else is
2691 executed between the evaluation of its "operands" (which may often
2692 be evaluated in arbitrary order). Hence if the operands themselves
2693 don't side-effect, the VAR_DECLs, PARM_DECLs etc... must hold the
2694 same value in each operand/subexpression. Hence leaving OEP_ONLY_CONST
2695 unset means assuming isochronic (or instantaneous) tree equivalence.
2696 Unless comparing arbitrary expression trees, such as from different
2697 statements, this flag can usually be left unset.
2698
2699 If OEP_PURE_SAME is set, then pure functions with identical arguments
2700 are considered the same. It is used when the caller has other ways
2701 to ensure that global memory is unchanged in between. */
2702
2703 int
2704 operand_equal_p (const_tree arg0, const_tree arg1, unsigned int flags)
2705 {
2706 /* If either is ERROR_MARK, they aren't equal. */
2707 if (TREE_CODE (arg0) == ERROR_MARK || TREE_CODE (arg1) == ERROR_MARK
2708 || TREE_TYPE (arg0) == error_mark_node
2709 || TREE_TYPE (arg1) == error_mark_node)
2710 return 0;
2711
2712 /* Similar, if either does not have a type (like a released SSA name),
2713 they aren't equal. */
2714 if (!TREE_TYPE (arg0) || !TREE_TYPE (arg1))
2715 return 0;
2716
2717 /* Check equality of integer constants before bailing out due to
2718 precision differences. */
2719 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
2720 return tree_int_cst_equal (arg0, arg1);
2721
2722 /* If both types don't have the same signedness, then we can't consider
2723 them equal. We must check this before the STRIP_NOPS calls
2724 because they may change the signedness of the arguments. As pointers
2725 strictly don't have a signedness, require either two pointers or
2726 two non-pointers as well. */
2727 if (TYPE_UNSIGNED (TREE_TYPE (arg0)) != TYPE_UNSIGNED (TREE_TYPE (arg1))
2728 || POINTER_TYPE_P (TREE_TYPE (arg0)) != POINTER_TYPE_P (TREE_TYPE (arg1)))
2729 return 0;
2730
2731 /* We cannot consider pointers to different address space equal. */
2732 if (POINTER_TYPE_P (TREE_TYPE (arg0)) && POINTER_TYPE_P (TREE_TYPE (arg1))
2733 && (TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (arg0)))
2734 != TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (arg1)))))
2735 return 0;
2736
2737 /* If both types don't have the same precision, then it is not safe
2738 to strip NOPs. */
2739 if (element_precision (TREE_TYPE (arg0))
2740 != element_precision (TREE_TYPE (arg1)))
2741 return 0;
2742
2743 STRIP_NOPS (arg0);
2744 STRIP_NOPS (arg1);
2745
2746 /* In case both args are comparisons but with different comparison
2747 code, try to swap the comparison operands of one arg to produce
2748 a match and compare that variant. */
2749 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2750 && COMPARISON_CLASS_P (arg0)
2751 && COMPARISON_CLASS_P (arg1))
2752 {
2753 enum tree_code swap_code = swap_tree_comparison (TREE_CODE (arg1));
2754
2755 if (TREE_CODE (arg0) == swap_code)
2756 return operand_equal_p (TREE_OPERAND (arg0, 0),
2757 TREE_OPERAND (arg1, 1), flags)
2758 && operand_equal_p (TREE_OPERAND (arg0, 1),
2759 TREE_OPERAND (arg1, 0), flags);
2760 }
2761
2762 if (TREE_CODE (arg0) != TREE_CODE (arg1)
2763 /* NOP_EXPR and CONVERT_EXPR are considered equal. */
2764 && !(CONVERT_EXPR_P (arg0) && CONVERT_EXPR_P (arg1)))
2765 return 0;
2766
2767 /* This is needed for conversions and for COMPONENT_REF.
2768 Might as well play it safe and always test this. */
2769 if (TREE_CODE (TREE_TYPE (arg0)) == ERROR_MARK
2770 || TREE_CODE (TREE_TYPE (arg1)) == ERROR_MARK
2771 || TYPE_MODE (TREE_TYPE (arg0)) != TYPE_MODE (TREE_TYPE (arg1)))
2772 return 0;
2773
2774 /* If ARG0 and ARG1 are the same SAVE_EXPR, they are necessarily equal.
2775 We don't care about side effects in that case because the SAVE_EXPR
2776 takes care of that for us. In all other cases, two expressions are
2777 equal if they have no side effects. If we have two identical
2778 expressions with side effects that should be treated the same due
2779 to the only side effects being identical SAVE_EXPR's, that will
2780 be detected in the recursive calls below.
2781 If we are taking an invariant address of two identical objects
2782 they are necessarily equal as well. */
2783 if (arg0 == arg1 && ! (flags & OEP_ONLY_CONST)
2784 && (TREE_CODE (arg0) == SAVE_EXPR
2785 || (flags & OEP_CONSTANT_ADDRESS_OF)
2786 || (! TREE_SIDE_EFFECTS (arg0) && ! TREE_SIDE_EFFECTS (arg1))))
2787 return 1;
2788
2789 /* Next handle constant cases, those for which we can return 1 even
2790 if ONLY_CONST is set. */
2791 if (TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1))
2792 switch (TREE_CODE (arg0))
2793 {
2794 case INTEGER_CST:
2795 return tree_int_cst_equal (arg0, arg1);
2796
2797 case FIXED_CST:
2798 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (arg0),
2799 TREE_FIXED_CST (arg1));
2800
2801 case REAL_CST:
2802 if (REAL_VALUES_IDENTICAL (TREE_REAL_CST (arg0),
2803 TREE_REAL_CST (arg1)))
2804 return 1;
2805
2806
2807 if (!HONOR_SIGNED_ZEROS (arg0))
2808 {
2809 /* If we do not distinguish between signed and unsigned zero,
2810 consider them equal. */
2811 if (real_zerop (arg0) && real_zerop (arg1))
2812 return 1;
2813 }
2814 return 0;
2815
2816 case VECTOR_CST:
2817 {
2818 unsigned i;
2819
2820 if (VECTOR_CST_NELTS (arg0) != VECTOR_CST_NELTS (arg1))
2821 return 0;
2822
2823 for (i = 0; i < VECTOR_CST_NELTS (arg0); ++i)
2824 {
2825 if (!operand_equal_p (VECTOR_CST_ELT (arg0, i),
2826 VECTOR_CST_ELT (arg1, i), flags))
2827 return 0;
2828 }
2829 return 1;
2830 }
2831
2832 case COMPLEX_CST:
2833 return (operand_equal_p (TREE_REALPART (arg0), TREE_REALPART (arg1),
2834 flags)
2835 && operand_equal_p (TREE_IMAGPART (arg0), TREE_IMAGPART (arg1),
2836 flags));
2837
2838 case STRING_CST:
2839 return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
2840 && ! memcmp (TREE_STRING_POINTER (arg0),
2841 TREE_STRING_POINTER (arg1),
2842 TREE_STRING_LENGTH (arg0)));
2843
2844 case ADDR_EXPR:
2845 return operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0),
2846 TREE_CONSTANT (arg0) && TREE_CONSTANT (arg1)
2847 ? OEP_CONSTANT_ADDRESS_OF | OEP_ADDRESS_OF : 0);
2848 default:
2849 break;
2850 }
2851
2852 if (flags & OEP_ONLY_CONST)
2853 return 0;
2854
2855 /* Define macros to test an operand from arg0 and arg1 for equality and a
2856 variant that allows null and views null as being different from any
2857 non-null value. In the latter case, if either is null, the both
2858 must be; otherwise, do the normal comparison. */
2859 #define OP_SAME(N) operand_equal_p (TREE_OPERAND (arg0, N), \
2860 TREE_OPERAND (arg1, N), flags)
2861
2862 #define OP_SAME_WITH_NULL(N) \
2863 ((!TREE_OPERAND (arg0, N) || !TREE_OPERAND (arg1, N)) \
2864 ? TREE_OPERAND (arg0, N) == TREE_OPERAND (arg1, N) : OP_SAME (N))
2865
2866 switch (TREE_CODE_CLASS (TREE_CODE (arg0)))
2867 {
2868 case tcc_unary:
2869 /* Two conversions are equal only if signedness and modes match. */
2870 switch (TREE_CODE (arg0))
2871 {
2872 CASE_CONVERT:
2873 case FIX_TRUNC_EXPR:
2874 if (TYPE_UNSIGNED (TREE_TYPE (arg0))
2875 != TYPE_UNSIGNED (TREE_TYPE (arg1)))
2876 return 0;
2877 break;
2878 default:
2879 break;
2880 }
2881
2882 return OP_SAME (0);
2883
2884
2885 case tcc_comparison:
2886 case tcc_binary:
2887 if (OP_SAME (0) && OP_SAME (1))
2888 return 1;
2889
2890 /* For commutative ops, allow the other order. */
2891 return (commutative_tree_code (TREE_CODE (arg0))
2892 && operand_equal_p (TREE_OPERAND (arg0, 0),
2893 TREE_OPERAND (arg1, 1), flags)
2894 && operand_equal_p (TREE_OPERAND (arg0, 1),
2895 TREE_OPERAND (arg1, 0), flags));
2896
2897 case tcc_reference:
2898 /* If either of the pointer (or reference) expressions we are
2899 dereferencing contain a side effect, these cannot be equal,
2900 but their addresses can be. */
2901 if ((flags & OEP_CONSTANT_ADDRESS_OF) == 0
2902 && (TREE_SIDE_EFFECTS (arg0)
2903 || TREE_SIDE_EFFECTS (arg1)))
2904 return 0;
2905
2906 switch (TREE_CODE (arg0))
2907 {
2908 case INDIRECT_REF:
2909 if (!(flags & OEP_ADDRESS_OF)
2910 && (TYPE_ALIGN (TREE_TYPE (arg0))
2911 != TYPE_ALIGN (TREE_TYPE (arg1))))
2912 return 0;
2913 flags &= ~(OEP_CONSTANT_ADDRESS_OF|OEP_ADDRESS_OF);
2914 return OP_SAME (0);
2915
2916 case REALPART_EXPR:
2917 case IMAGPART_EXPR:
2918 return OP_SAME (0);
2919
2920 case TARGET_MEM_REF:
2921 case MEM_REF:
2922 /* Require equal access sizes, and similar pointer types.
2923 We can have incomplete types for array references of
2924 variable-sized arrays from the Fortran frontend
2925 though. Also verify the types are compatible. */
2926 if (!((TYPE_SIZE (TREE_TYPE (arg0)) == TYPE_SIZE (TREE_TYPE (arg1))
2927 || (TYPE_SIZE (TREE_TYPE (arg0))
2928 && TYPE_SIZE (TREE_TYPE (arg1))
2929 && operand_equal_p (TYPE_SIZE (TREE_TYPE (arg0)),
2930 TYPE_SIZE (TREE_TYPE (arg1)), flags)))
2931 && types_compatible_p (TREE_TYPE (arg0), TREE_TYPE (arg1))
2932 && ((flags & OEP_ADDRESS_OF)
2933 || (alias_ptr_types_compatible_p
2934 (TREE_TYPE (TREE_OPERAND (arg0, 1)),
2935 TREE_TYPE (TREE_OPERAND (arg1, 1)))
2936 && (MR_DEPENDENCE_CLIQUE (arg0)
2937 == MR_DEPENDENCE_CLIQUE (arg1))
2938 && (MR_DEPENDENCE_BASE (arg0)
2939 == MR_DEPENDENCE_BASE (arg1))
2940 && (TYPE_ALIGN (TREE_TYPE (arg0))
2941 == TYPE_ALIGN (TREE_TYPE (arg1)))))))
2942 return 0;
2943 flags &= ~(OEP_CONSTANT_ADDRESS_OF|OEP_ADDRESS_OF);
2944 return (OP_SAME (0) && OP_SAME (1)
2945 /* TARGET_MEM_REF require equal extra operands. */
2946 && (TREE_CODE (arg0) != TARGET_MEM_REF
2947 || (OP_SAME_WITH_NULL (2)
2948 && OP_SAME_WITH_NULL (3)
2949 && OP_SAME_WITH_NULL (4))));
2950
2951 case ARRAY_REF:
2952 case ARRAY_RANGE_REF:
2953 /* Operands 2 and 3 may be null.
2954 Compare the array index by value if it is constant first as we
2955 may have different types but same value here. */
2956 if (!OP_SAME (0))
2957 return 0;
2958 flags &= ~(OEP_CONSTANT_ADDRESS_OF|OEP_ADDRESS_OF);
2959 return ((tree_int_cst_equal (TREE_OPERAND (arg0, 1),
2960 TREE_OPERAND (arg1, 1))
2961 || OP_SAME (1))
2962 && OP_SAME_WITH_NULL (2)
2963 && OP_SAME_WITH_NULL (3));
2964
2965 case COMPONENT_REF:
2966 /* Handle operand 2 the same as for ARRAY_REF. Operand 0
2967 may be NULL when we're called to compare MEM_EXPRs. */
2968 if (!OP_SAME_WITH_NULL (0)
2969 || !OP_SAME (1))
2970 return 0;
2971 flags &= ~(OEP_CONSTANT_ADDRESS_OF|OEP_ADDRESS_OF);
2972 return OP_SAME_WITH_NULL (2);
2973
2974 case BIT_FIELD_REF:
2975 if (!OP_SAME (0))
2976 return 0;
2977 flags &= ~(OEP_CONSTANT_ADDRESS_OF|OEP_ADDRESS_OF);
2978 return OP_SAME (1) && OP_SAME (2);
2979
2980 default:
2981 return 0;
2982 }
2983
2984 case tcc_expression:
2985 switch (TREE_CODE (arg0))
2986 {
2987 case ADDR_EXPR:
2988 return operand_equal_p (TREE_OPERAND (arg0, 0),
2989 TREE_OPERAND (arg1, 0),
2990 flags | OEP_ADDRESS_OF);
2991
2992 case TRUTH_NOT_EXPR:
2993 return OP_SAME (0);
2994
2995 case TRUTH_ANDIF_EXPR:
2996 case TRUTH_ORIF_EXPR:
2997 return OP_SAME (0) && OP_SAME (1);
2998
2999 case FMA_EXPR:
3000 case WIDEN_MULT_PLUS_EXPR:
3001 case WIDEN_MULT_MINUS_EXPR:
3002 if (!OP_SAME (2))
3003 return 0;
3004 /* The multiplcation operands are commutative. */
3005 /* FALLTHRU */
3006
3007 case TRUTH_AND_EXPR:
3008 case TRUTH_OR_EXPR:
3009 case TRUTH_XOR_EXPR:
3010 if (OP_SAME (0) && OP_SAME (1))
3011 return 1;
3012
3013 /* Otherwise take into account this is a commutative operation. */
3014 return (operand_equal_p (TREE_OPERAND (arg0, 0),
3015 TREE_OPERAND (arg1, 1), flags)
3016 && operand_equal_p (TREE_OPERAND (arg0, 1),
3017 TREE_OPERAND (arg1, 0), flags));
3018
3019 case COND_EXPR:
3020 case VEC_COND_EXPR:
3021 case DOT_PROD_EXPR:
3022 return OP_SAME (0) && OP_SAME (1) && OP_SAME (2);
3023
3024 default:
3025 return 0;
3026 }
3027
3028 case tcc_vl_exp:
3029 switch (TREE_CODE (arg0))
3030 {
3031 case CALL_EXPR:
3032 if ((CALL_EXPR_FN (arg0) == NULL_TREE)
3033 != (CALL_EXPR_FN (arg1) == NULL_TREE))
3034 /* If not both CALL_EXPRs are either internal or normal function
3035 functions, then they are not equal. */
3036 return 0;
3037 else if (CALL_EXPR_FN (arg0) == NULL_TREE)
3038 {
3039 /* If the CALL_EXPRs call different internal functions, then they
3040 are not equal. */
3041 if (CALL_EXPR_IFN (arg0) != CALL_EXPR_IFN (arg1))
3042 return 0;
3043 }
3044 else
3045 {
3046 /* If the CALL_EXPRs call different functions, then they are not
3047 equal. */
3048 if (! operand_equal_p (CALL_EXPR_FN (arg0), CALL_EXPR_FN (arg1),
3049 flags))
3050 return 0;
3051 }
3052
3053 {
3054 unsigned int cef = call_expr_flags (arg0);
3055 if (flags & OEP_PURE_SAME)
3056 cef &= ECF_CONST | ECF_PURE;
3057 else
3058 cef &= ECF_CONST;
3059 if (!cef)
3060 return 0;
3061 }
3062
3063 /* Now see if all the arguments are the same. */
3064 {
3065 const_call_expr_arg_iterator iter0, iter1;
3066 const_tree a0, a1;
3067 for (a0 = first_const_call_expr_arg (arg0, &iter0),
3068 a1 = first_const_call_expr_arg (arg1, &iter1);
3069 a0 && a1;
3070 a0 = next_const_call_expr_arg (&iter0),
3071 a1 = next_const_call_expr_arg (&iter1))
3072 if (! operand_equal_p (a0, a1, flags))
3073 return 0;
3074
3075 /* If we get here and both argument lists are exhausted
3076 then the CALL_EXPRs are equal. */
3077 return ! (a0 || a1);
3078 }
3079 default:
3080 return 0;
3081 }
3082
3083 case tcc_declaration:
3084 /* Consider __builtin_sqrt equal to sqrt. */
3085 return (TREE_CODE (arg0) == FUNCTION_DECL
3086 && DECL_BUILT_IN (arg0) && DECL_BUILT_IN (arg1)
3087 && DECL_BUILT_IN_CLASS (arg0) == DECL_BUILT_IN_CLASS (arg1)
3088 && DECL_FUNCTION_CODE (arg0) == DECL_FUNCTION_CODE (arg1));
3089
3090 default:
3091 return 0;
3092 }
3093
3094 #undef OP_SAME
3095 #undef OP_SAME_WITH_NULL
3096 }
3097 \f
3098 /* Similar to operand_equal_p, but see if ARG0 might have been made by
3099 shorten_compare from ARG1 when ARG1 was being compared with OTHER.
3100
3101 When in doubt, return 0. */
3102
3103 static int
3104 operand_equal_for_comparison_p (tree arg0, tree arg1, tree other)
3105 {
3106 int unsignedp1, unsignedpo;
3107 tree primarg0, primarg1, primother;
3108 unsigned int correct_width;
3109
3110 if (operand_equal_p (arg0, arg1, 0))
3111 return 1;
3112
3113 if (! INTEGRAL_TYPE_P (TREE_TYPE (arg0))
3114 || ! INTEGRAL_TYPE_P (TREE_TYPE (arg1)))
3115 return 0;
3116
3117 /* Discard any conversions that don't change the modes of ARG0 and ARG1
3118 and see if the inner values are the same. This removes any
3119 signedness comparison, which doesn't matter here. */
3120 primarg0 = arg0, primarg1 = arg1;
3121 STRIP_NOPS (primarg0);
3122 STRIP_NOPS (primarg1);
3123 if (operand_equal_p (primarg0, primarg1, 0))
3124 return 1;
3125
3126 /* Duplicate what shorten_compare does to ARG1 and see if that gives the
3127 actual comparison operand, ARG0.
3128
3129 First throw away any conversions to wider types
3130 already present in the operands. */
3131
3132 primarg1 = get_narrower (arg1, &unsignedp1);
3133 primother = get_narrower (other, &unsignedpo);
3134
3135 correct_width = TYPE_PRECISION (TREE_TYPE (arg1));
3136 if (unsignedp1 == unsignedpo
3137 && TYPE_PRECISION (TREE_TYPE (primarg1)) < correct_width
3138 && TYPE_PRECISION (TREE_TYPE (primother)) < correct_width)
3139 {
3140 tree type = TREE_TYPE (arg0);
3141
3142 /* Make sure shorter operand is extended the right way
3143 to match the longer operand. */
3144 primarg1 = fold_convert (signed_or_unsigned_type_for
3145 (unsignedp1, TREE_TYPE (primarg1)), primarg1);
3146
3147 if (operand_equal_p (arg0, fold_convert (type, primarg1), 0))
3148 return 1;
3149 }
3150
3151 return 0;
3152 }
3153 \f
3154 /* See if ARG is an expression that is either a comparison or is performing
3155 arithmetic on comparisons. The comparisons must only be comparing
3156 two different values, which will be stored in *CVAL1 and *CVAL2; if
3157 they are nonzero it means that some operands have already been found.
3158 No variables may be used anywhere else in the expression except in the
3159 comparisons. If SAVE_P is true it means we removed a SAVE_EXPR around
3160 the expression and save_expr needs to be called with CVAL1 and CVAL2.
3161
3162 If this is true, return 1. Otherwise, return zero. */
3163
3164 static int
3165 twoval_comparison_p (tree arg, tree *cval1, tree *cval2, int *save_p)
3166 {
3167 enum tree_code code = TREE_CODE (arg);
3168 enum tree_code_class tclass = TREE_CODE_CLASS (code);
3169
3170 /* We can handle some of the tcc_expression cases here. */
3171 if (tclass == tcc_expression && code == TRUTH_NOT_EXPR)
3172 tclass = tcc_unary;
3173 else if (tclass == tcc_expression
3174 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR
3175 || code == COMPOUND_EXPR))
3176 tclass = tcc_binary;
3177
3178 else if (tclass == tcc_expression && code == SAVE_EXPR
3179 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg, 0)))
3180 {
3181 /* If we've already found a CVAL1 or CVAL2, this expression is
3182 two complex to handle. */
3183 if (*cval1 || *cval2)
3184 return 0;
3185
3186 tclass = tcc_unary;
3187 *save_p = 1;
3188 }
3189
3190 switch (tclass)
3191 {
3192 case tcc_unary:
3193 return twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p);
3194
3195 case tcc_binary:
3196 return (twoval_comparison_p (TREE_OPERAND (arg, 0), cval1, cval2, save_p)
3197 && twoval_comparison_p (TREE_OPERAND (arg, 1),
3198 cval1, cval2, save_p));
3199
3200 case tcc_constant:
3201 return 1;
3202
3203 case tcc_expression:
3204 if (code == COND_EXPR)
3205 return (twoval_comparison_p (TREE_OPERAND (arg, 0),
3206 cval1, cval2, save_p)
3207 && twoval_comparison_p (TREE_OPERAND (arg, 1),
3208 cval1, cval2, save_p)
3209 && twoval_comparison_p (TREE_OPERAND (arg, 2),
3210 cval1, cval2, save_p));
3211 return 0;
3212
3213 case tcc_comparison:
3214 /* First see if we can handle the first operand, then the second. For
3215 the second operand, we know *CVAL1 can't be zero. It must be that
3216 one side of the comparison is each of the values; test for the
3217 case where this isn't true by failing if the two operands
3218 are the same. */
3219
3220 if (operand_equal_p (TREE_OPERAND (arg, 0),
3221 TREE_OPERAND (arg, 1), 0))
3222 return 0;
3223
3224 if (*cval1 == 0)
3225 *cval1 = TREE_OPERAND (arg, 0);
3226 else if (operand_equal_p (*cval1, TREE_OPERAND (arg, 0), 0))
3227 ;
3228 else if (*cval2 == 0)
3229 *cval2 = TREE_OPERAND (arg, 0);
3230 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 0), 0))
3231 ;
3232 else
3233 return 0;
3234
3235 if (operand_equal_p (*cval1, TREE_OPERAND (arg, 1), 0))
3236 ;
3237 else if (*cval2 == 0)
3238 *cval2 = TREE_OPERAND (arg, 1);
3239 else if (operand_equal_p (*cval2, TREE_OPERAND (arg, 1), 0))
3240 ;
3241 else
3242 return 0;
3243
3244 return 1;
3245
3246 default:
3247 return 0;
3248 }
3249 }
3250 \f
3251 /* ARG is a tree that is known to contain just arithmetic operations and
3252 comparisons. Evaluate the operations in the tree substituting NEW0 for
3253 any occurrence of OLD0 as an operand of a comparison and likewise for
3254 NEW1 and OLD1. */
3255
3256 static tree
3257 eval_subst (location_t loc, tree arg, tree old0, tree new0,
3258 tree old1, tree new1)
3259 {
3260 tree type = TREE_TYPE (arg);
3261 enum tree_code code = TREE_CODE (arg);
3262 enum tree_code_class tclass = TREE_CODE_CLASS (code);
3263
3264 /* We can handle some of the tcc_expression cases here. */
3265 if (tclass == tcc_expression && code == TRUTH_NOT_EXPR)
3266 tclass = tcc_unary;
3267 else if (tclass == tcc_expression
3268 && (code == TRUTH_ANDIF_EXPR || code == TRUTH_ORIF_EXPR))
3269 tclass = tcc_binary;
3270
3271 switch (tclass)
3272 {
3273 case tcc_unary:
3274 return fold_build1_loc (loc, code, type,
3275 eval_subst (loc, TREE_OPERAND (arg, 0),
3276 old0, new0, old1, new1));
3277
3278 case tcc_binary:
3279 return fold_build2_loc (loc, code, type,
3280 eval_subst (loc, TREE_OPERAND (arg, 0),
3281 old0, new0, old1, new1),
3282 eval_subst (loc, TREE_OPERAND (arg, 1),
3283 old0, new0, old1, new1));
3284
3285 case tcc_expression:
3286 switch (code)
3287 {
3288 case SAVE_EXPR:
3289 return eval_subst (loc, TREE_OPERAND (arg, 0), old0, new0,
3290 old1, new1);
3291
3292 case COMPOUND_EXPR:
3293 return eval_subst (loc, TREE_OPERAND (arg, 1), old0, new0,
3294 old1, new1);
3295
3296 case COND_EXPR:
3297 return fold_build3_loc (loc, code, type,
3298 eval_subst (loc, TREE_OPERAND (arg, 0),
3299 old0, new0, old1, new1),
3300 eval_subst (loc, TREE_OPERAND (arg, 1),
3301 old0, new0, old1, new1),
3302 eval_subst (loc, TREE_OPERAND (arg, 2),
3303 old0, new0, old1, new1));
3304 default:
3305 break;
3306 }
3307 /* Fall through - ??? */
3308
3309 case tcc_comparison:
3310 {
3311 tree arg0 = TREE_OPERAND (arg, 0);
3312 tree arg1 = TREE_OPERAND (arg, 1);
3313
3314 /* We need to check both for exact equality and tree equality. The
3315 former will be true if the operand has a side-effect. In that
3316 case, we know the operand occurred exactly once. */
3317
3318 if (arg0 == old0 || operand_equal_p (arg0, old0, 0))
3319 arg0 = new0;
3320 else if (arg0 == old1 || operand_equal_p (arg0, old1, 0))
3321 arg0 = new1;
3322
3323 if (arg1 == old0 || operand_equal_p (arg1, old0, 0))
3324 arg1 = new0;
3325 else if (arg1 == old1 || operand_equal_p (arg1, old1, 0))
3326 arg1 = new1;
3327
3328 return fold_build2_loc (loc, code, type, arg0, arg1);
3329 }
3330
3331 default:
3332 return arg;
3333 }
3334 }
3335 \f
3336 /* Return a tree for the case when the result of an expression is RESULT
3337 converted to TYPE and OMITTED was previously an operand of the expression
3338 but is now not needed (e.g., we folded OMITTED * 0).
3339
3340 If OMITTED has side effects, we must evaluate it. Otherwise, just do
3341 the conversion of RESULT to TYPE. */
3342
3343 tree
3344 omit_one_operand_loc (location_t loc, tree type, tree result, tree omitted)
3345 {
3346 tree t = fold_convert_loc (loc, type, result);
3347
3348 /* If the resulting operand is an empty statement, just return the omitted
3349 statement casted to void. */
3350 if (IS_EMPTY_STMT (t) && TREE_SIDE_EFFECTS (omitted))
3351 return build1_loc (loc, NOP_EXPR, void_type_node,
3352 fold_ignored_result (omitted));
3353
3354 if (TREE_SIDE_EFFECTS (omitted))
3355 return build2_loc (loc, COMPOUND_EXPR, type,
3356 fold_ignored_result (omitted), t);
3357
3358 return non_lvalue_loc (loc, t);
3359 }
3360
3361 /* Return a tree for the case when the result of an expression is RESULT
3362 converted to TYPE and OMITTED1 and OMITTED2 were previously operands
3363 of the expression but are now not needed.
3364
3365 If OMITTED1 or OMITTED2 has side effects, they must be evaluated.
3366 If both OMITTED1 and OMITTED2 have side effects, OMITTED1 is
3367 evaluated before OMITTED2. Otherwise, if neither has side effects,
3368 just do the conversion of RESULT to TYPE. */
3369
3370 tree
3371 omit_two_operands_loc (location_t loc, tree type, tree result,
3372 tree omitted1, tree omitted2)
3373 {
3374 tree t = fold_convert_loc (loc, type, result);
3375
3376 if (TREE_SIDE_EFFECTS (omitted2))
3377 t = build2_loc (loc, COMPOUND_EXPR, type, omitted2, t);
3378 if (TREE_SIDE_EFFECTS (omitted1))
3379 t = build2_loc (loc, COMPOUND_EXPR, type, omitted1, t);
3380
3381 return TREE_CODE (t) != COMPOUND_EXPR ? non_lvalue_loc (loc, t) : t;
3382 }
3383
3384 \f
3385 /* Return a simplified tree node for the truth-negation of ARG. This
3386 never alters ARG itself. We assume that ARG is an operation that
3387 returns a truth value (0 or 1).
3388
3389 FIXME: one would think we would fold the result, but it causes
3390 problems with the dominator optimizer. */
3391
3392 static tree
3393 fold_truth_not_expr (location_t loc, tree arg)
3394 {
3395 tree type = TREE_TYPE (arg);
3396 enum tree_code code = TREE_CODE (arg);
3397 location_t loc1, loc2;
3398
3399 /* If this is a comparison, we can simply invert it, except for
3400 floating-point non-equality comparisons, in which case we just
3401 enclose a TRUTH_NOT_EXPR around what we have. */
3402
3403 if (TREE_CODE_CLASS (code) == tcc_comparison)
3404 {
3405 tree op_type = TREE_TYPE (TREE_OPERAND (arg, 0));
3406 if (FLOAT_TYPE_P (op_type)
3407 && flag_trapping_math
3408 && code != ORDERED_EXPR && code != UNORDERED_EXPR
3409 && code != NE_EXPR && code != EQ_EXPR)
3410 return NULL_TREE;
3411
3412 code = invert_tree_comparison (code, HONOR_NANS (op_type));
3413 if (code == ERROR_MARK)
3414 return NULL_TREE;
3415
3416 return build2_loc (loc, code, type, TREE_OPERAND (arg, 0),
3417 TREE_OPERAND (arg, 1));
3418 }
3419
3420 switch (code)
3421 {
3422 case INTEGER_CST:
3423 return constant_boolean_node (integer_zerop (arg), type);
3424
3425 case TRUTH_AND_EXPR:
3426 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3427 loc2 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3428 return build2_loc (loc, TRUTH_OR_EXPR, type,
3429 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)),
3430 invert_truthvalue_loc (loc2, TREE_OPERAND (arg, 1)));
3431
3432 case TRUTH_OR_EXPR:
3433 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3434 loc2 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3435 return build2_loc (loc, TRUTH_AND_EXPR, type,
3436 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)),
3437 invert_truthvalue_loc (loc2, TREE_OPERAND (arg, 1)));
3438
3439 case TRUTH_XOR_EXPR:
3440 /* Here we can invert either operand. We invert the first operand
3441 unless the second operand is a TRUTH_NOT_EXPR in which case our
3442 result is the XOR of the first operand with the inside of the
3443 negation of the second operand. */
3444
3445 if (TREE_CODE (TREE_OPERAND (arg, 1)) == TRUTH_NOT_EXPR)
3446 return build2_loc (loc, TRUTH_XOR_EXPR, type, TREE_OPERAND (arg, 0),
3447 TREE_OPERAND (TREE_OPERAND (arg, 1), 0));
3448 else
3449 return build2_loc (loc, TRUTH_XOR_EXPR, type,
3450 invert_truthvalue_loc (loc, TREE_OPERAND (arg, 0)),
3451 TREE_OPERAND (arg, 1));
3452
3453 case TRUTH_ANDIF_EXPR:
3454 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3455 loc2 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3456 return build2_loc (loc, TRUTH_ORIF_EXPR, type,
3457 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)),
3458 invert_truthvalue_loc (loc2, TREE_OPERAND (arg, 1)));
3459
3460 case TRUTH_ORIF_EXPR:
3461 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3462 loc2 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3463 return build2_loc (loc, TRUTH_ANDIF_EXPR, type,
3464 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)),
3465 invert_truthvalue_loc (loc2, TREE_OPERAND (arg, 1)));
3466
3467 case TRUTH_NOT_EXPR:
3468 return TREE_OPERAND (arg, 0);
3469
3470 case COND_EXPR:
3471 {
3472 tree arg1 = TREE_OPERAND (arg, 1);
3473 tree arg2 = TREE_OPERAND (arg, 2);
3474
3475 loc1 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3476 loc2 = expr_location_or (TREE_OPERAND (arg, 2), loc);
3477
3478 /* A COND_EXPR may have a throw as one operand, which
3479 then has void type. Just leave void operands
3480 as they are. */
3481 return build3_loc (loc, COND_EXPR, type, TREE_OPERAND (arg, 0),
3482 VOID_TYPE_P (TREE_TYPE (arg1))
3483 ? arg1 : invert_truthvalue_loc (loc1, arg1),
3484 VOID_TYPE_P (TREE_TYPE (arg2))
3485 ? arg2 : invert_truthvalue_loc (loc2, arg2));
3486 }
3487
3488 case COMPOUND_EXPR:
3489 loc1 = expr_location_or (TREE_OPERAND (arg, 1), loc);
3490 return build2_loc (loc, COMPOUND_EXPR, type,
3491 TREE_OPERAND (arg, 0),
3492 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 1)));
3493
3494 case NON_LVALUE_EXPR:
3495 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3496 return invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0));
3497
3498 CASE_CONVERT:
3499 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
3500 return build1_loc (loc, TRUTH_NOT_EXPR, type, arg);
3501
3502 /* ... fall through ... */
3503
3504 case FLOAT_EXPR:
3505 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3506 return build1_loc (loc, TREE_CODE (arg), type,
3507 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)));
3508
3509 case BIT_AND_EXPR:
3510 if (!integer_onep (TREE_OPERAND (arg, 1)))
3511 return NULL_TREE;
3512 return build2_loc (loc, EQ_EXPR, type, arg, build_int_cst (type, 0));
3513
3514 case SAVE_EXPR:
3515 return build1_loc (loc, TRUTH_NOT_EXPR, type, arg);
3516
3517 case CLEANUP_POINT_EXPR:
3518 loc1 = expr_location_or (TREE_OPERAND (arg, 0), loc);
3519 return build1_loc (loc, CLEANUP_POINT_EXPR, type,
3520 invert_truthvalue_loc (loc1, TREE_OPERAND (arg, 0)));
3521
3522 default:
3523 return NULL_TREE;
3524 }
3525 }
3526
3527 /* Fold the truth-negation of ARG. This never alters ARG itself. We
3528 assume that ARG is an operation that returns a truth value (0 or 1
3529 for scalars, 0 or -1 for vectors). Return the folded expression if
3530 folding is successful. Otherwise, return NULL_TREE. */
3531
3532 static tree
3533 fold_invert_truthvalue (location_t loc, tree arg)
3534 {
3535 tree type = TREE_TYPE (arg);
3536 return fold_unary_loc (loc, VECTOR_TYPE_P (type)
3537 ? BIT_NOT_EXPR
3538 : TRUTH_NOT_EXPR,
3539 type, arg);
3540 }
3541
3542 /* Return a simplified tree node for the truth-negation of ARG. This
3543 never alters ARG itself. We assume that ARG is an operation that
3544 returns a truth value (0 or 1 for scalars, 0 or -1 for vectors). */
3545
3546 tree
3547 invert_truthvalue_loc (location_t loc, tree arg)
3548 {
3549 if (TREE_CODE (arg) == ERROR_MARK)
3550 return arg;
3551
3552 tree type = TREE_TYPE (arg);
3553 return fold_build1_loc (loc, VECTOR_TYPE_P (type)
3554 ? BIT_NOT_EXPR
3555 : TRUTH_NOT_EXPR,
3556 type, arg);
3557 }
3558
3559 /* Given a bit-wise operation CODE applied to ARG0 and ARG1, see if both
3560 operands are another bit-wise operation with a common input. If so,
3561 distribute the bit operations to save an operation and possibly two if
3562 constants are involved. For example, convert
3563 (A | B) & (A | C) into A | (B & C)
3564 Further simplification will occur if B and C are constants.
3565
3566 If this optimization cannot be done, 0 will be returned. */
3567
3568 static tree
3569 distribute_bit_expr (location_t loc, enum tree_code code, tree type,
3570 tree arg0, tree arg1)
3571 {
3572 tree common;
3573 tree left, right;
3574
3575 if (TREE_CODE (arg0) != TREE_CODE (arg1)
3576 || TREE_CODE (arg0) == code
3577 || (TREE_CODE (arg0) != BIT_AND_EXPR
3578 && TREE_CODE (arg0) != BIT_IOR_EXPR))
3579 return 0;
3580
3581 if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 0), 0))
3582 {
3583 common = TREE_OPERAND (arg0, 0);
3584 left = TREE_OPERAND (arg0, 1);
3585 right = TREE_OPERAND (arg1, 1);
3586 }
3587 else if (operand_equal_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1), 0))
3588 {
3589 common = TREE_OPERAND (arg0, 0);
3590 left = TREE_OPERAND (arg0, 1);
3591 right = TREE_OPERAND (arg1, 0);
3592 }
3593 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 0), 0))
3594 {
3595 common = TREE_OPERAND (arg0, 1);
3596 left = TREE_OPERAND (arg0, 0);
3597 right = TREE_OPERAND (arg1, 1);
3598 }
3599 else if (operand_equal_p (TREE_OPERAND (arg0, 1), TREE_OPERAND (arg1, 1), 0))
3600 {
3601 common = TREE_OPERAND (arg0, 1);
3602 left = TREE_OPERAND (arg0, 0);
3603 right = TREE_OPERAND (arg1, 0);
3604 }
3605 else
3606 return 0;
3607
3608 common = fold_convert_loc (loc, type, common);
3609 left = fold_convert_loc (loc, type, left);
3610 right = fold_convert_loc (loc, type, right);
3611 return fold_build2_loc (loc, TREE_CODE (arg0), type, common,
3612 fold_build2_loc (loc, code, type, left, right));
3613 }
3614
3615 /* Knowing that ARG0 and ARG1 are both RDIV_EXPRs, simplify a binary operation
3616 with code CODE. This optimization is unsafe. */
3617 static tree
3618 distribute_real_division (location_t loc, enum tree_code code, tree type,
3619 tree arg0, tree arg1)
3620 {
3621 bool mul0 = TREE_CODE (arg0) == MULT_EXPR;
3622 bool mul1 = TREE_CODE (arg1) == MULT_EXPR;
3623
3624 /* (A / C) +- (B / C) -> (A +- B) / C. */
3625 if (mul0 == mul1
3626 && operand_equal_p (TREE_OPERAND (arg0, 1),
3627 TREE_OPERAND (arg1, 1), 0))
3628 return fold_build2_loc (loc, mul0 ? MULT_EXPR : RDIV_EXPR, type,
3629 fold_build2_loc (loc, code, type,
3630 TREE_OPERAND (arg0, 0),
3631 TREE_OPERAND (arg1, 0)),
3632 TREE_OPERAND (arg0, 1));
3633
3634 /* (A / C1) +- (A / C2) -> A * (1 / C1 +- 1 / C2). */
3635 if (operand_equal_p (TREE_OPERAND (arg0, 0),
3636 TREE_OPERAND (arg1, 0), 0)
3637 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
3638 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
3639 {
3640 REAL_VALUE_TYPE r0, r1;
3641 r0 = TREE_REAL_CST (TREE_OPERAND (arg0, 1));
3642 r1 = TREE_REAL_CST (TREE_OPERAND (arg1, 1));
3643 if (!mul0)
3644 real_arithmetic (&r0, RDIV_EXPR, &dconst1, &r0);
3645 if (!mul1)
3646 real_arithmetic (&r1, RDIV_EXPR, &dconst1, &r1);
3647 real_arithmetic (&r0, code, &r0, &r1);
3648 return fold_build2_loc (loc, MULT_EXPR, type,
3649 TREE_OPERAND (arg0, 0),
3650 build_real (type, r0));
3651 }
3652
3653 return NULL_TREE;
3654 }
3655 \f
3656 /* Return a BIT_FIELD_REF of type TYPE to refer to BITSIZE bits of INNER
3657 starting at BITPOS. The field is unsigned if UNSIGNEDP is nonzero. */
3658
3659 static tree
3660 make_bit_field_ref (location_t loc, tree inner, tree type,
3661 HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos, int unsignedp)
3662 {
3663 tree result, bftype;
3664
3665 if (bitpos == 0)
3666 {
3667 tree size = TYPE_SIZE (TREE_TYPE (inner));
3668 if ((INTEGRAL_TYPE_P (TREE_TYPE (inner))
3669 || POINTER_TYPE_P (TREE_TYPE (inner)))
3670 && tree_fits_shwi_p (size)
3671 && tree_to_shwi (size) == bitsize)
3672 return fold_convert_loc (loc, type, inner);
3673 }
3674
3675 bftype = type;
3676 if (TYPE_PRECISION (bftype) != bitsize
3677 || TYPE_UNSIGNED (bftype) == !unsignedp)
3678 bftype = build_nonstandard_integer_type (bitsize, 0);
3679
3680 result = build3_loc (loc, BIT_FIELD_REF, bftype, inner,
3681 size_int (bitsize), bitsize_int (bitpos));
3682
3683 if (bftype != type)
3684 result = fold_convert_loc (loc, type, result);
3685
3686 return result;
3687 }
3688
3689 /* Optimize a bit-field compare.
3690
3691 There are two cases: First is a compare against a constant and the
3692 second is a comparison of two items where the fields are at the same
3693 bit position relative to the start of a chunk (byte, halfword, word)
3694 large enough to contain it. In these cases we can avoid the shift
3695 implicit in bitfield extractions.
3696
3697 For constants, we emit a compare of the shifted constant with the
3698 BIT_AND_EXPR of a mask and a byte, halfword, or word of the operand being
3699 compared. For two fields at the same position, we do the ANDs with the
3700 similar mask and compare the result of the ANDs.
3701
3702 CODE is the comparison code, known to be either NE_EXPR or EQ_EXPR.
3703 COMPARE_TYPE is the type of the comparison, and LHS and RHS
3704 are the left and right operands of the comparison, respectively.
3705
3706 If the optimization described above can be done, we return the resulting
3707 tree. Otherwise we return zero. */
3708
3709 static tree
3710 optimize_bit_field_compare (location_t loc, enum tree_code code,
3711 tree compare_type, tree lhs, tree rhs)
3712 {
3713 HOST_WIDE_INT lbitpos, lbitsize, rbitpos, rbitsize, nbitpos, nbitsize;
3714 tree type = TREE_TYPE (lhs);
3715 tree unsigned_type;
3716 int const_p = TREE_CODE (rhs) == INTEGER_CST;
3717 machine_mode lmode, rmode, nmode;
3718 int lunsignedp, runsignedp;
3719 int lvolatilep = 0, rvolatilep = 0;
3720 tree linner, rinner = NULL_TREE;
3721 tree mask;
3722 tree offset;
3723
3724 /* Get all the information about the extractions being done. If the bit size
3725 if the same as the size of the underlying object, we aren't doing an
3726 extraction at all and so can do nothing. We also don't want to
3727 do anything if the inner expression is a PLACEHOLDER_EXPR since we
3728 then will no longer be able to replace it. */
3729 linner = get_inner_reference (lhs, &lbitsize, &lbitpos, &offset, &lmode,
3730 &lunsignedp, &lvolatilep, false);
3731 if (linner == lhs || lbitsize == GET_MODE_BITSIZE (lmode) || lbitsize < 0
3732 || offset != 0 || TREE_CODE (linner) == PLACEHOLDER_EXPR || lvolatilep)
3733 return 0;
3734
3735 if (!const_p)
3736 {
3737 /* If this is not a constant, we can only do something if bit positions,
3738 sizes, and signedness are the same. */
3739 rinner = get_inner_reference (rhs, &rbitsize, &rbitpos, &offset, &rmode,
3740 &runsignedp, &rvolatilep, false);
3741
3742 if (rinner == rhs || lbitpos != rbitpos || lbitsize != rbitsize
3743 || lunsignedp != runsignedp || offset != 0
3744 || TREE_CODE (rinner) == PLACEHOLDER_EXPR || rvolatilep)
3745 return 0;
3746 }
3747
3748 /* See if we can find a mode to refer to this field. We should be able to,
3749 but fail if we can't. */
3750 nmode = get_best_mode (lbitsize, lbitpos, 0, 0,
3751 const_p ? TYPE_ALIGN (TREE_TYPE (linner))
3752 : MIN (TYPE_ALIGN (TREE_TYPE (linner)),
3753 TYPE_ALIGN (TREE_TYPE (rinner))),
3754 word_mode, false);
3755 if (nmode == VOIDmode)
3756 return 0;
3757
3758 /* Set signed and unsigned types of the precision of this mode for the
3759 shifts below. */
3760 unsigned_type = lang_hooks.types.type_for_mode (nmode, 1);
3761
3762 /* Compute the bit position and size for the new reference and our offset
3763 within it. If the new reference is the same size as the original, we
3764 won't optimize anything, so return zero. */
3765 nbitsize = GET_MODE_BITSIZE (nmode);
3766 nbitpos = lbitpos & ~ (nbitsize - 1);
3767 lbitpos -= nbitpos;
3768 if (nbitsize == lbitsize)
3769 return 0;
3770
3771 if (BYTES_BIG_ENDIAN)
3772 lbitpos = nbitsize - lbitsize - lbitpos;
3773
3774 /* Make the mask to be used against the extracted field. */
3775 mask = build_int_cst_type (unsigned_type, -1);
3776 mask = const_binop (LSHIFT_EXPR, mask, size_int (nbitsize - lbitsize));
3777 mask = const_binop (RSHIFT_EXPR, mask,
3778 size_int (nbitsize - lbitsize - lbitpos));
3779
3780 if (! const_p)
3781 /* If not comparing with constant, just rework the comparison
3782 and return. */
3783 return fold_build2_loc (loc, code, compare_type,
3784 fold_build2_loc (loc, BIT_AND_EXPR, unsigned_type,
3785 make_bit_field_ref (loc, linner,
3786 unsigned_type,
3787 nbitsize, nbitpos,
3788 1),
3789 mask),
3790 fold_build2_loc (loc, BIT_AND_EXPR, unsigned_type,
3791 make_bit_field_ref (loc, rinner,
3792 unsigned_type,
3793 nbitsize, nbitpos,
3794 1),
3795 mask));
3796
3797 /* Otherwise, we are handling the constant case. See if the constant is too
3798 big for the field. Warn and return a tree of for 0 (false) if so. We do
3799 this not only for its own sake, but to avoid having to test for this
3800 error case below. If we didn't, we might generate wrong code.
3801
3802 For unsigned fields, the constant shifted right by the field length should
3803 be all zero. For signed fields, the high-order bits should agree with
3804 the sign bit. */
3805
3806 if (lunsignedp)
3807 {
3808 if (wi::lrshift (rhs, lbitsize) != 0)
3809 {
3810 warning (0, "comparison is always %d due to width of bit-field",
3811 code == NE_EXPR);
3812 return constant_boolean_node (code == NE_EXPR, compare_type);
3813 }
3814 }
3815 else
3816 {
3817 wide_int tem = wi::arshift (rhs, lbitsize - 1);
3818 if (tem != 0 && tem != -1)
3819 {
3820 warning (0, "comparison is always %d due to width of bit-field",
3821 code == NE_EXPR);
3822 return constant_boolean_node (code == NE_EXPR, compare_type);
3823 }
3824 }
3825
3826 /* Single-bit compares should always be against zero. */
3827 if (lbitsize == 1 && ! integer_zerop (rhs))
3828 {
3829 code = code == EQ_EXPR ? NE_EXPR : EQ_EXPR;
3830 rhs = build_int_cst (type, 0);
3831 }
3832
3833 /* Make a new bitfield reference, shift the constant over the
3834 appropriate number of bits and mask it with the computed mask
3835 (in case this was a signed field). If we changed it, make a new one. */
3836 lhs = make_bit_field_ref (loc, linner, unsigned_type, nbitsize, nbitpos, 1);
3837
3838 rhs = const_binop (BIT_AND_EXPR,
3839 const_binop (LSHIFT_EXPR,
3840 fold_convert_loc (loc, unsigned_type, rhs),
3841 size_int (lbitpos)),
3842 mask);
3843
3844 lhs = build2_loc (loc, code, compare_type,
3845 build2 (BIT_AND_EXPR, unsigned_type, lhs, mask), rhs);
3846 return lhs;
3847 }
3848 \f
3849 /* Subroutine for fold_truth_andor_1: decode a field reference.
3850
3851 If EXP is a comparison reference, we return the innermost reference.
3852
3853 *PBITSIZE is set to the number of bits in the reference, *PBITPOS is
3854 set to the starting bit number.
3855
3856 If the innermost field can be completely contained in a mode-sized
3857 unit, *PMODE is set to that mode. Otherwise, it is set to VOIDmode.
3858
3859 *PVOLATILEP is set to 1 if the any expression encountered is volatile;
3860 otherwise it is not changed.
3861
3862 *PUNSIGNEDP is set to the signedness of the field.
3863
3864 *PMASK is set to the mask used. This is either contained in a
3865 BIT_AND_EXPR or derived from the width of the field.
3866
3867 *PAND_MASK is set to the mask found in a BIT_AND_EXPR, if any.
3868
3869 Return 0 if this is not a component reference or is one that we can't
3870 do anything with. */
3871
3872 static tree
3873 decode_field_reference (location_t loc, tree exp, HOST_WIDE_INT *pbitsize,
3874 HOST_WIDE_INT *pbitpos, machine_mode *pmode,
3875 int *punsignedp, int *pvolatilep,
3876 tree *pmask, tree *pand_mask)
3877 {
3878 tree outer_type = 0;
3879 tree and_mask = 0;
3880 tree mask, inner, offset;
3881 tree unsigned_type;
3882 unsigned int precision;
3883
3884 /* All the optimizations using this function assume integer fields.
3885 There are problems with FP fields since the type_for_size call
3886 below can fail for, e.g., XFmode. */
3887 if (! INTEGRAL_TYPE_P (TREE_TYPE (exp)))
3888 return 0;
3889
3890 /* We are interested in the bare arrangement of bits, so strip everything
3891 that doesn't affect the machine mode. However, record the type of the
3892 outermost expression if it may matter below. */
3893 if (CONVERT_EXPR_P (exp)
3894 || TREE_CODE (exp) == NON_LVALUE_EXPR)
3895 outer_type = TREE_TYPE (exp);
3896 STRIP_NOPS (exp);
3897
3898 if (TREE_CODE (exp) == BIT_AND_EXPR)
3899 {
3900 and_mask = TREE_OPERAND (exp, 1);
3901 exp = TREE_OPERAND (exp, 0);
3902 STRIP_NOPS (exp); STRIP_NOPS (and_mask);
3903 if (TREE_CODE (and_mask) != INTEGER_CST)
3904 return 0;
3905 }
3906
3907 inner = get_inner_reference (exp, pbitsize, pbitpos, &offset, pmode,
3908 punsignedp, pvolatilep, false);
3909 if ((inner == exp && and_mask == 0)
3910 || *pbitsize < 0 || offset != 0
3911 || TREE_CODE (inner) == PLACEHOLDER_EXPR)
3912 return 0;
3913
3914 /* If the number of bits in the reference is the same as the bitsize of
3915 the outer type, then the outer type gives the signedness. Otherwise
3916 (in case of a small bitfield) the signedness is unchanged. */
3917 if (outer_type && *pbitsize == TYPE_PRECISION (outer_type))
3918 *punsignedp = TYPE_UNSIGNED (outer_type);
3919
3920 /* Compute the mask to access the bitfield. */
3921 unsigned_type = lang_hooks.types.type_for_size (*pbitsize, 1);
3922 precision = TYPE_PRECISION (unsigned_type);
3923
3924 mask = build_int_cst_type (unsigned_type, -1);
3925
3926 mask = const_binop (LSHIFT_EXPR, mask, size_int (precision - *pbitsize));
3927 mask = const_binop (RSHIFT_EXPR, mask, size_int (precision - *pbitsize));
3928
3929 /* Merge it with the mask we found in the BIT_AND_EXPR, if any. */
3930 if (and_mask != 0)
3931 mask = fold_build2_loc (loc, BIT_AND_EXPR, unsigned_type,
3932 fold_convert_loc (loc, unsigned_type, and_mask), mask);
3933
3934 *pmask = mask;
3935 *pand_mask = and_mask;
3936 return inner;
3937 }
3938
3939 /* Return nonzero if MASK represents a mask of SIZE ones in the low-order
3940 bit positions and MASK is SIGNED. */
3941
3942 static int
3943 all_ones_mask_p (const_tree mask, unsigned int size)
3944 {
3945 tree type = TREE_TYPE (mask);
3946 unsigned int precision = TYPE_PRECISION (type);
3947
3948 /* If this function returns true when the type of the mask is
3949 UNSIGNED, then there will be errors. In particular see
3950 gcc.c-torture/execute/990326-1.c. There does not appear to be
3951 any documentation paper trail as to why this is so. But the pre
3952 wide-int worked with that restriction and it has been preserved
3953 here. */
3954 if (size > precision || TYPE_SIGN (type) == UNSIGNED)
3955 return false;
3956
3957 return wi::mask (size, false, precision) == mask;
3958 }
3959
3960 /* Subroutine for fold: determine if VAL is the INTEGER_CONST that
3961 represents the sign bit of EXP's type. If EXP represents a sign
3962 or zero extension, also test VAL against the unextended type.
3963 The return value is the (sub)expression whose sign bit is VAL,
3964 or NULL_TREE otherwise. */
3965
3966 tree
3967 sign_bit_p (tree exp, const_tree val)
3968 {
3969 int width;
3970 tree t;
3971
3972 /* Tree EXP must have an integral type. */
3973 t = TREE_TYPE (exp);
3974 if (! INTEGRAL_TYPE_P (t))
3975 return NULL_TREE;
3976
3977 /* Tree VAL must be an integer constant. */
3978 if (TREE_CODE (val) != INTEGER_CST
3979 || TREE_OVERFLOW (val))
3980 return NULL_TREE;
3981
3982 width = TYPE_PRECISION (t);
3983 if (wi::only_sign_bit_p (val, width))
3984 return exp;
3985
3986 /* Handle extension from a narrower type. */
3987 if (TREE_CODE (exp) == NOP_EXPR
3988 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0))) < width)
3989 return sign_bit_p (TREE_OPERAND (exp, 0), val);
3990
3991 return NULL_TREE;
3992 }
3993
3994 /* Subroutine for fold_truth_andor_1: determine if an operand is simple enough
3995 to be evaluated unconditionally. */
3996
3997 static int
3998 simple_operand_p (const_tree exp)
3999 {
4000 /* Strip any conversions that don't change the machine mode. */
4001 STRIP_NOPS (exp);
4002
4003 return (CONSTANT_CLASS_P (exp)
4004 || TREE_CODE (exp) == SSA_NAME
4005 || (DECL_P (exp)
4006 && ! TREE_ADDRESSABLE (exp)
4007 && ! TREE_THIS_VOLATILE (exp)
4008 && ! DECL_NONLOCAL (exp)
4009 /* Don't regard global variables as simple. They may be
4010 allocated in ways unknown to the compiler (shared memory,
4011 #pragma weak, etc). */
4012 && ! TREE_PUBLIC (exp)
4013 && ! DECL_EXTERNAL (exp)
4014 /* Weakrefs are not safe to be read, since they can be NULL.
4015 They are !TREE_PUBLIC && !DECL_EXTERNAL but still
4016 have DECL_WEAK flag set. */
4017 && (! VAR_OR_FUNCTION_DECL_P (exp) || ! DECL_WEAK (exp))
4018 /* Loading a static variable is unduly expensive, but global
4019 registers aren't expensive. */
4020 && (! TREE_STATIC (exp) || DECL_REGISTER (exp))));
4021 }
4022
4023 /* Subroutine for fold_truth_andor: determine if an operand is simple enough
4024 to be evaluated unconditionally.
4025 I addition to simple_operand_p, we assume that comparisons, conversions,
4026 and logic-not operations are simple, if their operands are simple, too. */
4027
4028 static bool
4029 simple_operand_p_2 (tree exp)
4030 {
4031 enum tree_code code;
4032
4033 if (TREE_SIDE_EFFECTS (exp)
4034 || tree_could_trap_p (exp))
4035 return false;
4036
4037 while (CONVERT_EXPR_P (exp))
4038 exp = TREE_OPERAND (exp, 0);
4039
4040 code = TREE_CODE (exp);
4041
4042 if (TREE_CODE_CLASS (code) == tcc_comparison)
4043 return (simple_operand_p (TREE_OPERAND (exp, 0))
4044 && simple_operand_p (TREE_OPERAND (exp, 1)));
4045
4046 if (code == TRUTH_NOT_EXPR)
4047 return simple_operand_p_2 (TREE_OPERAND (exp, 0));
4048
4049 return simple_operand_p (exp);
4050 }
4051
4052 \f
4053 /* The following functions are subroutines to fold_range_test and allow it to
4054 try to change a logical combination of comparisons into a range test.
4055
4056 For example, both
4057 X == 2 || X == 3 || X == 4 || X == 5
4058 and
4059 X >= 2 && X <= 5
4060 are converted to
4061 (unsigned) (X - 2) <= 3
4062
4063 We describe each set of comparisons as being either inside or outside
4064 a range, using a variable named like IN_P, and then describe the
4065 range with a lower and upper bound. If one of the bounds is omitted,
4066 it represents either the highest or lowest value of the type.
4067
4068 In the comments below, we represent a range by two numbers in brackets
4069 preceded by a "+" to designate being inside that range, or a "-" to
4070 designate being outside that range, so the condition can be inverted by
4071 flipping the prefix. An omitted bound is represented by a "-". For
4072 example, "- [-, 10]" means being outside the range starting at the lowest
4073 possible value and ending at 10, in other words, being greater than 10.
4074 The range "+ [-, -]" is always true and hence the range "- [-, -]" is
4075 always false.
4076
4077 We set up things so that the missing bounds are handled in a consistent
4078 manner so neither a missing bound nor "true" and "false" need to be
4079 handled using a special case. */
4080
4081 /* Return the result of applying CODE to ARG0 and ARG1, but handle the case
4082 of ARG0 and/or ARG1 being omitted, meaning an unlimited range. UPPER0_P
4083 and UPPER1_P are nonzero if the respective argument is an upper bound
4084 and zero for a lower. TYPE, if nonzero, is the type of the result; it
4085 must be specified for a comparison. ARG1 will be converted to ARG0's
4086 type if both are specified. */
4087
4088 static tree
4089 range_binop (enum tree_code code, tree type, tree arg0, int upper0_p,
4090 tree arg1, int upper1_p)
4091 {
4092 tree tem;
4093 int result;
4094 int sgn0, sgn1;
4095
4096 /* If neither arg represents infinity, do the normal operation.
4097 Else, if not a comparison, return infinity. Else handle the special
4098 comparison rules. Note that most of the cases below won't occur, but
4099 are handled for consistency. */
4100
4101 if (arg0 != 0 && arg1 != 0)
4102 {
4103 tem = fold_build2 (code, type != 0 ? type : TREE_TYPE (arg0),
4104 arg0, fold_convert (TREE_TYPE (arg0), arg1));
4105 STRIP_NOPS (tem);
4106 return TREE_CODE (tem) == INTEGER_CST ? tem : 0;
4107 }
4108
4109 if (TREE_CODE_CLASS (code) != tcc_comparison)
4110 return 0;
4111
4112 /* Set SGN[01] to -1 if ARG[01] is a lower bound, 1 for upper, and 0
4113 for neither. In real maths, we cannot assume open ended ranges are
4114 the same. But, this is computer arithmetic, where numbers are finite.
4115 We can therefore make the transformation of any unbounded range with
4116 the value Z, Z being greater than any representable number. This permits
4117 us to treat unbounded ranges as equal. */
4118 sgn0 = arg0 != 0 ? 0 : (upper0_p ? 1 : -1);
4119 sgn1 = arg1 != 0 ? 0 : (upper1_p ? 1 : -1);
4120 switch (code)
4121 {
4122 case EQ_EXPR:
4123 result = sgn0 == sgn1;
4124 break;
4125 case NE_EXPR:
4126 result = sgn0 != sgn1;
4127 break;
4128 case LT_EXPR:
4129 result = sgn0 < sgn1;
4130 break;
4131 case LE_EXPR:
4132 result = sgn0 <= sgn1;
4133 break;
4134 case GT_EXPR:
4135 result = sgn0 > sgn1;
4136 break;
4137 case GE_EXPR:
4138 result = sgn0 >= sgn1;
4139 break;
4140 default:
4141 gcc_unreachable ();
4142 }
4143
4144 return constant_boolean_node (result, type);
4145 }
4146 \f
4147 /* Helper routine for make_range. Perform one step for it, return
4148 new expression if the loop should continue or NULL_TREE if it should
4149 stop. */
4150
4151 tree
4152 make_range_step (location_t loc, enum tree_code code, tree arg0, tree arg1,
4153 tree exp_type, tree *p_low, tree *p_high, int *p_in_p,
4154 bool *strict_overflow_p)
4155 {
4156 tree arg0_type = TREE_TYPE (arg0);
4157 tree n_low, n_high, low = *p_low, high = *p_high;
4158 int in_p = *p_in_p, n_in_p;
4159
4160 switch (code)
4161 {
4162 case TRUTH_NOT_EXPR:
4163 /* We can only do something if the range is testing for zero. */
4164 if (low == NULL_TREE || high == NULL_TREE
4165 || ! integer_zerop (low) || ! integer_zerop (high))
4166 return NULL_TREE;
4167 *p_in_p = ! in_p;
4168 return arg0;
4169
4170 case EQ_EXPR: case NE_EXPR:
4171 case LT_EXPR: case LE_EXPR: case GE_EXPR: case GT_EXPR:
4172 /* We can only do something if the range is testing for zero
4173 and if the second operand is an integer constant. Note that
4174 saying something is "in" the range we make is done by
4175 complementing IN_P since it will set in the initial case of
4176 being not equal to zero; "out" is leaving it alone. */
4177 if (low == NULL_TREE || high == NULL_TREE
4178 || ! integer_zerop (low) || ! integer_zerop (high)
4179 || TREE_CODE (arg1) != INTEGER_CST)
4180 return NULL_TREE;
4181
4182 switch (code)
4183 {
4184 case NE_EXPR: /* - [c, c] */
4185 low = high = arg1;
4186 break;
4187 case EQ_EXPR: /* + [c, c] */
4188 in_p = ! in_p, low = high = arg1;
4189 break;
4190 case GT_EXPR: /* - [-, c] */
4191 low = 0, high = arg1;
4192 break;
4193 case GE_EXPR: /* + [c, -] */
4194 in_p = ! in_p, low = arg1, high = 0;
4195 break;
4196 case LT_EXPR: /* - [c, -] */
4197 low = arg1, high = 0;
4198 break;
4199 case LE_EXPR: /* + [-, c] */
4200 in_p = ! in_p, low = 0, high = arg1;
4201 break;
4202 default:
4203 gcc_unreachable ();
4204 }
4205
4206 /* If this is an unsigned comparison, we also know that EXP is
4207 greater than or equal to zero. We base the range tests we make
4208 on that fact, so we record it here so we can parse existing
4209 range tests. We test arg0_type since often the return type
4210 of, e.g. EQ_EXPR, is boolean. */
4211 if (TYPE_UNSIGNED (arg0_type) && (low == 0 || high == 0))
4212 {
4213 if (! merge_ranges (&n_in_p, &n_low, &n_high,
4214 in_p, low, high, 1,
4215 build_int_cst (arg0_type, 0),
4216 NULL_TREE))
4217 return NULL_TREE;
4218
4219 in_p = n_in_p, low = n_low, high = n_high;
4220
4221 /* If the high bound is missing, but we have a nonzero low
4222 bound, reverse the range so it goes from zero to the low bound
4223 minus 1. */
4224 if (high == 0 && low && ! integer_zerop (low))
4225 {
4226 in_p = ! in_p;
4227 high = range_binop (MINUS_EXPR, NULL_TREE, low, 0,
4228 build_int_cst (TREE_TYPE (low), 1), 0);
4229 low = build_int_cst (arg0_type, 0);
4230 }
4231 }
4232
4233 *p_low = low;
4234 *p_high = high;
4235 *p_in_p = in_p;
4236 return arg0;
4237
4238 case NEGATE_EXPR:
4239 /* If flag_wrapv and ARG0_TYPE is signed, make sure
4240 low and high are non-NULL, then normalize will DTRT. */
4241 if (!TYPE_UNSIGNED (arg0_type)
4242 && !TYPE_OVERFLOW_UNDEFINED (arg0_type))
4243 {
4244 if (low == NULL_TREE)
4245 low = TYPE_MIN_VALUE (arg0_type);
4246 if (high == NULL_TREE)
4247 high = TYPE_MAX_VALUE (arg0_type);
4248 }
4249
4250 /* (-x) IN [a,b] -> x in [-b, -a] */
4251 n_low = range_binop (MINUS_EXPR, exp_type,
4252 build_int_cst (exp_type, 0),
4253 0, high, 1);
4254 n_high = range_binop (MINUS_EXPR, exp_type,
4255 build_int_cst (exp_type, 0),
4256 0, low, 0);
4257 if (n_high != 0 && TREE_OVERFLOW (n_high))
4258 return NULL_TREE;
4259 goto normalize;
4260
4261 case BIT_NOT_EXPR:
4262 /* ~ X -> -X - 1 */
4263 return build2_loc (loc, MINUS_EXPR, exp_type, negate_expr (arg0),
4264 build_int_cst (exp_type, 1));
4265
4266 case PLUS_EXPR:
4267 case MINUS_EXPR:
4268 if (TREE_CODE (arg1) != INTEGER_CST)
4269 return NULL_TREE;
4270
4271 /* If flag_wrapv and ARG0_TYPE is signed, then we cannot
4272 move a constant to the other side. */
4273 if (!TYPE_UNSIGNED (arg0_type)
4274 && !TYPE_OVERFLOW_UNDEFINED (arg0_type))
4275 return NULL_TREE;
4276
4277 /* If EXP is signed, any overflow in the computation is undefined,
4278 so we don't worry about it so long as our computations on
4279 the bounds don't overflow. For unsigned, overflow is defined
4280 and this is exactly the right thing. */
4281 n_low = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
4282 arg0_type, low, 0, arg1, 0);
4283 n_high = range_binop (code == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR,
4284 arg0_type, high, 1, arg1, 0);
4285 if ((n_low != 0 && TREE_OVERFLOW (n_low))
4286 || (n_high != 0 && TREE_OVERFLOW (n_high)))
4287 return NULL_TREE;
4288
4289 if (TYPE_OVERFLOW_UNDEFINED (arg0_type))
4290 *strict_overflow_p = true;
4291
4292 normalize:
4293 /* Check for an unsigned range which has wrapped around the maximum
4294 value thus making n_high < n_low, and normalize it. */
4295 if (n_low && n_high && tree_int_cst_lt (n_high, n_low))
4296 {
4297 low = range_binop (PLUS_EXPR, arg0_type, n_high, 0,
4298 build_int_cst (TREE_TYPE (n_high), 1), 0);
4299 high = range_binop (MINUS_EXPR, arg0_type, n_low, 0,
4300 build_int_cst (TREE_TYPE (n_low), 1), 0);
4301
4302 /* If the range is of the form +/- [ x+1, x ], we won't
4303 be able to normalize it. But then, it represents the
4304 whole range or the empty set, so make it
4305 +/- [ -, - ]. */
4306 if (tree_int_cst_equal (n_low, low)
4307 && tree_int_cst_equal (n_high, high))
4308 low = high = 0;
4309 else
4310 in_p = ! in_p;
4311 }
4312 else
4313 low = n_low, high = n_high;
4314
4315 *p_low = low;
4316 *p_high = high;
4317 *p_in_p = in_p;
4318 return arg0;
4319
4320 CASE_CONVERT:
4321 case NON_LVALUE_EXPR:
4322 if (TYPE_PRECISION (arg0_type) > TYPE_PRECISION (exp_type))
4323 return NULL_TREE;
4324
4325 if (! INTEGRAL_TYPE_P (arg0_type)
4326 || (low != 0 && ! int_fits_type_p (low, arg0_type))
4327 || (high != 0 && ! int_fits_type_p (high, arg0_type)))
4328 return NULL_TREE;
4329
4330 n_low = low, n_high = high;
4331
4332 if (n_low != 0)
4333 n_low = fold_convert_loc (loc, arg0_type, n_low);
4334
4335 if (n_high != 0)
4336 n_high = fold_convert_loc (loc, arg0_type, n_high);
4337
4338 /* If we're converting arg0 from an unsigned type, to exp,
4339 a signed type, we will be doing the comparison as unsigned.
4340 The tests above have already verified that LOW and HIGH
4341 are both positive.
4342
4343 So we have to ensure that we will handle large unsigned
4344 values the same way that the current signed bounds treat
4345 negative values. */
4346
4347 if (!TYPE_UNSIGNED (exp_type) && TYPE_UNSIGNED (arg0_type))
4348 {
4349 tree high_positive;
4350 tree equiv_type;
4351 /* For fixed-point modes, we need to pass the saturating flag
4352 as the 2nd parameter. */
4353 if (ALL_FIXED_POINT_MODE_P (TYPE_MODE (arg0_type)))
4354 equiv_type
4355 = lang_hooks.types.type_for_mode (TYPE_MODE (arg0_type),
4356 TYPE_SATURATING (arg0_type));
4357 else
4358 equiv_type
4359 = lang_hooks.types.type_for_mode (TYPE_MODE (arg0_type), 1);
4360
4361 /* A range without an upper bound is, naturally, unbounded.
4362 Since convert would have cropped a very large value, use
4363 the max value for the destination type. */
4364 high_positive
4365 = TYPE_MAX_VALUE (equiv_type) ? TYPE_MAX_VALUE (equiv_type)
4366 : TYPE_MAX_VALUE (arg0_type);
4367
4368 if (TYPE_PRECISION (exp_type) == TYPE_PRECISION (arg0_type))
4369 high_positive = fold_build2_loc (loc, RSHIFT_EXPR, arg0_type,
4370 fold_convert_loc (loc, arg0_type,
4371 high_positive),
4372 build_int_cst (arg0_type, 1));
4373
4374 /* If the low bound is specified, "and" the range with the
4375 range for which the original unsigned value will be
4376 positive. */
4377 if (low != 0)
4378 {
4379 if (! merge_ranges (&n_in_p, &n_low, &n_high, 1, n_low, n_high,
4380 1, fold_convert_loc (loc, arg0_type,
4381 integer_zero_node),
4382 high_positive))
4383 return NULL_TREE;
4384
4385 in_p = (n_in_p == in_p);
4386 }
4387 else
4388 {
4389 /* Otherwise, "or" the range with the range of the input
4390 that will be interpreted as negative. */
4391 if (! merge_ranges (&n_in_p, &n_low, &n_high, 0, n_low, n_high,
4392 1, fold_convert_loc (loc, arg0_type,
4393 integer_zero_node),
4394 high_positive))
4395 return NULL_TREE;
4396
4397 in_p = (in_p != n_in_p);
4398 }
4399 }
4400
4401 *p_low = n_low;
4402 *p_high = n_high;
4403 *p_in_p = in_p;
4404 return arg0;
4405
4406 default:
4407 return NULL_TREE;
4408 }
4409 }
4410
4411 /* Given EXP, a logical expression, set the range it is testing into
4412 variables denoted by PIN_P, PLOW, and PHIGH. Return the expression
4413 actually being tested. *PLOW and *PHIGH will be made of the same
4414 type as the returned expression. If EXP is not a comparison, we
4415 will most likely not be returning a useful value and range. Set
4416 *STRICT_OVERFLOW_P to true if the return value is only valid
4417 because signed overflow is undefined; otherwise, do not change
4418 *STRICT_OVERFLOW_P. */
4419
4420 tree
4421 make_range (tree exp, int *pin_p, tree *plow, tree *phigh,
4422 bool *strict_overflow_p)
4423 {
4424 enum tree_code code;
4425 tree arg0, arg1 = NULL_TREE;
4426 tree exp_type, nexp;
4427 int in_p;
4428 tree low, high;
4429 location_t loc = EXPR_LOCATION (exp);
4430
4431 /* Start with simply saying "EXP != 0" and then look at the code of EXP
4432 and see if we can refine the range. Some of the cases below may not
4433 happen, but it doesn't seem worth worrying about this. We "continue"
4434 the outer loop when we've changed something; otherwise we "break"
4435 the switch, which will "break" the while. */
4436
4437 in_p = 0;
4438 low = high = build_int_cst (TREE_TYPE (exp), 0);
4439
4440 while (1)
4441 {
4442 code = TREE_CODE (exp);
4443 exp_type = TREE_TYPE (exp);
4444 arg0 = NULL_TREE;
4445
4446 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
4447 {
4448 if (TREE_OPERAND_LENGTH (exp) > 0)
4449 arg0 = TREE_OPERAND (exp, 0);
4450 if (TREE_CODE_CLASS (code) == tcc_binary
4451 || TREE_CODE_CLASS (code) == tcc_comparison
4452 || (TREE_CODE_CLASS (code) == tcc_expression
4453 && TREE_OPERAND_LENGTH (exp) > 1))
4454 arg1 = TREE_OPERAND (exp, 1);
4455 }
4456 if (arg0 == NULL_TREE)
4457 break;
4458
4459 nexp = make_range_step (loc, code, arg0, arg1, exp_type, &low,
4460 &high, &in_p, strict_overflow_p);
4461 if (nexp == NULL_TREE)
4462 break;
4463 exp = nexp;
4464 }
4465
4466 /* If EXP is a constant, we can evaluate whether this is true or false. */
4467 if (TREE_CODE (exp) == INTEGER_CST)
4468 {
4469 in_p = in_p == (integer_onep (range_binop (GE_EXPR, integer_type_node,
4470 exp, 0, low, 0))
4471 && integer_onep (range_binop (LE_EXPR, integer_type_node,
4472 exp, 1, high, 1)));
4473 low = high = 0;
4474 exp = 0;
4475 }
4476
4477 *pin_p = in_p, *plow = low, *phigh = high;
4478 return exp;
4479 }
4480 \f
4481 /* Given a range, LOW, HIGH, and IN_P, an expression, EXP, and a result
4482 type, TYPE, return an expression to test if EXP is in (or out of, depending
4483 on IN_P) the range. Return 0 if the test couldn't be created. */
4484
4485 tree
4486 build_range_check (location_t loc, tree type, tree exp, int in_p,
4487 tree low, tree high)
4488 {
4489 tree etype = TREE_TYPE (exp), value;
4490
4491 /* Disable this optimization for function pointer expressions
4492 on targets that require function pointer canonicalization. */
4493 if (targetm.have_canonicalize_funcptr_for_compare ()
4494 && TREE_CODE (etype) == POINTER_TYPE
4495 && TREE_CODE (TREE_TYPE (etype)) == FUNCTION_TYPE)
4496 return NULL_TREE;
4497
4498 if (! in_p)
4499 {
4500 value = build_range_check (loc, type, exp, 1, low, high);
4501 if (value != 0)
4502 return invert_truthvalue_loc (loc, value);
4503
4504 return 0;
4505 }
4506
4507 if (low == 0 && high == 0)
4508 return omit_one_operand_loc (loc, type, build_int_cst (type, 1), exp);
4509
4510 if (low == 0)
4511 return fold_build2_loc (loc, LE_EXPR, type, exp,
4512 fold_convert_loc (loc, etype, high));
4513
4514 if (high == 0)
4515 return fold_build2_loc (loc, GE_EXPR, type, exp,
4516 fold_convert_loc (loc, etype, low));
4517
4518 if (operand_equal_p (low, high, 0))
4519 return fold_build2_loc (loc, EQ_EXPR, type, exp,
4520 fold_convert_loc (loc, etype, low));
4521
4522 if (integer_zerop (low))
4523 {
4524 if (! TYPE_UNSIGNED (etype))
4525 {
4526 etype = unsigned_type_for (etype);
4527 high = fold_convert_loc (loc, etype, high);
4528 exp = fold_convert_loc (loc, etype, exp);
4529 }
4530 return build_range_check (loc, type, exp, 1, 0, high);
4531 }
4532
4533 /* Optimize (c>=1) && (c<=127) into (signed char)c > 0. */
4534 if (integer_onep (low) && TREE_CODE (high) == INTEGER_CST)
4535 {
4536 int prec = TYPE_PRECISION (etype);
4537
4538 if (wi::mask (prec - 1, false, prec) == high)
4539 {
4540 if (TYPE_UNSIGNED (etype))
4541 {
4542 tree signed_etype = signed_type_for (etype);
4543 if (TYPE_PRECISION (signed_etype) != TYPE_PRECISION (etype))
4544 etype
4545 = build_nonstandard_integer_type (TYPE_PRECISION (etype), 0);
4546 else
4547 etype = signed_etype;
4548 exp = fold_convert_loc (loc, etype, exp);
4549 }
4550 return fold_build2_loc (loc, GT_EXPR, type, exp,
4551 build_int_cst (etype, 0));
4552 }
4553 }
4554
4555 /* Optimize (c>=low) && (c<=high) into (c-low>=0) && (c-low<=high-low).
4556 This requires wrap-around arithmetics for the type of the expression.
4557 First make sure that arithmetics in this type is valid, then make sure
4558 that it wraps around. */
4559 if (TREE_CODE (etype) == ENUMERAL_TYPE || TREE_CODE (etype) == BOOLEAN_TYPE)
4560 etype = lang_hooks.types.type_for_size (TYPE_PRECISION (etype),
4561 TYPE_UNSIGNED (etype));
4562
4563 if (TREE_CODE (etype) == INTEGER_TYPE && !TYPE_OVERFLOW_WRAPS (etype))
4564 {
4565 tree utype, minv, maxv;
4566
4567 /* Check if (unsigned) INT_MAX + 1 == (unsigned) INT_MIN
4568 for the type in question, as we rely on this here. */
4569 utype = unsigned_type_for (etype);
4570 maxv = fold_convert_loc (loc, utype, TYPE_MAX_VALUE (etype));
4571 maxv = range_binop (PLUS_EXPR, NULL_TREE, maxv, 1,
4572 build_int_cst (TREE_TYPE (maxv), 1), 1);
4573 minv = fold_convert_loc (loc, utype, TYPE_MIN_VALUE (etype));
4574
4575 if (integer_zerop (range_binop (NE_EXPR, integer_type_node,
4576 minv, 1, maxv, 1)))
4577 etype = utype;
4578 else
4579 return 0;
4580 }
4581
4582 high = fold_convert_loc (loc, etype, high);
4583 low = fold_convert_loc (loc, etype, low);
4584 exp = fold_convert_loc (loc, etype, exp);
4585
4586 value = const_binop (MINUS_EXPR, high, low);
4587
4588
4589 if (POINTER_TYPE_P (etype))
4590 {
4591 if (value != 0 && !TREE_OVERFLOW (value))
4592 {
4593 low = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (low), low);
4594 return build_range_check (loc, type,
4595 fold_build_pointer_plus_loc (loc, exp, low),
4596 1, build_int_cst (etype, 0), value);
4597 }
4598 return 0;
4599 }
4600
4601 if (value != 0 && !TREE_OVERFLOW (value))
4602 return build_range_check (loc, type,
4603 fold_build2_loc (loc, MINUS_EXPR, etype, exp, low),
4604 1, build_int_cst (etype, 0), value);
4605
4606 return 0;
4607 }
4608 \f
4609 /* Return the predecessor of VAL in its type, handling the infinite case. */
4610
4611 static tree
4612 range_predecessor (tree val)
4613 {
4614 tree type = TREE_TYPE (val);
4615
4616 if (INTEGRAL_TYPE_P (type)
4617 && operand_equal_p (val, TYPE_MIN_VALUE (type), 0))
4618 return 0;
4619 else
4620 return range_binop (MINUS_EXPR, NULL_TREE, val, 0,
4621 build_int_cst (TREE_TYPE (val), 1), 0);
4622 }
4623
4624 /* Return the successor of VAL in its type, handling the infinite case. */
4625
4626 static tree
4627 range_successor (tree val)
4628 {
4629 tree type = TREE_TYPE (val);
4630
4631 if (INTEGRAL_TYPE_P (type)
4632 && operand_equal_p (val, TYPE_MAX_VALUE (type), 0))
4633 return 0;
4634 else
4635 return range_binop (PLUS_EXPR, NULL_TREE, val, 0,
4636 build_int_cst (TREE_TYPE (val), 1), 0);
4637 }
4638
4639 /* Given two ranges, see if we can merge them into one. Return 1 if we
4640 can, 0 if we can't. Set the output range into the specified parameters. */
4641
4642 bool
4643 merge_ranges (int *pin_p, tree *plow, tree *phigh, int in0_p, tree low0,
4644 tree high0, int in1_p, tree low1, tree high1)
4645 {
4646 int no_overlap;
4647 int subset;
4648 int temp;
4649 tree tem;
4650 int in_p;
4651 tree low, high;
4652 int lowequal = ((low0 == 0 && low1 == 0)
4653 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
4654 low0, 0, low1, 0)));
4655 int highequal = ((high0 == 0 && high1 == 0)
4656 || integer_onep (range_binop (EQ_EXPR, integer_type_node,
4657 high0, 1, high1, 1)));
4658
4659 /* Make range 0 be the range that starts first, or ends last if they
4660 start at the same value. Swap them if it isn't. */
4661 if (integer_onep (range_binop (GT_EXPR, integer_type_node,
4662 low0, 0, low1, 0))
4663 || (lowequal
4664 && integer_onep (range_binop (GT_EXPR, integer_type_node,
4665 high1, 1, high0, 1))))
4666 {
4667 temp = in0_p, in0_p = in1_p, in1_p = temp;
4668 tem = low0, low0 = low1, low1 = tem;
4669 tem = high0, high0 = high1, high1 = tem;
4670 }
4671
4672 /* Now flag two cases, whether the ranges are disjoint or whether the
4673 second range is totally subsumed in the first. Note that the tests
4674 below are simplified by the ones above. */
4675 no_overlap = integer_onep (range_binop (LT_EXPR, integer_type_node,
4676 high0, 1, low1, 0));
4677 subset = integer_onep (range_binop (LE_EXPR, integer_type_node,
4678 high1, 1, high0, 1));
4679
4680 /* We now have four cases, depending on whether we are including or
4681 excluding the two ranges. */
4682 if (in0_p && in1_p)
4683 {
4684 /* If they don't overlap, the result is false. If the second range
4685 is a subset it is the result. Otherwise, the range is from the start
4686 of the second to the end of the first. */
4687 if (no_overlap)
4688 in_p = 0, low = high = 0;
4689 else if (subset)
4690 in_p = 1, low = low1, high = high1;
4691 else
4692 in_p = 1, low = low1, high = high0;
4693 }
4694
4695 else if (in0_p && ! in1_p)
4696 {
4697 /* If they don't overlap, the result is the first range. If they are
4698 equal, the result is false. If the second range is a subset of the
4699 first, and the ranges begin at the same place, we go from just after
4700 the end of the second range to the end of the first. If the second
4701 range is not a subset of the first, or if it is a subset and both
4702 ranges end at the same place, the range starts at the start of the
4703 first range and ends just before the second range.
4704 Otherwise, we can't describe this as a single range. */
4705 if (no_overlap)
4706 in_p = 1, low = low0, high = high0;
4707 else if (lowequal && highequal)
4708 in_p = 0, low = high = 0;
4709 else if (subset && lowequal)
4710 {
4711 low = range_successor (high1);
4712 high = high0;
4713 in_p = 1;
4714 if (low == 0)
4715 {
4716 /* We are in the weird situation where high0 > high1 but
4717 high1 has no successor. Punt. */
4718 return 0;
4719 }
4720 }
4721 else if (! subset || highequal)
4722 {
4723 low = low0;
4724 high = range_predecessor (low1);
4725 in_p = 1;
4726 if (high == 0)
4727 {
4728 /* low0 < low1 but low1 has no predecessor. Punt. */
4729 return 0;
4730 }
4731 }
4732 else
4733 return 0;
4734 }
4735
4736 else if (! in0_p && in1_p)
4737 {
4738 /* If they don't overlap, the result is the second range. If the second
4739 is a subset of the first, the result is false. Otherwise,
4740 the range starts just after the first range and ends at the
4741 end of the second. */
4742 if (no_overlap)
4743 in_p = 1, low = low1, high = high1;
4744 else if (subset || highequal)
4745 in_p = 0, low = high = 0;
4746 else
4747 {
4748 low = range_successor (high0);
4749 high = high1;
4750 in_p = 1;
4751 if (low == 0)
4752 {
4753 /* high1 > high0 but high0 has no successor. Punt. */
4754 return 0;
4755 }
4756 }
4757 }
4758
4759 else
4760 {
4761 /* The case where we are excluding both ranges. Here the complex case
4762 is if they don't overlap. In that case, the only time we have a
4763 range is if they are adjacent. If the second is a subset of the
4764 first, the result is the first. Otherwise, the range to exclude
4765 starts at the beginning of the first range and ends at the end of the
4766 second. */
4767 if (no_overlap)
4768 {
4769 if (integer_onep (range_binop (EQ_EXPR, integer_type_node,
4770 range_successor (high0),
4771 1, low1, 0)))
4772 in_p = 0, low = low0, high = high1;
4773 else
4774 {
4775 /* Canonicalize - [min, x] into - [-, x]. */
4776 if (low0 && TREE_CODE (low0) == INTEGER_CST)
4777 switch (TREE_CODE (TREE_TYPE (low0)))
4778 {
4779 case ENUMERAL_TYPE:
4780 if (TYPE_PRECISION (TREE_TYPE (low0))
4781 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (low0))))
4782 break;
4783 /* FALLTHROUGH */
4784 case INTEGER_TYPE:
4785 if (tree_int_cst_equal (low0,
4786 TYPE_MIN_VALUE (TREE_TYPE (low0))))
4787 low0 = 0;
4788 break;
4789 case POINTER_TYPE:
4790 if (TYPE_UNSIGNED (TREE_TYPE (low0))
4791 && integer_zerop (low0))
4792 low0 = 0;
4793 break;
4794 default:
4795 break;
4796 }
4797
4798 /* Canonicalize - [x, max] into - [x, -]. */
4799 if (high1 && TREE_CODE (high1) == INTEGER_CST)
4800 switch (TREE_CODE (TREE_TYPE (high1)))
4801 {
4802 case ENUMERAL_TYPE:
4803 if (TYPE_PRECISION (TREE_TYPE (high1))
4804 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (high1))))
4805 break;
4806 /* FALLTHROUGH */
4807 case INTEGER_TYPE:
4808 if (tree_int_cst_equal (high1,
4809 TYPE_MAX_VALUE (TREE_TYPE (high1))))
4810 high1 = 0;
4811 break;
4812 case POINTER_TYPE:
4813 if (TYPE_UNSIGNED (TREE_TYPE (high1))
4814 && integer_zerop (range_binop (PLUS_EXPR, NULL_TREE,
4815 high1, 1,
4816 build_int_cst (TREE_TYPE (high1), 1),
4817 1)))
4818 high1 = 0;
4819 break;
4820 default:
4821 break;
4822 }
4823
4824 /* The ranges might be also adjacent between the maximum and
4825 minimum values of the given type. For
4826 - [{min,-}, x] and - [y, {max,-}] ranges where x + 1 < y
4827 return + [x + 1, y - 1]. */
4828 if (low0 == 0 && high1 == 0)
4829 {
4830 low = range_successor (high0);
4831 high = range_predecessor (low1);
4832 if (low == 0 || high == 0)
4833 return 0;
4834
4835 in_p = 1;
4836 }
4837 else
4838 return 0;
4839 }
4840 }
4841 else if (subset)
4842 in_p = 0, low = low0, high = high0;
4843 else
4844 in_p = 0, low = low0, high = high1;
4845 }
4846
4847 *pin_p = in_p, *plow = low, *phigh = high;
4848 return 1;
4849 }
4850 \f
4851
4852 /* Subroutine of fold, looking inside expressions of the form
4853 A op B ? A : C, where ARG0, ARG1 and ARG2 are the three operands
4854 of the COND_EXPR. This function is being used also to optimize
4855 A op B ? C : A, by reversing the comparison first.
4856
4857 Return a folded expression whose code is not a COND_EXPR
4858 anymore, or NULL_TREE if no folding opportunity is found. */
4859
4860 static tree
4861 fold_cond_expr_with_comparison (location_t loc, tree type,
4862 tree arg0, tree arg1, tree arg2)
4863 {
4864 enum tree_code comp_code = TREE_CODE (arg0);
4865 tree arg00 = TREE_OPERAND (arg0, 0);
4866 tree arg01 = TREE_OPERAND (arg0, 1);
4867 tree arg1_type = TREE_TYPE (arg1);
4868 tree tem;
4869
4870 STRIP_NOPS (arg1);
4871 STRIP_NOPS (arg2);
4872
4873 /* If we have A op 0 ? A : -A, consider applying the following
4874 transformations:
4875
4876 A == 0? A : -A same as -A
4877 A != 0? A : -A same as A
4878 A >= 0? A : -A same as abs (A)
4879 A > 0? A : -A same as abs (A)
4880 A <= 0? A : -A same as -abs (A)
4881 A < 0? A : -A same as -abs (A)
4882
4883 None of these transformations work for modes with signed
4884 zeros. If A is +/-0, the first two transformations will
4885 change the sign of the result (from +0 to -0, or vice
4886 versa). The last four will fix the sign of the result,
4887 even though the original expressions could be positive or
4888 negative, depending on the sign of A.
4889
4890 Note that all these transformations are correct if A is
4891 NaN, since the two alternatives (A and -A) are also NaNs. */
4892 if (!HONOR_SIGNED_ZEROS (element_mode (type))
4893 && (FLOAT_TYPE_P (TREE_TYPE (arg01))
4894 ? real_zerop (arg01)
4895 : integer_zerop (arg01))
4896 && ((TREE_CODE (arg2) == NEGATE_EXPR
4897 && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0))
4898 /* In the case that A is of the form X-Y, '-A' (arg2) may
4899 have already been folded to Y-X, check for that. */
4900 || (TREE_CODE (arg1) == MINUS_EXPR
4901 && TREE_CODE (arg2) == MINUS_EXPR
4902 && operand_equal_p (TREE_OPERAND (arg1, 0),
4903 TREE_OPERAND (arg2, 1), 0)
4904 && operand_equal_p (TREE_OPERAND (arg1, 1),
4905 TREE_OPERAND (arg2, 0), 0))))
4906 switch (comp_code)
4907 {
4908 case EQ_EXPR:
4909 case UNEQ_EXPR:
4910 tem = fold_convert_loc (loc, arg1_type, arg1);
4911 return pedantic_non_lvalue_loc (loc,
4912 fold_convert_loc (loc, type,
4913 negate_expr (tem)));
4914 case NE_EXPR:
4915 case LTGT_EXPR:
4916 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
4917 case UNGE_EXPR:
4918 case UNGT_EXPR:
4919 if (flag_trapping_math)
4920 break;
4921 /* Fall through. */
4922 case GE_EXPR:
4923 case GT_EXPR:
4924 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4925 arg1 = fold_convert_loc (loc, signed_type_for
4926 (TREE_TYPE (arg1)), arg1);
4927 tem = fold_build1_loc (loc, ABS_EXPR, TREE_TYPE (arg1), arg1);
4928 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
4929 case UNLE_EXPR:
4930 case UNLT_EXPR:
4931 if (flag_trapping_math)
4932 break;
4933 case LE_EXPR:
4934 case LT_EXPR:
4935 if (TYPE_UNSIGNED (TREE_TYPE (arg1)))
4936 arg1 = fold_convert_loc (loc, signed_type_for
4937 (TREE_TYPE (arg1)), arg1);
4938 tem = fold_build1_loc (loc, ABS_EXPR, TREE_TYPE (arg1), arg1);
4939 return negate_expr (fold_convert_loc (loc, type, tem));
4940 default:
4941 gcc_assert (TREE_CODE_CLASS (comp_code) == tcc_comparison);
4942 break;
4943 }
4944
4945 /* A != 0 ? A : 0 is simply A, unless A is -0. Likewise
4946 A == 0 ? A : 0 is always 0 unless A is -0. Note that
4947 both transformations are correct when A is NaN: A != 0
4948 is then true, and A == 0 is false. */
4949
4950 if (!HONOR_SIGNED_ZEROS (element_mode (type))
4951 && integer_zerop (arg01) && integer_zerop (arg2))
4952 {
4953 if (comp_code == NE_EXPR)
4954 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
4955 else if (comp_code == EQ_EXPR)
4956 return build_zero_cst (type);
4957 }
4958
4959 /* Try some transformations of A op B ? A : B.
4960
4961 A == B? A : B same as B
4962 A != B? A : B same as A
4963 A >= B? A : B same as max (A, B)
4964 A > B? A : B same as max (B, A)
4965 A <= B? A : B same as min (A, B)
4966 A < B? A : B same as min (B, A)
4967
4968 As above, these transformations don't work in the presence
4969 of signed zeros. For example, if A and B are zeros of
4970 opposite sign, the first two transformations will change
4971 the sign of the result. In the last four, the original
4972 expressions give different results for (A=+0, B=-0) and
4973 (A=-0, B=+0), but the transformed expressions do not.
4974
4975 The first two transformations are correct if either A or B
4976 is a NaN. In the first transformation, the condition will
4977 be false, and B will indeed be chosen. In the case of the
4978 second transformation, the condition A != B will be true,
4979 and A will be chosen.
4980
4981 The conversions to max() and min() are not correct if B is
4982 a number and A is not. The conditions in the original
4983 expressions will be false, so all four give B. The min()
4984 and max() versions would give a NaN instead. */
4985 if (!HONOR_SIGNED_ZEROS (element_mode (type))
4986 && operand_equal_for_comparison_p (arg01, arg2, arg00)
4987 /* Avoid these transformations if the COND_EXPR may be used
4988 as an lvalue in the C++ front-end. PR c++/19199. */
4989 && (in_gimple_form
4990 || VECTOR_TYPE_P (type)
4991 || (! lang_GNU_CXX ()
4992 && strcmp (lang_hooks.name, "GNU Objective-C++") != 0)
4993 || ! maybe_lvalue_p (arg1)
4994 || ! maybe_lvalue_p (arg2)))
4995 {
4996 tree comp_op0 = arg00;
4997 tree comp_op1 = arg01;
4998 tree comp_type = TREE_TYPE (comp_op0);
4999
5000 /* Avoid adding NOP_EXPRs in case this is an lvalue. */
5001 if (TYPE_MAIN_VARIANT (comp_type) == TYPE_MAIN_VARIANT (type))
5002 {
5003 comp_type = type;
5004 comp_op0 = arg1;
5005 comp_op1 = arg2;
5006 }
5007
5008 switch (comp_code)
5009 {
5010 case EQ_EXPR:
5011 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, arg2));
5012 case NE_EXPR:
5013 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
5014 case LE_EXPR:
5015 case LT_EXPR:
5016 case UNLE_EXPR:
5017 case UNLT_EXPR:
5018 /* In C++ a ?: expression can be an lvalue, so put the
5019 operand which will be used if they are equal first
5020 so that we can convert this back to the
5021 corresponding COND_EXPR. */
5022 if (!HONOR_NANS (arg1))
5023 {
5024 comp_op0 = fold_convert_loc (loc, comp_type, comp_op0);
5025 comp_op1 = fold_convert_loc (loc, comp_type, comp_op1);
5026 tem = (comp_code == LE_EXPR || comp_code == UNLE_EXPR)
5027 ? fold_build2_loc (loc, MIN_EXPR, comp_type, comp_op0, comp_op1)
5028 : fold_build2_loc (loc, MIN_EXPR, comp_type,
5029 comp_op1, comp_op0);
5030 return pedantic_non_lvalue_loc (loc,
5031 fold_convert_loc (loc, type, tem));
5032 }
5033 break;
5034 case GE_EXPR:
5035 case GT_EXPR:
5036 case UNGE_EXPR:
5037 case UNGT_EXPR:
5038 if (!HONOR_NANS (arg1))
5039 {
5040 comp_op0 = fold_convert_loc (loc, comp_type, comp_op0);
5041 comp_op1 = fold_convert_loc (loc, comp_type, comp_op1);
5042 tem = (comp_code == GE_EXPR || comp_code == UNGE_EXPR)
5043 ? fold_build2_loc (loc, MAX_EXPR, comp_type, comp_op0, comp_op1)
5044 : fold_build2_loc (loc, MAX_EXPR, comp_type,
5045 comp_op1, comp_op0);
5046 return pedantic_non_lvalue_loc (loc,
5047 fold_convert_loc (loc, type, tem));
5048 }
5049 break;
5050 case UNEQ_EXPR:
5051 if (!HONOR_NANS (arg1))
5052 return pedantic_non_lvalue_loc (loc,
5053 fold_convert_loc (loc, type, arg2));
5054 break;
5055 case LTGT_EXPR:
5056 if (!HONOR_NANS (arg1))
5057 return pedantic_non_lvalue_loc (loc,
5058 fold_convert_loc (loc, type, arg1));
5059 break;
5060 default:
5061 gcc_assert (TREE_CODE_CLASS (comp_code) == tcc_comparison);
5062 break;
5063 }
5064 }
5065
5066 /* If this is A op C1 ? A : C2 with C1 and C2 constant integers,
5067 we might still be able to simplify this. For example,
5068 if C1 is one less or one more than C2, this might have started
5069 out as a MIN or MAX and been transformed by this function.
5070 Only good for INTEGER_TYPEs, because we need TYPE_MAX_VALUE. */
5071
5072 if (INTEGRAL_TYPE_P (type)
5073 && TREE_CODE (arg01) == INTEGER_CST
5074 && TREE_CODE (arg2) == INTEGER_CST)
5075 switch (comp_code)
5076 {
5077 case EQ_EXPR:
5078 if (TREE_CODE (arg1) == INTEGER_CST)
5079 break;
5080 /* We can replace A with C1 in this case. */
5081 arg1 = fold_convert_loc (loc, type, arg01);
5082 return fold_build3_loc (loc, COND_EXPR, type, arg0, arg1, arg2);
5083
5084 case LT_EXPR:
5085 /* If C1 is C2 + 1, this is min(A, C2), but use ARG00's type for
5086 MIN_EXPR, to preserve the signedness of the comparison. */
5087 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
5088 OEP_ONLY_CONST)
5089 && operand_equal_p (arg01,
5090 const_binop (PLUS_EXPR, arg2,
5091 build_int_cst (type, 1)),
5092 OEP_ONLY_CONST))
5093 {
5094 tem = fold_build2_loc (loc, MIN_EXPR, TREE_TYPE (arg00), arg00,
5095 fold_convert_loc (loc, TREE_TYPE (arg00),
5096 arg2));
5097 return pedantic_non_lvalue_loc (loc,
5098 fold_convert_loc (loc, type, tem));
5099 }
5100 break;
5101
5102 case LE_EXPR:
5103 /* If C1 is C2 - 1, this is min(A, C2), with the same care
5104 as above. */
5105 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
5106 OEP_ONLY_CONST)
5107 && operand_equal_p (arg01,
5108 const_binop (MINUS_EXPR, arg2,
5109 build_int_cst (type, 1)),
5110 OEP_ONLY_CONST))
5111 {
5112 tem = fold_build2_loc (loc, MIN_EXPR, TREE_TYPE (arg00), arg00,
5113 fold_convert_loc (loc, TREE_TYPE (arg00),
5114 arg2));
5115 return pedantic_non_lvalue_loc (loc,
5116 fold_convert_loc (loc, type, tem));
5117 }
5118 break;
5119
5120 case GT_EXPR:
5121 /* If C1 is C2 - 1, this is max(A, C2), but use ARG00's type for
5122 MAX_EXPR, to preserve the signedness of the comparison. */
5123 if (! operand_equal_p (arg2, TYPE_MIN_VALUE (type),
5124 OEP_ONLY_CONST)
5125 && operand_equal_p (arg01,
5126 const_binop (MINUS_EXPR, arg2,
5127 build_int_cst (type, 1)),
5128 OEP_ONLY_CONST))
5129 {
5130 tem = fold_build2_loc (loc, MAX_EXPR, TREE_TYPE (arg00), arg00,
5131 fold_convert_loc (loc, TREE_TYPE (arg00),
5132 arg2));
5133 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
5134 }
5135 break;
5136
5137 case GE_EXPR:
5138 /* If C1 is C2 + 1, this is max(A, C2), with the same care as above. */
5139 if (! operand_equal_p (arg2, TYPE_MAX_VALUE (type),
5140 OEP_ONLY_CONST)
5141 && operand_equal_p (arg01,
5142 const_binop (PLUS_EXPR, arg2,
5143 build_int_cst (type, 1)),
5144 OEP_ONLY_CONST))
5145 {
5146 tem = fold_build2_loc (loc, MAX_EXPR, TREE_TYPE (arg00), arg00,
5147 fold_convert_loc (loc, TREE_TYPE (arg00),
5148 arg2));
5149 return pedantic_non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
5150 }
5151 break;
5152 case NE_EXPR:
5153 break;
5154 default:
5155 gcc_unreachable ();
5156 }
5157
5158 return NULL_TREE;
5159 }
5160
5161
5162 \f
5163 #ifndef LOGICAL_OP_NON_SHORT_CIRCUIT
5164 #define LOGICAL_OP_NON_SHORT_CIRCUIT \
5165 (BRANCH_COST (optimize_function_for_speed_p (cfun), \
5166 false) >= 2)
5167 #endif
5168
5169 /* EXP is some logical combination of boolean tests. See if we can
5170 merge it into some range test. Return the new tree if so. */
5171
5172 static tree
5173 fold_range_test (location_t loc, enum tree_code code, tree type,
5174 tree op0, tree op1)
5175 {
5176 int or_op = (code == TRUTH_ORIF_EXPR
5177 || code == TRUTH_OR_EXPR);
5178 int in0_p, in1_p, in_p;
5179 tree low0, low1, low, high0, high1, high;
5180 bool strict_overflow_p = false;
5181 tree tem, lhs, rhs;
5182 const char * const warnmsg = G_("assuming signed overflow does not occur "
5183 "when simplifying range test");
5184
5185 if (!INTEGRAL_TYPE_P (type))
5186 return 0;
5187
5188 lhs = make_range (op0, &in0_p, &low0, &high0, &strict_overflow_p);
5189 rhs = make_range (op1, &in1_p, &low1, &high1, &strict_overflow_p);
5190
5191 /* If this is an OR operation, invert both sides; we will invert
5192 again at the end. */
5193 if (or_op)
5194 in0_p = ! in0_p, in1_p = ! in1_p;
5195
5196 /* If both expressions are the same, if we can merge the ranges, and we
5197 can build the range test, return it or it inverted. If one of the
5198 ranges is always true or always false, consider it to be the same
5199 expression as the other. */
5200 if ((lhs == 0 || rhs == 0 || operand_equal_p (lhs, rhs, 0))
5201 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
5202 in1_p, low1, high1)
5203 && 0 != (tem = (build_range_check (loc, type,
5204 lhs != 0 ? lhs
5205 : rhs != 0 ? rhs : integer_zero_node,
5206 in_p, low, high))))
5207 {
5208 if (strict_overflow_p)
5209 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
5210 return or_op ? invert_truthvalue_loc (loc, tem) : tem;
5211 }
5212
5213 /* On machines where the branch cost is expensive, if this is a
5214 short-circuited branch and the underlying object on both sides
5215 is the same, make a non-short-circuit operation. */
5216 else if (LOGICAL_OP_NON_SHORT_CIRCUIT
5217 && lhs != 0 && rhs != 0
5218 && (code == TRUTH_ANDIF_EXPR
5219 || code == TRUTH_ORIF_EXPR)
5220 && operand_equal_p (lhs, rhs, 0))
5221 {
5222 /* If simple enough, just rewrite. Otherwise, make a SAVE_EXPR
5223 unless we are at top level or LHS contains a PLACEHOLDER_EXPR, in
5224 which cases we can't do this. */
5225 if (simple_operand_p (lhs))
5226 return build2_loc (loc, code == TRUTH_ANDIF_EXPR
5227 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
5228 type, op0, op1);
5229
5230 else if (!lang_hooks.decls.global_bindings_p ()
5231 && !CONTAINS_PLACEHOLDER_P (lhs))
5232 {
5233 tree common = save_expr (lhs);
5234
5235 if (0 != (lhs = build_range_check (loc, type, common,
5236 or_op ? ! in0_p : in0_p,
5237 low0, high0))
5238 && (0 != (rhs = build_range_check (loc, type, common,
5239 or_op ? ! in1_p : in1_p,
5240 low1, high1))))
5241 {
5242 if (strict_overflow_p)
5243 fold_overflow_warning (warnmsg,
5244 WARN_STRICT_OVERFLOW_COMPARISON);
5245 return build2_loc (loc, code == TRUTH_ANDIF_EXPR
5246 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR,
5247 type, lhs, rhs);
5248 }
5249 }
5250 }
5251
5252 return 0;
5253 }
5254 \f
5255 /* Subroutine for fold_truth_andor_1: C is an INTEGER_CST interpreted as a P
5256 bit value. Arrange things so the extra bits will be set to zero if and
5257 only if C is signed-extended to its full width. If MASK is nonzero,
5258 it is an INTEGER_CST that should be AND'ed with the extra bits. */
5259
5260 static tree
5261 unextend (tree c, int p, int unsignedp, tree mask)
5262 {
5263 tree type = TREE_TYPE (c);
5264 int modesize = GET_MODE_BITSIZE (TYPE_MODE (type));
5265 tree temp;
5266
5267 if (p == modesize || unsignedp)
5268 return c;
5269
5270 /* We work by getting just the sign bit into the low-order bit, then
5271 into the high-order bit, then sign-extend. We then XOR that value
5272 with C. */
5273 temp = build_int_cst (TREE_TYPE (c), wi::extract_uhwi (c, p - 1, 1));
5274
5275 /* We must use a signed type in order to get an arithmetic right shift.
5276 However, we must also avoid introducing accidental overflows, so that
5277 a subsequent call to integer_zerop will work. Hence we must
5278 do the type conversion here. At this point, the constant is either
5279 zero or one, and the conversion to a signed type can never overflow.
5280 We could get an overflow if this conversion is done anywhere else. */
5281 if (TYPE_UNSIGNED (type))
5282 temp = fold_convert (signed_type_for (type), temp);
5283
5284 temp = const_binop (LSHIFT_EXPR, temp, size_int (modesize - 1));
5285 temp = const_binop (RSHIFT_EXPR, temp, size_int (modesize - p - 1));
5286 if (mask != 0)
5287 temp = const_binop (BIT_AND_EXPR, temp,
5288 fold_convert (TREE_TYPE (c), mask));
5289 /* If necessary, convert the type back to match the type of C. */
5290 if (TYPE_UNSIGNED (type))
5291 temp = fold_convert (type, temp);
5292
5293 return fold_convert (type, const_binop (BIT_XOR_EXPR, c, temp));
5294 }
5295 \f
5296 /* For an expression that has the form
5297 (A && B) || ~B
5298 or
5299 (A || B) && ~B,
5300 we can drop one of the inner expressions and simplify to
5301 A || ~B
5302 or
5303 A && ~B
5304 LOC is the location of the resulting expression. OP is the inner
5305 logical operation; the left-hand side in the examples above, while CMPOP
5306 is the right-hand side. RHS_ONLY is used to prevent us from accidentally
5307 removing a condition that guards another, as in
5308 (A != NULL && A->...) || A == NULL
5309 which we must not transform. If RHS_ONLY is true, only eliminate the
5310 right-most operand of the inner logical operation. */
5311
5312 static tree
5313 merge_truthop_with_opposite_arm (location_t loc, tree op, tree cmpop,
5314 bool rhs_only)
5315 {
5316 tree type = TREE_TYPE (cmpop);
5317 enum tree_code code = TREE_CODE (cmpop);
5318 enum tree_code truthop_code = TREE_CODE (op);
5319 tree lhs = TREE_OPERAND (op, 0);
5320 tree rhs = TREE_OPERAND (op, 1);
5321 tree orig_lhs = lhs, orig_rhs = rhs;
5322 enum tree_code rhs_code = TREE_CODE (rhs);
5323 enum tree_code lhs_code = TREE_CODE (lhs);
5324 enum tree_code inv_code;
5325
5326 if (TREE_SIDE_EFFECTS (op) || TREE_SIDE_EFFECTS (cmpop))
5327 return NULL_TREE;
5328
5329 if (TREE_CODE_CLASS (code) != tcc_comparison)
5330 return NULL_TREE;
5331
5332 if (rhs_code == truthop_code)
5333 {
5334 tree newrhs = merge_truthop_with_opposite_arm (loc, rhs, cmpop, rhs_only);
5335 if (newrhs != NULL_TREE)
5336 {
5337 rhs = newrhs;
5338 rhs_code = TREE_CODE (rhs);
5339 }
5340 }
5341 if (lhs_code == truthop_code && !rhs_only)
5342 {
5343 tree newlhs = merge_truthop_with_opposite_arm (loc, lhs, cmpop, false);
5344 if (newlhs != NULL_TREE)
5345 {
5346 lhs = newlhs;
5347 lhs_code = TREE_CODE (lhs);
5348 }
5349 }
5350
5351 inv_code = invert_tree_comparison (code, HONOR_NANS (type));
5352 if (inv_code == rhs_code
5353 && operand_equal_p (TREE_OPERAND (rhs, 0), TREE_OPERAND (cmpop, 0), 0)
5354 && operand_equal_p (TREE_OPERAND (rhs, 1), TREE_OPERAND (cmpop, 1), 0))
5355 return lhs;
5356 if (!rhs_only && inv_code == lhs_code
5357 && operand_equal_p (TREE_OPERAND (lhs, 0), TREE_OPERAND (cmpop, 0), 0)
5358 && operand_equal_p (TREE_OPERAND (lhs, 1), TREE_OPERAND (cmpop, 1), 0))
5359 return rhs;
5360 if (rhs != orig_rhs || lhs != orig_lhs)
5361 return fold_build2_loc (loc, truthop_code, TREE_TYPE (cmpop),
5362 lhs, rhs);
5363 return NULL_TREE;
5364 }
5365
5366 /* Find ways of folding logical expressions of LHS and RHS:
5367 Try to merge two comparisons to the same innermost item.
5368 Look for range tests like "ch >= '0' && ch <= '9'".
5369 Look for combinations of simple terms on machines with expensive branches
5370 and evaluate the RHS unconditionally.
5371
5372 For example, if we have p->a == 2 && p->b == 4 and we can make an
5373 object large enough to span both A and B, we can do this with a comparison
5374 against the object ANDed with the a mask.
5375
5376 If we have p->a == q->a && p->b == q->b, we may be able to use bit masking
5377 operations to do this with one comparison.
5378
5379 We check for both normal comparisons and the BIT_AND_EXPRs made this by
5380 function and the one above.
5381
5382 CODE is the logical operation being done. It can be TRUTH_ANDIF_EXPR,
5383 TRUTH_AND_EXPR, TRUTH_ORIF_EXPR, or TRUTH_OR_EXPR.
5384
5385 TRUTH_TYPE is the type of the logical operand and LHS and RHS are its
5386 two operands.
5387
5388 We return the simplified tree or 0 if no optimization is possible. */
5389
5390 static tree
5391 fold_truth_andor_1 (location_t loc, enum tree_code code, tree truth_type,
5392 tree lhs, tree rhs)
5393 {
5394 /* If this is the "or" of two comparisons, we can do something if
5395 the comparisons are NE_EXPR. If this is the "and", we can do something
5396 if the comparisons are EQ_EXPR. I.e.,
5397 (a->b == 2 && a->c == 4) can become (a->new == NEW).
5398
5399 WANTED_CODE is this operation code. For single bit fields, we can
5400 convert EQ_EXPR to NE_EXPR so we need not reject the "wrong"
5401 comparison for one-bit fields. */
5402
5403 enum tree_code wanted_code;
5404 enum tree_code lcode, rcode;
5405 tree ll_arg, lr_arg, rl_arg, rr_arg;
5406 tree ll_inner, lr_inner, rl_inner, rr_inner;
5407 HOST_WIDE_INT ll_bitsize, ll_bitpos, lr_bitsize, lr_bitpos;
5408 HOST_WIDE_INT rl_bitsize, rl_bitpos, rr_bitsize, rr_bitpos;
5409 HOST_WIDE_INT xll_bitpos, xlr_bitpos, xrl_bitpos, xrr_bitpos;
5410 HOST_WIDE_INT lnbitsize, lnbitpos, rnbitsize, rnbitpos;
5411 int ll_unsignedp, lr_unsignedp, rl_unsignedp, rr_unsignedp;
5412 machine_mode ll_mode, lr_mode, rl_mode, rr_mode;
5413 machine_mode lnmode, rnmode;
5414 tree ll_mask, lr_mask, rl_mask, rr_mask;
5415 tree ll_and_mask, lr_and_mask, rl_and_mask, rr_and_mask;
5416 tree l_const, r_const;
5417 tree lntype, rntype, result;
5418 HOST_WIDE_INT first_bit, end_bit;
5419 int volatilep;
5420
5421 /* Start by getting the comparison codes. Fail if anything is volatile.
5422 If one operand is a BIT_AND_EXPR with the constant one, treat it as if
5423 it were surrounded with a NE_EXPR. */
5424
5425 if (TREE_SIDE_EFFECTS (lhs) || TREE_SIDE_EFFECTS (rhs))
5426 return 0;
5427
5428 lcode = TREE_CODE (lhs);
5429 rcode = TREE_CODE (rhs);
5430
5431 if (lcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (lhs, 1)))
5432 {
5433 lhs = build2 (NE_EXPR, truth_type, lhs,
5434 build_int_cst (TREE_TYPE (lhs), 0));
5435 lcode = NE_EXPR;
5436 }
5437
5438 if (rcode == BIT_AND_EXPR && integer_onep (TREE_OPERAND (rhs, 1)))
5439 {
5440 rhs = build2 (NE_EXPR, truth_type, rhs,
5441 build_int_cst (TREE_TYPE (rhs), 0));
5442 rcode = NE_EXPR;
5443 }
5444
5445 if (TREE_CODE_CLASS (lcode) != tcc_comparison
5446 || TREE_CODE_CLASS (rcode) != tcc_comparison)
5447 return 0;
5448
5449 ll_arg = TREE_OPERAND (lhs, 0);
5450 lr_arg = TREE_OPERAND (lhs, 1);
5451 rl_arg = TREE_OPERAND (rhs, 0);
5452 rr_arg = TREE_OPERAND (rhs, 1);
5453
5454 /* Simplify (x<y) && (x==y) into (x<=y) and related optimizations. */
5455 if (simple_operand_p (ll_arg)
5456 && simple_operand_p (lr_arg))
5457 {
5458 if (operand_equal_p (ll_arg, rl_arg, 0)
5459 && operand_equal_p (lr_arg, rr_arg, 0))
5460 {
5461 result = combine_comparisons (loc, code, lcode, rcode,
5462 truth_type, ll_arg, lr_arg);
5463 if (result)
5464 return result;
5465 }
5466 else if (operand_equal_p (ll_arg, rr_arg, 0)
5467 && operand_equal_p (lr_arg, rl_arg, 0))
5468 {
5469 result = combine_comparisons (loc, code, lcode,
5470 swap_tree_comparison (rcode),
5471 truth_type, ll_arg, lr_arg);
5472 if (result)
5473 return result;
5474 }
5475 }
5476
5477 code = ((code == TRUTH_AND_EXPR || code == TRUTH_ANDIF_EXPR)
5478 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR);
5479
5480 /* If the RHS can be evaluated unconditionally and its operands are
5481 simple, it wins to evaluate the RHS unconditionally on machines
5482 with expensive branches. In this case, this isn't a comparison
5483 that can be merged. */
5484
5485 if (BRANCH_COST (optimize_function_for_speed_p (cfun),
5486 false) >= 2
5487 && ! FLOAT_TYPE_P (TREE_TYPE (rl_arg))
5488 && simple_operand_p (rl_arg)
5489 && simple_operand_p (rr_arg))
5490 {
5491 /* Convert (a != 0) || (b != 0) into (a | b) != 0. */
5492 if (code == TRUTH_OR_EXPR
5493 && lcode == NE_EXPR && integer_zerop (lr_arg)
5494 && rcode == NE_EXPR && integer_zerop (rr_arg)
5495 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg)
5496 && INTEGRAL_TYPE_P (TREE_TYPE (ll_arg)))
5497 return build2_loc (loc, NE_EXPR, truth_type,
5498 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
5499 ll_arg, rl_arg),
5500 build_int_cst (TREE_TYPE (ll_arg), 0));
5501
5502 /* Convert (a == 0) && (b == 0) into (a | b) == 0. */
5503 if (code == TRUTH_AND_EXPR
5504 && lcode == EQ_EXPR && integer_zerop (lr_arg)
5505 && rcode == EQ_EXPR && integer_zerop (rr_arg)
5506 && TREE_TYPE (ll_arg) == TREE_TYPE (rl_arg)
5507 && INTEGRAL_TYPE_P (TREE_TYPE (ll_arg)))
5508 return build2_loc (loc, EQ_EXPR, truth_type,
5509 build2 (BIT_IOR_EXPR, TREE_TYPE (ll_arg),
5510 ll_arg, rl_arg),
5511 build_int_cst (TREE_TYPE (ll_arg), 0));
5512 }
5513
5514 /* See if the comparisons can be merged. Then get all the parameters for
5515 each side. */
5516
5517 if ((lcode != EQ_EXPR && lcode != NE_EXPR)
5518 || (rcode != EQ_EXPR && rcode != NE_EXPR))
5519 return 0;
5520
5521 volatilep = 0;
5522 ll_inner = decode_field_reference (loc, ll_arg,
5523 &ll_bitsize, &ll_bitpos, &ll_mode,
5524 &ll_unsignedp, &volatilep, &ll_mask,
5525 &ll_and_mask);
5526 lr_inner = decode_field_reference (loc, lr_arg,
5527 &lr_bitsize, &lr_bitpos, &lr_mode,
5528 &lr_unsignedp, &volatilep, &lr_mask,
5529 &lr_and_mask);
5530 rl_inner = decode_field_reference (loc, rl_arg,
5531 &rl_bitsize, &rl_bitpos, &rl_mode,
5532 &rl_unsignedp, &volatilep, &rl_mask,
5533 &rl_and_mask);
5534 rr_inner = decode_field_reference (loc, rr_arg,
5535 &rr_bitsize, &rr_bitpos, &rr_mode,
5536 &rr_unsignedp, &volatilep, &rr_mask,
5537 &rr_and_mask);
5538
5539 /* It must be true that the inner operation on the lhs of each
5540 comparison must be the same if we are to be able to do anything.
5541 Then see if we have constants. If not, the same must be true for
5542 the rhs's. */
5543 if (volatilep || ll_inner == 0 || rl_inner == 0
5544 || ! operand_equal_p (ll_inner, rl_inner, 0))
5545 return 0;
5546
5547 if (TREE_CODE (lr_arg) == INTEGER_CST
5548 && TREE_CODE (rr_arg) == INTEGER_CST)
5549 l_const = lr_arg, r_const = rr_arg;
5550 else if (lr_inner == 0 || rr_inner == 0
5551 || ! operand_equal_p (lr_inner, rr_inner, 0))
5552 return 0;
5553 else
5554 l_const = r_const = 0;
5555
5556 /* If either comparison code is not correct for our logical operation,
5557 fail. However, we can convert a one-bit comparison against zero into
5558 the opposite comparison against that bit being set in the field. */
5559
5560 wanted_code = (code == TRUTH_AND_EXPR ? EQ_EXPR : NE_EXPR);
5561 if (lcode != wanted_code)
5562 {
5563 if (l_const && integer_zerop (l_const) && integer_pow2p (ll_mask))
5564 {
5565 /* Make the left operand unsigned, since we are only interested
5566 in the value of one bit. Otherwise we are doing the wrong
5567 thing below. */
5568 ll_unsignedp = 1;
5569 l_const = ll_mask;
5570 }
5571 else
5572 return 0;
5573 }
5574
5575 /* This is analogous to the code for l_const above. */
5576 if (rcode != wanted_code)
5577 {
5578 if (r_const && integer_zerop (r_const) && integer_pow2p (rl_mask))
5579 {
5580 rl_unsignedp = 1;
5581 r_const = rl_mask;
5582 }
5583 else
5584 return 0;
5585 }
5586
5587 /* See if we can find a mode that contains both fields being compared on
5588 the left. If we can't, fail. Otherwise, update all constants and masks
5589 to be relative to a field of that size. */
5590 first_bit = MIN (ll_bitpos, rl_bitpos);
5591 end_bit = MAX (ll_bitpos + ll_bitsize, rl_bitpos + rl_bitsize);
5592 lnmode = get_best_mode (end_bit - first_bit, first_bit, 0, 0,
5593 TYPE_ALIGN (TREE_TYPE (ll_inner)), word_mode,
5594 volatilep);
5595 if (lnmode == VOIDmode)
5596 return 0;
5597
5598 lnbitsize = GET_MODE_BITSIZE (lnmode);
5599 lnbitpos = first_bit & ~ (lnbitsize - 1);
5600 lntype = lang_hooks.types.type_for_size (lnbitsize, 1);
5601 xll_bitpos = ll_bitpos - lnbitpos, xrl_bitpos = rl_bitpos - lnbitpos;
5602
5603 if (BYTES_BIG_ENDIAN)
5604 {
5605 xll_bitpos = lnbitsize - xll_bitpos - ll_bitsize;
5606 xrl_bitpos = lnbitsize - xrl_bitpos - rl_bitsize;
5607 }
5608
5609 ll_mask = const_binop (LSHIFT_EXPR, fold_convert_loc (loc, lntype, ll_mask),
5610 size_int (xll_bitpos));
5611 rl_mask = const_binop (LSHIFT_EXPR, fold_convert_loc (loc, lntype, rl_mask),
5612 size_int (xrl_bitpos));
5613
5614 if (l_const)
5615 {
5616 l_const = fold_convert_loc (loc, lntype, l_const);
5617 l_const = unextend (l_const, ll_bitsize, ll_unsignedp, ll_and_mask);
5618 l_const = const_binop (LSHIFT_EXPR, l_const, size_int (xll_bitpos));
5619 if (! integer_zerop (const_binop (BIT_AND_EXPR, l_const,
5620 fold_build1_loc (loc, BIT_NOT_EXPR,
5621 lntype, ll_mask))))
5622 {
5623 warning (0, "comparison is always %d", wanted_code == NE_EXPR);
5624
5625 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
5626 }
5627 }
5628 if (r_const)
5629 {
5630 r_const = fold_convert_loc (loc, lntype, r_const);
5631 r_const = unextend (r_const, rl_bitsize, rl_unsignedp, rl_and_mask);
5632 r_const = const_binop (LSHIFT_EXPR, r_const, size_int (xrl_bitpos));
5633 if (! integer_zerop (const_binop (BIT_AND_EXPR, r_const,
5634 fold_build1_loc (loc, BIT_NOT_EXPR,
5635 lntype, rl_mask))))
5636 {
5637 warning (0, "comparison is always %d", wanted_code == NE_EXPR);
5638
5639 return constant_boolean_node (wanted_code == NE_EXPR, truth_type);
5640 }
5641 }
5642
5643 /* If the right sides are not constant, do the same for it. Also,
5644 disallow this optimization if a size or signedness mismatch occurs
5645 between the left and right sides. */
5646 if (l_const == 0)
5647 {
5648 if (ll_bitsize != lr_bitsize || rl_bitsize != rr_bitsize
5649 || ll_unsignedp != lr_unsignedp || rl_unsignedp != rr_unsignedp
5650 /* Make sure the two fields on the right
5651 correspond to the left without being swapped. */
5652 || ll_bitpos - rl_bitpos != lr_bitpos - rr_bitpos)
5653 return 0;
5654
5655 first_bit = MIN (lr_bitpos, rr_bitpos);
5656 end_bit = MAX (lr_bitpos + lr_bitsize, rr_bitpos + rr_bitsize);
5657 rnmode = get_best_mode (end_bit - first_bit, first_bit, 0, 0,
5658 TYPE_ALIGN (TREE_TYPE (lr_inner)), word_mode,
5659 volatilep);
5660 if (rnmode == VOIDmode)
5661 return 0;
5662
5663 rnbitsize = GET_MODE_BITSIZE (rnmode);
5664 rnbitpos = first_bit & ~ (rnbitsize - 1);
5665 rntype = lang_hooks.types.type_for_size (rnbitsize, 1);
5666 xlr_bitpos = lr_bitpos - rnbitpos, xrr_bitpos = rr_bitpos - rnbitpos;
5667
5668 if (BYTES_BIG_ENDIAN)
5669 {
5670 xlr_bitpos = rnbitsize - xlr_bitpos - lr_bitsize;
5671 xrr_bitpos = rnbitsize - xrr_bitpos - rr_bitsize;
5672 }
5673
5674 lr_mask = const_binop (LSHIFT_EXPR, fold_convert_loc (loc,
5675 rntype, lr_mask),
5676 size_int (xlr_bitpos));
5677 rr_mask = const_binop (LSHIFT_EXPR, fold_convert_loc (loc,
5678 rntype, rr_mask),
5679 size_int (xrr_bitpos));
5680
5681 /* Make a mask that corresponds to both fields being compared.
5682 Do this for both items being compared. If the operands are the
5683 same size and the bits being compared are in the same position
5684 then we can do this by masking both and comparing the masked
5685 results. */
5686 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask);
5687 lr_mask = const_binop (BIT_IOR_EXPR, lr_mask, rr_mask);
5688 if (lnbitsize == rnbitsize && xll_bitpos == xlr_bitpos)
5689 {
5690 lhs = make_bit_field_ref (loc, ll_inner, lntype, lnbitsize, lnbitpos,
5691 ll_unsignedp || rl_unsignedp);
5692 if (! all_ones_mask_p (ll_mask, lnbitsize))
5693 lhs = build2 (BIT_AND_EXPR, lntype, lhs, ll_mask);
5694
5695 rhs = make_bit_field_ref (loc, lr_inner, rntype, rnbitsize, rnbitpos,
5696 lr_unsignedp || rr_unsignedp);
5697 if (! all_ones_mask_p (lr_mask, rnbitsize))
5698 rhs = build2 (BIT_AND_EXPR, rntype, rhs, lr_mask);
5699
5700 return build2_loc (loc, wanted_code, truth_type, lhs, rhs);
5701 }
5702
5703 /* There is still another way we can do something: If both pairs of
5704 fields being compared are adjacent, we may be able to make a wider
5705 field containing them both.
5706
5707 Note that we still must mask the lhs/rhs expressions. Furthermore,
5708 the mask must be shifted to account for the shift done by
5709 make_bit_field_ref. */
5710 if ((ll_bitsize + ll_bitpos == rl_bitpos
5711 && lr_bitsize + lr_bitpos == rr_bitpos)
5712 || (ll_bitpos == rl_bitpos + rl_bitsize
5713 && lr_bitpos == rr_bitpos + rr_bitsize))
5714 {
5715 tree type;
5716
5717 lhs = make_bit_field_ref (loc, ll_inner, lntype,
5718 ll_bitsize + rl_bitsize,
5719 MIN (ll_bitpos, rl_bitpos), ll_unsignedp);
5720 rhs = make_bit_field_ref (loc, lr_inner, rntype,
5721 lr_bitsize + rr_bitsize,
5722 MIN (lr_bitpos, rr_bitpos), lr_unsignedp);
5723
5724 ll_mask = const_binop (RSHIFT_EXPR, ll_mask,
5725 size_int (MIN (xll_bitpos, xrl_bitpos)));
5726 lr_mask = const_binop (RSHIFT_EXPR, lr_mask,
5727 size_int (MIN (xlr_bitpos, xrr_bitpos)));
5728
5729 /* Convert to the smaller type before masking out unwanted bits. */
5730 type = lntype;
5731 if (lntype != rntype)
5732 {
5733 if (lnbitsize > rnbitsize)
5734 {
5735 lhs = fold_convert_loc (loc, rntype, lhs);
5736 ll_mask = fold_convert_loc (loc, rntype, ll_mask);
5737 type = rntype;
5738 }
5739 else if (lnbitsize < rnbitsize)
5740 {
5741 rhs = fold_convert_loc (loc, lntype, rhs);
5742 lr_mask = fold_convert_loc (loc, lntype, lr_mask);
5743 type = lntype;
5744 }
5745 }
5746
5747 if (! all_ones_mask_p (ll_mask, ll_bitsize + rl_bitsize))
5748 lhs = build2 (BIT_AND_EXPR, type, lhs, ll_mask);
5749
5750 if (! all_ones_mask_p (lr_mask, lr_bitsize + rr_bitsize))
5751 rhs = build2 (BIT_AND_EXPR, type, rhs, lr_mask);
5752
5753 return build2_loc (loc, wanted_code, truth_type, lhs, rhs);
5754 }
5755
5756 return 0;
5757 }
5758
5759 /* Handle the case of comparisons with constants. If there is something in
5760 common between the masks, those bits of the constants must be the same.
5761 If not, the condition is always false. Test for this to avoid generating
5762 incorrect code below. */
5763 result = const_binop (BIT_AND_EXPR, ll_mask, rl_mask);
5764 if (! integer_zerop (result)
5765 && simple_cst_equal (const_binop (BIT_AND_EXPR, result, l_const),
5766 const_binop (BIT_AND_EXPR, result, r_const)) != 1)
5767 {
5768 if (wanted_code == NE_EXPR)
5769 {
5770 warning (0, "%<or%> of unmatched not-equal tests is always 1");
5771 return constant_boolean_node (true, truth_type);
5772 }
5773 else
5774 {
5775 warning (0, "%<and%> of mutually exclusive equal-tests is always 0");
5776 return constant_boolean_node (false, truth_type);
5777 }
5778 }
5779
5780 /* Construct the expression we will return. First get the component
5781 reference we will make. Unless the mask is all ones the width of
5782 that field, perform the mask operation. Then compare with the
5783 merged constant. */
5784 result = make_bit_field_ref (loc, ll_inner, lntype, lnbitsize, lnbitpos,
5785 ll_unsignedp || rl_unsignedp);
5786
5787 ll_mask = const_binop (BIT_IOR_EXPR, ll_mask, rl_mask);
5788 if (! all_ones_mask_p (ll_mask, lnbitsize))
5789 result = build2_loc (loc, BIT_AND_EXPR, lntype, result, ll_mask);
5790
5791 return build2_loc (loc, wanted_code, truth_type, result,
5792 const_binop (BIT_IOR_EXPR, l_const, r_const));
5793 }
5794 \f
5795 /* Optimize T, which is a comparison of a MIN_EXPR or MAX_EXPR with a
5796 constant. */
5797
5798 static tree
5799 optimize_minmax_comparison (location_t loc, enum tree_code code, tree type,
5800 tree op0, tree op1)
5801 {
5802 tree arg0 = op0;
5803 enum tree_code op_code;
5804 tree comp_const;
5805 tree minmax_const;
5806 int consts_equal, consts_lt;
5807 tree inner;
5808
5809 STRIP_SIGN_NOPS (arg0);
5810
5811 op_code = TREE_CODE (arg0);
5812 minmax_const = TREE_OPERAND (arg0, 1);
5813 comp_const = fold_convert_loc (loc, TREE_TYPE (arg0), op1);
5814 consts_equal = tree_int_cst_equal (minmax_const, comp_const);
5815 consts_lt = tree_int_cst_lt (minmax_const, comp_const);
5816 inner = TREE_OPERAND (arg0, 0);
5817
5818 /* If something does not permit us to optimize, return the original tree. */
5819 if ((op_code != MIN_EXPR && op_code != MAX_EXPR)
5820 || TREE_CODE (comp_const) != INTEGER_CST
5821 || TREE_OVERFLOW (comp_const)
5822 || TREE_CODE (minmax_const) != INTEGER_CST
5823 || TREE_OVERFLOW (minmax_const))
5824 return NULL_TREE;
5825
5826 /* Now handle all the various comparison codes. We only handle EQ_EXPR
5827 and GT_EXPR, doing the rest with recursive calls using logical
5828 simplifications. */
5829 switch (code)
5830 {
5831 case NE_EXPR: case LT_EXPR: case LE_EXPR:
5832 {
5833 tree tem
5834 = optimize_minmax_comparison (loc,
5835 invert_tree_comparison (code, false),
5836 type, op0, op1);
5837 if (tem)
5838 return invert_truthvalue_loc (loc, tem);
5839 return NULL_TREE;
5840 }
5841
5842 case GE_EXPR:
5843 return
5844 fold_build2_loc (loc, TRUTH_ORIF_EXPR, type,
5845 optimize_minmax_comparison
5846 (loc, EQ_EXPR, type, arg0, comp_const),
5847 optimize_minmax_comparison
5848 (loc, GT_EXPR, type, arg0, comp_const));
5849
5850 case EQ_EXPR:
5851 if (op_code == MAX_EXPR && consts_equal)
5852 /* MAX (X, 0) == 0 -> X <= 0 */
5853 return fold_build2_loc (loc, LE_EXPR, type, inner, comp_const);
5854
5855 else if (op_code == MAX_EXPR && consts_lt)
5856 /* MAX (X, 0) == 5 -> X == 5 */
5857 return fold_build2_loc (loc, EQ_EXPR, type, inner, comp_const);
5858
5859 else if (op_code == MAX_EXPR)
5860 /* MAX (X, 0) == -1 -> false */
5861 return omit_one_operand_loc (loc, type, integer_zero_node, inner);
5862
5863 else if (consts_equal)
5864 /* MIN (X, 0) == 0 -> X >= 0 */
5865 return fold_build2_loc (loc, GE_EXPR, type, inner, comp_const);
5866
5867 else if (consts_lt)
5868 /* MIN (X, 0) == 5 -> false */
5869 return omit_one_operand_loc (loc, type, integer_zero_node, inner);
5870
5871 else
5872 /* MIN (X, 0) == -1 -> X == -1 */
5873 return fold_build2_loc (loc, EQ_EXPR, type, inner, comp_const);
5874
5875 case GT_EXPR:
5876 if (op_code == MAX_EXPR && (consts_equal || consts_lt))
5877 /* MAX (X, 0) > 0 -> X > 0
5878 MAX (X, 0) > 5 -> X > 5 */
5879 return fold_build2_loc (loc, GT_EXPR, type, inner, comp_const);
5880
5881 else if (op_code == MAX_EXPR)
5882 /* MAX (X, 0) > -1 -> true */
5883 return omit_one_operand_loc (loc, type, integer_one_node, inner);
5884
5885 else if (op_code == MIN_EXPR && (consts_equal || consts_lt))
5886 /* MIN (X, 0) > 0 -> false
5887 MIN (X, 0) > 5 -> false */
5888 return omit_one_operand_loc (loc, type, integer_zero_node, inner);
5889
5890 else
5891 /* MIN (X, 0) > -1 -> X > -1 */
5892 return fold_build2_loc (loc, GT_EXPR, type, inner, comp_const);
5893
5894 default:
5895 return NULL_TREE;
5896 }
5897 }
5898 \f
5899 /* T is an integer expression that is being multiplied, divided, or taken a
5900 modulus (CODE says which and what kind of divide or modulus) by a
5901 constant C. See if we can eliminate that operation by folding it with
5902 other operations already in T. WIDE_TYPE, if non-null, is a type that
5903 should be used for the computation if wider than our type.
5904
5905 For example, if we are dividing (X * 8) + (Y * 16) by 4, we can return
5906 (X * 2) + (Y * 4). We must, however, be assured that either the original
5907 expression would not overflow or that overflow is undefined for the type
5908 in the language in question.
5909
5910 If we return a non-null expression, it is an equivalent form of the
5911 original computation, but need not be in the original type.
5912
5913 We set *STRICT_OVERFLOW_P to true if the return values depends on
5914 signed overflow being undefined. Otherwise we do not change
5915 *STRICT_OVERFLOW_P. */
5916
5917 static tree
5918 extract_muldiv (tree t, tree c, enum tree_code code, tree wide_type,
5919 bool *strict_overflow_p)
5920 {
5921 /* To avoid exponential search depth, refuse to allow recursion past
5922 three levels. Beyond that (1) it's highly unlikely that we'll find
5923 something interesting and (2) we've probably processed it before
5924 when we built the inner expression. */
5925
5926 static int depth;
5927 tree ret;
5928
5929 if (depth > 3)
5930 return NULL;
5931
5932 depth++;
5933 ret = extract_muldiv_1 (t, c, code, wide_type, strict_overflow_p);
5934 depth--;
5935
5936 return ret;
5937 }
5938
5939 static tree
5940 extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type,
5941 bool *strict_overflow_p)
5942 {
5943 tree type = TREE_TYPE (t);
5944 enum tree_code tcode = TREE_CODE (t);
5945 tree ctype = (wide_type != 0 && (GET_MODE_SIZE (TYPE_MODE (wide_type))
5946 > GET_MODE_SIZE (TYPE_MODE (type)))
5947 ? wide_type : type);
5948 tree t1, t2;
5949 int same_p = tcode == code;
5950 tree op0 = NULL_TREE, op1 = NULL_TREE;
5951 bool sub_strict_overflow_p;
5952
5953 /* Don't deal with constants of zero here; they confuse the code below. */
5954 if (integer_zerop (c))
5955 return NULL_TREE;
5956
5957 if (TREE_CODE_CLASS (tcode) == tcc_unary)
5958 op0 = TREE_OPERAND (t, 0);
5959
5960 if (TREE_CODE_CLASS (tcode) == tcc_binary)
5961 op0 = TREE_OPERAND (t, 0), op1 = TREE_OPERAND (t, 1);
5962
5963 /* Note that we need not handle conditional operations here since fold
5964 already handles those cases. So just do arithmetic here. */
5965 switch (tcode)
5966 {
5967 case INTEGER_CST:
5968 /* For a constant, we can always simplify if we are a multiply
5969 or (for divide and modulus) if it is a multiple of our constant. */
5970 if (code == MULT_EXPR
5971 || wi::multiple_of_p (t, c, TYPE_SIGN (type)))
5972 return const_binop (code, fold_convert (ctype, t),
5973 fold_convert (ctype, c));
5974 break;
5975
5976 CASE_CONVERT: case NON_LVALUE_EXPR:
5977 /* If op0 is an expression ... */
5978 if ((COMPARISON_CLASS_P (op0)
5979 || UNARY_CLASS_P (op0)
5980 || BINARY_CLASS_P (op0)
5981 || VL_EXP_CLASS_P (op0)
5982 || EXPRESSION_CLASS_P (op0))
5983 /* ... and has wrapping overflow, and its type is smaller
5984 than ctype, then we cannot pass through as widening. */
5985 && (((ANY_INTEGRAL_TYPE_P (TREE_TYPE (op0))
5986 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (op0)))
5987 && (TYPE_PRECISION (ctype)
5988 > TYPE_PRECISION (TREE_TYPE (op0))))
5989 /* ... or this is a truncation (t is narrower than op0),
5990 then we cannot pass through this narrowing. */
5991 || (TYPE_PRECISION (type)
5992 < TYPE_PRECISION (TREE_TYPE (op0)))
5993 /* ... or signedness changes for division or modulus,
5994 then we cannot pass through this conversion. */
5995 || (code != MULT_EXPR
5996 && (TYPE_UNSIGNED (ctype)
5997 != TYPE_UNSIGNED (TREE_TYPE (op0))))
5998 /* ... or has undefined overflow while the converted to
5999 type has not, we cannot do the operation in the inner type
6000 as that would introduce undefined overflow. */
6001 || ((ANY_INTEGRAL_TYPE_P (TREE_TYPE (op0))
6002 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (op0)))
6003 && !TYPE_OVERFLOW_UNDEFINED (type))))
6004 break;
6005
6006 /* Pass the constant down and see if we can make a simplification. If
6007 we can, replace this expression with the inner simplification for
6008 possible later conversion to our or some other type. */
6009 if ((t2 = fold_convert (TREE_TYPE (op0), c)) != 0
6010 && TREE_CODE (t2) == INTEGER_CST
6011 && !TREE_OVERFLOW (t2)
6012 && (0 != (t1 = extract_muldiv (op0, t2, code,
6013 code == MULT_EXPR
6014 ? ctype : NULL_TREE,
6015 strict_overflow_p))))
6016 return t1;
6017 break;
6018
6019 case ABS_EXPR:
6020 /* If widening the type changes it from signed to unsigned, then we
6021 must avoid building ABS_EXPR itself as unsigned. */
6022 if (TYPE_UNSIGNED (ctype) && !TYPE_UNSIGNED (type))
6023 {
6024 tree cstype = (*signed_type_for) (ctype);
6025 if ((t1 = extract_muldiv (op0, c, code, cstype, strict_overflow_p))
6026 != 0)
6027 {
6028 t1 = fold_build1 (tcode, cstype, fold_convert (cstype, t1));
6029 return fold_convert (ctype, t1);
6030 }
6031 break;
6032 }
6033 /* If the constant is negative, we cannot simplify this. */
6034 if (tree_int_cst_sgn (c) == -1)
6035 break;
6036 /* FALLTHROUGH */
6037 case NEGATE_EXPR:
6038 /* For division and modulus, type can't be unsigned, as e.g.
6039 (-(x / 2U)) / 2U isn't equal to -((x / 2U) / 2U) for x >= 2.
6040 For signed types, even with wrapping overflow, this is fine. */
6041 if (code != MULT_EXPR && TYPE_UNSIGNED (type))
6042 break;
6043 if ((t1 = extract_muldiv (op0, c, code, wide_type, strict_overflow_p))
6044 != 0)
6045 return fold_build1 (tcode, ctype, fold_convert (ctype, t1));
6046 break;
6047
6048 case MIN_EXPR: case MAX_EXPR:
6049 /* If widening the type changes the signedness, then we can't perform
6050 this optimization as that changes the result. */
6051 if (TYPE_UNSIGNED (ctype) != TYPE_UNSIGNED (type))
6052 break;
6053
6054 /* MIN (a, b) / 5 -> MIN (a / 5, b / 5) */
6055 sub_strict_overflow_p = false;
6056 if ((t1 = extract_muldiv (op0, c, code, wide_type,
6057 &sub_strict_overflow_p)) != 0
6058 && (t2 = extract_muldiv (op1, c, code, wide_type,
6059 &sub_strict_overflow_p)) != 0)
6060 {
6061 if (tree_int_cst_sgn (c) < 0)
6062 tcode = (tcode == MIN_EXPR ? MAX_EXPR : MIN_EXPR);
6063 if (sub_strict_overflow_p)
6064 *strict_overflow_p = true;
6065 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
6066 fold_convert (ctype, t2));
6067 }
6068 break;
6069
6070 case LSHIFT_EXPR: case RSHIFT_EXPR:
6071 /* If the second operand is constant, this is a multiplication
6072 or floor division, by a power of two, so we can treat it that
6073 way unless the multiplier or divisor overflows. Signed
6074 left-shift overflow is implementation-defined rather than
6075 undefined in C90, so do not convert signed left shift into
6076 multiplication. */
6077 if (TREE_CODE (op1) == INTEGER_CST
6078 && (tcode == RSHIFT_EXPR || TYPE_UNSIGNED (TREE_TYPE (op0)))
6079 /* const_binop may not detect overflow correctly,
6080 so check for it explicitly here. */
6081 && wi::gtu_p (TYPE_PRECISION (TREE_TYPE (size_one_node)), op1)
6082 && 0 != (t1 = fold_convert (ctype,
6083 const_binop (LSHIFT_EXPR,
6084 size_one_node,
6085 op1)))
6086 && !TREE_OVERFLOW (t1))
6087 return extract_muldiv (build2 (tcode == LSHIFT_EXPR
6088 ? MULT_EXPR : FLOOR_DIV_EXPR,
6089 ctype,
6090 fold_convert (ctype, op0),
6091 t1),
6092 c, code, wide_type, strict_overflow_p);
6093 break;
6094
6095 case PLUS_EXPR: case MINUS_EXPR:
6096 /* See if we can eliminate the operation on both sides. If we can, we
6097 can return a new PLUS or MINUS. If we can't, the only remaining
6098 cases where we can do anything are if the second operand is a
6099 constant. */
6100 sub_strict_overflow_p = false;
6101 t1 = extract_muldiv (op0, c, code, wide_type, &sub_strict_overflow_p);
6102 t2 = extract_muldiv (op1, c, code, wide_type, &sub_strict_overflow_p);
6103 if (t1 != 0 && t2 != 0
6104 && (code == MULT_EXPR
6105 /* If not multiplication, we can only do this if both operands
6106 are divisible by c. */
6107 || (multiple_of_p (ctype, op0, c)
6108 && multiple_of_p (ctype, op1, c))))
6109 {
6110 if (sub_strict_overflow_p)
6111 *strict_overflow_p = true;
6112 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
6113 fold_convert (ctype, t2));
6114 }
6115
6116 /* If this was a subtraction, negate OP1 and set it to be an addition.
6117 This simplifies the logic below. */
6118 if (tcode == MINUS_EXPR)
6119 {
6120 tcode = PLUS_EXPR, op1 = negate_expr (op1);
6121 /* If OP1 was not easily negatable, the constant may be OP0. */
6122 if (TREE_CODE (op0) == INTEGER_CST)
6123 {
6124 std::swap (op0, op1);
6125 std::swap (t1, t2);
6126 }
6127 }
6128
6129 if (TREE_CODE (op1) != INTEGER_CST)
6130 break;
6131
6132 /* If either OP1 or C are negative, this optimization is not safe for
6133 some of the division and remainder types while for others we need
6134 to change the code. */
6135 if (tree_int_cst_sgn (op1) < 0 || tree_int_cst_sgn (c) < 0)
6136 {
6137 if (code == CEIL_DIV_EXPR)
6138 code = FLOOR_DIV_EXPR;
6139 else if (code == FLOOR_DIV_EXPR)
6140 code = CEIL_DIV_EXPR;
6141 else if (code != MULT_EXPR
6142 && code != CEIL_MOD_EXPR && code != FLOOR_MOD_EXPR)
6143 break;
6144 }
6145
6146 /* If it's a multiply or a division/modulus operation of a multiple
6147 of our constant, do the operation and verify it doesn't overflow. */
6148 if (code == MULT_EXPR
6149 || wi::multiple_of_p (op1, c, TYPE_SIGN (type)))
6150 {
6151 op1 = const_binop (code, fold_convert (ctype, op1),
6152 fold_convert (ctype, c));
6153 /* We allow the constant to overflow with wrapping semantics. */
6154 if (op1 == 0
6155 || (TREE_OVERFLOW (op1) && !TYPE_OVERFLOW_WRAPS (ctype)))
6156 break;
6157 }
6158 else
6159 break;
6160
6161 /* If we have an unsigned type, we cannot widen the operation since it
6162 will change the result if the original computation overflowed. */
6163 if (TYPE_UNSIGNED (ctype) && ctype != type)
6164 break;
6165
6166 /* If we were able to eliminate our operation from the first side,
6167 apply our operation to the second side and reform the PLUS. */
6168 if (t1 != 0 && (TREE_CODE (t1) != code || code == MULT_EXPR))
6169 return fold_build2 (tcode, ctype, fold_convert (ctype, t1), op1);
6170
6171 /* The last case is if we are a multiply. In that case, we can
6172 apply the distributive law to commute the multiply and addition
6173 if the multiplication of the constants doesn't overflow
6174 and overflow is defined. With undefined overflow
6175 op0 * c might overflow, while (op0 + orig_op1) * c doesn't. */
6176 if (code == MULT_EXPR && TYPE_OVERFLOW_WRAPS (ctype))
6177 return fold_build2 (tcode, ctype,
6178 fold_build2 (code, ctype,
6179 fold_convert (ctype, op0),
6180 fold_convert (ctype, c)),
6181 op1);
6182
6183 break;
6184
6185 case MULT_EXPR:
6186 /* We have a special case here if we are doing something like
6187 (C * 8) % 4 since we know that's zero. */
6188 if ((code == TRUNC_MOD_EXPR || code == CEIL_MOD_EXPR
6189 || code == FLOOR_MOD_EXPR || code == ROUND_MOD_EXPR)
6190 /* If the multiplication can overflow we cannot optimize this. */
6191 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (t))
6192 && TREE_CODE (TREE_OPERAND (t, 1)) == INTEGER_CST
6193 && wi::multiple_of_p (op1, c, TYPE_SIGN (type)))
6194 {
6195 *strict_overflow_p = true;
6196 return omit_one_operand (type, integer_zero_node, op0);
6197 }
6198
6199 /* ... fall through ... */
6200
6201 case TRUNC_DIV_EXPR: case CEIL_DIV_EXPR: case FLOOR_DIV_EXPR:
6202 case ROUND_DIV_EXPR: case EXACT_DIV_EXPR:
6203 /* If we can extract our operation from the LHS, do so and return a
6204 new operation. Likewise for the RHS from a MULT_EXPR. Otherwise,
6205 do something only if the second operand is a constant. */
6206 if (same_p
6207 && (t1 = extract_muldiv (op0, c, code, wide_type,
6208 strict_overflow_p)) != 0)
6209 return fold_build2 (tcode, ctype, fold_convert (ctype, t1),
6210 fold_convert (ctype, op1));
6211 else if (tcode == MULT_EXPR && code == MULT_EXPR
6212 && (t1 = extract_muldiv (op1, c, code, wide_type,
6213 strict_overflow_p)) != 0)
6214 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
6215 fold_convert (ctype, t1));
6216 else if (TREE_CODE (op1) != INTEGER_CST)
6217 return 0;
6218
6219 /* If these are the same operation types, we can associate them
6220 assuming no overflow. */
6221 if (tcode == code)
6222 {
6223 bool overflow_p = false;
6224 bool overflow_mul_p;
6225 signop sign = TYPE_SIGN (ctype);
6226 wide_int mul = wi::mul (op1, c, sign, &overflow_mul_p);
6227 overflow_p = TREE_OVERFLOW (c) | TREE_OVERFLOW (op1);
6228 if (overflow_mul_p
6229 && ((sign == UNSIGNED && tcode != MULT_EXPR) || sign == SIGNED))
6230 overflow_p = true;
6231 if (!overflow_p)
6232 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
6233 wide_int_to_tree (ctype, mul));
6234 }
6235
6236 /* If these operations "cancel" each other, we have the main
6237 optimizations of this pass, which occur when either constant is a
6238 multiple of the other, in which case we replace this with either an
6239 operation or CODE or TCODE.
6240
6241 If we have an unsigned type, we cannot do this since it will change
6242 the result if the original computation overflowed. */
6243 if (TYPE_OVERFLOW_UNDEFINED (ctype)
6244 && ((code == MULT_EXPR && tcode == EXACT_DIV_EXPR)
6245 || (tcode == MULT_EXPR
6246 && code != TRUNC_MOD_EXPR && code != CEIL_MOD_EXPR
6247 && code != FLOOR_MOD_EXPR && code != ROUND_MOD_EXPR
6248 && code != MULT_EXPR)))
6249 {
6250 if (wi::multiple_of_p (op1, c, TYPE_SIGN (type)))
6251 {
6252 if (TYPE_OVERFLOW_UNDEFINED (ctype))
6253 *strict_overflow_p = true;
6254 return fold_build2 (tcode, ctype, fold_convert (ctype, op0),
6255 fold_convert (ctype,
6256 const_binop (TRUNC_DIV_EXPR,
6257 op1, c)));
6258 }
6259 else if (wi::multiple_of_p (c, op1, TYPE_SIGN (type)))
6260 {
6261 if (TYPE_OVERFLOW_UNDEFINED (ctype))
6262 *strict_overflow_p = true;
6263 return fold_build2 (code, ctype, fold_convert (ctype, op0),
6264 fold_convert (ctype,
6265 const_binop (TRUNC_DIV_EXPR,
6266 c, op1)));
6267 }
6268 }
6269 break;
6270
6271 default:
6272 break;
6273 }
6274
6275 return 0;
6276 }
6277 \f
6278 /* Return a node which has the indicated constant VALUE (either 0 or
6279 1 for scalars or {-1,-1,..} or {0,0,...} for vectors),
6280 and is of the indicated TYPE. */
6281
6282 tree
6283 constant_boolean_node (bool value, tree type)
6284 {
6285 if (type == integer_type_node)
6286 return value ? integer_one_node : integer_zero_node;
6287 else if (type == boolean_type_node)
6288 return value ? boolean_true_node : boolean_false_node;
6289 else if (TREE_CODE (type) == VECTOR_TYPE)
6290 return build_vector_from_val (type,
6291 build_int_cst (TREE_TYPE (type),
6292 value ? -1 : 0));
6293 else
6294 return fold_convert (type, value ? integer_one_node : integer_zero_node);
6295 }
6296
6297
6298 /* Transform `a + (b ? x : y)' into `b ? (a + x) : (a + y)'.
6299 Transform, `a + (x < y)' into `(x < y) ? (a + 1) : (a + 0)'. Here
6300 CODE corresponds to the `+', COND to the `(b ? x : y)' or `(x < y)'
6301 expression, and ARG to `a'. If COND_FIRST_P is nonzero, then the
6302 COND is the first argument to CODE; otherwise (as in the example
6303 given here), it is the second argument. TYPE is the type of the
6304 original expression. Return NULL_TREE if no simplification is
6305 possible. */
6306
6307 static tree
6308 fold_binary_op_with_conditional_arg (location_t loc,
6309 enum tree_code code,
6310 tree type, tree op0, tree op1,
6311 tree cond, tree arg, int cond_first_p)
6312 {
6313 tree cond_type = cond_first_p ? TREE_TYPE (op0) : TREE_TYPE (op1);
6314 tree arg_type = cond_first_p ? TREE_TYPE (op1) : TREE_TYPE (op0);
6315 tree test, true_value, false_value;
6316 tree lhs = NULL_TREE;
6317 tree rhs = NULL_TREE;
6318 enum tree_code cond_code = COND_EXPR;
6319
6320 if (TREE_CODE (cond) == COND_EXPR
6321 || TREE_CODE (cond) == VEC_COND_EXPR)
6322 {
6323 test = TREE_OPERAND (cond, 0);
6324 true_value = TREE_OPERAND (cond, 1);
6325 false_value = TREE_OPERAND (cond, 2);
6326 /* If this operand throws an expression, then it does not make
6327 sense to try to perform a logical or arithmetic operation
6328 involving it. */
6329 if (VOID_TYPE_P (TREE_TYPE (true_value)))
6330 lhs = true_value;
6331 if (VOID_TYPE_P (TREE_TYPE (false_value)))
6332 rhs = false_value;
6333 }
6334 else
6335 {
6336 tree testtype = TREE_TYPE (cond);
6337 test = cond;
6338 true_value = constant_boolean_node (true, testtype);
6339 false_value = constant_boolean_node (false, testtype);
6340 }
6341
6342 if (TREE_CODE (TREE_TYPE (test)) == VECTOR_TYPE)
6343 cond_code = VEC_COND_EXPR;
6344
6345 /* This transformation is only worthwhile if we don't have to wrap ARG
6346 in a SAVE_EXPR and the operation can be simplified without recursing
6347 on at least one of the branches once its pushed inside the COND_EXPR. */
6348 if (!TREE_CONSTANT (arg)
6349 && (TREE_SIDE_EFFECTS (arg)
6350 || TREE_CODE (arg) == COND_EXPR || TREE_CODE (arg) == VEC_COND_EXPR
6351 || TREE_CONSTANT (true_value) || TREE_CONSTANT (false_value)))
6352 return NULL_TREE;
6353
6354 arg = fold_convert_loc (loc, arg_type, arg);
6355 if (lhs == 0)
6356 {
6357 true_value = fold_convert_loc (loc, cond_type, true_value);
6358 if (cond_first_p)
6359 lhs = fold_build2_loc (loc, code, type, true_value, arg);
6360 else
6361 lhs = fold_build2_loc (loc, code, type, arg, true_value);
6362 }
6363 if (rhs == 0)
6364 {
6365 false_value = fold_convert_loc (loc, cond_type, false_value);
6366 if (cond_first_p)
6367 rhs = fold_build2_loc (loc, code, type, false_value, arg);
6368 else
6369 rhs = fold_build2_loc (loc, code, type, arg, false_value);
6370 }
6371
6372 /* Check that we have simplified at least one of the branches. */
6373 if (!TREE_CONSTANT (arg) && !TREE_CONSTANT (lhs) && !TREE_CONSTANT (rhs))
6374 return NULL_TREE;
6375
6376 return fold_build3_loc (loc, cond_code, type, test, lhs, rhs);
6377 }
6378
6379 \f
6380 /* Subroutine of fold() that checks for the addition of +/- 0.0.
6381
6382 If !NEGATE, return true if ADDEND is +/-0.0 and, for all X of type
6383 TYPE, X + ADDEND is the same as X. If NEGATE, return true if X -
6384 ADDEND is the same as X.
6385
6386 X + 0 and X - 0 both give X when X is NaN, infinite, or nonzero
6387 and finite. The problematic cases are when X is zero, and its mode
6388 has signed zeros. In the case of rounding towards -infinity,
6389 X - 0 is not the same as X because 0 - 0 is -0. In other rounding
6390 modes, X + 0 is not the same as X because -0 + 0 is 0. */
6391
6392 bool
6393 fold_real_zero_addition_p (const_tree type, const_tree addend, int negate)
6394 {
6395 if (!real_zerop (addend))
6396 return false;
6397
6398 /* Don't allow the fold with -fsignaling-nans. */
6399 if (HONOR_SNANS (element_mode (type)))
6400 return false;
6401
6402 /* Allow the fold if zeros aren't signed, or their sign isn't important. */
6403 if (!HONOR_SIGNED_ZEROS (element_mode (type)))
6404 return true;
6405
6406 /* In a vector or complex, we would need to check the sign of all zeros. */
6407 if (TREE_CODE (addend) != REAL_CST)
6408 return false;
6409
6410 /* Treat x + -0 as x - 0 and x - -0 as x + 0. */
6411 if (REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (addend)))
6412 negate = !negate;
6413
6414 /* The mode has signed zeros, and we have to honor their sign.
6415 In this situation, there is only one case we can return true for.
6416 X - 0 is the same as X unless rounding towards -infinity is
6417 supported. */
6418 return negate && !HONOR_SIGN_DEPENDENT_ROUNDING (element_mode (type));
6419 }
6420
6421 /* Subroutine of fold() that checks comparisons of built-in math
6422 functions against real constants.
6423
6424 FCODE is the DECL_FUNCTION_CODE of the built-in, CODE is the comparison
6425 operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR, GE_EXPR or LE_EXPR. TYPE
6426 is the type of the result and ARG0 and ARG1 are the operands of the
6427 comparison. ARG1 must be a TREE_REAL_CST.
6428
6429 The function returns the constant folded tree if a simplification
6430 can be made, and NULL_TREE otherwise. */
6431
6432 static tree
6433 fold_mathfn_compare (location_t loc,
6434 enum built_in_function fcode, enum tree_code code,
6435 tree type, tree arg0, tree arg1)
6436 {
6437 REAL_VALUE_TYPE c;
6438
6439 if (BUILTIN_SQRT_P (fcode))
6440 {
6441 tree arg = CALL_EXPR_ARG (arg0, 0);
6442 machine_mode mode = TYPE_MODE (TREE_TYPE (arg0));
6443
6444 c = TREE_REAL_CST (arg1);
6445 if (REAL_VALUE_NEGATIVE (c))
6446 {
6447 /* sqrt(x) < y is always false, if y is negative. */
6448 if (code == EQ_EXPR || code == LT_EXPR || code == LE_EXPR)
6449 return omit_one_operand_loc (loc, type, integer_zero_node, arg);
6450
6451 /* sqrt(x) > y is always true, if y is negative and we
6452 don't care about NaNs, i.e. negative values of x. */
6453 if (code == NE_EXPR || !HONOR_NANS (mode))
6454 return omit_one_operand_loc (loc, type, integer_one_node, arg);
6455
6456 /* sqrt(x) > y is the same as x >= 0, if y is negative. */
6457 return fold_build2_loc (loc, GE_EXPR, type, arg,
6458 build_real (TREE_TYPE (arg), dconst0));
6459 }
6460 else if (code == GT_EXPR || code == GE_EXPR)
6461 {
6462 REAL_VALUE_TYPE c2;
6463
6464 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
6465 real_convert (&c2, mode, &c2);
6466
6467 if (REAL_VALUE_ISINF (c2))
6468 {
6469 /* sqrt(x) > y is x == +Inf, when y is very large. */
6470 if (HONOR_INFINITIES (mode))
6471 return fold_build2_loc (loc, EQ_EXPR, type, arg,
6472 build_real (TREE_TYPE (arg), c2));
6473
6474 /* sqrt(x) > y is always false, when y is very large
6475 and we don't care about infinities. */
6476 return omit_one_operand_loc (loc, type, integer_zero_node, arg);
6477 }
6478
6479 /* sqrt(x) > c is the same as x > c*c. */
6480 return fold_build2_loc (loc, code, type, arg,
6481 build_real (TREE_TYPE (arg), c2));
6482 }
6483 else if (code == LT_EXPR || code == LE_EXPR)
6484 {
6485 REAL_VALUE_TYPE c2;
6486
6487 REAL_ARITHMETIC (c2, MULT_EXPR, c, c);
6488 real_convert (&c2, mode, &c2);
6489
6490 if (REAL_VALUE_ISINF (c2))
6491 {
6492 /* sqrt(x) < y is always true, when y is a very large
6493 value and we don't care about NaNs or Infinities. */
6494 if (! HONOR_NANS (mode) && ! HONOR_INFINITIES (mode))
6495 return omit_one_operand_loc (loc, type, integer_one_node, arg);
6496
6497 /* sqrt(x) < y is x != +Inf when y is very large and we
6498 don't care about NaNs. */
6499 if (! HONOR_NANS (mode))
6500 return fold_build2_loc (loc, NE_EXPR, type, arg,
6501 build_real (TREE_TYPE (arg), c2));
6502
6503 /* sqrt(x) < y is x >= 0 when y is very large and we
6504 don't care about Infinities. */
6505 if (! HONOR_INFINITIES (mode))
6506 return fold_build2_loc (loc, GE_EXPR, type, arg,
6507 build_real (TREE_TYPE (arg), dconst0));
6508
6509 /* sqrt(x) < y is x >= 0 && x != +Inf, when y is large. */
6510 arg = save_expr (arg);
6511 return fold_build2_loc (loc, TRUTH_ANDIF_EXPR, type,
6512 fold_build2_loc (loc, GE_EXPR, type, arg,
6513 build_real (TREE_TYPE (arg),
6514 dconst0)),
6515 fold_build2_loc (loc, NE_EXPR, type, arg,
6516 build_real (TREE_TYPE (arg),
6517 c2)));
6518 }
6519
6520 /* sqrt(x) < c is the same as x < c*c, if we ignore NaNs. */
6521 if (! HONOR_NANS (mode))
6522 return fold_build2_loc (loc, code, type, arg,
6523 build_real (TREE_TYPE (arg), c2));
6524
6525 /* sqrt(x) < c is the same as x >= 0 && x < c*c. */
6526 arg = save_expr (arg);
6527 return fold_build2_loc (loc, TRUTH_ANDIF_EXPR, type,
6528 fold_build2_loc (loc, GE_EXPR, type, arg,
6529 build_real (TREE_TYPE (arg),
6530 dconst0)),
6531 fold_build2_loc (loc, code, type, arg,
6532 build_real (TREE_TYPE (arg),
6533 c2)));
6534 }
6535 }
6536
6537 return NULL_TREE;
6538 }
6539
6540 /* Subroutine of fold() that optimizes comparisons against Infinities,
6541 either +Inf or -Inf.
6542
6543 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
6544 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
6545 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
6546
6547 The function returns the constant folded tree if a simplification
6548 can be made, and NULL_TREE otherwise. */
6549
6550 static tree
6551 fold_inf_compare (location_t loc, enum tree_code code, tree type,
6552 tree arg0, tree arg1)
6553 {
6554 machine_mode mode;
6555 REAL_VALUE_TYPE max;
6556 tree temp;
6557 bool neg;
6558
6559 mode = TYPE_MODE (TREE_TYPE (arg0));
6560
6561 /* For negative infinity swap the sense of the comparison. */
6562 neg = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1));
6563 if (neg)
6564 code = swap_tree_comparison (code);
6565
6566 switch (code)
6567 {
6568 case GT_EXPR:
6569 /* x > +Inf is always false, if with ignore sNANs. */
6570 if (HONOR_SNANS (mode))
6571 return NULL_TREE;
6572 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
6573
6574 case LE_EXPR:
6575 /* x <= +Inf is always true, if we don't case about NaNs. */
6576 if (! HONOR_NANS (mode))
6577 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
6578
6579 /* x <= +Inf is the same as x == x, i.e. isfinite(x). */
6580 arg0 = save_expr (arg0);
6581 return fold_build2_loc (loc, EQ_EXPR, type, arg0, arg0);
6582
6583 case EQ_EXPR:
6584 case GE_EXPR:
6585 /* x == +Inf and x >= +Inf are always equal to x > DBL_MAX. */
6586 real_maxval (&max, neg, mode);
6587 return fold_build2_loc (loc, neg ? LT_EXPR : GT_EXPR, type,
6588 arg0, build_real (TREE_TYPE (arg0), max));
6589
6590 case LT_EXPR:
6591 /* x < +Inf is always equal to x <= DBL_MAX. */
6592 real_maxval (&max, neg, mode);
6593 return fold_build2_loc (loc, neg ? GE_EXPR : LE_EXPR, type,
6594 arg0, build_real (TREE_TYPE (arg0), max));
6595
6596 case NE_EXPR:
6597 /* x != +Inf is always equal to !(x > DBL_MAX). */
6598 real_maxval (&max, neg, mode);
6599 if (! HONOR_NANS (mode))
6600 return fold_build2_loc (loc, neg ? GE_EXPR : LE_EXPR, type,
6601 arg0, build_real (TREE_TYPE (arg0), max));
6602
6603 temp = fold_build2_loc (loc, neg ? LT_EXPR : GT_EXPR, type,
6604 arg0, build_real (TREE_TYPE (arg0), max));
6605 return fold_build1_loc (loc, TRUTH_NOT_EXPR, type, temp);
6606
6607 default:
6608 break;
6609 }
6610
6611 return NULL_TREE;
6612 }
6613
6614 /* Subroutine of fold() that optimizes comparisons of a division by
6615 a nonzero integer constant against an integer constant, i.e.
6616 X/C1 op C2.
6617
6618 CODE is the comparison operator: EQ_EXPR, NE_EXPR, GT_EXPR, LT_EXPR,
6619 GE_EXPR or LE_EXPR. TYPE is the type of the result and ARG0 and ARG1
6620 are the operands of the comparison. ARG1 must be a TREE_REAL_CST.
6621
6622 The function returns the constant folded tree if a simplification
6623 can be made, and NULL_TREE otherwise. */
6624
6625 static tree
6626 fold_div_compare (location_t loc,
6627 enum tree_code code, tree type, tree arg0, tree arg1)
6628 {
6629 tree prod, tmp, hi, lo;
6630 tree arg00 = TREE_OPERAND (arg0, 0);
6631 tree arg01 = TREE_OPERAND (arg0, 1);
6632 signop sign = TYPE_SIGN (TREE_TYPE (arg0));
6633 bool neg_overflow = false;
6634 bool overflow;
6635
6636 /* We have to do this the hard way to detect unsigned overflow.
6637 prod = int_const_binop (MULT_EXPR, arg01, arg1); */
6638 wide_int val = wi::mul (arg01, arg1, sign, &overflow);
6639 prod = force_fit_type (TREE_TYPE (arg00), val, -1, overflow);
6640 neg_overflow = false;
6641
6642 if (sign == UNSIGNED)
6643 {
6644 tmp = int_const_binop (MINUS_EXPR, arg01,
6645 build_int_cst (TREE_TYPE (arg01), 1));
6646 lo = prod;
6647
6648 /* Likewise hi = int_const_binop (PLUS_EXPR, prod, tmp). */
6649 val = wi::add (prod, tmp, sign, &overflow);
6650 hi = force_fit_type (TREE_TYPE (arg00), val,
6651 -1, overflow | TREE_OVERFLOW (prod));
6652 }
6653 else if (tree_int_cst_sgn (arg01) >= 0)
6654 {
6655 tmp = int_const_binop (MINUS_EXPR, arg01,
6656 build_int_cst (TREE_TYPE (arg01), 1));
6657 switch (tree_int_cst_sgn (arg1))
6658 {
6659 case -1:
6660 neg_overflow = true;
6661 lo = int_const_binop (MINUS_EXPR, prod, tmp);
6662 hi = prod;
6663 break;
6664
6665 case 0:
6666 lo = fold_negate_const (tmp, TREE_TYPE (arg0));
6667 hi = tmp;
6668 break;
6669
6670 case 1:
6671 hi = int_const_binop (PLUS_EXPR, prod, tmp);
6672 lo = prod;
6673 break;
6674
6675 default:
6676 gcc_unreachable ();
6677 }
6678 }
6679 else
6680 {
6681 /* A negative divisor reverses the relational operators. */
6682 code = swap_tree_comparison (code);
6683
6684 tmp = int_const_binop (PLUS_EXPR, arg01,
6685 build_int_cst (TREE_TYPE (arg01), 1));
6686 switch (tree_int_cst_sgn (arg1))
6687 {
6688 case -1:
6689 hi = int_const_binop (MINUS_EXPR, prod, tmp);
6690 lo = prod;
6691 break;
6692
6693 case 0:
6694 hi = fold_negate_const (tmp, TREE_TYPE (arg0));
6695 lo = tmp;
6696 break;
6697
6698 case 1:
6699 neg_overflow = true;
6700 lo = int_const_binop (PLUS_EXPR, prod, tmp);
6701 hi = prod;
6702 break;
6703
6704 default:
6705 gcc_unreachable ();
6706 }
6707 }
6708
6709 switch (code)
6710 {
6711 case EQ_EXPR:
6712 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
6713 return omit_one_operand_loc (loc, type, integer_zero_node, arg00);
6714 if (TREE_OVERFLOW (hi))
6715 return fold_build2_loc (loc, GE_EXPR, type, arg00, lo);
6716 if (TREE_OVERFLOW (lo))
6717 return fold_build2_loc (loc, LE_EXPR, type, arg00, hi);
6718 return build_range_check (loc, type, arg00, 1, lo, hi);
6719
6720 case NE_EXPR:
6721 if (TREE_OVERFLOW (lo) && TREE_OVERFLOW (hi))
6722 return omit_one_operand_loc (loc, type, integer_one_node, arg00);
6723 if (TREE_OVERFLOW (hi))
6724 return fold_build2_loc (loc, LT_EXPR, type, arg00, lo);
6725 if (TREE_OVERFLOW (lo))
6726 return fold_build2_loc (loc, GT_EXPR, type, arg00, hi);
6727 return build_range_check (loc, type, arg00, 0, lo, hi);
6728
6729 case LT_EXPR:
6730 if (TREE_OVERFLOW (lo))
6731 {
6732 tmp = neg_overflow ? integer_zero_node : integer_one_node;
6733 return omit_one_operand_loc (loc, type, tmp, arg00);
6734 }
6735 return fold_build2_loc (loc, LT_EXPR, type, arg00, lo);
6736
6737 case LE_EXPR:
6738 if (TREE_OVERFLOW (hi))
6739 {
6740 tmp = neg_overflow ? integer_zero_node : integer_one_node;
6741 return omit_one_operand_loc (loc, type, tmp, arg00);
6742 }
6743 return fold_build2_loc (loc, LE_EXPR, type, arg00, hi);
6744
6745 case GT_EXPR:
6746 if (TREE_OVERFLOW (hi))
6747 {
6748 tmp = neg_overflow ? integer_one_node : integer_zero_node;
6749 return omit_one_operand_loc (loc, type, tmp, arg00);
6750 }
6751 return fold_build2_loc (loc, GT_EXPR, type, arg00, hi);
6752
6753 case GE_EXPR:
6754 if (TREE_OVERFLOW (lo))
6755 {
6756 tmp = neg_overflow ? integer_one_node : integer_zero_node;
6757 return omit_one_operand_loc (loc, type, tmp, arg00);
6758 }
6759 return fold_build2_loc (loc, GE_EXPR, type, arg00, lo);
6760
6761 default:
6762 break;
6763 }
6764
6765 return NULL_TREE;
6766 }
6767
6768
6769 /* If CODE with arguments ARG0 and ARG1 represents a single bit
6770 equality/inequality test, then return a simplified form of the test
6771 using a sign testing. Otherwise return NULL. TYPE is the desired
6772 result type. */
6773
6774 static tree
6775 fold_single_bit_test_into_sign_test (location_t loc,
6776 enum tree_code code, tree arg0, tree arg1,
6777 tree result_type)
6778 {
6779 /* If this is testing a single bit, we can optimize the test. */
6780 if ((code == NE_EXPR || code == EQ_EXPR)
6781 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
6782 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6783 {
6784 /* If we have (A & C) != 0 where C is the sign bit of A, convert
6785 this into A < 0. Similarly for (A & C) == 0 into A >= 0. */
6786 tree arg00 = sign_bit_p (TREE_OPERAND (arg0, 0), TREE_OPERAND (arg0, 1));
6787
6788 if (arg00 != NULL_TREE
6789 /* This is only a win if casting to a signed type is cheap,
6790 i.e. when arg00's type is not a partial mode. */
6791 && TYPE_PRECISION (TREE_TYPE (arg00))
6792 == GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (arg00))))
6793 {
6794 tree stype = signed_type_for (TREE_TYPE (arg00));
6795 return fold_build2_loc (loc, code == EQ_EXPR ? GE_EXPR : LT_EXPR,
6796 result_type,
6797 fold_convert_loc (loc, stype, arg00),
6798 build_int_cst (stype, 0));
6799 }
6800 }
6801
6802 return NULL_TREE;
6803 }
6804
6805 /* If CODE with arguments ARG0 and ARG1 represents a single bit
6806 equality/inequality test, then return a simplified form of
6807 the test using shifts and logical operations. Otherwise return
6808 NULL. TYPE is the desired result type. */
6809
6810 tree
6811 fold_single_bit_test (location_t loc, enum tree_code code,
6812 tree arg0, tree arg1, tree result_type)
6813 {
6814 /* If this is testing a single bit, we can optimize the test. */
6815 if ((code == NE_EXPR || code == EQ_EXPR)
6816 && TREE_CODE (arg0) == BIT_AND_EXPR && integer_zerop (arg1)
6817 && integer_pow2p (TREE_OPERAND (arg0, 1)))
6818 {
6819 tree inner = TREE_OPERAND (arg0, 0);
6820 tree type = TREE_TYPE (arg0);
6821 int bitnum = tree_log2 (TREE_OPERAND (arg0, 1));
6822 machine_mode operand_mode = TYPE_MODE (type);
6823 int ops_unsigned;
6824 tree signed_type, unsigned_type, intermediate_type;
6825 tree tem, one;
6826
6827 /* First, see if we can fold the single bit test into a sign-bit
6828 test. */
6829 tem = fold_single_bit_test_into_sign_test (loc, code, arg0, arg1,
6830 result_type);
6831 if (tem)
6832 return tem;
6833
6834 /* Otherwise we have (A & C) != 0 where C is a single bit,
6835 convert that into ((A >> C2) & 1). Where C2 = log2(C).
6836 Similarly for (A & C) == 0. */
6837
6838 /* If INNER is a right shift of a constant and it plus BITNUM does
6839 not overflow, adjust BITNUM and INNER. */
6840 if (TREE_CODE (inner) == RSHIFT_EXPR
6841 && TREE_CODE (TREE_OPERAND (inner, 1)) == INTEGER_CST
6842 && bitnum < TYPE_PRECISION (type)
6843 && wi::ltu_p (TREE_OPERAND (inner, 1),
6844 TYPE_PRECISION (type) - bitnum))
6845 {
6846 bitnum += tree_to_uhwi (TREE_OPERAND (inner, 1));
6847 inner = TREE_OPERAND (inner, 0);
6848 }
6849
6850 /* If we are going to be able to omit the AND below, we must do our
6851 operations as unsigned. If we must use the AND, we have a choice.
6852 Normally unsigned is faster, but for some machines signed is. */
6853 #ifdef LOAD_EXTEND_OP
6854 ops_unsigned = (LOAD_EXTEND_OP (operand_mode) == SIGN_EXTEND
6855 && !flag_syntax_only) ? 0 : 1;
6856 #else
6857 ops_unsigned = 1;
6858 #endif
6859
6860 signed_type = lang_hooks.types.type_for_mode (operand_mode, 0);
6861 unsigned_type = lang_hooks.types.type_for_mode (operand_mode, 1);
6862 intermediate_type = ops_unsigned ? unsigned_type : signed_type;
6863 inner = fold_convert_loc (loc, intermediate_type, inner);
6864
6865 if (bitnum != 0)
6866 inner = build2 (RSHIFT_EXPR, intermediate_type,
6867 inner, size_int (bitnum));
6868
6869 one = build_int_cst (intermediate_type, 1);
6870
6871 if (code == EQ_EXPR)
6872 inner = fold_build2_loc (loc, BIT_XOR_EXPR, intermediate_type, inner, one);
6873
6874 /* Put the AND last so it can combine with more things. */
6875 inner = build2 (BIT_AND_EXPR, intermediate_type, inner, one);
6876
6877 /* Make sure to return the proper type. */
6878 inner = fold_convert_loc (loc, result_type, inner);
6879
6880 return inner;
6881 }
6882 return NULL_TREE;
6883 }
6884
6885 /* Check whether we are allowed to reorder operands arg0 and arg1,
6886 such that the evaluation of arg1 occurs before arg0. */
6887
6888 static bool
6889 reorder_operands_p (const_tree arg0, const_tree arg1)
6890 {
6891 if (! flag_evaluation_order)
6892 return true;
6893 if (TREE_CONSTANT (arg0) || TREE_CONSTANT (arg1))
6894 return true;
6895 return ! TREE_SIDE_EFFECTS (arg0)
6896 && ! TREE_SIDE_EFFECTS (arg1);
6897 }
6898
6899 /* Test whether it is preferable two swap two operands, ARG0 and
6900 ARG1, for example because ARG0 is an integer constant and ARG1
6901 isn't. If REORDER is true, only recommend swapping if we can
6902 evaluate the operands in reverse order. */
6903
6904 bool
6905 tree_swap_operands_p (const_tree arg0, const_tree arg1, bool reorder)
6906 {
6907 if (CONSTANT_CLASS_P (arg1))
6908 return 0;
6909 if (CONSTANT_CLASS_P (arg0))
6910 return 1;
6911
6912 STRIP_NOPS (arg0);
6913 STRIP_NOPS (arg1);
6914
6915 if (TREE_CONSTANT (arg1))
6916 return 0;
6917 if (TREE_CONSTANT (arg0))
6918 return 1;
6919
6920 if (reorder && flag_evaluation_order
6921 && (TREE_SIDE_EFFECTS (arg0) || TREE_SIDE_EFFECTS (arg1)))
6922 return 0;
6923
6924 /* It is preferable to swap two SSA_NAME to ensure a canonical form
6925 for commutative and comparison operators. Ensuring a canonical
6926 form allows the optimizers to find additional redundancies without
6927 having to explicitly check for both orderings. */
6928 if (TREE_CODE (arg0) == SSA_NAME
6929 && TREE_CODE (arg1) == SSA_NAME
6930 && SSA_NAME_VERSION (arg0) > SSA_NAME_VERSION (arg1))
6931 return 1;
6932
6933 /* Put SSA_NAMEs last. */
6934 if (TREE_CODE (arg1) == SSA_NAME)
6935 return 0;
6936 if (TREE_CODE (arg0) == SSA_NAME)
6937 return 1;
6938
6939 /* Put variables last. */
6940 if (DECL_P (arg1))
6941 return 0;
6942 if (DECL_P (arg0))
6943 return 1;
6944
6945 return 0;
6946 }
6947
6948 /* Fold comparison ARG0 CODE ARG1 (with result in TYPE), where
6949 ARG0 is extended to a wider type. */
6950
6951 static tree
6952 fold_widened_comparison (location_t loc, enum tree_code code,
6953 tree type, tree arg0, tree arg1)
6954 {
6955 tree arg0_unw = get_unwidened (arg0, NULL_TREE);
6956 tree arg1_unw;
6957 tree shorter_type, outer_type;
6958 tree min, max;
6959 bool above, below;
6960
6961 if (arg0_unw == arg0)
6962 return NULL_TREE;
6963 shorter_type = TREE_TYPE (arg0_unw);
6964
6965 /* Disable this optimization if we're casting a function pointer
6966 type on targets that require function pointer canonicalization. */
6967 if (targetm.have_canonicalize_funcptr_for_compare ()
6968 && TREE_CODE (shorter_type) == POINTER_TYPE
6969 && TREE_CODE (TREE_TYPE (shorter_type)) == FUNCTION_TYPE)
6970 return NULL_TREE;
6971
6972 if (TYPE_PRECISION (TREE_TYPE (arg0)) <= TYPE_PRECISION (shorter_type))
6973 return NULL_TREE;
6974
6975 arg1_unw = get_unwidened (arg1, NULL_TREE);
6976
6977 /* If possible, express the comparison in the shorter mode. */
6978 if ((code == EQ_EXPR || code == NE_EXPR
6979 || TYPE_UNSIGNED (TREE_TYPE (arg0)) == TYPE_UNSIGNED (shorter_type))
6980 && (TREE_TYPE (arg1_unw) == shorter_type
6981 || ((TYPE_PRECISION (shorter_type)
6982 >= TYPE_PRECISION (TREE_TYPE (arg1_unw)))
6983 && (TYPE_UNSIGNED (shorter_type)
6984 == TYPE_UNSIGNED (TREE_TYPE (arg1_unw))))
6985 || (TREE_CODE (arg1_unw) == INTEGER_CST
6986 && (TREE_CODE (shorter_type) == INTEGER_TYPE
6987 || TREE_CODE (shorter_type) == BOOLEAN_TYPE)
6988 && int_fits_type_p (arg1_unw, shorter_type))))
6989 return fold_build2_loc (loc, code, type, arg0_unw,
6990 fold_convert_loc (loc, shorter_type, arg1_unw));
6991
6992 if (TREE_CODE (arg1_unw) != INTEGER_CST
6993 || TREE_CODE (shorter_type) != INTEGER_TYPE
6994 || !int_fits_type_p (arg1_unw, shorter_type))
6995 return NULL_TREE;
6996
6997 /* If we are comparing with the integer that does not fit into the range
6998 of the shorter type, the result is known. */
6999 outer_type = TREE_TYPE (arg1_unw);
7000 min = lower_bound_in_type (outer_type, shorter_type);
7001 max = upper_bound_in_type (outer_type, shorter_type);
7002
7003 above = integer_nonzerop (fold_relational_const (LT_EXPR, type,
7004 max, arg1_unw));
7005 below = integer_nonzerop (fold_relational_const (LT_EXPR, type,
7006 arg1_unw, min));
7007
7008 switch (code)
7009 {
7010 case EQ_EXPR:
7011 if (above || below)
7012 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
7013 break;
7014
7015 case NE_EXPR:
7016 if (above || below)
7017 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
7018 break;
7019
7020 case LT_EXPR:
7021 case LE_EXPR:
7022 if (above)
7023 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
7024 else if (below)
7025 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
7026
7027 case GT_EXPR:
7028 case GE_EXPR:
7029 if (above)
7030 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
7031 else if (below)
7032 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
7033
7034 default:
7035 break;
7036 }
7037
7038 return NULL_TREE;
7039 }
7040
7041 /* Fold comparison ARG0 CODE ARG1 (with result in TYPE), where for
7042 ARG0 just the signedness is changed. */
7043
7044 static tree
7045 fold_sign_changed_comparison (location_t loc, enum tree_code code, tree type,
7046 tree arg0, tree arg1)
7047 {
7048 tree arg0_inner;
7049 tree inner_type, outer_type;
7050
7051 if (!CONVERT_EXPR_P (arg0))
7052 return NULL_TREE;
7053
7054 outer_type = TREE_TYPE (arg0);
7055 arg0_inner = TREE_OPERAND (arg0, 0);
7056 inner_type = TREE_TYPE (arg0_inner);
7057
7058 /* Disable this optimization if we're casting a function pointer
7059 type on targets that require function pointer canonicalization. */
7060 if (targetm.have_canonicalize_funcptr_for_compare ()
7061 && TREE_CODE (inner_type) == POINTER_TYPE
7062 && TREE_CODE (TREE_TYPE (inner_type)) == FUNCTION_TYPE)
7063 return NULL_TREE;
7064
7065 if (TYPE_PRECISION (inner_type) != TYPE_PRECISION (outer_type))
7066 return NULL_TREE;
7067
7068 if (TREE_CODE (arg1) != INTEGER_CST
7069 && !(CONVERT_EXPR_P (arg1)
7070 && TREE_TYPE (TREE_OPERAND (arg1, 0)) == inner_type))
7071 return NULL_TREE;
7072
7073 if (TYPE_UNSIGNED (inner_type) != TYPE_UNSIGNED (outer_type)
7074 && code != NE_EXPR
7075 && code != EQ_EXPR)
7076 return NULL_TREE;
7077
7078 if (POINTER_TYPE_P (inner_type) != POINTER_TYPE_P (outer_type))
7079 return NULL_TREE;
7080
7081 if (TREE_CODE (arg1) == INTEGER_CST)
7082 arg1 = force_fit_type (inner_type, wi::to_widest (arg1), 0,
7083 TREE_OVERFLOW (arg1));
7084 else
7085 arg1 = fold_convert_loc (loc, inner_type, arg1);
7086
7087 return fold_build2_loc (loc, code, type, arg0_inner, arg1);
7088 }
7089
7090
7091 /* Fold A < X && A + 1 > Y to A < X && A >= Y. Normally A + 1 > Y
7092 means A >= Y && A != MAX, but in this case we know that
7093 A < X <= MAX. INEQ is A + 1 > Y, BOUND is A < X. */
7094
7095 static tree
7096 fold_to_nonsharp_ineq_using_bound (location_t loc, tree ineq, tree bound)
7097 {
7098 tree a, typea, type = TREE_TYPE (ineq), a1, diff, y;
7099
7100 if (TREE_CODE (bound) == LT_EXPR)
7101 a = TREE_OPERAND (bound, 0);
7102 else if (TREE_CODE (bound) == GT_EXPR)
7103 a = TREE_OPERAND (bound, 1);
7104 else
7105 return NULL_TREE;
7106
7107 typea = TREE_TYPE (a);
7108 if (!INTEGRAL_TYPE_P (typea)
7109 && !POINTER_TYPE_P (typea))
7110 return NULL_TREE;
7111
7112 if (TREE_CODE (ineq) == LT_EXPR)
7113 {
7114 a1 = TREE_OPERAND (ineq, 1);
7115 y = TREE_OPERAND (ineq, 0);
7116 }
7117 else if (TREE_CODE (ineq) == GT_EXPR)
7118 {
7119 a1 = TREE_OPERAND (ineq, 0);
7120 y = TREE_OPERAND (ineq, 1);
7121 }
7122 else
7123 return NULL_TREE;
7124
7125 if (TREE_TYPE (a1) != typea)
7126 return NULL_TREE;
7127
7128 if (POINTER_TYPE_P (typea))
7129 {
7130 /* Convert the pointer types into integer before taking the difference. */
7131 tree ta = fold_convert_loc (loc, ssizetype, a);
7132 tree ta1 = fold_convert_loc (loc, ssizetype, a1);
7133 diff = fold_binary_loc (loc, MINUS_EXPR, ssizetype, ta1, ta);
7134 }
7135 else
7136 diff = fold_binary_loc (loc, MINUS_EXPR, typea, a1, a);
7137
7138 if (!diff || !integer_onep (diff))
7139 return NULL_TREE;
7140
7141 return fold_build2_loc (loc, GE_EXPR, type, a, y);
7142 }
7143
7144 /* Fold a sum or difference of at least one multiplication.
7145 Returns the folded tree or NULL if no simplification could be made. */
7146
7147 static tree
7148 fold_plusminus_mult_expr (location_t loc, enum tree_code code, tree type,
7149 tree arg0, tree arg1)
7150 {
7151 tree arg00, arg01, arg10, arg11;
7152 tree alt0 = NULL_TREE, alt1 = NULL_TREE, same;
7153
7154 /* (A * C) +- (B * C) -> (A+-B) * C.
7155 (A * C) +- A -> A * (C+-1).
7156 We are most concerned about the case where C is a constant,
7157 but other combinations show up during loop reduction. Since
7158 it is not difficult, try all four possibilities. */
7159
7160 if (TREE_CODE (arg0) == MULT_EXPR)
7161 {
7162 arg00 = TREE_OPERAND (arg0, 0);
7163 arg01 = TREE_OPERAND (arg0, 1);
7164 }
7165 else if (TREE_CODE (arg0) == INTEGER_CST)
7166 {
7167 arg00 = build_one_cst (type);
7168 arg01 = arg0;
7169 }
7170 else
7171 {
7172 /* We cannot generate constant 1 for fract. */
7173 if (ALL_FRACT_MODE_P (TYPE_MODE (type)))
7174 return NULL_TREE;
7175 arg00 = arg0;
7176 arg01 = build_one_cst (type);
7177 }
7178 if (TREE_CODE (arg1) == MULT_EXPR)
7179 {
7180 arg10 = TREE_OPERAND (arg1, 0);
7181 arg11 = TREE_OPERAND (arg1, 1);
7182 }
7183 else if (TREE_CODE (arg1) == INTEGER_CST)
7184 {
7185 arg10 = build_one_cst (type);
7186 /* As we canonicalize A - 2 to A + -2 get rid of that sign for
7187 the purpose of this canonicalization. */
7188 if (wi::neg_p (arg1, TYPE_SIGN (TREE_TYPE (arg1)))
7189 && negate_expr_p (arg1)
7190 && code == PLUS_EXPR)
7191 {
7192 arg11 = negate_expr (arg1);
7193 code = MINUS_EXPR;
7194 }
7195 else
7196 arg11 = arg1;
7197 }
7198 else
7199 {
7200 /* We cannot generate constant 1 for fract. */
7201 if (ALL_FRACT_MODE_P (TYPE_MODE (type)))
7202 return NULL_TREE;
7203 arg10 = arg1;
7204 arg11 = build_one_cst (type);
7205 }
7206 same = NULL_TREE;
7207
7208 if (operand_equal_p (arg01, arg11, 0))
7209 same = arg01, alt0 = arg00, alt1 = arg10;
7210 else if (operand_equal_p (arg00, arg10, 0))
7211 same = arg00, alt0 = arg01, alt1 = arg11;
7212 else if (operand_equal_p (arg00, arg11, 0))
7213 same = arg00, alt0 = arg01, alt1 = arg10;
7214 else if (operand_equal_p (arg01, arg10, 0))
7215 same = arg01, alt0 = arg00, alt1 = arg11;
7216
7217 /* No identical multiplicands; see if we can find a common
7218 power-of-two factor in non-power-of-two multiplies. This
7219 can help in multi-dimensional array access. */
7220 else if (tree_fits_shwi_p (arg01)
7221 && tree_fits_shwi_p (arg11))
7222 {
7223 HOST_WIDE_INT int01, int11, tmp;
7224 bool swap = false;
7225 tree maybe_same;
7226 int01 = tree_to_shwi (arg01);
7227 int11 = tree_to_shwi (arg11);
7228
7229 /* Move min of absolute values to int11. */
7230 if (absu_hwi (int01) < absu_hwi (int11))
7231 {
7232 tmp = int01, int01 = int11, int11 = tmp;
7233 alt0 = arg00, arg00 = arg10, arg10 = alt0;
7234 maybe_same = arg01;
7235 swap = true;
7236 }
7237 else
7238 maybe_same = arg11;
7239
7240 if (exact_log2 (absu_hwi (int11)) > 0 && int01 % int11 == 0
7241 /* The remainder should not be a constant, otherwise we
7242 end up folding i * 4 + 2 to (i * 2 + 1) * 2 which has
7243 increased the number of multiplications necessary. */
7244 && TREE_CODE (arg10) != INTEGER_CST)
7245 {
7246 alt0 = fold_build2_loc (loc, MULT_EXPR, TREE_TYPE (arg00), arg00,
7247 build_int_cst (TREE_TYPE (arg00),
7248 int01 / int11));
7249 alt1 = arg10;
7250 same = maybe_same;
7251 if (swap)
7252 maybe_same = alt0, alt0 = alt1, alt1 = maybe_same;
7253 }
7254 }
7255
7256 if (same)
7257 return fold_build2_loc (loc, MULT_EXPR, type,
7258 fold_build2_loc (loc, code, type,
7259 fold_convert_loc (loc, type, alt0),
7260 fold_convert_loc (loc, type, alt1)),
7261 fold_convert_loc (loc, type, same));
7262
7263 return NULL_TREE;
7264 }
7265
7266 /* Subroutine of native_encode_expr. Encode the INTEGER_CST
7267 specified by EXPR into the buffer PTR of length LEN bytes.
7268 Return the number of bytes placed in the buffer, or zero
7269 upon failure. */
7270
7271 static int
7272 native_encode_int (const_tree expr, unsigned char *ptr, int len, int off)
7273 {
7274 tree type = TREE_TYPE (expr);
7275 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7276 int byte, offset, word, words;
7277 unsigned char value;
7278
7279 if ((off == -1 && total_bytes > len)
7280 || off >= total_bytes)
7281 return 0;
7282 if (off == -1)
7283 off = 0;
7284 words = total_bytes / UNITS_PER_WORD;
7285
7286 for (byte = 0; byte < total_bytes; byte++)
7287 {
7288 int bitpos = byte * BITS_PER_UNIT;
7289 /* Extend EXPR according to TYPE_SIGN if the precision isn't a whole
7290 number of bytes. */
7291 value = wi::extract_uhwi (wi::to_widest (expr), bitpos, BITS_PER_UNIT);
7292
7293 if (total_bytes > UNITS_PER_WORD)
7294 {
7295 word = byte / UNITS_PER_WORD;
7296 if (WORDS_BIG_ENDIAN)
7297 word = (words - 1) - word;
7298 offset = word * UNITS_PER_WORD;
7299 if (BYTES_BIG_ENDIAN)
7300 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7301 else
7302 offset += byte % UNITS_PER_WORD;
7303 }
7304 else
7305 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte;
7306 if (offset >= off
7307 && offset - off < len)
7308 ptr[offset - off] = value;
7309 }
7310 return MIN (len, total_bytes - off);
7311 }
7312
7313
7314 /* Subroutine of native_encode_expr. Encode the FIXED_CST
7315 specified by EXPR into the buffer PTR of length LEN bytes.
7316 Return the number of bytes placed in the buffer, or zero
7317 upon failure. */
7318
7319 static int
7320 native_encode_fixed (const_tree expr, unsigned char *ptr, int len, int off)
7321 {
7322 tree type = TREE_TYPE (expr);
7323 machine_mode mode = TYPE_MODE (type);
7324 int total_bytes = GET_MODE_SIZE (mode);
7325 FIXED_VALUE_TYPE value;
7326 tree i_value, i_type;
7327
7328 if (total_bytes * BITS_PER_UNIT > HOST_BITS_PER_DOUBLE_INT)
7329 return 0;
7330
7331 i_type = lang_hooks.types.type_for_size (GET_MODE_BITSIZE (mode), 1);
7332
7333 if (NULL_TREE == i_type
7334 || TYPE_PRECISION (i_type) != total_bytes)
7335 return 0;
7336
7337 value = TREE_FIXED_CST (expr);
7338 i_value = double_int_to_tree (i_type, value.data);
7339
7340 return native_encode_int (i_value, ptr, len, off);
7341 }
7342
7343
7344 /* Subroutine of native_encode_expr. Encode the REAL_CST
7345 specified by EXPR into the buffer PTR of length LEN bytes.
7346 Return the number of bytes placed in the buffer, or zero
7347 upon failure. */
7348
7349 static int
7350 native_encode_real (const_tree expr, unsigned char *ptr, int len, int off)
7351 {
7352 tree type = TREE_TYPE (expr);
7353 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7354 int byte, offset, word, words, bitpos;
7355 unsigned char value;
7356
7357 /* There are always 32 bits in each long, no matter the size of
7358 the hosts long. We handle floating point representations with
7359 up to 192 bits. */
7360 long tmp[6];
7361
7362 if ((off == -1 && total_bytes > len)
7363 || off >= total_bytes)
7364 return 0;
7365 if (off == -1)
7366 off = 0;
7367 words = (32 / BITS_PER_UNIT) / UNITS_PER_WORD;
7368
7369 real_to_target (tmp, TREE_REAL_CST_PTR (expr), TYPE_MODE (type));
7370
7371 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT;
7372 bitpos += BITS_PER_UNIT)
7373 {
7374 byte = (bitpos / BITS_PER_UNIT) & 3;
7375 value = (unsigned char) (tmp[bitpos / 32] >> (bitpos & 31));
7376
7377 if (UNITS_PER_WORD < 4)
7378 {
7379 word = byte / UNITS_PER_WORD;
7380 if (WORDS_BIG_ENDIAN)
7381 word = (words - 1) - word;
7382 offset = word * UNITS_PER_WORD;
7383 if (BYTES_BIG_ENDIAN)
7384 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7385 else
7386 offset += byte % UNITS_PER_WORD;
7387 }
7388 else
7389 offset = BYTES_BIG_ENDIAN ? 3 - byte : byte;
7390 offset = offset + ((bitpos / BITS_PER_UNIT) & ~3);
7391 if (offset >= off
7392 && offset - off < len)
7393 ptr[offset - off] = value;
7394 }
7395 return MIN (len, total_bytes - off);
7396 }
7397
7398 /* Subroutine of native_encode_expr. Encode the COMPLEX_CST
7399 specified by EXPR into the buffer PTR of length LEN bytes.
7400 Return the number of bytes placed in the buffer, or zero
7401 upon failure. */
7402
7403 static int
7404 native_encode_complex (const_tree expr, unsigned char *ptr, int len, int off)
7405 {
7406 int rsize, isize;
7407 tree part;
7408
7409 part = TREE_REALPART (expr);
7410 rsize = native_encode_expr (part, ptr, len, off);
7411 if (off == -1
7412 && rsize == 0)
7413 return 0;
7414 part = TREE_IMAGPART (expr);
7415 if (off != -1)
7416 off = MAX (0, off - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (part))));
7417 isize = native_encode_expr (part, ptr+rsize, len-rsize, off);
7418 if (off == -1
7419 && isize != rsize)
7420 return 0;
7421 return rsize + isize;
7422 }
7423
7424
7425 /* Subroutine of native_encode_expr. Encode the VECTOR_CST
7426 specified by EXPR into the buffer PTR of length LEN bytes.
7427 Return the number of bytes placed in the buffer, or zero
7428 upon failure. */
7429
7430 static int
7431 native_encode_vector (const_tree expr, unsigned char *ptr, int len, int off)
7432 {
7433 unsigned i, count;
7434 int size, offset;
7435 tree itype, elem;
7436
7437 offset = 0;
7438 count = VECTOR_CST_NELTS (expr);
7439 itype = TREE_TYPE (TREE_TYPE (expr));
7440 size = GET_MODE_SIZE (TYPE_MODE (itype));
7441 for (i = 0; i < count; i++)
7442 {
7443 if (off >= size)
7444 {
7445 off -= size;
7446 continue;
7447 }
7448 elem = VECTOR_CST_ELT (expr, i);
7449 int res = native_encode_expr (elem, ptr+offset, len-offset, off);
7450 if ((off == -1 && res != size)
7451 || res == 0)
7452 return 0;
7453 offset += res;
7454 if (offset >= len)
7455 return offset;
7456 if (off != -1)
7457 off = 0;
7458 }
7459 return offset;
7460 }
7461
7462
7463 /* Subroutine of native_encode_expr. Encode the STRING_CST
7464 specified by EXPR into the buffer PTR of length LEN bytes.
7465 Return the number of bytes placed in the buffer, or zero
7466 upon failure. */
7467
7468 static int
7469 native_encode_string (const_tree expr, unsigned char *ptr, int len, int off)
7470 {
7471 tree type = TREE_TYPE (expr);
7472 HOST_WIDE_INT total_bytes;
7473
7474 if (TREE_CODE (type) != ARRAY_TYPE
7475 || TREE_CODE (TREE_TYPE (type)) != INTEGER_TYPE
7476 || GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type))) != BITS_PER_UNIT
7477 || !tree_fits_shwi_p (TYPE_SIZE_UNIT (type)))
7478 return 0;
7479 total_bytes = tree_to_shwi (TYPE_SIZE_UNIT (type));
7480 if ((off == -1 && total_bytes > len)
7481 || off >= total_bytes)
7482 return 0;
7483 if (off == -1)
7484 off = 0;
7485 if (TREE_STRING_LENGTH (expr) - off < MIN (total_bytes, len))
7486 {
7487 int written = 0;
7488 if (off < TREE_STRING_LENGTH (expr))
7489 {
7490 written = MIN (len, TREE_STRING_LENGTH (expr) - off);
7491 memcpy (ptr, TREE_STRING_POINTER (expr) + off, written);
7492 }
7493 memset (ptr + written, 0,
7494 MIN (total_bytes - written, len - written));
7495 }
7496 else
7497 memcpy (ptr, TREE_STRING_POINTER (expr) + off, MIN (total_bytes, len));
7498 return MIN (total_bytes - off, len);
7499 }
7500
7501
7502 /* Subroutine of fold_view_convert_expr. Encode the INTEGER_CST,
7503 REAL_CST, COMPLEX_CST or VECTOR_CST specified by EXPR into the
7504 buffer PTR of length LEN bytes. If OFF is not -1 then start
7505 the encoding at byte offset OFF and encode at most LEN bytes.
7506 Return the number of bytes placed in the buffer, or zero upon failure. */
7507
7508 int
7509 native_encode_expr (const_tree expr, unsigned char *ptr, int len, int off)
7510 {
7511 switch (TREE_CODE (expr))
7512 {
7513 case INTEGER_CST:
7514 return native_encode_int (expr, ptr, len, off);
7515
7516 case REAL_CST:
7517 return native_encode_real (expr, ptr, len, off);
7518
7519 case FIXED_CST:
7520 return native_encode_fixed (expr, ptr, len, off);
7521
7522 case COMPLEX_CST:
7523 return native_encode_complex (expr, ptr, len, off);
7524
7525 case VECTOR_CST:
7526 return native_encode_vector (expr, ptr, len, off);
7527
7528 case STRING_CST:
7529 return native_encode_string (expr, ptr, len, off);
7530
7531 default:
7532 return 0;
7533 }
7534 }
7535
7536
7537 /* Subroutine of native_interpret_expr. Interpret the contents of
7538 the buffer PTR of length LEN as an INTEGER_CST of type TYPE.
7539 If the buffer cannot be interpreted, return NULL_TREE. */
7540
7541 static tree
7542 native_interpret_int (tree type, const unsigned char *ptr, int len)
7543 {
7544 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7545
7546 if (total_bytes > len
7547 || total_bytes * BITS_PER_UNIT > HOST_BITS_PER_DOUBLE_INT)
7548 return NULL_TREE;
7549
7550 wide_int result = wi::from_buffer (ptr, total_bytes);
7551
7552 return wide_int_to_tree (type, result);
7553 }
7554
7555
7556 /* Subroutine of native_interpret_expr. Interpret the contents of
7557 the buffer PTR of length LEN as a FIXED_CST of type TYPE.
7558 If the buffer cannot be interpreted, return NULL_TREE. */
7559
7560 static tree
7561 native_interpret_fixed (tree type, const unsigned char *ptr, int len)
7562 {
7563 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7564 double_int result;
7565 FIXED_VALUE_TYPE fixed_value;
7566
7567 if (total_bytes > len
7568 || total_bytes * BITS_PER_UNIT > HOST_BITS_PER_DOUBLE_INT)
7569 return NULL_TREE;
7570
7571 result = double_int::from_buffer (ptr, total_bytes);
7572 fixed_value = fixed_from_double_int (result, TYPE_MODE (type));
7573
7574 return build_fixed (type, fixed_value);
7575 }
7576
7577
7578 /* Subroutine of native_interpret_expr. Interpret the contents of
7579 the buffer PTR of length LEN as a REAL_CST of type TYPE.
7580 If the buffer cannot be interpreted, return NULL_TREE. */
7581
7582 static tree
7583 native_interpret_real (tree type, const unsigned char *ptr, int len)
7584 {
7585 machine_mode mode = TYPE_MODE (type);
7586 int total_bytes = GET_MODE_SIZE (mode);
7587 int byte, offset, word, words, bitpos;
7588 unsigned char value;
7589 /* There are always 32 bits in each long, no matter the size of
7590 the hosts long. We handle floating point representations with
7591 up to 192 bits. */
7592 REAL_VALUE_TYPE r;
7593 long tmp[6];
7594
7595 total_bytes = GET_MODE_SIZE (TYPE_MODE (type));
7596 if (total_bytes > len || total_bytes > 24)
7597 return NULL_TREE;
7598 words = (32 / BITS_PER_UNIT) / UNITS_PER_WORD;
7599
7600 memset (tmp, 0, sizeof (tmp));
7601 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT;
7602 bitpos += BITS_PER_UNIT)
7603 {
7604 byte = (bitpos / BITS_PER_UNIT) & 3;
7605 if (UNITS_PER_WORD < 4)
7606 {
7607 word = byte / UNITS_PER_WORD;
7608 if (WORDS_BIG_ENDIAN)
7609 word = (words - 1) - word;
7610 offset = word * UNITS_PER_WORD;
7611 if (BYTES_BIG_ENDIAN)
7612 offset += (UNITS_PER_WORD - 1) - (byte % UNITS_PER_WORD);
7613 else
7614 offset += byte % UNITS_PER_WORD;
7615 }
7616 else
7617 offset = BYTES_BIG_ENDIAN ? 3 - byte : byte;
7618 value = ptr[offset + ((bitpos / BITS_PER_UNIT) & ~3)];
7619
7620 tmp[bitpos / 32] |= (unsigned long)value << (bitpos & 31);
7621 }
7622
7623 real_from_target (&r, tmp, mode);
7624 return build_real (type, r);
7625 }
7626
7627
7628 /* Subroutine of native_interpret_expr. Interpret the contents of
7629 the buffer PTR of length LEN as a COMPLEX_CST of type TYPE.
7630 If the buffer cannot be interpreted, return NULL_TREE. */
7631
7632 static tree
7633 native_interpret_complex (tree type, const unsigned char *ptr, int len)
7634 {
7635 tree etype, rpart, ipart;
7636 int size;
7637
7638 etype = TREE_TYPE (type);
7639 size = GET_MODE_SIZE (TYPE_MODE (etype));
7640 if (size * 2 > len)
7641 return NULL_TREE;
7642 rpart = native_interpret_expr (etype, ptr, size);
7643 if (!rpart)
7644 return NULL_TREE;
7645 ipart = native_interpret_expr (etype, ptr+size, size);
7646 if (!ipart)
7647 return NULL_TREE;
7648 return build_complex (type, rpart, ipart);
7649 }
7650
7651
7652 /* Subroutine of native_interpret_expr. Interpret the contents of
7653 the buffer PTR of length LEN as a VECTOR_CST of type TYPE.
7654 If the buffer cannot be interpreted, return NULL_TREE. */
7655
7656 static tree
7657 native_interpret_vector (tree type, const unsigned char *ptr, int len)
7658 {
7659 tree etype, elem;
7660 int i, size, count;
7661 tree *elements;
7662
7663 etype = TREE_TYPE (type);
7664 size = GET_MODE_SIZE (TYPE_MODE (etype));
7665 count = TYPE_VECTOR_SUBPARTS (type);
7666 if (size * count > len)
7667 return NULL_TREE;
7668
7669 elements = XALLOCAVEC (tree, count);
7670 for (i = count - 1; i >= 0; i--)
7671 {
7672 elem = native_interpret_expr (etype, ptr+(i*size), size);
7673 if (!elem)
7674 return NULL_TREE;
7675 elements[i] = elem;
7676 }
7677 return build_vector (type, elements);
7678 }
7679
7680
7681 /* Subroutine of fold_view_convert_expr. Interpret the contents of
7682 the buffer PTR of length LEN as a constant of type TYPE. For
7683 INTEGRAL_TYPE_P we return an INTEGER_CST, for SCALAR_FLOAT_TYPE_P
7684 we return a REAL_CST, etc... If the buffer cannot be interpreted,
7685 return NULL_TREE. */
7686
7687 tree
7688 native_interpret_expr (tree type, const unsigned char *ptr, int len)
7689 {
7690 switch (TREE_CODE (type))
7691 {
7692 case INTEGER_TYPE:
7693 case ENUMERAL_TYPE:
7694 case BOOLEAN_TYPE:
7695 case POINTER_TYPE:
7696 case REFERENCE_TYPE:
7697 return native_interpret_int (type, ptr, len);
7698
7699 case REAL_TYPE:
7700 return native_interpret_real (type, ptr, len);
7701
7702 case FIXED_POINT_TYPE:
7703 return native_interpret_fixed (type, ptr, len);
7704
7705 case COMPLEX_TYPE:
7706 return native_interpret_complex (type, ptr, len);
7707
7708 case VECTOR_TYPE:
7709 return native_interpret_vector (type, ptr, len);
7710
7711 default:
7712 return NULL_TREE;
7713 }
7714 }
7715
7716 /* Returns true if we can interpret the contents of a native encoding
7717 as TYPE. */
7718
7719 static bool
7720 can_native_interpret_type_p (tree type)
7721 {
7722 switch (TREE_CODE (type))
7723 {
7724 case INTEGER_TYPE:
7725 case ENUMERAL_TYPE:
7726 case BOOLEAN_TYPE:
7727 case POINTER_TYPE:
7728 case REFERENCE_TYPE:
7729 case FIXED_POINT_TYPE:
7730 case REAL_TYPE:
7731 case COMPLEX_TYPE:
7732 case VECTOR_TYPE:
7733 return true;
7734 default:
7735 return false;
7736 }
7737 }
7738
7739 /* Fold a VIEW_CONVERT_EXPR of a constant expression EXPR to type
7740 TYPE at compile-time. If we're unable to perform the conversion
7741 return NULL_TREE. */
7742
7743 static tree
7744 fold_view_convert_expr (tree type, tree expr)
7745 {
7746 /* We support up to 512-bit values (for V8DFmode). */
7747 unsigned char buffer[64];
7748 int len;
7749
7750 /* Check that the host and target are sane. */
7751 if (CHAR_BIT != 8 || BITS_PER_UNIT != 8)
7752 return NULL_TREE;
7753
7754 len = native_encode_expr (expr, buffer, sizeof (buffer));
7755 if (len == 0)
7756 return NULL_TREE;
7757
7758 return native_interpret_expr (type, buffer, len);
7759 }
7760
7761 /* Build an expression for the address of T. Folds away INDIRECT_REF
7762 to avoid confusing the gimplify process. */
7763
7764 tree
7765 build_fold_addr_expr_with_type_loc (location_t loc, tree t, tree ptrtype)
7766 {
7767 /* The size of the object is not relevant when talking about its address. */
7768 if (TREE_CODE (t) == WITH_SIZE_EXPR)
7769 t = TREE_OPERAND (t, 0);
7770
7771 if (TREE_CODE (t) == INDIRECT_REF)
7772 {
7773 t = TREE_OPERAND (t, 0);
7774
7775 if (TREE_TYPE (t) != ptrtype)
7776 t = build1_loc (loc, NOP_EXPR, ptrtype, t);
7777 }
7778 else if (TREE_CODE (t) == MEM_REF
7779 && integer_zerop (TREE_OPERAND (t, 1)))
7780 return TREE_OPERAND (t, 0);
7781 else if (TREE_CODE (t) == MEM_REF
7782 && TREE_CODE (TREE_OPERAND (t, 0)) == INTEGER_CST)
7783 return fold_binary (POINTER_PLUS_EXPR, ptrtype,
7784 TREE_OPERAND (t, 0),
7785 convert_to_ptrofftype (TREE_OPERAND (t, 1)));
7786 else if (TREE_CODE (t) == VIEW_CONVERT_EXPR)
7787 {
7788 t = build_fold_addr_expr_loc (loc, TREE_OPERAND (t, 0));
7789
7790 if (TREE_TYPE (t) != ptrtype)
7791 t = fold_convert_loc (loc, ptrtype, t);
7792 }
7793 else
7794 t = build1_loc (loc, ADDR_EXPR, ptrtype, t);
7795
7796 return t;
7797 }
7798
7799 /* Build an expression for the address of T. */
7800
7801 tree
7802 build_fold_addr_expr_loc (location_t loc, tree t)
7803 {
7804 tree ptrtype = build_pointer_type (TREE_TYPE (t));
7805
7806 return build_fold_addr_expr_with_type_loc (loc, t, ptrtype);
7807 }
7808
7809 /* Fold a unary expression of code CODE and type TYPE with operand
7810 OP0. Return the folded expression if folding is successful.
7811 Otherwise, return NULL_TREE. */
7812
7813 tree
7814 fold_unary_loc (location_t loc, enum tree_code code, tree type, tree op0)
7815 {
7816 tree tem;
7817 tree arg0;
7818 enum tree_code_class kind = TREE_CODE_CLASS (code);
7819
7820 gcc_assert (IS_EXPR_CODE_CLASS (kind)
7821 && TREE_CODE_LENGTH (code) == 1);
7822
7823 arg0 = op0;
7824 if (arg0)
7825 {
7826 if (CONVERT_EXPR_CODE_P (code)
7827 || code == FLOAT_EXPR || code == ABS_EXPR || code == NEGATE_EXPR)
7828 {
7829 /* Don't use STRIP_NOPS, because signedness of argument type
7830 matters. */
7831 STRIP_SIGN_NOPS (arg0);
7832 }
7833 else
7834 {
7835 /* Strip any conversions that don't change the mode. This
7836 is safe for every expression, except for a comparison
7837 expression because its signedness is derived from its
7838 operands.
7839
7840 Note that this is done as an internal manipulation within
7841 the constant folder, in order to find the simplest
7842 representation of the arguments so that their form can be
7843 studied. In any cases, the appropriate type conversions
7844 should be put back in the tree that will get out of the
7845 constant folder. */
7846 STRIP_NOPS (arg0);
7847 }
7848
7849 if (CONSTANT_CLASS_P (arg0))
7850 {
7851 tree tem = const_unop (code, type, arg0);
7852 if (tem)
7853 {
7854 if (TREE_TYPE (tem) != type)
7855 tem = fold_convert_loc (loc, type, tem);
7856 return tem;
7857 }
7858 }
7859 }
7860
7861 tem = generic_simplify (loc, code, type, op0);
7862 if (tem)
7863 return tem;
7864
7865 if (TREE_CODE_CLASS (code) == tcc_unary)
7866 {
7867 if (TREE_CODE (arg0) == COMPOUND_EXPR)
7868 return build2 (COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
7869 fold_build1_loc (loc, code, type,
7870 fold_convert_loc (loc, TREE_TYPE (op0),
7871 TREE_OPERAND (arg0, 1))));
7872 else if (TREE_CODE (arg0) == COND_EXPR)
7873 {
7874 tree arg01 = TREE_OPERAND (arg0, 1);
7875 tree arg02 = TREE_OPERAND (arg0, 2);
7876 if (! VOID_TYPE_P (TREE_TYPE (arg01)))
7877 arg01 = fold_build1_loc (loc, code, type,
7878 fold_convert_loc (loc,
7879 TREE_TYPE (op0), arg01));
7880 if (! VOID_TYPE_P (TREE_TYPE (arg02)))
7881 arg02 = fold_build1_loc (loc, code, type,
7882 fold_convert_loc (loc,
7883 TREE_TYPE (op0), arg02));
7884 tem = fold_build3_loc (loc, COND_EXPR, type, TREE_OPERAND (arg0, 0),
7885 arg01, arg02);
7886
7887 /* If this was a conversion, and all we did was to move into
7888 inside the COND_EXPR, bring it back out. But leave it if
7889 it is a conversion from integer to integer and the
7890 result precision is no wider than a word since such a
7891 conversion is cheap and may be optimized away by combine,
7892 while it couldn't if it were outside the COND_EXPR. Then return
7893 so we don't get into an infinite recursion loop taking the
7894 conversion out and then back in. */
7895
7896 if ((CONVERT_EXPR_CODE_P (code)
7897 || code == NON_LVALUE_EXPR)
7898 && TREE_CODE (tem) == COND_EXPR
7899 && TREE_CODE (TREE_OPERAND (tem, 1)) == code
7900 && TREE_CODE (TREE_OPERAND (tem, 2)) == code
7901 && ! VOID_TYPE_P (TREE_OPERAND (tem, 1))
7902 && ! VOID_TYPE_P (TREE_OPERAND (tem, 2))
7903 && (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))
7904 == TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 2), 0)))
7905 && (! (INTEGRAL_TYPE_P (TREE_TYPE (tem))
7906 && (INTEGRAL_TYPE_P
7907 (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (tem, 1), 0))))
7908 && TYPE_PRECISION (TREE_TYPE (tem)) <= BITS_PER_WORD)
7909 || flag_syntax_only))
7910 tem = build1_loc (loc, code, type,
7911 build3 (COND_EXPR,
7912 TREE_TYPE (TREE_OPERAND
7913 (TREE_OPERAND (tem, 1), 0)),
7914 TREE_OPERAND (tem, 0),
7915 TREE_OPERAND (TREE_OPERAND (tem, 1), 0),
7916 TREE_OPERAND (TREE_OPERAND (tem, 2),
7917 0)));
7918 return tem;
7919 }
7920 }
7921
7922 switch (code)
7923 {
7924 case NON_LVALUE_EXPR:
7925 if (!maybe_lvalue_p (op0))
7926 return fold_convert_loc (loc, type, op0);
7927 return NULL_TREE;
7928
7929 CASE_CONVERT:
7930 case FLOAT_EXPR:
7931 case FIX_TRUNC_EXPR:
7932 if (COMPARISON_CLASS_P (op0))
7933 {
7934 /* If we have (type) (a CMP b) and type is an integral type, return
7935 new expression involving the new type. Canonicalize
7936 (type) (a CMP b) to (a CMP b) ? (type) true : (type) false for
7937 non-integral type.
7938 Do not fold the result as that would not simplify further, also
7939 folding again results in recursions. */
7940 if (TREE_CODE (type) == BOOLEAN_TYPE)
7941 return build2_loc (loc, TREE_CODE (op0), type,
7942 TREE_OPERAND (op0, 0),
7943 TREE_OPERAND (op0, 1));
7944 else if (!INTEGRAL_TYPE_P (type) && !VOID_TYPE_P (type)
7945 && TREE_CODE (type) != VECTOR_TYPE)
7946 return build3_loc (loc, COND_EXPR, type, op0,
7947 constant_boolean_node (true, type),
7948 constant_boolean_node (false, type));
7949 }
7950
7951 /* Handle (T *)&A.B.C for A being of type T and B and C
7952 living at offset zero. This occurs frequently in
7953 C++ upcasting and then accessing the base. */
7954 if (TREE_CODE (op0) == ADDR_EXPR
7955 && POINTER_TYPE_P (type)
7956 && handled_component_p (TREE_OPERAND (op0, 0)))
7957 {
7958 HOST_WIDE_INT bitsize, bitpos;
7959 tree offset;
7960 machine_mode mode;
7961 int unsignedp, volatilep;
7962 tree base = TREE_OPERAND (op0, 0);
7963 base = get_inner_reference (base, &bitsize, &bitpos, &offset,
7964 &mode, &unsignedp, &volatilep, false);
7965 /* If the reference was to a (constant) zero offset, we can use
7966 the address of the base if it has the same base type
7967 as the result type and the pointer type is unqualified. */
7968 if (! offset && bitpos == 0
7969 && (TYPE_MAIN_VARIANT (TREE_TYPE (type))
7970 == TYPE_MAIN_VARIANT (TREE_TYPE (base)))
7971 && TYPE_QUALS (type) == TYPE_UNQUALIFIED)
7972 return fold_convert_loc (loc, type,
7973 build_fold_addr_expr_loc (loc, base));
7974 }
7975
7976 if (TREE_CODE (op0) == MODIFY_EXPR
7977 && TREE_CONSTANT (TREE_OPERAND (op0, 1))
7978 /* Detect assigning a bitfield. */
7979 && !(TREE_CODE (TREE_OPERAND (op0, 0)) == COMPONENT_REF
7980 && DECL_BIT_FIELD
7981 (TREE_OPERAND (TREE_OPERAND (op0, 0), 1))))
7982 {
7983 /* Don't leave an assignment inside a conversion
7984 unless assigning a bitfield. */
7985 tem = fold_build1_loc (loc, code, type, TREE_OPERAND (op0, 1));
7986 /* First do the assignment, then return converted constant. */
7987 tem = build2_loc (loc, COMPOUND_EXPR, TREE_TYPE (tem), op0, tem);
7988 TREE_NO_WARNING (tem) = 1;
7989 TREE_USED (tem) = 1;
7990 return tem;
7991 }
7992
7993 /* Convert (T)(x & c) into (T)x & (T)c, if c is an integer
7994 constants (if x has signed type, the sign bit cannot be set
7995 in c). This folds extension into the BIT_AND_EXPR.
7996 ??? We don't do it for BOOLEAN_TYPE or ENUMERAL_TYPE because they
7997 very likely don't have maximal range for their precision and this
7998 transformation effectively doesn't preserve non-maximal ranges. */
7999 if (TREE_CODE (type) == INTEGER_TYPE
8000 && TREE_CODE (op0) == BIT_AND_EXPR
8001 && TREE_CODE (TREE_OPERAND (op0, 1)) == INTEGER_CST)
8002 {
8003 tree and_expr = op0;
8004 tree and0 = TREE_OPERAND (and_expr, 0);
8005 tree and1 = TREE_OPERAND (and_expr, 1);
8006 int change = 0;
8007
8008 if (TYPE_UNSIGNED (TREE_TYPE (and_expr))
8009 || (TYPE_PRECISION (type)
8010 <= TYPE_PRECISION (TREE_TYPE (and_expr))))
8011 change = 1;
8012 else if (TYPE_PRECISION (TREE_TYPE (and1))
8013 <= HOST_BITS_PER_WIDE_INT
8014 && tree_fits_uhwi_p (and1))
8015 {
8016 unsigned HOST_WIDE_INT cst;
8017
8018 cst = tree_to_uhwi (and1);
8019 cst &= HOST_WIDE_INT_M1U
8020 << (TYPE_PRECISION (TREE_TYPE (and1)) - 1);
8021 change = (cst == 0);
8022 #ifdef LOAD_EXTEND_OP
8023 if (change
8024 && !flag_syntax_only
8025 && (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0)))
8026 == ZERO_EXTEND))
8027 {
8028 tree uns = unsigned_type_for (TREE_TYPE (and0));
8029 and0 = fold_convert_loc (loc, uns, and0);
8030 and1 = fold_convert_loc (loc, uns, and1);
8031 }
8032 #endif
8033 }
8034 if (change)
8035 {
8036 tem = force_fit_type (type, wi::to_widest (and1), 0,
8037 TREE_OVERFLOW (and1));
8038 return fold_build2_loc (loc, BIT_AND_EXPR, type,
8039 fold_convert_loc (loc, type, and0), tem);
8040 }
8041 }
8042
8043 /* Convert (T1)(X p+ Y) into ((T1)X p+ Y), for pointer type,
8044 when one of the new casts will fold away. Conservatively we assume
8045 that this happens when X or Y is NOP_EXPR or Y is INTEGER_CST. */
8046 if (POINTER_TYPE_P (type)
8047 && TREE_CODE (arg0) == POINTER_PLUS_EXPR
8048 && (!TYPE_RESTRICT (type) || TYPE_RESTRICT (TREE_TYPE (arg0)))
8049 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8050 || TREE_CODE (TREE_OPERAND (arg0, 0)) == NOP_EXPR
8051 || TREE_CODE (TREE_OPERAND (arg0, 1)) == NOP_EXPR))
8052 {
8053 tree arg00 = TREE_OPERAND (arg0, 0);
8054 tree arg01 = TREE_OPERAND (arg0, 1);
8055
8056 return fold_build_pointer_plus_loc
8057 (loc, fold_convert_loc (loc, type, arg00), arg01);
8058 }
8059
8060 /* Convert (T1)(~(T2)X) into ~(T1)X if T1 and T2 are integral types
8061 of the same precision, and X is an integer type not narrower than
8062 types T1 or T2, i.e. the cast (T2)X isn't an extension. */
8063 if (INTEGRAL_TYPE_P (type)
8064 && TREE_CODE (op0) == BIT_NOT_EXPR
8065 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
8066 && CONVERT_EXPR_P (TREE_OPERAND (op0, 0))
8067 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (op0)))
8068 {
8069 tem = TREE_OPERAND (TREE_OPERAND (op0, 0), 0);
8070 if (INTEGRAL_TYPE_P (TREE_TYPE (tem))
8071 && TYPE_PRECISION (type) <= TYPE_PRECISION (TREE_TYPE (tem)))
8072 return fold_build1_loc (loc, BIT_NOT_EXPR, type,
8073 fold_convert_loc (loc, type, tem));
8074 }
8075
8076 /* Convert (T1)(X * Y) into (T1)X * (T1)Y if T1 is narrower than the
8077 type of X and Y (integer types only). */
8078 if (INTEGRAL_TYPE_P (type)
8079 && TREE_CODE (op0) == MULT_EXPR
8080 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
8081 && TYPE_PRECISION (type) < TYPE_PRECISION (TREE_TYPE (op0)))
8082 {
8083 /* Be careful not to introduce new overflows. */
8084 tree mult_type;
8085 if (TYPE_OVERFLOW_WRAPS (type))
8086 mult_type = type;
8087 else
8088 mult_type = unsigned_type_for (type);
8089
8090 if (TYPE_PRECISION (mult_type) < TYPE_PRECISION (TREE_TYPE (op0)))
8091 {
8092 tem = fold_build2_loc (loc, MULT_EXPR, mult_type,
8093 fold_convert_loc (loc, mult_type,
8094 TREE_OPERAND (op0, 0)),
8095 fold_convert_loc (loc, mult_type,
8096 TREE_OPERAND (op0, 1)));
8097 return fold_convert_loc (loc, type, tem);
8098 }
8099 }
8100
8101 return NULL_TREE;
8102
8103 case VIEW_CONVERT_EXPR:
8104 if (TREE_CODE (op0) == MEM_REF)
8105 return fold_build2_loc (loc, MEM_REF, type,
8106 TREE_OPERAND (op0, 0), TREE_OPERAND (op0, 1));
8107
8108 return NULL_TREE;
8109
8110 case NEGATE_EXPR:
8111 tem = fold_negate_expr (loc, arg0);
8112 if (tem)
8113 return fold_convert_loc (loc, type, tem);
8114 return NULL_TREE;
8115
8116 case ABS_EXPR:
8117 /* Convert fabs((double)float) into (double)fabsf(float). */
8118 if (TREE_CODE (arg0) == NOP_EXPR
8119 && TREE_CODE (type) == REAL_TYPE)
8120 {
8121 tree targ0 = strip_float_extensions (arg0);
8122 if (targ0 != arg0)
8123 return fold_convert_loc (loc, type,
8124 fold_build1_loc (loc, ABS_EXPR,
8125 TREE_TYPE (targ0),
8126 targ0));
8127 }
8128
8129 /* Strip sign ops from argument. */
8130 if (TREE_CODE (type) == REAL_TYPE)
8131 {
8132 tem = fold_strip_sign_ops (arg0);
8133 if (tem)
8134 return fold_build1_loc (loc, ABS_EXPR, type,
8135 fold_convert_loc (loc, type, tem));
8136 }
8137 return NULL_TREE;
8138
8139 case CONJ_EXPR:
8140 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8141 return fold_convert_loc (loc, type, arg0);
8142 if (TREE_CODE (arg0) == COMPLEX_EXPR)
8143 {
8144 tree itype = TREE_TYPE (type);
8145 tree rpart = fold_convert_loc (loc, itype, TREE_OPERAND (arg0, 0));
8146 tree ipart = fold_convert_loc (loc, itype, TREE_OPERAND (arg0, 1));
8147 return fold_build2_loc (loc, COMPLEX_EXPR, type, rpart,
8148 negate_expr (ipart));
8149 }
8150 if (TREE_CODE (arg0) == CONJ_EXPR)
8151 return fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
8152 return NULL_TREE;
8153
8154 case BIT_NOT_EXPR:
8155 /* Convert ~(X ^ Y) to ~X ^ Y or X ^ ~Y if ~X or ~Y simplify. */
8156 if (TREE_CODE (arg0) == BIT_XOR_EXPR
8157 && (tem = fold_unary_loc (loc, BIT_NOT_EXPR, type,
8158 fold_convert_loc (loc, type,
8159 TREE_OPERAND (arg0, 0)))))
8160 return fold_build2_loc (loc, BIT_XOR_EXPR, type, tem,
8161 fold_convert_loc (loc, type,
8162 TREE_OPERAND (arg0, 1)));
8163 else if (TREE_CODE (arg0) == BIT_XOR_EXPR
8164 && (tem = fold_unary_loc (loc, BIT_NOT_EXPR, type,
8165 fold_convert_loc (loc, type,
8166 TREE_OPERAND (arg0, 1)))))
8167 return fold_build2_loc (loc, BIT_XOR_EXPR, type,
8168 fold_convert_loc (loc, type,
8169 TREE_OPERAND (arg0, 0)), tem);
8170
8171 return NULL_TREE;
8172
8173 case TRUTH_NOT_EXPR:
8174 /* Note that the operand of this must be an int
8175 and its values must be 0 or 1.
8176 ("true" is a fixed value perhaps depending on the language,
8177 but we don't handle values other than 1 correctly yet.) */
8178 tem = fold_truth_not_expr (loc, arg0);
8179 if (!tem)
8180 return NULL_TREE;
8181 return fold_convert_loc (loc, type, tem);
8182
8183 case REALPART_EXPR:
8184 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8185 return fold_convert_loc (loc, type, arg0);
8186 if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8187 {
8188 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8189 tem = fold_build2_loc (loc, TREE_CODE (arg0), itype,
8190 fold_build1_loc (loc, REALPART_EXPR, itype,
8191 TREE_OPERAND (arg0, 0)),
8192 fold_build1_loc (loc, REALPART_EXPR, itype,
8193 TREE_OPERAND (arg0, 1)));
8194 return fold_convert_loc (loc, type, tem);
8195 }
8196 if (TREE_CODE (arg0) == CONJ_EXPR)
8197 {
8198 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8199 tem = fold_build1_loc (loc, REALPART_EXPR, itype,
8200 TREE_OPERAND (arg0, 0));
8201 return fold_convert_loc (loc, type, tem);
8202 }
8203 if (TREE_CODE (arg0) == CALL_EXPR)
8204 {
8205 tree fn = get_callee_fndecl (arg0);
8206 if (fn && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
8207 switch (DECL_FUNCTION_CODE (fn))
8208 {
8209 CASE_FLT_FN (BUILT_IN_CEXPI):
8210 fn = mathfn_built_in (type, BUILT_IN_COS);
8211 if (fn)
8212 return build_call_expr_loc (loc, fn, 1, CALL_EXPR_ARG (arg0, 0));
8213 break;
8214
8215 default:
8216 break;
8217 }
8218 }
8219 return NULL_TREE;
8220
8221 case IMAGPART_EXPR:
8222 if (TREE_CODE (TREE_TYPE (arg0)) != COMPLEX_TYPE)
8223 return build_zero_cst (type);
8224 if (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8225 {
8226 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8227 tem = fold_build2_loc (loc, TREE_CODE (arg0), itype,
8228 fold_build1_loc (loc, IMAGPART_EXPR, itype,
8229 TREE_OPERAND (arg0, 0)),
8230 fold_build1_loc (loc, IMAGPART_EXPR, itype,
8231 TREE_OPERAND (arg0, 1)));
8232 return fold_convert_loc (loc, type, tem);
8233 }
8234 if (TREE_CODE (arg0) == CONJ_EXPR)
8235 {
8236 tree itype = TREE_TYPE (TREE_TYPE (arg0));
8237 tem = fold_build1_loc (loc, IMAGPART_EXPR, itype, TREE_OPERAND (arg0, 0));
8238 return fold_convert_loc (loc, type, negate_expr (tem));
8239 }
8240 if (TREE_CODE (arg0) == CALL_EXPR)
8241 {
8242 tree fn = get_callee_fndecl (arg0);
8243 if (fn && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
8244 switch (DECL_FUNCTION_CODE (fn))
8245 {
8246 CASE_FLT_FN (BUILT_IN_CEXPI):
8247 fn = mathfn_built_in (type, BUILT_IN_SIN);
8248 if (fn)
8249 return build_call_expr_loc (loc, fn, 1, CALL_EXPR_ARG (arg0, 0));
8250 break;
8251
8252 default:
8253 break;
8254 }
8255 }
8256 return NULL_TREE;
8257
8258 case INDIRECT_REF:
8259 /* Fold *&X to X if X is an lvalue. */
8260 if (TREE_CODE (op0) == ADDR_EXPR)
8261 {
8262 tree op00 = TREE_OPERAND (op0, 0);
8263 if ((TREE_CODE (op00) == VAR_DECL
8264 || TREE_CODE (op00) == PARM_DECL
8265 || TREE_CODE (op00) == RESULT_DECL)
8266 && !TREE_READONLY (op00))
8267 return op00;
8268 }
8269 return NULL_TREE;
8270
8271 default:
8272 return NULL_TREE;
8273 } /* switch (code) */
8274 }
8275
8276
8277 /* If the operation was a conversion do _not_ mark a resulting constant
8278 with TREE_OVERFLOW if the original constant was not. These conversions
8279 have implementation defined behavior and retaining the TREE_OVERFLOW
8280 flag here would confuse later passes such as VRP. */
8281 tree
8282 fold_unary_ignore_overflow_loc (location_t loc, enum tree_code code,
8283 tree type, tree op0)
8284 {
8285 tree res = fold_unary_loc (loc, code, type, op0);
8286 if (res
8287 && TREE_CODE (res) == INTEGER_CST
8288 && TREE_CODE (op0) == INTEGER_CST
8289 && CONVERT_EXPR_CODE_P (code))
8290 TREE_OVERFLOW (res) = TREE_OVERFLOW (op0);
8291
8292 return res;
8293 }
8294
8295 /* Fold a binary bitwise/truth expression of code CODE and type TYPE with
8296 operands OP0 and OP1. LOC is the location of the resulting expression.
8297 ARG0 and ARG1 are the NOP_STRIPed results of OP0 and OP1.
8298 Return the folded expression if folding is successful. Otherwise,
8299 return NULL_TREE. */
8300 static tree
8301 fold_truth_andor (location_t loc, enum tree_code code, tree type,
8302 tree arg0, tree arg1, tree op0, tree op1)
8303 {
8304 tree tem;
8305
8306 /* We only do these simplifications if we are optimizing. */
8307 if (!optimize)
8308 return NULL_TREE;
8309
8310 /* Check for things like (A || B) && (A || C). We can convert this
8311 to A || (B && C). Note that either operator can be any of the four
8312 truth and/or operations and the transformation will still be
8313 valid. Also note that we only care about order for the
8314 ANDIF and ORIF operators. If B contains side effects, this
8315 might change the truth-value of A. */
8316 if (TREE_CODE (arg0) == TREE_CODE (arg1)
8317 && (TREE_CODE (arg0) == TRUTH_ANDIF_EXPR
8318 || TREE_CODE (arg0) == TRUTH_ORIF_EXPR
8319 || TREE_CODE (arg0) == TRUTH_AND_EXPR
8320 || TREE_CODE (arg0) == TRUTH_OR_EXPR)
8321 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (arg0, 1)))
8322 {
8323 tree a00 = TREE_OPERAND (arg0, 0);
8324 tree a01 = TREE_OPERAND (arg0, 1);
8325 tree a10 = TREE_OPERAND (arg1, 0);
8326 tree a11 = TREE_OPERAND (arg1, 1);
8327 int commutative = ((TREE_CODE (arg0) == TRUTH_OR_EXPR
8328 || TREE_CODE (arg0) == TRUTH_AND_EXPR)
8329 && (code == TRUTH_AND_EXPR
8330 || code == TRUTH_OR_EXPR));
8331
8332 if (operand_equal_p (a00, a10, 0))
8333 return fold_build2_loc (loc, TREE_CODE (arg0), type, a00,
8334 fold_build2_loc (loc, code, type, a01, a11));
8335 else if (commutative && operand_equal_p (a00, a11, 0))
8336 return fold_build2_loc (loc, TREE_CODE (arg0), type, a00,
8337 fold_build2_loc (loc, code, type, a01, a10));
8338 else if (commutative && operand_equal_p (a01, a10, 0))
8339 return fold_build2_loc (loc, TREE_CODE (arg0), type, a01,
8340 fold_build2_loc (loc, code, type, a00, a11));
8341
8342 /* This case if tricky because we must either have commutative
8343 operators or else A10 must not have side-effects. */
8344
8345 else if ((commutative || ! TREE_SIDE_EFFECTS (a10))
8346 && operand_equal_p (a01, a11, 0))
8347 return fold_build2_loc (loc, TREE_CODE (arg0), type,
8348 fold_build2_loc (loc, code, type, a00, a10),
8349 a01);
8350 }
8351
8352 /* See if we can build a range comparison. */
8353 if (0 != (tem = fold_range_test (loc, code, type, op0, op1)))
8354 return tem;
8355
8356 if ((code == TRUTH_ANDIF_EXPR && TREE_CODE (arg0) == TRUTH_ORIF_EXPR)
8357 || (code == TRUTH_ORIF_EXPR && TREE_CODE (arg0) == TRUTH_ANDIF_EXPR))
8358 {
8359 tem = merge_truthop_with_opposite_arm (loc, arg0, arg1, true);
8360 if (tem)
8361 return fold_build2_loc (loc, code, type, tem, arg1);
8362 }
8363
8364 if ((code == TRUTH_ANDIF_EXPR && TREE_CODE (arg1) == TRUTH_ORIF_EXPR)
8365 || (code == TRUTH_ORIF_EXPR && TREE_CODE (arg1) == TRUTH_ANDIF_EXPR))
8366 {
8367 tem = merge_truthop_with_opposite_arm (loc, arg1, arg0, false);
8368 if (tem)
8369 return fold_build2_loc (loc, code, type, arg0, tem);
8370 }
8371
8372 /* Check for the possibility of merging component references. If our
8373 lhs is another similar operation, try to merge its rhs with our
8374 rhs. Then try to merge our lhs and rhs. */
8375 if (TREE_CODE (arg0) == code
8376 && 0 != (tem = fold_truth_andor_1 (loc, code, type,
8377 TREE_OPERAND (arg0, 1), arg1)))
8378 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0), tem);
8379
8380 if ((tem = fold_truth_andor_1 (loc, code, type, arg0, arg1)) != 0)
8381 return tem;
8382
8383 if (LOGICAL_OP_NON_SHORT_CIRCUIT
8384 && (code == TRUTH_AND_EXPR
8385 || code == TRUTH_ANDIF_EXPR
8386 || code == TRUTH_OR_EXPR
8387 || code == TRUTH_ORIF_EXPR))
8388 {
8389 enum tree_code ncode, icode;
8390
8391 ncode = (code == TRUTH_ANDIF_EXPR || code == TRUTH_AND_EXPR)
8392 ? TRUTH_AND_EXPR : TRUTH_OR_EXPR;
8393 icode = ncode == TRUTH_AND_EXPR ? TRUTH_ANDIF_EXPR : TRUTH_ORIF_EXPR;
8394
8395 /* Transform ((A AND-IF B) AND[-IF] C) into (A AND-IF (B AND C)),
8396 or ((A OR-IF B) OR[-IF] C) into (A OR-IF (B OR C))
8397 We don't want to pack more than two leafs to a non-IF AND/OR
8398 expression.
8399 If tree-code of left-hand operand isn't an AND/OR-IF code and not
8400 equal to IF-CODE, then we don't want to add right-hand operand.
8401 If the inner right-hand side of left-hand operand has
8402 side-effects, or isn't simple, then we can't add to it,
8403 as otherwise we might destroy if-sequence. */
8404 if (TREE_CODE (arg0) == icode
8405 && simple_operand_p_2 (arg1)
8406 /* Needed for sequence points to handle trappings, and
8407 side-effects. */
8408 && simple_operand_p_2 (TREE_OPERAND (arg0, 1)))
8409 {
8410 tem = fold_build2_loc (loc, ncode, type, TREE_OPERAND (arg0, 1),
8411 arg1);
8412 return fold_build2_loc (loc, icode, type, TREE_OPERAND (arg0, 0),
8413 tem);
8414 }
8415 /* Same as abouve but for (A AND[-IF] (B AND-IF C)) -> ((A AND B) AND-IF C),
8416 or (A OR[-IF] (B OR-IF C) -> ((A OR B) OR-IF C). */
8417 else if (TREE_CODE (arg1) == icode
8418 && simple_operand_p_2 (arg0)
8419 /* Needed for sequence points to handle trappings, and
8420 side-effects. */
8421 && simple_operand_p_2 (TREE_OPERAND (arg1, 0)))
8422 {
8423 tem = fold_build2_loc (loc, ncode, type,
8424 arg0, TREE_OPERAND (arg1, 0));
8425 return fold_build2_loc (loc, icode, type, tem,
8426 TREE_OPERAND (arg1, 1));
8427 }
8428 /* Transform (A AND-IF B) into (A AND B), or (A OR-IF B)
8429 into (A OR B).
8430 For sequence point consistancy, we need to check for trapping,
8431 and side-effects. */
8432 else if (code == icode && simple_operand_p_2 (arg0)
8433 && simple_operand_p_2 (arg1))
8434 return fold_build2_loc (loc, ncode, type, arg0, arg1);
8435 }
8436
8437 return NULL_TREE;
8438 }
8439
8440 /* Fold a binary expression of code CODE and type TYPE with operands
8441 OP0 and OP1, containing either a MIN-MAX or a MAX-MIN combination.
8442 Return the folded expression if folding is successful. Otherwise,
8443 return NULL_TREE. */
8444
8445 static tree
8446 fold_minmax (location_t loc, enum tree_code code, tree type, tree op0, tree op1)
8447 {
8448 enum tree_code compl_code;
8449
8450 if (code == MIN_EXPR)
8451 compl_code = MAX_EXPR;
8452 else if (code == MAX_EXPR)
8453 compl_code = MIN_EXPR;
8454 else
8455 gcc_unreachable ();
8456
8457 /* MIN (MAX (a, b), b) == b. */
8458 if (TREE_CODE (op0) == compl_code
8459 && operand_equal_p (TREE_OPERAND (op0, 1), op1, 0))
8460 return omit_one_operand_loc (loc, type, op1, TREE_OPERAND (op0, 0));
8461
8462 /* MIN (MAX (b, a), b) == b. */
8463 if (TREE_CODE (op0) == compl_code
8464 && operand_equal_p (TREE_OPERAND (op0, 0), op1, 0)
8465 && reorder_operands_p (TREE_OPERAND (op0, 1), op1))
8466 return omit_one_operand_loc (loc, type, op1, TREE_OPERAND (op0, 1));
8467
8468 /* MIN (a, MAX (a, b)) == a. */
8469 if (TREE_CODE (op1) == compl_code
8470 && operand_equal_p (op0, TREE_OPERAND (op1, 0), 0)
8471 && reorder_operands_p (op0, TREE_OPERAND (op1, 1)))
8472 return omit_one_operand_loc (loc, type, op0, TREE_OPERAND (op1, 1));
8473
8474 /* MIN (a, MAX (b, a)) == a. */
8475 if (TREE_CODE (op1) == compl_code
8476 && operand_equal_p (op0, TREE_OPERAND (op1, 1), 0)
8477 && reorder_operands_p (op0, TREE_OPERAND (op1, 0)))
8478 return omit_one_operand_loc (loc, type, op0, TREE_OPERAND (op1, 0));
8479
8480 return NULL_TREE;
8481 }
8482
8483 /* Helper that tries to canonicalize the comparison ARG0 CODE ARG1
8484 by changing CODE to reduce the magnitude of constants involved in
8485 ARG0 of the comparison.
8486 Returns a canonicalized comparison tree if a simplification was
8487 possible, otherwise returns NULL_TREE.
8488 Set *STRICT_OVERFLOW_P to true if the canonicalization is only
8489 valid if signed overflow is undefined. */
8490
8491 static tree
8492 maybe_canonicalize_comparison_1 (location_t loc, enum tree_code code, tree type,
8493 tree arg0, tree arg1,
8494 bool *strict_overflow_p)
8495 {
8496 enum tree_code code0 = TREE_CODE (arg0);
8497 tree t, cst0 = NULL_TREE;
8498 int sgn0;
8499 bool swap = false;
8500
8501 /* Match A +- CST code arg1 and CST code arg1. We can change the
8502 first form only if overflow is undefined. */
8503 if (!(((ANY_INTEGRAL_TYPE_P (TREE_TYPE (arg0))
8504 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0)))
8505 /* In principle pointers also have undefined overflow behavior,
8506 but that causes problems elsewhere. */
8507 && !POINTER_TYPE_P (TREE_TYPE (arg0))
8508 && (code0 == MINUS_EXPR
8509 || code0 == PLUS_EXPR)
8510 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
8511 || code0 == INTEGER_CST))
8512 return NULL_TREE;
8513
8514 /* Identify the constant in arg0 and its sign. */
8515 if (code0 == INTEGER_CST)
8516 cst0 = arg0;
8517 else
8518 cst0 = TREE_OPERAND (arg0, 1);
8519 sgn0 = tree_int_cst_sgn (cst0);
8520
8521 /* Overflowed constants and zero will cause problems. */
8522 if (integer_zerop (cst0)
8523 || TREE_OVERFLOW (cst0))
8524 return NULL_TREE;
8525
8526 /* See if we can reduce the magnitude of the constant in
8527 arg0 by changing the comparison code. */
8528 if (code0 == INTEGER_CST)
8529 {
8530 /* CST <= arg1 -> CST-1 < arg1. */
8531 if (code == LE_EXPR && sgn0 == 1)
8532 code = LT_EXPR;
8533 /* -CST < arg1 -> -CST-1 <= arg1. */
8534 else if (code == LT_EXPR && sgn0 == -1)
8535 code = LE_EXPR;
8536 /* CST > arg1 -> CST-1 >= arg1. */
8537 else if (code == GT_EXPR && sgn0 == 1)
8538 code = GE_EXPR;
8539 /* -CST >= arg1 -> -CST-1 > arg1. */
8540 else if (code == GE_EXPR && sgn0 == -1)
8541 code = GT_EXPR;
8542 else
8543 return NULL_TREE;
8544 /* arg1 code' CST' might be more canonical. */
8545 swap = true;
8546 }
8547 else
8548 {
8549 /* A - CST < arg1 -> A - CST-1 <= arg1. */
8550 if (code == LT_EXPR
8551 && code0 == ((sgn0 == -1) ? PLUS_EXPR : MINUS_EXPR))
8552 code = LE_EXPR;
8553 /* A + CST > arg1 -> A + CST-1 >= arg1. */
8554 else if (code == GT_EXPR
8555 && code0 == ((sgn0 == -1) ? MINUS_EXPR : PLUS_EXPR))
8556 code = GE_EXPR;
8557 /* A + CST <= arg1 -> A + CST-1 < arg1. */
8558 else if (code == LE_EXPR
8559 && code0 == ((sgn0 == -1) ? MINUS_EXPR : PLUS_EXPR))
8560 code = LT_EXPR;
8561 /* A - CST >= arg1 -> A - CST-1 > arg1. */
8562 else if (code == GE_EXPR
8563 && code0 == ((sgn0 == -1) ? PLUS_EXPR : MINUS_EXPR))
8564 code = GT_EXPR;
8565 else
8566 return NULL_TREE;
8567 *strict_overflow_p = true;
8568 }
8569
8570 /* Now build the constant reduced in magnitude. But not if that
8571 would produce one outside of its types range. */
8572 if (INTEGRAL_TYPE_P (TREE_TYPE (cst0))
8573 && ((sgn0 == 1
8574 && TYPE_MIN_VALUE (TREE_TYPE (cst0))
8575 && tree_int_cst_equal (cst0, TYPE_MIN_VALUE (TREE_TYPE (cst0))))
8576 || (sgn0 == -1
8577 && TYPE_MAX_VALUE (TREE_TYPE (cst0))
8578 && tree_int_cst_equal (cst0, TYPE_MAX_VALUE (TREE_TYPE (cst0))))))
8579 /* We cannot swap the comparison here as that would cause us to
8580 endlessly recurse. */
8581 return NULL_TREE;
8582
8583 t = int_const_binop (sgn0 == -1 ? PLUS_EXPR : MINUS_EXPR,
8584 cst0, build_int_cst (TREE_TYPE (cst0), 1));
8585 if (code0 != INTEGER_CST)
8586 t = fold_build2_loc (loc, code0, TREE_TYPE (arg0), TREE_OPERAND (arg0, 0), t);
8587 t = fold_convert (TREE_TYPE (arg1), t);
8588
8589 /* If swapping might yield to a more canonical form, do so. */
8590 if (swap)
8591 return fold_build2_loc (loc, swap_tree_comparison (code), type, arg1, t);
8592 else
8593 return fold_build2_loc (loc, code, type, t, arg1);
8594 }
8595
8596 /* Canonicalize the comparison ARG0 CODE ARG1 with type TYPE with undefined
8597 overflow further. Try to decrease the magnitude of constants involved
8598 by changing LE_EXPR and GE_EXPR to LT_EXPR and GT_EXPR or vice versa
8599 and put sole constants at the second argument position.
8600 Returns the canonicalized tree if changed, otherwise NULL_TREE. */
8601
8602 static tree
8603 maybe_canonicalize_comparison (location_t loc, enum tree_code code, tree type,
8604 tree arg0, tree arg1)
8605 {
8606 tree t;
8607 bool strict_overflow_p;
8608 const char * const warnmsg = G_("assuming signed overflow does not occur "
8609 "when reducing constant in comparison");
8610
8611 /* Try canonicalization by simplifying arg0. */
8612 strict_overflow_p = false;
8613 t = maybe_canonicalize_comparison_1 (loc, code, type, arg0, arg1,
8614 &strict_overflow_p);
8615 if (t)
8616 {
8617 if (strict_overflow_p)
8618 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MAGNITUDE);
8619 return t;
8620 }
8621
8622 /* Try canonicalization by simplifying arg1 using the swapped
8623 comparison. */
8624 code = swap_tree_comparison (code);
8625 strict_overflow_p = false;
8626 t = maybe_canonicalize_comparison_1 (loc, code, type, arg1, arg0,
8627 &strict_overflow_p);
8628 if (t && strict_overflow_p)
8629 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_MAGNITUDE);
8630 return t;
8631 }
8632
8633 /* Return whether BASE + OFFSET + BITPOS may wrap around the address
8634 space. This is used to avoid issuing overflow warnings for
8635 expressions like &p->x which can not wrap. */
8636
8637 static bool
8638 pointer_may_wrap_p (tree base, tree offset, HOST_WIDE_INT bitpos)
8639 {
8640 if (!POINTER_TYPE_P (TREE_TYPE (base)))
8641 return true;
8642
8643 if (bitpos < 0)
8644 return true;
8645
8646 wide_int wi_offset;
8647 int precision = TYPE_PRECISION (TREE_TYPE (base));
8648 if (offset == NULL_TREE)
8649 wi_offset = wi::zero (precision);
8650 else if (TREE_CODE (offset) != INTEGER_CST || TREE_OVERFLOW (offset))
8651 return true;
8652 else
8653 wi_offset = offset;
8654
8655 bool overflow;
8656 wide_int units = wi::shwi (bitpos / BITS_PER_UNIT, precision);
8657 wide_int total = wi::add (wi_offset, units, UNSIGNED, &overflow);
8658 if (overflow)
8659 return true;
8660
8661 if (!wi::fits_uhwi_p (total))
8662 return true;
8663
8664 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (TREE_TYPE (base)));
8665 if (size <= 0)
8666 return true;
8667
8668 /* We can do slightly better for SIZE if we have an ADDR_EXPR of an
8669 array. */
8670 if (TREE_CODE (base) == ADDR_EXPR)
8671 {
8672 HOST_WIDE_INT base_size;
8673
8674 base_size = int_size_in_bytes (TREE_TYPE (TREE_OPERAND (base, 0)));
8675 if (base_size > 0 && size < base_size)
8676 size = base_size;
8677 }
8678
8679 return total.to_uhwi () > (unsigned HOST_WIDE_INT) size;
8680 }
8681
8682 /* Return the HOST_WIDE_INT least significant bits of T, a sizetype
8683 kind INTEGER_CST. This makes sure to properly sign-extend the
8684 constant. */
8685
8686 static HOST_WIDE_INT
8687 size_low_cst (const_tree t)
8688 {
8689 HOST_WIDE_INT w = TREE_INT_CST_ELT (t, 0);
8690 int prec = TYPE_PRECISION (TREE_TYPE (t));
8691 if (prec < HOST_BITS_PER_WIDE_INT)
8692 return sext_hwi (w, prec);
8693 return w;
8694 }
8695
8696 /* Subroutine of fold_binary. This routine performs all of the
8697 transformations that are common to the equality/inequality
8698 operators (EQ_EXPR and NE_EXPR) and the ordering operators
8699 (LT_EXPR, LE_EXPR, GE_EXPR and GT_EXPR). Callers other than
8700 fold_binary should call fold_binary. Fold a comparison with
8701 tree code CODE and type TYPE with operands OP0 and OP1. Return
8702 the folded comparison or NULL_TREE. */
8703
8704 static tree
8705 fold_comparison (location_t loc, enum tree_code code, tree type,
8706 tree op0, tree op1)
8707 {
8708 const bool equality_code = (code == EQ_EXPR || code == NE_EXPR);
8709 tree arg0, arg1, tem;
8710
8711 arg0 = op0;
8712 arg1 = op1;
8713
8714 STRIP_SIGN_NOPS (arg0);
8715 STRIP_SIGN_NOPS (arg1);
8716
8717 /* Transform comparisons of the form X +- C1 CMP C2 to X CMP C2 -+ C1. */
8718 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
8719 && (equality_code
8720 || (ANY_INTEGRAL_TYPE_P (TREE_TYPE (arg0))
8721 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))))
8722 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
8723 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
8724 && TREE_CODE (arg1) == INTEGER_CST
8725 && !TREE_OVERFLOW (arg1))
8726 {
8727 const enum tree_code
8728 reverse_op = TREE_CODE (arg0) == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR;
8729 tree const1 = TREE_OPERAND (arg0, 1);
8730 tree const2 = fold_convert_loc (loc, TREE_TYPE (const1), arg1);
8731 tree variable = TREE_OPERAND (arg0, 0);
8732 tree new_const = int_const_binop (reverse_op, const2, const1);
8733
8734 /* If the constant operation overflowed this can be
8735 simplified as a comparison against INT_MAX/INT_MIN. */
8736 if (TREE_OVERFLOW (new_const)
8737 && !TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg0)))
8738 {
8739 int const1_sgn = tree_int_cst_sgn (const1);
8740 enum tree_code code2 = code;
8741
8742 /* Get the sign of the constant on the lhs if the
8743 operation were VARIABLE + CONST1. */
8744 if (TREE_CODE (arg0) == MINUS_EXPR)
8745 const1_sgn = -const1_sgn;
8746
8747 /* The sign of the constant determines if we overflowed
8748 INT_MAX (const1_sgn == -1) or INT_MIN (const1_sgn == 1).
8749 Canonicalize to the INT_MIN overflow by swapping the comparison
8750 if necessary. */
8751 if (const1_sgn == -1)
8752 code2 = swap_tree_comparison (code);
8753
8754 /* We now can look at the canonicalized case
8755 VARIABLE + 1 CODE2 INT_MIN
8756 and decide on the result. */
8757 switch (code2)
8758 {
8759 case EQ_EXPR:
8760 case LT_EXPR:
8761 case LE_EXPR:
8762 return
8763 omit_one_operand_loc (loc, type, boolean_false_node, variable);
8764
8765 case NE_EXPR:
8766 case GE_EXPR:
8767 case GT_EXPR:
8768 return
8769 omit_one_operand_loc (loc, type, boolean_true_node, variable);
8770
8771 default:
8772 gcc_unreachable ();
8773 }
8774 }
8775 else
8776 {
8777 if (!equality_code)
8778 fold_overflow_warning ("assuming signed overflow does not occur "
8779 "when changing X +- C1 cmp C2 to "
8780 "X cmp C2 -+ C1",
8781 WARN_STRICT_OVERFLOW_COMPARISON);
8782 return fold_build2_loc (loc, code, type, variable, new_const);
8783 }
8784 }
8785
8786 /* Transform comparisons of the form X - Y CMP 0 to X CMP Y. */
8787 if (TREE_CODE (arg0) == MINUS_EXPR
8788 && equality_code
8789 && integer_zerop (arg1))
8790 {
8791 /* ??? The transformation is valid for the other operators if overflow
8792 is undefined for the type, but performing it here badly interacts
8793 with the transformation in fold_cond_expr_with_comparison which
8794 attempts to synthetize ABS_EXPR. */
8795 if (!equality_code)
8796 fold_overflow_warning ("assuming signed overflow does not occur "
8797 "when changing X - Y cmp 0 to X cmp Y",
8798 WARN_STRICT_OVERFLOW_COMPARISON);
8799 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0),
8800 TREE_OPERAND (arg0, 1));
8801 }
8802
8803 /* For comparisons of pointers we can decompose it to a compile time
8804 comparison of the base objects and the offsets into the object.
8805 This requires at least one operand being an ADDR_EXPR or a
8806 POINTER_PLUS_EXPR to do more than the operand_equal_p test below. */
8807 if (POINTER_TYPE_P (TREE_TYPE (arg0))
8808 && (TREE_CODE (arg0) == ADDR_EXPR
8809 || TREE_CODE (arg1) == ADDR_EXPR
8810 || TREE_CODE (arg0) == POINTER_PLUS_EXPR
8811 || TREE_CODE (arg1) == POINTER_PLUS_EXPR))
8812 {
8813 tree base0, base1, offset0 = NULL_TREE, offset1 = NULL_TREE;
8814 HOST_WIDE_INT bitsize, bitpos0 = 0, bitpos1 = 0;
8815 machine_mode mode;
8816 int volatilep, unsignedp;
8817 bool indirect_base0 = false, indirect_base1 = false;
8818
8819 /* Get base and offset for the access. Strip ADDR_EXPR for
8820 get_inner_reference, but put it back by stripping INDIRECT_REF
8821 off the base object if possible. indirect_baseN will be true
8822 if baseN is not an address but refers to the object itself. */
8823 base0 = arg0;
8824 if (TREE_CODE (arg0) == ADDR_EXPR)
8825 {
8826 base0 = get_inner_reference (TREE_OPERAND (arg0, 0),
8827 &bitsize, &bitpos0, &offset0, &mode,
8828 &unsignedp, &volatilep, false);
8829 if (TREE_CODE (base0) == INDIRECT_REF)
8830 base0 = TREE_OPERAND (base0, 0);
8831 else
8832 indirect_base0 = true;
8833 }
8834 else if (TREE_CODE (arg0) == POINTER_PLUS_EXPR)
8835 {
8836 base0 = TREE_OPERAND (arg0, 0);
8837 STRIP_SIGN_NOPS (base0);
8838 if (TREE_CODE (base0) == ADDR_EXPR)
8839 {
8840 base0 = TREE_OPERAND (base0, 0);
8841 indirect_base0 = true;
8842 }
8843 offset0 = TREE_OPERAND (arg0, 1);
8844 if (tree_fits_shwi_p (offset0))
8845 {
8846 HOST_WIDE_INT off = size_low_cst (offset0);
8847 if ((HOST_WIDE_INT) (((unsigned HOST_WIDE_INT) off)
8848 * BITS_PER_UNIT)
8849 / BITS_PER_UNIT == (HOST_WIDE_INT) off)
8850 {
8851 bitpos0 = off * BITS_PER_UNIT;
8852 offset0 = NULL_TREE;
8853 }
8854 }
8855 }
8856
8857 base1 = arg1;
8858 if (TREE_CODE (arg1) == ADDR_EXPR)
8859 {
8860 base1 = get_inner_reference (TREE_OPERAND (arg1, 0),
8861 &bitsize, &bitpos1, &offset1, &mode,
8862 &unsignedp, &volatilep, false);
8863 if (TREE_CODE (base1) == INDIRECT_REF)
8864 base1 = TREE_OPERAND (base1, 0);
8865 else
8866 indirect_base1 = true;
8867 }
8868 else if (TREE_CODE (arg1) == POINTER_PLUS_EXPR)
8869 {
8870 base1 = TREE_OPERAND (arg1, 0);
8871 STRIP_SIGN_NOPS (base1);
8872 if (TREE_CODE (base1) == ADDR_EXPR)
8873 {
8874 base1 = TREE_OPERAND (base1, 0);
8875 indirect_base1 = true;
8876 }
8877 offset1 = TREE_OPERAND (arg1, 1);
8878 if (tree_fits_shwi_p (offset1))
8879 {
8880 HOST_WIDE_INT off = size_low_cst (offset1);
8881 if ((HOST_WIDE_INT) (((unsigned HOST_WIDE_INT) off)
8882 * BITS_PER_UNIT)
8883 / BITS_PER_UNIT == (HOST_WIDE_INT) off)
8884 {
8885 bitpos1 = off * BITS_PER_UNIT;
8886 offset1 = NULL_TREE;
8887 }
8888 }
8889 }
8890
8891 /* A local variable can never be pointed to by
8892 the default SSA name of an incoming parameter. */
8893 if ((TREE_CODE (arg0) == ADDR_EXPR
8894 && indirect_base0
8895 && TREE_CODE (base0) == VAR_DECL
8896 && auto_var_in_fn_p (base0, current_function_decl)
8897 && !indirect_base1
8898 && TREE_CODE (base1) == SSA_NAME
8899 && SSA_NAME_IS_DEFAULT_DEF (base1)
8900 && TREE_CODE (SSA_NAME_VAR (base1)) == PARM_DECL)
8901 || (TREE_CODE (arg1) == ADDR_EXPR
8902 && indirect_base1
8903 && TREE_CODE (base1) == VAR_DECL
8904 && auto_var_in_fn_p (base1, current_function_decl)
8905 && !indirect_base0
8906 && TREE_CODE (base0) == SSA_NAME
8907 && SSA_NAME_IS_DEFAULT_DEF (base0)
8908 && TREE_CODE (SSA_NAME_VAR (base0)) == PARM_DECL))
8909 {
8910 if (code == NE_EXPR)
8911 return constant_boolean_node (1, type);
8912 else if (code == EQ_EXPR)
8913 return constant_boolean_node (0, type);
8914 }
8915 /* If we have equivalent bases we might be able to simplify. */
8916 else if (indirect_base0 == indirect_base1
8917 && operand_equal_p (base0, base1, 0))
8918 {
8919 /* We can fold this expression to a constant if the non-constant
8920 offset parts are equal. */
8921 if ((offset0 == offset1
8922 || (offset0 && offset1
8923 && operand_equal_p (offset0, offset1, 0)))
8924 && (code == EQ_EXPR
8925 || code == NE_EXPR
8926 || (indirect_base0 && DECL_P (base0))
8927 || POINTER_TYPE_OVERFLOW_UNDEFINED))
8928
8929 {
8930 if (!equality_code
8931 && bitpos0 != bitpos1
8932 && (pointer_may_wrap_p (base0, offset0, bitpos0)
8933 || pointer_may_wrap_p (base1, offset1, bitpos1)))
8934 fold_overflow_warning (("assuming pointer wraparound does not "
8935 "occur when comparing P +- C1 with "
8936 "P +- C2"),
8937 WARN_STRICT_OVERFLOW_CONDITIONAL);
8938
8939 switch (code)
8940 {
8941 case EQ_EXPR:
8942 return constant_boolean_node (bitpos0 == bitpos1, type);
8943 case NE_EXPR:
8944 return constant_boolean_node (bitpos0 != bitpos1, type);
8945 case LT_EXPR:
8946 return constant_boolean_node (bitpos0 < bitpos1, type);
8947 case LE_EXPR:
8948 return constant_boolean_node (bitpos0 <= bitpos1, type);
8949 case GE_EXPR:
8950 return constant_boolean_node (bitpos0 >= bitpos1, type);
8951 case GT_EXPR:
8952 return constant_boolean_node (bitpos0 > bitpos1, type);
8953 default:;
8954 }
8955 }
8956 /* We can simplify the comparison to a comparison of the variable
8957 offset parts if the constant offset parts are equal.
8958 Be careful to use signed sizetype here because otherwise we
8959 mess with array offsets in the wrong way. This is possible
8960 because pointer arithmetic is restricted to retain within an
8961 object and overflow on pointer differences is undefined as of
8962 6.5.6/8 and /9 with respect to the signed ptrdiff_t. */
8963 else if (bitpos0 == bitpos1
8964 && (equality_code
8965 || (indirect_base0 && DECL_P (base0))
8966 || POINTER_TYPE_OVERFLOW_UNDEFINED))
8967 {
8968 /* By converting to signed sizetype we cover middle-end pointer
8969 arithmetic which operates on unsigned pointer types of size
8970 type size and ARRAY_REF offsets which are properly sign or
8971 zero extended from their type in case it is narrower than
8972 sizetype. */
8973 if (offset0 == NULL_TREE)
8974 offset0 = build_int_cst (ssizetype, 0);
8975 else
8976 offset0 = fold_convert_loc (loc, ssizetype, offset0);
8977 if (offset1 == NULL_TREE)
8978 offset1 = build_int_cst (ssizetype, 0);
8979 else
8980 offset1 = fold_convert_loc (loc, ssizetype, offset1);
8981
8982 if (!equality_code
8983 && (pointer_may_wrap_p (base0, offset0, bitpos0)
8984 || pointer_may_wrap_p (base1, offset1, bitpos1)))
8985 fold_overflow_warning (("assuming pointer wraparound does not "
8986 "occur when comparing P +- C1 with "
8987 "P +- C2"),
8988 WARN_STRICT_OVERFLOW_COMPARISON);
8989
8990 return fold_build2_loc (loc, code, type, offset0, offset1);
8991 }
8992 }
8993 /* For non-equal bases we can simplify if they are addresses
8994 declarations with different addresses. */
8995 else if (indirect_base0 && indirect_base1
8996 /* We know that !operand_equal_p (base0, base1, 0)
8997 because the if condition was false. But make
8998 sure two decls are not the same. */
8999 && base0 != base1
9000 && TREE_CODE (arg0) == ADDR_EXPR
9001 && TREE_CODE (arg1) == ADDR_EXPR
9002 && DECL_P (base0)
9003 && DECL_P (base1)
9004 /* Watch for aliases. */
9005 && (!decl_in_symtab_p (base0)
9006 || !decl_in_symtab_p (base1)
9007 || !symtab_node::get_create (base0)->equal_address_to
9008 (symtab_node::get_create (base1))))
9009 {
9010 if (code == EQ_EXPR)
9011 return omit_two_operands_loc (loc, type, boolean_false_node,
9012 arg0, arg1);
9013 else if (code == NE_EXPR)
9014 return omit_two_operands_loc (loc, type, boolean_true_node,
9015 arg0, arg1);
9016 }
9017 /* For equal offsets we can simplify to a comparison of the
9018 base addresses. */
9019 else if (bitpos0 == bitpos1
9020 && (indirect_base0
9021 ? base0 != TREE_OPERAND (arg0, 0) : base0 != arg0)
9022 && (indirect_base1
9023 ? base1 != TREE_OPERAND (arg1, 0) : base1 != arg1)
9024 && ((offset0 == offset1)
9025 || (offset0 && offset1
9026 && operand_equal_p (offset0, offset1, 0))))
9027 {
9028 if (indirect_base0)
9029 base0 = build_fold_addr_expr_loc (loc, base0);
9030 if (indirect_base1)
9031 base1 = build_fold_addr_expr_loc (loc, base1);
9032 return fold_build2_loc (loc, code, type, base0, base1);
9033 }
9034 }
9035
9036 /* Transform comparisons of the form X +- C1 CMP Y +- C2 to
9037 X CMP Y +- C2 +- C1 for signed X, Y. This is valid if
9038 the resulting offset is smaller in absolute value than the
9039 original one and has the same sign. */
9040 if (ANY_INTEGRAL_TYPE_P (TREE_TYPE (arg0))
9041 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))
9042 && (TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
9043 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
9044 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1)))
9045 && (TREE_CODE (arg1) == PLUS_EXPR || TREE_CODE (arg1) == MINUS_EXPR)
9046 && (TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
9047 && !TREE_OVERFLOW (TREE_OPERAND (arg1, 1))))
9048 {
9049 tree const1 = TREE_OPERAND (arg0, 1);
9050 tree const2 = TREE_OPERAND (arg1, 1);
9051 tree variable1 = TREE_OPERAND (arg0, 0);
9052 tree variable2 = TREE_OPERAND (arg1, 0);
9053 tree cst;
9054 const char * const warnmsg = G_("assuming signed overflow does not "
9055 "occur when combining constants around "
9056 "a comparison");
9057
9058 /* Put the constant on the side where it doesn't overflow and is
9059 of lower absolute value and of same sign than before. */
9060 cst = int_const_binop (TREE_CODE (arg0) == TREE_CODE (arg1)
9061 ? MINUS_EXPR : PLUS_EXPR,
9062 const2, const1);
9063 if (!TREE_OVERFLOW (cst)
9064 && tree_int_cst_compare (const2, cst) == tree_int_cst_sgn (const2)
9065 && tree_int_cst_sgn (cst) == tree_int_cst_sgn (const2))
9066 {
9067 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
9068 return fold_build2_loc (loc, code, type,
9069 variable1,
9070 fold_build2_loc (loc, TREE_CODE (arg1),
9071 TREE_TYPE (arg1),
9072 variable2, cst));
9073 }
9074
9075 cst = int_const_binop (TREE_CODE (arg0) == TREE_CODE (arg1)
9076 ? MINUS_EXPR : PLUS_EXPR,
9077 const1, const2);
9078 if (!TREE_OVERFLOW (cst)
9079 && tree_int_cst_compare (const1, cst) == tree_int_cst_sgn (const1)
9080 && tree_int_cst_sgn (cst) == tree_int_cst_sgn (const1))
9081 {
9082 fold_overflow_warning (warnmsg, WARN_STRICT_OVERFLOW_COMPARISON);
9083 return fold_build2_loc (loc, code, type,
9084 fold_build2_loc (loc, TREE_CODE (arg0),
9085 TREE_TYPE (arg0),
9086 variable1, cst),
9087 variable2);
9088 }
9089 }
9090
9091 /* Transform comparisons of the form X * C1 CMP 0 to X CMP 0 in the
9092 signed arithmetic case. That form is created by the compiler
9093 often enough for folding it to be of value. One example is in
9094 computing loop trip counts after Operator Strength Reduction. */
9095 if (ANY_INTEGRAL_TYPE_P (TREE_TYPE (arg0))
9096 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg0))
9097 && TREE_CODE (arg0) == MULT_EXPR
9098 && (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
9099 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1)))
9100 && integer_zerop (arg1))
9101 {
9102 tree const1 = TREE_OPERAND (arg0, 1);
9103 tree const2 = arg1; /* zero */
9104 tree variable1 = TREE_OPERAND (arg0, 0);
9105 enum tree_code cmp_code = code;
9106
9107 /* Handle unfolded multiplication by zero. */
9108 if (integer_zerop (const1))
9109 return fold_build2_loc (loc, cmp_code, type, const1, const2);
9110
9111 fold_overflow_warning (("assuming signed overflow does not occur when "
9112 "eliminating multiplication in comparison "
9113 "with zero"),
9114 WARN_STRICT_OVERFLOW_COMPARISON);
9115
9116 /* If const1 is negative we swap the sense of the comparison. */
9117 if (tree_int_cst_sgn (const1) < 0)
9118 cmp_code = swap_tree_comparison (cmp_code);
9119
9120 return fold_build2_loc (loc, cmp_code, type, variable1, const2);
9121 }
9122
9123 tem = maybe_canonicalize_comparison (loc, code, type, arg0, arg1);
9124 if (tem)
9125 return tem;
9126
9127 if (FLOAT_TYPE_P (TREE_TYPE (arg0)))
9128 {
9129 tree targ0 = strip_float_extensions (arg0);
9130 tree targ1 = strip_float_extensions (arg1);
9131 tree newtype = TREE_TYPE (targ0);
9132
9133 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
9134 newtype = TREE_TYPE (targ1);
9135
9136 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
9137 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
9138 return fold_build2_loc (loc, code, type,
9139 fold_convert_loc (loc, newtype, targ0),
9140 fold_convert_loc (loc, newtype, targ1));
9141
9142 if (TREE_CODE (arg1) == REAL_CST)
9143 {
9144 REAL_VALUE_TYPE cst;
9145 cst = TREE_REAL_CST (arg1);
9146
9147 /* IEEE doesn't distinguish +0 and -0 in comparisons. */
9148 /* a CMP (-0) -> a CMP 0 */
9149 if (REAL_VALUE_MINUS_ZERO (cst))
9150 return fold_build2_loc (loc, code, type, arg0,
9151 build_real (TREE_TYPE (arg1), dconst0));
9152
9153 /* x != NaN is always true, other ops are always false. */
9154 if (REAL_VALUE_ISNAN (cst)
9155 && ! HONOR_SNANS (arg1))
9156 {
9157 tem = (code == NE_EXPR) ? integer_one_node : integer_zero_node;
9158 return omit_one_operand_loc (loc, type, tem, arg0);
9159 }
9160
9161 /* Fold comparisons against infinity. */
9162 if (REAL_VALUE_ISINF (cst)
9163 && MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1))))
9164 {
9165 tem = fold_inf_compare (loc, code, type, arg0, arg1);
9166 if (tem != NULL_TREE)
9167 return tem;
9168 }
9169 }
9170
9171 /* If this is a comparison of a real constant with a PLUS_EXPR
9172 or a MINUS_EXPR of a real constant, we can convert it into a
9173 comparison with a revised real constant as long as no overflow
9174 occurs when unsafe_math_optimizations are enabled. */
9175 if (flag_unsafe_math_optimizations
9176 && TREE_CODE (arg1) == REAL_CST
9177 && (TREE_CODE (arg0) == PLUS_EXPR
9178 || TREE_CODE (arg0) == MINUS_EXPR)
9179 && TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
9180 && 0 != (tem = const_binop (TREE_CODE (arg0) == PLUS_EXPR
9181 ? MINUS_EXPR : PLUS_EXPR,
9182 arg1, TREE_OPERAND (arg0, 1)))
9183 && !TREE_OVERFLOW (tem))
9184 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0), tem);
9185
9186 /* Likewise, we can simplify a comparison of a real constant with
9187 a MINUS_EXPR whose first operand is also a real constant, i.e.
9188 (c1 - x) < c2 becomes x > c1-c2. Reordering is allowed on
9189 floating-point types only if -fassociative-math is set. */
9190 if (flag_associative_math
9191 && TREE_CODE (arg1) == REAL_CST
9192 && TREE_CODE (arg0) == MINUS_EXPR
9193 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST
9194 && 0 != (tem = const_binop (MINUS_EXPR, TREE_OPERAND (arg0, 0),
9195 arg1))
9196 && !TREE_OVERFLOW (tem))
9197 return fold_build2_loc (loc, swap_tree_comparison (code), type,
9198 TREE_OPERAND (arg0, 1), tem);
9199
9200 /* Fold comparisons against built-in math functions. */
9201 if (TREE_CODE (arg1) == REAL_CST
9202 && flag_unsafe_math_optimizations
9203 && ! flag_errno_math)
9204 {
9205 enum built_in_function fcode = builtin_mathfn_code (arg0);
9206
9207 if (fcode != END_BUILTINS)
9208 {
9209 tem = fold_mathfn_compare (loc, fcode, code, type, arg0, arg1);
9210 if (tem != NULL_TREE)
9211 return tem;
9212 }
9213 }
9214 }
9215
9216 if (TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE
9217 && CONVERT_EXPR_P (arg0))
9218 {
9219 /* If we are widening one operand of an integer comparison,
9220 see if the other operand is similarly being widened. Perhaps we
9221 can do the comparison in the narrower type. */
9222 tem = fold_widened_comparison (loc, code, type, arg0, arg1);
9223 if (tem)
9224 return tem;
9225
9226 /* Or if we are changing signedness. */
9227 tem = fold_sign_changed_comparison (loc, code, type, arg0, arg1);
9228 if (tem)
9229 return tem;
9230 }
9231
9232 /* If this is comparing a constant with a MIN_EXPR or a MAX_EXPR of a
9233 constant, we can simplify it. */
9234 if (TREE_CODE (arg1) == INTEGER_CST
9235 && (TREE_CODE (arg0) == MIN_EXPR
9236 || TREE_CODE (arg0) == MAX_EXPR)
9237 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
9238 {
9239 tem = optimize_minmax_comparison (loc, code, type, op0, op1);
9240 if (tem)
9241 return tem;
9242 }
9243
9244 /* Simplify comparison of something with itself. (For IEEE
9245 floating-point, we can only do some of these simplifications.) */
9246 if (operand_equal_p (arg0, arg1, 0))
9247 {
9248 switch (code)
9249 {
9250 case EQ_EXPR:
9251 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
9252 || ! HONOR_NANS (arg0))
9253 return constant_boolean_node (1, type);
9254 break;
9255
9256 case GE_EXPR:
9257 case LE_EXPR:
9258 if (! FLOAT_TYPE_P (TREE_TYPE (arg0))
9259 || ! HONOR_NANS (arg0))
9260 return constant_boolean_node (1, type);
9261 return fold_build2_loc (loc, EQ_EXPR, type, arg0, arg1);
9262
9263 case NE_EXPR:
9264 /* For NE, we can only do this simplification if integer
9265 or we don't honor IEEE floating point NaNs. */
9266 if (FLOAT_TYPE_P (TREE_TYPE (arg0))
9267 && HONOR_NANS (arg0))
9268 break;
9269 /* ... fall through ... */
9270 case GT_EXPR:
9271 case LT_EXPR:
9272 return constant_boolean_node (0, type);
9273 default:
9274 gcc_unreachable ();
9275 }
9276 }
9277
9278 /* If we are comparing an expression that just has comparisons
9279 of two integer values, arithmetic expressions of those comparisons,
9280 and constants, we can simplify it. There are only three cases
9281 to check: the two values can either be equal, the first can be
9282 greater, or the second can be greater. Fold the expression for
9283 those three values. Since each value must be 0 or 1, we have
9284 eight possibilities, each of which corresponds to the constant 0
9285 or 1 or one of the six possible comparisons.
9286
9287 This handles common cases like (a > b) == 0 but also handles
9288 expressions like ((x > y) - (y > x)) > 0, which supposedly
9289 occur in macroized code. */
9290
9291 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) != INTEGER_CST)
9292 {
9293 tree cval1 = 0, cval2 = 0;
9294 int save_p = 0;
9295
9296 if (twoval_comparison_p (arg0, &cval1, &cval2, &save_p)
9297 /* Don't handle degenerate cases here; they should already
9298 have been handled anyway. */
9299 && cval1 != 0 && cval2 != 0
9300 && ! (TREE_CONSTANT (cval1) && TREE_CONSTANT (cval2))
9301 && TREE_TYPE (cval1) == TREE_TYPE (cval2)
9302 && INTEGRAL_TYPE_P (TREE_TYPE (cval1))
9303 && TYPE_MAX_VALUE (TREE_TYPE (cval1))
9304 && TYPE_MAX_VALUE (TREE_TYPE (cval2))
9305 && ! operand_equal_p (TYPE_MIN_VALUE (TREE_TYPE (cval1)),
9306 TYPE_MAX_VALUE (TREE_TYPE (cval2)), 0))
9307 {
9308 tree maxval = TYPE_MAX_VALUE (TREE_TYPE (cval1));
9309 tree minval = TYPE_MIN_VALUE (TREE_TYPE (cval1));
9310
9311 /* We can't just pass T to eval_subst in case cval1 or cval2
9312 was the same as ARG1. */
9313
9314 tree high_result
9315 = fold_build2_loc (loc, code, type,
9316 eval_subst (loc, arg0, cval1, maxval,
9317 cval2, minval),
9318 arg1);
9319 tree equal_result
9320 = fold_build2_loc (loc, code, type,
9321 eval_subst (loc, arg0, cval1, maxval,
9322 cval2, maxval),
9323 arg1);
9324 tree low_result
9325 = fold_build2_loc (loc, code, type,
9326 eval_subst (loc, arg0, cval1, minval,
9327 cval2, maxval),
9328 arg1);
9329
9330 /* All three of these results should be 0 or 1. Confirm they are.
9331 Then use those values to select the proper code to use. */
9332
9333 if (TREE_CODE (high_result) == INTEGER_CST
9334 && TREE_CODE (equal_result) == INTEGER_CST
9335 && TREE_CODE (low_result) == INTEGER_CST)
9336 {
9337 /* Make a 3-bit mask with the high-order bit being the
9338 value for `>', the next for '=', and the low for '<'. */
9339 switch ((integer_onep (high_result) * 4)
9340 + (integer_onep (equal_result) * 2)
9341 + integer_onep (low_result))
9342 {
9343 case 0:
9344 /* Always false. */
9345 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
9346 case 1:
9347 code = LT_EXPR;
9348 break;
9349 case 2:
9350 code = EQ_EXPR;
9351 break;
9352 case 3:
9353 code = LE_EXPR;
9354 break;
9355 case 4:
9356 code = GT_EXPR;
9357 break;
9358 case 5:
9359 code = NE_EXPR;
9360 break;
9361 case 6:
9362 code = GE_EXPR;
9363 break;
9364 case 7:
9365 /* Always true. */
9366 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
9367 }
9368
9369 if (save_p)
9370 {
9371 tem = save_expr (build2 (code, type, cval1, cval2));
9372 SET_EXPR_LOCATION (tem, loc);
9373 return tem;
9374 }
9375 return fold_build2_loc (loc, code, type, cval1, cval2);
9376 }
9377 }
9378 }
9379
9380 /* We can fold X/C1 op C2 where C1 and C2 are integer constants
9381 into a single range test. */
9382 if ((TREE_CODE (arg0) == TRUNC_DIV_EXPR
9383 || TREE_CODE (arg0) == EXACT_DIV_EXPR)
9384 && TREE_CODE (arg1) == INTEGER_CST
9385 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
9386 && !integer_zerop (TREE_OPERAND (arg0, 1))
9387 && !TREE_OVERFLOW (TREE_OPERAND (arg0, 1))
9388 && !TREE_OVERFLOW (arg1))
9389 {
9390 tem = fold_div_compare (loc, code, type, arg0, arg1);
9391 if (tem != NULL_TREE)
9392 return tem;
9393 }
9394
9395 /* Fold ~X op ~Y as Y op X. */
9396 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9397 && TREE_CODE (arg1) == BIT_NOT_EXPR)
9398 {
9399 tree cmp_type = TREE_TYPE (TREE_OPERAND (arg0, 0));
9400 return fold_build2_loc (loc, code, type,
9401 fold_convert_loc (loc, cmp_type,
9402 TREE_OPERAND (arg1, 0)),
9403 TREE_OPERAND (arg0, 0));
9404 }
9405
9406 /* Fold ~X op C as X op' ~C, where op' is the swapped comparison. */
9407 if (TREE_CODE (arg0) == BIT_NOT_EXPR
9408 && (TREE_CODE (arg1) == INTEGER_CST || TREE_CODE (arg1) == VECTOR_CST))
9409 {
9410 tree cmp_type = TREE_TYPE (TREE_OPERAND (arg0, 0));
9411 return fold_build2_loc (loc, swap_tree_comparison (code), type,
9412 TREE_OPERAND (arg0, 0),
9413 fold_build1_loc (loc, BIT_NOT_EXPR, cmp_type,
9414 fold_convert_loc (loc, cmp_type, arg1)));
9415 }
9416
9417 return NULL_TREE;
9418 }
9419
9420
9421 /* Subroutine of fold_binary. Optimize complex multiplications of the
9422 form z * conj(z), as pow(realpart(z),2) + pow(imagpart(z),2). The
9423 argument EXPR represents the expression "z" of type TYPE. */
9424
9425 static tree
9426 fold_mult_zconjz (location_t loc, tree type, tree expr)
9427 {
9428 tree itype = TREE_TYPE (type);
9429 tree rpart, ipart, tem;
9430
9431 if (TREE_CODE (expr) == COMPLEX_EXPR)
9432 {
9433 rpart = TREE_OPERAND (expr, 0);
9434 ipart = TREE_OPERAND (expr, 1);
9435 }
9436 else if (TREE_CODE (expr) == COMPLEX_CST)
9437 {
9438 rpart = TREE_REALPART (expr);
9439 ipart = TREE_IMAGPART (expr);
9440 }
9441 else
9442 {
9443 expr = save_expr (expr);
9444 rpart = fold_build1_loc (loc, REALPART_EXPR, itype, expr);
9445 ipart = fold_build1_loc (loc, IMAGPART_EXPR, itype, expr);
9446 }
9447
9448 rpart = save_expr (rpart);
9449 ipart = save_expr (ipart);
9450 tem = fold_build2_loc (loc, PLUS_EXPR, itype,
9451 fold_build2_loc (loc, MULT_EXPR, itype, rpart, rpart),
9452 fold_build2_loc (loc, MULT_EXPR, itype, ipart, ipart));
9453 return fold_build2_loc (loc, COMPLEX_EXPR, type, tem,
9454 build_zero_cst (itype));
9455 }
9456
9457
9458 /* Subroutine of fold_binary. If P is the value of EXPR, computes
9459 power-of-two M and (arbitrary) N such that M divides (P-N). This condition
9460 guarantees that P and N have the same least significant log2(M) bits.
9461 N is not otherwise constrained. In particular, N is not normalized to
9462 0 <= N < M as is common. In general, the precise value of P is unknown.
9463 M is chosen as large as possible such that constant N can be determined.
9464
9465 Returns M and sets *RESIDUE to N.
9466
9467 If ALLOW_FUNC_ALIGN is true, do take functions' DECL_ALIGN_UNIT into
9468 account. This is not always possible due to PR 35705.
9469 */
9470
9471 static unsigned HOST_WIDE_INT
9472 get_pointer_modulus_and_residue (tree expr, unsigned HOST_WIDE_INT *residue,
9473 bool allow_func_align)
9474 {
9475 enum tree_code code;
9476
9477 *residue = 0;
9478
9479 code = TREE_CODE (expr);
9480 if (code == ADDR_EXPR)
9481 {
9482 unsigned int bitalign;
9483 get_object_alignment_1 (TREE_OPERAND (expr, 0), &bitalign, residue);
9484 *residue /= BITS_PER_UNIT;
9485 return bitalign / BITS_PER_UNIT;
9486 }
9487 else if (code == POINTER_PLUS_EXPR)
9488 {
9489 tree op0, op1;
9490 unsigned HOST_WIDE_INT modulus;
9491 enum tree_code inner_code;
9492
9493 op0 = TREE_OPERAND (expr, 0);
9494 STRIP_NOPS (op0);
9495 modulus = get_pointer_modulus_and_residue (op0, residue,
9496 allow_func_align);
9497
9498 op1 = TREE_OPERAND (expr, 1);
9499 STRIP_NOPS (op1);
9500 inner_code = TREE_CODE (op1);
9501 if (inner_code == INTEGER_CST)
9502 {
9503 *residue += TREE_INT_CST_LOW (op1);
9504 return modulus;
9505 }
9506 else if (inner_code == MULT_EXPR)
9507 {
9508 op1 = TREE_OPERAND (op1, 1);
9509 if (TREE_CODE (op1) == INTEGER_CST)
9510 {
9511 unsigned HOST_WIDE_INT align;
9512
9513 /* Compute the greatest power-of-2 divisor of op1. */
9514 align = TREE_INT_CST_LOW (op1);
9515 align &= -align;
9516
9517 /* If align is non-zero and less than *modulus, replace
9518 *modulus with align., If align is 0, then either op1 is 0
9519 or the greatest power-of-2 divisor of op1 doesn't fit in an
9520 unsigned HOST_WIDE_INT. In either case, no additional
9521 constraint is imposed. */
9522 if (align)
9523 modulus = MIN (modulus, align);
9524
9525 return modulus;
9526 }
9527 }
9528 }
9529
9530 /* If we get here, we were unable to determine anything useful about the
9531 expression. */
9532 return 1;
9533 }
9534
9535 /* Helper function for fold_vec_perm. Store elements of VECTOR_CST or
9536 CONSTRUCTOR ARG into array ELTS and return true if successful. */
9537
9538 static bool
9539 vec_cst_ctor_to_array (tree arg, tree *elts)
9540 {
9541 unsigned int nelts = TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg)), i;
9542
9543 if (TREE_CODE (arg) == VECTOR_CST)
9544 {
9545 for (i = 0; i < VECTOR_CST_NELTS (arg); ++i)
9546 elts[i] = VECTOR_CST_ELT (arg, i);
9547 }
9548 else if (TREE_CODE (arg) == CONSTRUCTOR)
9549 {
9550 constructor_elt *elt;
9551
9552 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (arg), i, elt)
9553 if (i >= nelts || TREE_CODE (TREE_TYPE (elt->value)) == VECTOR_TYPE)
9554 return false;
9555 else
9556 elts[i] = elt->value;
9557 }
9558 else
9559 return false;
9560 for (; i < nelts; i++)
9561 elts[i]
9562 = fold_convert (TREE_TYPE (TREE_TYPE (arg)), integer_zero_node);
9563 return true;
9564 }
9565
9566 /* Attempt to fold vector permutation of ARG0 and ARG1 vectors using SEL
9567 selector. Return the folded VECTOR_CST or CONSTRUCTOR if successful,
9568 NULL_TREE otherwise. */
9569
9570 static tree
9571 fold_vec_perm (tree type, tree arg0, tree arg1, const unsigned char *sel)
9572 {
9573 unsigned int nelts = TYPE_VECTOR_SUBPARTS (type), i;
9574 tree *elts;
9575 bool need_ctor = false;
9576
9577 gcc_assert (TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg0)) == nelts
9578 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg1)) == nelts);
9579 if (TREE_TYPE (TREE_TYPE (arg0)) != TREE_TYPE (type)
9580 || TREE_TYPE (TREE_TYPE (arg1)) != TREE_TYPE (type))
9581 return NULL_TREE;
9582
9583 elts = XALLOCAVEC (tree, nelts * 3);
9584 if (!vec_cst_ctor_to_array (arg0, elts)
9585 || !vec_cst_ctor_to_array (arg1, elts + nelts))
9586 return NULL_TREE;
9587
9588 for (i = 0; i < nelts; i++)
9589 {
9590 if (!CONSTANT_CLASS_P (elts[sel[i]]))
9591 need_ctor = true;
9592 elts[i + 2 * nelts] = unshare_expr (elts[sel[i]]);
9593 }
9594
9595 if (need_ctor)
9596 {
9597 vec<constructor_elt, va_gc> *v;
9598 vec_alloc (v, nelts);
9599 for (i = 0; i < nelts; i++)
9600 CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, elts[2 * nelts + i]);
9601 return build_constructor (type, v);
9602 }
9603 else
9604 return build_vector (type, &elts[2 * nelts]);
9605 }
9606
9607 /* Try to fold a pointer difference of type TYPE two address expressions of
9608 array references AREF0 and AREF1 using location LOC. Return a
9609 simplified expression for the difference or NULL_TREE. */
9610
9611 static tree
9612 fold_addr_of_array_ref_difference (location_t loc, tree type,
9613 tree aref0, tree aref1)
9614 {
9615 tree base0 = TREE_OPERAND (aref0, 0);
9616 tree base1 = TREE_OPERAND (aref1, 0);
9617 tree base_offset = build_int_cst (type, 0);
9618
9619 /* If the bases are array references as well, recurse. If the bases
9620 are pointer indirections compute the difference of the pointers.
9621 If the bases are equal, we are set. */
9622 if ((TREE_CODE (base0) == ARRAY_REF
9623 && TREE_CODE (base1) == ARRAY_REF
9624 && (base_offset
9625 = fold_addr_of_array_ref_difference (loc, type, base0, base1)))
9626 || (INDIRECT_REF_P (base0)
9627 && INDIRECT_REF_P (base1)
9628 && (base_offset = fold_binary_loc (loc, MINUS_EXPR, type,
9629 TREE_OPERAND (base0, 0),
9630 TREE_OPERAND (base1, 0))))
9631 || operand_equal_p (base0, base1, 0))
9632 {
9633 tree op0 = fold_convert_loc (loc, type, TREE_OPERAND (aref0, 1));
9634 tree op1 = fold_convert_loc (loc, type, TREE_OPERAND (aref1, 1));
9635 tree esz = fold_convert_loc (loc, type, array_ref_element_size (aref0));
9636 tree diff = build2 (MINUS_EXPR, type, op0, op1);
9637 return fold_build2_loc (loc, PLUS_EXPR, type,
9638 base_offset,
9639 fold_build2_loc (loc, MULT_EXPR, type,
9640 diff, esz));
9641 }
9642 return NULL_TREE;
9643 }
9644
9645 /* If the real or vector real constant CST of type TYPE has an exact
9646 inverse, return it, else return NULL. */
9647
9648 tree
9649 exact_inverse (tree type, tree cst)
9650 {
9651 REAL_VALUE_TYPE r;
9652 tree unit_type, *elts;
9653 machine_mode mode;
9654 unsigned vec_nelts, i;
9655
9656 switch (TREE_CODE (cst))
9657 {
9658 case REAL_CST:
9659 r = TREE_REAL_CST (cst);
9660
9661 if (exact_real_inverse (TYPE_MODE (type), &r))
9662 return build_real (type, r);
9663
9664 return NULL_TREE;
9665
9666 case VECTOR_CST:
9667 vec_nelts = VECTOR_CST_NELTS (cst);
9668 elts = XALLOCAVEC (tree, vec_nelts);
9669 unit_type = TREE_TYPE (type);
9670 mode = TYPE_MODE (unit_type);
9671
9672 for (i = 0; i < vec_nelts; i++)
9673 {
9674 r = TREE_REAL_CST (VECTOR_CST_ELT (cst, i));
9675 if (!exact_real_inverse (mode, &r))
9676 return NULL_TREE;
9677 elts[i] = build_real (unit_type, r);
9678 }
9679
9680 return build_vector (type, elts);
9681
9682 default:
9683 return NULL_TREE;
9684 }
9685 }
9686
9687 /* Mask out the tz least significant bits of X of type TYPE where
9688 tz is the number of trailing zeroes in Y. */
9689 static wide_int
9690 mask_with_tz (tree type, const wide_int &x, const wide_int &y)
9691 {
9692 int tz = wi::ctz (y);
9693 if (tz > 0)
9694 return wi::mask (tz, true, TYPE_PRECISION (type)) & x;
9695 return x;
9696 }
9697
9698 /* Return true when T is an address and is known to be nonzero.
9699 For floating point we further ensure that T is not denormal.
9700 Similar logic is present in nonzero_address in rtlanal.h.
9701
9702 If the return value is based on the assumption that signed overflow
9703 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
9704 change *STRICT_OVERFLOW_P. */
9705
9706 static bool
9707 tree_expr_nonzero_warnv_p (tree t, bool *strict_overflow_p)
9708 {
9709 tree type = TREE_TYPE (t);
9710 enum tree_code code;
9711
9712 /* Doing something useful for floating point would need more work. */
9713 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
9714 return false;
9715
9716 code = TREE_CODE (t);
9717 switch (TREE_CODE_CLASS (code))
9718 {
9719 case tcc_unary:
9720 return tree_unary_nonzero_warnv_p (code, type, TREE_OPERAND (t, 0),
9721 strict_overflow_p);
9722 case tcc_binary:
9723 case tcc_comparison:
9724 return tree_binary_nonzero_warnv_p (code, type,
9725 TREE_OPERAND (t, 0),
9726 TREE_OPERAND (t, 1),
9727 strict_overflow_p);
9728 case tcc_constant:
9729 case tcc_declaration:
9730 case tcc_reference:
9731 return tree_single_nonzero_warnv_p (t, strict_overflow_p);
9732
9733 default:
9734 break;
9735 }
9736
9737 switch (code)
9738 {
9739 case TRUTH_NOT_EXPR:
9740 return tree_unary_nonzero_warnv_p (code, type, TREE_OPERAND (t, 0),
9741 strict_overflow_p);
9742
9743 case TRUTH_AND_EXPR:
9744 case TRUTH_OR_EXPR:
9745 case TRUTH_XOR_EXPR:
9746 return tree_binary_nonzero_warnv_p (code, type,
9747 TREE_OPERAND (t, 0),
9748 TREE_OPERAND (t, 1),
9749 strict_overflow_p);
9750
9751 case COND_EXPR:
9752 case CONSTRUCTOR:
9753 case OBJ_TYPE_REF:
9754 case ASSERT_EXPR:
9755 case ADDR_EXPR:
9756 case WITH_SIZE_EXPR:
9757 case SSA_NAME:
9758 return tree_single_nonzero_warnv_p (t, strict_overflow_p);
9759
9760 case COMPOUND_EXPR:
9761 case MODIFY_EXPR:
9762 case BIND_EXPR:
9763 return tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 1),
9764 strict_overflow_p);
9765
9766 case SAVE_EXPR:
9767 return tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 0),
9768 strict_overflow_p);
9769
9770 case CALL_EXPR:
9771 {
9772 tree fndecl = get_callee_fndecl (t);
9773 if (!fndecl) return false;
9774 if (flag_delete_null_pointer_checks && !flag_check_new
9775 && DECL_IS_OPERATOR_NEW (fndecl)
9776 && !TREE_NOTHROW (fndecl))
9777 return true;
9778 if (flag_delete_null_pointer_checks
9779 && lookup_attribute ("returns_nonnull",
9780 TYPE_ATTRIBUTES (TREE_TYPE (fndecl))))
9781 return true;
9782 return alloca_call_p (t);
9783 }
9784
9785 default:
9786 break;
9787 }
9788 return false;
9789 }
9790
9791 /* Return true when T is an address and is known to be nonzero.
9792 Handle warnings about undefined signed overflow. */
9793
9794 static bool
9795 tree_expr_nonzero_p (tree t)
9796 {
9797 bool ret, strict_overflow_p;
9798
9799 strict_overflow_p = false;
9800 ret = tree_expr_nonzero_warnv_p (t, &strict_overflow_p);
9801 if (strict_overflow_p)
9802 fold_overflow_warning (("assuming signed overflow does not occur when "
9803 "determining that expression is always "
9804 "non-zero"),
9805 WARN_STRICT_OVERFLOW_MISC);
9806 return ret;
9807 }
9808
9809 /* Fold a binary expression of code CODE and type TYPE with operands
9810 OP0 and OP1. LOC is the location of the resulting expression.
9811 Return the folded expression if folding is successful. Otherwise,
9812 return NULL_TREE. */
9813
9814 tree
9815 fold_binary_loc (location_t loc,
9816 enum tree_code code, tree type, tree op0, tree op1)
9817 {
9818 enum tree_code_class kind = TREE_CODE_CLASS (code);
9819 tree arg0, arg1, tem;
9820 tree t1 = NULL_TREE;
9821 bool strict_overflow_p;
9822 unsigned int prec;
9823
9824 gcc_assert (IS_EXPR_CODE_CLASS (kind)
9825 && TREE_CODE_LENGTH (code) == 2
9826 && op0 != NULL_TREE
9827 && op1 != NULL_TREE);
9828
9829 arg0 = op0;
9830 arg1 = op1;
9831
9832 /* Strip any conversions that don't change the mode. This is
9833 safe for every expression, except for a comparison expression
9834 because its signedness is derived from its operands. So, in
9835 the latter case, only strip conversions that don't change the
9836 signedness. MIN_EXPR/MAX_EXPR also need signedness of arguments
9837 preserved.
9838
9839 Note that this is done as an internal manipulation within the
9840 constant folder, in order to find the simplest representation
9841 of the arguments so that their form can be studied. In any
9842 cases, the appropriate type conversions should be put back in
9843 the tree that will get out of the constant folder. */
9844
9845 if (kind == tcc_comparison || code == MIN_EXPR || code == MAX_EXPR)
9846 {
9847 STRIP_SIGN_NOPS (arg0);
9848 STRIP_SIGN_NOPS (arg1);
9849 }
9850 else
9851 {
9852 STRIP_NOPS (arg0);
9853 STRIP_NOPS (arg1);
9854 }
9855
9856 /* Note that TREE_CONSTANT isn't enough: static var addresses are
9857 constant but we can't do arithmetic on them. */
9858 if (CONSTANT_CLASS_P (arg0) && CONSTANT_CLASS_P (arg1))
9859 {
9860 tem = const_binop (code, type, arg0, arg1);
9861 if (tem != NULL_TREE)
9862 {
9863 if (TREE_TYPE (tem) != type)
9864 tem = fold_convert_loc (loc, type, tem);
9865 return tem;
9866 }
9867 }
9868
9869 /* If this is a commutative operation, and ARG0 is a constant, move it
9870 to ARG1 to reduce the number of tests below. */
9871 if (commutative_tree_code (code)
9872 && tree_swap_operands_p (arg0, arg1, true))
9873 return fold_build2_loc (loc, code, type, op1, op0);
9874
9875 /* Likewise if this is a comparison, and ARG0 is a constant, move it
9876 to ARG1 to reduce the number of tests below. */
9877 if (kind == tcc_comparison
9878 && tree_swap_operands_p (arg0, arg1, true))
9879 return fold_build2_loc (loc, swap_tree_comparison (code), type, op1, op0);
9880
9881 tem = generic_simplify (loc, code, type, op0, op1);
9882 if (tem)
9883 return tem;
9884
9885 /* ARG0 is the first operand of EXPR, and ARG1 is the second operand.
9886
9887 First check for cases where an arithmetic operation is applied to a
9888 compound, conditional, or comparison operation. Push the arithmetic
9889 operation inside the compound or conditional to see if any folding
9890 can then be done. Convert comparison to conditional for this purpose.
9891 The also optimizes non-constant cases that used to be done in
9892 expand_expr.
9893
9894 Before we do that, see if this is a BIT_AND_EXPR or a BIT_IOR_EXPR,
9895 one of the operands is a comparison and the other is a comparison, a
9896 BIT_AND_EXPR with the constant 1, or a truth value. In that case, the
9897 code below would make the expression more complex. Change it to a
9898 TRUTH_{AND,OR}_EXPR. Likewise, convert a similar NE_EXPR to
9899 TRUTH_XOR_EXPR and an EQ_EXPR to the inversion of a TRUTH_XOR_EXPR. */
9900
9901 if ((code == BIT_AND_EXPR || code == BIT_IOR_EXPR
9902 || code == EQ_EXPR || code == NE_EXPR)
9903 && TREE_CODE (type) != VECTOR_TYPE
9904 && ((truth_value_p (TREE_CODE (arg0))
9905 && (truth_value_p (TREE_CODE (arg1))
9906 || (TREE_CODE (arg1) == BIT_AND_EXPR
9907 && integer_onep (TREE_OPERAND (arg1, 1)))))
9908 || (truth_value_p (TREE_CODE (arg1))
9909 && (truth_value_p (TREE_CODE (arg0))
9910 || (TREE_CODE (arg0) == BIT_AND_EXPR
9911 && integer_onep (TREE_OPERAND (arg0, 1)))))))
9912 {
9913 tem = fold_build2_loc (loc, code == BIT_AND_EXPR ? TRUTH_AND_EXPR
9914 : code == BIT_IOR_EXPR ? TRUTH_OR_EXPR
9915 : TRUTH_XOR_EXPR,
9916 boolean_type_node,
9917 fold_convert_loc (loc, boolean_type_node, arg0),
9918 fold_convert_loc (loc, boolean_type_node, arg1));
9919
9920 if (code == EQ_EXPR)
9921 tem = invert_truthvalue_loc (loc, tem);
9922
9923 return fold_convert_loc (loc, type, tem);
9924 }
9925
9926 if (TREE_CODE_CLASS (code) == tcc_binary
9927 || TREE_CODE_CLASS (code) == tcc_comparison)
9928 {
9929 if (TREE_CODE (arg0) == COMPOUND_EXPR)
9930 {
9931 tem = fold_build2_loc (loc, code, type,
9932 fold_convert_loc (loc, TREE_TYPE (op0),
9933 TREE_OPERAND (arg0, 1)), op1);
9934 return build2_loc (loc, COMPOUND_EXPR, type, TREE_OPERAND (arg0, 0),
9935 tem);
9936 }
9937 if (TREE_CODE (arg1) == COMPOUND_EXPR
9938 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
9939 {
9940 tem = fold_build2_loc (loc, code, type, op0,
9941 fold_convert_loc (loc, TREE_TYPE (op1),
9942 TREE_OPERAND (arg1, 1)));
9943 return build2_loc (loc, COMPOUND_EXPR, type, TREE_OPERAND (arg1, 0),
9944 tem);
9945 }
9946
9947 if (TREE_CODE (arg0) == COND_EXPR
9948 || TREE_CODE (arg0) == VEC_COND_EXPR
9949 || COMPARISON_CLASS_P (arg0))
9950 {
9951 tem = fold_binary_op_with_conditional_arg (loc, code, type, op0, op1,
9952 arg0, arg1,
9953 /*cond_first_p=*/1);
9954 if (tem != NULL_TREE)
9955 return tem;
9956 }
9957
9958 if (TREE_CODE (arg1) == COND_EXPR
9959 || TREE_CODE (arg1) == VEC_COND_EXPR
9960 || COMPARISON_CLASS_P (arg1))
9961 {
9962 tem = fold_binary_op_with_conditional_arg (loc, code, type, op0, op1,
9963 arg1, arg0,
9964 /*cond_first_p=*/0);
9965 if (tem != NULL_TREE)
9966 return tem;
9967 }
9968 }
9969
9970 switch (code)
9971 {
9972 case MEM_REF:
9973 /* MEM[&MEM[p, CST1], CST2] -> MEM[p, CST1 + CST2]. */
9974 if (TREE_CODE (arg0) == ADDR_EXPR
9975 && TREE_CODE (TREE_OPERAND (arg0, 0)) == MEM_REF)
9976 {
9977 tree iref = TREE_OPERAND (arg0, 0);
9978 return fold_build2 (MEM_REF, type,
9979 TREE_OPERAND (iref, 0),
9980 int_const_binop (PLUS_EXPR, arg1,
9981 TREE_OPERAND (iref, 1)));
9982 }
9983
9984 /* MEM[&a.b, CST2] -> MEM[&a, offsetof (a, b) + CST2]. */
9985 if (TREE_CODE (arg0) == ADDR_EXPR
9986 && handled_component_p (TREE_OPERAND (arg0, 0)))
9987 {
9988 tree base;
9989 HOST_WIDE_INT coffset;
9990 base = get_addr_base_and_unit_offset (TREE_OPERAND (arg0, 0),
9991 &coffset);
9992 if (!base)
9993 return NULL_TREE;
9994 return fold_build2 (MEM_REF, type,
9995 build_fold_addr_expr (base),
9996 int_const_binop (PLUS_EXPR, arg1,
9997 size_int (coffset)));
9998 }
9999
10000 return NULL_TREE;
10001
10002 case POINTER_PLUS_EXPR:
10003 /* INT +p INT -> (PTR)(INT + INT). Stripping types allows for this. */
10004 if (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
10005 && INTEGRAL_TYPE_P (TREE_TYPE (arg0)))
10006 return fold_convert_loc (loc, type,
10007 fold_build2_loc (loc, PLUS_EXPR, sizetype,
10008 fold_convert_loc (loc, sizetype,
10009 arg1),
10010 fold_convert_loc (loc, sizetype,
10011 arg0)));
10012
10013 return NULL_TREE;
10014
10015 case PLUS_EXPR:
10016 if (INTEGRAL_TYPE_P (type) || VECTOR_INTEGER_TYPE_P (type))
10017 {
10018 /* X + (X / CST) * -CST is X % CST. */
10019 if (TREE_CODE (arg1) == MULT_EXPR
10020 && TREE_CODE (TREE_OPERAND (arg1, 0)) == TRUNC_DIV_EXPR
10021 && operand_equal_p (arg0,
10022 TREE_OPERAND (TREE_OPERAND (arg1, 0), 0), 0))
10023 {
10024 tree cst0 = TREE_OPERAND (TREE_OPERAND (arg1, 0), 1);
10025 tree cst1 = TREE_OPERAND (arg1, 1);
10026 tree sum = fold_binary_loc (loc, PLUS_EXPR, TREE_TYPE (cst1),
10027 cst1, cst0);
10028 if (sum && integer_zerop (sum))
10029 return fold_convert_loc (loc, type,
10030 fold_build2_loc (loc, TRUNC_MOD_EXPR,
10031 TREE_TYPE (arg0), arg0,
10032 cst0));
10033 }
10034 }
10035
10036 /* Handle (A1 * C1) + (A2 * C2) with A1, A2 or C1, C2 being the same or
10037 one. Make sure the type is not saturating and has the signedness of
10038 the stripped operands, as fold_plusminus_mult_expr will re-associate.
10039 ??? The latter condition should use TYPE_OVERFLOW_* flags instead. */
10040 if ((TREE_CODE (arg0) == MULT_EXPR
10041 || TREE_CODE (arg1) == MULT_EXPR)
10042 && !TYPE_SATURATING (type)
10043 && TYPE_UNSIGNED (type) == TYPE_UNSIGNED (TREE_TYPE (arg0))
10044 && TYPE_UNSIGNED (type) == TYPE_UNSIGNED (TREE_TYPE (arg1))
10045 && (!FLOAT_TYPE_P (type) || flag_associative_math))
10046 {
10047 tree tem = fold_plusminus_mult_expr (loc, code, type, arg0, arg1);
10048 if (tem)
10049 return tem;
10050 }
10051
10052 if (! FLOAT_TYPE_P (type))
10053 {
10054 /* If we are adding two BIT_AND_EXPR's, both of which are and'ing
10055 with a constant, and the two constants have no bits in common,
10056 we should treat this as a BIT_IOR_EXPR since this may produce more
10057 simplifications. */
10058 if (TREE_CODE (arg0) == BIT_AND_EXPR
10059 && TREE_CODE (arg1) == BIT_AND_EXPR
10060 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
10061 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
10062 && wi::bit_and (TREE_OPERAND (arg0, 1),
10063 TREE_OPERAND (arg1, 1)) == 0)
10064 {
10065 code = BIT_IOR_EXPR;
10066 goto bit_ior;
10067 }
10068
10069 /* Reassociate (plus (plus (mult) (foo)) (mult)) as
10070 (plus (plus (mult) (mult)) (foo)) so that we can
10071 take advantage of the factoring cases below. */
10072 if (ANY_INTEGRAL_TYPE_P (type)
10073 && TYPE_OVERFLOW_WRAPS (type)
10074 && (((TREE_CODE (arg0) == PLUS_EXPR
10075 || TREE_CODE (arg0) == MINUS_EXPR)
10076 && TREE_CODE (arg1) == MULT_EXPR)
10077 || ((TREE_CODE (arg1) == PLUS_EXPR
10078 || TREE_CODE (arg1) == MINUS_EXPR)
10079 && TREE_CODE (arg0) == MULT_EXPR)))
10080 {
10081 tree parg0, parg1, parg, marg;
10082 enum tree_code pcode;
10083
10084 if (TREE_CODE (arg1) == MULT_EXPR)
10085 parg = arg0, marg = arg1;
10086 else
10087 parg = arg1, marg = arg0;
10088 pcode = TREE_CODE (parg);
10089 parg0 = TREE_OPERAND (parg, 0);
10090 parg1 = TREE_OPERAND (parg, 1);
10091 STRIP_NOPS (parg0);
10092 STRIP_NOPS (parg1);
10093
10094 if (TREE_CODE (parg0) == MULT_EXPR
10095 && TREE_CODE (parg1) != MULT_EXPR)
10096 return fold_build2_loc (loc, pcode, type,
10097 fold_build2_loc (loc, PLUS_EXPR, type,
10098 fold_convert_loc (loc, type,
10099 parg0),
10100 fold_convert_loc (loc, type,
10101 marg)),
10102 fold_convert_loc (loc, type, parg1));
10103 if (TREE_CODE (parg0) != MULT_EXPR
10104 && TREE_CODE (parg1) == MULT_EXPR)
10105 return
10106 fold_build2_loc (loc, PLUS_EXPR, type,
10107 fold_convert_loc (loc, type, parg0),
10108 fold_build2_loc (loc, pcode, type,
10109 fold_convert_loc (loc, type, marg),
10110 fold_convert_loc (loc, type,
10111 parg1)));
10112 }
10113 }
10114 else
10115 {
10116 /* Fold __complex__ ( x, 0 ) + __complex__ ( 0, y )
10117 to __complex__ ( x, y ). This is not the same for SNaNs or
10118 if signed zeros are involved. */
10119 if (!HONOR_SNANS (element_mode (arg0))
10120 && !HONOR_SIGNED_ZEROS (element_mode (arg0))
10121 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0)))
10122 {
10123 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
10124 tree arg0r = fold_unary_loc (loc, REALPART_EXPR, rtype, arg0);
10125 tree arg0i = fold_unary_loc (loc, IMAGPART_EXPR, rtype, arg0);
10126 bool arg0rz = false, arg0iz = false;
10127 if ((arg0r && (arg0rz = real_zerop (arg0r)))
10128 || (arg0i && (arg0iz = real_zerop (arg0i))))
10129 {
10130 tree arg1r = fold_unary_loc (loc, REALPART_EXPR, rtype, arg1);
10131 tree arg1i = fold_unary_loc (loc, IMAGPART_EXPR, rtype, arg1);
10132 if (arg0rz && arg1i && real_zerop (arg1i))
10133 {
10134 tree rp = arg1r ? arg1r
10135 : build1 (REALPART_EXPR, rtype, arg1);
10136 tree ip = arg0i ? arg0i
10137 : build1 (IMAGPART_EXPR, rtype, arg0);
10138 return fold_build2_loc (loc, COMPLEX_EXPR, type, rp, ip);
10139 }
10140 else if (arg0iz && arg1r && real_zerop (arg1r))
10141 {
10142 tree rp = arg0r ? arg0r
10143 : build1 (REALPART_EXPR, rtype, arg0);
10144 tree ip = arg1i ? arg1i
10145 : build1 (IMAGPART_EXPR, rtype, arg1);
10146 return fold_build2_loc (loc, COMPLEX_EXPR, type, rp, ip);
10147 }
10148 }
10149 }
10150
10151 if (flag_unsafe_math_optimizations
10152 && (TREE_CODE (arg0) == RDIV_EXPR || TREE_CODE (arg0) == MULT_EXPR)
10153 && (TREE_CODE (arg1) == RDIV_EXPR || TREE_CODE (arg1) == MULT_EXPR)
10154 && (tem = distribute_real_division (loc, code, type, arg0, arg1)))
10155 return tem;
10156
10157 /* Convert a + (b*c + d*e) into (a + b*c) + d*e.
10158 We associate floats only if the user has specified
10159 -fassociative-math. */
10160 if (flag_associative_math
10161 && TREE_CODE (arg1) == PLUS_EXPR
10162 && TREE_CODE (arg0) != MULT_EXPR)
10163 {
10164 tree tree10 = TREE_OPERAND (arg1, 0);
10165 tree tree11 = TREE_OPERAND (arg1, 1);
10166 if (TREE_CODE (tree11) == MULT_EXPR
10167 && TREE_CODE (tree10) == MULT_EXPR)
10168 {
10169 tree tree0;
10170 tree0 = fold_build2_loc (loc, PLUS_EXPR, type, arg0, tree10);
10171 return fold_build2_loc (loc, PLUS_EXPR, type, tree0, tree11);
10172 }
10173 }
10174 /* Convert (b*c + d*e) + a into b*c + (d*e +a).
10175 We associate floats only if the user has specified
10176 -fassociative-math. */
10177 if (flag_associative_math
10178 && TREE_CODE (arg0) == PLUS_EXPR
10179 && TREE_CODE (arg1) != MULT_EXPR)
10180 {
10181 tree tree00 = TREE_OPERAND (arg0, 0);
10182 tree tree01 = TREE_OPERAND (arg0, 1);
10183 if (TREE_CODE (tree01) == MULT_EXPR
10184 && TREE_CODE (tree00) == MULT_EXPR)
10185 {
10186 tree tree0;
10187 tree0 = fold_build2_loc (loc, PLUS_EXPR, type, tree01, arg1);
10188 return fold_build2_loc (loc, PLUS_EXPR, type, tree00, tree0);
10189 }
10190 }
10191 }
10192
10193 bit_rotate:
10194 /* (A << C1) + (A >> C2) if A is unsigned and C1+C2 is the size of A
10195 is a rotate of A by C1 bits. */
10196 /* (A << B) + (A >> (Z - B)) if A is unsigned and Z is the size of A
10197 is a rotate of A by B bits. */
10198 {
10199 enum tree_code code0, code1;
10200 tree rtype;
10201 code0 = TREE_CODE (arg0);
10202 code1 = TREE_CODE (arg1);
10203 if (((code0 == RSHIFT_EXPR && code1 == LSHIFT_EXPR)
10204 || (code1 == RSHIFT_EXPR && code0 == LSHIFT_EXPR))
10205 && operand_equal_p (TREE_OPERAND (arg0, 0),
10206 TREE_OPERAND (arg1, 0), 0)
10207 && (rtype = TREE_TYPE (TREE_OPERAND (arg0, 0)),
10208 TYPE_UNSIGNED (rtype))
10209 /* Only create rotates in complete modes. Other cases are not
10210 expanded properly. */
10211 && (element_precision (rtype)
10212 == element_precision (TYPE_MODE (rtype))))
10213 {
10214 tree tree01, tree11;
10215 enum tree_code code01, code11;
10216
10217 tree01 = TREE_OPERAND (arg0, 1);
10218 tree11 = TREE_OPERAND (arg1, 1);
10219 STRIP_NOPS (tree01);
10220 STRIP_NOPS (tree11);
10221 code01 = TREE_CODE (tree01);
10222 code11 = TREE_CODE (tree11);
10223 if (code01 == INTEGER_CST
10224 && code11 == INTEGER_CST
10225 && (wi::to_widest (tree01) + wi::to_widest (tree11)
10226 == element_precision (TREE_TYPE (TREE_OPERAND (arg0, 0)))))
10227 {
10228 tem = build2_loc (loc, LROTATE_EXPR,
10229 TREE_TYPE (TREE_OPERAND (arg0, 0)),
10230 TREE_OPERAND (arg0, 0),
10231 code0 == LSHIFT_EXPR
10232 ? TREE_OPERAND (arg0, 1)
10233 : TREE_OPERAND (arg1, 1));
10234 return fold_convert_loc (loc, type, tem);
10235 }
10236 else if (code11 == MINUS_EXPR)
10237 {
10238 tree tree110, tree111;
10239 tree110 = TREE_OPERAND (tree11, 0);
10240 tree111 = TREE_OPERAND (tree11, 1);
10241 STRIP_NOPS (tree110);
10242 STRIP_NOPS (tree111);
10243 if (TREE_CODE (tree110) == INTEGER_CST
10244 && 0 == compare_tree_int (tree110,
10245 element_precision
10246 (TREE_TYPE (TREE_OPERAND
10247 (arg0, 0))))
10248 && operand_equal_p (tree01, tree111, 0))
10249 return
10250 fold_convert_loc (loc, type,
10251 build2 ((code0 == LSHIFT_EXPR
10252 ? LROTATE_EXPR
10253 : RROTATE_EXPR),
10254 TREE_TYPE (TREE_OPERAND (arg0, 0)),
10255 TREE_OPERAND (arg0, 0),
10256 TREE_OPERAND (arg0, 1)));
10257 }
10258 else if (code01 == MINUS_EXPR)
10259 {
10260 tree tree010, tree011;
10261 tree010 = TREE_OPERAND (tree01, 0);
10262 tree011 = TREE_OPERAND (tree01, 1);
10263 STRIP_NOPS (tree010);
10264 STRIP_NOPS (tree011);
10265 if (TREE_CODE (tree010) == INTEGER_CST
10266 && 0 == compare_tree_int (tree010,
10267 element_precision
10268 (TREE_TYPE (TREE_OPERAND
10269 (arg0, 0))))
10270 && operand_equal_p (tree11, tree011, 0))
10271 return fold_convert_loc
10272 (loc, type,
10273 build2 ((code0 != LSHIFT_EXPR
10274 ? LROTATE_EXPR
10275 : RROTATE_EXPR),
10276 TREE_TYPE (TREE_OPERAND (arg0, 0)),
10277 TREE_OPERAND (arg0, 0), TREE_OPERAND (arg1, 1)));
10278 }
10279 }
10280 }
10281
10282 associate:
10283 /* In most languages, can't associate operations on floats through
10284 parentheses. Rather than remember where the parentheses were, we
10285 don't associate floats at all, unless the user has specified
10286 -fassociative-math.
10287 And, we need to make sure type is not saturating. */
10288
10289 if ((! FLOAT_TYPE_P (type) || flag_associative_math)
10290 && !TYPE_SATURATING (type))
10291 {
10292 tree var0, con0, lit0, minus_lit0;
10293 tree var1, con1, lit1, minus_lit1;
10294 tree atype = type;
10295 bool ok = true;
10296
10297 /* Split both trees into variables, constants, and literals. Then
10298 associate each group together, the constants with literals,
10299 then the result with variables. This increases the chances of
10300 literals being recombined later and of generating relocatable
10301 expressions for the sum of a constant and literal. */
10302 var0 = split_tree (arg0, code, &con0, &lit0, &minus_lit0, 0);
10303 var1 = split_tree (arg1, code, &con1, &lit1, &minus_lit1,
10304 code == MINUS_EXPR);
10305
10306 /* Recombine MINUS_EXPR operands by using PLUS_EXPR. */
10307 if (code == MINUS_EXPR)
10308 code = PLUS_EXPR;
10309
10310 /* With undefined overflow prefer doing association in a type
10311 which wraps on overflow, if that is one of the operand types. */
10312 if ((POINTER_TYPE_P (type) && POINTER_TYPE_OVERFLOW_UNDEFINED)
10313 || (INTEGRAL_TYPE_P (type) && !TYPE_OVERFLOW_WRAPS (type)))
10314 {
10315 if (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
10316 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg0)))
10317 atype = TREE_TYPE (arg0);
10318 else if (INTEGRAL_TYPE_P (TREE_TYPE (arg1))
10319 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg1)))
10320 atype = TREE_TYPE (arg1);
10321 gcc_assert (TYPE_PRECISION (atype) == TYPE_PRECISION (type));
10322 }
10323
10324 /* With undefined overflow we can only associate constants with one
10325 variable, and constants whose association doesn't overflow. */
10326 if ((POINTER_TYPE_P (atype) && POINTER_TYPE_OVERFLOW_UNDEFINED)
10327 || (INTEGRAL_TYPE_P (atype) && !TYPE_OVERFLOW_WRAPS (atype)))
10328 {
10329 if (var0 && var1)
10330 {
10331 tree tmp0 = var0;
10332 tree tmp1 = var1;
10333
10334 if (TREE_CODE (tmp0) == NEGATE_EXPR)
10335 tmp0 = TREE_OPERAND (tmp0, 0);
10336 if (CONVERT_EXPR_P (tmp0)
10337 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (tmp0, 0)))
10338 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (tmp0, 0)))
10339 <= TYPE_PRECISION (atype)))
10340 tmp0 = TREE_OPERAND (tmp0, 0);
10341 if (TREE_CODE (tmp1) == NEGATE_EXPR)
10342 tmp1 = TREE_OPERAND (tmp1, 0);
10343 if (CONVERT_EXPR_P (tmp1)
10344 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (tmp1, 0)))
10345 && (TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (tmp1, 0)))
10346 <= TYPE_PRECISION (atype)))
10347 tmp1 = TREE_OPERAND (tmp1, 0);
10348 /* The only case we can still associate with two variables
10349 is if they are the same, modulo negation and bit-pattern
10350 preserving conversions. */
10351 if (!operand_equal_p (tmp0, tmp1, 0))
10352 ok = false;
10353 }
10354 }
10355
10356 /* Only do something if we found more than two objects. Otherwise,
10357 nothing has changed and we risk infinite recursion. */
10358 if (ok
10359 && (2 < ((var0 != 0) + (var1 != 0)
10360 + (con0 != 0) + (con1 != 0)
10361 + (lit0 != 0) + (lit1 != 0)
10362 + (minus_lit0 != 0) + (minus_lit1 != 0))))
10363 {
10364 bool any_overflows = false;
10365 if (lit0) any_overflows |= TREE_OVERFLOW (lit0);
10366 if (lit1) any_overflows |= TREE_OVERFLOW (lit1);
10367 if (minus_lit0) any_overflows |= TREE_OVERFLOW (minus_lit0);
10368 if (minus_lit1) any_overflows |= TREE_OVERFLOW (minus_lit1);
10369 var0 = associate_trees (loc, var0, var1, code, atype);
10370 con0 = associate_trees (loc, con0, con1, code, atype);
10371 lit0 = associate_trees (loc, lit0, lit1, code, atype);
10372 minus_lit0 = associate_trees (loc, minus_lit0, minus_lit1,
10373 code, atype);
10374
10375 /* Preserve the MINUS_EXPR if the negative part of the literal is
10376 greater than the positive part. Otherwise, the multiplicative
10377 folding code (i.e extract_muldiv) may be fooled in case
10378 unsigned constants are subtracted, like in the following
10379 example: ((X*2 + 4) - 8U)/2. */
10380 if (minus_lit0 && lit0)
10381 {
10382 if (TREE_CODE (lit0) == INTEGER_CST
10383 && TREE_CODE (minus_lit0) == INTEGER_CST
10384 && tree_int_cst_lt (lit0, minus_lit0))
10385 {
10386 minus_lit0 = associate_trees (loc, minus_lit0, lit0,
10387 MINUS_EXPR, atype);
10388 lit0 = 0;
10389 }
10390 else
10391 {
10392 lit0 = associate_trees (loc, lit0, minus_lit0,
10393 MINUS_EXPR, atype);
10394 minus_lit0 = 0;
10395 }
10396 }
10397
10398 /* Don't introduce overflows through reassociation. */
10399 if (!any_overflows
10400 && ((lit0 && TREE_OVERFLOW_P (lit0))
10401 || (minus_lit0 && TREE_OVERFLOW_P (minus_lit0))))
10402 return NULL_TREE;
10403
10404 if (minus_lit0)
10405 {
10406 if (con0 == 0)
10407 return
10408 fold_convert_loc (loc, type,
10409 associate_trees (loc, var0, minus_lit0,
10410 MINUS_EXPR, atype));
10411 else
10412 {
10413 con0 = associate_trees (loc, con0, minus_lit0,
10414 MINUS_EXPR, atype);
10415 return
10416 fold_convert_loc (loc, type,
10417 associate_trees (loc, var0, con0,
10418 PLUS_EXPR, atype));
10419 }
10420 }
10421
10422 con0 = associate_trees (loc, con0, lit0, code, atype);
10423 return
10424 fold_convert_loc (loc, type, associate_trees (loc, var0, con0,
10425 code, atype));
10426 }
10427 }
10428
10429 return NULL_TREE;
10430
10431 case MINUS_EXPR:
10432 /* Pointer simplifications for subtraction, simple reassociations. */
10433 if (POINTER_TYPE_P (TREE_TYPE (arg1)) && POINTER_TYPE_P (TREE_TYPE (arg0)))
10434 {
10435 /* (PTR0 p+ A) - (PTR1 p+ B) -> (PTR0 - PTR1) + (A - B) */
10436 if (TREE_CODE (arg0) == POINTER_PLUS_EXPR
10437 && TREE_CODE (arg1) == POINTER_PLUS_EXPR)
10438 {
10439 tree arg00 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10440 tree arg01 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
10441 tree arg10 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
10442 tree arg11 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
10443 return fold_build2_loc (loc, PLUS_EXPR, type,
10444 fold_build2_loc (loc, MINUS_EXPR, type,
10445 arg00, arg10),
10446 fold_build2_loc (loc, MINUS_EXPR, type,
10447 arg01, arg11));
10448 }
10449 /* (PTR0 p+ A) - PTR1 -> (PTR0 - PTR1) + A, assuming PTR0 - PTR1 simplifies. */
10450 else if (TREE_CODE (arg0) == POINTER_PLUS_EXPR)
10451 {
10452 tree arg00 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10453 tree arg01 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
10454 tree tmp = fold_binary_loc (loc, MINUS_EXPR, type, arg00,
10455 fold_convert_loc (loc, type, arg1));
10456 if (tmp)
10457 return fold_build2_loc (loc, PLUS_EXPR, type, tmp, arg01);
10458 }
10459 /* PTR0 - (PTR1 p+ A) -> (PTR0 - PTR1) - A, assuming PTR0 - PTR1
10460 simplifies. */
10461 else if (TREE_CODE (arg1) == POINTER_PLUS_EXPR)
10462 {
10463 tree arg10 = fold_convert_loc (loc, type,
10464 TREE_OPERAND (arg1, 0));
10465 tree arg11 = fold_convert_loc (loc, type,
10466 TREE_OPERAND (arg1, 1));
10467 tree tmp = fold_binary_loc (loc, MINUS_EXPR, type,
10468 fold_convert_loc (loc, type, arg0),
10469 arg10);
10470 if (tmp)
10471 return fold_build2_loc (loc, MINUS_EXPR, type, tmp, arg11);
10472 }
10473 }
10474 /* (-A) - B -> (-B) - A where B is easily negated and we can swap. */
10475 if (TREE_CODE (arg0) == NEGATE_EXPR
10476 && negate_expr_p (arg1)
10477 && reorder_operands_p (arg0, arg1))
10478 return fold_build2_loc (loc, MINUS_EXPR, type,
10479 fold_convert_loc (loc, type,
10480 negate_expr (arg1)),
10481 fold_convert_loc (loc, type,
10482 TREE_OPERAND (arg0, 0)));
10483
10484 if (! FLOAT_TYPE_P (type))
10485 {
10486 /* Fold A - (A & B) into ~B & A. */
10487 if (!TREE_SIDE_EFFECTS (arg0)
10488 && TREE_CODE (arg1) == BIT_AND_EXPR)
10489 {
10490 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0))
10491 {
10492 tree arg10 = fold_convert_loc (loc, type,
10493 TREE_OPERAND (arg1, 0));
10494 return fold_build2_loc (loc, BIT_AND_EXPR, type,
10495 fold_build1_loc (loc, BIT_NOT_EXPR,
10496 type, arg10),
10497 fold_convert_loc (loc, type, arg0));
10498 }
10499 if (operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10500 {
10501 tree arg11 = fold_convert_loc (loc,
10502 type, TREE_OPERAND (arg1, 1));
10503 return fold_build2_loc (loc, BIT_AND_EXPR, type,
10504 fold_build1_loc (loc, BIT_NOT_EXPR,
10505 type, arg11),
10506 fold_convert_loc (loc, type, arg0));
10507 }
10508 }
10509
10510 /* Fold (A & ~B) - (A & B) into (A ^ B) - B, where B is
10511 any power of 2 minus 1. */
10512 if (TREE_CODE (arg0) == BIT_AND_EXPR
10513 && TREE_CODE (arg1) == BIT_AND_EXPR
10514 && operand_equal_p (TREE_OPERAND (arg0, 0),
10515 TREE_OPERAND (arg1, 0), 0))
10516 {
10517 tree mask0 = TREE_OPERAND (arg0, 1);
10518 tree mask1 = TREE_OPERAND (arg1, 1);
10519 tree tem = fold_build1_loc (loc, BIT_NOT_EXPR, type, mask0);
10520
10521 if (operand_equal_p (tem, mask1, 0))
10522 {
10523 tem = fold_build2_loc (loc, BIT_XOR_EXPR, type,
10524 TREE_OPERAND (arg0, 0), mask1);
10525 return fold_build2_loc (loc, MINUS_EXPR, type, tem, mask1);
10526 }
10527 }
10528 }
10529
10530 /* Fold __complex__ ( x, 0 ) - __complex__ ( 0, y ) to
10531 __complex__ ( x, -y ). This is not the same for SNaNs or if
10532 signed zeros are involved. */
10533 if (!HONOR_SNANS (element_mode (arg0))
10534 && !HONOR_SIGNED_ZEROS (element_mode (arg0))
10535 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0)))
10536 {
10537 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
10538 tree arg0r = fold_unary_loc (loc, REALPART_EXPR, rtype, arg0);
10539 tree arg0i = fold_unary_loc (loc, IMAGPART_EXPR, rtype, arg0);
10540 bool arg0rz = false, arg0iz = false;
10541 if ((arg0r && (arg0rz = real_zerop (arg0r)))
10542 || (arg0i && (arg0iz = real_zerop (arg0i))))
10543 {
10544 tree arg1r = fold_unary_loc (loc, REALPART_EXPR, rtype, arg1);
10545 tree arg1i = fold_unary_loc (loc, IMAGPART_EXPR, rtype, arg1);
10546 if (arg0rz && arg1i && real_zerop (arg1i))
10547 {
10548 tree rp = fold_build1_loc (loc, NEGATE_EXPR, rtype,
10549 arg1r ? arg1r
10550 : build1 (REALPART_EXPR, rtype, arg1));
10551 tree ip = arg0i ? arg0i
10552 : build1 (IMAGPART_EXPR, rtype, arg0);
10553 return fold_build2_loc (loc, COMPLEX_EXPR, type, rp, ip);
10554 }
10555 else if (arg0iz && arg1r && real_zerop (arg1r))
10556 {
10557 tree rp = arg0r ? arg0r
10558 : build1 (REALPART_EXPR, rtype, arg0);
10559 tree ip = fold_build1_loc (loc, NEGATE_EXPR, rtype,
10560 arg1i ? arg1i
10561 : build1 (IMAGPART_EXPR, rtype, arg1));
10562 return fold_build2_loc (loc, COMPLEX_EXPR, type, rp, ip);
10563 }
10564 }
10565 }
10566
10567 /* A - B -> A + (-B) if B is easily negatable. */
10568 if (negate_expr_p (arg1)
10569 && !TYPE_OVERFLOW_SANITIZED (type)
10570 && ((FLOAT_TYPE_P (type)
10571 /* Avoid this transformation if B is a positive REAL_CST. */
10572 && (TREE_CODE (arg1) != REAL_CST
10573 || REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg1))))
10574 || INTEGRAL_TYPE_P (type)))
10575 return fold_build2_loc (loc, PLUS_EXPR, type,
10576 fold_convert_loc (loc, type, arg0),
10577 fold_convert_loc (loc, type,
10578 negate_expr (arg1)));
10579
10580 /* Fold &a[i] - &a[j] to i-j. */
10581 if (TREE_CODE (arg0) == ADDR_EXPR
10582 && TREE_CODE (TREE_OPERAND (arg0, 0)) == ARRAY_REF
10583 && TREE_CODE (arg1) == ADDR_EXPR
10584 && TREE_CODE (TREE_OPERAND (arg1, 0)) == ARRAY_REF)
10585 {
10586 tree tem = fold_addr_of_array_ref_difference (loc, type,
10587 TREE_OPERAND (arg0, 0),
10588 TREE_OPERAND (arg1, 0));
10589 if (tem)
10590 return tem;
10591 }
10592
10593 if (FLOAT_TYPE_P (type)
10594 && flag_unsafe_math_optimizations
10595 && (TREE_CODE (arg0) == RDIV_EXPR || TREE_CODE (arg0) == MULT_EXPR)
10596 && (TREE_CODE (arg1) == RDIV_EXPR || TREE_CODE (arg1) == MULT_EXPR)
10597 && (tem = distribute_real_division (loc, code, type, arg0, arg1)))
10598 return tem;
10599
10600 /* Handle (A1 * C1) - (A2 * C2) with A1, A2 or C1, C2 being the same or
10601 one. Make sure the type is not saturating and has the signedness of
10602 the stripped operands, as fold_plusminus_mult_expr will re-associate.
10603 ??? The latter condition should use TYPE_OVERFLOW_* flags instead. */
10604 if ((TREE_CODE (arg0) == MULT_EXPR
10605 || TREE_CODE (arg1) == MULT_EXPR)
10606 && !TYPE_SATURATING (type)
10607 && TYPE_UNSIGNED (type) == TYPE_UNSIGNED (TREE_TYPE (arg0))
10608 && TYPE_UNSIGNED (type) == TYPE_UNSIGNED (TREE_TYPE (arg1))
10609 && (!FLOAT_TYPE_P (type) || flag_associative_math))
10610 {
10611 tree tem = fold_plusminus_mult_expr (loc, code, type, arg0, arg1);
10612 if (tem)
10613 return tem;
10614 }
10615
10616 goto associate;
10617
10618 case MULT_EXPR:
10619 /* (-A) * (-B) -> A * B */
10620 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
10621 return fold_build2_loc (loc, MULT_EXPR, type,
10622 fold_convert_loc (loc, type,
10623 TREE_OPERAND (arg0, 0)),
10624 fold_convert_loc (loc, type,
10625 negate_expr (arg1)));
10626 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
10627 return fold_build2_loc (loc, MULT_EXPR, type,
10628 fold_convert_loc (loc, type,
10629 negate_expr (arg0)),
10630 fold_convert_loc (loc, type,
10631 TREE_OPERAND (arg1, 0)));
10632
10633 if (! FLOAT_TYPE_P (type))
10634 {
10635 /* Transform x * -C into -x * C if x is easily negatable. */
10636 if (TREE_CODE (arg1) == INTEGER_CST
10637 && tree_int_cst_sgn (arg1) == -1
10638 && negate_expr_p (arg0)
10639 && (tem = negate_expr (arg1)) != arg1
10640 && !TREE_OVERFLOW (tem))
10641 return fold_build2_loc (loc, MULT_EXPR, type,
10642 fold_convert_loc (loc, type,
10643 negate_expr (arg0)),
10644 tem);
10645
10646 /* (a * (1 << b)) is (a << b) */
10647 if (TREE_CODE (arg1) == LSHIFT_EXPR
10648 && integer_onep (TREE_OPERAND (arg1, 0)))
10649 return fold_build2_loc (loc, LSHIFT_EXPR, type, op0,
10650 TREE_OPERAND (arg1, 1));
10651 if (TREE_CODE (arg0) == LSHIFT_EXPR
10652 && integer_onep (TREE_OPERAND (arg0, 0)))
10653 return fold_build2_loc (loc, LSHIFT_EXPR, type, op1,
10654 TREE_OPERAND (arg0, 1));
10655
10656 /* (A + A) * C -> A * 2 * C */
10657 if (TREE_CODE (arg0) == PLUS_EXPR
10658 && TREE_CODE (arg1) == INTEGER_CST
10659 && operand_equal_p (TREE_OPERAND (arg0, 0),
10660 TREE_OPERAND (arg0, 1), 0))
10661 return fold_build2_loc (loc, MULT_EXPR, type,
10662 omit_one_operand_loc (loc, type,
10663 TREE_OPERAND (arg0, 0),
10664 TREE_OPERAND (arg0, 1)),
10665 fold_build2_loc (loc, MULT_EXPR, type,
10666 build_int_cst (type, 2) , arg1));
10667
10668 /* ((T) (X /[ex] C)) * C cancels out if the conversion is
10669 sign-changing only. */
10670 if (TREE_CODE (arg1) == INTEGER_CST
10671 && TREE_CODE (arg0) == EXACT_DIV_EXPR
10672 && operand_equal_p (arg1, TREE_OPERAND (arg0, 1), 0))
10673 return fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10674
10675 strict_overflow_p = false;
10676 if (TREE_CODE (arg1) == INTEGER_CST
10677 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
10678 &strict_overflow_p)))
10679 {
10680 if (strict_overflow_p)
10681 fold_overflow_warning (("assuming signed overflow does not "
10682 "occur when simplifying "
10683 "multiplication"),
10684 WARN_STRICT_OVERFLOW_MISC);
10685 return fold_convert_loc (loc, type, tem);
10686 }
10687
10688 /* Optimize z * conj(z) for integer complex numbers. */
10689 if (TREE_CODE (arg0) == CONJ_EXPR
10690 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10691 return fold_mult_zconjz (loc, type, arg1);
10692 if (TREE_CODE (arg1) == CONJ_EXPR
10693 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10694 return fold_mult_zconjz (loc, type, arg0);
10695 }
10696 else
10697 {
10698 /* Convert (C1/X)*C2 into (C1*C2)/X. This transformation may change
10699 the result for floating point types due to rounding so it is applied
10700 only if -fassociative-math was specify. */
10701 if (flag_associative_math
10702 && TREE_CODE (arg0) == RDIV_EXPR
10703 && TREE_CODE (arg1) == REAL_CST
10704 && TREE_CODE (TREE_OPERAND (arg0, 0)) == REAL_CST)
10705 {
10706 tree tem = const_binop (MULT_EXPR, TREE_OPERAND (arg0, 0),
10707 arg1);
10708 if (tem)
10709 return fold_build2_loc (loc, RDIV_EXPR, type, tem,
10710 TREE_OPERAND (arg0, 1));
10711 }
10712
10713 /* Strip sign operations from X in X*X, i.e. -Y*-Y -> Y*Y. */
10714 if (operand_equal_p (arg0, arg1, 0))
10715 {
10716 tree tem = fold_strip_sign_ops (arg0);
10717 if (tem != NULL_TREE)
10718 {
10719 tem = fold_convert_loc (loc, type, tem);
10720 return fold_build2_loc (loc, MULT_EXPR, type, tem, tem);
10721 }
10722 }
10723
10724 /* Fold z * +-I to __complex__ (-+__imag z, +-__real z).
10725 This is not the same for NaNs or if signed zeros are
10726 involved. */
10727 if (!HONOR_NANS (arg0)
10728 && !HONOR_SIGNED_ZEROS (element_mode (arg0))
10729 && COMPLEX_FLOAT_TYPE_P (TREE_TYPE (arg0))
10730 && TREE_CODE (arg1) == COMPLEX_CST
10731 && real_zerop (TREE_REALPART (arg1)))
10732 {
10733 tree rtype = TREE_TYPE (TREE_TYPE (arg0));
10734 if (real_onep (TREE_IMAGPART (arg1)))
10735 return
10736 fold_build2_loc (loc, COMPLEX_EXPR, type,
10737 negate_expr (fold_build1_loc (loc, IMAGPART_EXPR,
10738 rtype, arg0)),
10739 fold_build1_loc (loc, REALPART_EXPR, rtype, arg0));
10740 else if (real_minus_onep (TREE_IMAGPART (arg1)))
10741 return
10742 fold_build2_loc (loc, COMPLEX_EXPR, type,
10743 fold_build1_loc (loc, IMAGPART_EXPR, rtype, arg0),
10744 negate_expr (fold_build1_loc (loc, REALPART_EXPR,
10745 rtype, arg0)));
10746 }
10747
10748 /* Optimize z * conj(z) for floating point complex numbers.
10749 Guarded by flag_unsafe_math_optimizations as non-finite
10750 imaginary components don't produce scalar results. */
10751 if (flag_unsafe_math_optimizations
10752 && TREE_CODE (arg0) == CONJ_EXPR
10753 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
10754 return fold_mult_zconjz (loc, type, arg1);
10755 if (flag_unsafe_math_optimizations
10756 && TREE_CODE (arg1) == CONJ_EXPR
10757 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
10758 return fold_mult_zconjz (loc, type, arg0);
10759
10760 if (flag_unsafe_math_optimizations)
10761 {
10762 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
10763 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
10764
10765 /* Optimizations of root(...)*root(...). */
10766 if (fcode0 == fcode1 && BUILTIN_ROOT_P (fcode0))
10767 {
10768 tree rootfn, arg;
10769 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10770 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10771
10772 /* Optimize sqrt(x)*sqrt(x) as x. */
10773 if (BUILTIN_SQRT_P (fcode0)
10774 && operand_equal_p (arg00, arg10, 0)
10775 && ! HONOR_SNANS (element_mode (type)))
10776 return arg00;
10777
10778 /* Optimize root(x)*root(y) as root(x*y). */
10779 rootfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10780 arg = fold_build2_loc (loc, MULT_EXPR, type, arg00, arg10);
10781 return build_call_expr_loc (loc, rootfn, 1, arg);
10782 }
10783
10784 /* Optimize expN(x)*expN(y) as expN(x+y). */
10785 if (fcode0 == fcode1 && BUILTIN_EXPONENT_P (fcode0))
10786 {
10787 tree expfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10788 tree arg = fold_build2_loc (loc, PLUS_EXPR, type,
10789 CALL_EXPR_ARG (arg0, 0),
10790 CALL_EXPR_ARG (arg1, 0));
10791 return build_call_expr_loc (loc, expfn, 1, arg);
10792 }
10793
10794 /* Optimizations of pow(...)*pow(...). */
10795 if ((fcode0 == BUILT_IN_POW && fcode1 == BUILT_IN_POW)
10796 || (fcode0 == BUILT_IN_POWF && fcode1 == BUILT_IN_POWF)
10797 || (fcode0 == BUILT_IN_POWL && fcode1 == BUILT_IN_POWL))
10798 {
10799 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10800 tree arg01 = CALL_EXPR_ARG (arg0, 1);
10801 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10802 tree arg11 = CALL_EXPR_ARG (arg1, 1);
10803
10804 /* Optimize pow(x,y)*pow(z,y) as pow(x*z,y). */
10805 if (operand_equal_p (arg01, arg11, 0))
10806 {
10807 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10808 tree arg = fold_build2_loc (loc, MULT_EXPR, type,
10809 arg00, arg10);
10810 return build_call_expr_loc (loc, powfn, 2, arg, arg01);
10811 }
10812
10813 /* Optimize pow(x,y)*pow(x,z) as pow(x,y+z). */
10814 if (operand_equal_p (arg00, arg10, 0))
10815 {
10816 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10817 tree arg = fold_build2_loc (loc, PLUS_EXPR, type,
10818 arg01, arg11);
10819 return build_call_expr_loc (loc, powfn, 2, arg00, arg);
10820 }
10821 }
10822
10823 /* Optimize tan(x)*cos(x) as sin(x). */
10824 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_COS)
10825 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_COSF)
10826 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_COSL)
10827 || (fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_TAN)
10828 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_TANF)
10829 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_TANL))
10830 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
10831 CALL_EXPR_ARG (arg1, 0), 0))
10832 {
10833 tree sinfn = mathfn_built_in (type, BUILT_IN_SIN);
10834
10835 if (sinfn != NULL_TREE)
10836 return build_call_expr_loc (loc, sinfn, 1,
10837 CALL_EXPR_ARG (arg0, 0));
10838 }
10839
10840 /* Optimize x*pow(x,c) as pow(x,c+1). */
10841 if (fcode1 == BUILT_IN_POW
10842 || fcode1 == BUILT_IN_POWF
10843 || fcode1 == BUILT_IN_POWL)
10844 {
10845 tree arg10 = CALL_EXPR_ARG (arg1, 0);
10846 tree arg11 = CALL_EXPR_ARG (arg1, 1);
10847 if (TREE_CODE (arg11) == REAL_CST
10848 && !TREE_OVERFLOW (arg11)
10849 && operand_equal_p (arg0, arg10, 0))
10850 {
10851 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
10852 REAL_VALUE_TYPE c;
10853 tree arg;
10854
10855 c = TREE_REAL_CST (arg11);
10856 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
10857 arg = build_real (type, c);
10858 return build_call_expr_loc (loc, powfn, 2, arg0, arg);
10859 }
10860 }
10861
10862 /* Optimize pow(x,c)*x as pow(x,c+1). */
10863 if (fcode0 == BUILT_IN_POW
10864 || fcode0 == BUILT_IN_POWF
10865 || fcode0 == BUILT_IN_POWL)
10866 {
10867 tree arg00 = CALL_EXPR_ARG (arg0, 0);
10868 tree arg01 = CALL_EXPR_ARG (arg0, 1);
10869 if (TREE_CODE (arg01) == REAL_CST
10870 && !TREE_OVERFLOW (arg01)
10871 && operand_equal_p (arg1, arg00, 0))
10872 {
10873 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
10874 REAL_VALUE_TYPE c;
10875 tree arg;
10876
10877 c = TREE_REAL_CST (arg01);
10878 real_arithmetic (&c, PLUS_EXPR, &c, &dconst1);
10879 arg = build_real (type, c);
10880 return build_call_expr_loc (loc, powfn, 2, arg1, arg);
10881 }
10882 }
10883
10884 /* Canonicalize x*x as pow(x,2.0), which is expanded as x*x. */
10885 if (!in_gimple_form
10886 && optimize
10887 && operand_equal_p (arg0, arg1, 0))
10888 {
10889 tree powfn = mathfn_built_in (type, BUILT_IN_POW);
10890
10891 if (powfn)
10892 {
10893 tree arg = build_real (type, dconst2);
10894 return build_call_expr_loc (loc, powfn, 2, arg0, arg);
10895 }
10896 }
10897 }
10898 }
10899 goto associate;
10900
10901 case BIT_IOR_EXPR:
10902 bit_ior:
10903 /* Canonicalize (X & C1) | C2. */
10904 if (TREE_CODE (arg0) == BIT_AND_EXPR
10905 && TREE_CODE (arg1) == INTEGER_CST
10906 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
10907 {
10908 int width = TYPE_PRECISION (type), w;
10909 wide_int c1 = TREE_OPERAND (arg0, 1);
10910 wide_int c2 = arg1;
10911
10912 /* If (C1&C2) == C1, then (X&C1)|C2 becomes (X,C2). */
10913 if ((c1 & c2) == c1)
10914 return omit_one_operand_loc (loc, type, arg1,
10915 TREE_OPERAND (arg0, 0));
10916
10917 wide_int msk = wi::mask (width, false,
10918 TYPE_PRECISION (TREE_TYPE (arg1)));
10919
10920 /* If (C1|C2) == ~0 then (X&C1)|C2 becomes X|C2. */
10921 if (msk.and_not (c1 | c2) == 0)
10922 return fold_build2_loc (loc, BIT_IOR_EXPR, type,
10923 TREE_OPERAND (arg0, 0), arg1);
10924
10925 /* Minimize the number of bits set in C1, i.e. C1 := C1 & ~C2,
10926 unless (C1 & ~C2) | (C2 & C3) for some C3 is a mask of some
10927 mode which allows further optimizations. */
10928 c1 &= msk;
10929 c2 &= msk;
10930 wide_int c3 = c1.and_not (c2);
10931 for (w = BITS_PER_UNIT; w <= width; w <<= 1)
10932 {
10933 wide_int mask = wi::mask (w, false,
10934 TYPE_PRECISION (type));
10935 if (((c1 | c2) & mask) == mask && c1.and_not (mask) == 0)
10936 {
10937 c3 = mask;
10938 break;
10939 }
10940 }
10941
10942 if (c3 != c1)
10943 return fold_build2_loc (loc, BIT_IOR_EXPR, type,
10944 fold_build2_loc (loc, BIT_AND_EXPR, type,
10945 TREE_OPERAND (arg0, 0),
10946 wide_int_to_tree (type,
10947 c3)),
10948 arg1);
10949 }
10950
10951 /* (X & ~Y) | (~X & Y) is X ^ Y */
10952 if (TREE_CODE (arg0) == BIT_AND_EXPR
10953 && TREE_CODE (arg1) == BIT_AND_EXPR)
10954 {
10955 tree a0, a1, l0, l1, n0, n1;
10956
10957 a0 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
10958 a1 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
10959
10960 l0 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
10961 l1 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
10962
10963 n0 = fold_build1_loc (loc, BIT_NOT_EXPR, type, l0);
10964 n1 = fold_build1_loc (loc, BIT_NOT_EXPR, type, l1);
10965
10966 if ((operand_equal_p (n0, a0, 0)
10967 && operand_equal_p (n1, a1, 0))
10968 || (operand_equal_p (n0, a1, 0)
10969 && operand_equal_p (n1, a0, 0)))
10970 return fold_build2_loc (loc, BIT_XOR_EXPR, type, l0, n1);
10971 }
10972
10973 t1 = distribute_bit_expr (loc, code, type, arg0, arg1);
10974 if (t1 != NULL_TREE)
10975 return t1;
10976
10977 /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
10978
10979 This results in more efficient code for machines without a NAND
10980 instruction. Combine will canonicalize to the first form
10981 which will allow use of NAND instructions provided by the
10982 backend if they exist. */
10983 if (TREE_CODE (arg0) == BIT_NOT_EXPR
10984 && TREE_CODE (arg1) == BIT_NOT_EXPR)
10985 {
10986 return
10987 fold_build1_loc (loc, BIT_NOT_EXPR, type,
10988 build2 (BIT_AND_EXPR, type,
10989 fold_convert_loc (loc, type,
10990 TREE_OPERAND (arg0, 0)),
10991 fold_convert_loc (loc, type,
10992 TREE_OPERAND (arg1, 0))));
10993 }
10994
10995 /* See if this can be simplified into a rotate first. If that
10996 is unsuccessful continue in the association code. */
10997 goto bit_rotate;
10998
10999 case BIT_XOR_EXPR:
11000 /* ~X ^ X is -1. */
11001 if (TREE_CODE (arg0) == BIT_NOT_EXPR
11002 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
11003 {
11004 t1 = build_zero_cst (type);
11005 t1 = fold_unary_loc (loc, BIT_NOT_EXPR, type, t1);
11006 return omit_one_operand_loc (loc, type, t1, arg1);
11007 }
11008
11009 /* X ^ ~X is -1. */
11010 if (TREE_CODE (arg1) == BIT_NOT_EXPR
11011 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11012 {
11013 t1 = build_zero_cst (type);
11014 t1 = fold_unary_loc (loc, BIT_NOT_EXPR, type, t1);
11015 return omit_one_operand_loc (loc, type, t1, arg0);
11016 }
11017
11018 /* If we are XORing two BIT_AND_EXPR's, both of which are and'ing
11019 with a constant, and the two constants have no bits in common,
11020 we should treat this as a BIT_IOR_EXPR since this may produce more
11021 simplifications. */
11022 if (TREE_CODE (arg0) == BIT_AND_EXPR
11023 && TREE_CODE (arg1) == BIT_AND_EXPR
11024 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
11025 && TREE_CODE (TREE_OPERAND (arg1, 1)) == INTEGER_CST
11026 && wi::bit_and (TREE_OPERAND (arg0, 1),
11027 TREE_OPERAND (arg1, 1)) == 0)
11028 {
11029 code = BIT_IOR_EXPR;
11030 goto bit_ior;
11031 }
11032
11033 /* (X | Y) ^ X -> Y & ~ X*/
11034 if (TREE_CODE (arg0) == BIT_IOR_EXPR
11035 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
11036 {
11037 tree t2 = TREE_OPERAND (arg0, 1);
11038 t1 = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg1),
11039 arg1);
11040 t1 = fold_build2_loc (loc, BIT_AND_EXPR, type,
11041 fold_convert_loc (loc, type, t2),
11042 fold_convert_loc (loc, type, t1));
11043 return t1;
11044 }
11045
11046 /* (Y | X) ^ X -> Y & ~ X*/
11047 if (TREE_CODE (arg0) == BIT_IOR_EXPR
11048 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
11049 {
11050 tree t2 = TREE_OPERAND (arg0, 0);
11051 t1 = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg1),
11052 arg1);
11053 t1 = fold_build2_loc (loc, BIT_AND_EXPR, type,
11054 fold_convert_loc (loc, type, t2),
11055 fold_convert_loc (loc, type, t1));
11056 return t1;
11057 }
11058
11059 /* X ^ (X | Y) -> Y & ~ X*/
11060 if (TREE_CODE (arg1) == BIT_IOR_EXPR
11061 && operand_equal_p (TREE_OPERAND (arg1, 0), arg0, 0))
11062 {
11063 tree t2 = TREE_OPERAND (arg1, 1);
11064 t1 = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg0),
11065 arg0);
11066 t1 = fold_build2_loc (loc, BIT_AND_EXPR, type,
11067 fold_convert_loc (loc, type, t2),
11068 fold_convert_loc (loc, type, t1));
11069 return t1;
11070 }
11071
11072 /* X ^ (Y | X) -> Y & ~ X*/
11073 if (TREE_CODE (arg1) == BIT_IOR_EXPR
11074 && operand_equal_p (TREE_OPERAND (arg1, 1), arg0, 0))
11075 {
11076 tree t2 = TREE_OPERAND (arg1, 0);
11077 t1 = fold_build1_loc (loc, BIT_NOT_EXPR, TREE_TYPE (arg0),
11078 arg0);
11079 t1 = fold_build2_loc (loc, BIT_AND_EXPR, type,
11080 fold_convert_loc (loc, type, t2),
11081 fold_convert_loc (loc, type, t1));
11082 return t1;
11083 }
11084
11085 /* Convert ~X ^ ~Y to X ^ Y. */
11086 if (TREE_CODE (arg0) == BIT_NOT_EXPR
11087 && TREE_CODE (arg1) == BIT_NOT_EXPR)
11088 return fold_build2_loc (loc, code, type,
11089 fold_convert_loc (loc, type,
11090 TREE_OPERAND (arg0, 0)),
11091 fold_convert_loc (loc, type,
11092 TREE_OPERAND (arg1, 0)));
11093
11094 /* Convert ~X ^ C to X ^ ~C. */
11095 if (TREE_CODE (arg0) == BIT_NOT_EXPR
11096 && TREE_CODE (arg1) == INTEGER_CST)
11097 return fold_build2_loc (loc, code, type,
11098 fold_convert_loc (loc, type,
11099 TREE_OPERAND (arg0, 0)),
11100 fold_build1_loc (loc, BIT_NOT_EXPR, type, arg1));
11101
11102 /* Fold (X & 1) ^ 1 as (X & 1) == 0. */
11103 if (TREE_CODE (arg0) == BIT_AND_EXPR
11104 && INTEGRAL_TYPE_P (type)
11105 && integer_onep (TREE_OPERAND (arg0, 1))
11106 && integer_onep (arg1))
11107 return fold_build2_loc (loc, EQ_EXPR, type, arg0,
11108 build_zero_cst (TREE_TYPE (arg0)));
11109
11110 /* Fold (X & Y) ^ Y as ~X & Y. */
11111 if (TREE_CODE (arg0) == BIT_AND_EXPR
11112 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
11113 {
11114 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
11115 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11116 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11117 fold_convert_loc (loc, type, arg1));
11118 }
11119 /* Fold (X & Y) ^ X as ~Y & X. */
11120 if (TREE_CODE (arg0) == BIT_AND_EXPR
11121 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
11122 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
11123 {
11124 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
11125 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11126 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11127 fold_convert_loc (loc, type, arg1));
11128 }
11129 /* Fold X ^ (X & Y) as X & ~Y. */
11130 if (TREE_CODE (arg1) == BIT_AND_EXPR
11131 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11132 {
11133 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
11134 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11135 fold_convert_loc (loc, type, arg0),
11136 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem));
11137 }
11138 /* Fold X ^ (Y & X) as ~Y & X. */
11139 if (TREE_CODE (arg1) == BIT_AND_EXPR
11140 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
11141 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
11142 {
11143 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
11144 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11145 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11146 fold_convert_loc (loc, type, arg0));
11147 }
11148
11149 /* See if this can be simplified into a rotate first. If that
11150 is unsuccessful continue in the association code. */
11151 goto bit_rotate;
11152
11153 case BIT_AND_EXPR:
11154 /* ~X & X, (X == 0) & X, and !X & X are always zero. */
11155 if ((TREE_CODE (arg0) == BIT_NOT_EXPR
11156 || TREE_CODE (arg0) == TRUTH_NOT_EXPR
11157 || (TREE_CODE (arg0) == EQ_EXPR
11158 && integer_zerop (TREE_OPERAND (arg0, 1))))
11159 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
11160 return omit_one_operand_loc (loc, type, integer_zero_node, arg1);
11161
11162 /* X & ~X , X & (X == 0), and X & !X are always zero. */
11163 if ((TREE_CODE (arg1) == BIT_NOT_EXPR
11164 || TREE_CODE (arg1) == TRUTH_NOT_EXPR
11165 || (TREE_CODE (arg1) == EQ_EXPR
11166 && integer_zerop (TREE_OPERAND (arg1, 1))))
11167 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11168 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
11169
11170 /* Fold (X ^ 1) & 1 as (X & 1) == 0. */
11171 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11172 && INTEGRAL_TYPE_P (type)
11173 && integer_onep (TREE_OPERAND (arg0, 1))
11174 && integer_onep (arg1))
11175 {
11176 tree tem2;
11177 tem = TREE_OPERAND (arg0, 0);
11178 tem2 = fold_convert_loc (loc, TREE_TYPE (tem), arg1);
11179 tem2 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (tem),
11180 tem, tem2);
11181 return fold_build2_loc (loc, EQ_EXPR, type, tem2,
11182 build_zero_cst (TREE_TYPE (tem)));
11183 }
11184 /* Fold ~X & 1 as (X & 1) == 0. */
11185 if (TREE_CODE (arg0) == BIT_NOT_EXPR
11186 && INTEGRAL_TYPE_P (type)
11187 && integer_onep (arg1))
11188 {
11189 tree tem2;
11190 tem = TREE_OPERAND (arg0, 0);
11191 tem2 = fold_convert_loc (loc, TREE_TYPE (tem), arg1);
11192 tem2 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (tem),
11193 tem, tem2);
11194 return fold_build2_loc (loc, EQ_EXPR, type, tem2,
11195 build_zero_cst (TREE_TYPE (tem)));
11196 }
11197 /* Fold !X & 1 as X == 0. */
11198 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
11199 && integer_onep (arg1))
11200 {
11201 tem = TREE_OPERAND (arg0, 0);
11202 return fold_build2_loc (loc, EQ_EXPR, type, tem,
11203 build_zero_cst (TREE_TYPE (tem)));
11204 }
11205
11206 /* Fold (X ^ Y) & Y as ~X & Y. */
11207 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11208 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
11209 {
11210 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
11211 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11212 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11213 fold_convert_loc (loc, type, arg1));
11214 }
11215 /* Fold (X ^ Y) & X as ~Y & X. */
11216 if (TREE_CODE (arg0) == BIT_XOR_EXPR
11217 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
11218 && reorder_operands_p (TREE_OPERAND (arg0, 1), arg1))
11219 {
11220 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
11221 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11222 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11223 fold_convert_loc (loc, type, arg1));
11224 }
11225 /* Fold X & (X ^ Y) as X & ~Y. */
11226 if (TREE_CODE (arg1) == BIT_XOR_EXPR
11227 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11228 {
11229 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
11230 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11231 fold_convert_loc (loc, type, arg0),
11232 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem));
11233 }
11234 /* Fold X & (Y ^ X) as ~Y & X. */
11235 if (TREE_CODE (arg1) == BIT_XOR_EXPR
11236 && operand_equal_p (arg0, TREE_OPERAND (arg1, 1), 0)
11237 && reorder_operands_p (arg0, TREE_OPERAND (arg1, 0)))
11238 {
11239 tem = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
11240 return fold_build2_loc (loc, BIT_AND_EXPR, type,
11241 fold_build1_loc (loc, BIT_NOT_EXPR, type, tem),
11242 fold_convert_loc (loc, type, arg0));
11243 }
11244
11245 /* Fold (X * Y) & -(1 << CST) to X * Y if Y is a constant
11246 multiple of 1 << CST. */
11247 if (TREE_CODE (arg1) == INTEGER_CST)
11248 {
11249 wide_int cst1 = arg1;
11250 wide_int ncst1 = -cst1;
11251 if ((cst1 & ncst1) == ncst1
11252 && multiple_of_p (type, arg0,
11253 wide_int_to_tree (TREE_TYPE (arg1), ncst1)))
11254 return fold_convert_loc (loc, type, arg0);
11255 }
11256
11257 /* Fold (X * CST1) & CST2 to zero if we can, or drop known zero
11258 bits from CST2. */
11259 if (TREE_CODE (arg1) == INTEGER_CST
11260 && TREE_CODE (arg0) == MULT_EXPR
11261 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11262 {
11263 wide_int warg1 = arg1;
11264 wide_int masked = mask_with_tz (type, warg1, TREE_OPERAND (arg0, 1));
11265
11266 if (masked == 0)
11267 return omit_two_operands_loc (loc, type, build_zero_cst (type),
11268 arg0, arg1);
11269 else if (masked != warg1)
11270 {
11271 /* Avoid the transform if arg1 is a mask of some
11272 mode which allows further optimizations. */
11273 int pop = wi::popcount (warg1);
11274 if (!(pop >= BITS_PER_UNIT
11275 && exact_log2 (pop) != -1
11276 && wi::mask (pop, false, warg1.get_precision ()) == warg1))
11277 return fold_build2_loc (loc, code, type, op0,
11278 wide_int_to_tree (type, masked));
11279 }
11280 }
11281
11282 /* For constants M and N, if M == (1LL << cst) - 1 && (N & M) == M,
11283 ((A & N) + B) & M -> (A + B) & M
11284 Similarly if (N & M) == 0,
11285 ((A | N) + B) & M -> (A + B) & M
11286 and for - instead of + (or unary - instead of +)
11287 and/or ^ instead of |.
11288 If B is constant and (B & M) == 0, fold into A & M. */
11289 if (TREE_CODE (arg1) == INTEGER_CST)
11290 {
11291 wide_int cst1 = arg1;
11292 if ((~cst1 != 0) && (cst1 & (cst1 + 1)) == 0
11293 && INTEGRAL_TYPE_P (TREE_TYPE (arg0))
11294 && (TREE_CODE (arg0) == PLUS_EXPR
11295 || TREE_CODE (arg0) == MINUS_EXPR
11296 || TREE_CODE (arg0) == NEGATE_EXPR)
11297 && (TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg0))
11298 || TREE_CODE (TREE_TYPE (arg0)) == INTEGER_TYPE))
11299 {
11300 tree pmop[2];
11301 int which = 0;
11302 wide_int cst0;
11303
11304 /* Now we know that arg0 is (C + D) or (C - D) or
11305 -C and arg1 (M) is == (1LL << cst) - 1.
11306 Store C into PMOP[0] and D into PMOP[1]. */
11307 pmop[0] = TREE_OPERAND (arg0, 0);
11308 pmop[1] = NULL;
11309 if (TREE_CODE (arg0) != NEGATE_EXPR)
11310 {
11311 pmop[1] = TREE_OPERAND (arg0, 1);
11312 which = 1;
11313 }
11314
11315 if ((wi::max_value (TREE_TYPE (arg0)) & cst1) != cst1)
11316 which = -1;
11317
11318 for (; which >= 0; which--)
11319 switch (TREE_CODE (pmop[which]))
11320 {
11321 case BIT_AND_EXPR:
11322 case BIT_IOR_EXPR:
11323 case BIT_XOR_EXPR:
11324 if (TREE_CODE (TREE_OPERAND (pmop[which], 1))
11325 != INTEGER_CST)
11326 break;
11327 cst0 = TREE_OPERAND (pmop[which], 1);
11328 cst0 &= cst1;
11329 if (TREE_CODE (pmop[which]) == BIT_AND_EXPR)
11330 {
11331 if (cst0 != cst1)
11332 break;
11333 }
11334 else if (cst0 != 0)
11335 break;
11336 /* If C or D is of the form (A & N) where
11337 (N & M) == M, or of the form (A | N) or
11338 (A ^ N) where (N & M) == 0, replace it with A. */
11339 pmop[which] = TREE_OPERAND (pmop[which], 0);
11340 break;
11341 case INTEGER_CST:
11342 /* If C or D is a N where (N & M) == 0, it can be
11343 omitted (assumed 0). */
11344 if ((TREE_CODE (arg0) == PLUS_EXPR
11345 || (TREE_CODE (arg0) == MINUS_EXPR && which == 0))
11346 && (cst1 & pmop[which]) == 0)
11347 pmop[which] = NULL;
11348 break;
11349 default:
11350 break;
11351 }
11352
11353 /* Only build anything new if we optimized one or both arguments
11354 above. */
11355 if (pmop[0] != TREE_OPERAND (arg0, 0)
11356 || (TREE_CODE (arg0) != NEGATE_EXPR
11357 && pmop[1] != TREE_OPERAND (arg0, 1)))
11358 {
11359 tree utype = TREE_TYPE (arg0);
11360 if (! TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg0)))
11361 {
11362 /* Perform the operations in a type that has defined
11363 overflow behavior. */
11364 utype = unsigned_type_for (TREE_TYPE (arg0));
11365 if (pmop[0] != NULL)
11366 pmop[0] = fold_convert_loc (loc, utype, pmop[0]);
11367 if (pmop[1] != NULL)
11368 pmop[1] = fold_convert_loc (loc, utype, pmop[1]);
11369 }
11370
11371 if (TREE_CODE (arg0) == NEGATE_EXPR)
11372 tem = fold_build1_loc (loc, NEGATE_EXPR, utype, pmop[0]);
11373 else if (TREE_CODE (arg0) == PLUS_EXPR)
11374 {
11375 if (pmop[0] != NULL && pmop[1] != NULL)
11376 tem = fold_build2_loc (loc, PLUS_EXPR, utype,
11377 pmop[0], pmop[1]);
11378 else if (pmop[0] != NULL)
11379 tem = pmop[0];
11380 else if (pmop[1] != NULL)
11381 tem = pmop[1];
11382 else
11383 return build_int_cst (type, 0);
11384 }
11385 else if (pmop[0] == NULL)
11386 tem = fold_build1_loc (loc, NEGATE_EXPR, utype, pmop[1]);
11387 else
11388 tem = fold_build2_loc (loc, MINUS_EXPR, utype,
11389 pmop[0], pmop[1]);
11390 /* TEM is now the new binary +, - or unary - replacement. */
11391 tem = fold_build2_loc (loc, BIT_AND_EXPR, utype, tem,
11392 fold_convert_loc (loc, utype, arg1));
11393 return fold_convert_loc (loc, type, tem);
11394 }
11395 }
11396 }
11397
11398 t1 = distribute_bit_expr (loc, code, type, arg0, arg1);
11399 if (t1 != NULL_TREE)
11400 return t1;
11401 /* Simplify ((int)c & 0377) into (int)c, if c is unsigned char. */
11402 if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR
11403 && TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0))))
11404 {
11405 prec = element_precision (TREE_TYPE (TREE_OPERAND (arg0, 0)));
11406
11407 wide_int mask = wide_int::from (arg1, prec, UNSIGNED);
11408 if (mask == -1)
11409 return
11410 fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
11411 }
11412
11413 /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
11414
11415 This results in more efficient code for machines without a NOR
11416 instruction. Combine will canonicalize to the first form
11417 which will allow use of NOR instructions provided by the
11418 backend if they exist. */
11419 if (TREE_CODE (arg0) == BIT_NOT_EXPR
11420 && TREE_CODE (arg1) == BIT_NOT_EXPR)
11421 {
11422 return fold_build1_loc (loc, BIT_NOT_EXPR, type,
11423 build2 (BIT_IOR_EXPR, type,
11424 fold_convert_loc (loc, type,
11425 TREE_OPERAND (arg0, 0)),
11426 fold_convert_loc (loc, type,
11427 TREE_OPERAND (arg1, 0))));
11428 }
11429
11430 /* If arg0 is derived from the address of an object or function, we may
11431 be able to fold this expression using the object or function's
11432 alignment. */
11433 if (POINTER_TYPE_P (TREE_TYPE (arg0)) && tree_fits_uhwi_p (arg1))
11434 {
11435 unsigned HOST_WIDE_INT modulus, residue;
11436 unsigned HOST_WIDE_INT low = tree_to_uhwi (arg1);
11437
11438 modulus = get_pointer_modulus_and_residue (arg0, &residue,
11439 integer_onep (arg1));
11440
11441 /* This works because modulus is a power of 2. If this weren't the
11442 case, we'd have to replace it by its greatest power-of-2
11443 divisor: modulus & -modulus. */
11444 if (low < modulus)
11445 return build_int_cst (type, residue & low);
11446 }
11447
11448 goto associate;
11449
11450 case RDIV_EXPR:
11451 /* Don't touch a floating-point divide by zero unless the mode
11452 of the constant can represent infinity. */
11453 if (TREE_CODE (arg1) == REAL_CST
11454 && !MODE_HAS_INFINITIES (TYPE_MODE (TREE_TYPE (arg1)))
11455 && real_zerop (arg1))
11456 return NULL_TREE;
11457
11458 /* (-A) / (-B) -> A / B */
11459 if (TREE_CODE (arg0) == NEGATE_EXPR && negate_expr_p (arg1))
11460 return fold_build2_loc (loc, RDIV_EXPR, type,
11461 TREE_OPERAND (arg0, 0),
11462 negate_expr (arg1));
11463 if (TREE_CODE (arg1) == NEGATE_EXPR && negate_expr_p (arg0))
11464 return fold_build2_loc (loc, RDIV_EXPR, type,
11465 negate_expr (arg0),
11466 TREE_OPERAND (arg1, 0));
11467
11468 /* Convert A/B/C to A/(B*C). */
11469 if (flag_reciprocal_math
11470 && TREE_CODE (arg0) == RDIV_EXPR)
11471 return fold_build2_loc (loc, RDIV_EXPR, type, TREE_OPERAND (arg0, 0),
11472 fold_build2_loc (loc, MULT_EXPR, type,
11473 TREE_OPERAND (arg0, 1), arg1));
11474
11475 /* Convert A/(B/C) to (A/B)*C. */
11476 if (flag_reciprocal_math
11477 && TREE_CODE (arg1) == RDIV_EXPR)
11478 return fold_build2_loc (loc, MULT_EXPR, type,
11479 fold_build2_loc (loc, RDIV_EXPR, type, arg0,
11480 TREE_OPERAND (arg1, 0)),
11481 TREE_OPERAND (arg1, 1));
11482
11483 /* Convert C1/(X*C2) into (C1/C2)/X. */
11484 if (flag_reciprocal_math
11485 && TREE_CODE (arg1) == MULT_EXPR
11486 && TREE_CODE (arg0) == REAL_CST
11487 && TREE_CODE (TREE_OPERAND (arg1, 1)) == REAL_CST)
11488 {
11489 tree tem = const_binop (RDIV_EXPR, arg0,
11490 TREE_OPERAND (arg1, 1));
11491 if (tem)
11492 return fold_build2_loc (loc, RDIV_EXPR, type, tem,
11493 TREE_OPERAND (arg1, 0));
11494 }
11495
11496 if (flag_unsafe_math_optimizations)
11497 {
11498 enum built_in_function fcode0 = builtin_mathfn_code (arg0);
11499 enum built_in_function fcode1 = builtin_mathfn_code (arg1);
11500
11501 /* Optimize sin(x)/cos(x) as tan(x). */
11502 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_COS)
11503 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_COSF)
11504 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_COSL))
11505 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
11506 CALL_EXPR_ARG (arg1, 0), 0))
11507 {
11508 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
11509
11510 if (tanfn != NULL_TREE)
11511 return build_call_expr_loc (loc, tanfn, 1, CALL_EXPR_ARG (arg0, 0));
11512 }
11513
11514 /* Optimize cos(x)/sin(x) as 1.0/tan(x). */
11515 if (((fcode0 == BUILT_IN_COS && fcode1 == BUILT_IN_SIN)
11516 || (fcode0 == BUILT_IN_COSF && fcode1 == BUILT_IN_SINF)
11517 || (fcode0 == BUILT_IN_COSL && fcode1 == BUILT_IN_SINL))
11518 && operand_equal_p (CALL_EXPR_ARG (arg0, 0),
11519 CALL_EXPR_ARG (arg1, 0), 0))
11520 {
11521 tree tanfn = mathfn_built_in (type, BUILT_IN_TAN);
11522
11523 if (tanfn != NULL_TREE)
11524 {
11525 tree tmp = build_call_expr_loc (loc, tanfn, 1,
11526 CALL_EXPR_ARG (arg0, 0));
11527 return fold_build2_loc (loc, RDIV_EXPR, type,
11528 build_real (type, dconst1), tmp);
11529 }
11530 }
11531
11532 /* Optimize sin(x)/tan(x) as cos(x) if we don't care about
11533 NaNs or Infinities. */
11534 if (((fcode0 == BUILT_IN_SIN && fcode1 == BUILT_IN_TAN)
11535 || (fcode0 == BUILT_IN_SINF && fcode1 == BUILT_IN_TANF)
11536 || (fcode0 == BUILT_IN_SINL && fcode1 == BUILT_IN_TANL)))
11537 {
11538 tree arg00 = CALL_EXPR_ARG (arg0, 0);
11539 tree arg01 = CALL_EXPR_ARG (arg1, 0);
11540
11541 if (! HONOR_NANS (arg00)
11542 && ! HONOR_INFINITIES (element_mode (arg00))
11543 && operand_equal_p (arg00, arg01, 0))
11544 {
11545 tree cosfn = mathfn_built_in (type, BUILT_IN_COS);
11546
11547 if (cosfn != NULL_TREE)
11548 return build_call_expr_loc (loc, cosfn, 1, arg00);
11549 }
11550 }
11551
11552 /* Optimize tan(x)/sin(x) as 1.0/cos(x) if we don't care about
11553 NaNs or Infinities. */
11554 if (((fcode0 == BUILT_IN_TAN && fcode1 == BUILT_IN_SIN)
11555 || (fcode0 == BUILT_IN_TANF && fcode1 == BUILT_IN_SINF)
11556 || (fcode0 == BUILT_IN_TANL && fcode1 == BUILT_IN_SINL)))
11557 {
11558 tree arg00 = CALL_EXPR_ARG (arg0, 0);
11559 tree arg01 = CALL_EXPR_ARG (arg1, 0);
11560
11561 if (! HONOR_NANS (arg00)
11562 && ! HONOR_INFINITIES (element_mode (arg00))
11563 && operand_equal_p (arg00, arg01, 0))
11564 {
11565 tree cosfn = mathfn_built_in (type, BUILT_IN_COS);
11566
11567 if (cosfn != NULL_TREE)
11568 {
11569 tree tmp = build_call_expr_loc (loc, cosfn, 1, arg00);
11570 return fold_build2_loc (loc, RDIV_EXPR, type,
11571 build_real (type, dconst1),
11572 tmp);
11573 }
11574 }
11575 }
11576
11577 /* Optimize pow(x,c)/x as pow(x,c-1). */
11578 if (fcode0 == BUILT_IN_POW
11579 || fcode0 == BUILT_IN_POWF
11580 || fcode0 == BUILT_IN_POWL)
11581 {
11582 tree arg00 = CALL_EXPR_ARG (arg0, 0);
11583 tree arg01 = CALL_EXPR_ARG (arg0, 1);
11584 if (TREE_CODE (arg01) == REAL_CST
11585 && !TREE_OVERFLOW (arg01)
11586 && operand_equal_p (arg1, arg00, 0))
11587 {
11588 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg0), 0);
11589 REAL_VALUE_TYPE c;
11590 tree arg;
11591
11592 c = TREE_REAL_CST (arg01);
11593 real_arithmetic (&c, MINUS_EXPR, &c, &dconst1);
11594 arg = build_real (type, c);
11595 return build_call_expr_loc (loc, powfn, 2, arg1, arg);
11596 }
11597 }
11598
11599 /* Optimize a/root(b/c) into a*root(c/b). */
11600 if (BUILTIN_ROOT_P (fcode1))
11601 {
11602 tree rootarg = CALL_EXPR_ARG (arg1, 0);
11603
11604 if (TREE_CODE (rootarg) == RDIV_EXPR)
11605 {
11606 tree rootfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11607 tree b = TREE_OPERAND (rootarg, 0);
11608 tree c = TREE_OPERAND (rootarg, 1);
11609
11610 tree tmp = fold_build2_loc (loc, RDIV_EXPR, type, c, b);
11611
11612 tmp = build_call_expr_loc (loc, rootfn, 1, tmp);
11613 return fold_build2_loc (loc, MULT_EXPR, type, arg0, tmp);
11614 }
11615 }
11616
11617 /* Optimize x/expN(y) into x*expN(-y). */
11618 if (BUILTIN_EXPONENT_P (fcode1))
11619 {
11620 tree expfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11621 tree arg = negate_expr (CALL_EXPR_ARG (arg1, 0));
11622 arg1 = build_call_expr_loc (loc,
11623 expfn, 1,
11624 fold_convert_loc (loc, type, arg));
11625 return fold_build2_loc (loc, MULT_EXPR, type, arg0, arg1);
11626 }
11627
11628 /* Optimize x/pow(y,z) into x*pow(y,-z). */
11629 if (fcode1 == BUILT_IN_POW
11630 || fcode1 == BUILT_IN_POWF
11631 || fcode1 == BUILT_IN_POWL)
11632 {
11633 tree powfn = TREE_OPERAND (CALL_EXPR_FN (arg1), 0);
11634 tree arg10 = CALL_EXPR_ARG (arg1, 0);
11635 tree arg11 = CALL_EXPR_ARG (arg1, 1);
11636 tree neg11 = fold_convert_loc (loc, type,
11637 negate_expr (arg11));
11638 arg1 = build_call_expr_loc (loc, powfn, 2, arg10, neg11);
11639 return fold_build2_loc (loc, MULT_EXPR, type, arg0, arg1);
11640 }
11641 }
11642 return NULL_TREE;
11643
11644 case TRUNC_DIV_EXPR:
11645 /* Optimize (X & (-A)) / A where A is a power of 2,
11646 to X >> log2(A) */
11647 if (TREE_CODE (arg0) == BIT_AND_EXPR
11648 && !TYPE_UNSIGNED (type) && TREE_CODE (arg1) == INTEGER_CST
11649 && integer_pow2p (arg1) && tree_int_cst_sgn (arg1) > 0)
11650 {
11651 tree sum = fold_binary_loc (loc, PLUS_EXPR, TREE_TYPE (arg1),
11652 arg1, TREE_OPERAND (arg0, 1));
11653 if (sum && integer_zerop (sum)) {
11654 tree pow2 = build_int_cst (integer_type_node,
11655 wi::exact_log2 (arg1));
11656 return fold_build2_loc (loc, RSHIFT_EXPR, type,
11657 TREE_OPERAND (arg0, 0), pow2);
11658 }
11659 }
11660
11661 /* Fall through */
11662
11663 case FLOOR_DIV_EXPR:
11664 /* Simplify A / (B << N) where A and B are positive and B is
11665 a power of 2, to A >> (N + log2(B)). */
11666 strict_overflow_p = false;
11667 if (TREE_CODE (arg1) == LSHIFT_EXPR
11668 && (TYPE_UNSIGNED (type)
11669 || tree_expr_nonnegative_warnv_p (op0, &strict_overflow_p)))
11670 {
11671 tree sval = TREE_OPERAND (arg1, 0);
11672 if (integer_pow2p (sval) && tree_int_cst_sgn (sval) > 0)
11673 {
11674 tree sh_cnt = TREE_OPERAND (arg1, 1);
11675 tree pow2 = build_int_cst (TREE_TYPE (sh_cnt),
11676 wi::exact_log2 (sval));
11677
11678 if (strict_overflow_p)
11679 fold_overflow_warning (("assuming signed overflow does not "
11680 "occur when simplifying A / (B << N)"),
11681 WARN_STRICT_OVERFLOW_MISC);
11682
11683 sh_cnt = fold_build2_loc (loc, PLUS_EXPR, TREE_TYPE (sh_cnt),
11684 sh_cnt, pow2);
11685 return fold_build2_loc (loc, RSHIFT_EXPR, type,
11686 fold_convert_loc (loc, type, arg0), sh_cnt);
11687 }
11688 }
11689
11690 /* Fall through */
11691
11692 case ROUND_DIV_EXPR:
11693 case CEIL_DIV_EXPR:
11694 case EXACT_DIV_EXPR:
11695 if (integer_zerop (arg1))
11696 return NULL_TREE;
11697
11698 /* Convert -A / -B to A / B when the type is signed and overflow is
11699 undefined. */
11700 if ((!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
11701 && TREE_CODE (arg0) == NEGATE_EXPR
11702 && negate_expr_p (arg1))
11703 {
11704 if (INTEGRAL_TYPE_P (type))
11705 fold_overflow_warning (("assuming signed overflow does not occur "
11706 "when distributing negation across "
11707 "division"),
11708 WARN_STRICT_OVERFLOW_MISC);
11709 return fold_build2_loc (loc, code, type,
11710 fold_convert_loc (loc, type,
11711 TREE_OPERAND (arg0, 0)),
11712 fold_convert_loc (loc, type,
11713 negate_expr (arg1)));
11714 }
11715 if ((!INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
11716 && TREE_CODE (arg1) == NEGATE_EXPR
11717 && negate_expr_p (arg0))
11718 {
11719 if (INTEGRAL_TYPE_P (type))
11720 fold_overflow_warning (("assuming signed overflow does not occur "
11721 "when distributing negation across "
11722 "division"),
11723 WARN_STRICT_OVERFLOW_MISC);
11724 return fold_build2_loc (loc, code, type,
11725 fold_convert_loc (loc, type,
11726 negate_expr (arg0)),
11727 fold_convert_loc (loc, type,
11728 TREE_OPERAND (arg1, 0)));
11729 }
11730
11731 /* If arg0 is a multiple of arg1, then rewrite to the fastest div
11732 operation, EXACT_DIV_EXPR.
11733
11734 Note that only CEIL_DIV_EXPR and FLOOR_DIV_EXPR are rewritten now.
11735 At one time others generated faster code, it's not clear if they do
11736 after the last round to changes to the DIV code in expmed.c. */
11737 if ((code == CEIL_DIV_EXPR || code == FLOOR_DIV_EXPR)
11738 && multiple_of_p (type, arg0, arg1))
11739 return fold_build2_loc (loc, EXACT_DIV_EXPR, type, arg0, arg1);
11740
11741 strict_overflow_p = false;
11742 if (TREE_CODE (arg1) == INTEGER_CST
11743 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
11744 &strict_overflow_p)))
11745 {
11746 if (strict_overflow_p)
11747 fold_overflow_warning (("assuming signed overflow does not occur "
11748 "when simplifying division"),
11749 WARN_STRICT_OVERFLOW_MISC);
11750 return fold_convert_loc (loc, type, tem);
11751 }
11752
11753 return NULL_TREE;
11754
11755 case CEIL_MOD_EXPR:
11756 case FLOOR_MOD_EXPR:
11757 case ROUND_MOD_EXPR:
11758 case TRUNC_MOD_EXPR:
11759 strict_overflow_p = false;
11760 if (TREE_CODE (arg1) == INTEGER_CST
11761 && 0 != (tem = extract_muldiv (op0, arg1, code, NULL_TREE,
11762 &strict_overflow_p)))
11763 {
11764 if (strict_overflow_p)
11765 fold_overflow_warning (("assuming signed overflow does not occur "
11766 "when simplifying modulus"),
11767 WARN_STRICT_OVERFLOW_MISC);
11768 return fold_convert_loc (loc, type, tem);
11769 }
11770
11771 return NULL_TREE;
11772
11773 case LROTATE_EXPR:
11774 case RROTATE_EXPR:
11775 case RSHIFT_EXPR:
11776 case LSHIFT_EXPR:
11777 /* Since negative shift count is not well-defined,
11778 don't try to compute it in the compiler. */
11779 if (TREE_CODE (arg1) == INTEGER_CST && tree_int_cst_sgn (arg1) < 0)
11780 return NULL_TREE;
11781
11782 prec = element_precision (type);
11783
11784 /* Turn (a OP c1) OP c2 into a OP (c1+c2). */
11785 if (TREE_CODE (op0) == code && tree_fits_uhwi_p (arg1)
11786 && tree_to_uhwi (arg1) < prec
11787 && tree_fits_uhwi_p (TREE_OPERAND (arg0, 1))
11788 && tree_to_uhwi (TREE_OPERAND (arg0, 1)) < prec)
11789 {
11790 unsigned int low = (tree_to_uhwi (TREE_OPERAND (arg0, 1))
11791 + tree_to_uhwi (arg1));
11792
11793 /* Deal with a OP (c1 + c2) being undefined but (a OP c1) OP c2
11794 being well defined. */
11795 if (low >= prec)
11796 {
11797 if (code == LROTATE_EXPR || code == RROTATE_EXPR)
11798 low = low % prec;
11799 else if (TYPE_UNSIGNED (type) || code == LSHIFT_EXPR)
11800 return omit_one_operand_loc (loc, type, build_zero_cst (type),
11801 TREE_OPERAND (arg0, 0));
11802 else
11803 low = prec - 1;
11804 }
11805
11806 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0),
11807 build_int_cst (TREE_TYPE (arg1), low));
11808 }
11809
11810 /* Transform (x >> c) << c into x & (-1<<c), or transform (x << c) >> c
11811 into x & ((unsigned)-1 >> c) for unsigned types. */
11812 if (((code == LSHIFT_EXPR && TREE_CODE (arg0) == RSHIFT_EXPR)
11813 || (TYPE_UNSIGNED (type)
11814 && code == RSHIFT_EXPR && TREE_CODE (arg0) == LSHIFT_EXPR))
11815 && tree_fits_uhwi_p (arg1)
11816 && tree_to_uhwi (arg1) < prec
11817 && tree_fits_uhwi_p (TREE_OPERAND (arg0, 1))
11818 && tree_to_uhwi (TREE_OPERAND (arg0, 1)) < prec)
11819 {
11820 HOST_WIDE_INT low0 = tree_to_uhwi (TREE_OPERAND (arg0, 1));
11821 HOST_WIDE_INT low1 = tree_to_uhwi (arg1);
11822 tree lshift;
11823 tree arg00;
11824
11825 if (low0 == low1)
11826 {
11827 arg00 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
11828
11829 lshift = build_minus_one_cst (type);
11830 lshift = const_binop (code, lshift, arg1);
11831
11832 return fold_build2_loc (loc, BIT_AND_EXPR, type, arg00, lshift);
11833 }
11834 }
11835
11836 /* If we have a rotate of a bit operation with the rotate count and
11837 the second operand of the bit operation both constant,
11838 permute the two operations. */
11839 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
11840 && (TREE_CODE (arg0) == BIT_AND_EXPR
11841 || TREE_CODE (arg0) == BIT_IOR_EXPR
11842 || TREE_CODE (arg0) == BIT_XOR_EXPR)
11843 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11844 return fold_build2_loc (loc, TREE_CODE (arg0), type,
11845 fold_build2_loc (loc, code, type,
11846 TREE_OPERAND (arg0, 0), arg1),
11847 fold_build2_loc (loc, code, type,
11848 TREE_OPERAND (arg0, 1), arg1));
11849
11850 /* Two consecutive rotates adding up to the some integer
11851 multiple of the precision of the type can be ignored. */
11852 if (code == RROTATE_EXPR && TREE_CODE (arg1) == INTEGER_CST
11853 && TREE_CODE (arg0) == RROTATE_EXPR
11854 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
11855 && wi::umod_trunc (wi::add (arg1, TREE_OPERAND (arg0, 1)),
11856 prec) == 0)
11857 return TREE_OPERAND (arg0, 0);
11858
11859 /* Fold (X & C2) << C1 into (X << C1) & (C2 << C1)
11860 (X & C2) >> C1 into (X >> C1) & (C2 >> C1)
11861 if the latter can be further optimized. */
11862 if ((code == LSHIFT_EXPR || code == RSHIFT_EXPR)
11863 && TREE_CODE (arg0) == BIT_AND_EXPR
11864 && TREE_CODE (arg1) == INTEGER_CST
11865 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
11866 {
11867 tree mask = fold_build2_loc (loc, code, type,
11868 fold_convert_loc (loc, type,
11869 TREE_OPERAND (arg0, 1)),
11870 arg1);
11871 tree shift = fold_build2_loc (loc, code, type,
11872 fold_convert_loc (loc, type,
11873 TREE_OPERAND (arg0, 0)),
11874 arg1);
11875 tem = fold_binary_loc (loc, BIT_AND_EXPR, type, shift, mask);
11876 if (tem)
11877 return tem;
11878 }
11879
11880 return NULL_TREE;
11881
11882 case MIN_EXPR:
11883 tem = fold_minmax (loc, MIN_EXPR, type, arg0, arg1);
11884 if (tem)
11885 return tem;
11886 goto associate;
11887
11888 case MAX_EXPR:
11889 tem = fold_minmax (loc, MAX_EXPR, type, arg0, arg1);
11890 if (tem)
11891 return tem;
11892 goto associate;
11893
11894 case TRUTH_ANDIF_EXPR:
11895 /* Note that the operands of this must be ints
11896 and their values must be 0 or 1.
11897 ("true" is a fixed value perhaps depending on the language.) */
11898 /* If first arg is constant zero, return it. */
11899 if (integer_zerop (arg0))
11900 return fold_convert_loc (loc, type, arg0);
11901 case TRUTH_AND_EXPR:
11902 /* If either arg is constant true, drop it. */
11903 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
11904 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
11905 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1)
11906 /* Preserve sequence points. */
11907 && (code != TRUTH_ANDIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
11908 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
11909 /* If second arg is constant zero, result is zero, but first arg
11910 must be evaluated. */
11911 if (integer_zerop (arg1))
11912 return omit_one_operand_loc (loc, type, arg1, arg0);
11913 /* Likewise for first arg, but note that only the TRUTH_AND_EXPR
11914 case will be handled here. */
11915 if (integer_zerop (arg0))
11916 return omit_one_operand_loc (loc, type, arg0, arg1);
11917
11918 /* !X && X is always false. */
11919 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
11920 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
11921 return omit_one_operand_loc (loc, type, integer_zero_node, arg1);
11922 /* X && !X is always false. */
11923 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
11924 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11925 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
11926
11927 /* A < X && A + 1 > Y ==> A < X && A >= Y. Normally A + 1 > Y
11928 means A >= Y && A != MAX, but in this case we know that
11929 A < X <= MAX. */
11930
11931 if (!TREE_SIDE_EFFECTS (arg0)
11932 && !TREE_SIDE_EFFECTS (arg1))
11933 {
11934 tem = fold_to_nonsharp_ineq_using_bound (loc, arg0, arg1);
11935 if (tem && !operand_equal_p (tem, arg0, 0))
11936 return fold_build2_loc (loc, code, type, tem, arg1);
11937
11938 tem = fold_to_nonsharp_ineq_using_bound (loc, arg1, arg0);
11939 if (tem && !operand_equal_p (tem, arg1, 0))
11940 return fold_build2_loc (loc, code, type, arg0, tem);
11941 }
11942
11943 if ((tem = fold_truth_andor (loc, code, type, arg0, arg1, op0, op1))
11944 != NULL_TREE)
11945 return tem;
11946
11947 return NULL_TREE;
11948
11949 case TRUTH_ORIF_EXPR:
11950 /* Note that the operands of this must be ints
11951 and their values must be 0 or true.
11952 ("true" is a fixed value perhaps depending on the language.) */
11953 /* If first arg is constant true, return it. */
11954 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
11955 return fold_convert_loc (loc, type, arg0);
11956 case TRUTH_OR_EXPR:
11957 /* If either arg is constant zero, drop it. */
11958 if (TREE_CODE (arg0) == INTEGER_CST && integer_zerop (arg0))
11959 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg1));
11960 if (TREE_CODE (arg1) == INTEGER_CST && integer_zerop (arg1)
11961 /* Preserve sequence points. */
11962 && (code != TRUTH_ORIF_EXPR || ! TREE_SIDE_EFFECTS (arg0)))
11963 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
11964 /* If second arg is constant true, result is true, but we must
11965 evaluate first arg. */
11966 if (TREE_CODE (arg1) == INTEGER_CST && ! integer_zerop (arg1))
11967 return omit_one_operand_loc (loc, type, arg1, arg0);
11968 /* Likewise for first arg, but note this only occurs here for
11969 TRUTH_OR_EXPR. */
11970 if (TREE_CODE (arg0) == INTEGER_CST && ! integer_zerop (arg0))
11971 return omit_one_operand_loc (loc, type, arg0, arg1);
11972
11973 /* !X || X is always true. */
11974 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
11975 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
11976 return omit_one_operand_loc (loc, type, integer_one_node, arg1);
11977 /* X || !X is always true. */
11978 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
11979 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
11980 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
11981
11982 /* (X && !Y) || (!X && Y) is X ^ Y */
11983 if (TREE_CODE (arg0) == TRUTH_AND_EXPR
11984 && TREE_CODE (arg1) == TRUTH_AND_EXPR)
11985 {
11986 tree a0, a1, l0, l1, n0, n1;
11987
11988 a0 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 0));
11989 a1 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1));
11990
11991 l0 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 0));
11992 l1 = fold_convert_loc (loc, type, TREE_OPERAND (arg0, 1));
11993
11994 n0 = fold_build1_loc (loc, TRUTH_NOT_EXPR, type, l0);
11995 n1 = fold_build1_loc (loc, TRUTH_NOT_EXPR, type, l1);
11996
11997 if ((operand_equal_p (n0, a0, 0)
11998 && operand_equal_p (n1, a1, 0))
11999 || (operand_equal_p (n0, a1, 0)
12000 && operand_equal_p (n1, a0, 0)))
12001 return fold_build2_loc (loc, TRUTH_XOR_EXPR, type, l0, n1);
12002 }
12003
12004 if ((tem = fold_truth_andor (loc, code, type, arg0, arg1, op0, op1))
12005 != NULL_TREE)
12006 return tem;
12007
12008 return NULL_TREE;
12009
12010 case TRUTH_XOR_EXPR:
12011 /* If the second arg is constant zero, drop it. */
12012 if (integer_zerop (arg1))
12013 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12014 /* If the second arg is constant true, this is a logical inversion. */
12015 if (integer_onep (arg1))
12016 {
12017 tem = invert_truthvalue_loc (loc, arg0);
12018 return non_lvalue_loc (loc, fold_convert_loc (loc, type, tem));
12019 }
12020 /* Identical arguments cancel to zero. */
12021 if (operand_equal_p (arg0, arg1, 0))
12022 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
12023
12024 /* !X ^ X is always true. */
12025 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR
12026 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0))
12027 return omit_one_operand_loc (loc, type, integer_one_node, arg1);
12028
12029 /* X ^ !X is always true. */
12030 if (TREE_CODE (arg1) == TRUTH_NOT_EXPR
12031 && operand_equal_p (arg0, TREE_OPERAND (arg1, 0), 0))
12032 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
12033
12034 return NULL_TREE;
12035
12036 case EQ_EXPR:
12037 case NE_EXPR:
12038 STRIP_NOPS (arg0);
12039 STRIP_NOPS (arg1);
12040
12041 tem = fold_comparison (loc, code, type, op0, op1);
12042 if (tem != NULL_TREE)
12043 return tem;
12044
12045 /* bool_var != 0 becomes bool_var. */
12046 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_zerop (arg1)
12047 && code == NE_EXPR)
12048 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12049
12050 /* bool_var == 1 becomes bool_var. */
12051 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_onep (arg1)
12052 && code == EQ_EXPR)
12053 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12054
12055 /* bool_var != 1 becomes !bool_var. */
12056 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_onep (arg1)
12057 && code == NE_EXPR)
12058 return fold_convert_loc (loc, type,
12059 fold_build1_loc (loc, TRUTH_NOT_EXPR,
12060 TREE_TYPE (arg0), arg0));
12061
12062 /* bool_var == 0 becomes !bool_var. */
12063 if (TREE_CODE (TREE_TYPE (arg0)) == BOOLEAN_TYPE && integer_zerop (arg1)
12064 && code == EQ_EXPR)
12065 return fold_convert_loc (loc, type,
12066 fold_build1_loc (loc, TRUTH_NOT_EXPR,
12067 TREE_TYPE (arg0), arg0));
12068
12069 /* !exp != 0 becomes !exp */
12070 if (TREE_CODE (arg0) == TRUTH_NOT_EXPR && integer_zerop (arg1)
12071 && code == NE_EXPR)
12072 return non_lvalue_loc (loc, fold_convert_loc (loc, type, arg0));
12073
12074 /* If this is an equality comparison of the address of two non-weak,
12075 unaliased symbols neither of which are extern (since we do not
12076 have access to attributes for externs), then we know the result. */
12077 if (TREE_CODE (arg0) == ADDR_EXPR
12078 && DECL_P (TREE_OPERAND (arg0, 0))
12079 && TREE_CODE (arg1) == ADDR_EXPR
12080 && DECL_P (TREE_OPERAND (arg1, 0)))
12081 {
12082 int equal;
12083
12084 if (decl_in_symtab_p (TREE_OPERAND (arg0, 0))
12085 && decl_in_symtab_p (TREE_OPERAND (arg1, 0)))
12086 equal = symtab_node::get_create (TREE_OPERAND (arg0, 0))
12087 ->equal_address_to (symtab_node::get_create
12088 (TREE_OPERAND (arg1, 0)));
12089 else
12090 equal = TREE_OPERAND (arg0, 0) == TREE_OPERAND (arg1, 0);
12091 if (equal != 2)
12092 return constant_boolean_node (equal
12093 ? code == EQ_EXPR : code != EQ_EXPR,
12094 type);
12095 }
12096
12097 /* Similarly for a BIT_XOR_EXPR; X ^ C1 == C2 is X == (C1 ^ C2). */
12098 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12099 && TREE_CODE (arg1) == INTEGER_CST
12100 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
12101 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0),
12102 fold_build2_loc (loc, BIT_XOR_EXPR, TREE_TYPE (arg0),
12103 fold_convert_loc (loc,
12104 TREE_TYPE (arg0),
12105 arg1),
12106 TREE_OPERAND (arg0, 1)));
12107
12108 /* Transform comparisons of the form X +- Y CMP X to Y CMP 0. */
12109 if ((TREE_CODE (arg0) == PLUS_EXPR
12110 || TREE_CODE (arg0) == POINTER_PLUS_EXPR
12111 || TREE_CODE (arg0) == MINUS_EXPR)
12112 && operand_equal_p (tree_strip_nop_conversions (TREE_OPERAND (arg0,
12113 0)),
12114 arg1, 0)
12115 && (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
12116 || POINTER_TYPE_P (TREE_TYPE (arg0))))
12117 {
12118 tree val = TREE_OPERAND (arg0, 1);
12119 return omit_two_operands_loc (loc, type,
12120 fold_build2_loc (loc, code, type,
12121 val,
12122 build_int_cst (TREE_TYPE (val),
12123 0)),
12124 TREE_OPERAND (arg0, 0), arg1);
12125 }
12126
12127 /* Transform comparisons of the form C - X CMP X if C % 2 == 1. */
12128 if (TREE_CODE (arg0) == MINUS_EXPR
12129 && TREE_CODE (TREE_OPERAND (arg0, 0)) == INTEGER_CST
12130 && operand_equal_p (tree_strip_nop_conversions (TREE_OPERAND (arg0,
12131 1)),
12132 arg1, 0)
12133 && wi::extract_uhwi (TREE_OPERAND (arg0, 0), 0, 1) == 1)
12134 {
12135 return omit_two_operands_loc (loc, type,
12136 code == NE_EXPR
12137 ? boolean_true_node : boolean_false_node,
12138 TREE_OPERAND (arg0, 1), arg1);
12139 }
12140
12141 /* Convert ABS_EXPR<x> == 0 or ABS_EXPR<x> != 0 to x == 0 or x != 0. */
12142 if (TREE_CODE (arg0) == ABS_EXPR
12143 && (integer_zerop (arg1) || real_zerop (arg1)))
12144 return fold_build2_loc (loc, code, type, TREE_OPERAND (arg0, 0), arg1);
12145
12146 /* If this is an EQ or NE comparison with zero and ARG0 is
12147 (1 << foo) & bar, convert it to (bar >> foo) & 1. Both require
12148 two operations, but the latter can be done in one less insn
12149 on machines that have only two-operand insns or on which a
12150 constant cannot be the first operand. */
12151 if (TREE_CODE (arg0) == BIT_AND_EXPR
12152 && integer_zerop (arg1))
12153 {
12154 tree arg00 = TREE_OPERAND (arg0, 0);
12155 tree arg01 = TREE_OPERAND (arg0, 1);
12156 if (TREE_CODE (arg00) == LSHIFT_EXPR
12157 && integer_onep (TREE_OPERAND (arg00, 0)))
12158 {
12159 tree tem = fold_build2_loc (loc, RSHIFT_EXPR, TREE_TYPE (arg00),
12160 arg01, TREE_OPERAND (arg00, 1));
12161 tem = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0), tem,
12162 build_int_cst (TREE_TYPE (arg0), 1));
12163 return fold_build2_loc (loc, code, type,
12164 fold_convert_loc (loc, TREE_TYPE (arg1), tem),
12165 arg1);
12166 }
12167 else if (TREE_CODE (arg01) == LSHIFT_EXPR
12168 && integer_onep (TREE_OPERAND (arg01, 0)))
12169 {
12170 tree tem = fold_build2_loc (loc, RSHIFT_EXPR, TREE_TYPE (arg01),
12171 arg00, TREE_OPERAND (arg01, 1));
12172 tem = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0), tem,
12173 build_int_cst (TREE_TYPE (arg0), 1));
12174 return fold_build2_loc (loc, code, type,
12175 fold_convert_loc (loc, TREE_TYPE (arg1), tem),
12176 arg1);
12177 }
12178 }
12179
12180 /* If this is an NE or EQ comparison of zero against the result of a
12181 signed MOD operation whose second operand is a power of 2, make
12182 the MOD operation unsigned since it is simpler and equivalent. */
12183 if (integer_zerop (arg1)
12184 && !TYPE_UNSIGNED (TREE_TYPE (arg0))
12185 && (TREE_CODE (arg0) == TRUNC_MOD_EXPR
12186 || TREE_CODE (arg0) == CEIL_MOD_EXPR
12187 || TREE_CODE (arg0) == FLOOR_MOD_EXPR
12188 || TREE_CODE (arg0) == ROUND_MOD_EXPR)
12189 && integer_pow2p (TREE_OPERAND (arg0, 1)))
12190 {
12191 tree newtype = unsigned_type_for (TREE_TYPE (arg0));
12192 tree newmod = fold_build2_loc (loc, TREE_CODE (arg0), newtype,
12193 fold_convert_loc (loc, newtype,
12194 TREE_OPERAND (arg0, 0)),
12195 fold_convert_loc (loc, newtype,
12196 TREE_OPERAND (arg0, 1)));
12197
12198 return fold_build2_loc (loc, code, type, newmod,
12199 fold_convert_loc (loc, newtype, arg1));
12200 }
12201
12202 /* Fold ((X >> C1) & C2) == 0 and ((X >> C1) & C2) != 0 where
12203 C1 is a valid shift constant, and C2 is a power of two, i.e.
12204 a single bit. */
12205 if (TREE_CODE (arg0) == BIT_AND_EXPR
12206 && TREE_CODE (TREE_OPERAND (arg0, 0)) == RSHIFT_EXPR
12207 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1))
12208 == INTEGER_CST
12209 && integer_pow2p (TREE_OPERAND (arg0, 1))
12210 && integer_zerop (arg1))
12211 {
12212 tree itype = TREE_TYPE (arg0);
12213 tree arg001 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 1);
12214 prec = TYPE_PRECISION (itype);
12215
12216 /* Check for a valid shift count. */
12217 if (wi::ltu_p (arg001, prec))
12218 {
12219 tree arg01 = TREE_OPERAND (arg0, 1);
12220 tree arg000 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
12221 unsigned HOST_WIDE_INT log2 = tree_log2 (arg01);
12222 /* If (C2 << C1) doesn't overflow, then ((X >> C1) & C2) != 0
12223 can be rewritten as (X & (C2 << C1)) != 0. */
12224 if ((log2 + TREE_INT_CST_LOW (arg001)) < prec)
12225 {
12226 tem = fold_build2_loc (loc, LSHIFT_EXPR, itype, arg01, arg001);
12227 tem = fold_build2_loc (loc, BIT_AND_EXPR, itype, arg000, tem);
12228 return fold_build2_loc (loc, code, type, tem,
12229 fold_convert_loc (loc, itype, arg1));
12230 }
12231 /* Otherwise, for signed (arithmetic) shifts,
12232 ((X >> C1) & C2) != 0 is rewritten as X < 0, and
12233 ((X >> C1) & C2) == 0 is rewritten as X >= 0. */
12234 else if (!TYPE_UNSIGNED (itype))
12235 return fold_build2_loc (loc, code == EQ_EXPR ? GE_EXPR : LT_EXPR, type,
12236 arg000, build_int_cst (itype, 0));
12237 /* Otherwise, of unsigned (logical) shifts,
12238 ((X >> C1) & C2) != 0 is rewritten as (X,false), and
12239 ((X >> C1) & C2) == 0 is rewritten as (X,true). */
12240 else
12241 return omit_one_operand_loc (loc, type,
12242 code == EQ_EXPR ? integer_one_node
12243 : integer_zero_node,
12244 arg000);
12245 }
12246 }
12247
12248 /* If we have (A & C) == C where C is a power of 2, convert this into
12249 (A & C) != 0. Similarly for NE_EXPR. */
12250 if (TREE_CODE (arg0) == BIT_AND_EXPR
12251 && integer_pow2p (TREE_OPERAND (arg0, 1))
12252 && operand_equal_p (TREE_OPERAND (arg0, 1), arg1, 0))
12253 return fold_build2_loc (loc, code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
12254 arg0, fold_convert_loc (loc, TREE_TYPE (arg0),
12255 integer_zero_node));
12256
12257 /* If we have (A & C) != 0 or (A & C) == 0 and C is the sign
12258 bit, then fold the expression into A < 0 or A >= 0. */
12259 tem = fold_single_bit_test_into_sign_test (loc, code, arg0, arg1, type);
12260 if (tem)
12261 return tem;
12262
12263 /* If we have (A & C) == D where D & ~C != 0, convert this into 0.
12264 Similarly for NE_EXPR. */
12265 if (TREE_CODE (arg0) == BIT_AND_EXPR
12266 && TREE_CODE (arg1) == INTEGER_CST
12267 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
12268 {
12269 tree notc = fold_build1_loc (loc, BIT_NOT_EXPR,
12270 TREE_TYPE (TREE_OPERAND (arg0, 1)),
12271 TREE_OPERAND (arg0, 1));
12272 tree dandnotc
12273 = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0),
12274 fold_convert_loc (loc, TREE_TYPE (arg0), arg1),
12275 notc);
12276 tree rslt = code == EQ_EXPR ? integer_zero_node : integer_one_node;
12277 if (integer_nonzerop (dandnotc))
12278 return omit_one_operand_loc (loc, type, rslt, arg0);
12279 }
12280
12281 /* If this is a comparison of a field, we may be able to simplify it. */
12282 if ((TREE_CODE (arg0) == COMPONENT_REF
12283 || TREE_CODE (arg0) == BIT_FIELD_REF)
12284 /* Handle the constant case even without -O
12285 to make sure the warnings are given. */
12286 && (optimize || TREE_CODE (arg1) == INTEGER_CST))
12287 {
12288 t1 = optimize_bit_field_compare (loc, code, type, arg0, arg1);
12289 if (t1)
12290 return t1;
12291 }
12292
12293 /* Optimize comparisons of strlen vs zero to a compare of the
12294 first character of the string vs zero. To wit,
12295 strlen(ptr) == 0 => *ptr == 0
12296 strlen(ptr) != 0 => *ptr != 0
12297 Other cases should reduce to one of these two (or a constant)
12298 due to the return value of strlen being unsigned. */
12299 if (TREE_CODE (arg0) == CALL_EXPR
12300 && integer_zerop (arg1))
12301 {
12302 tree fndecl = get_callee_fndecl (arg0);
12303
12304 if (fndecl
12305 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
12306 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_STRLEN
12307 && call_expr_nargs (arg0) == 1
12308 && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (arg0, 0))) == POINTER_TYPE)
12309 {
12310 tree iref = build_fold_indirect_ref_loc (loc,
12311 CALL_EXPR_ARG (arg0, 0));
12312 return fold_build2_loc (loc, code, type, iref,
12313 build_int_cst (TREE_TYPE (iref), 0));
12314 }
12315 }
12316
12317 /* Fold (X >> C) != 0 into X < 0 if C is one less than the width
12318 of X. Similarly fold (X >> C) == 0 into X >= 0. */
12319 if (TREE_CODE (arg0) == RSHIFT_EXPR
12320 && integer_zerop (arg1)
12321 && TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST)
12322 {
12323 tree arg00 = TREE_OPERAND (arg0, 0);
12324 tree arg01 = TREE_OPERAND (arg0, 1);
12325 tree itype = TREE_TYPE (arg00);
12326 if (wi::eq_p (arg01, element_precision (itype) - 1))
12327 {
12328 if (TYPE_UNSIGNED (itype))
12329 {
12330 itype = signed_type_for (itype);
12331 arg00 = fold_convert_loc (loc, itype, arg00);
12332 }
12333 return fold_build2_loc (loc, code == EQ_EXPR ? GE_EXPR : LT_EXPR,
12334 type, arg00, build_zero_cst (itype));
12335 }
12336 }
12337
12338 /* Fold (~X & C) == 0 into (X & C) != 0 and (~X & C) != 0 into
12339 (X & C) == 0 when C is a single bit. */
12340 if (TREE_CODE (arg0) == BIT_AND_EXPR
12341 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_NOT_EXPR
12342 && integer_zerop (arg1)
12343 && integer_pow2p (TREE_OPERAND (arg0, 1)))
12344 {
12345 tem = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg0),
12346 TREE_OPERAND (TREE_OPERAND (arg0, 0), 0),
12347 TREE_OPERAND (arg0, 1));
12348 return fold_build2_loc (loc, code == EQ_EXPR ? NE_EXPR : EQ_EXPR,
12349 type, tem,
12350 fold_convert_loc (loc, TREE_TYPE (arg0),
12351 arg1));
12352 }
12353
12354 /* Fold ((X & C) ^ C) eq/ne 0 into (X & C) ne/eq 0, when the
12355 constant C is a power of two, i.e. a single bit. */
12356 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12357 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
12358 && integer_zerop (arg1)
12359 && integer_pow2p (TREE_OPERAND (arg0, 1))
12360 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
12361 TREE_OPERAND (arg0, 1), OEP_ONLY_CONST))
12362 {
12363 tree arg00 = TREE_OPERAND (arg0, 0);
12364 return fold_build2_loc (loc, code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
12365 arg00, build_int_cst (TREE_TYPE (arg00), 0));
12366 }
12367
12368 /* Likewise, fold ((X ^ C) & C) eq/ne 0 into (X & C) ne/eq 0,
12369 when is C is a power of two, i.e. a single bit. */
12370 if (TREE_CODE (arg0) == BIT_AND_EXPR
12371 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_XOR_EXPR
12372 && integer_zerop (arg1)
12373 && integer_pow2p (TREE_OPERAND (arg0, 1))
12374 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
12375 TREE_OPERAND (arg0, 1), OEP_ONLY_CONST))
12376 {
12377 tree arg000 = TREE_OPERAND (TREE_OPERAND (arg0, 0), 0);
12378 tem = fold_build2_loc (loc, BIT_AND_EXPR, TREE_TYPE (arg000),
12379 arg000, TREE_OPERAND (arg0, 1));
12380 return fold_build2_loc (loc, code == EQ_EXPR ? NE_EXPR : EQ_EXPR, type,
12381 tem, build_int_cst (TREE_TYPE (tem), 0));
12382 }
12383
12384 if (integer_zerop (arg1)
12385 && tree_expr_nonzero_p (arg0))
12386 {
12387 tree res = constant_boolean_node (code==NE_EXPR, type);
12388 return omit_one_operand_loc (loc, type, res, arg0);
12389 }
12390
12391 /* Fold (X & C) op (Y & C) as (X ^ Y) & C op 0", and symmetries. */
12392 if (TREE_CODE (arg0) == BIT_AND_EXPR
12393 && TREE_CODE (arg1) == BIT_AND_EXPR)
12394 {
12395 tree arg00 = TREE_OPERAND (arg0, 0);
12396 tree arg01 = TREE_OPERAND (arg0, 1);
12397 tree arg10 = TREE_OPERAND (arg1, 0);
12398 tree arg11 = TREE_OPERAND (arg1, 1);
12399 tree itype = TREE_TYPE (arg0);
12400
12401 if (operand_equal_p (arg01, arg11, 0))
12402 return fold_build2_loc (loc, code, type,
12403 fold_build2_loc (loc, BIT_AND_EXPR, itype,
12404 fold_build2_loc (loc,
12405 BIT_XOR_EXPR, itype,
12406 arg00, arg10),
12407 arg01),
12408 build_zero_cst (itype));
12409
12410 if (operand_equal_p (arg01, arg10, 0))
12411 return fold_build2_loc (loc, code, type,
12412 fold_build2_loc (loc, BIT_AND_EXPR, itype,
12413 fold_build2_loc (loc,
12414 BIT_XOR_EXPR, itype,
12415 arg00, arg11),
12416 arg01),
12417 build_zero_cst (itype));
12418
12419 if (operand_equal_p (arg00, arg11, 0))
12420 return fold_build2_loc (loc, code, type,
12421 fold_build2_loc (loc, BIT_AND_EXPR, itype,
12422 fold_build2_loc (loc,
12423 BIT_XOR_EXPR, itype,
12424 arg01, arg10),
12425 arg00),
12426 build_zero_cst (itype));
12427
12428 if (operand_equal_p (arg00, arg10, 0))
12429 return fold_build2_loc (loc, code, type,
12430 fold_build2_loc (loc, BIT_AND_EXPR, itype,
12431 fold_build2_loc (loc,
12432 BIT_XOR_EXPR, itype,
12433 arg01, arg11),
12434 arg00),
12435 build_zero_cst (itype));
12436 }
12437
12438 if (TREE_CODE (arg0) == BIT_XOR_EXPR
12439 && TREE_CODE (arg1) == BIT_XOR_EXPR)
12440 {
12441 tree arg00 = TREE_OPERAND (arg0, 0);
12442 tree arg01 = TREE_OPERAND (arg0, 1);
12443 tree arg10 = TREE_OPERAND (arg1, 0);
12444 tree arg11 = TREE_OPERAND (arg1, 1);
12445 tree itype = TREE_TYPE (arg0);
12446
12447 /* Optimize (X ^ Z) op (Y ^ Z) as X op Y, and symmetries.
12448 operand_equal_p guarantees no side-effects so we don't need
12449 to use omit_one_operand on Z. */
12450 if (operand_equal_p (arg01, arg11, 0))
12451 return fold_build2_loc (loc, code, type, arg00,
12452 fold_convert_loc (loc, TREE_TYPE (arg00),
12453 arg10));
12454 if (operand_equal_p (arg01, arg10, 0))
12455 return fold_build2_loc (loc, code, type, arg00,
12456 fold_convert_loc (loc, TREE_TYPE (arg00),
12457 arg11));
12458 if (operand_equal_p (arg00, arg11, 0))
12459 return fold_build2_loc (loc, code, type, arg01,
12460 fold_convert_loc (loc, TREE_TYPE (arg01),
12461 arg10));
12462 if (operand_equal_p (arg00, arg10, 0))
12463 return fold_build2_loc (loc, code, type, arg01,
12464 fold_convert_loc (loc, TREE_TYPE (arg01),
12465 arg11));
12466
12467 /* Optimize (X ^ C1) op (Y ^ C2) as (X ^ (C1 ^ C2)) op Y. */
12468 if (TREE_CODE (arg01) == INTEGER_CST
12469 && TREE_CODE (arg11) == INTEGER_CST)
12470 {
12471 tem = fold_build2_loc (loc, BIT_XOR_EXPR, itype, arg01,
12472 fold_convert_loc (loc, itype, arg11));
12473 tem = fold_build2_loc (loc, BIT_XOR_EXPR, itype, arg00, tem);
12474 return fold_build2_loc (loc, code, type, tem,
12475 fold_convert_loc (loc, itype, arg10));
12476 }
12477 }
12478
12479 /* Attempt to simplify equality/inequality comparisons of complex
12480 values. Only lower the comparison if the result is known or
12481 can be simplified to a single scalar comparison. */
12482 if ((TREE_CODE (arg0) == COMPLEX_EXPR
12483 || TREE_CODE (arg0) == COMPLEX_CST)
12484 && (TREE_CODE (arg1) == COMPLEX_EXPR
12485 || TREE_CODE (arg1) == COMPLEX_CST))
12486 {
12487 tree real0, imag0, real1, imag1;
12488 tree rcond, icond;
12489
12490 if (TREE_CODE (arg0) == COMPLEX_EXPR)
12491 {
12492 real0 = TREE_OPERAND (arg0, 0);
12493 imag0 = TREE_OPERAND (arg0, 1);
12494 }
12495 else
12496 {
12497 real0 = TREE_REALPART (arg0);
12498 imag0 = TREE_IMAGPART (arg0);
12499 }
12500
12501 if (TREE_CODE (arg1) == COMPLEX_EXPR)
12502 {
12503 real1 = TREE_OPERAND (arg1, 0);
12504 imag1 = TREE_OPERAND (arg1, 1);
12505 }
12506 else
12507 {
12508 real1 = TREE_REALPART (arg1);
12509 imag1 = TREE_IMAGPART (arg1);
12510 }
12511
12512 rcond = fold_binary_loc (loc, code, type, real0, real1);
12513 if (rcond && TREE_CODE (rcond) == INTEGER_CST)
12514 {
12515 if (integer_zerop (rcond))
12516 {
12517 if (code == EQ_EXPR)
12518 return omit_two_operands_loc (loc, type, boolean_false_node,
12519 imag0, imag1);
12520 return fold_build2_loc (loc, NE_EXPR, type, imag0, imag1);
12521 }
12522 else
12523 {
12524 if (code == NE_EXPR)
12525 return omit_two_operands_loc (loc, type, boolean_true_node,
12526 imag0, imag1);
12527 return fold_build2_loc (loc, EQ_EXPR, type, imag0, imag1);
12528 }
12529 }
12530
12531 icond = fold_binary_loc (loc, code, type, imag0, imag1);
12532 if (icond && TREE_CODE (icond) == INTEGER_CST)
12533 {
12534 if (integer_zerop (icond))
12535 {
12536 if (code == EQ_EXPR)
12537 return omit_two_operands_loc (loc, type, boolean_false_node,
12538 real0, real1);
12539 return fold_build2_loc (loc, NE_EXPR, type, real0, real1);
12540 }
12541 else
12542 {
12543 if (code == NE_EXPR)
12544 return omit_two_operands_loc (loc, type, boolean_true_node,
12545 real0, real1);
12546 return fold_build2_loc (loc, EQ_EXPR, type, real0, real1);
12547 }
12548 }
12549 }
12550
12551 return NULL_TREE;
12552
12553 case LT_EXPR:
12554 case GT_EXPR:
12555 case LE_EXPR:
12556 case GE_EXPR:
12557 tem = fold_comparison (loc, code, type, op0, op1);
12558 if (tem != NULL_TREE)
12559 return tem;
12560
12561 /* Transform comparisons of the form X +- C CMP X. */
12562 if ((TREE_CODE (arg0) == PLUS_EXPR || TREE_CODE (arg0) == MINUS_EXPR)
12563 && operand_equal_p (TREE_OPERAND (arg0, 0), arg1, 0)
12564 && ((TREE_CODE (TREE_OPERAND (arg0, 1)) == REAL_CST
12565 && !HONOR_SNANS (arg0))
12566 || (TREE_CODE (TREE_OPERAND (arg0, 1)) == INTEGER_CST
12567 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))))
12568 {
12569 tree arg01 = TREE_OPERAND (arg0, 1);
12570 enum tree_code code0 = TREE_CODE (arg0);
12571 int is_positive;
12572
12573 if (TREE_CODE (arg01) == REAL_CST)
12574 is_positive = REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg01)) ? -1 : 1;
12575 else
12576 is_positive = tree_int_cst_sgn (arg01);
12577
12578 /* (X - c) > X becomes false. */
12579 if (code == GT_EXPR
12580 && ((code0 == MINUS_EXPR && is_positive >= 0)
12581 || (code0 == PLUS_EXPR && is_positive <= 0)))
12582 {
12583 if (TREE_CODE (arg01) == INTEGER_CST
12584 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12585 fold_overflow_warning (("assuming signed overflow does not "
12586 "occur when assuming that (X - c) > X "
12587 "is always false"),
12588 WARN_STRICT_OVERFLOW_ALL);
12589 return constant_boolean_node (0, type);
12590 }
12591
12592 /* Likewise (X + c) < X becomes false. */
12593 if (code == LT_EXPR
12594 && ((code0 == PLUS_EXPR && is_positive >= 0)
12595 || (code0 == MINUS_EXPR && is_positive <= 0)))
12596 {
12597 if (TREE_CODE (arg01) == INTEGER_CST
12598 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12599 fold_overflow_warning (("assuming signed overflow does not "
12600 "occur when assuming that "
12601 "(X + c) < X is always false"),
12602 WARN_STRICT_OVERFLOW_ALL);
12603 return constant_boolean_node (0, type);
12604 }
12605
12606 /* Convert (X - c) <= X to true. */
12607 if (!HONOR_NANS (arg1)
12608 && code == LE_EXPR
12609 && ((code0 == MINUS_EXPR && is_positive >= 0)
12610 || (code0 == PLUS_EXPR && is_positive <= 0)))
12611 {
12612 if (TREE_CODE (arg01) == INTEGER_CST
12613 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12614 fold_overflow_warning (("assuming signed overflow does not "
12615 "occur when assuming that "
12616 "(X - c) <= X is always true"),
12617 WARN_STRICT_OVERFLOW_ALL);
12618 return constant_boolean_node (1, type);
12619 }
12620
12621 /* Convert (X + c) >= X to true. */
12622 if (!HONOR_NANS (arg1)
12623 && code == GE_EXPR
12624 && ((code0 == PLUS_EXPR && is_positive >= 0)
12625 || (code0 == MINUS_EXPR && is_positive <= 0)))
12626 {
12627 if (TREE_CODE (arg01) == INTEGER_CST
12628 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12629 fold_overflow_warning (("assuming signed overflow does not "
12630 "occur when assuming that "
12631 "(X + c) >= X is always true"),
12632 WARN_STRICT_OVERFLOW_ALL);
12633 return constant_boolean_node (1, type);
12634 }
12635
12636 if (TREE_CODE (arg01) == INTEGER_CST)
12637 {
12638 /* Convert X + c > X and X - c < X to true for integers. */
12639 if (code == GT_EXPR
12640 && ((code0 == PLUS_EXPR && is_positive > 0)
12641 || (code0 == MINUS_EXPR && is_positive < 0)))
12642 {
12643 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12644 fold_overflow_warning (("assuming signed overflow does "
12645 "not occur when assuming that "
12646 "(X + c) > X is always true"),
12647 WARN_STRICT_OVERFLOW_ALL);
12648 return constant_boolean_node (1, type);
12649 }
12650
12651 if (code == LT_EXPR
12652 && ((code0 == MINUS_EXPR && is_positive > 0)
12653 || (code0 == PLUS_EXPR && is_positive < 0)))
12654 {
12655 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12656 fold_overflow_warning (("assuming signed overflow does "
12657 "not occur when assuming that "
12658 "(X - c) < X is always true"),
12659 WARN_STRICT_OVERFLOW_ALL);
12660 return constant_boolean_node (1, type);
12661 }
12662
12663 /* Convert X + c <= X and X - c >= X to false for integers. */
12664 if (code == LE_EXPR
12665 && ((code0 == PLUS_EXPR && is_positive > 0)
12666 || (code0 == MINUS_EXPR && is_positive < 0)))
12667 {
12668 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12669 fold_overflow_warning (("assuming signed overflow does "
12670 "not occur when assuming that "
12671 "(X + c) <= X is always false"),
12672 WARN_STRICT_OVERFLOW_ALL);
12673 return constant_boolean_node (0, type);
12674 }
12675
12676 if (code == GE_EXPR
12677 && ((code0 == MINUS_EXPR && is_positive > 0)
12678 || (code0 == PLUS_EXPR && is_positive < 0)))
12679 {
12680 if (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (arg1)))
12681 fold_overflow_warning (("assuming signed overflow does "
12682 "not occur when assuming that "
12683 "(X - c) >= X is always false"),
12684 WARN_STRICT_OVERFLOW_ALL);
12685 return constant_boolean_node (0, type);
12686 }
12687 }
12688 }
12689
12690 /* Comparisons with the highest or lowest possible integer of
12691 the specified precision will have known values. */
12692 {
12693 tree arg1_type = TREE_TYPE (arg1);
12694 unsigned int prec = TYPE_PRECISION (arg1_type);
12695
12696 if (TREE_CODE (arg1) == INTEGER_CST
12697 && (INTEGRAL_TYPE_P (arg1_type) || POINTER_TYPE_P (arg1_type)))
12698 {
12699 wide_int max = wi::max_value (arg1_type);
12700 wide_int signed_max = wi::max_value (prec, SIGNED);
12701 wide_int min = wi::min_value (arg1_type);
12702
12703 if (wi::eq_p (arg1, max))
12704 switch (code)
12705 {
12706 case GT_EXPR:
12707 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
12708
12709 case GE_EXPR:
12710 return fold_build2_loc (loc, EQ_EXPR, type, op0, op1);
12711
12712 case LE_EXPR:
12713 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
12714
12715 case LT_EXPR:
12716 return fold_build2_loc (loc, NE_EXPR, type, op0, op1);
12717
12718 /* The GE_EXPR and LT_EXPR cases above are not normally
12719 reached because of previous transformations. */
12720
12721 default:
12722 break;
12723 }
12724 else if (wi::eq_p (arg1, max - 1))
12725 switch (code)
12726 {
12727 case GT_EXPR:
12728 arg1 = const_binop (PLUS_EXPR, arg1,
12729 build_int_cst (TREE_TYPE (arg1), 1));
12730 return fold_build2_loc (loc, EQ_EXPR, type,
12731 fold_convert_loc (loc,
12732 TREE_TYPE (arg1), arg0),
12733 arg1);
12734 case LE_EXPR:
12735 arg1 = const_binop (PLUS_EXPR, arg1,
12736 build_int_cst (TREE_TYPE (arg1), 1));
12737 return fold_build2_loc (loc, NE_EXPR, type,
12738 fold_convert_loc (loc, TREE_TYPE (arg1),
12739 arg0),
12740 arg1);
12741 default:
12742 break;
12743 }
12744 else if (wi::eq_p (arg1, min))
12745 switch (code)
12746 {
12747 case LT_EXPR:
12748 return omit_one_operand_loc (loc, type, integer_zero_node, arg0);
12749
12750 case LE_EXPR:
12751 return fold_build2_loc (loc, EQ_EXPR, type, op0, op1);
12752
12753 case GE_EXPR:
12754 return omit_one_operand_loc (loc, type, integer_one_node, arg0);
12755
12756 case GT_EXPR:
12757 return fold_build2_loc (loc, NE_EXPR, type, op0, op1);
12758
12759 default:
12760 break;
12761 }
12762 else if (wi::eq_p (arg1, min + 1))
12763 switch (code)
12764 {
12765 case GE_EXPR:
12766 arg1 = const_binop (MINUS_EXPR, arg1,
12767 build_int_cst (TREE_TYPE (arg1), 1));
12768 return fold_build2_loc (loc, NE_EXPR, type,
12769 fold_convert_loc (loc,
12770 TREE_TYPE (arg1), arg0),
12771 arg1);
12772 case LT_EXPR:
12773 arg1 = const_binop (MINUS_EXPR, arg1,
12774 build_int_cst (TREE_TYPE (arg1), 1));
12775 return fold_build2_loc (loc, EQ_EXPR, type,
12776 fold_convert_loc (loc, TREE_TYPE (arg1),
12777 arg0),
12778 arg1);
12779 default:
12780 break;
12781 }
12782
12783 else if (wi::eq_p (arg1, signed_max)
12784 && TYPE_UNSIGNED (arg1_type)
12785 /* We will flip the signedness of the comparison operator
12786 associated with the mode of arg1, so the sign bit is
12787 specified by this mode. Check that arg1 is the signed
12788 max associated with this sign bit. */
12789 && prec == GET_MODE_PRECISION (TYPE_MODE (arg1_type))
12790 /* signed_type does not work on pointer types. */
12791 && INTEGRAL_TYPE_P (arg1_type))
12792 {
12793 /* The following case also applies to X < signed_max+1
12794 and X >= signed_max+1 because previous transformations. */
12795 if (code == LE_EXPR || code == GT_EXPR)
12796 {
12797 tree st = signed_type_for (arg1_type);
12798 return fold_build2_loc (loc,
12799 code == LE_EXPR ? GE_EXPR : LT_EXPR,
12800 type, fold_convert_loc (loc, st, arg0),
12801 build_int_cst (st, 0));
12802 }
12803 }
12804 }
12805 }
12806
12807 /* If we are comparing an ABS_EXPR with a constant, we can
12808 convert all the cases into explicit comparisons, but they may
12809 well not be faster than doing the ABS and one comparison.
12810 But ABS (X) <= C is a range comparison, which becomes a subtraction
12811 and a comparison, and is probably faster. */
12812 if (code == LE_EXPR
12813 && TREE_CODE (arg1) == INTEGER_CST
12814 && TREE_CODE (arg0) == ABS_EXPR
12815 && ! TREE_SIDE_EFFECTS (arg0)
12816 && (0 != (tem = negate_expr (arg1)))
12817 && TREE_CODE (tem) == INTEGER_CST
12818 && !TREE_OVERFLOW (tem))
12819 return fold_build2_loc (loc, TRUTH_ANDIF_EXPR, type,
12820 build2 (GE_EXPR, type,
12821 TREE_OPERAND (arg0, 0), tem),
12822 build2 (LE_EXPR, type,
12823 TREE_OPERAND (arg0, 0), arg1));
12824
12825 /* Convert ABS_EXPR<x> >= 0 to true. */
12826 strict_overflow_p = false;
12827 if (code == GE_EXPR
12828 && (integer_zerop (arg1)
12829 || (! HONOR_NANS (arg0)
12830 && real_zerop (arg1)))
12831 && tree_expr_nonnegative_warnv_p (arg0, &strict_overflow_p))
12832 {
12833 if (strict_overflow_p)
12834 fold_overflow_warning (("assuming signed overflow does not occur "
12835 "when simplifying comparison of "
12836 "absolute value and zero"),
12837 WARN_STRICT_OVERFLOW_CONDITIONAL);
12838 return omit_one_operand_loc (loc, type,
12839 constant_boolean_node (true, type),
12840 arg0);
12841 }
12842
12843 /* Convert ABS_EXPR<x> < 0 to false. */
12844 strict_overflow_p = false;
12845 if (code == LT_EXPR
12846 && (integer_zerop (arg1) || real_zerop (arg1))
12847 && tree_expr_nonnegative_warnv_p (arg0, &strict_overflow_p))
12848 {
12849 if (strict_overflow_p)
12850 fold_overflow_warning (("assuming signed overflow does not occur "
12851 "when simplifying comparison of "
12852 "absolute value and zero"),
12853 WARN_STRICT_OVERFLOW_CONDITIONAL);
12854 return omit_one_operand_loc (loc, type,
12855 constant_boolean_node (false, type),
12856 arg0);
12857 }
12858
12859 /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
12860 and similarly for >= into !=. */
12861 if ((code == LT_EXPR || code == GE_EXPR)
12862 && TYPE_UNSIGNED (TREE_TYPE (arg0))
12863 && TREE_CODE (arg1) == LSHIFT_EXPR
12864 && integer_onep (TREE_OPERAND (arg1, 0)))
12865 return build2_loc (loc, code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
12866 build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
12867 TREE_OPERAND (arg1, 1)),
12868 build_zero_cst (TREE_TYPE (arg0)));
12869
12870 /* Similarly for X < (cast) (1 << Y). But cast can't be narrowing,
12871 otherwise Y might be >= # of bits in X's type and thus e.g.
12872 (unsigned char) (1 << Y) for Y 15 might be 0.
12873 If the cast is widening, then 1 << Y should have unsigned type,
12874 otherwise if Y is number of bits in the signed shift type minus 1,
12875 we can't optimize this. E.g. (unsigned long long) (1 << Y) for Y
12876 31 might be 0xffffffff80000000. */
12877 if ((code == LT_EXPR || code == GE_EXPR)
12878 && TYPE_UNSIGNED (TREE_TYPE (arg0))
12879 && CONVERT_EXPR_P (arg1)
12880 && TREE_CODE (TREE_OPERAND (arg1, 0)) == LSHIFT_EXPR
12881 && (element_precision (TREE_TYPE (arg1))
12882 >= element_precision (TREE_TYPE (TREE_OPERAND (arg1, 0))))
12883 && (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg1, 0)))
12884 || (element_precision (TREE_TYPE (arg1))
12885 == element_precision (TREE_TYPE (TREE_OPERAND (arg1, 0)))))
12886 && integer_onep (TREE_OPERAND (TREE_OPERAND (arg1, 0), 0)))
12887 {
12888 tem = build2 (RSHIFT_EXPR, TREE_TYPE (arg0), arg0,
12889 TREE_OPERAND (TREE_OPERAND (arg1, 0), 1));
12890 return build2_loc (loc, code == LT_EXPR ? EQ_EXPR : NE_EXPR, type,
12891 fold_convert_loc (loc, TREE_TYPE (arg0), tem),
12892 build_zero_cst (TREE_TYPE (arg0)));
12893 }
12894
12895 return NULL_TREE;
12896
12897 case UNORDERED_EXPR:
12898 case ORDERED_EXPR:
12899 case UNLT_EXPR:
12900 case UNLE_EXPR:
12901 case UNGT_EXPR:
12902 case UNGE_EXPR:
12903 case UNEQ_EXPR:
12904 case LTGT_EXPR:
12905 if (TREE_CODE (arg0) == REAL_CST && TREE_CODE (arg1) == REAL_CST)
12906 {
12907 t1 = fold_relational_const (code, type, arg0, arg1);
12908 if (t1 != NULL_TREE)
12909 return t1;
12910 }
12911
12912 /* If the first operand is NaN, the result is constant. */
12913 if (TREE_CODE (arg0) == REAL_CST
12914 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg0))
12915 && (code != LTGT_EXPR || ! flag_trapping_math))
12916 {
12917 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
12918 ? integer_zero_node
12919 : integer_one_node;
12920 return omit_one_operand_loc (loc, type, t1, arg1);
12921 }
12922
12923 /* If the second operand is NaN, the result is constant. */
12924 if (TREE_CODE (arg1) == REAL_CST
12925 && REAL_VALUE_ISNAN (TREE_REAL_CST (arg1))
12926 && (code != LTGT_EXPR || ! flag_trapping_math))
12927 {
12928 t1 = (code == ORDERED_EXPR || code == LTGT_EXPR)
12929 ? integer_zero_node
12930 : integer_one_node;
12931 return omit_one_operand_loc (loc, type, t1, arg0);
12932 }
12933
12934 /* Simplify unordered comparison of something with itself. */
12935 if ((code == UNLE_EXPR || code == UNGE_EXPR || code == UNEQ_EXPR)
12936 && operand_equal_p (arg0, arg1, 0))
12937 return constant_boolean_node (1, type);
12938
12939 if (code == LTGT_EXPR
12940 && !flag_trapping_math
12941 && operand_equal_p (arg0, arg1, 0))
12942 return constant_boolean_node (0, type);
12943
12944 /* Fold (double)float1 CMP (double)float2 into float1 CMP float2. */
12945 {
12946 tree targ0 = strip_float_extensions (arg0);
12947 tree targ1 = strip_float_extensions (arg1);
12948 tree newtype = TREE_TYPE (targ0);
12949
12950 if (TYPE_PRECISION (TREE_TYPE (targ1)) > TYPE_PRECISION (newtype))
12951 newtype = TREE_TYPE (targ1);
12952
12953 if (TYPE_PRECISION (newtype) < TYPE_PRECISION (TREE_TYPE (arg0)))
12954 return fold_build2_loc (loc, code, type,
12955 fold_convert_loc (loc, newtype, targ0),
12956 fold_convert_loc (loc, newtype, targ1));
12957 }
12958
12959 return NULL_TREE;
12960
12961 case COMPOUND_EXPR:
12962 /* When pedantic, a compound expression can be neither an lvalue
12963 nor an integer constant expression. */
12964 if (TREE_SIDE_EFFECTS (arg0) || TREE_CONSTANT (arg1))
12965 return NULL_TREE;
12966 /* Don't let (0, 0) be null pointer constant. */
12967 tem = integer_zerop (arg1) ? build1 (NOP_EXPR, type, arg1)
12968 : fold_convert_loc (loc, type, arg1);
12969 return pedantic_non_lvalue_loc (loc, tem);
12970
12971 case ASSERT_EXPR:
12972 /* An ASSERT_EXPR should never be passed to fold_binary. */
12973 gcc_unreachable ();
12974
12975 default:
12976 return NULL_TREE;
12977 } /* switch (code) */
12978 }
12979
12980 /* Callback for walk_tree, looking for LABEL_EXPR. Return *TP if it is
12981 a LABEL_EXPR; otherwise return NULL_TREE. Do not check the subtrees
12982 of GOTO_EXPR. */
12983
12984 static tree
12985 contains_label_1 (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
12986 {
12987 switch (TREE_CODE (*tp))
12988 {
12989 case LABEL_EXPR:
12990 return *tp;
12991
12992 case GOTO_EXPR:
12993 *walk_subtrees = 0;
12994
12995 /* ... fall through ... */
12996
12997 default:
12998 return NULL_TREE;
12999 }
13000 }
13001
13002 /* Return whether the sub-tree ST contains a label which is accessible from
13003 outside the sub-tree. */
13004
13005 static bool
13006 contains_label_p (tree st)
13007 {
13008 return
13009 (walk_tree_without_duplicates (&st, contains_label_1 , NULL) != NULL_TREE);
13010 }
13011
13012 /* Fold a ternary expression of code CODE and type TYPE with operands
13013 OP0, OP1, and OP2. Return the folded expression if folding is
13014 successful. Otherwise, return NULL_TREE. */
13015
13016 tree
13017 fold_ternary_loc (location_t loc, enum tree_code code, tree type,
13018 tree op0, tree op1, tree op2)
13019 {
13020 tree tem;
13021 tree arg0 = NULL_TREE, arg1 = NULL_TREE, arg2 = NULL_TREE;
13022 enum tree_code_class kind = TREE_CODE_CLASS (code);
13023
13024 gcc_assert (IS_EXPR_CODE_CLASS (kind)
13025 && TREE_CODE_LENGTH (code) == 3);
13026
13027 /* If this is a commutative operation, and OP0 is a constant, move it
13028 to OP1 to reduce the number of tests below. */
13029 if (commutative_ternary_tree_code (code)
13030 && tree_swap_operands_p (op0, op1, true))
13031 return fold_build3_loc (loc, code, type, op1, op0, op2);
13032
13033 tem = generic_simplify (loc, code, type, op0, op1, op2);
13034 if (tem)
13035 return tem;
13036
13037 /* Strip any conversions that don't change the mode. This is safe
13038 for every expression, except for a comparison expression because
13039 its signedness is derived from its operands. So, in the latter
13040 case, only strip conversions that don't change the signedness.
13041
13042 Note that this is done as an internal manipulation within the
13043 constant folder, in order to find the simplest representation of
13044 the arguments so that their form can be studied. In any cases,
13045 the appropriate type conversions should be put back in the tree
13046 that will get out of the constant folder. */
13047 if (op0)
13048 {
13049 arg0 = op0;
13050 STRIP_NOPS (arg0);
13051 }
13052
13053 if (op1)
13054 {
13055 arg1 = op1;
13056 STRIP_NOPS (arg1);
13057 }
13058
13059 if (op2)
13060 {
13061 arg2 = op2;
13062 STRIP_NOPS (arg2);
13063 }
13064
13065 switch (code)
13066 {
13067 case COMPONENT_REF:
13068 if (TREE_CODE (arg0) == CONSTRUCTOR
13069 && ! type_contains_placeholder_p (TREE_TYPE (arg0)))
13070 {
13071 unsigned HOST_WIDE_INT idx;
13072 tree field, value;
13073 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg0), idx, field, value)
13074 if (field == arg1)
13075 return value;
13076 }
13077 return NULL_TREE;
13078
13079 case COND_EXPR:
13080 case VEC_COND_EXPR:
13081 /* Pedantic ANSI C says that a conditional expression is never an lvalue,
13082 so all simple results must be passed through pedantic_non_lvalue. */
13083 if (TREE_CODE (arg0) == INTEGER_CST)
13084 {
13085 tree unused_op = integer_zerop (arg0) ? op1 : op2;
13086 tem = integer_zerop (arg0) ? op2 : op1;
13087 /* Only optimize constant conditions when the selected branch
13088 has the same type as the COND_EXPR. This avoids optimizing
13089 away "c ? x : throw", where the throw has a void type.
13090 Avoid throwing away that operand which contains label. */
13091 if ((!TREE_SIDE_EFFECTS (unused_op)
13092 || !contains_label_p (unused_op))
13093 && (! VOID_TYPE_P (TREE_TYPE (tem))
13094 || VOID_TYPE_P (type)))
13095 return pedantic_non_lvalue_loc (loc, tem);
13096 return NULL_TREE;
13097 }
13098 else if (TREE_CODE (arg0) == VECTOR_CST)
13099 {
13100 if ((TREE_CODE (arg1) == VECTOR_CST
13101 || TREE_CODE (arg1) == CONSTRUCTOR)
13102 && (TREE_CODE (arg2) == VECTOR_CST
13103 || TREE_CODE (arg2) == CONSTRUCTOR))
13104 {
13105 unsigned int nelts = TYPE_VECTOR_SUBPARTS (type), i;
13106 unsigned char *sel = XALLOCAVEC (unsigned char, nelts);
13107 gcc_assert (nelts == VECTOR_CST_NELTS (arg0));
13108 for (i = 0; i < nelts; i++)
13109 {
13110 tree val = VECTOR_CST_ELT (arg0, i);
13111 if (integer_all_onesp (val))
13112 sel[i] = i;
13113 else if (integer_zerop (val))
13114 sel[i] = nelts + i;
13115 else /* Currently unreachable. */
13116 return NULL_TREE;
13117 }
13118 tree t = fold_vec_perm (type, arg1, arg2, sel);
13119 if (t != NULL_TREE)
13120 return t;
13121 }
13122 }
13123
13124 /* If we have A op B ? A : C, we may be able to convert this to a
13125 simpler expression, depending on the operation and the values
13126 of B and C. Signed zeros prevent all of these transformations,
13127 for reasons given above each one.
13128
13129 Also try swapping the arguments and inverting the conditional. */
13130 if (COMPARISON_CLASS_P (arg0)
13131 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
13132 arg1, TREE_OPERAND (arg0, 1))
13133 && !HONOR_SIGNED_ZEROS (element_mode (arg1)))
13134 {
13135 tem = fold_cond_expr_with_comparison (loc, type, arg0, op1, op2);
13136 if (tem)
13137 return tem;
13138 }
13139
13140 if (COMPARISON_CLASS_P (arg0)
13141 && operand_equal_for_comparison_p (TREE_OPERAND (arg0, 0),
13142 op2,
13143 TREE_OPERAND (arg0, 1))
13144 && !HONOR_SIGNED_ZEROS (element_mode (op2)))
13145 {
13146 location_t loc0 = expr_location_or (arg0, loc);
13147 tem = fold_invert_truthvalue (loc0, arg0);
13148 if (tem && COMPARISON_CLASS_P (tem))
13149 {
13150 tem = fold_cond_expr_with_comparison (loc, type, tem, op2, op1);
13151 if (tem)
13152 return tem;
13153 }
13154 }
13155
13156 /* If the second operand is simpler than the third, swap them
13157 since that produces better jump optimization results. */
13158 if (truth_value_p (TREE_CODE (arg0))
13159 && tree_swap_operands_p (op1, op2, false))
13160 {
13161 location_t loc0 = expr_location_or (arg0, loc);
13162 /* See if this can be inverted. If it can't, possibly because
13163 it was a floating-point inequality comparison, don't do
13164 anything. */
13165 tem = fold_invert_truthvalue (loc0, arg0);
13166 if (tem)
13167 return fold_build3_loc (loc, code, type, tem, op2, op1);
13168 }
13169
13170 /* Convert A ? 1 : 0 to simply A. */
13171 if ((code == VEC_COND_EXPR ? integer_all_onesp (op1)
13172 : (integer_onep (op1)
13173 && !VECTOR_TYPE_P (type)))
13174 && integer_zerop (op2)
13175 /* If we try to convert OP0 to our type, the
13176 call to fold will try to move the conversion inside
13177 a COND, which will recurse. In that case, the COND_EXPR
13178 is probably the best choice, so leave it alone. */
13179 && type == TREE_TYPE (arg0))
13180 return pedantic_non_lvalue_loc (loc, arg0);
13181
13182 /* Convert A ? 0 : 1 to !A. This prefers the use of NOT_EXPR
13183 over COND_EXPR in cases such as floating point comparisons. */
13184 if (integer_zerop (op1)
13185 && (code == VEC_COND_EXPR ? integer_all_onesp (op2)
13186 : (integer_onep (op2)
13187 && !VECTOR_TYPE_P (type)))
13188 && truth_value_p (TREE_CODE (arg0)))
13189 return pedantic_non_lvalue_loc (loc,
13190 fold_convert_loc (loc, type,
13191 invert_truthvalue_loc (loc,
13192 arg0)));
13193
13194 /* A < 0 ? <sign bit of A> : 0 is simply (A & <sign bit of A>). */
13195 if (TREE_CODE (arg0) == LT_EXPR
13196 && integer_zerop (TREE_OPERAND (arg0, 1))
13197 && integer_zerop (op2)
13198 && (tem = sign_bit_p (TREE_OPERAND (arg0, 0), arg1)))
13199 {
13200 /* sign_bit_p looks through both zero and sign extensions,
13201 but for this optimization only sign extensions are
13202 usable. */
13203 tree tem2 = TREE_OPERAND (arg0, 0);
13204 while (tem != tem2)
13205 {
13206 if (TREE_CODE (tem2) != NOP_EXPR
13207 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (tem2, 0))))
13208 {
13209 tem = NULL_TREE;
13210 break;
13211 }
13212 tem2 = TREE_OPERAND (tem2, 0);
13213 }
13214 /* sign_bit_p only checks ARG1 bits within A's precision.
13215 If <sign bit of A> has wider type than A, bits outside
13216 of A's precision in <sign bit of A> need to be checked.
13217 If they are all 0, this optimization needs to be done
13218 in unsigned A's type, if they are all 1 in signed A's type,
13219 otherwise this can't be done. */
13220 if (tem
13221 && TYPE_PRECISION (TREE_TYPE (tem))
13222 < TYPE_PRECISION (TREE_TYPE (arg1))
13223 && TYPE_PRECISION (TREE_TYPE (tem))
13224 < TYPE_PRECISION (type))
13225 {
13226 int inner_width, outer_width;
13227 tree tem_type;
13228
13229 inner_width = TYPE_PRECISION (TREE_TYPE (tem));
13230 outer_width = TYPE_PRECISION (TREE_TYPE (arg1));
13231 if (outer_width > TYPE_PRECISION (type))
13232 outer_width = TYPE_PRECISION (type);
13233
13234 wide_int mask = wi::shifted_mask
13235 (inner_width, outer_width - inner_width, false,
13236 TYPE_PRECISION (TREE_TYPE (arg1)));
13237
13238 wide_int common = mask & arg1;
13239 if (common == mask)
13240 {
13241 tem_type = signed_type_for (TREE_TYPE (tem));
13242 tem = fold_convert_loc (loc, tem_type, tem);
13243 }
13244 else if (common == 0)
13245 {
13246 tem_type = unsigned_type_for (TREE_TYPE (tem));
13247 tem = fold_convert_loc (loc, tem_type, tem);
13248 }
13249 else
13250 tem = NULL;
13251 }
13252
13253 if (tem)
13254 return
13255 fold_convert_loc (loc, type,
13256 fold_build2_loc (loc, BIT_AND_EXPR,
13257 TREE_TYPE (tem), tem,
13258 fold_convert_loc (loc,
13259 TREE_TYPE (tem),
13260 arg1)));
13261 }
13262
13263 /* (A >> N) & 1 ? (1 << N) : 0 is simply A & (1 << N). A & 1 was
13264 already handled above. */
13265 if (TREE_CODE (arg0) == BIT_AND_EXPR
13266 && integer_onep (TREE_OPERAND (arg0, 1))
13267 && integer_zerop (op2)
13268 && integer_pow2p (arg1))
13269 {
13270 tree tem = TREE_OPERAND (arg0, 0);
13271 STRIP_NOPS (tem);
13272 if (TREE_CODE (tem) == RSHIFT_EXPR
13273 && tree_fits_uhwi_p (TREE_OPERAND (tem, 1))
13274 && (unsigned HOST_WIDE_INT) tree_log2 (arg1) ==
13275 tree_to_uhwi (TREE_OPERAND (tem, 1)))
13276 return fold_build2_loc (loc, BIT_AND_EXPR, type,
13277 TREE_OPERAND (tem, 0), arg1);
13278 }
13279
13280 /* A & N ? N : 0 is simply A & N if N is a power of two. This
13281 is probably obsolete because the first operand should be a
13282 truth value (that's why we have the two cases above), but let's
13283 leave it in until we can confirm this for all front-ends. */
13284 if (integer_zerop (op2)
13285 && TREE_CODE (arg0) == NE_EXPR
13286 && integer_zerop (TREE_OPERAND (arg0, 1))
13287 && integer_pow2p (arg1)
13288 && TREE_CODE (TREE_OPERAND (arg0, 0)) == BIT_AND_EXPR
13289 && operand_equal_p (TREE_OPERAND (TREE_OPERAND (arg0, 0), 1),
13290 arg1, OEP_ONLY_CONST))
13291 return pedantic_non_lvalue_loc (loc,
13292 fold_convert_loc (loc, type,
13293 TREE_OPERAND (arg0, 0)));
13294
13295 /* Disable the transformations below for vectors, since
13296 fold_binary_op_with_conditional_arg may undo them immediately,
13297 yielding an infinite loop. */
13298 if (code == VEC_COND_EXPR)
13299 return NULL_TREE;
13300
13301 /* Convert A ? B : 0 into A && B if A and B are truth values. */
13302 if (integer_zerop (op2)
13303 && truth_value_p (TREE_CODE (arg0))
13304 && truth_value_p (TREE_CODE (arg1))
13305 && (code == VEC_COND_EXPR || !VECTOR_TYPE_P (type)))
13306 return fold_build2_loc (loc, code == VEC_COND_EXPR ? BIT_AND_EXPR
13307 : TRUTH_ANDIF_EXPR,
13308 type, fold_convert_loc (loc, type, arg0), arg1);
13309
13310 /* Convert A ? B : 1 into !A || B if A and B are truth values. */
13311 if (code == VEC_COND_EXPR ? integer_all_onesp (op2) : integer_onep (op2)
13312 && truth_value_p (TREE_CODE (arg0))
13313 && truth_value_p (TREE_CODE (arg1))
13314 && (code == VEC_COND_EXPR || !VECTOR_TYPE_P (type)))
13315 {
13316 location_t loc0 = expr_location_or (arg0, loc);
13317 /* Only perform transformation if ARG0 is easily inverted. */
13318 tem = fold_invert_truthvalue (loc0, arg0);
13319 if (tem)
13320 return fold_build2_loc (loc, code == VEC_COND_EXPR
13321 ? BIT_IOR_EXPR
13322 : TRUTH_ORIF_EXPR,
13323 type, fold_convert_loc (loc, type, tem),
13324 arg1);
13325 }
13326
13327 /* Convert A ? 0 : B into !A && B if A and B are truth values. */
13328 if (integer_zerop (arg1)
13329 && truth_value_p (TREE_CODE (arg0))
13330 && truth_value_p (TREE_CODE (op2))
13331 && (code == VEC_COND_EXPR || !VECTOR_TYPE_P (type)))
13332 {
13333 location_t loc0 = expr_location_or (arg0, loc);
13334 /* Only perform transformation if ARG0 is easily inverted. */
13335 tem = fold_invert_truthvalue (loc0, arg0);
13336 if (tem)
13337 return fold_build2_loc (loc, code == VEC_COND_EXPR
13338 ? BIT_AND_EXPR : TRUTH_ANDIF_EXPR,
13339 type, fold_convert_loc (loc, type, tem),
13340 op2);
13341 }
13342
13343 /* Convert A ? 1 : B into A || B if A and B are truth values. */
13344 if (code == VEC_COND_EXPR ? integer_all_onesp (arg1) : integer_onep (arg1)
13345 && truth_value_p (TREE_CODE (arg0))
13346 && truth_value_p (TREE_CODE (op2))
13347 && (code == VEC_COND_EXPR || !VECTOR_TYPE_P (type)))
13348 return fold_build2_loc (loc, code == VEC_COND_EXPR
13349 ? BIT_IOR_EXPR : TRUTH_ORIF_EXPR,
13350 type, fold_convert_loc (loc, type, arg0), op2);
13351
13352 return NULL_TREE;
13353
13354 case CALL_EXPR:
13355 /* CALL_EXPRs used to be ternary exprs. Catch any mistaken uses
13356 of fold_ternary on them. */
13357 gcc_unreachable ();
13358
13359 case BIT_FIELD_REF:
13360 if ((TREE_CODE (arg0) == VECTOR_CST
13361 || (TREE_CODE (arg0) == CONSTRUCTOR
13362 && TREE_CODE (TREE_TYPE (arg0)) == VECTOR_TYPE))
13363 && (type == TREE_TYPE (TREE_TYPE (arg0))
13364 || (TREE_CODE (type) == VECTOR_TYPE
13365 && TREE_TYPE (type) == TREE_TYPE (TREE_TYPE (arg0)))))
13366 {
13367 tree eltype = TREE_TYPE (TREE_TYPE (arg0));
13368 unsigned HOST_WIDE_INT width = tree_to_uhwi (TYPE_SIZE (eltype));
13369 unsigned HOST_WIDE_INT n = tree_to_uhwi (arg1);
13370 unsigned HOST_WIDE_INT idx = tree_to_uhwi (op2);
13371
13372 if (n != 0
13373 && (idx % width) == 0
13374 && (n % width) == 0
13375 && ((idx + n) / width) <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (arg0)))
13376 {
13377 idx = idx / width;
13378 n = n / width;
13379
13380 if (TREE_CODE (arg0) == VECTOR_CST)
13381 {
13382 if (n == 1)
13383 return VECTOR_CST_ELT (arg0, idx);
13384
13385 tree *vals = XALLOCAVEC (tree, n);
13386 for (unsigned i = 0; i < n; ++i)
13387 vals[i] = VECTOR_CST_ELT (arg0, idx + i);
13388 return build_vector (type, vals);
13389 }
13390
13391 /* Constructor elements can be subvectors. */
13392 unsigned HOST_WIDE_INT k = 1;
13393 if (CONSTRUCTOR_NELTS (arg0) != 0)
13394 {
13395 tree cons_elem = TREE_TYPE (CONSTRUCTOR_ELT (arg0, 0)->value);
13396 if (TREE_CODE (cons_elem) == VECTOR_TYPE)
13397 k = TYPE_VECTOR_SUBPARTS (cons_elem);
13398 }
13399
13400 /* We keep an exact subset of the constructor elements. */
13401 if ((idx % k) == 0 && (n % k) == 0)
13402 {
13403 if (CONSTRUCTOR_NELTS (arg0) == 0)
13404 return build_constructor (type, NULL);
13405 idx /= k;
13406 n /= k;
13407 if (n == 1)
13408 {
13409 if (idx < CONSTRUCTOR_NELTS (arg0))
13410 return CONSTRUCTOR_ELT (arg0, idx)->value;
13411 return build_zero_cst (type);
13412 }
13413
13414 vec<constructor_elt, va_gc> *vals;
13415 vec_alloc (vals, n);
13416 for (unsigned i = 0;
13417 i < n && idx + i < CONSTRUCTOR_NELTS (arg0);
13418 ++i)
13419 CONSTRUCTOR_APPEND_ELT (vals, NULL_TREE,
13420 CONSTRUCTOR_ELT
13421 (arg0, idx + i)->value);
13422 return build_constructor (type, vals);
13423 }
13424 /* The bitfield references a single constructor element. */
13425 else if (idx + n <= (idx / k + 1) * k)
13426 {
13427 if (CONSTRUCTOR_NELTS (arg0) <= idx / k)
13428 return build_zero_cst (type);
13429 else if (n == k)
13430 return CONSTRUCTOR_ELT (arg0, idx / k)->value;
13431 else
13432 return fold_build3_loc (loc, code, type,
13433 CONSTRUCTOR_ELT (arg0, idx / k)->value, op1,
13434 build_int_cst (TREE_TYPE (op2), (idx % k) * width));
13435 }
13436 }
13437 }
13438
13439 /* A bit-field-ref that referenced the full argument can be stripped. */
13440 if (INTEGRAL_TYPE_P (TREE_TYPE (arg0))
13441 && TYPE_PRECISION (TREE_TYPE (arg0)) == tree_to_uhwi (arg1)
13442 && integer_zerop (op2))
13443 return fold_convert_loc (loc, type, arg0);
13444
13445 /* On constants we can use native encode/interpret to constant
13446 fold (nearly) all BIT_FIELD_REFs. */
13447 if (CONSTANT_CLASS_P (arg0)
13448 && can_native_interpret_type_p (type)
13449 && tree_fits_uhwi_p (TYPE_SIZE_UNIT (TREE_TYPE (arg0)))
13450 /* This limitation should not be necessary, we just need to
13451 round this up to mode size. */
13452 && tree_to_uhwi (op1) % BITS_PER_UNIT == 0
13453 /* Need bit-shifting of the buffer to relax the following. */
13454 && tree_to_uhwi (op2) % BITS_PER_UNIT == 0)
13455 {
13456 unsigned HOST_WIDE_INT bitpos = tree_to_uhwi (op2);
13457 unsigned HOST_WIDE_INT bitsize = tree_to_uhwi (op1);
13458 unsigned HOST_WIDE_INT clen;
13459 clen = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (arg0)));
13460 /* ??? We cannot tell native_encode_expr to start at
13461 some random byte only. So limit us to a reasonable amount
13462 of work. */
13463 if (clen <= 4096)
13464 {
13465 unsigned char *b = XALLOCAVEC (unsigned char, clen);
13466 unsigned HOST_WIDE_INT len = native_encode_expr (arg0, b, clen);
13467 if (len > 0
13468 && len * BITS_PER_UNIT >= bitpos + bitsize)
13469 {
13470 tree v = native_interpret_expr (type,
13471 b + bitpos / BITS_PER_UNIT,
13472 bitsize / BITS_PER_UNIT);
13473 if (v)
13474 return v;
13475 }
13476 }
13477 }
13478
13479 return NULL_TREE;
13480
13481 case FMA_EXPR:
13482 /* For integers we can decompose the FMA if possible. */
13483 if (TREE_CODE (arg0) == INTEGER_CST
13484 && TREE_CODE (arg1) == INTEGER_CST)
13485 return fold_build2_loc (loc, PLUS_EXPR, type,
13486 const_binop (MULT_EXPR, arg0, arg1), arg2);
13487 if (integer_zerop (arg2))
13488 return fold_build2_loc (loc, MULT_EXPR, type, arg0, arg1);
13489
13490 return fold_fma (loc, type, arg0, arg1, arg2);
13491
13492 case VEC_PERM_EXPR:
13493 if (TREE_CODE (arg2) == VECTOR_CST)
13494 {
13495 unsigned int nelts = TYPE_VECTOR_SUBPARTS (type), i, mask, mask2;
13496 unsigned char *sel = XALLOCAVEC (unsigned char, 2 * nelts);
13497 unsigned char *sel2 = sel + nelts;
13498 bool need_mask_canon = false;
13499 bool need_mask_canon2 = false;
13500 bool all_in_vec0 = true;
13501 bool all_in_vec1 = true;
13502 bool maybe_identity = true;
13503 bool single_arg = (op0 == op1);
13504 bool changed = false;
13505
13506 mask2 = 2 * nelts - 1;
13507 mask = single_arg ? (nelts - 1) : mask2;
13508 gcc_assert (nelts == VECTOR_CST_NELTS (arg2));
13509 for (i = 0; i < nelts; i++)
13510 {
13511 tree val = VECTOR_CST_ELT (arg2, i);
13512 if (TREE_CODE (val) != INTEGER_CST)
13513 return NULL_TREE;
13514
13515 /* Make sure that the perm value is in an acceptable
13516 range. */
13517 wide_int t = val;
13518 need_mask_canon |= wi::gtu_p (t, mask);
13519 need_mask_canon2 |= wi::gtu_p (t, mask2);
13520 sel[i] = t.to_uhwi () & mask;
13521 sel2[i] = t.to_uhwi () & mask2;
13522
13523 if (sel[i] < nelts)
13524 all_in_vec1 = false;
13525 else
13526 all_in_vec0 = false;
13527
13528 if ((sel[i] & (nelts-1)) != i)
13529 maybe_identity = false;
13530 }
13531
13532 if (maybe_identity)
13533 {
13534 if (all_in_vec0)
13535 return op0;
13536 if (all_in_vec1)
13537 return op1;
13538 }
13539
13540 if (all_in_vec0)
13541 op1 = op0;
13542 else if (all_in_vec1)
13543 {
13544 op0 = op1;
13545 for (i = 0; i < nelts; i++)
13546 sel[i] -= nelts;
13547 need_mask_canon = true;
13548 }
13549
13550 if ((TREE_CODE (op0) == VECTOR_CST
13551 || TREE_CODE (op0) == CONSTRUCTOR)
13552 && (TREE_CODE (op1) == VECTOR_CST
13553 || TREE_CODE (op1) == CONSTRUCTOR))
13554 {
13555 tree t = fold_vec_perm (type, op0, op1, sel);
13556 if (t != NULL_TREE)
13557 return t;
13558 }
13559
13560 if (op0 == op1 && !single_arg)
13561 changed = true;
13562
13563 /* Some targets are deficient and fail to expand a single
13564 argument permutation while still allowing an equivalent
13565 2-argument version. */
13566 if (need_mask_canon && arg2 == op2
13567 && !can_vec_perm_p (TYPE_MODE (type), false, sel)
13568 && can_vec_perm_p (TYPE_MODE (type), false, sel2))
13569 {
13570 need_mask_canon = need_mask_canon2;
13571 sel = sel2;
13572 }
13573
13574 if (need_mask_canon && arg2 == op2)
13575 {
13576 tree *tsel = XALLOCAVEC (tree, nelts);
13577 tree eltype = TREE_TYPE (TREE_TYPE (arg2));
13578 for (i = 0; i < nelts; i++)
13579 tsel[i] = build_int_cst (eltype, sel[i]);
13580 op2 = build_vector (TREE_TYPE (arg2), tsel);
13581 changed = true;
13582 }
13583
13584 if (changed)
13585 return build3_loc (loc, VEC_PERM_EXPR, type, op0, op1, op2);
13586 }
13587 return NULL_TREE;
13588
13589 default:
13590 return NULL_TREE;
13591 } /* switch (code) */
13592 }
13593
13594 /* Perform constant folding and related simplification of EXPR.
13595 The related simplifications include x*1 => x, x*0 => 0, etc.,
13596 and application of the associative law.
13597 NOP_EXPR conversions may be removed freely (as long as we
13598 are careful not to change the type of the overall expression).
13599 We cannot simplify through a CONVERT_EXPR, FIX_EXPR or FLOAT_EXPR,
13600 but we can constant-fold them if they have constant operands. */
13601
13602 #ifdef ENABLE_FOLD_CHECKING
13603 # define fold(x) fold_1 (x)
13604 static tree fold_1 (tree);
13605 static
13606 #endif
13607 tree
13608 fold (tree expr)
13609 {
13610 const tree t = expr;
13611 enum tree_code code = TREE_CODE (t);
13612 enum tree_code_class kind = TREE_CODE_CLASS (code);
13613 tree tem;
13614 location_t loc = EXPR_LOCATION (expr);
13615
13616 /* Return right away if a constant. */
13617 if (kind == tcc_constant)
13618 return t;
13619
13620 /* CALL_EXPR-like objects with variable numbers of operands are
13621 treated specially. */
13622 if (kind == tcc_vl_exp)
13623 {
13624 if (code == CALL_EXPR)
13625 {
13626 tem = fold_call_expr (loc, expr, false);
13627 return tem ? tem : expr;
13628 }
13629 return expr;
13630 }
13631
13632 if (IS_EXPR_CODE_CLASS (kind))
13633 {
13634 tree type = TREE_TYPE (t);
13635 tree op0, op1, op2;
13636
13637 switch (TREE_CODE_LENGTH (code))
13638 {
13639 case 1:
13640 op0 = TREE_OPERAND (t, 0);
13641 tem = fold_unary_loc (loc, code, type, op0);
13642 return tem ? tem : expr;
13643 case 2:
13644 op0 = TREE_OPERAND (t, 0);
13645 op1 = TREE_OPERAND (t, 1);
13646 tem = fold_binary_loc (loc, code, type, op0, op1);
13647 return tem ? tem : expr;
13648 case 3:
13649 op0 = TREE_OPERAND (t, 0);
13650 op1 = TREE_OPERAND (t, 1);
13651 op2 = TREE_OPERAND (t, 2);
13652 tem = fold_ternary_loc (loc, code, type, op0, op1, op2);
13653 return tem ? tem : expr;
13654 default:
13655 break;
13656 }
13657 }
13658
13659 switch (code)
13660 {
13661 case ARRAY_REF:
13662 {
13663 tree op0 = TREE_OPERAND (t, 0);
13664 tree op1 = TREE_OPERAND (t, 1);
13665
13666 if (TREE_CODE (op1) == INTEGER_CST
13667 && TREE_CODE (op0) == CONSTRUCTOR
13668 && ! type_contains_placeholder_p (TREE_TYPE (op0)))
13669 {
13670 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (op0);
13671 unsigned HOST_WIDE_INT end = vec_safe_length (elts);
13672 unsigned HOST_WIDE_INT begin = 0;
13673
13674 /* Find a matching index by means of a binary search. */
13675 while (begin != end)
13676 {
13677 unsigned HOST_WIDE_INT middle = (begin + end) / 2;
13678 tree index = (*elts)[middle].index;
13679
13680 if (TREE_CODE (index) == INTEGER_CST
13681 && tree_int_cst_lt (index, op1))
13682 begin = middle + 1;
13683 else if (TREE_CODE (index) == INTEGER_CST
13684 && tree_int_cst_lt (op1, index))
13685 end = middle;
13686 else if (TREE_CODE (index) == RANGE_EXPR
13687 && tree_int_cst_lt (TREE_OPERAND (index, 1), op1))
13688 begin = middle + 1;
13689 else if (TREE_CODE (index) == RANGE_EXPR
13690 && tree_int_cst_lt (op1, TREE_OPERAND (index, 0)))
13691 end = middle;
13692 else
13693 return (*elts)[middle].value;
13694 }
13695 }
13696
13697 return t;
13698 }
13699
13700 /* Return a VECTOR_CST if possible. */
13701 case CONSTRUCTOR:
13702 {
13703 tree type = TREE_TYPE (t);
13704 if (TREE_CODE (type) != VECTOR_TYPE)
13705 return t;
13706
13707 tree *vec = XALLOCAVEC (tree, TYPE_VECTOR_SUBPARTS (type));
13708 unsigned HOST_WIDE_INT idx, pos = 0;
13709 tree value;
13710
13711 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), idx, value)
13712 {
13713 if (!CONSTANT_CLASS_P (value))
13714 return t;
13715 if (TREE_CODE (value) == VECTOR_CST)
13716 {
13717 for (unsigned i = 0; i < VECTOR_CST_NELTS (value); ++i)
13718 vec[pos++] = VECTOR_CST_ELT (value, i);
13719 }
13720 else
13721 vec[pos++] = value;
13722 }
13723 for (; pos < TYPE_VECTOR_SUBPARTS (type); ++pos)
13724 vec[pos] = build_zero_cst (TREE_TYPE (type));
13725
13726 return build_vector (type, vec);
13727 }
13728
13729 case CONST_DECL:
13730 return fold (DECL_INITIAL (t));
13731
13732 default:
13733 return t;
13734 } /* switch (code) */
13735 }
13736
13737 #ifdef ENABLE_FOLD_CHECKING
13738 #undef fold
13739
13740 static void fold_checksum_tree (const_tree, struct md5_ctx *,
13741 hash_table<nofree_ptr_hash<const tree_node> > *);
13742 static void fold_check_failed (const_tree, const_tree);
13743 void print_fold_checksum (const_tree);
13744
13745 /* When --enable-checking=fold, compute a digest of expr before
13746 and after actual fold call to see if fold did not accidentally
13747 change original expr. */
13748
13749 tree
13750 fold (tree expr)
13751 {
13752 tree ret;
13753 struct md5_ctx ctx;
13754 unsigned char checksum_before[16], checksum_after[16];
13755 hash_table<nofree_ptr_hash<const tree_node> > ht (32);
13756
13757 md5_init_ctx (&ctx);
13758 fold_checksum_tree (expr, &ctx, &ht);
13759 md5_finish_ctx (&ctx, checksum_before);
13760 ht.empty ();
13761
13762 ret = fold_1 (expr);
13763
13764 md5_init_ctx (&ctx);
13765 fold_checksum_tree (expr, &ctx, &ht);
13766 md5_finish_ctx (&ctx, checksum_after);
13767
13768 if (memcmp (checksum_before, checksum_after, 16))
13769 fold_check_failed (expr, ret);
13770
13771 return ret;
13772 }
13773
13774 void
13775 print_fold_checksum (const_tree expr)
13776 {
13777 struct md5_ctx ctx;
13778 unsigned char checksum[16], cnt;
13779 hash_table<nofree_ptr_hash<const tree_node> > ht (32);
13780
13781 md5_init_ctx (&ctx);
13782 fold_checksum_tree (expr, &ctx, &ht);
13783 md5_finish_ctx (&ctx, checksum);
13784 for (cnt = 0; cnt < 16; ++cnt)
13785 fprintf (stderr, "%02x", checksum[cnt]);
13786 putc ('\n', stderr);
13787 }
13788
13789 static void
13790 fold_check_failed (const_tree expr ATTRIBUTE_UNUSED, const_tree ret ATTRIBUTE_UNUSED)
13791 {
13792 internal_error ("fold check: original tree changed by fold");
13793 }
13794
13795 static void
13796 fold_checksum_tree (const_tree expr, struct md5_ctx *ctx,
13797 hash_table<nofree_ptr_hash <const tree_node> > *ht)
13798 {
13799 const tree_node **slot;
13800 enum tree_code code;
13801 union tree_node buf;
13802 int i, len;
13803
13804 recursive_label:
13805 if (expr == NULL)
13806 return;
13807 slot = ht->find_slot (expr, INSERT);
13808 if (*slot != NULL)
13809 return;
13810 *slot = expr;
13811 code = TREE_CODE (expr);
13812 if (TREE_CODE_CLASS (code) == tcc_declaration
13813 && HAS_DECL_ASSEMBLER_NAME_P (expr))
13814 {
13815 /* Allow DECL_ASSEMBLER_NAME and symtab_node to be modified. */
13816 memcpy ((char *) &buf, expr, tree_size (expr));
13817 SET_DECL_ASSEMBLER_NAME ((tree)&buf, NULL);
13818 buf.decl_with_vis.symtab_node = NULL;
13819 expr = (tree) &buf;
13820 }
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)))
13827 {
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))
13837 {
13838 TYPE_CACHED_VALUES_P (tmp) = 0;
13839 TYPE_CACHED_VALUES (tmp) = NULL;
13840 }
13841 }
13842 md5_process_bytes (expr, tree_size (expr), ctx);
13843 if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
13844 fold_checksum_tree (TREE_TYPE (expr), ctx, ht);
13845 if (TREE_CODE_CLASS (code) != tcc_type
13846 && TREE_CODE_CLASS (code) != tcc_declaration
13847 && code != TREE_LIST
13848 && code != SSA_NAME
13849 && CODE_CONTAINS_STRUCT (code, TS_COMMON))
13850 fold_checksum_tree (TREE_CHAIN (expr), ctx, ht);
13851 switch (TREE_CODE_CLASS (code))
13852 {
13853 case tcc_constant:
13854 switch (code)
13855 {
13856 case STRING_CST:
13857 md5_process_bytes (TREE_STRING_POINTER (expr),
13858 TREE_STRING_LENGTH (expr), ctx);
13859 break;
13860 case COMPLEX_CST:
13861 fold_checksum_tree (TREE_REALPART (expr), ctx, ht);
13862 fold_checksum_tree (TREE_IMAGPART (expr), ctx, ht);
13863 break;
13864 case VECTOR_CST:
13865 for (i = 0; i < (int) VECTOR_CST_NELTS (expr); ++i)
13866 fold_checksum_tree (VECTOR_CST_ELT (expr, i), ctx, ht);
13867 break;
13868 default:
13869 break;
13870 }
13871 break;
13872 case tcc_exceptional:
13873 switch (code)
13874 {
13875 case TREE_LIST:
13876 fold_checksum_tree (TREE_PURPOSE (expr), ctx, ht);
13877 fold_checksum_tree (TREE_VALUE (expr), ctx, ht);
13878 expr = TREE_CHAIN (expr);
13879 goto recursive_label;
13880 break;
13881 case TREE_VEC:
13882 for (i = 0; i < TREE_VEC_LENGTH (expr); ++i)
13883 fold_checksum_tree (TREE_VEC_ELT (expr, i), ctx, ht);
13884 break;
13885 default:
13886 break;
13887 }
13888 break;
13889 case tcc_expression:
13890 case tcc_reference:
13891 case tcc_comparison:
13892 case tcc_unary:
13893 case tcc_binary:
13894 case tcc_statement:
13895 case tcc_vl_exp:
13896 len = TREE_OPERAND_LENGTH (expr);
13897 for (i = 0; i < len; ++i)
13898 fold_checksum_tree (TREE_OPERAND (expr, i), ctx, ht);
13899 break;
13900 case tcc_declaration:
13901 fold_checksum_tree (DECL_NAME (expr), ctx, ht);
13902 fold_checksum_tree (DECL_CONTEXT (expr), ctx, ht);
13903 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_COMMON))
13904 {
13905 fold_checksum_tree (DECL_SIZE (expr), ctx, ht);
13906 fold_checksum_tree (DECL_SIZE_UNIT (expr), ctx, ht);
13907 fold_checksum_tree (DECL_INITIAL (expr), ctx, ht);
13908 fold_checksum_tree (DECL_ABSTRACT_ORIGIN (expr), ctx, ht);
13909 fold_checksum_tree (DECL_ATTRIBUTES (expr), ctx, ht);
13910 }
13911
13912 if (CODE_CONTAINS_STRUCT (TREE_CODE (expr), TS_DECL_NON_COMMON))
13913 {
13914 if (TREE_CODE (expr) == FUNCTION_DECL)
13915 {
13916 fold_checksum_tree (DECL_VINDEX (expr), ctx, ht);
13917 fold_checksum_tree (DECL_ARGUMENTS (expr), ctx, ht);
13918 }
13919 fold_checksum_tree (DECL_RESULT_FLD (expr), ctx, ht);
13920 }
13921 break;
13922 case tcc_type:
13923 if (TREE_CODE (expr) == ENUMERAL_TYPE)
13924 fold_checksum_tree (TYPE_VALUES (expr), ctx, ht);
13925 fold_checksum_tree (TYPE_SIZE (expr), ctx, ht);
13926 fold_checksum_tree (TYPE_SIZE_UNIT (expr), ctx, ht);
13927 fold_checksum_tree (TYPE_ATTRIBUTES (expr), ctx, ht);
13928 fold_checksum_tree (TYPE_NAME (expr), ctx, ht);
13929 if (INTEGRAL_TYPE_P (expr)
13930 || SCALAR_FLOAT_TYPE_P (expr))
13931 {
13932 fold_checksum_tree (TYPE_MIN_VALUE (expr), ctx, ht);
13933 fold_checksum_tree (TYPE_MAX_VALUE (expr), ctx, ht);
13934 }
13935 fold_checksum_tree (TYPE_MAIN_VARIANT (expr), ctx, ht);
13936 if (TREE_CODE (expr) == RECORD_TYPE
13937 || TREE_CODE (expr) == UNION_TYPE
13938 || TREE_CODE (expr) == QUAL_UNION_TYPE)
13939 fold_checksum_tree (TYPE_BINFO (expr), ctx, ht);
13940 fold_checksum_tree (TYPE_CONTEXT (expr), ctx, ht);
13941 break;
13942 default:
13943 break;
13944 }
13945 }
13946
13947 /* Helper function for outputting the checksum of a tree T. When
13948 debugging with gdb, you can "define mynext" to be "next" followed
13949 by "call debug_fold_checksum (op0)", then just trace down till the
13950 outputs differ. */
13951
13952 DEBUG_FUNCTION void
13953 debug_fold_checksum (const_tree t)
13954 {
13955 int i;
13956 unsigned char checksum[16];
13957 struct md5_ctx ctx;
13958 hash_table<nofree_ptr_hash<const tree_node> > ht (32);
13959
13960 md5_init_ctx (&ctx);
13961 fold_checksum_tree (t, &ctx, &ht);
13962 md5_finish_ctx (&ctx, checksum);
13963 ht.empty ();
13964
13965 for (i = 0; i < 16; i++)
13966 fprintf (stderr, "%d ", checksum[i]);
13967
13968 fprintf (stderr, "\n");
13969 }
13970
13971 #endif
13972
13973 /* Fold a unary tree expression with code CODE of type TYPE with an
13974 operand OP0. LOC is the location of the resulting expression.
13975 Return a folded expression if successful. Otherwise, return a tree
13976 expression with code CODE of type TYPE with an operand OP0. */
13977
13978 tree
13979 fold_build1_stat_loc (location_t loc,
13980 enum tree_code code, tree type, tree op0 MEM_STAT_DECL)
13981 {
13982 tree tem;
13983 #ifdef ENABLE_FOLD_CHECKING
13984 unsigned char checksum_before[16], checksum_after[16];
13985 struct md5_ctx ctx;
13986 hash_table<nofree_ptr_hash<const tree_node> > ht (32);
13987
13988 md5_init_ctx (&ctx);
13989 fold_checksum_tree (op0, &ctx, &ht);
13990 md5_finish_ctx (&ctx, checksum_before);
13991 ht.empty ();
13992 #endif
13993
13994 tem = fold_unary_loc (loc, code, type, op0);
13995 if (!tem)
13996 tem = build1_stat_loc (loc, code, type, op0 PASS_MEM_STAT);
13997
13998 #ifdef ENABLE_FOLD_CHECKING
13999 md5_init_ctx (&ctx);
14000 fold_checksum_tree (op0, &ctx, &ht);
14001 md5_finish_ctx (&ctx, checksum_after);
14002
14003 if (memcmp (checksum_before, checksum_after, 16))
14004 fold_check_failed (op0, tem);
14005 #endif
14006 return tem;
14007 }
14008
14009 /* Fold a binary tree expression with code CODE of type TYPE with
14010 operands OP0 and OP1. LOC is the location of the resulting
14011 expression. Return a folded expression if successful. Otherwise,
14012 return a tree expression with code CODE of type TYPE with operands
14013 OP0 and OP1. */
14014
14015 tree
14016 fold_build2_stat_loc (location_t loc,
14017 enum tree_code code, tree type, tree op0, tree op1
14018 MEM_STAT_DECL)
14019 {
14020 tree tem;
14021 #ifdef ENABLE_FOLD_CHECKING
14022 unsigned char checksum_before_op0[16],
14023 checksum_before_op1[16],
14024 checksum_after_op0[16],
14025 checksum_after_op1[16];
14026 struct md5_ctx ctx;
14027 hash_table<nofree_ptr_hash<const tree_node> > ht (32);
14028
14029 md5_init_ctx (&ctx);
14030 fold_checksum_tree (op0, &ctx, &ht);
14031 md5_finish_ctx (&ctx, checksum_before_op0);
14032 ht.empty ();
14033
14034 md5_init_ctx (&ctx);
14035 fold_checksum_tree (op1, &ctx, &ht);
14036 md5_finish_ctx (&ctx, checksum_before_op1);
14037 ht.empty ();
14038 #endif
14039
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);
14043
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 ht.empty ();
14049
14050 if (memcmp (checksum_before_op0, checksum_after_op0, 16))
14051 fold_check_failed (op0, tem);
14052
14053 md5_init_ctx (&ctx);
14054 fold_checksum_tree (op1, &ctx, &ht);
14055 md5_finish_ctx (&ctx, checksum_after_op1);
14056
14057 if (memcmp (checksum_before_op1, checksum_after_op1, 16))
14058 fold_check_failed (op1, tem);
14059 #endif
14060 return tem;
14061 }
14062
14063 /* Fold a ternary tree expression with code CODE of type TYPE with
14064 operands OP0, OP1, and OP2. Return a folded expression if
14065 successful. Otherwise, return a tree expression with code CODE of
14066 type TYPE with operands OP0, OP1, and OP2. */
14067
14068 tree
14069 fold_build3_stat_loc (location_t loc, enum tree_code code, tree type,
14070 tree op0, tree op1, tree op2 MEM_STAT_DECL)
14071 {
14072 tree tem;
14073 #ifdef ENABLE_FOLD_CHECKING
14074 unsigned char checksum_before_op0[16],
14075 checksum_before_op1[16],
14076 checksum_before_op2[16],
14077 checksum_after_op0[16],
14078 checksum_after_op1[16],
14079 checksum_after_op2[16];
14080 struct md5_ctx ctx;
14081 hash_table<nofree_ptr_hash<const tree_node> > ht (32);
14082
14083 md5_init_ctx (&ctx);
14084 fold_checksum_tree (op0, &ctx, &ht);
14085 md5_finish_ctx (&ctx, checksum_before_op0);
14086 ht.empty ();
14087
14088 md5_init_ctx (&ctx);
14089 fold_checksum_tree (op1, &ctx, &ht);
14090 md5_finish_ctx (&ctx, checksum_before_op1);
14091 ht.empty ();
14092
14093 md5_init_ctx (&ctx);
14094 fold_checksum_tree (op2, &ctx, &ht);
14095 md5_finish_ctx (&ctx, checksum_before_op2);
14096 ht.empty ();
14097 #endif
14098
14099 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
14100 tem = fold_ternary_loc (loc, code, type, op0, op1, op2);
14101 if (!tem)
14102 tem = build3_stat_loc (loc, code, type, op0, op1, op2 PASS_MEM_STAT);
14103
14104 #ifdef ENABLE_FOLD_CHECKING
14105 md5_init_ctx (&ctx);
14106 fold_checksum_tree (op0, &ctx, &ht);
14107 md5_finish_ctx (&ctx, checksum_after_op0);
14108 ht.empty ();
14109
14110 if (memcmp (checksum_before_op0, checksum_after_op0, 16))
14111 fold_check_failed (op0, tem);
14112
14113 md5_init_ctx (&ctx);
14114 fold_checksum_tree (op1, &ctx, &ht);
14115 md5_finish_ctx (&ctx, checksum_after_op1);
14116 ht.empty ();
14117
14118 if (memcmp (checksum_before_op1, checksum_after_op1, 16))
14119 fold_check_failed (op1, tem);
14120
14121 md5_init_ctx (&ctx);
14122 fold_checksum_tree (op2, &ctx, &ht);
14123 md5_finish_ctx (&ctx, checksum_after_op2);
14124
14125 if (memcmp (checksum_before_op2, checksum_after_op2, 16))
14126 fold_check_failed (op2, tem);
14127 #endif
14128 return tem;
14129 }
14130
14131 /* Fold a CALL_EXPR expression of type TYPE with operands FN and NARGS
14132 arguments in ARGARRAY, and a null static chain.
14133 Return a folded expression if successful. Otherwise, return a CALL_EXPR
14134 of type TYPE from the given operands as constructed by build_call_array. */
14135
14136 tree
14137 fold_build_call_array_loc (location_t loc, tree type, tree fn,
14138 int nargs, tree *argarray)
14139 {
14140 tree tem;
14141 #ifdef ENABLE_FOLD_CHECKING
14142 unsigned char checksum_before_fn[16],
14143 checksum_before_arglist[16],
14144 checksum_after_fn[16],
14145 checksum_after_arglist[16];
14146 struct md5_ctx ctx;
14147 hash_table<nofree_ptr_hash<const tree_node> > ht (32);
14148 int i;
14149
14150 md5_init_ctx (&ctx);
14151 fold_checksum_tree (fn, &ctx, &ht);
14152 md5_finish_ctx (&ctx, checksum_before_fn);
14153 ht.empty ();
14154
14155 md5_init_ctx (&ctx);
14156 for (i = 0; i < nargs; i++)
14157 fold_checksum_tree (argarray[i], &ctx, &ht);
14158 md5_finish_ctx (&ctx, checksum_before_arglist);
14159 ht.empty ();
14160 #endif
14161
14162 tem = fold_builtin_call_array (loc, type, fn, nargs, argarray);
14163 if (!tem)
14164 tem = build_call_array_loc (loc, type, fn, nargs, argarray);
14165
14166 #ifdef ENABLE_FOLD_CHECKING
14167 md5_init_ctx (&ctx);
14168 fold_checksum_tree (fn, &ctx, &ht);
14169 md5_finish_ctx (&ctx, checksum_after_fn);
14170 ht.empty ();
14171
14172 if (memcmp (checksum_before_fn, checksum_after_fn, 16))
14173 fold_check_failed (fn, tem);
14174
14175 md5_init_ctx (&ctx);
14176 for (i = 0; i < nargs; i++)
14177 fold_checksum_tree (argarray[i], &ctx, &ht);
14178 md5_finish_ctx (&ctx, checksum_after_arglist);
14179
14180 if (memcmp (checksum_before_arglist, checksum_after_arglist, 16))
14181 fold_check_failed (NULL_TREE, tem);
14182 #endif
14183 return tem;
14184 }
14185
14186 /* Perform constant folding and related simplification of initializer
14187 expression EXPR. These behave identically to "fold_buildN" but ignore
14188 potential run-time traps and exceptions that fold must preserve. */
14189
14190 #define START_FOLD_INIT \
14191 int saved_signaling_nans = flag_signaling_nans;\
14192 int saved_trapping_math = flag_trapping_math;\
14193 int saved_rounding_math = flag_rounding_math;\
14194 int saved_trapv = flag_trapv;\
14195 int saved_folding_initializer = folding_initializer;\
14196 flag_signaling_nans = 0;\
14197 flag_trapping_math = 0;\
14198 flag_rounding_math = 0;\
14199 flag_trapv = 0;\
14200 folding_initializer = 1;
14201
14202 #define END_FOLD_INIT \
14203 flag_signaling_nans = saved_signaling_nans;\
14204 flag_trapping_math = saved_trapping_math;\
14205 flag_rounding_math = saved_rounding_math;\
14206 flag_trapv = saved_trapv;\
14207 folding_initializer = saved_folding_initializer;
14208
14209 tree
14210 fold_build1_initializer_loc (location_t loc, enum tree_code code,
14211 tree type, tree op)
14212 {
14213 tree result;
14214 START_FOLD_INIT;
14215
14216 result = fold_build1_loc (loc, code, type, op);
14217
14218 END_FOLD_INIT;
14219 return result;
14220 }
14221
14222 tree
14223 fold_build2_initializer_loc (location_t loc, enum tree_code code,
14224 tree type, tree op0, tree op1)
14225 {
14226 tree result;
14227 START_FOLD_INIT;
14228
14229 result = fold_build2_loc (loc, code, type, op0, op1);
14230
14231 END_FOLD_INIT;
14232 return result;
14233 }
14234
14235 tree
14236 fold_build_call_array_initializer_loc (location_t loc, tree type, tree fn,
14237 int nargs, tree *argarray)
14238 {
14239 tree result;
14240 START_FOLD_INIT;
14241
14242 result = fold_build_call_array_loc (loc, type, fn, nargs, argarray);
14243
14244 END_FOLD_INIT;
14245 return result;
14246 }
14247
14248 #undef START_FOLD_INIT
14249 #undef END_FOLD_INIT
14250
14251 /* Determine if first argument is a multiple of second argument. Return 0 if
14252 it is not, or we cannot easily determined it to be.
14253
14254 An example of the sort of thing we care about (at this point; this routine
14255 could surely be made more general, and expanded to do what the *_DIV_EXPR's
14256 fold cases do now) is discovering that
14257
14258 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
14259
14260 is a multiple of
14261
14262 SAVE_EXPR (J * 8)
14263
14264 when we know that the two SAVE_EXPR (J * 8) nodes are the same node.
14265
14266 This code also handles discovering that
14267
14268 SAVE_EXPR (I) * SAVE_EXPR (J * 8)
14269
14270 is a multiple of 8 so we don't have to worry about dealing with a
14271 possible remainder.
14272
14273 Note that we *look* inside a SAVE_EXPR only to determine how it was
14274 calculated; it is not safe for fold to do much of anything else with the
14275 internals of a SAVE_EXPR, since it cannot know when it will be evaluated
14276 at run time. For example, the latter example above *cannot* be implemented
14277 as SAVE_EXPR (I) * J or any variant thereof, since the value of J at
14278 evaluation time of the original SAVE_EXPR is not necessarily the same at
14279 the time the new expression is evaluated. The only optimization of this
14280 sort that would be valid is changing
14281
14282 SAVE_EXPR (I) * SAVE_EXPR (SAVE_EXPR (J) * 8)
14283
14284 divided by 8 to
14285
14286 SAVE_EXPR (I) * SAVE_EXPR (J)
14287
14288 (where the same SAVE_EXPR (J) is used in the original and the
14289 transformed version). */
14290
14291 int
14292 multiple_of_p (tree type, const_tree top, const_tree bottom)
14293 {
14294 if (operand_equal_p (top, bottom, 0))
14295 return 1;
14296
14297 if (TREE_CODE (type) != INTEGER_TYPE)
14298 return 0;
14299
14300 switch (TREE_CODE (top))
14301 {
14302 case BIT_AND_EXPR:
14303 /* Bitwise and provides a power of two multiple. If the mask is
14304 a multiple of BOTTOM then TOP is a multiple of BOTTOM. */
14305 if (!integer_pow2p (bottom))
14306 return 0;
14307 /* FALLTHRU */
14308
14309 case MULT_EXPR:
14310 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
14311 || multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
14312
14313 case PLUS_EXPR:
14314 case MINUS_EXPR:
14315 return (multiple_of_p (type, TREE_OPERAND (top, 0), bottom)
14316 && multiple_of_p (type, TREE_OPERAND (top, 1), bottom));
14317
14318 case LSHIFT_EXPR:
14319 if (TREE_CODE (TREE_OPERAND (top, 1)) == INTEGER_CST)
14320 {
14321 tree op1, t1;
14322
14323 op1 = TREE_OPERAND (top, 1);
14324 /* const_binop may not detect overflow correctly,
14325 so check for it explicitly here. */
14326 if (wi::gtu_p (TYPE_PRECISION (TREE_TYPE (size_one_node)), op1)
14327 && 0 != (t1 = fold_convert (type,
14328 const_binop (LSHIFT_EXPR,
14329 size_one_node,
14330 op1)))
14331 && !TREE_OVERFLOW (t1))
14332 return multiple_of_p (type, t1, bottom);
14333 }
14334 return 0;
14335
14336 case NOP_EXPR:
14337 /* Can't handle conversions from non-integral or wider integral type. */
14338 if ((TREE_CODE (TREE_TYPE (TREE_OPERAND (top, 0))) != INTEGER_TYPE)
14339 || (TYPE_PRECISION (type)
14340 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (top, 0)))))
14341 return 0;
14342
14343 /* .. fall through ... */
14344
14345 case SAVE_EXPR:
14346 return multiple_of_p (type, TREE_OPERAND (top, 0), bottom);
14347
14348 case COND_EXPR:
14349 return (multiple_of_p (type, TREE_OPERAND (top, 1), bottom)
14350 && multiple_of_p (type, TREE_OPERAND (top, 2), bottom));
14351
14352 case INTEGER_CST:
14353 if (TREE_CODE (bottom) != INTEGER_CST
14354 || integer_zerop (bottom)
14355 || (TYPE_UNSIGNED (type)
14356 && (tree_int_cst_sgn (top) < 0
14357 || tree_int_cst_sgn (bottom) < 0)))
14358 return 0;
14359 return wi::multiple_of_p (wi::to_widest (top), wi::to_widest (bottom),
14360 SIGNED);
14361
14362 default:
14363 return 0;
14364 }
14365 }
14366
14367 /* Return true if CODE or TYPE is known to be non-negative. */
14368
14369 static bool
14370 tree_simple_nonnegative_warnv_p (enum tree_code code, tree type)
14371 {
14372 if ((TYPE_PRECISION (type) != 1 || TYPE_UNSIGNED (type))
14373 && truth_value_p (code))
14374 /* Truth values evaluate to 0 or 1, which is nonnegative unless we
14375 have a signed:1 type (where the value is -1 and 0). */
14376 return true;
14377 return false;
14378 }
14379
14380 /* Return true if (CODE OP0) is known to be non-negative. If the return
14381 value is based on the assumption that signed overflow is undefined,
14382 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14383 *STRICT_OVERFLOW_P. */
14384
14385 bool
14386 tree_unary_nonnegative_warnv_p (enum tree_code code, tree type, tree op0,
14387 bool *strict_overflow_p)
14388 {
14389 if (TYPE_UNSIGNED (type))
14390 return true;
14391
14392 switch (code)
14393 {
14394 case ABS_EXPR:
14395 /* We can't return 1 if flag_wrapv is set because
14396 ABS_EXPR<INT_MIN> = INT_MIN. */
14397 if (!ANY_INTEGRAL_TYPE_P (type))
14398 return true;
14399 if (TYPE_OVERFLOW_UNDEFINED (type))
14400 {
14401 *strict_overflow_p = true;
14402 return true;
14403 }
14404 break;
14405
14406 case NON_LVALUE_EXPR:
14407 case FLOAT_EXPR:
14408 case FIX_TRUNC_EXPR:
14409 return tree_expr_nonnegative_warnv_p (op0,
14410 strict_overflow_p);
14411
14412 CASE_CONVERT:
14413 {
14414 tree inner_type = TREE_TYPE (op0);
14415 tree outer_type = type;
14416
14417 if (TREE_CODE (outer_type) == REAL_TYPE)
14418 {
14419 if (TREE_CODE (inner_type) == REAL_TYPE)
14420 return tree_expr_nonnegative_warnv_p (op0,
14421 strict_overflow_p);
14422 if (INTEGRAL_TYPE_P (inner_type))
14423 {
14424 if (TYPE_UNSIGNED (inner_type))
14425 return true;
14426 return tree_expr_nonnegative_warnv_p (op0,
14427 strict_overflow_p);
14428 }
14429 }
14430 else if (INTEGRAL_TYPE_P (outer_type))
14431 {
14432 if (TREE_CODE (inner_type) == REAL_TYPE)
14433 return tree_expr_nonnegative_warnv_p (op0,
14434 strict_overflow_p);
14435 if (INTEGRAL_TYPE_P (inner_type))
14436 return TYPE_PRECISION (inner_type) < TYPE_PRECISION (outer_type)
14437 && TYPE_UNSIGNED (inner_type);
14438 }
14439 }
14440 break;
14441
14442 default:
14443 return tree_simple_nonnegative_warnv_p (code, type);
14444 }
14445
14446 /* We don't know sign of `t', so be conservative and return false. */
14447 return false;
14448 }
14449
14450 /* Return true if (CODE OP0 OP1) is known to be non-negative. If the return
14451 value is based on the assumption that signed overflow is undefined,
14452 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14453 *STRICT_OVERFLOW_P. */
14454
14455 bool
14456 tree_binary_nonnegative_warnv_p (enum tree_code code, tree type, tree op0,
14457 tree op1, bool *strict_overflow_p)
14458 {
14459 if (TYPE_UNSIGNED (type))
14460 return true;
14461
14462 switch (code)
14463 {
14464 case POINTER_PLUS_EXPR:
14465 case PLUS_EXPR:
14466 if (FLOAT_TYPE_P (type))
14467 return (tree_expr_nonnegative_warnv_p (op0,
14468 strict_overflow_p)
14469 && tree_expr_nonnegative_warnv_p (op1,
14470 strict_overflow_p));
14471
14472 /* zero_extend(x) + zero_extend(y) is non-negative if x and y are
14473 both unsigned and at least 2 bits shorter than the result. */
14474 if (TREE_CODE (type) == INTEGER_TYPE
14475 && TREE_CODE (op0) == NOP_EXPR
14476 && TREE_CODE (op1) == NOP_EXPR)
14477 {
14478 tree inner1 = TREE_TYPE (TREE_OPERAND (op0, 0));
14479 tree inner2 = TREE_TYPE (TREE_OPERAND (op1, 0));
14480 if (TREE_CODE (inner1) == INTEGER_TYPE && TYPE_UNSIGNED (inner1)
14481 && TREE_CODE (inner2) == INTEGER_TYPE && TYPE_UNSIGNED (inner2))
14482 {
14483 unsigned int prec = MAX (TYPE_PRECISION (inner1),
14484 TYPE_PRECISION (inner2)) + 1;
14485 return prec < TYPE_PRECISION (type);
14486 }
14487 }
14488 break;
14489
14490 case MULT_EXPR:
14491 if (FLOAT_TYPE_P (type) || TYPE_OVERFLOW_UNDEFINED (type))
14492 {
14493 /* x * x is always non-negative for floating point x
14494 or without overflow. */
14495 if (operand_equal_p (op0, op1, 0)
14496 || (tree_expr_nonnegative_warnv_p (op0, strict_overflow_p)
14497 && tree_expr_nonnegative_warnv_p (op1, strict_overflow_p)))
14498 {
14499 if (ANY_INTEGRAL_TYPE_P (type)
14500 && TYPE_OVERFLOW_UNDEFINED (type))
14501 *strict_overflow_p = true;
14502 return true;
14503 }
14504 }
14505
14506 /* zero_extend(x) * zero_extend(y) is non-negative if x and y are
14507 both unsigned and their total bits is shorter than the result. */
14508 if (TREE_CODE (type) == INTEGER_TYPE
14509 && (TREE_CODE (op0) == NOP_EXPR || TREE_CODE (op0) == INTEGER_CST)
14510 && (TREE_CODE (op1) == NOP_EXPR || TREE_CODE (op1) == INTEGER_CST))
14511 {
14512 tree inner0 = (TREE_CODE (op0) == NOP_EXPR)
14513 ? TREE_TYPE (TREE_OPERAND (op0, 0))
14514 : TREE_TYPE (op0);
14515 tree inner1 = (TREE_CODE (op1) == NOP_EXPR)
14516 ? TREE_TYPE (TREE_OPERAND (op1, 0))
14517 : TREE_TYPE (op1);
14518
14519 bool unsigned0 = TYPE_UNSIGNED (inner0);
14520 bool unsigned1 = TYPE_UNSIGNED (inner1);
14521
14522 if (TREE_CODE (op0) == INTEGER_CST)
14523 unsigned0 = unsigned0 || tree_int_cst_sgn (op0) >= 0;
14524
14525 if (TREE_CODE (op1) == INTEGER_CST)
14526 unsigned1 = unsigned1 || tree_int_cst_sgn (op1) >= 0;
14527
14528 if (TREE_CODE (inner0) == INTEGER_TYPE && unsigned0
14529 && TREE_CODE (inner1) == INTEGER_TYPE && unsigned1)
14530 {
14531 unsigned int precision0 = (TREE_CODE (op0) == INTEGER_CST)
14532 ? tree_int_cst_min_precision (op0, UNSIGNED)
14533 : TYPE_PRECISION (inner0);
14534
14535 unsigned int precision1 = (TREE_CODE (op1) == INTEGER_CST)
14536 ? tree_int_cst_min_precision (op1, UNSIGNED)
14537 : TYPE_PRECISION (inner1);
14538
14539 return precision0 + precision1 < TYPE_PRECISION (type);
14540 }
14541 }
14542 return false;
14543
14544 case BIT_AND_EXPR:
14545 case MAX_EXPR:
14546 return (tree_expr_nonnegative_warnv_p (op0,
14547 strict_overflow_p)
14548 || tree_expr_nonnegative_warnv_p (op1,
14549 strict_overflow_p));
14550
14551 case BIT_IOR_EXPR:
14552 case BIT_XOR_EXPR:
14553 case MIN_EXPR:
14554 case RDIV_EXPR:
14555 case TRUNC_DIV_EXPR:
14556 case CEIL_DIV_EXPR:
14557 case FLOOR_DIV_EXPR:
14558 case ROUND_DIV_EXPR:
14559 return (tree_expr_nonnegative_warnv_p (op0,
14560 strict_overflow_p)
14561 && tree_expr_nonnegative_warnv_p (op1,
14562 strict_overflow_p));
14563
14564 case TRUNC_MOD_EXPR:
14565 case CEIL_MOD_EXPR:
14566 case FLOOR_MOD_EXPR:
14567 case ROUND_MOD_EXPR:
14568 return tree_expr_nonnegative_warnv_p (op0,
14569 strict_overflow_p);
14570 default:
14571 return tree_simple_nonnegative_warnv_p (code, type);
14572 }
14573
14574 /* We don't know sign of `t', so be conservative and return false. */
14575 return false;
14576 }
14577
14578 /* Return true if T is known to be non-negative. If the return
14579 value is based on the assumption that signed overflow is undefined,
14580 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14581 *STRICT_OVERFLOW_P. */
14582
14583 bool
14584 tree_single_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
14585 {
14586 if (TYPE_UNSIGNED (TREE_TYPE (t)))
14587 return true;
14588
14589 switch (TREE_CODE (t))
14590 {
14591 case INTEGER_CST:
14592 return tree_int_cst_sgn (t) >= 0;
14593
14594 case REAL_CST:
14595 return ! REAL_VALUE_NEGATIVE (TREE_REAL_CST (t));
14596
14597 case FIXED_CST:
14598 return ! FIXED_VALUE_NEGATIVE (TREE_FIXED_CST (t));
14599
14600 case COND_EXPR:
14601 return (tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 1),
14602 strict_overflow_p)
14603 && tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 2),
14604 strict_overflow_p));
14605 default:
14606 return tree_simple_nonnegative_warnv_p (TREE_CODE (t),
14607 TREE_TYPE (t));
14608 }
14609 /* We don't know sign of `t', so be conservative and return false. */
14610 return false;
14611 }
14612
14613 /* Return true if T is known to be non-negative. If the return
14614 value is based on the assumption that signed overflow is undefined,
14615 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14616 *STRICT_OVERFLOW_P. */
14617
14618 bool
14619 tree_call_nonnegative_warnv_p (tree type, tree fndecl,
14620 tree arg0, tree arg1, bool *strict_overflow_p)
14621 {
14622 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
14623 switch (DECL_FUNCTION_CODE (fndecl))
14624 {
14625 CASE_FLT_FN (BUILT_IN_ACOS):
14626 CASE_FLT_FN (BUILT_IN_ACOSH):
14627 CASE_FLT_FN (BUILT_IN_CABS):
14628 CASE_FLT_FN (BUILT_IN_COSH):
14629 CASE_FLT_FN (BUILT_IN_ERFC):
14630 CASE_FLT_FN (BUILT_IN_EXP):
14631 CASE_FLT_FN (BUILT_IN_EXP10):
14632 CASE_FLT_FN (BUILT_IN_EXP2):
14633 CASE_FLT_FN (BUILT_IN_FABS):
14634 CASE_FLT_FN (BUILT_IN_FDIM):
14635 CASE_FLT_FN (BUILT_IN_HYPOT):
14636 CASE_FLT_FN (BUILT_IN_POW10):
14637 CASE_INT_FN (BUILT_IN_FFS):
14638 CASE_INT_FN (BUILT_IN_PARITY):
14639 CASE_INT_FN (BUILT_IN_POPCOUNT):
14640 CASE_INT_FN (BUILT_IN_CLZ):
14641 CASE_INT_FN (BUILT_IN_CLRSB):
14642 case BUILT_IN_BSWAP32:
14643 case BUILT_IN_BSWAP64:
14644 /* Always true. */
14645 return true;
14646
14647 CASE_FLT_FN (BUILT_IN_SQRT):
14648 /* sqrt(-0.0) is -0.0. */
14649 if (!HONOR_SIGNED_ZEROS (element_mode (type)))
14650 return true;
14651 return tree_expr_nonnegative_warnv_p (arg0,
14652 strict_overflow_p);
14653
14654 CASE_FLT_FN (BUILT_IN_ASINH):
14655 CASE_FLT_FN (BUILT_IN_ATAN):
14656 CASE_FLT_FN (BUILT_IN_ATANH):
14657 CASE_FLT_FN (BUILT_IN_CBRT):
14658 CASE_FLT_FN (BUILT_IN_CEIL):
14659 CASE_FLT_FN (BUILT_IN_ERF):
14660 CASE_FLT_FN (BUILT_IN_EXPM1):
14661 CASE_FLT_FN (BUILT_IN_FLOOR):
14662 CASE_FLT_FN (BUILT_IN_FMOD):
14663 CASE_FLT_FN (BUILT_IN_FREXP):
14664 CASE_FLT_FN (BUILT_IN_ICEIL):
14665 CASE_FLT_FN (BUILT_IN_IFLOOR):
14666 CASE_FLT_FN (BUILT_IN_IRINT):
14667 CASE_FLT_FN (BUILT_IN_IROUND):
14668 CASE_FLT_FN (BUILT_IN_LCEIL):
14669 CASE_FLT_FN (BUILT_IN_LDEXP):
14670 CASE_FLT_FN (BUILT_IN_LFLOOR):
14671 CASE_FLT_FN (BUILT_IN_LLCEIL):
14672 CASE_FLT_FN (BUILT_IN_LLFLOOR):
14673 CASE_FLT_FN (BUILT_IN_LLRINT):
14674 CASE_FLT_FN (BUILT_IN_LLROUND):
14675 CASE_FLT_FN (BUILT_IN_LRINT):
14676 CASE_FLT_FN (BUILT_IN_LROUND):
14677 CASE_FLT_FN (BUILT_IN_MODF):
14678 CASE_FLT_FN (BUILT_IN_NEARBYINT):
14679 CASE_FLT_FN (BUILT_IN_RINT):
14680 CASE_FLT_FN (BUILT_IN_ROUND):
14681 CASE_FLT_FN (BUILT_IN_SCALB):
14682 CASE_FLT_FN (BUILT_IN_SCALBLN):
14683 CASE_FLT_FN (BUILT_IN_SCALBN):
14684 CASE_FLT_FN (BUILT_IN_SIGNBIT):
14685 CASE_FLT_FN (BUILT_IN_SIGNIFICAND):
14686 CASE_FLT_FN (BUILT_IN_SINH):
14687 CASE_FLT_FN (BUILT_IN_TANH):
14688 CASE_FLT_FN (BUILT_IN_TRUNC):
14689 /* True if the 1st argument is nonnegative. */
14690 return tree_expr_nonnegative_warnv_p (arg0,
14691 strict_overflow_p);
14692
14693 CASE_FLT_FN (BUILT_IN_FMAX):
14694 /* True if the 1st OR 2nd arguments are nonnegative. */
14695 return (tree_expr_nonnegative_warnv_p (arg0,
14696 strict_overflow_p)
14697 || (tree_expr_nonnegative_warnv_p (arg1,
14698 strict_overflow_p)));
14699
14700 CASE_FLT_FN (BUILT_IN_FMIN):
14701 /* True if the 1st AND 2nd arguments are nonnegative. */
14702 return (tree_expr_nonnegative_warnv_p (arg0,
14703 strict_overflow_p)
14704 && (tree_expr_nonnegative_warnv_p (arg1,
14705 strict_overflow_p)));
14706
14707 CASE_FLT_FN (BUILT_IN_COPYSIGN):
14708 /* True if the 2nd argument is nonnegative. */
14709 return tree_expr_nonnegative_warnv_p (arg1,
14710 strict_overflow_p);
14711
14712 CASE_FLT_FN (BUILT_IN_POWI):
14713 /* True if the 1st argument is nonnegative or the second
14714 argument is an even integer. */
14715 if (TREE_CODE (arg1) == INTEGER_CST
14716 && (TREE_INT_CST_LOW (arg1) & 1) == 0)
14717 return true;
14718 return tree_expr_nonnegative_warnv_p (arg0,
14719 strict_overflow_p);
14720
14721 CASE_FLT_FN (BUILT_IN_POW):
14722 /* True if the 1st argument is nonnegative or the second
14723 argument is an even integer valued real. */
14724 if (TREE_CODE (arg1) == REAL_CST)
14725 {
14726 REAL_VALUE_TYPE c;
14727 HOST_WIDE_INT n;
14728
14729 c = TREE_REAL_CST (arg1);
14730 n = real_to_integer (&c);
14731 if ((n & 1) == 0)
14732 {
14733 REAL_VALUE_TYPE cint;
14734 real_from_integer (&cint, VOIDmode, n, SIGNED);
14735 if (real_identical (&c, &cint))
14736 return true;
14737 }
14738 }
14739 return tree_expr_nonnegative_warnv_p (arg0,
14740 strict_overflow_p);
14741
14742 default:
14743 break;
14744 }
14745 return tree_simple_nonnegative_warnv_p (CALL_EXPR,
14746 type);
14747 }
14748
14749 /* Return true if T is known to be non-negative. If the return
14750 value is based on the assumption that signed overflow is undefined,
14751 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14752 *STRICT_OVERFLOW_P. */
14753
14754 static bool
14755 tree_invalid_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
14756 {
14757 enum tree_code code = TREE_CODE (t);
14758 if (TYPE_UNSIGNED (TREE_TYPE (t)))
14759 return true;
14760
14761 switch (code)
14762 {
14763 case TARGET_EXPR:
14764 {
14765 tree temp = TARGET_EXPR_SLOT (t);
14766 t = TARGET_EXPR_INITIAL (t);
14767
14768 /* If the initializer is non-void, then it's a normal expression
14769 that will be assigned to the slot. */
14770 if (!VOID_TYPE_P (t))
14771 return tree_expr_nonnegative_warnv_p (t, strict_overflow_p);
14772
14773 /* Otherwise, the initializer sets the slot in some way. One common
14774 way is an assignment statement at the end of the initializer. */
14775 while (1)
14776 {
14777 if (TREE_CODE (t) == BIND_EXPR)
14778 t = expr_last (BIND_EXPR_BODY (t));
14779 else if (TREE_CODE (t) == TRY_FINALLY_EXPR
14780 || TREE_CODE (t) == TRY_CATCH_EXPR)
14781 t = expr_last (TREE_OPERAND (t, 0));
14782 else if (TREE_CODE (t) == STATEMENT_LIST)
14783 t = expr_last (t);
14784 else
14785 break;
14786 }
14787 if (TREE_CODE (t) == MODIFY_EXPR
14788 && TREE_OPERAND (t, 0) == temp)
14789 return tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 1),
14790 strict_overflow_p);
14791
14792 return false;
14793 }
14794
14795 case CALL_EXPR:
14796 {
14797 tree arg0 = call_expr_nargs (t) > 0 ? CALL_EXPR_ARG (t, 0) : NULL_TREE;
14798 tree arg1 = call_expr_nargs (t) > 1 ? CALL_EXPR_ARG (t, 1) : NULL_TREE;
14799
14800 return tree_call_nonnegative_warnv_p (TREE_TYPE (t),
14801 get_callee_fndecl (t),
14802 arg0,
14803 arg1,
14804 strict_overflow_p);
14805 }
14806 case COMPOUND_EXPR:
14807 case MODIFY_EXPR:
14808 return tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 1),
14809 strict_overflow_p);
14810 case BIND_EXPR:
14811 return tree_expr_nonnegative_warnv_p (expr_last (TREE_OPERAND (t, 1)),
14812 strict_overflow_p);
14813 case SAVE_EXPR:
14814 return tree_expr_nonnegative_warnv_p (TREE_OPERAND (t, 0),
14815 strict_overflow_p);
14816
14817 default:
14818 return tree_simple_nonnegative_warnv_p (TREE_CODE (t),
14819 TREE_TYPE (t));
14820 }
14821
14822 /* We don't know sign of `t', so be conservative and return false. */
14823 return false;
14824 }
14825
14826 /* Return true if T is known to be non-negative. If the return
14827 value is based on the assumption that signed overflow is undefined,
14828 set *STRICT_OVERFLOW_P to true; otherwise, don't change
14829 *STRICT_OVERFLOW_P. */
14830
14831 bool
14832 tree_expr_nonnegative_warnv_p (tree t, bool *strict_overflow_p)
14833 {
14834 enum tree_code code;
14835 if (t == error_mark_node)
14836 return false;
14837
14838 code = TREE_CODE (t);
14839 switch (TREE_CODE_CLASS (code))
14840 {
14841 case tcc_binary:
14842 case tcc_comparison:
14843 return tree_binary_nonnegative_warnv_p (TREE_CODE (t),
14844 TREE_TYPE (t),
14845 TREE_OPERAND (t, 0),
14846 TREE_OPERAND (t, 1),
14847 strict_overflow_p);
14848
14849 case tcc_unary:
14850 return tree_unary_nonnegative_warnv_p (TREE_CODE (t),
14851 TREE_TYPE (t),
14852 TREE_OPERAND (t, 0),
14853 strict_overflow_p);
14854
14855 case tcc_constant:
14856 case tcc_declaration:
14857 case tcc_reference:
14858 return tree_single_nonnegative_warnv_p (t, strict_overflow_p);
14859
14860 default:
14861 break;
14862 }
14863
14864 switch (code)
14865 {
14866 case TRUTH_AND_EXPR:
14867 case TRUTH_OR_EXPR:
14868 case TRUTH_XOR_EXPR:
14869 return tree_binary_nonnegative_warnv_p (TREE_CODE (t),
14870 TREE_TYPE (t),
14871 TREE_OPERAND (t, 0),
14872 TREE_OPERAND (t, 1),
14873 strict_overflow_p);
14874 case TRUTH_NOT_EXPR:
14875 return tree_unary_nonnegative_warnv_p (TREE_CODE (t),
14876 TREE_TYPE (t),
14877 TREE_OPERAND (t, 0),
14878 strict_overflow_p);
14879
14880 case COND_EXPR:
14881 case CONSTRUCTOR:
14882 case OBJ_TYPE_REF:
14883 case ASSERT_EXPR:
14884 case ADDR_EXPR:
14885 case WITH_SIZE_EXPR:
14886 case SSA_NAME:
14887 return tree_single_nonnegative_warnv_p (t, strict_overflow_p);
14888
14889 default:
14890 return tree_invalid_nonnegative_warnv_p (t, strict_overflow_p);
14891 }
14892 }
14893
14894 /* Return true if `t' is known to be non-negative. Handle warnings
14895 about undefined signed overflow. */
14896
14897 bool
14898 tree_expr_nonnegative_p (tree t)
14899 {
14900 bool ret, strict_overflow_p;
14901
14902 strict_overflow_p = false;
14903 ret = tree_expr_nonnegative_warnv_p (t, &strict_overflow_p);
14904 if (strict_overflow_p)
14905 fold_overflow_warning (("assuming signed overflow does not occur when "
14906 "determining that expression is always "
14907 "non-negative"),
14908 WARN_STRICT_OVERFLOW_MISC);
14909 return ret;
14910 }
14911
14912
14913 /* Return true when (CODE OP0) is an address and is known to be nonzero.
14914 For floating point we further ensure that T is not denormal.
14915 Similar logic is present in nonzero_address in rtlanal.h.
14916
14917 If the return value is based on the assumption that signed overflow
14918 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
14919 change *STRICT_OVERFLOW_P. */
14920
14921 bool
14922 tree_unary_nonzero_warnv_p (enum tree_code code, tree type, tree op0,
14923 bool *strict_overflow_p)
14924 {
14925 switch (code)
14926 {
14927 case ABS_EXPR:
14928 return tree_expr_nonzero_warnv_p (op0,
14929 strict_overflow_p);
14930
14931 case NOP_EXPR:
14932 {
14933 tree inner_type = TREE_TYPE (op0);
14934 tree outer_type = type;
14935
14936 return (TYPE_PRECISION (outer_type) >= TYPE_PRECISION (inner_type)
14937 && tree_expr_nonzero_warnv_p (op0,
14938 strict_overflow_p));
14939 }
14940 break;
14941
14942 case NON_LVALUE_EXPR:
14943 return tree_expr_nonzero_warnv_p (op0,
14944 strict_overflow_p);
14945
14946 default:
14947 break;
14948 }
14949
14950 return false;
14951 }
14952
14953 /* Return true when (CODE OP0 OP1) is an address and is known to be nonzero.
14954 For floating point we further ensure that T is not denormal.
14955 Similar logic is present in nonzero_address in rtlanal.h.
14956
14957 If the return value is based on the assumption that signed overflow
14958 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
14959 change *STRICT_OVERFLOW_P. */
14960
14961 bool
14962 tree_binary_nonzero_warnv_p (enum tree_code code,
14963 tree type,
14964 tree op0,
14965 tree op1, bool *strict_overflow_p)
14966 {
14967 bool sub_strict_overflow_p;
14968 switch (code)
14969 {
14970 case POINTER_PLUS_EXPR:
14971 case PLUS_EXPR:
14972 if (ANY_INTEGRAL_TYPE_P (type) && TYPE_OVERFLOW_UNDEFINED (type))
14973 {
14974 /* With the presence of negative values it is hard
14975 to say something. */
14976 sub_strict_overflow_p = false;
14977 if (!tree_expr_nonnegative_warnv_p (op0,
14978 &sub_strict_overflow_p)
14979 || !tree_expr_nonnegative_warnv_p (op1,
14980 &sub_strict_overflow_p))
14981 return false;
14982 /* One of operands must be positive and the other non-negative. */
14983 /* We don't set *STRICT_OVERFLOW_P here: even if this value
14984 overflows, on a twos-complement machine the sum of two
14985 nonnegative numbers can never be zero. */
14986 return (tree_expr_nonzero_warnv_p (op0,
14987 strict_overflow_p)
14988 || tree_expr_nonzero_warnv_p (op1,
14989 strict_overflow_p));
14990 }
14991 break;
14992
14993 case MULT_EXPR:
14994 if (TYPE_OVERFLOW_UNDEFINED (type))
14995 {
14996 if (tree_expr_nonzero_warnv_p (op0,
14997 strict_overflow_p)
14998 && tree_expr_nonzero_warnv_p (op1,
14999 strict_overflow_p))
15000 {
15001 *strict_overflow_p = true;
15002 return true;
15003 }
15004 }
15005 break;
15006
15007 case MIN_EXPR:
15008 sub_strict_overflow_p = false;
15009 if (tree_expr_nonzero_warnv_p (op0,
15010 &sub_strict_overflow_p)
15011 && tree_expr_nonzero_warnv_p (op1,
15012 &sub_strict_overflow_p))
15013 {
15014 if (sub_strict_overflow_p)
15015 *strict_overflow_p = true;
15016 }
15017 break;
15018
15019 case MAX_EXPR:
15020 sub_strict_overflow_p = false;
15021 if (tree_expr_nonzero_warnv_p (op0,
15022 &sub_strict_overflow_p))
15023 {
15024 if (sub_strict_overflow_p)
15025 *strict_overflow_p = true;
15026
15027 /* When both operands are nonzero, then MAX must be too. */
15028 if (tree_expr_nonzero_warnv_p (op1,
15029 strict_overflow_p))
15030 return true;
15031
15032 /* MAX where operand 0 is positive is positive. */
15033 return tree_expr_nonnegative_warnv_p (op0,
15034 strict_overflow_p);
15035 }
15036 /* MAX where operand 1 is positive is positive. */
15037 else if (tree_expr_nonzero_warnv_p (op1,
15038 &sub_strict_overflow_p)
15039 && tree_expr_nonnegative_warnv_p (op1,
15040 &sub_strict_overflow_p))
15041 {
15042 if (sub_strict_overflow_p)
15043 *strict_overflow_p = true;
15044 return true;
15045 }
15046 break;
15047
15048 case BIT_IOR_EXPR:
15049 return (tree_expr_nonzero_warnv_p (op1,
15050 strict_overflow_p)
15051 || tree_expr_nonzero_warnv_p (op0,
15052 strict_overflow_p));
15053
15054 default:
15055 break;
15056 }
15057
15058 return false;
15059 }
15060
15061 /* Return true when T is an address and is known to be nonzero.
15062 For floating point we further ensure that T is not denormal.
15063 Similar logic is present in nonzero_address in rtlanal.h.
15064
15065 If the return value is based on the assumption that signed overflow
15066 is undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't
15067 change *STRICT_OVERFLOW_P. */
15068
15069 bool
15070 tree_single_nonzero_warnv_p (tree t, bool *strict_overflow_p)
15071 {
15072 bool sub_strict_overflow_p;
15073 switch (TREE_CODE (t))
15074 {
15075 case INTEGER_CST:
15076 return !integer_zerop (t);
15077
15078 case ADDR_EXPR:
15079 {
15080 tree base = TREE_OPERAND (t, 0);
15081
15082 if (!DECL_P (base))
15083 base = get_base_address (base);
15084
15085 if (!base)
15086 return false;
15087
15088 /* For objects in symbol table check if we know they are non-zero.
15089 Don't do anything for variables and functions before symtab is built;
15090 it is quite possible that they will be declared weak later. */
15091 if (DECL_P (base) && decl_in_symtab_p (base))
15092 {
15093 struct symtab_node *symbol;
15094
15095 symbol = symtab_node::get_create (base);
15096 if (symbol)
15097 return symbol->nonzero_address ();
15098 else
15099 return false;
15100 }
15101
15102 /* Function local objects are never NULL. */
15103 if (DECL_P (base)
15104 && (DECL_CONTEXT (base)
15105 && TREE_CODE (DECL_CONTEXT (base)) == FUNCTION_DECL
15106 && auto_var_in_fn_p (base, DECL_CONTEXT (base))))
15107 return true;
15108
15109 /* Constants are never weak. */
15110 if (CONSTANT_CLASS_P (base))
15111 return true;
15112
15113 return false;
15114 }
15115
15116 case COND_EXPR:
15117 sub_strict_overflow_p = false;
15118 if (tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 1),
15119 &sub_strict_overflow_p)
15120 && tree_expr_nonzero_warnv_p (TREE_OPERAND (t, 2),
15121 &sub_strict_overflow_p))
15122 {
15123 if (sub_strict_overflow_p)
15124 *strict_overflow_p = true;
15125 return true;
15126 }
15127 break;
15128
15129 default:
15130 break;
15131 }
15132 return false;
15133 }
15134
15135 /* Given the components of a binary expression CODE, TYPE, OP0 and OP1,
15136 attempt to fold the expression to a constant without modifying TYPE,
15137 OP0 or OP1.
15138
15139 If the expression could be simplified to a constant, then return
15140 the constant. If the expression would not be simplified to a
15141 constant, then return NULL_TREE. */
15142
15143 tree
15144 fold_binary_to_constant (enum tree_code code, tree type, tree op0, tree op1)
15145 {
15146 tree tem = fold_binary (code, type, op0, op1);
15147 return (tem && TREE_CONSTANT (tem)) ? tem : NULL_TREE;
15148 }
15149
15150 /* Given the components of a unary expression CODE, TYPE and OP0,
15151 attempt to fold the expression to a constant without modifying
15152 TYPE or OP0.
15153
15154 If the expression could be simplified to a constant, then return
15155 the constant. If the expression would not be simplified to a
15156 constant, then return NULL_TREE. */
15157
15158 tree
15159 fold_unary_to_constant (enum tree_code code, tree type, tree op0)
15160 {
15161 tree tem = fold_unary (code, type, op0);
15162 return (tem && TREE_CONSTANT (tem)) ? tem : NULL_TREE;
15163 }
15164
15165 /* If EXP represents referencing an element in a constant string
15166 (either via pointer arithmetic or array indexing), return the
15167 tree representing the value accessed, otherwise return NULL. */
15168
15169 tree
15170 fold_read_from_constant_string (tree exp)
15171 {
15172 if ((TREE_CODE (exp) == INDIRECT_REF
15173 || TREE_CODE (exp) == ARRAY_REF)
15174 && TREE_CODE (TREE_TYPE (exp)) == INTEGER_TYPE)
15175 {
15176 tree exp1 = TREE_OPERAND (exp, 0);
15177 tree index;
15178 tree string;
15179 location_t loc = EXPR_LOCATION (exp);
15180
15181 if (TREE_CODE (exp) == INDIRECT_REF)
15182 string = string_constant (exp1, &index);
15183 else
15184 {
15185 tree low_bound = array_ref_low_bound (exp);
15186 index = fold_convert_loc (loc, sizetype, TREE_OPERAND (exp, 1));
15187
15188 /* Optimize the special-case of a zero lower bound.
15189
15190 We convert the low_bound to sizetype to avoid some problems
15191 with constant folding. (E.g. suppose the lower bound is 1,
15192 and its mode is QI. Without the conversion,l (ARRAY
15193 +(INDEX-(unsigned char)1)) becomes ((ARRAY+(-(unsigned char)1))
15194 +INDEX), which becomes (ARRAY+255+INDEX). Oops!) */
15195 if (! integer_zerop (low_bound))
15196 index = size_diffop_loc (loc, index,
15197 fold_convert_loc (loc, sizetype, low_bound));
15198
15199 string = exp1;
15200 }
15201
15202 if (string
15203 && TYPE_MODE (TREE_TYPE (exp)) == TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))
15204 && TREE_CODE (string) == STRING_CST
15205 && TREE_CODE (index) == INTEGER_CST
15206 && compare_tree_int (index, TREE_STRING_LENGTH (string)) < 0
15207 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (string))))
15208 == MODE_INT)
15209 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))) == 1))
15210 return build_int_cst_type (TREE_TYPE (exp),
15211 (TREE_STRING_POINTER (string)
15212 [TREE_INT_CST_LOW (index)]));
15213 }
15214 return NULL;
15215 }
15216
15217 /* Return the tree for neg (ARG0) when ARG0 is known to be either
15218 an integer constant, real, or fixed-point constant.
15219
15220 TYPE is the type of the result. */
15221
15222 static tree
15223 fold_negate_const (tree arg0, tree type)
15224 {
15225 tree t = NULL_TREE;
15226
15227 switch (TREE_CODE (arg0))
15228 {
15229 case INTEGER_CST:
15230 {
15231 bool overflow;
15232 wide_int val = wi::neg (arg0, &overflow);
15233 t = force_fit_type (type, val, 1,
15234 (overflow | TREE_OVERFLOW (arg0))
15235 && !TYPE_UNSIGNED (type));
15236 break;
15237 }
15238
15239 case REAL_CST:
15240 t = build_real (type, real_value_negate (&TREE_REAL_CST (arg0)));
15241 break;
15242
15243 case FIXED_CST:
15244 {
15245 FIXED_VALUE_TYPE f;
15246 bool overflow_p = fixed_arithmetic (&f, NEGATE_EXPR,
15247 &(TREE_FIXED_CST (arg0)), NULL,
15248 TYPE_SATURATING (type));
15249 t = build_fixed (type, f);
15250 /* Propagate overflow flags. */
15251 if (overflow_p | TREE_OVERFLOW (arg0))
15252 TREE_OVERFLOW (t) = 1;
15253 break;
15254 }
15255
15256 default:
15257 gcc_unreachable ();
15258 }
15259
15260 return t;
15261 }
15262
15263 /* Return the tree for abs (ARG0) when ARG0 is known to be either
15264 an integer constant or real constant.
15265
15266 TYPE is the type of the result. */
15267
15268 tree
15269 fold_abs_const (tree arg0, tree type)
15270 {
15271 tree t = NULL_TREE;
15272
15273 switch (TREE_CODE (arg0))
15274 {
15275 case INTEGER_CST:
15276 {
15277 /* If the value is unsigned or non-negative, then the absolute value
15278 is the same as the ordinary value. */
15279 if (!wi::neg_p (arg0, TYPE_SIGN (type)))
15280 t = arg0;
15281
15282 /* If the value is negative, then the absolute value is
15283 its negation. */
15284 else
15285 {
15286 bool overflow;
15287 wide_int val = wi::neg (arg0, &overflow);
15288 t = force_fit_type (type, val, -1,
15289 overflow | TREE_OVERFLOW (arg0));
15290 }
15291 }
15292 break;
15293
15294 case REAL_CST:
15295 if (REAL_VALUE_NEGATIVE (TREE_REAL_CST (arg0)))
15296 t = build_real (type, real_value_negate (&TREE_REAL_CST (arg0)));
15297 else
15298 t = arg0;
15299 break;
15300
15301 default:
15302 gcc_unreachable ();
15303 }
15304
15305 return t;
15306 }
15307
15308 /* Return the tree for not (ARG0) when ARG0 is known to be an integer
15309 constant. TYPE is the type of the result. */
15310
15311 static tree
15312 fold_not_const (const_tree arg0, tree type)
15313 {
15314 gcc_assert (TREE_CODE (arg0) == INTEGER_CST);
15315
15316 return force_fit_type (type, wi::bit_not (arg0), 0, TREE_OVERFLOW (arg0));
15317 }
15318
15319 /* Given CODE, a relational operator, the target type, TYPE and two
15320 constant operands OP0 and OP1, return the result of the
15321 relational operation. If the result is not a compile time
15322 constant, then return NULL_TREE. */
15323
15324 static tree
15325 fold_relational_const (enum tree_code code, tree type, tree op0, tree op1)
15326 {
15327 int result, invert;
15328
15329 /* From here on, the only cases we handle are when the result is
15330 known to be a constant. */
15331
15332 if (TREE_CODE (op0) == REAL_CST && TREE_CODE (op1) == REAL_CST)
15333 {
15334 const REAL_VALUE_TYPE *c0 = TREE_REAL_CST_PTR (op0);
15335 const REAL_VALUE_TYPE *c1 = TREE_REAL_CST_PTR (op1);
15336
15337 /* Handle the cases where either operand is a NaN. */
15338 if (real_isnan (c0) || real_isnan (c1))
15339 {
15340 switch (code)
15341 {
15342 case EQ_EXPR:
15343 case ORDERED_EXPR:
15344 result = 0;
15345 break;
15346
15347 case NE_EXPR:
15348 case UNORDERED_EXPR:
15349 case UNLT_EXPR:
15350 case UNLE_EXPR:
15351 case UNGT_EXPR:
15352 case UNGE_EXPR:
15353 case UNEQ_EXPR:
15354 result = 1;
15355 break;
15356
15357 case LT_EXPR:
15358 case LE_EXPR:
15359 case GT_EXPR:
15360 case GE_EXPR:
15361 case LTGT_EXPR:
15362 if (flag_trapping_math)
15363 return NULL_TREE;
15364 result = 0;
15365 break;
15366
15367 default:
15368 gcc_unreachable ();
15369 }
15370
15371 return constant_boolean_node (result, type);
15372 }
15373
15374 return constant_boolean_node (real_compare (code, c0, c1), type);
15375 }
15376
15377 if (TREE_CODE (op0) == FIXED_CST && TREE_CODE (op1) == FIXED_CST)
15378 {
15379 const FIXED_VALUE_TYPE *c0 = TREE_FIXED_CST_PTR (op0);
15380 const FIXED_VALUE_TYPE *c1 = TREE_FIXED_CST_PTR (op1);
15381 return constant_boolean_node (fixed_compare (code, c0, c1), type);
15382 }
15383
15384 /* Handle equality/inequality of complex constants. */
15385 if (TREE_CODE (op0) == COMPLEX_CST && TREE_CODE (op1) == COMPLEX_CST)
15386 {
15387 tree rcond = fold_relational_const (code, type,
15388 TREE_REALPART (op0),
15389 TREE_REALPART (op1));
15390 tree icond = fold_relational_const (code, type,
15391 TREE_IMAGPART (op0),
15392 TREE_IMAGPART (op1));
15393 if (code == EQ_EXPR)
15394 return fold_build2 (TRUTH_ANDIF_EXPR, type, rcond, icond);
15395 else if (code == NE_EXPR)
15396 return fold_build2 (TRUTH_ORIF_EXPR, type, rcond, icond);
15397 else
15398 return NULL_TREE;
15399 }
15400
15401 if (TREE_CODE (op0) == VECTOR_CST && TREE_CODE (op1) == VECTOR_CST)
15402 {
15403 unsigned count = VECTOR_CST_NELTS (op0);
15404 tree *elts = XALLOCAVEC (tree, count);
15405 gcc_assert (VECTOR_CST_NELTS (op1) == count
15406 && TYPE_VECTOR_SUBPARTS (type) == count);
15407
15408 for (unsigned i = 0; i < count; i++)
15409 {
15410 tree elem_type = TREE_TYPE (type);
15411 tree elem0 = VECTOR_CST_ELT (op0, i);
15412 tree elem1 = VECTOR_CST_ELT (op1, i);
15413
15414 tree tem = fold_relational_const (code, elem_type,
15415 elem0, elem1);
15416
15417 if (tem == NULL_TREE)
15418 return NULL_TREE;
15419
15420 elts[i] = build_int_cst (elem_type, integer_zerop (tem) ? 0 : -1);
15421 }
15422
15423 return build_vector (type, elts);
15424 }
15425
15426 /* From here on we only handle LT, LE, GT, GE, EQ and NE.
15427
15428 To compute GT, swap the arguments and do LT.
15429 To compute GE, do LT and invert the result.
15430 To compute LE, swap the arguments, do LT and invert the result.
15431 To compute NE, do EQ and invert the result.
15432
15433 Therefore, the code below must handle only EQ and LT. */
15434
15435 if (code == LE_EXPR || code == GT_EXPR)
15436 {
15437 std::swap (op0, op1);
15438 code = swap_tree_comparison (code);
15439 }
15440
15441 /* Note that it is safe to invert for real values here because we
15442 have already handled the one case that it matters. */
15443
15444 invert = 0;
15445 if (code == NE_EXPR || code == GE_EXPR)
15446 {
15447 invert = 1;
15448 code = invert_tree_comparison (code, false);
15449 }
15450
15451 /* Compute a result for LT or EQ if args permit;
15452 Otherwise return T. */
15453 if (TREE_CODE (op0) == INTEGER_CST && TREE_CODE (op1) == INTEGER_CST)
15454 {
15455 if (code == EQ_EXPR)
15456 result = tree_int_cst_equal (op0, op1);
15457 else
15458 result = tree_int_cst_lt (op0, op1);
15459 }
15460 else
15461 return NULL_TREE;
15462
15463 if (invert)
15464 result ^= 1;
15465 return constant_boolean_node (result, type);
15466 }
15467
15468 /* If necessary, return a CLEANUP_POINT_EXPR for EXPR with the
15469 indicated TYPE. If no CLEANUP_POINT_EXPR is necessary, return EXPR
15470 itself. */
15471
15472 tree
15473 fold_build_cleanup_point_expr (tree type, tree expr)
15474 {
15475 /* If the expression does not have side effects then we don't have to wrap
15476 it with a cleanup point expression. */
15477 if (!TREE_SIDE_EFFECTS (expr))
15478 return expr;
15479
15480 /* If the expression is a return, check to see if the expression inside the
15481 return has no side effects or the right hand side of the modify expression
15482 inside the return. If either don't have side effects set we don't need to
15483 wrap the expression in a cleanup point expression. Note we don't check the
15484 left hand side of the modify because it should always be a return decl. */
15485 if (TREE_CODE (expr) == RETURN_EXPR)
15486 {
15487 tree op = TREE_OPERAND (expr, 0);
15488 if (!op || !TREE_SIDE_EFFECTS (op))
15489 return expr;
15490 op = TREE_OPERAND (op, 1);
15491 if (!TREE_SIDE_EFFECTS (op))
15492 return expr;
15493 }
15494
15495 return build1 (CLEANUP_POINT_EXPR, type, expr);
15496 }
15497
15498 /* Given a pointer value OP0 and a type TYPE, return a simplified version
15499 of an indirection through OP0, or NULL_TREE if no simplification is
15500 possible. */
15501
15502 tree
15503 fold_indirect_ref_1 (location_t loc, tree type, tree op0)
15504 {
15505 tree sub = op0;
15506 tree subtype;
15507
15508 STRIP_NOPS (sub);
15509 subtype = TREE_TYPE (sub);
15510 if (!POINTER_TYPE_P (subtype))
15511 return NULL_TREE;
15512
15513 if (TREE_CODE (sub) == ADDR_EXPR)
15514 {
15515 tree op = TREE_OPERAND (sub, 0);
15516 tree optype = TREE_TYPE (op);
15517 /* *&CONST_DECL -> to the value of the const decl. */
15518 if (TREE_CODE (op) == CONST_DECL)
15519 return DECL_INITIAL (op);
15520 /* *&p => p; make sure to handle *&"str"[cst] here. */
15521 if (type == optype)
15522 {
15523 tree fop = fold_read_from_constant_string (op);
15524 if (fop)
15525 return fop;
15526 else
15527 return op;
15528 }
15529 /* *(foo *)&fooarray => fooarray[0] */
15530 else if (TREE_CODE (optype) == ARRAY_TYPE
15531 && type == TREE_TYPE (optype)
15532 && (!in_gimple_form
15533 || TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST))
15534 {
15535 tree type_domain = TYPE_DOMAIN (optype);
15536 tree min_val = size_zero_node;
15537 if (type_domain && TYPE_MIN_VALUE (type_domain))
15538 min_val = TYPE_MIN_VALUE (type_domain);
15539 if (in_gimple_form
15540 && TREE_CODE (min_val) != INTEGER_CST)
15541 return NULL_TREE;
15542 return build4_loc (loc, ARRAY_REF, type, op, min_val,
15543 NULL_TREE, NULL_TREE);
15544 }
15545 /* *(foo *)&complexfoo => __real__ complexfoo */
15546 else if (TREE_CODE (optype) == COMPLEX_TYPE
15547 && type == TREE_TYPE (optype))
15548 return fold_build1_loc (loc, REALPART_EXPR, type, op);
15549 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
15550 else if (TREE_CODE (optype) == VECTOR_TYPE
15551 && type == TREE_TYPE (optype))
15552 {
15553 tree part_width = TYPE_SIZE (type);
15554 tree index = bitsize_int (0);
15555 return fold_build3_loc (loc, BIT_FIELD_REF, type, op, part_width, index);
15556 }
15557 }
15558
15559 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
15560 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
15561 {
15562 tree op00 = TREE_OPERAND (sub, 0);
15563 tree op01 = TREE_OPERAND (sub, 1);
15564
15565 STRIP_NOPS (op00);
15566 if (TREE_CODE (op00) == ADDR_EXPR)
15567 {
15568 tree op00type;
15569 op00 = TREE_OPERAND (op00, 0);
15570 op00type = TREE_TYPE (op00);
15571
15572 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
15573 if (TREE_CODE (op00type) == VECTOR_TYPE
15574 && type == TREE_TYPE (op00type))
15575 {
15576 HOST_WIDE_INT offset = tree_to_shwi (op01);
15577 tree part_width = TYPE_SIZE (type);
15578 unsigned HOST_WIDE_INT part_widthi = tree_to_shwi (part_width)/BITS_PER_UNIT;
15579 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
15580 tree index = bitsize_int (indexi);
15581
15582 if (offset / part_widthi < TYPE_VECTOR_SUBPARTS (op00type))
15583 return fold_build3_loc (loc,
15584 BIT_FIELD_REF, type, op00,
15585 part_width, index);
15586
15587 }
15588 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
15589 else if (TREE_CODE (op00type) == COMPLEX_TYPE
15590 && type == TREE_TYPE (op00type))
15591 {
15592 tree size = TYPE_SIZE_UNIT (type);
15593 if (tree_int_cst_equal (size, op01))
15594 return fold_build1_loc (loc, IMAGPART_EXPR, type, op00);
15595 }
15596 /* ((foo *)&fooarray)[1] => fooarray[1] */
15597 else if (TREE_CODE (op00type) == ARRAY_TYPE
15598 && type == TREE_TYPE (op00type))
15599 {
15600 tree type_domain = TYPE_DOMAIN (op00type);
15601 tree min_val = size_zero_node;
15602 if (type_domain && TYPE_MIN_VALUE (type_domain))
15603 min_val = TYPE_MIN_VALUE (type_domain);
15604 op01 = size_binop_loc (loc, EXACT_DIV_EXPR, op01,
15605 TYPE_SIZE_UNIT (type));
15606 op01 = size_binop_loc (loc, PLUS_EXPR, op01, min_val);
15607 return build4_loc (loc, ARRAY_REF, type, op00, op01,
15608 NULL_TREE, NULL_TREE);
15609 }
15610 }
15611 }
15612
15613 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
15614 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
15615 && type == TREE_TYPE (TREE_TYPE (subtype))
15616 && (!in_gimple_form
15617 || TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST))
15618 {
15619 tree type_domain;
15620 tree min_val = size_zero_node;
15621 sub = build_fold_indirect_ref_loc (loc, sub);
15622 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
15623 if (type_domain && TYPE_MIN_VALUE (type_domain))
15624 min_val = TYPE_MIN_VALUE (type_domain);
15625 if (in_gimple_form
15626 && TREE_CODE (min_val) != INTEGER_CST)
15627 return NULL_TREE;
15628 return build4_loc (loc, ARRAY_REF, type, sub, min_val, NULL_TREE,
15629 NULL_TREE);
15630 }
15631
15632 return NULL_TREE;
15633 }
15634
15635 /* Builds an expression for an indirection through T, simplifying some
15636 cases. */
15637
15638 tree
15639 build_fold_indirect_ref_loc (location_t loc, tree t)
15640 {
15641 tree type = TREE_TYPE (TREE_TYPE (t));
15642 tree sub = fold_indirect_ref_1 (loc, type, t);
15643
15644 if (sub)
15645 return sub;
15646
15647 return build1_loc (loc, INDIRECT_REF, type, t);
15648 }
15649
15650 /* Given an INDIRECT_REF T, return either T or a simplified version. */
15651
15652 tree
15653 fold_indirect_ref_loc (location_t loc, tree t)
15654 {
15655 tree sub = fold_indirect_ref_1 (loc, TREE_TYPE (t), TREE_OPERAND (t, 0));
15656
15657 if (sub)
15658 return sub;
15659 else
15660 return t;
15661 }
15662
15663 /* Strip non-trapping, non-side-effecting tree nodes from an expression
15664 whose result is ignored. The type of the returned tree need not be
15665 the same as the original expression. */
15666
15667 tree
15668 fold_ignored_result (tree t)
15669 {
15670 if (!TREE_SIDE_EFFECTS (t))
15671 return integer_zero_node;
15672
15673 for (;;)
15674 switch (TREE_CODE_CLASS (TREE_CODE (t)))
15675 {
15676 case tcc_unary:
15677 t = TREE_OPERAND (t, 0);
15678 break;
15679
15680 case tcc_binary:
15681 case tcc_comparison:
15682 if (!TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1)))
15683 t = TREE_OPERAND (t, 0);
15684 else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (t, 0)))
15685 t = TREE_OPERAND (t, 1);
15686 else
15687 return t;
15688 break;
15689
15690 case tcc_expression:
15691 switch (TREE_CODE (t))
15692 {
15693 case COMPOUND_EXPR:
15694 if (TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1)))
15695 return t;
15696 t = TREE_OPERAND (t, 0);
15697 break;
15698
15699 case COND_EXPR:
15700 if (TREE_SIDE_EFFECTS (TREE_OPERAND (t, 1))
15701 || TREE_SIDE_EFFECTS (TREE_OPERAND (t, 2)))
15702 return t;
15703 t = TREE_OPERAND (t, 0);
15704 break;
15705
15706 default:
15707 return t;
15708 }
15709 break;
15710
15711 default:
15712 return t;
15713 }
15714 }
15715
15716 /* Return the value of VALUE, rounded up to a multiple of DIVISOR. */
15717
15718 tree
15719 round_up_loc (location_t loc, tree value, unsigned int divisor)
15720 {
15721 tree div = NULL_TREE;
15722
15723 if (divisor == 1)
15724 return value;
15725
15726 /* See if VALUE is already a multiple of DIVISOR. If so, we don't
15727 have to do anything. Only do this when we are not given a const,
15728 because in that case, this check is more expensive than just
15729 doing it. */
15730 if (TREE_CODE (value) != INTEGER_CST)
15731 {
15732 div = build_int_cst (TREE_TYPE (value), divisor);
15733
15734 if (multiple_of_p (TREE_TYPE (value), value, div))
15735 return value;
15736 }
15737
15738 /* If divisor is a power of two, simplify this to bit manipulation. */
15739 if (divisor == (divisor & -divisor))
15740 {
15741 if (TREE_CODE (value) == INTEGER_CST)
15742 {
15743 wide_int val = value;
15744 bool overflow_p;
15745
15746 if ((val & (divisor - 1)) == 0)
15747 return value;
15748
15749 overflow_p = TREE_OVERFLOW (value);
15750 val += divisor - 1;
15751 val &= - (int) divisor;
15752 if (val == 0)
15753 overflow_p = true;
15754
15755 return force_fit_type (TREE_TYPE (value), val, -1, overflow_p);
15756 }
15757 else
15758 {
15759 tree t;
15760
15761 t = build_int_cst (TREE_TYPE (value), divisor - 1);
15762 value = size_binop_loc (loc, PLUS_EXPR, value, t);
15763 t = build_int_cst (TREE_TYPE (value), - (int) divisor);
15764 value = size_binop_loc (loc, BIT_AND_EXPR, value, t);
15765 }
15766 }
15767 else
15768 {
15769 if (!div)
15770 div = build_int_cst (TREE_TYPE (value), divisor);
15771 value = size_binop_loc (loc, CEIL_DIV_EXPR, value, div);
15772 value = size_binop_loc (loc, MULT_EXPR, value, div);
15773 }
15774
15775 return value;
15776 }
15777
15778 /* Likewise, but round down. */
15779
15780 tree
15781 round_down_loc (location_t loc, tree value, int divisor)
15782 {
15783 tree div = NULL_TREE;
15784
15785 gcc_assert (divisor > 0);
15786 if (divisor == 1)
15787 return value;
15788
15789 /* See if VALUE is already a multiple of DIVISOR. If so, we don't
15790 have to do anything. Only do this when we are not given a const,
15791 because in that case, this check is more expensive than just
15792 doing it. */
15793 if (TREE_CODE (value) != INTEGER_CST)
15794 {
15795 div = build_int_cst (TREE_TYPE (value), divisor);
15796
15797 if (multiple_of_p (TREE_TYPE (value), value, div))
15798 return value;
15799 }
15800
15801 /* If divisor is a power of two, simplify this to bit manipulation. */
15802 if (divisor == (divisor & -divisor))
15803 {
15804 tree t;
15805
15806 t = build_int_cst (TREE_TYPE (value), -divisor);
15807 value = size_binop_loc (loc, BIT_AND_EXPR, value, t);
15808 }
15809 else
15810 {
15811 if (!div)
15812 div = build_int_cst (TREE_TYPE (value), divisor);
15813 value = size_binop_loc (loc, FLOOR_DIV_EXPR, value, div);
15814 value = size_binop_loc (loc, MULT_EXPR, value, div);
15815 }
15816
15817 return value;
15818 }
15819
15820 /* Returns the pointer to the base of the object addressed by EXP and
15821 extracts the information about the offset of the access, storing it
15822 to PBITPOS and POFFSET. */
15823
15824 static tree
15825 split_address_to_core_and_offset (tree exp,
15826 HOST_WIDE_INT *pbitpos, tree *poffset)
15827 {
15828 tree core;
15829 machine_mode mode;
15830 int unsignedp, volatilep;
15831 HOST_WIDE_INT bitsize;
15832 location_t loc = EXPR_LOCATION (exp);
15833
15834 if (TREE_CODE (exp) == ADDR_EXPR)
15835 {
15836 core = get_inner_reference (TREE_OPERAND (exp, 0), &bitsize, pbitpos,
15837 poffset, &mode, &unsignedp, &volatilep,
15838 false);
15839 core = build_fold_addr_expr_loc (loc, core);
15840 }
15841 else
15842 {
15843 core = exp;
15844 *pbitpos = 0;
15845 *poffset = NULL_TREE;
15846 }
15847
15848 return core;
15849 }
15850
15851 /* Returns true if addresses of E1 and E2 differ by a constant, false
15852 otherwise. If they do, E1 - E2 is stored in *DIFF. */
15853
15854 bool
15855 ptr_difference_const (tree e1, tree e2, HOST_WIDE_INT *diff)
15856 {
15857 tree core1, core2;
15858 HOST_WIDE_INT bitpos1, bitpos2;
15859 tree toffset1, toffset2, tdiff, type;
15860
15861 core1 = split_address_to_core_and_offset (e1, &bitpos1, &toffset1);
15862 core2 = split_address_to_core_and_offset (e2, &bitpos2, &toffset2);
15863
15864 if (bitpos1 % BITS_PER_UNIT != 0
15865 || bitpos2 % BITS_PER_UNIT != 0
15866 || !operand_equal_p (core1, core2, 0))
15867 return false;
15868
15869 if (toffset1 && toffset2)
15870 {
15871 type = TREE_TYPE (toffset1);
15872 if (type != TREE_TYPE (toffset2))
15873 toffset2 = fold_convert (type, toffset2);
15874
15875 tdiff = fold_build2 (MINUS_EXPR, type, toffset1, toffset2);
15876 if (!cst_and_fits_in_hwi (tdiff))
15877 return false;
15878
15879 *diff = int_cst_value (tdiff);
15880 }
15881 else if (toffset1 || toffset2)
15882 {
15883 /* If only one of the offsets is non-constant, the difference cannot
15884 be a constant. */
15885 return false;
15886 }
15887 else
15888 *diff = 0;
15889
15890 *diff += (bitpos1 - bitpos2) / BITS_PER_UNIT;
15891 return true;
15892 }
15893
15894 /* Simplify the floating point expression EXP when the sign of the
15895 result is not significant. Return NULL_TREE if no simplification
15896 is possible. */
15897
15898 tree
15899 fold_strip_sign_ops (tree exp)
15900 {
15901 tree arg0, arg1;
15902 location_t loc = EXPR_LOCATION (exp);
15903
15904 switch (TREE_CODE (exp))
15905 {
15906 case ABS_EXPR:
15907 case NEGATE_EXPR:
15908 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 0));
15909 return arg0 ? arg0 : TREE_OPERAND (exp, 0);
15910
15911 case MULT_EXPR:
15912 case RDIV_EXPR:
15913 if (HONOR_SIGN_DEPENDENT_ROUNDING (element_mode (exp)))
15914 return NULL_TREE;
15915 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 0));
15916 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
15917 if (arg0 != NULL_TREE || arg1 != NULL_TREE)
15918 return fold_build2_loc (loc, TREE_CODE (exp), TREE_TYPE (exp),
15919 arg0 ? arg0 : TREE_OPERAND (exp, 0),
15920 arg1 ? arg1 : TREE_OPERAND (exp, 1));
15921 break;
15922
15923 case COMPOUND_EXPR:
15924 arg0 = TREE_OPERAND (exp, 0);
15925 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
15926 if (arg1)
15927 return fold_build2_loc (loc, COMPOUND_EXPR, TREE_TYPE (exp), arg0, arg1);
15928 break;
15929
15930 case COND_EXPR:
15931 arg0 = fold_strip_sign_ops (TREE_OPERAND (exp, 1));
15932 arg1 = fold_strip_sign_ops (TREE_OPERAND (exp, 2));
15933 if (arg0 || arg1)
15934 return fold_build3_loc (loc,
15935 COND_EXPR, TREE_TYPE (exp), TREE_OPERAND (exp, 0),
15936 arg0 ? arg0 : TREE_OPERAND (exp, 1),
15937 arg1 ? arg1 : TREE_OPERAND (exp, 2));
15938 break;
15939
15940 case CALL_EXPR:
15941 {
15942 const enum built_in_function fcode = builtin_mathfn_code (exp);
15943 switch (fcode)
15944 {
15945 CASE_FLT_FN (BUILT_IN_COPYSIGN):
15946 /* Strip copysign function call, return the 1st argument. */
15947 arg0 = CALL_EXPR_ARG (exp, 0);
15948 arg1 = CALL_EXPR_ARG (exp, 1);
15949 return omit_one_operand_loc (loc, TREE_TYPE (exp), arg0, arg1);
15950
15951 default:
15952 /* Strip sign ops from the argument of "odd" math functions. */
15953 if (negate_mathfn_p (fcode))
15954 {
15955 arg0 = fold_strip_sign_ops (CALL_EXPR_ARG (exp, 0));
15956 if (arg0)
15957 return build_call_expr_loc (loc, get_callee_fndecl (exp), 1, arg0);
15958 }
15959 break;
15960 }
15961 }
15962 break;
15963
15964 default:
15965 break;
15966 }
15967 return NULL_TREE;
15968 }
15969
15970 /* Return OFF converted to a pointer offset type suitable as offset for
15971 POINTER_PLUS_EXPR. Use location LOC for this conversion. */
15972 tree
15973 convert_to_ptrofftype_loc (location_t loc, tree off)
15974 {
15975 return fold_convert_loc (loc, sizetype, off);
15976 }
15977
15978 /* Build and fold a POINTER_PLUS_EXPR at LOC offsetting PTR by OFF. */
15979 tree
15980 fold_build_pointer_plus_loc (location_t loc, tree ptr, tree off)
15981 {
15982 return fold_build2_loc (loc, POINTER_PLUS_EXPR, TREE_TYPE (ptr),
15983 ptr, convert_to_ptrofftype_loc (loc, off));
15984 }
15985
15986 /* Build and fold a POINTER_PLUS_EXPR at LOC offsetting PTR by OFF. */
15987 tree
15988 fold_build_pointer_plus_hwi_loc (location_t loc, tree ptr, HOST_WIDE_INT off)
15989 {
15990 return fold_build2_loc (loc, POINTER_PLUS_EXPR, TREE_TYPE (ptr),
15991 ptr, size_int (off));
15992 }