Concretize gimple_call_set_fntype
[official-gcc.git] / gcc / gimple-fold.c
blob20bdc7d0b0419e1e04d142dd0c4ceb55b0284e8e
1 /* Statement simplification on GIMPLE.
2 Copyright (C) 2010-2014 Free Software Foundation, Inc.
3 Split out from tree-ssa-ccp.c.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3, or (at your option) any
10 later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "stringpool.h"
27 #include "expr.h"
28 #include "stmt.h"
29 #include "stor-layout.h"
30 #include "flags.h"
31 #include "function.h"
32 #include "dumpfile.h"
33 #include "bitmap.h"
34 #include "basic-block.h"
35 #include "tree-ssa-alias.h"
36 #include "internal-fn.h"
37 #include "gimple-fold.h"
38 #include "gimple-expr.h"
39 #include "is-a.h"
40 #include "gimple.h"
41 #include "gimplify.h"
42 #include "gimple-iterator.h"
43 #include "gimple-ssa.h"
44 #include "tree-ssanames.h"
45 #include "tree-into-ssa.h"
46 #include "tree-dfa.h"
47 #include "tree-ssa.h"
48 #include "tree-ssa-propagate.h"
49 #include "target.h"
50 #include "ipa-utils.h"
51 #include "gimple-pretty-print.h"
52 #include "tree-ssa-address.h"
53 #include "langhooks.h"
54 #include "gimplify-me.h"
55 #include "dbgcnt.h"
56 #include "builtins.h"
57 #include "output.h"
59 /* Return true when DECL can be referenced from current unit.
60 FROM_DECL (if non-null) specify constructor of variable DECL was taken from.
61 We can get declarations that are not possible to reference for various
62 reasons:
64 1) When analyzing C++ virtual tables.
65 C++ virtual tables do have known constructors even
66 when they are keyed to other compilation unit.
67 Those tables can contain pointers to methods and vars
68 in other units. Those methods have both STATIC and EXTERNAL
69 set.
70 2) In WHOPR mode devirtualization might lead to reference
71 to method that was partitioned elsehwere.
72 In this case we have static VAR_DECL or FUNCTION_DECL
73 that has no corresponding callgraph/varpool node
74 declaring the body.
75 3) COMDAT functions referred by external vtables that
76 we devirtualize only during final compilation stage.
77 At this time we already decided that we will not output
78 the function body and thus we can't reference the symbol
79 directly. */
81 static bool
82 can_refer_decl_in_current_unit_p (tree decl, tree from_decl)
84 varpool_node *vnode;
85 struct cgraph_node *node;
86 symtab_node *snode;
88 if (DECL_ABSTRACT_P (decl))
89 return false;
91 /* We are concerned only about static/external vars and functions. */
92 if ((!TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
93 || (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL))
94 return true;
96 /* Static objects can be referred only if they was not optimized out yet. */
97 if (!TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
99 /* Before we start optimizing unreachable code we can be sure all
100 static objects are defined. */
101 if (symtab->function_flags_ready)
102 return true;
103 snode = symtab_node::get (decl);
104 if (!snode || !snode->definition)
105 return false;
106 node = dyn_cast <cgraph_node *> (snode);
107 return !node || !node->global.inlined_to;
110 /* We will later output the initializer, so we can refer to it.
111 So we are concerned only when DECL comes from initializer of
112 external var or var that has been optimized out. */
113 if (!from_decl
114 || TREE_CODE (from_decl) != VAR_DECL
115 || (!DECL_EXTERNAL (from_decl)
116 && (vnode = varpool_node::get (from_decl)) != NULL
117 && vnode->definition)
118 || (flag_ltrans
119 && (vnode = varpool_node::get (from_decl)) != NULL
120 && vnode->in_other_partition))
121 return true;
122 /* We are folding reference from external vtable. The vtable may reffer
123 to a symbol keyed to other compilation unit. The other compilation
124 unit may be in separate DSO and the symbol may be hidden. */
125 if (DECL_VISIBILITY_SPECIFIED (decl)
126 && DECL_EXTERNAL (decl)
127 && DECL_VISIBILITY (decl) != VISIBILITY_DEFAULT
128 && (!(snode = symtab_node::get (decl)) || !snode->in_other_partition))
129 return false;
130 /* When function is public, we always can introduce new reference.
131 Exception are the COMDAT functions where introducing a direct
132 reference imply need to include function body in the curren tunit. */
133 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl))
134 return true;
135 /* We have COMDAT. We are going to check if we still have definition
136 or if the definition is going to be output in other partition.
137 Bypass this when gimplifying; all needed functions will be produced.
139 As observed in PR20991 for already optimized out comdat virtual functions
140 it may be tempting to not necessarily give up because the copy will be
141 output elsewhere when corresponding vtable is output.
142 This is however not possible - ABI specify that COMDATs are output in
143 units where they are used and when the other unit was compiled with LTO
144 it is possible that vtable was kept public while the function itself
145 was privatized. */
146 if (!symtab->function_flags_ready)
147 return true;
149 snode = symtab_node::get (decl);
150 if (!snode
151 || ((!snode->definition || DECL_EXTERNAL (decl))
152 && (!snode->in_other_partition
153 || (!snode->forced_by_abi && !snode->force_output))))
154 return false;
155 node = dyn_cast <cgraph_node *> (snode);
156 return !node || !node->global.inlined_to;
159 /* CVAL is value taken from DECL_INITIAL of variable. Try to transform it into
160 acceptable form for is_gimple_min_invariant.
161 FROM_DECL (if non-NULL) specify variable whose constructor contains CVAL. */
163 tree
164 canonicalize_constructor_val (tree cval, tree from_decl)
166 tree orig_cval = cval;
167 STRIP_NOPS (cval);
168 if (TREE_CODE (cval) == POINTER_PLUS_EXPR
169 && TREE_CODE (TREE_OPERAND (cval, 1)) == INTEGER_CST)
171 tree ptr = TREE_OPERAND (cval, 0);
172 if (is_gimple_min_invariant (ptr))
173 cval = build1_loc (EXPR_LOCATION (cval),
174 ADDR_EXPR, TREE_TYPE (ptr),
175 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (ptr)),
176 ptr,
177 fold_convert (ptr_type_node,
178 TREE_OPERAND (cval, 1))));
180 if (TREE_CODE (cval) == ADDR_EXPR)
182 tree base = NULL_TREE;
183 if (TREE_CODE (TREE_OPERAND (cval, 0)) == COMPOUND_LITERAL_EXPR)
185 base = COMPOUND_LITERAL_EXPR_DECL (TREE_OPERAND (cval, 0));
186 if (base)
187 TREE_OPERAND (cval, 0) = base;
189 else
190 base = get_base_address (TREE_OPERAND (cval, 0));
191 if (!base)
192 return NULL_TREE;
194 if ((TREE_CODE (base) == VAR_DECL
195 || TREE_CODE (base) == FUNCTION_DECL)
196 && !can_refer_decl_in_current_unit_p (base, from_decl))
197 return NULL_TREE;
198 if (TREE_CODE (base) == VAR_DECL)
199 TREE_ADDRESSABLE (base) = 1;
200 else if (TREE_CODE (base) == FUNCTION_DECL)
202 /* Make sure we create a cgraph node for functions we'll reference.
203 They can be non-existent if the reference comes from an entry
204 of an external vtable for example. */
205 cgraph_node::get_create (base);
207 /* Fixup types in global initializers. */
208 if (TREE_TYPE (TREE_TYPE (cval)) != TREE_TYPE (TREE_OPERAND (cval, 0)))
209 cval = build_fold_addr_expr (TREE_OPERAND (cval, 0));
211 if (!useless_type_conversion_p (TREE_TYPE (orig_cval), TREE_TYPE (cval)))
212 cval = fold_convert (TREE_TYPE (orig_cval), cval);
213 return cval;
215 if (TREE_OVERFLOW_P (cval))
216 return drop_tree_overflow (cval);
217 return orig_cval;
220 /* If SYM is a constant variable with known value, return the value.
221 NULL_TREE is returned otherwise. */
223 tree
224 get_symbol_constant_value (tree sym)
226 tree val = ctor_for_folding (sym);
227 if (val != error_mark_node)
229 if (val)
231 val = canonicalize_constructor_val (unshare_expr (val), sym);
232 if (val && is_gimple_min_invariant (val))
233 return val;
234 else
235 return NULL_TREE;
237 /* Variables declared 'const' without an initializer
238 have zero as the initializer if they may not be
239 overridden at link or run time. */
240 if (!val
241 && (INTEGRAL_TYPE_P (TREE_TYPE (sym))
242 || SCALAR_FLOAT_TYPE_P (TREE_TYPE (sym))))
243 return build_zero_cst (TREE_TYPE (sym));
246 return NULL_TREE;
251 /* Subroutine of fold_stmt. We perform several simplifications of the
252 memory reference tree EXPR and make sure to re-gimplify them properly
253 after propagation of constant addresses. IS_LHS is true if the
254 reference is supposed to be an lvalue. */
256 static tree
257 maybe_fold_reference (tree expr, bool is_lhs)
259 tree result;
261 if ((TREE_CODE (expr) == VIEW_CONVERT_EXPR
262 || TREE_CODE (expr) == REALPART_EXPR
263 || TREE_CODE (expr) == IMAGPART_EXPR)
264 && CONSTANT_CLASS_P (TREE_OPERAND (expr, 0)))
265 return fold_unary_loc (EXPR_LOCATION (expr),
266 TREE_CODE (expr),
267 TREE_TYPE (expr),
268 TREE_OPERAND (expr, 0));
269 else if (TREE_CODE (expr) == BIT_FIELD_REF
270 && CONSTANT_CLASS_P (TREE_OPERAND (expr, 0)))
271 return fold_ternary_loc (EXPR_LOCATION (expr),
272 TREE_CODE (expr),
273 TREE_TYPE (expr),
274 TREE_OPERAND (expr, 0),
275 TREE_OPERAND (expr, 1),
276 TREE_OPERAND (expr, 2));
278 if (!is_lhs
279 && (result = fold_const_aggregate_ref (expr))
280 && is_gimple_min_invariant (result))
281 return result;
283 return NULL_TREE;
287 /* Attempt to fold an assignment statement pointed-to by SI. Returns a
288 replacement rhs for the statement or NULL_TREE if no simplification
289 could be made. It is assumed that the operands have been previously
290 folded. */
292 static tree
293 fold_gimple_assign (gimple_stmt_iterator *si)
295 gimple stmt = gsi_stmt (*si);
296 enum tree_code subcode = gimple_assign_rhs_code (stmt);
297 location_t loc = gimple_location (stmt);
299 tree result = NULL_TREE;
301 switch (get_gimple_rhs_class (subcode))
303 case GIMPLE_SINGLE_RHS:
305 tree rhs = gimple_assign_rhs1 (stmt);
307 if (REFERENCE_CLASS_P (rhs))
308 return maybe_fold_reference (rhs, false);
310 else if (TREE_CODE (rhs) == OBJ_TYPE_REF)
312 tree val = OBJ_TYPE_REF_EXPR (rhs);
313 if (is_gimple_min_invariant (val))
314 return val;
315 else if (flag_devirtualize && virtual_method_call_p (rhs))
317 bool final;
318 vec <cgraph_node *>targets
319 = possible_polymorphic_call_targets (rhs, stmt, &final);
320 if (final && targets.length () <= 1 && dbg_cnt (devirt))
322 if (dump_enabled_p ())
324 location_t loc = gimple_location_safe (stmt);
325 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
326 "resolving virtual function address "
327 "reference to function %s\n",
328 targets.length () == 1
329 ? targets[0]->name ()
330 : "NULL");
332 if (targets.length () == 1)
334 val = fold_convert (TREE_TYPE (val),
335 build_fold_addr_expr_loc
336 (loc, targets[0]->decl));
337 STRIP_USELESS_TYPE_CONVERSION (val);
339 else
340 /* We can not use __builtin_unreachable here because it
341 can not have address taken. */
342 val = build_int_cst (TREE_TYPE (val), 0);
343 return val;
348 else if (TREE_CODE (rhs) == ADDR_EXPR)
350 tree ref = TREE_OPERAND (rhs, 0);
351 tree tem = maybe_fold_reference (ref, true);
352 if (tem
353 && TREE_CODE (tem) == MEM_REF
354 && integer_zerop (TREE_OPERAND (tem, 1)))
355 result = fold_convert (TREE_TYPE (rhs), TREE_OPERAND (tem, 0));
356 else if (tem)
357 result = fold_convert (TREE_TYPE (rhs),
358 build_fold_addr_expr_loc (loc, tem));
359 else if (TREE_CODE (ref) == MEM_REF
360 && integer_zerop (TREE_OPERAND (ref, 1)))
361 result = fold_convert (TREE_TYPE (rhs), TREE_OPERAND (ref, 0));
364 else if (TREE_CODE (rhs) == CONSTRUCTOR
365 && TREE_CODE (TREE_TYPE (rhs)) == VECTOR_TYPE
366 && (CONSTRUCTOR_NELTS (rhs)
367 == TYPE_VECTOR_SUBPARTS (TREE_TYPE (rhs))))
369 /* Fold a constant vector CONSTRUCTOR to VECTOR_CST. */
370 unsigned i;
371 tree val;
373 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs), i, val)
374 if (TREE_CODE (val) != INTEGER_CST
375 && TREE_CODE (val) != REAL_CST
376 && TREE_CODE (val) != FIXED_CST)
377 return NULL_TREE;
379 return build_vector_from_ctor (TREE_TYPE (rhs),
380 CONSTRUCTOR_ELTS (rhs));
383 else if (DECL_P (rhs))
384 return get_symbol_constant_value (rhs);
386 /* If we couldn't fold the RHS, hand over to the generic
387 fold routines. */
388 if (result == NULL_TREE)
389 result = fold (rhs);
391 /* Strip away useless type conversions. Both the NON_LVALUE_EXPR
392 that may have been added by fold, and "useless" type
393 conversions that might now be apparent due to propagation. */
394 STRIP_USELESS_TYPE_CONVERSION (result);
396 if (result != rhs && valid_gimple_rhs_p (result))
397 return result;
399 return NULL_TREE;
401 break;
403 case GIMPLE_UNARY_RHS:
405 tree rhs = gimple_assign_rhs1 (stmt);
407 result = fold_unary_loc (loc, subcode, gimple_expr_type (stmt), rhs);
408 if (result)
410 /* If the operation was a conversion do _not_ mark a
411 resulting constant with TREE_OVERFLOW if the original
412 constant was not. These conversions have implementation
413 defined behavior and retaining the TREE_OVERFLOW flag
414 here would confuse later passes such as VRP. */
415 if (CONVERT_EXPR_CODE_P (subcode)
416 && TREE_CODE (result) == INTEGER_CST
417 && TREE_CODE (rhs) == INTEGER_CST)
418 TREE_OVERFLOW (result) = TREE_OVERFLOW (rhs);
420 STRIP_USELESS_TYPE_CONVERSION (result);
421 if (valid_gimple_rhs_p (result))
422 return result;
425 break;
427 case GIMPLE_BINARY_RHS:
428 /* Try to canonicalize for boolean-typed X the comparisons
429 X == 0, X == 1, X != 0, and X != 1. */
430 if (gimple_assign_rhs_code (stmt) == EQ_EXPR
431 || gimple_assign_rhs_code (stmt) == NE_EXPR)
433 tree lhs = gimple_assign_lhs (stmt);
434 tree op1 = gimple_assign_rhs1 (stmt);
435 tree op2 = gimple_assign_rhs2 (stmt);
436 tree type = TREE_TYPE (op1);
438 /* Check whether the comparison operands are of the same boolean
439 type as the result type is.
440 Check that second operand is an integer-constant with value
441 one or zero. */
442 if (TREE_CODE (op2) == INTEGER_CST
443 && (integer_zerop (op2) || integer_onep (op2))
444 && useless_type_conversion_p (TREE_TYPE (lhs), type))
446 enum tree_code cmp_code = gimple_assign_rhs_code (stmt);
447 bool is_logical_not = false;
449 /* X == 0 and X != 1 is a logical-not.of X
450 X == 1 and X != 0 is X */
451 if ((cmp_code == EQ_EXPR && integer_zerop (op2))
452 || (cmp_code == NE_EXPR && integer_onep (op2)))
453 is_logical_not = true;
455 if (is_logical_not == false)
456 result = op1;
457 /* Only for one-bit precision typed X the transformation
458 !X -> ~X is valied. */
459 else if (TYPE_PRECISION (type) == 1)
460 result = build1_loc (gimple_location (stmt), BIT_NOT_EXPR,
461 type, op1);
462 /* Otherwise we use !X -> X ^ 1. */
463 else
464 result = build2_loc (gimple_location (stmt), BIT_XOR_EXPR,
465 type, op1, build_int_cst (type, 1));
470 if (!result)
471 result = fold_binary_loc (loc, subcode,
472 TREE_TYPE (gimple_assign_lhs (stmt)),
473 gimple_assign_rhs1 (stmt),
474 gimple_assign_rhs2 (stmt));
476 if (result)
478 STRIP_USELESS_TYPE_CONVERSION (result);
479 if (valid_gimple_rhs_p (result))
480 return result;
482 break;
484 case GIMPLE_TERNARY_RHS:
485 /* Try to fold a conditional expression. */
486 if (gimple_assign_rhs_code (stmt) == COND_EXPR)
488 tree op0 = gimple_assign_rhs1 (stmt);
489 tree tem;
490 bool set = false;
491 location_t cond_loc = gimple_location (stmt);
493 if (COMPARISON_CLASS_P (op0))
495 fold_defer_overflow_warnings ();
496 tem = fold_binary_loc (cond_loc,
497 TREE_CODE (op0), TREE_TYPE (op0),
498 TREE_OPERAND (op0, 0),
499 TREE_OPERAND (op0, 1));
500 /* This is actually a conditional expression, not a GIMPLE
501 conditional statement, however, the valid_gimple_rhs_p
502 test still applies. */
503 set = (tem && is_gimple_condexpr (tem)
504 && valid_gimple_rhs_p (tem));
505 fold_undefer_overflow_warnings (set, stmt, 0);
507 else if (is_gimple_min_invariant (op0))
509 tem = op0;
510 set = true;
512 else
513 return NULL_TREE;
515 if (set)
516 result = fold_build3_loc (cond_loc, COND_EXPR,
517 TREE_TYPE (gimple_assign_lhs (stmt)), tem,
518 gimple_assign_rhs2 (stmt),
519 gimple_assign_rhs3 (stmt));
522 if (!result)
523 result = fold_ternary_loc (loc, subcode,
524 TREE_TYPE (gimple_assign_lhs (stmt)),
525 gimple_assign_rhs1 (stmt),
526 gimple_assign_rhs2 (stmt),
527 gimple_assign_rhs3 (stmt));
529 if (result)
531 STRIP_USELESS_TYPE_CONVERSION (result);
532 if (valid_gimple_rhs_p (result))
533 return result;
535 break;
537 case GIMPLE_INVALID_RHS:
538 gcc_unreachable ();
541 return NULL_TREE;
544 /* Attempt to fold a conditional statement. Return true if any changes were
545 made. We only attempt to fold the condition expression, and do not perform
546 any transformation that would require alteration of the cfg. It is
547 assumed that the operands have been previously folded. */
549 static bool
550 fold_gimple_cond (gimple_cond stmt)
552 tree result = fold_binary_loc (gimple_location (stmt),
553 gimple_cond_code (stmt),
554 boolean_type_node,
555 gimple_cond_lhs (stmt),
556 gimple_cond_rhs (stmt));
558 if (result)
560 STRIP_USELESS_TYPE_CONVERSION (result);
561 if (is_gimple_condexpr (result) && valid_gimple_rhs_p (result))
563 gimple_cond_set_condition_from_tree (stmt, result);
564 return true;
568 return false;
572 /* Replace a statement at *SI_P with a sequence of statements in STMTS,
573 adjusting the replacement stmts location and virtual operands.
574 If the statement has a lhs the last stmt in the sequence is expected
575 to assign to that lhs. */
577 static void
578 gsi_replace_with_seq_vops (gimple_stmt_iterator *si_p, gimple_seq stmts)
580 gimple stmt = gsi_stmt (*si_p);
582 if (gimple_has_location (stmt))
583 annotate_all_with_location (stmts, gimple_location (stmt));
585 /* First iterate over the replacement statements backward, assigning
586 virtual operands to their defining statements. */
587 gimple laststore = NULL;
588 for (gimple_stmt_iterator i = gsi_last (stmts);
589 !gsi_end_p (i); gsi_prev (&i))
591 gimple new_stmt = gsi_stmt (i);
592 if ((gimple_assign_single_p (new_stmt)
593 && !is_gimple_reg (gimple_assign_lhs (new_stmt)))
594 || (is_gimple_call (new_stmt)
595 && (gimple_call_flags (new_stmt)
596 & (ECF_NOVOPS | ECF_PURE | ECF_CONST | ECF_NORETURN)) == 0))
598 tree vdef;
599 if (!laststore)
600 vdef = gimple_vdef (stmt);
601 else
602 vdef = make_ssa_name (gimple_vop (cfun), new_stmt);
603 gimple_set_vdef (new_stmt, vdef);
604 if (vdef && TREE_CODE (vdef) == SSA_NAME)
605 SSA_NAME_DEF_STMT (vdef) = new_stmt;
606 laststore = new_stmt;
610 /* Second iterate over the statements forward, assigning virtual
611 operands to their uses. */
612 tree reaching_vuse = gimple_vuse (stmt);
613 for (gimple_stmt_iterator i = gsi_start (stmts);
614 !gsi_end_p (i); gsi_next (&i))
616 gimple new_stmt = gsi_stmt (i);
617 /* If the new statement possibly has a VUSE, update it with exact SSA
618 name we know will reach this one. */
619 if (gimple_has_mem_ops (new_stmt))
620 gimple_set_vuse (new_stmt, reaching_vuse);
621 gimple_set_modified (new_stmt, true);
622 if (gimple_vdef (new_stmt))
623 reaching_vuse = gimple_vdef (new_stmt);
626 /* If the new sequence does not do a store release the virtual
627 definition of the original statement. */
628 if (reaching_vuse
629 && reaching_vuse == gimple_vuse (stmt))
631 tree vdef = gimple_vdef (stmt);
632 if (vdef
633 && TREE_CODE (vdef) == SSA_NAME)
635 unlink_stmt_vdef (stmt);
636 release_ssa_name (vdef);
640 /* Finally replace the original statement with the sequence. */
641 gsi_replace_with_seq (si_p, stmts, false);
644 /* Convert EXPR into a GIMPLE value suitable for substitution on the
645 RHS of an assignment. Insert the necessary statements before
646 iterator *SI_P. The statement at *SI_P, which must be a GIMPLE_CALL
647 is replaced. If the call is expected to produces a result, then it
648 is replaced by an assignment of the new RHS to the result variable.
649 If the result is to be ignored, then the call is replaced by a
650 GIMPLE_NOP. A proper VDEF chain is retained by making the first
651 VUSE and the last VDEF of the whole sequence be the same as the replaced
652 statement and using new SSA names for stores in between. */
654 void
655 gimplify_and_update_call_from_tree (gimple_stmt_iterator *si_p, tree expr)
657 tree lhs;
658 gimple stmt, new_stmt;
659 gimple_stmt_iterator i;
660 gimple_seq stmts = NULL;
662 stmt = gsi_stmt (*si_p);
664 gcc_assert (is_gimple_call (stmt));
666 push_gimplify_context (gimple_in_ssa_p (cfun));
668 lhs = gimple_call_lhs (stmt);
669 if (lhs == NULL_TREE)
671 gimplify_and_add (expr, &stmts);
672 /* We can end up with folding a memcpy of an empty class assignment
673 which gets optimized away by C++ gimplification. */
674 if (gimple_seq_empty_p (stmts))
676 pop_gimplify_context (NULL);
677 if (gimple_in_ssa_p (cfun))
679 unlink_stmt_vdef (stmt);
680 release_defs (stmt);
682 gsi_replace (si_p, gimple_build_nop (), true);
683 return;
686 else
688 tree tmp = get_initialized_tmp_var (expr, &stmts, NULL);
689 new_stmt = gimple_build_assign (lhs, tmp);
690 i = gsi_last (stmts);
691 gsi_insert_after_without_update (&i, new_stmt,
692 GSI_CONTINUE_LINKING);
695 pop_gimplify_context (NULL);
697 gsi_replace_with_seq_vops (si_p, stmts);
701 /* Replace the call at *GSI with the gimple value VAL. */
703 static void
704 replace_call_with_value (gimple_stmt_iterator *gsi, tree val)
706 gimple stmt = gsi_stmt (*gsi);
707 tree lhs = gimple_call_lhs (stmt);
708 gimple repl;
709 if (lhs)
711 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (val)))
712 val = fold_convert (TREE_TYPE (lhs), val);
713 repl = gimple_build_assign (lhs, val);
715 else
716 repl = gimple_build_nop ();
717 tree vdef = gimple_vdef (stmt);
718 if (vdef && TREE_CODE (vdef) == SSA_NAME)
720 unlink_stmt_vdef (stmt);
721 release_ssa_name (vdef);
723 gsi_replace (gsi, repl, true);
726 /* Replace the call at *GSI with the new call REPL and fold that
727 again. */
729 static void
730 replace_call_with_call_and_fold (gimple_stmt_iterator *gsi, gimple repl)
732 gimple stmt = gsi_stmt (*gsi);
733 gimple_call_set_lhs (repl, gimple_call_lhs (stmt));
734 gimple_set_location (repl, gimple_location (stmt));
735 if (gimple_vdef (stmt)
736 && TREE_CODE (gimple_vdef (stmt)) == SSA_NAME)
738 gimple_set_vdef (repl, gimple_vdef (stmt));
739 gimple_set_vuse (repl, gimple_vuse (stmt));
740 SSA_NAME_DEF_STMT (gimple_vdef (repl)) = repl;
742 gsi_replace (gsi, repl, true);
743 fold_stmt (gsi);
746 /* Return true if VAR is a VAR_DECL or a component thereof. */
748 static bool
749 var_decl_component_p (tree var)
751 tree inner = var;
752 while (handled_component_p (inner))
753 inner = TREE_OPERAND (inner, 0);
754 return SSA_VAR_P (inner);
757 /* Fold function call to builtin mem{{,p}cpy,move}. Return
758 NULL_TREE if no simplification can be made.
759 If ENDP is 0, return DEST (like memcpy).
760 If ENDP is 1, return DEST+LEN (like mempcpy).
761 If ENDP is 2, return DEST+LEN-1 (like stpcpy).
762 If ENDP is 3, return DEST, additionally *SRC and *DEST may overlap
763 (memmove). */
765 static bool
766 gimple_fold_builtin_memory_op (gimple_stmt_iterator *gsi,
767 tree dest, tree src, int endp)
769 gimple stmt = gsi_stmt (*gsi);
770 tree lhs = gimple_call_lhs (stmt);
771 tree len = gimple_call_arg (stmt, 2);
772 tree destvar, srcvar;
773 location_t loc = gimple_location (stmt);
775 /* If the LEN parameter is zero, return DEST. */
776 if (integer_zerop (len))
778 gimple repl;
779 if (gimple_call_lhs (stmt))
780 repl = gimple_build_assign (gimple_call_lhs (stmt), dest);
781 else
782 repl = gimple_build_nop ();
783 tree vdef = gimple_vdef (stmt);
784 if (vdef && TREE_CODE (vdef) == SSA_NAME)
786 unlink_stmt_vdef (stmt);
787 release_ssa_name (vdef);
789 gsi_replace (gsi, repl, true);
790 return true;
793 /* If SRC and DEST are the same (and not volatile), return
794 DEST{,+LEN,+LEN-1}. */
795 if (operand_equal_p (src, dest, 0))
797 unlink_stmt_vdef (stmt);
798 if (gimple_vdef (stmt) && TREE_CODE (gimple_vdef (stmt)) == SSA_NAME)
799 release_ssa_name (gimple_vdef (stmt));
800 if (!lhs)
802 gsi_replace (gsi, gimple_build_nop (), true);
803 return true;
805 goto done;
807 else
809 tree srctype, desttype;
810 unsigned int src_align, dest_align;
811 tree off0;
813 /* Build accesses at offset zero with a ref-all character type. */
814 off0 = build_int_cst (build_pointer_type_for_mode (char_type_node,
815 ptr_mode, true), 0);
817 /* If we can perform the copy efficiently with first doing all loads
818 and then all stores inline it that way. Currently efficiently
819 means that we can load all the memory into a single integer
820 register which is what MOVE_MAX gives us. */
821 src_align = get_pointer_alignment (src);
822 dest_align = get_pointer_alignment (dest);
823 if (tree_fits_uhwi_p (len)
824 && compare_tree_int (len, MOVE_MAX) <= 0
825 /* ??? Don't transform copies from strings with known length this
826 confuses the tree-ssa-strlen.c. This doesn't handle
827 the case in gcc.dg/strlenopt-8.c which is XFAILed for that
828 reason. */
829 && !c_strlen (src, 2))
831 unsigned ilen = tree_to_uhwi (len);
832 if (exact_log2 (ilen) != -1)
834 tree type = lang_hooks.types.type_for_size (ilen * 8, 1);
835 if (type
836 && TYPE_MODE (type) != BLKmode
837 && (GET_MODE_SIZE (TYPE_MODE (type)) * BITS_PER_UNIT
838 == ilen * 8)
839 /* If the destination pointer is not aligned we must be able
840 to emit an unaligned store. */
841 && (dest_align >= GET_MODE_ALIGNMENT (TYPE_MODE (type))
842 || !SLOW_UNALIGNED_ACCESS (TYPE_MODE (type), dest_align)))
844 tree srctype = type;
845 tree desttype = type;
846 if (src_align < GET_MODE_ALIGNMENT (TYPE_MODE (type)))
847 srctype = build_aligned_type (type, src_align);
848 tree srcmem = fold_build2 (MEM_REF, srctype, src, off0);
849 tree tem = fold_const_aggregate_ref (srcmem);
850 if (tem)
851 srcmem = tem;
852 else if (src_align < GET_MODE_ALIGNMENT (TYPE_MODE (type))
853 && SLOW_UNALIGNED_ACCESS (TYPE_MODE (type),
854 src_align))
855 srcmem = NULL_TREE;
856 if (srcmem)
858 gimple new_stmt;
859 if (is_gimple_reg_type (TREE_TYPE (srcmem)))
861 new_stmt = gimple_build_assign (NULL_TREE, srcmem);
862 if (gimple_in_ssa_p (cfun))
863 srcmem = make_ssa_name (TREE_TYPE (srcmem),
864 new_stmt);
865 else
866 srcmem = create_tmp_reg (TREE_TYPE (srcmem),
867 NULL);
868 gimple_assign_set_lhs (new_stmt, srcmem);
869 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
870 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
872 if (dest_align < GET_MODE_ALIGNMENT (TYPE_MODE (type)))
873 desttype = build_aligned_type (type, dest_align);
874 new_stmt
875 = gimple_build_assign (fold_build2 (MEM_REF, desttype,
876 dest, off0),
877 srcmem);
878 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
879 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
880 if (gimple_vdef (new_stmt)
881 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
882 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
883 if (!lhs)
885 gsi_replace (gsi, new_stmt, true);
886 return true;
888 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
889 goto done;
895 if (endp == 3)
897 /* Both DEST and SRC must be pointer types.
898 ??? This is what old code did. Is the testing for pointer types
899 really mandatory?
901 If either SRC is readonly or length is 1, we can use memcpy. */
902 if (!dest_align || !src_align)
903 return false;
904 if (readonly_data_expr (src)
905 || (tree_fits_uhwi_p (len)
906 && (MIN (src_align, dest_align) / BITS_PER_UNIT
907 >= tree_to_uhwi (len))))
909 tree fn = builtin_decl_implicit (BUILT_IN_MEMCPY);
910 if (!fn)
911 return false;
912 gimple_call_set_fndecl (stmt, fn);
913 gimple_call_set_arg (stmt, 0, dest);
914 gimple_call_set_arg (stmt, 1, src);
915 fold_stmt (gsi);
916 return true;
919 /* If *src and *dest can't overlap, optimize into memcpy as well. */
920 if (TREE_CODE (src) == ADDR_EXPR
921 && TREE_CODE (dest) == ADDR_EXPR)
923 tree src_base, dest_base, fn;
924 HOST_WIDE_INT src_offset = 0, dest_offset = 0;
925 HOST_WIDE_INT size = -1;
926 HOST_WIDE_INT maxsize = -1;
928 srcvar = TREE_OPERAND (src, 0);
929 src_base = get_ref_base_and_extent (srcvar, &src_offset,
930 &size, &maxsize);
931 destvar = TREE_OPERAND (dest, 0);
932 dest_base = get_ref_base_and_extent (destvar, &dest_offset,
933 &size, &maxsize);
934 if (tree_fits_uhwi_p (len))
935 maxsize = tree_to_uhwi (len);
936 else
937 maxsize = -1;
938 src_offset /= BITS_PER_UNIT;
939 dest_offset /= BITS_PER_UNIT;
940 if (SSA_VAR_P (src_base)
941 && SSA_VAR_P (dest_base))
943 if (operand_equal_p (src_base, dest_base, 0)
944 && ranges_overlap_p (src_offset, maxsize,
945 dest_offset, maxsize))
946 return false;
948 else if (TREE_CODE (src_base) == MEM_REF
949 && TREE_CODE (dest_base) == MEM_REF)
951 if (! operand_equal_p (TREE_OPERAND (src_base, 0),
952 TREE_OPERAND (dest_base, 0), 0))
953 return false;
954 offset_int off = mem_ref_offset (src_base) + src_offset;
955 if (!wi::fits_shwi_p (off))
956 return false;
957 src_offset = off.to_shwi ();
959 off = mem_ref_offset (dest_base) + dest_offset;
960 if (!wi::fits_shwi_p (off))
961 return false;
962 dest_offset = off.to_shwi ();
963 if (ranges_overlap_p (src_offset, maxsize,
964 dest_offset, maxsize))
965 return false;
967 else
968 return false;
970 fn = builtin_decl_implicit (BUILT_IN_MEMCPY);
971 if (!fn)
972 return false;
973 gimple_call_set_fndecl (stmt, fn);
974 gimple_call_set_arg (stmt, 0, dest);
975 gimple_call_set_arg (stmt, 1, src);
976 fold_stmt (gsi);
977 return true;
980 /* If the destination and source do not alias optimize into
981 memcpy as well. */
982 if ((is_gimple_min_invariant (dest)
983 || TREE_CODE (dest) == SSA_NAME)
984 && (is_gimple_min_invariant (src)
985 || TREE_CODE (src) == SSA_NAME))
987 ao_ref destr, srcr;
988 ao_ref_init_from_ptr_and_size (&destr, dest, len);
989 ao_ref_init_from_ptr_and_size (&srcr, src, len);
990 if (!refs_may_alias_p_1 (&destr, &srcr, false))
992 tree fn;
993 fn = builtin_decl_implicit (BUILT_IN_MEMCPY);
994 if (!fn)
995 return false;
996 gimple_call_set_fndecl (stmt, fn);
997 gimple_call_set_arg (stmt, 0, dest);
998 gimple_call_set_arg (stmt, 1, src);
999 fold_stmt (gsi);
1000 return true;
1004 return false;
1007 if (!tree_fits_shwi_p (len))
1008 return false;
1009 /* FIXME:
1010 This logic lose for arguments like (type *)malloc (sizeof (type)),
1011 since we strip the casts of up to VOID return value from malloc.
1012 Perhaps we ought to inherit type from non-VOID argument here? */
1013 STRIP_NOPS (src);
1014 STRIP_NOPS (dest);
1015 if (!POINTER_TYPE_P (TREE_TYPE (src))
1016 || !POINTER_TYPE_P (TREE_TYPE (dest)))
1017 return false;
1018 /* In the following try to find a type that is most natural to be
1019 used for the memcpy source and destination and that allows
1020 the most optimization when memcpy is turned into a plain assignment
1021 using that type. In theory we could always use a char[len] type
1022 but that only gains us that the destination and source possibly
1023 no longer will have their address taken. */
1024 /* As we fold (void *)(p + CST) to (void *)p + CST undo this here. */
1025 if (TREE_CODE (src) == POINTER_PLUS_EXPR)
1027 tree tem = TREE_OPERAND (src, 0);
1028 STRIP_NOPS (tem);
1029 if (tem != TREE_OPERAND (src, 0))
1030 src = build1 (NOP_EXPR, TREE_TYPE (tem), src);
1032 if (TREE_CODE (dest) == POINTER_PLUS_EXPR)
1034 tree tem = TREE_OPERAND (dest, 0);
1035 STRIP_NOPS (tem);
1036 if (tem != TREE_OPERAND (dest, 0))
1037 dest = build1 (NOP_EXPR, TREE_TYPE (tem), dest);
1039 srctype = TREE_TYPE (TREE_TYPE (src));
1040 if (TREE_CODE (srctype) == ARRAY_TYPE
1041 && !tree_int_cst_equal (TYPE_SIZE_UNIT (srctype), len))
1043 srctype = TREE_TYPE (srctype);
1044 STRIP_NOPS (src);
1045 src = build1 (NOP_EXPR, build_pointer_type (srctype), src);
1047 desttype = TREE_TYPE (TREE_TYPE (dest));
1048 if (TREE_CODE (desttype) == ARRAY_TYPE
1049 && !tree_int_cst_equal (TYPE_SIZE_UNIT (desttype), len))
1051 desttype = TREE_TYPE (desttype);
1052 STRIP_NOPS (dest);
1053 dest = build1 (NOP_EXPR, build_pointer_type (desttype), dest);
1055 if (TREE_ADDRESSABLE (srctype)
1056 || TREE_ADDRESSABLE (desttype))
1057 return false;
1059 /* Make sure we are not copying using a floating-point mode or
1060 a type whose size possibly does not match its precision. */
1061 if (FLOAT_MODE_P (TYPE_MODE (desttype))
1062 || TREE_CODE (desttype) == BOOLEAN_TYPE
1063 || TREE_CODE (desttype) == ENUMERAL_TYPE)
1064 desttype = bitwise_type_for_mode (TYPE_MODE (desttype));
1065 if (FLOAT_MODE_P (TYPE_MODE (srctype))
1066 || TREE_CODE (srctype) == BOOLEAN_TYPE
1067 || TREE_CODE (srctype) == ENUMERAL_TYPE)
1068 srctype = bitwise_type_for_mode (TYPE_MODE (srctype));
1069 if (!srctype)
1070 srctype = desttype;
1071 if (!desttype)
1072 desttype = srctype;
1073 if (!srctype)
1074 return false;
1076 src_align = get_pointer_alignment (src);
1077 dest_align = get_pointer_alignment (dest);
1078 if (dest_align < TYPE_ALIGN (desttype)
1079 || src_align < TYPE_ALIGN (srctype))
1080 return false;
1082 destvar = dest;
1083 STRIP_NOPS (destvar);
1084 if (TREE_CODE (destvar) == ADDR_EXPR
1085 && var_decl_component_p (TREE_OPERAND (destvar, 0))
1086 && tree_int_cst_equal (TYPE_SIZE_UNIT (desttype), len))
1087 destvar = fold_build2 (MEM_REF, desttype, destvar, off0);
1088 else
1089 destvar = NULL_TREE;
1091 srcvar = src;
1092 STRIP_NOPS (srcvar);
1093 if (TREE_CODE (srcvar) == ADDR_EXPR
1094 && var_decl_component_p (TREE_OPERAND (srcvar, 0))
1095 && tree_int_cst_equal (TYPE_SIZE_UNIT (srctype), len))
1097 if (!destvar
1098 || src_align >= TYPE_ALIGN (desttype))
1099 srcvar = fold_build2 (MEM_REF, destvar ? desttype : srctype,
1100 srcvar, off0);
1101 else if (!STRICT_ALIGNMENT)
1103 srctype = build_aligned_type (TYPE_MAIN_VARIANT (desttype),
1104 src_align);
1105 srcvar = fold_build2 (MEM_REF, srctype, srcvar, off0);
1107 else
1108 srcvar = NULL_TREE;
1110 else
1111 srcvar = NULL_TREE;
1113 if (srcvar == NULL_TREE && destvar == NULL_TREE)
1114 return false;
1116 if (srcvar == NULL_TREE)
1118 STRIP_NOPS (src);
1119 if (src_align >= TYPE_ALIGN (desttype))
1120 srcvar = fold_build2 (MEM_REF, desttype, src, off0);
1121 else
1123 if (STRICT_ALIGNMENT)
1124 return false;
1125 srctype = build_aligned_type (TYPE_MAIN_VARIANT (desttype),
1126 src_align);
1127 srcvar = fold_build2 (MEM_REF, srctype, src, off0);
1130 else if (destvar == NULL_TREE)
1132 STRIP_NOPS (dest);
1133 if (dest_align >= TYPE_ALIGN (srctype))
1134 destvar = fold_build2 (MEM_REF, srctype, dest, off0);
1135 else
1137 if (STRICT_ALIGNMENT)
1138 return false;
1139 desttype = build_aligned_type (TYPE_MAIN_VARIANT (srctype),
1140 dest_align);
1141 destvar = fold_build2 (MEM_REF, desttype, dest, off0);
1145 gimple new_stmt;
1146 if (is_gimple_reg_type (TREE_TYPE (srcvar)))
1148 new_stmt = gimple_build_assign (NULL_TREE, srcvar);
1149 if (gimple_in_ssa_p (cfun))
1150 srcvar = make_ssa_name (TREE_TYPE (srcvar), new_stmt);
1151 else
1152 srcvar = create_tmp_reg (TREE_TYPE (srcvar), NULL);
1153 gimple_assign_set_lhs (new_stmt, srcvar);
1154 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
1155 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
1157 new_stmt = gimple_build_assign (destvar, srcvar);
1158 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
1159 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
1160 if (gimple_vdef (new_stmt)
1161 && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
1162 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
1163 if (!lhs)
1165 gsi_replace (gsi, new_stmt, true);
1166 return true;
1168 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
1171 done:
1172 if (endp == 0 || endp == 3)
1173 len = NULL_TREE;
1174 else if (endp == 2)
1175 len = fold_build2_loc (loc, MINUS_EXPR, TREE_TYPE (len), len,
1176 ssize_int (1));
1177 if (endp == 2 || endp == 1)
1178 dest = fold_build_pointer_plus_loc (loc, dest, len);
1180 dest = force_gimple_operand_gsi (gsi, dest, false, NULL_TREE, true,
1181 GSI_SAME_STMT);
1182 gimple repl = gimple_build_assign (lhs, dest);
1183 gsi_replace (gsi, repl, true);
1184 return true;
1187 /* Fold function call to builtin memset or bzero at *GSI setting the
1188 memory of size LEN to VAL. Return whether a simplification was made. */
1190 static bool
1191 gimple_fold_builtin_memset (gimple_stmt_iterator *gsi, tree c, tree len)
1193 gimple stmt = gsi_stmt (*gsi);
1194 tree etype;
1195 unsigned HOST_WIDE_INT length, cval;
1197 /* If the LEN parameter is zero, return DEST. */
1198 if (integer_zerop (len))
1200 replace_call_with_value (gsi, gimple_call_arg (stmt, 0));
1201 return true;
1204 if (! tree_fits_uhwi_p (len))
1205 return false;
1207 if (TREE_CODE (c) != INTEGER_CST)
1208 return false;
1210 tree dest = gimple_call_arg (stmt, 0);
1211 tree var = dest;
1212 if (TREE_CODE (var) != ADDR_EXPR)
1213 return false;
1215 var = TREE_OPERAND (var, 0);
1216 if (TREE_THIS_VOLATILE (var))
1217 return false;
1219 etype = TREE_TYPE (var);
1220 if (TREE_CODE (etype) == ARRAY_TYPE)
1221 etype = TREE_TYPE (etype);
1223 if (!INTEGRAL_TYPE_P (etype)
1224 && !POINTER_TYPE_P (etype))
1225 return NULL_TREE;
1227 if (! var_decl_component_p (var))
1228 return NULL_TREE;
1230 length = tree_to_uhwi (len);
1231 if (GET_MODE_SIZE (TYPE_MODE (etype)) != length
1232 || get_pointer_alignment (dest) / BITS_PER_UNIT < length)
1233 return NULL_TREE;
1235 if (length > HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT)
1236 return NULL_TREE;
1238 if (integer_zerop (c))
1239 cval = 0;
1240 else
1242 if (CHAR_BIT != 8 || BITS_PER_UNIT != 8 || HOST_BITS_PER_WIDE_INT > 64)
1243 return NULL_TREE;
1245 cval = TREE_INT_CST_LOW (c);
1246 cval &= 0xff;
1247 cval |= cval << 8;
1248 cval |= cval << 16;
1249 cval |= (cval << 31) << 1;
1252 var = fold_build2 (MEM_REF, etype, dest, build_int_cst (ptr_type_node, 0));
1253 gimple store = gimple_build_assign (var, build_int_cst_type (etype, cval));
1254 gimple_set_vuse (store, gimple_vuse (stmt));
1255 tree vdef = gimple_vdef (stmt);
1256 if (vdef && TREE_CODE (vdef) == SSA_NAME)
1258 gimple_set_vdef (store, gimple_vdef (stmt));
1259 SSA_NAME_DEF_STMT (gimple_vdef (stmt)) = store;
1261 gsi_insert_before (gsi, store, GSI_SAME_STMT);
1262 if (gimple_call_lhs (stmt))
1264 gimple asgn = gimple_build_assign (gimple_call_lhs (stmt), dest);
1265 gsi_replace (gsi, asgn, true);
1267 else
1269 gimple_stmt_iterator gsi2 = *gsi;
1270 gsi_prev (gsi);
1271 gsi_remove (&gsi2, true);
1274 return true;
1278 /* Return the string length, maximum string length or maximum value of
1279 ARG in LENGTH.
1280 If ARG is an SSA name variable, follow its use-def chains. If LENGTH
1281 is not NULL and, for TYPE == 0, its value is not equal to the length
1282 we determine or if we are unable to determine the length or value,
1283 return false. VISITED is a bitmap of visited variables.
1284 TYPE is 0 if string length should be returned, 1 for maximum string
1285 length and 2 for maximum value ARG can have. */
1287 static bool
1288 get_maxval_strlen (tree arg, tree *length, bitmap *visited, int type)
1290 tree var, val;
1291 gimple def_stmt;
1293 if (TREE_CODE (arg) != SSA_NAME)
1295 /* We can end up with &(*iftmp_1)[0] here as well, so handle it. */
1296 if (TREE_CODE (arg) == ADDR_EXPR
1297 && TREE_CODE (TREE_OPERAND (arg, 0)) == ARRAY_REF
1298 && integer_zerop (TREE_OPERAND (TREE_OPERAND (arg, 0), 1)))
1300 tree aop0 = TREE_OPERAND (TREE_OPERAND (arg, 0), 0);
1301 if (TREE_CODE (aop0) == INDIRECT_REF
1302 && TREE_CODE (TREE_OPERAND (aop0, 0)) == SSA_NAME)
1303 return get_maxval_strlen (TREE_OPERAND (aop0, 0),
1304 length, visited, type);
1307 if (type == 2)
1309 val = arg;
1310 if (TREE_CODE (val) != INTEGER_CST
1311 || tree_int_cst_sgn (val) < 0)
1312 return false;
1314 else
1315 val = c_strlen (arg, 1);
1316 if (!val)
1317 return false;
1319 if (*length)
1321 if (type > 0)
1323 if (TREE_CODE (*length) != INTEGER_CST
1324 || TREE_CODE (val) != INTEGER_CST)
1325 return false;
1327 if (tree_int_cst_lt (*length, val))
1328 *length = val;
1329 return true;
1331 else if (simple_cst_equal (val, *length) != 1)
1332 return false;
1335 *length = val;
1336 return true;
1339 /* If ARG is registered for SSA update we cannot look at its defining
1340 statement. */
1341 if (name_registered_for_update_p (arg))
1342 return false;
1344 /* If we were already here, break the infinite cycle. */
1345 if (!*visited)
1346 *visited = BITMAP_ALLOC (NULL);
1347 if (!bitmap_set_bit (*visited, SSA_NAME_VERSION (arg)))
1348 return true;
1350 var = arg;
1351 def_stmt = SSA_NAME_DEF_STMT (var);
1353 switch (gimple_code (def_stmt))
1355 case GIMPLE_ASSIGN:
1356 /* The RHS of the statement defining VAR must either have a
1357 constant length or come from another SSA_NAME with a constant
1358 length. */
1359 if (gimple_assign_single_p (def_stmt)
1360 || gimple_assign_unary_nop_p (def_stmt))
1362 tree rhs = gimple_assign_rhs1 (def_stmt);
1363 return get_maxval_strlen (rhs, length, visited, type);
1365 else if (gimple_assign_rhs_code (def_stmt) == COND_EXPR)
1367 tree op2 = gimple_assign_rhs2 (def_stmt);
1368 tree op3 = gimple_assign_rhs3 (def_stmt);
1369 return get_maxval_strlen (op2, length, visited, type)
1370 && get_maxval_strlen (op3, length, visited, type);
1372 return false;
1374 case GIMPLE_PHI:
1376 /* All the arguments of the PHI node must have the same constant
1377 length. */
1378 unsigned i;
1380 for (i = 0; i < gimple_phi_num_args (def_stmt); i++)
1382 tree arg = gimple_phi_arg (def_stmt, i)->def;
1384 /* If this PHI has itself as an argument, we cannot
1385 determine the string length of this argument. However,
1386 if we can find a constant string length for the other
1387 PHI args then we can still be sure that this is a
1388 constant string length. So be optimistic and just
1389 continue with the next argument. */
1390 if (arg == gimple_phi_result (def_stmt))
1391 continue;
1393 if (!get_maxval_strlen (arg, length, visited, type))
1394 return false;
1397 return true;
1399 default:
1400 return false;
1404 tree
1405 get_maxval_strlen (tree arg, int type)
1407 bitmap visited = NULL;
1408 tree len = NULL_TREE;
1409 if (!get_maxval_strlen (arg, &len, &visited, type))
1410 len = NULL_TREE;
1411 if (visited)
1412 BITMAP_FREE (visited);
1414 return len;
1418 /* Fold function call to builtin strcpy with arguments DEST and SRC.
1419 If LEN is not NULL, it represents the length of the string to be
1420 copied. Return NULL_TREE if no simplification can be made. */
1422 static bool
1423 gimple_fold_builtin_strcpy (gimple_stmt_iterator *gsi,
1424 tree dest, tree src)
1426 location_t loc = gimple_location (gsi_stmt (*gsi));
1427 tree fn;
1429 /* If SRC and DEST are the same (and not volatile), return DEST. */
1430 if (operand_equal_p (src, dest, 0))
1432 replace_call_with_value (gsi, dest);
1433 return true;
1436 if (optimize_function_for_size_p (cfun))
1437 return false;
1439 fn = builtin_decl_implicit (BUILT_IN_MEMCPY);
1440 if (!fn)
1441 return false;
1443 tree len = get_maxval_strlen (src, 0);
1444 if (!len)
1445 return false;
1447 len = fold_convert_loc (loc, size_type_node, len);
1448 len = size_binop_loc (loc, PLUS_EXPR, len, build_int_cst (size_type_node, 1));
1449 len = force_gimple_operand_gsi (gsi, len, true,
1450 NULL_TREE, true, GSI_SAME_STMT);
1451 gimple repl = gimple_build_call (fn, 3, dest, src, len);
1452 replace_call_with_call_and_fold (gsi, repl);
1453 return true;
1456 /* Fold function call to builtin strncpy with arguments DEST, SRC, and LEN.
1457 If SLEN is not NULL, it represents the length of the source string.
1458 Return NULL_TREE if no simplification can be made. */
1460 static bool
1461 gimple_fold_builtin_strncpy (gimple_stmt_iterator *gsi,
1462 tree dest, tree src, tree len)
1464 location_t loc = gimple_location (gsi_stmt (*gsi));
1465 tree fn;
1467 /* If the LEN parameter is zero, return DEST. */
1468 if (integer_zerop (len))
1470 replace_call_with_value (gsi, dest);
1471 return true;
1474 /* We can't compare slen with len as constants below if len is not a
1475 constant. */
1476 if (TREE_CODE (len) != INTEGER_CST)
1477 return false;
1479 /* Now, we must be passed a constant src ptr parameter. */
1480 tree slen = get_maxval_strlen (src, 0);
1481 if (!slen || TREE_CODE (slen) != INTEGER_CST)
1482 return false;
1484 slen = size_binop_loc (loc, PLUS_EXPR, slen, ssize_int (1));
1486 /* We do not support simplification of this case, though we do
1487 support it when expanding trees into RTL. */
1488 /* FIXME: generate a call to __builtin_memset. */
1489 if (tree_int_cst_lt (slen, len))
1490 return false;
1492 /* OK transform into builtin memcpy. */
1493 fn = builtin_decl_implicit (BUILT_IN_MEMCPY);
1494 if (!fn)
1495 return false;
1497 len = fold_convert_loc (loc, size_type_node, len);
1498 len = force_gimple_operand_gsi (gsi, len, true,
1499 NULL_TREE, true, GSI_SAME_STMT);
1500 gimple repl = gimple_build_call (fn, 3, dest, src, len);
1501 replace_call_with_call_and_fold (gsi, repl);
1502 return true;
1505 /* Simplify a call to the strcat builtin. DST and SRC are the arguments
1506 to the call.
1508 Return NULL_TREE if no simplification was possible, otherwise return the
1509 simplified form of the call as a tree.
1511 The simplified form may be a constant or other expression which
1512 computes the same value, but in a more efficient manner (including
1513 calls to other builtin functions).
1515 The call may contain arguments which need to be evaluated, but
1516 which are not useful to determine the result of the call. In
1517 this case we return a chain of COMPOUND_EXPRs. The LHS of each
1518 COMPOUND_EXPR will be an argument which must be evaluated.
1519 COMPOUND_EXPRs are chained through their RHS. The RHS of the last
1520 COMPOUND_EXPR in the chain will contain the tree for the simplified
1521 form of the builtin function call. */
1523 static bool
1524 gimple_fold_builtin_strcat (gimple_stmt_iterator *gsi, tree dst, tree src)
1526 gimple stmt = gsi_stmt (*gsi);
1527 location_t loc = gimple_location (stmt);
1529 const char *p = c_getstr (src);
1531 /* If the string length is zero, return the dst parameter. */
1532 if (p && *p == '\0')
1534 replace_call_with_value (gsi, dst);
1535 return true;
1538 if (!optimize_bb_for_speed_p (gimple_bb (stmt)))
1539 return false;
1541 /* See if we can store by pieces into (dst + strlen(dst)). */
1542 tree newdst;
1543 tree strlen_fn = builtin_decl_implicit (BUILT_IN_STRLEN);
1544 tree memcpy_fn = builtin_decl_implicit (BUILT_IN_MEMCPY);
1546 if (!strlen_fn || !memcpy_fn)
1547 return false;
1549 /* If the length of the source string isn't computable don't
1550 split strcat into strlen and memcpy. */
1551 tree len = get_maxval_strlen (src, 0);
1552 if (! len)
1553 return false;
1555 /* Create strlen (dst). */
1556 gimple_seq stmts = NULL, stmts2;
1557 gimple repl = gimple_build_call (strlen_fn, 1, dst);
1558 gimple_set_location (repl, loc);
1559 if (gimple_in_ssa_p (cfun))
1560 newdst = make_ssa_name (size_type_node, NULL);
1561 else
1562 newdst = create_tmp_reg (size_type_node, NULL);
1563 gimple_call_set_lhs (repl, newdst);
1564 gimple_seq_add_stmt_without_update (&stmts, repl);
1566 /* Create (dst p+ strlen (dst)). */
1567 newdst = fold_build_pointer_plus_loc (loc, dst, newdst);
1568 newdst = force_gimple_operand (newdst, &stmts2, true, NULL_TREE);
1569 gimple_seq_add_seq_without_update (&stmts, stmts2);
1571 len = fold_convert_loc (loc, size_type_node, len);
1572 len = size_binop_loc (loc, PLUS_EXPR, len,
1573 build_int_cst (size_type_node, 1));
1574 len = force_gimple_operand (len, &stmts2, true, NULL_TREE);
1575 gimple_seq_add_seq_without_update (&stmts, stmts2);
1577 repl = gimple_build_call (memcpy_fn, 3, newdst, src, len);
1578 gimple_seq_add_stmt_without_update (&stmts, repl);
1579 if (gimple_call_lhs (stmt))
1581 repl = gimple_build_assign (gimple_call_lhs (stmt), dst);
1582 gimple_seq_add_stmt_without_update (&stmts, repl);
1583 gsi_replace_with_seq_vops (gsi, stmts);
1584 /* gsi now points at the assignment to the lhs, get a
1585 stmt iterator to the memcpy call.
1586 ??? We can't use gsi_for_stmt as that doesn't work when the
1587 CFG isn't built yet. */
1588 gimple_stmt_iterator gsi2 = *gsi;
1589 gsi_prev (&gsi2);
1590 fold_stmt (&gsi2);
1592 else
1594 gsi_replace_with_seq_vops (gsi, stmts);
1595 fold_stmt (gsi);
1597 return true;
1600 /* Fold a call to the __strcat_chk builtin FNDECL. DEST, SRC, and SIZE
1601 are the arguments to the call. */
1603 static bool
1604 gimple_fold_builtin_strcat_chk (gimple_stmt_iterator *gsi)
1606 gimple stmt = gsi_stmt (*gsi);
1607 tree dest = gimple_call_arg (stmt, 0);
1608 tree src = gimple_call_arg (stmt, 1);
1609 tree size = gimple_call_arg (stmt, 2);
1610 tree fn;
1611 const char *p;
1614 p = c_getstr (src);
1615 /* If the SRC parameter is "", return DEST. */
1616 if (p && *p == '\0')
1618 replace_call_with_value (gsi, dest);
1619 return true;
1622 if (! tree_fits_uhwi_p (size) || ! integer_all_onesp (size))
1623 return false;
1625 /* If __builtin_strcat_chk is used, assume strcat is available. */
1626 fn = builtin_decl_explicit (BUILT_IN_STRCAT);
1627 if (!fn)
1628 return false;
1630 gimple repl = gimple_build_call (fn, 2, dest, src);
1631 replace_call_with_call_and_fold (gsi, repl);
1632 return true;
1635 /* Fold a call to the fputs builtin. ARG0 and ARG1 are the arguments
1636 to the call. IGNORE is true if the value returned
1637 by the builtin will be ignored. UNLOCKED is true is true if this
1638 actually a call to fputs_unlocked. If LEN in non-NULL, it represents
1639 the known length of the string. Return NULL_TREE if no simplification
1640 was possible. */
1642 static bool
1643 gimple_fold_builtin_fputs (gimple_stmt_iterator *gsi,
1644 tree arg0, tree arg1,
1645 bool unlocked)
1647 gimple stmt = gsi_stmt (*gsi);
1649 /* If we're using an unlocked function, assume the other unlocked
1650 functions exist explicitly. */
1651 tree const fn_fputc = (unlocked
1652 ? builtin_decl_explicit (BUILT_IN_FPUTC_UNLOCKED)
1653 : builtin_decl_implicit (BUILT_IN_FPUTC));
1654 tree const fn_fwrite = (unlocked
1655 ? builtin_decl_explicit (BUILT_IN_FWRITE_UNLOCKED)
1656 : builtin_decl_implicit (BUILT_IN_FWRITE));
1658 /* If the return value is used, don't do the transformation. */
1659 if (gimple_call_lhs (stmt))
1660 return false;
1662 /* Get the length of the string passed to fputs. If the length
1663 can't be determined, punt. */
1664 tree len = get_maxval_strlen (arg0, 0);
1665 if (!len
1666 || TREE_CODE (len) != INTEGER_CST)
1667 return false;
1669 switch (compare_tree_int (len, 1))
1671 case -1: /* length is 0, delete the call entirely . */
1672 replace_call_with_value (gsi, integer_zero_node);
1673 return true;
1675 case 0: /* length is 1, call fputc. */
1677 const char *p = c_getstr (arg0);
1678 if (p != NULL)
1680 if (!fn_fputc)
1681 return false;
1683 gimple repl = gimple_build_call (fn_fputc, 2,
1684 build_int_cst
1685 (integer_type_node, p[0]), arg1);
1686 replace_call_with_call_and_fold (gsi, repl);
1687 return true;
1690 /* FALLTHROUGH */
1691 case 1: /* length is greater than 1, call fwrite. */
1693 /* If optimizing for size keep fputs. */
1694 if (optimize_function_for_size_p (cfun))
1695 return false;
1696 /* New argument list transforming fputs(string, stream) to
1697 fwrite(string, 1, len, stream). */
1698 if (!fn_fwrite)
1699 return false;
1701 gimple repl = gimple_build_call (fn_fwrite, 4, arg0,
1702 size_one_node, len, arg1);
1703 replace_call_with_call_and_fold (gsi, repl);
1704 return true;
1706 default:
1707 gcc_unreachable ();
1709 return false;
1712 /* Fold a call to the __mem{cpy,pcpy,move,set}_chk builtin.
1713 DEST, SRC, LEN, and SIZE are the arguments to the call.
1714 IGNORE is true, if return value can be ignored. FCODE is the BUILT_IN_*
1715 code of the builtin. If MAXLEN is not NULL, it is maximum length
1716 passed as third argument. */
1718 static bool
1719 gimple_fold_builtin_memory_chk (gimple_stmt_iterator *gsi,
1720 tree dest, tree src, tree len, tree size,
1721 enum built_in_function fcode)
1723 gimple stmt = gsi_stmt (*gsi);
1724 location_t loc = gimple_location (stmt);
1725 bool ignore = gimple_call_lhs (stmt) == NULL_TREE;
1726 tree fn;
1728 /* If SRC and DEST are the same (and not volatile), return DEST
1729 (resp. DEST+LEN for __mempcpy_chk). */
1730 if (fcode != BUILT_IN_MEMSET_CHK && operand_equal_p (src, dest, 0))
1732 if (fcode != BUILT_IN_MEMPCPY_CHK)
1734 replace_call_with_value (gsi, dest);
1735 return true;
1737 else
1739 tree temp = fold_build_pointer_plus_loc (loc, dest, len);
1740 temp = force_gimple_operand_gsi (gsi, temp,
1741 false, NULL_TREE, true,
1742 GSI_SAME_STMT);
1743 replace_call_with_value (gsi, temp);
1744 return true;
1748 if (! tree_fits_uhwi_p (size))
1749 return false;
1751 tree maxlen = get_maxval_strlen (len, 2);
1752 if (! integer_all_onesp (size))
1754 if (! tree_fits_uhwi_p (len))
1756 /* If LEN is not constant, try MAXLEN too.
1757 For MAXLEN only allow optimizing into non-_ocs function
1758 if SIZE is >= MAXLEN, never convert to __ocs_fail (). */
1759 if (maxlen == NULL_TREE || ! tree_fits_uhwi_p (maxlen))
1761 if (fcode == BUILT_IN_MEMPCPY_CHK && ignore)
1763 /* (void) __mempcpy_chk () can be optimized into
1764 (void) __memcpy_chk (). */
1765 fn = builtin_decl_explicit (BUILT_IN_MEMCPY_CHK);
1766 if (!fn)
1767 return false;
1769 gimple repl = gimple_build_call (fn, 4, dest, src, len, size);
1770 replace_call_with_call_and_fold (gsi, repl);
1771 return true;
1773 return false;
1776 else
1777 maxlen = len;
1779 if (tree_int_cst_lt (size, maxlen))
1780 return false;
1783 fn = NULL_TREE;
1784 /* If __builtin_mem{cpy,pcpy,move,set}_chk is used, assume
1785 mem{cpy,pcpy,move,set} is available. */
1786 switch (fcode)
1788 case BUILT_IN_MEMCPY_CHK:
1789 fn = builtin_decl_explicit (BUILT_IN_MEMCPY);
1790 break;
1791 case BUILT_IN_MEMPCPY_CHK:
1792 fn = builtin_decl_explicit (BUILT_IN_MEMPCPY);
1793 break;
1794 case BUILT_IN_MEMMOVE_CHK:
1795 fn = builtin_decl_explicit (BUILT_IN_MEMMOVE);
1796 break;
1797 case BUILT_IN_MEMSET_CHK:
1798 fn = builtin_decl_explicit (BUILT_IN_MEMSET);
1799 break;
1800 default:
1801 break;
1804 if (!fn)
1805 return false;
1807 gimple repl = gimple_build_call (fn, 3, dest, src, len);
1808 replace_call_with_call_and_fold (gsi, repl);
1809 return true;
1812 /* Fold a call to the __st[rp]cpy_chk builtin.
1813 DEST, SRC, and SIZE are the arguments to the call.
1814 IGNORE is true if return value can be ignored. FCODE is the BUILT_IN_*
1815 code of the builtin. If MAXLEN is not NULL, it is maximum length of
1816 strings passed as second argument. */
1818 static bool
1819 gimple_fold_builtin_stxcpy_chk (gimple_stmt_iterator *gsi,
1820 tree dest,
1821 tree src, tree size,
1822 enum built_in_function fcode)
1824 gimple stmt = gsi_stmt (*gsi);
1825 location_t loc = gimple_location (stmt);
1826 bool ignore = gimple_call_lhs (stmt) == NULL_TREE;
1827 tree len, fn;
1829 /* If SRC and DEST are the same (and not volatile), return DEST. */
1830 if (fcode == BUILT_IN_STRCPY_CHK && operand_equal_p (src, dest, 0))
1832 replace_call_with_value (gsi, dest);
1833 return true;
1836 if (! tree_fits_uhwi_p (size))
1837 return false;
1839 tree maxlen = get_maxval_strlen (src, 1);
1840 if (! integer_all_onesp (size))
1842 len = c_strlen (src, 1);
1843 if (! len || ! tree_fits_uhwi_p (len))
1845 /* If LEN is not constant, try MAXLEN too.
1846 For MAXLEN only allow optimizing into non-_ocs function
1847 if SIZE is >= MAXLEN, never convert to __ocs_fail (). */
1848 if (maxlen == NULL_TREE || ! tree_fits_uhwi_p (maxlen))
1850 if (fcode == BUILT_IN_STPCPY_CHK)
1852 if (! ignore)
1853 return false;
1855 /* If return value of __stpcpy_chk is ignored,
1856 optimize into __strcpy_chk. */
1857 fn = builtin_decl_explicit (BUILT_IN_STRCPY_CHK);
1858 if (!fn)
1859 return false;
1861 gimple repl = gimple_build_call (fn, 3, dest, src, size);
1862 replace_call_with_call_and_fold (gsi, repl);
1863 return true;
1866 if (! len || TREE_SIDE_EFFECTS (len))
1867 return false;
1869 /* If c_strlen returned something, but not a constant,
1870 transform __strcpy_chk into __memcpy_chk. */
1871 fn = builtin_decl_explicit (BUILT_IN_MEMCPY_CHK);
1872 if (!fn)
1873 return false;
1875 len = fold_convert_loc (loc, size_type_node, len);
1876 len = size_binop_loc (loc, PLUS_EXPR, len,
1877 build_int_cst (size_type_node, 1));
1878 len = force_gimple_operand_gsi (gsi, len, true, NULL_TREE,
1879 true, GSI_SAME_STMT);
1880 gimple repl = gimple_build_call (fn, 4, dest, src, len, size);
1881 replace_call_with_call_and_fold (gsi, repl);
1882 return true;
1885 else
1886 maxlen = len;
1888 if (! tree_int_cst_lt (maxlen, size))
1889 return false;
1892 /* If __builtin_st{r,p}cpy_chk is used, assume st{r,p}cpy is available. */
1893 fn = builtin_decl_explicit (fcode == BUILT_IN_STPCPY_CHK
1894 ? BUILT_IN_STPCPY : BUILT_IN_STRCPY);
1895 if (!fn)
1896 return false;
1898 gimple repl = gimple_build_call (fn, 2, dest, src);
1899 replace_call_with_call_and_fold (gsi, repl);
1900 return true;
1903 /* Fold a call to the __st{r,p}ncpy_chk builtin. DEST, SRC, LEN, and SIZE
1904 are the arguments to the call. If MAXLEN is not NULL, it is maximum
1905 length passed as third argument. IGNORE is true if return value can be
1906 ignored. FCODE is the BUILT_IN_* code of the builtin. */
1908 static bool
1909 gimple_fold_builtin_stxncpy_chk (gimple_stmt_iterator *gsi,
1910 tree dest, tree src,
1911 tree len, tree size,
1912 enum built_in_function fcode)
1914 gimple stmt = gsi_stmt (*gsi);
1915 bool ignore = gimple_call_lhs (stmt) == NULL_TREE;
1916 tree fn;
1918 if (fcode == BUILT_IN_STPNCPY_CHK && ignore)
1920 /* If return value of __stpncpy_chk is ignored,
1921 optimize into __strncpy_chk. */
1922 fn = builtin_decl_explicit (BUILT_IN_STRNCPY_CHK);
1923 if (fn)
1925 gimple repl = gimple_build_call (fn, 4, dest, src, len, size);
1926 replace_call_with_call_and_fold (gsi, repl);
1927 return true;
1931 if (! tree_fits_uhwi_p (size))
1932 return false;
1934 tree maxlen = get_maxval_strlen (len, 2);
1935 if (! integer_all_onesp (size))
1937 if (! tree_fits_uhwi_p (len))
1939 /* If LEN is not constant, try MAXLEN too.
1940 For MAXLEN only allow optimizing into non-_ocs function
1941 if SIZE is >= MAXLEN, never convert to __ocs_fail (). */
1942 if (maxlen == NULL_TREE || ! tree_fits_uhwi_p (maxlen))
1943 return false;
1945 else
1946 maxlen = len;
1948 if (tree_int_cst_lt (size, maxlen))
1949 return false;
1952 /* If __builtin_st{r,p}ncpy_chk is used, assume st{r,p}ncpy is available. */
1953 fn = builtin_decl_explicit (fcode == BUILT_IN_STPNCPY_CHK
1954 ? BUILT_IN_STPNCPY : BUILT_IN_STRNCPY);
1955 if (!fn)
1956 return false;
1958 gimple repl = gimple_build_call (fn, 3, dest, src, len);
1959 replace_call_with_call_and_fold (gsi, repl);
1960 return true;
1963 /* Fold a call EXP to {,v}snprintf having NARGS passed as ARGS. Return
1964 NULL_TREE if a normal call should be emitted rather than expanding
1965 the function inline. FCODE is either BUILT_IN_SNPRINTF_CHK or
1966 BUILT_IN_VSNPRINTF_CHK. If MAXLEN is not NULL, it is maximum length
1967 passed as second argument. */
1969 static bool
1970 gimple_fold_builtin_snprintf_chk (gimple_stmt_iterator *gsi,
1971 enum built_in_function fcode)
1973 gimple_call stmt = as_a <gimple_call> (gsi_stmt (*gsi));
1974 tree dest, size, len, fn, fmt, flag;
1975 const char *fmt_str;
1977 /* Verify the required arguments in the original call. */
1978 if (gimple_call_num_args (stmt) < 5)
1979 return false;
1981 dest = gimple_call_arg (stmt, 0);
1982 len = gimple_call_arg (stmt, 1);
1983 flag = gimple_call_arg (stmt, 2);
1984 size = gimple_call_arg (stmt, 3);
1985 fmt = gimple_call_arg (stmt, 4);
1987 if (! tree_fits_uhwi_p (size))
1988 return false;
1990 if (! integer_all_onesp (size))
1992 tree maxlen = get_maxval_strlen (len, 2);
1993 if (! tree_fits_uhwi_p (len))
1995 /* If LEN is not constant, try MAXLEN too.
1996 For MAXLEN only allow optimizing into non-_ocs function
1997 if SIZE is >= MAXLEN, never convert to __ocs_fail (). */
1998 if (maxlen == NULL_TREE || ! tree_fits_uhwi_p (maxlen))
1999 return false;
2001 else
2002 maxlen = len;
2004 if (tree_int_cst_lt (size, maxlen))
2005 return false;
2008 if (!init_target_chars ())
2009 return false;
2011 /* Only convert __{,v}snprintf_chk to {,v}snprintf if flag is 0
2012 or if format doesn't contain % chars or is "%s". */
2013 if (! integer_zerop (flag))
2015 fmt_str = c_getstr (fmt);
2016 if (fmt_str == NULL)
2017 return false;
2018 if (strchr (fmt_str, target_percent) != NULL
2019 && strcmp (fmt_str, target_percent_s))
2020 return false;
2023 /* If __builtin_{,v}snprintf_chk is used, assume {,v}snprintf is
2024 available. */
2025 fn = builtin_decl_explicit (fcode == BUILT_IN_VSNPRINTF_CHK
2026 ? BUILT_IN_VSNPRINTF : BUILT_IN_SNPRINTF);
2027 if (!fn)
2028 return false;
2030 /* Replace the called function and the first 5 argument by 3 retaining
2031 trailing varargs. */
2032 gimple_call_set_fndecl (stmt, fn);
2033 gimple_call_set_fntype (stmt, TREE_TYPE (fn));
2034 gimple_call_set_arg (stmt, 0, dest);
2035 gimple_call_set_arg (stmt, 1, len);
2036 gimple_call_set_arg (stmt, 2, fmt);
2037 for (unsigned i = 3; i < gimple_call_num_args (stmt) - 2; ++i)
2038 gimple_call_set_arg (stmt, i, gimple_call_arg (stmt, i + 2));
2039 gimple_set_num_ops (stmt, gimple_num_ops (stmt) - 2);
2040 fold_stmt (gsi);
2041 return true;
2044 /* Fold a call EXP to __{,v}sprintf_chk having NARGS passed as ARGS.
2045 Return NULL_TREE if a normal call should be emitted rather than
2046 expanding the function inline. FCODE is either BUILT_IN_SPRINTF_CHK
2047 or BUILT_IN_VSPRINTF_CHK. */
2049 static bool
2050 gimple_fold_builtin_sprintf_chk (gimple_stmt_iterator *gsi,
2051 enum built_in_function fcode)
2053 gimple_call stmt = as_a <gimple_call> (gsi_stmt (*gsi));
2054 tree dest, size, len, fn, fmt, flag;
2055 const char *fmt_str;
2056 unsigned nargs = gimple_call_num_args (stmt);
2058 /* Verify the required arguments in the original call. */
2059 if (nargs < 4)
2060 return false;
2061 dest = gimple_call_arg (stmt, 0);
2062 flag = gimple_call_arg (stmt, 1);
2063 size = gimple_call_arg (stmt, 2);
2064 fmt = gimple_call_arg (stmt, 3);
2066 if (! tree_fits_uhwi_p (size))
2067 return false;
2069 len = NULL_TREE;
2071 if (!init_target_chars ())
2072 return false;
2074 /* Check whether the format is a literal string constant. */
2075 fmt_str = c_getstr (fmt);
2076 if (fmt_str != NULL)
2078 /* If the format doesn't contain % args or %%, we know the size. */
2079 if (strchr (fmt_str, target_percent) == 0)
2081 if (fcode != BUILT_IN_SPRINTF_CHK || nargs == 4)
2082 len = build_int_cstu (size_type_node, strlen (fmt_str));
2084 /* If the format is "%s" and first ... argument is a string literal,
2085 we know the size too. */
2086 else if (fcode == BUILT_IN_SPRINTF_CHK
2087 && strcmp (fmt_str, target_percent_s) == 0)
2089 tree arg;
2091 if (nargs == 5)
2093 arg = gimple_call_arg (stmt, 4);
2094 if (POINTER_TYPE_P (TREE_TYPE (arg)))
2096 len = c_strlen (arg, 1);
2097 if (! len || ! tree_fits_uhwi_p (len))
2098 len = NULL_TREE;
2104 if (! integer_all_onesp (size))
2106 if (! len || ! tree_int_cst_lt (len, size))
2107 return false;
2110 /* Only convert __{,v}sprintf_chk to {,v}sprintf if flag is 0
2111 or if format doesn't contain % chars or is "%s". */
2112 if (! integer_zerop (flag))
2114 if (fmt_str == NULL)
2115 return false;
2116 if (strchr (fmt_str, target_percent) != NULL
2117 && strcmp (fmt_str, target_percent_s))
2118 return false;
2121 /* If __builtin_{,v}sprintf_chk is used, assume {,v}sprintf is available. */
2122 fn = builtin_decl_explicit (fcode == BUILT_IN_VSPRINTF_CHK
2123 ? BUILT_IN_VSPRINTF : BUILT_IN_SPRINTF);
2124 if (!fn)
2125 return false;
2127 /* Replace the called function and the first 4 argument by 2 retaining
2128 trailing varargs. */
2129 gimple_call_set_fndecl (stmt, fn);
2130 gimple_call_set_fntype (stmt, TREE_TYPE (fn));
2131 gimple_call_set_arg (stmt, 0, dest);
2132 gimple_call_set_arg (stmt, 1, fmt);
2133 for (unsigned i = 2; i < gimple_call_num_args (stmt) - 2; ++i)
2134 gimple_call_set_arg (stmt, i, gimple_call_arg (stmt, i + 2));
2135 gimple_set_num_ops (stmt, gimple_num_ops (stmt) - 2);
2136 fold_stmt (gsi);
2137 return true;
2140 /* Simplify a call to the sprintf builtin with arguments DEST, FMT, and ORIG.
2141 ORIG may be null if this is a 2-argument call. We don't attempt to
2142 simplify calls with more than 3 arguments.
2144 Return NULL_TREE if no simplification was possible, otherwise return the
2145 simplified form of the call as a tree. If IGNORED is true, it means that
2146 the caller does not use the returned value of the function. */
2148 static bool
2149 gimple_fold_builtin_sprintf (gimple_stmt_iterator *gsi)
2151 gimple stmt = gsi_stmt (*gsi);
2152 tree dest = gimple_call_arg (stmt, 0);
2153 tree fmt = gimple_call_arg (stmt, 1);
2154 tree orig = NULL_TREE;
2155 const char *fmt_str = NULL;
2157 /* Verify the required arguments in the original call. We deal with two
2158 types of sprintf() calls: 'sprintf (str, fmt)' and
2159 'sprintf (dest, "%s", orig)'. */
2160 if (gimple_call_num_args (stmt) > 3)
2161 return false;
2163 if (gimple_call_num_args (stmt) == 3)
2164 orig = gimple_call_arg (stmt, 2);
2166 /* Check whether the format is a literal string constant. */
2167 fmt_str = c_getstr (fmt);
2168 if (fmt_str == NULL)
2169 return false;
2171 if (!init_target_chars ())
2172 return false;
2174 /* If the format doesn't contain % args or %%, use strcpy. */
2175 if (strchr (fmt_str, target_percent) == NULL)
2177 tree fn = builtin_decl_implicit (BUILT_IN_STRCPY);
2179 if (!fn)
2180 return false;
2182 /* Don't optimize sprintf (buf, "abc", ptr++). */
2183 if (orig)
2184 return false;
2186 /* Convert sprintf (str, fmt) into strcpy (str, fmt) when
2187 'format' is known to contain no % formats. */
2188 gimple_seq stmts = NULL;
2189 gimple repl = gimple_build_call (fn, 2, dest, fmt);
2190 gimple_seq_add_stmt_without_update (&stmts, repl);
2191 if (gimple_call_lhs (stmt))
2193 repl = gimple_build_assign (gimple_call_lhs (stmt),
2194 build_int_cst (integer_type_node,
2195 strlen (fmt_str)));
2196 gimple_seq_add_stmt_without_update (&stmts, repl);
2197 gsi_replace_with_seq_vops (gsi, stmts);
2198 /* gsi now points at the assignment to the lhs, get a
2199 stmt iterator to the memcpy call.
2200 ??? We can't use gsi_for_stmt as that doesn't work when the
2201 CFG isn't built yet. */
2202 gimple_stmt_iterator gsi2 = *gsi;
2203 gsi_prev (&gsi2);
2204 fold_stmt (&gsi2);
2206 else
2208 gsi_replace_with_seq_vops (gsi, stmts);
2209 fold_stmt (gsi);
2211 return true;
2214 /* If the format is "%s", use strcpy if the result isn't used. */
2215 else if (fmt_str && strcmp (fmt_str, target_percent_s) == 0)
2217 tree fn;
2218 fn = builtin_decl_implicit (BUILT_IN_STRCPY);
2220 if (!fn)
2221 return false;
2223 /* Don't crash on sprintf (str1, "%s"). */
2224 if (!orig)
2225 return false;
2227 tree orig_len = NULL_TREE;
2228 if (gimple_call_lhs (stmt))
2230 orig_len = get_maxval_strlen (orig, 0);
2231 if (!orig_len)
2232 return false;
2235 /* Convert sprintf (str1, "%s", str2) into strcpy (str1, str2). */
2236 gimple_seq stmts = NULL;
2237 gimple repl = gimple_build_call (fn, 2, dest, orig);
2238 gimple_seq_add_stmt_without_update (&stmts, repl);
2239 if (gimple_call_lhs (stmt))
2241 if (!useless_type_conversion_p (integer_type_node,
2242 TREE_TYPE (orig_len)))
2243 orig_len = fold_convert (integer_type_node, orig_len);
2244 repl = gimple_build_assign (gimple_call_lhs (stmt), orig_len);
2245 gimple_seq_add_stmt_without_update (&stmts, repl);
2246 gsi_replace_with_seq_vops (gsi, stmts);
2247 /* gsi now points at the assignment to the lhs, get a
2248 stmt iterator to the memcpy call.
2249 ??? We can't use gsi_for_stmt as that doesn't work when the
2250 CFG isn't built yet. */
2251 gimple_stmt_iterator gsi2 = *gsi;
2252 gsi_prev (&gsi2);
2253 fold_stmt (&gsi2);
2255 else
2257 gsi_replace_with_seq_vops (gsi, stmts);
2258 fold_stmt (gsi);
2260 return true;
2262 return false;
2265 /* Simplify a call to the snprintf builtin with arguments DEST, DESTSIZE,
2266 FMT, and ORIG. ORIG may be null if this is a 3-argument call. We don't
2267 attempt to simplify calls with more than 4 arguments.
2269 Return NULL_TREE if no simplification was possible, otherwise return the
2270 simplified form of the call as a tree. If IGNORED is true, it means that
2271 the caller does not use the returned value of the function. */
2273 static bool
2274 gimple_fold_builtin_snprintf (gimple_stmt_iterator *gsi)
2276 gimple_call stmt = as_a <gimple_call> (gsi_stmt (*gsi));
2277 tree dest = gimple_call_arg (stmt, 0);
2278 tree destsize = gimple_call_arg (stmt, 1);
2279 tree fmt = gimple_call_arg (stmt, 2);
2280 tree orig = NULL_TREE;
2281 const char *fmt_str = NULL;
2283 if (gimple_call_num_args (stmt) > 4)
2284 return false;
2286 if (gimple_call_num_args (stmt) == 4)
2287 orig = gimple_call_arg (stmt, 3);
2289 if (!tree_fits_uhwi_p (destsize))
2290 return false;
2291 unsigned HOST_WIDE_INT destlen = tree_to_uhwi (destsize);
2293 /* Check whether the format is a literal string constant. */
2294 fmt_str = c_getstr (fmt);
2295 if (fmt_str == NULL)
2296 return false;
2298 if (!init_target_chars ())
2299 return false;
2301 /* If the format doesn't contain % args or %%, use strcpy. */
2302 if (strchr (fmt_str, target_percent) == NULL)
2304 tree fn = builtin_decl_implicit (BUILT_IN_STRCPY);
2305 if (!fn)
2306 return false;
2308 /* Don't optimize snprintf (buf, 4, "abc", ptr++). */
2309 if (orig)
2310 return false;
2312 /* We could expand this as
2313 memcpy (str, fmt, cst - 1); str[cst - 1] = '\0';
2314 or to
2315 memcpy (str, fmt_with_nul_at_cstm1, cst);
2316 but in the former case that might increase code size
2317 and in the latter case grow .rodata section too much.
2318 So punt for now. */
2319 size_t len = strlen (fmt_str);
2320 if (len >= destlen)
2321 return false;
2323 gimple_seq stmts = NULL;
2324 gimple repl = gimple_build_call (fn, 2, dest, fmt);
2325 gimple_seq_add_stmt_without_update (&stmts, repl);
2326 if (gimple_call_lhs (stmt))
2328 repl = gimple_build_assign (gimple_call_lhs (stmt),
2329 build_int_cst (integer_type_node, len));
2330 gimple_seq_add_stmt_without_update (&stmts, repl);
2331 gsi_replace_with_seq_vops (gsi, stmts);
2332 /* gsi now points at the assignment to the lhs, get a
2333 stmt iterator to the memcpy call.
2334 ??? We can't use gsi_for_stmt as that doesn't work when the
2335 CFG isn't built yet. */
2336 gimple_stmt_iterator gsi2 = *gsi;
2337 gsi_prev (&gsi2);
2338 fold_stmt (&gsi2);
2340 else
2342 gsi_replace_with_seq_vops (gsi, stmts);
2343 fold_stmt (gsi);
2345 return true;
2348 /* If the format is "%s", use strcpy if the result isn't used. */
2349 else if (fmt_str && strcmp (fmt_str, target_percent_s) == 0)
2351 tree fn = builtin_decl_implicit (BUILT_IN_STRCPY);
2352 if (!fn)
2353 return false;
2355 /* Don't crash on snprintf (str1, cst, "%s"). */
2356 if (!orig)
2357 return false;
2359 tree orig_len = get_maxval_strlen (orig, 0);
2360 if (!orig_len)
2361 return false;
2363 /* We could expand this as
2364 memcpy (str1, str2, cst - 1); str1[cst - 1] = '\0';
2365 or to
2366 memcpy (str1, str2_with_nul_at_cstm1, cst);
2367 but in the former case that might increase code size
2368 and in the latter case grow .rodata section too much.
2369 So punt for now. */
2370 if (compare_tree_int (orig_len, destlen) >= 0)
2371 return false;
2373 /* Convert snprintf (str1, cst, "%s", str2) into
2374 strcpy (str1, str2) if strlen (str2) < cst. */
2375 gimple_seq stmts = NULL;
2376 gimple repl = gimple_build_call (fn, 2, dest, orig);
2377 gimple_seq_add_stmt_without_update (&stmts, repl);
2378 if (gimple_call_lhs (stmt))
2380 if (!useless_type_conversion_p (integer_type_node,
2381 TREE_TYPE (orig_len)))
2382 orig_len = fold_convert (integer_type_node, orig_len);
2383 repl = gimple_build_assign (gimple_call_lhs (stmt), orig_len);
2384 gimple_seq_add_stmt_without_update (&stmts, repl);
2385 gsi_replace_with_seq_vops (gsi, stmts);
2386 /* gsi now points at the assignment to the lhs, get a
2387 stmt iterator to the memcpy call.
2388 ??? We can't use gsi_for_stmt as that doesn't work when the
2389 CFG isn't built yet. */
2390 gimple_stmt_iterator gsi2 = *gsi;
2391 gsi_prev (&gsi2);
2392 fold_stmt (&gsi2);
2394 else
2396 gsi_replace_with_seq_vops (gsi, stmts);
2397 fold_stmt (gsi);
2399 return true;
2401 return false;
2405 /* Fold a call to __builtin_strlen with known length LEN. */
2407 static bool
2408 gimple_fold_builtin_strlen (gimple_stmt_iterator *gsi)
2410 gimple stmt = gsi_stmt (*gsi);
2411 tree len = get_maxval_strlen (gimple_call_arg (stmt, 0), 0);
2412 if (!len)
2413 return false;
2414 len = force_gimple_operand_gsi (gsi, len, true, NULL, true, GSI_SAME_STMT);
2415 replace_call_with_value (gsi, len);
2416 return true;
2420 /* Fold the non-target builtin at *GSI and return whether any simplification
2421 was made. */
2423 static bool
2424 gimple_fold_builtin (gimple_stmt_iterator *gsi)
2426 gimple_call stmt = as_a <gimple_call >(gsi_stmt (*gsi));
2427 tree callee = gimple_call_fndecl (stmt);
2429 /* Give up for always_inline inline builtins until they are
2430 inlined. */
2431 if (avoid_folding_inline_builtin (callee))
2432 return false;
2434 switch (DECL_FUNCTION_CODE (callee))
2436 case BUILT_IN_BZERO:
2437 return gimple_fold_builtin_memset (gsi, integer_zero_node,
2438 gimple_call_arg (stmt, 1));
2439 case BUILT_IN_MEMSET:
2440 return gimple_fold_builtin_memset (gsi,
2441 gimple_call_arg (stmt, 1),
2442 gimple_call_arg (stmt, 2));
2443 case BUILT_IN_BCOPY:
2444 return gimple_fold_builtin_memory_op (gsi, gimple_call_arg (stmt, 1),
2445 gimple_call_arg (stmt, 0), 3);
2446 case BUILT_IN_MEMCPY:
2447 return gimple_fold_builtin_memory_op (gsi, gimple_call_arg (stmt, 0),
2448 gimple_call_arg (stmt, 1), 0);
2449 case BUILT_IN_MEMPCPY:
2450 return gimple_fold_builtin_memory_op (gsi, gimple_call_arg (stmt, 0),
2451 gimple_call_arg (stmt, 1), 1);
2452 case BUILT_IN_MEMMOVE:
2453 return gimple_fold_builtin_memory_op (gsi, gimple_call_arg (stmt, 0),
2454 gimple_call_arg (stmt, 1), 3);
2455 case BUILT_IN_SPRINTF_CHK:
2456 case BUILT_IN_VSPRINTF_CHK:
2457 return gimple_fold_builtin_sprintf_chk (gsi, DECL_FUNCTION_CODE (callee));
2458 case BUILT_IN_STRCAT_CHK:
2459 return gimple_fold_builtin_strcat_chk (gsi);
2460 case BUILT_IN_STRLEN:
2461 return gimple_fold_builtin_strlen (gsi);
2462 case BUILT_IN_STRCPY:
2463 return gimple_fold_builtin_strcpy (gsi,
2464 gimple_call_arg (stmt, 0),
2465 gimple_call_arg (stmt, 1));
2466 case BUILT_IN_STRNCPY:
2467 return gimple_fold_builtin_strncpy (gsi,
2468 gimple_call_arg (stmt, 0),
2469 gimple_call_arg (stmt, 1),
2470 gimple_call_arg (stmt, 2));
2471 case BUILT_IN_STRCAT:
2472 return gimple_fold_builtin_strcat (gsi, gimple_call_arg (stmt, 0),
2473 gimple_call_arg (stmt, 1));
2474 case BUILT_IN_FPUTS:
2475 return gimple_fold_builtin_fputs (gsi, gimple_call_arg (stmt, 0),
2476 gimple_call_arg (stmt, 1), false);
2477 case BUILT_IN_FPUTS_UNLOCKED:
2478 return gimple_fold_builtin_fputs (gsi, gimple_call_arg (stmt, 0),
2479 gimple_call_arg (stmt, 1), true);
2480 case BUILT_IN_MEMCPY_CHK:
2481 case BUILT_IN_MEMPCPY_CHK:
2482 case BUILT_IN_MEMMOVE_CHK:
2483 case BUILT_IN_MEMSET_CHK:
2484 return gimple_fold_builtin_memory_chk (gsi,
2485 gimple_call_arg (stmt, 0),
2486 gimple_call_arg (stmt, 1),
2487 gimple_call_arg (stmt, 2),
2488 gimple_call_arg (stmt, 3),
2489 DECL_FUNCTION_CODE (callee));
2490 case BUILT_IN_STRCPY_CHK:
2491 case BUILT_IN_STPCPY_CHK:
2492 return gimple_fold_builtin_stxcpy_chk (gsi,
2493 gimple_call_arg (stmt, 0),
2494 gimple_call_arg (stmt, 1),
2495 gimple_call_arg (stmt, 2),
2496 DECL_FUNCTION_CODE (callee));
2497 case BUILT_IN_STRNCPY_CHK:
2498 case BUILT_IN_STPNCPY_CHK:
2499 return gimple_fold_builtin_stxncpy_chk (gsi,
2500 gimple_call_arg (stmt, 0),
2501 gimple_call_arg (stmt, 1),
2502 gimple_call_arg (stmt, 2),
2503 gimple_call_arg (stmt, 3),
2504 DECL_FUNCTION_CODE (callee));
2505 case BUILT_IN_SNPRINTF_CHK:
2506 case BUILT_IN_VSNPRINTF_CHK:
2507 return gimple_fold_builtin_snprintf_chk (gsi,
2508 DECL_FUNCTION_CODE (callee));
2509 case BUILT_IN_SNPRINTF:
2510 return gimple_fold_builtin_snprintf (gsi);
2511 case BUILT_IN_SPRINTF:
2512 return gimple_fold_builtin_sprintf (gsi);
2513 default:;
2516 /* Try the generic builtin folder. */
2517 bool ignore = (gimple_call_lhs (stmt) == NULL);
2518 tree result = fold_call_stmt (stmt, ignore);
2519 if (result)
2521 if (ignore)
2522 STRIP_NOPS (result);
2523 else
2524 result = fold_convert (gimple_call_return_type (stmt), result);
2525 if (!update_call_from_tree (gsi, result))
2526 gimplify_and_update_call_from_tree (gsi, result);
2527 return true;
2530 return false;
2533 /* Attempt to fold a call statement referenced by the statement iterator GSI.
2534 The statement may be replaced by another statement, e.g., if the call
2535 simplifies to a constant value. Return true if any changes were made.
2536 It is assumed that the operands have been previously folded. */
2538 static bool
2539 gimple_fold_call (gimple_stmt_iterator *gsi, bool inplace)
2541 gimple_call stmt = as_a <gimple_call> (gsi_stmt (*gsi));
2542 tree callee;
2543 bool changed = false;
2544 unsigned i;
2546 /* Fold *& in call arguments. */
2547 for (i = 0; i < gimple_call_num_args (stmt); ++i)
2548 if (REFERENCE_CLASS_P (gimple_call_arg (stmt, i)))
2550 tree tmp = maybe_fold_reference (gimple_call_arg (stmt, i), false);
2551 if (tmp)
2553 gimple_call_set_arg (stmt, i, tmp);
2554 changed = true;
2558 /* Check for virtual calls that became direct calls. */
2559 callee = gimple_call_fn (stmt);
2560 if (callee && TREE_CODE (callee) == OBJ_TYPE_REF)
2562 if (gimple_call_addr_fndecl (OBJ_TYPE_REF_EXPR (callee)) != NULL_TREE)
2564 if (dump_file && virtual_method_call_p (callee)
2565 && !possible_polymorphic_call_target_p
2566 (callee, stmt, cgraph_node::get (gimple_call_addr_fndecl
2567 (OBJ_TYPE_REF_EXPR (callee)))))
2569 fprintf (dump_file,
2570 "Type inheritance inconsistent devirtualization of ");
2571 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
2572 fprintf (dump_file, " to ");
2573 print_generic_expr (dump_file, callee, TDF_SLIM);
2574 fprintf (dump_file, "\n");
2577 gimple_call_set_fn (stmt, OBJ_TYPE_REF_EXPR (callee));
2578 changed = true;
2580 else if (flag_devirtualize && !inplace && virtual_method_call_p (callee))
2582 bool final;
2583 vec <cgraph_node *>targets
2584 = possible_polymorphic_call_targets (callee, stmt, &final);
2585 if (final && targets.length () <= 1 && dbg_cnt (devirt))
2587 tree lhs = gimple_call_lhs (stmt);
2588 if (dump_enabled_p ())
2590 location_t loc = gimple_location_safe (stmt);
2591 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
2592 "folding virtual function call to %s\n",
2593 targets.length () == 1
2594 ? targets[0]->name ()
2595 : "__builtin_unreachable");
2597 if (targets.length () == 1)
2599 gimple_call_set_fndecl (stmt, targets[0]->decl);
2600 changed = true;
2601 /* If the call becomes noreturn, remove the lhs. */
2602 if (lhs && (gimple_call_flags (stmt) & ECF_NORETURN))
2604 if (TREE_CODE (lhs) == SSA_NAME)
2606 tree var = create_tmp_var (TREE_TYPE (lhs), NULL);
2607 tree def = get_or_create_ssa_default_def (cfun, var);
2608 gimple new_stmt = gimple_build_assign (lhs, def);
2609 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
2611 gimple_call_set_lhs (stmt, NULL_TREE);
2614 else
2616 tree fndecl = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
2617 gimple new_stmt = gimple_build_call (fndecl, 0);
2618 gimple_set_location (new_stmt, gimple_location (stmt));
2619 if (lhs && TREE_CODE (lhs) == SSA_NAME)
2621 tree var = create_tmp_var (TREE_TYPE (lhs), NULL);
2622 tree def = get_or_create_ssa_default_def (cfun, var);
2624 /* To satisfy condition for
2625 cgraph_update_edges_for_call_stmt_node,
2626 we need to preserve GIMPLE_CALL statement
2627 at position of GSI iterator. */
2628 update_call_from_tree (gsi, def);
2629 gsi_insert_before (gsi, new_stmt, GSI_NEW_STMT);
2631 else
2632 gsi_replace (gsi, new_stmt, true);
2633 return true;
2639 if (inplace)
2640 return changed;
2642 /* Check for builtins that CCP can handle using information not
2643 available in the generic fold routines. */
2644 if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
2646 if (gimple_fold_builtin (gsi))
2647 changed = true;
2649 else if (gimple_call_builtin_p (stmt, BUILT_IN_MD))
2651 changed |= targetm.gimple_fold_builtin (gsi);
2653 else if (gimple_call_internal_p (stmt))
2655 enum tree_code subcode = ERROR_MARK;
2656 tree result = NULL_TREE;
2657 switch (gimple_call_internal_fn (stmt))
2659 case IFN_BUILTIN_EXPECT:
2660 result = fold_builtin_expect (gimple_location (stmt),
2661 gimple_call_arg (stmt, 0),
2662 gimple_call_arg (stmt, 1),
2663 gimple_call_arg (stmt, 2));
2664 break;
2665 case IFN_UBSAN_OBJECT_SIZE:
2666 if (integer_all_onesp (gimple_call_arg (stmt, 2))
2667 || (TREE_CODE (gimple_call_arg (stmt, 1)) == INTEGER_CST
2668 && TREE_CODE (gimple_call_arg (stmt, 2)) == INTEGER_CST
2669 && tree_int_cst_le (gimple_call_arg (stmt, 1),
2670 gimple_call_arg (stmt, 2))))
2672 gsi_replace (gsi, gimple_build_nop (), true);
2673 unlink_stmt_vdef (stmt);
2674 release_defs (stmt);
2675 return true;
2677 break;
2678 case IFN_UBSAN_CHECK_ADD:
2679 subcode = PLUS_EXPR;
2680 break;
2681 case IFN_UBSAN_CHECK_SUB:
2682 subcode = MINUS_EXPR;
2683 break;
2684 case IFN_UBSAN_CHECK_MUL:
2685 subcode = MULT_EXPR;
2686 break;
2687 default:
2688 break;
2690 if (subcode != ERROR_MARK)
2692 tree arg0 = gimple_call_arg (stmt, 0);
2693 tree arg1 = gimple_call_arg (stmt, 1);
2694 /* x = y + 0; x = y - 0; x = y * 0; */
2695 if (integer_zerop (arg1))
2696 result = subcode == MULT_EXPR
2697 ? build_zero_cst (TREE_TYPE (arg0))
2698 : arg0;
2699 /* x = 0 + y; x = 0 * y; */
2700 else if (subcode != MINUS_EXPR && integer_zerop (arg0))
2701 result = subcode == MULT_EXPR
2702 ? build_zero_cst (TREE_TYPE (arg0))
2703 : arg1;
2704 /* x = y - y; */
2705 else if (subcode == MINUS_EXPR && operand_equal_p (arg0, arg1, 0))
2706 result = build_zero_cst (TREE_TYPE (arg0));
2707 /* x = y * 1; x = 1 * y; */
2708 else if (subcode == MULT_EXPR)
2710 if (integer_onep (arg1))
2711 result = arg0;
2712 else if (integer_onep (arg0))
2713 result = arg1;
2716 if (result)
2718 if (!update_call_from_tree (gsi, result))
2719 gimplify_and_update_call_from_tree (gsi, result);
2720 changed = true;
2724 return changed;
2727 /* Canonicalize MEM_REFs invariant address operand after propagation. */
2729 static bool
2730 maybe_canonicalize_mem_ref_addr (tree *t)
2732 bool res = false;
2734 if (TREE_CODE (*t) == ADDR_EXPR)
2735 t = &TREE_OPERAND (*t, 0);
2737 while (handled_component_p (*t))
2738 t = &TREE_OPERAND (*t, 0);
2740 /* Canonicalize MEM [&foo.bar, 0] which appears after propagating
2741 of invariant addresses into a SSA name MEM_REF address. */
2742 if (TREE_CODE (*t) == MEM_REF
2743 || TREE_CODE (*t) == TARGET_MEM_REF)
2745 tree addr = TREE_OPERAND (*t, 0);
2746 if (TREE_CODE (addr) == ADDR_EXPR
2747 && (TREE_CODE (TREE_OPERAND (addr, 0)) == MEM_REF
2748 || handled_component_p (TREE_OPERAND (addr, 0))))
2750 tree base;
2751 HOST_WIDE_INT coffset;
2752 base = get_addr_base_and_unit_offset (TREE_OPERAND (addr, 0),
2753 &coffset);
2754 if (!base)
2755 gcc_unreachable ();
2757 TREE_OPERAND (*t, 0) = build_fold_addr_expr (base);
2758 TREE_OPERAND (*t, 1) = int_const_binop (PLUS_EXPR,
2759 TREE_OPERAND (*t, 1),
2760 size_int (coffset));
2761 res = true;
2763 gcc_checking_assert (TREE_CODE (TREE_OPERAND (*t, 0)) == DEBUG_EXPR_DECL
2764 || is_gimple_mem_ref_addr (TREE_OPERAND (*t, 0)));
2767 /* Canonicalize back MEM_REFs to plain reference trees if the object
2768 accessed is a decl that has the same access semantics as the MEM_REF. */
2769 if (TREE_CODE (*t) == MEM_REF
2770 && TREE_CODE (TREE_OPERAND (*t, 0)) == ADDR_EXPR
2771 && integer_zerop (TREE_OPERAND (*t, 1)))
2773 tree decl = TREE_OPERAND (TREE_OPERAND (*t, 0), 0);
2774 tree alias_type = TREE_TYPE (TREE_OPERAND (*t, 1));
2775 if (/* Same volatile qualification. */
2776 TREE_THIS_VOLATILE (*t) == TREE_THIS_VOLATILE (decl)
2777 /* Same TBAA behavior with -fstrict-aliasing. */
2778 && !TYPE_REF_CAN_ALIAS_ALL (alias_type)
2779 && (TYPE_MAIN_VARIANT (TREE_TYPE (decl))
2780 == TYPE_MAIN_VARIANT (TREE_TYPE (alias_type)))
2781 /* Same alignment. */
2782 && TYPE_ALIGN (TREE_TYPE (decl)) == TYPE_ALIGN (TREE_TYPE (*t))
2783 /* We have to look out here to not drop a required conversion
2784 from the rhs to the lhs if *t appears on the lhs or vice-versa
2785 if it appears on the rhs. Thus require strict type
2786 compatibility. */
2787 && types_compatible_p (TREE_TYPE (*t), TREE_TYPE (decl)))
2789 *t = TREE_OPERAND (TREE_OPERAND (*t, 0), 0);
2790 res = true;
2794 /* Canonicalize TARGET_MEM_REF in particular with respect to
2795 the indexes becoming constant. */
2796 else if (TREE_CODE (*t) == TARGET_MEM_REF)
2798 tree tem = maybe_fold_tmr (*t);
2799 if (tem)
2801 *t = tem;
2802 res = true;
2806 return res;
2809 /* Worker for both fold_stmt and fold_stmt_inplace. The INPLACE argument
2810 distinguishes both cases. */
2812 static bool
2813 fold_stmt_1 (gimple_stmt_iterator *gsi, bool inplace)
2815 bool changed = false;
2816 gimple stmt = gsi_stmt (*gsi);
2817 unsigned i;
2819 /* First do required canonicalization of [TARGET_]MEM_REF addresses
2820 after propagation.
2821 ??? This shouldn't be done in generic folding but in the
2822 propagation helpers which also know whether an address was
2823 propagated. */
2824 switch (gimple_code (stmt))
2826 case GIMPLE_ASSIGN:
2827 if (gimple_assign_rhs_class (stmt) == GIMPLE_SINGLE_RHS)
2829 tree *rhs = gimple_assign_rhs1_ptr (stmt);
2830 if ((REFERENCE_CLASS_P (*rhs)
2831 || TREE_CODE (*rhs) == ADDR_EXPR)
2832 && maybe_canonicalize_mem_ref_addr (rhs))
2833 changed = true;
2834 tree *lhs = gimple_assign_lhs_ptr (stmt);
2835 if (REFERENCE_CLASS_P (*lhs)
2836 && maybe_canonicalize_mem_ref_addr (lhs))
2837 changed = true;
2839 break;
2840 case GIMPLE_CALL:
2842 for (i = 0; i < gimple_call_num_args (stmt); ++i)
2844 tree *arg = gimple_call_arg_ptr (stmt, i);
2845 if (REFERENCE_CLASS_P (*arg)
2846 && maybe_canonicalize_mem_ref_addr (arg))
2847 changed = true;
2849 tree *lhs = gimple_call_lhs_ptr (stmt);
2850 if (*lhs
2851 && REFERENCE_CLASS_P (*lhs)
2852 && maybe_canonicalize_mem_ref_addr (lhs))
2853 changed = true;
2854 break;
2856 case GIMPLE_ASM:
2858 gimple_asm asm_stmt = as_a <gimple_asm> (stmt);
2859 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
2861 tree link = gimple_asm_output_op (asm_stmt, i);
2862 tree op = TREE_VALUE (link);
2863 if (REFERENCE_CLASS_P (op)
2864 && maybe_canonicalize_mem_ref_addr (&TREE_VALUE (link)))
2865 changed = true;
2867 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
2869 tree link = gimple_asm_input_op (asm_stmt, i);
2870 tree op = TREE_VALUE (link);
2871 if ((REFERENCE_CLASS_P (op)
2872 || TREE_CODE (op) == ADDR_EXPR)
2873 && maybe_canonicalize_mem_ref_addr (&TREE_VALUE (link)))
2874 changed = true;
2877 break;
2878 case GIMPLE_DEBUG:
2879 if (gimple_debug_bind_p (stmt))
2881 tree *val = gimple_debug_bind_get_value_ptr (stmt);
2882 if (*val
2883 && (REFERENCE_CLASS_P (*val)
2884 || TREE_CODE (*val) == ADDR_EXPR)
2885 && maybe_canonicalize_mem_ref_addr (val))
2886 changed = true;
2888 break;
2889 default:;
2892 /* Fold the main computation performed by the statement. */
2893 switch (gimple_code (stmt))
2895 case GIMPLE_ASSIGN:
2897 unsigned old_num_ops = gimple_num_ops (stmt);
2898 enum tree_code subcode = gimple_assign_rhs_code (stmt);
2899 tree lhs = gimple_assign_lhs (stmt);
2900 tree new_rhs;
2901 /* First canonicalize operand order. This avoids building new
2902 trees if this is the only thing fold would later do. */
2903 if ((commutative_tree_code (subcode)
2904 || commutative_ternary_tree_code (subcode))
2905 && tree_swap_operands_p (gimple_assign_rhs1 (stmt),
2906 gimple_assign_rhs2 (stmt), false))
2908 tree tem = gimple_assign_rhs1 (stmt);
2909 gimple_assign_set_rhs1 (stmt, gimple_assign_rhs2 (stmt));
2910 gimple_assign_set_rhs2 (stmt, tem);
2911 changed = true;
2913 new_rhs = fold_gimple_assign (gsi);
2914 if (new_rhs
2915 && !useless_type_conversion_p (TREE_TYPE (lhs),
2916 TREE_TYPE (new_rhs)))
2917 new_rhs = fold_convert (TREE_TYPE (lhs), new_rhs);
2918 if (new_rhs
2919 && (!inplace
2920 || get_gimple_rhs_num_ops (TREE_CODE (new_rhs)) < old_num_ops))
2922 gimple_assign_set_rhs_from_tree (gsi, new_rhs);
2923 changed = true;
2925 break;
2928 case GIMPLE_COND:
2929 changed |= fold_gimple_cond (as_a <gimple_cond> (stmt));
2930 break;
2932 case GIMPLE_CALL:
2933 changed |= gimple_fold_call (gsi, inplace);
2934 break;
2936 case GIMPLE_ASM:
2937 /* Fold *& in asm operands. */
2939 gimple_asm asm_stmt = as_a <gimple_asm> (stmt);
2940 size_t noutputs;
2941 const char **oconstraints;
2942 const char *constraint;
2943 bool allows_mem, allows_reg;
2945 noutputs = gimple_asm_noutputs (asm_stmt);
2946 oconstraints = XALLOCAVEC (const char *, noutputs);
2948 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
2950 tree link = gimple_asm_output_op (asm_stmt, i);
2951 tree op = TREE_VALUE (link);
2952 oconstraints[i]
2953 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
2954 if (REFERENCE_CLASS_P (op)
2955 && (op = maybe_fold_reference (op, true)) != NULL_TREE)
2957 TREE_VALUE (link) = op;
2958 changed = true;
2961 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
2963 tree link = gimple_asm_input_op (asm_stmt, i);
2964 tree op = TREE_VALUE (link);
2965 constraint
2966 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
2967 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
2968 oconstraints, &allows_mem, &allows_reg);
2969 if (REFERENCE_CLASS_P (op)
2970 && (op = maybe_fold_reference (op, !allows_reg && allows_mem))
2971 != NULL_TREE)
2973 TREE_VALUE (link) = op;
2974 changed = true;
2978 break;
2980 case GIMPLE_DEBUG:
2981 if (gimple_debug_bind_p (stmt))
2983 tree val = gimple_debug_bind_get_value (stmt);
2984 if (val
2985 && REFERENCE_CLASS_P (val))
2987 tree tem = maybe_fold_reference (val, false);
2988 if (tem)
2990 gimple_debug_bind_set_value (stmt, tem);
2991 changed = true;
2994 else if (val
2995 && TREE_CODE (val) == ADDR_EXPR)
2997 tree ref = TREE_OPERAND (val, 0);
2998 tree tem = maybe_fold_reference (ref, false);
2999 if (tem)
3001 tem = build_fold_addr_expr_with_type (tem, TREE_TYPE (val));
3002 gimple_debug_bind_set_value (stmt, tem);
3003 changed = true;
3007 break;
3009 default:;
3012 stmt = gsi_stmt (*gsi);
3014 /* Fold *& on the lhs. */
3015 if (gimple_has_lhs (stmt))
3017 tree lhs = gimple_get_lhs (stmt);
3018 if (lhs && REFERENCE_CLASS_P (lhs))
3020 tree new_lhs = maybe_fold_reference (lhs, true);
3021 if (new_lhs)
3023 gimple_set_lhs (stmt, new_lhs);
3024 changed = true;
3029 return changed;
3032 /* Fold the statement pointed to by GSI. In some cases, this function may
3033 replace the whole statement with a new one. Returns true iff folding
3034 makes any changes.
3035 The statement pointed to by GSI should be in valid gimple form but may
3036 be in unfolded state as resulting from for example constant propagation
3037 which can produce *&x = 0. */
3039 bool
3040 fold_stmt (gimple_stmt_iterator *gsi)
3042 return fold_stmt_1 (gsi, false);
3045 /* Perform the minimal folding on statement *GSI. Only operations like
3046 *&x created by constant propagation are handled. The statement cannot
3047 be replaced with a new one. Return true if the statement was
3048 changed, false otherwise.
3049 The statement *GSI should be in valid gimple form but may
3050 be in unfolded state as resulting from for example constant propagation
3051 which can produce *&x = 0. */
3053 bool
3054 fold_stmt_inplace (gimple_stmt_iterator *gsi)
3056 gimple stmt = gsi_stmt (*gsi);
3057 bool changed = fold_stmt_1 (gsi, true);
3058 gcc_assert (gsi_stmt (*gsi) == stmt);
3059 return changed;
3062 /* Canonicalize and possibly invert the boolean EXPR; return NULL_TREE
3063 if EXPR is null or we don't know how.
3064 If non-null, the result always has boolean type. */
3066 static tree
3067 canonicalize_bool (tree expr, bool invert)
3069 if (!expr)
3070 return NULL_TREE;
3071 else if (invert)
3073 if (integer_nonzerop (expr))
3074 return boolean_false_node;
3075 else if (integer_zerop (expr))
3076 return boolean_true_node;
3077 else if (TREE_CODE (expr) == SSA_NAME)
3078 return fold_build2 (EQ_EXPR, boolean_type_node, expr,
3079 build_int_cst (TREE_TYPE (expr), 0));
3080 else if (TREE_CODE_CLASS (TREE_CODE (expr)) == tcc_comparison)
3081 return fold_build2 (invert_tree_comparison (TREE_CODE (expr), false),
3082 boolean_type_node,
3083 TREE_OPERAND (expr, 0),
3084 TREE_OPERAND (expr, 1));
3085 else
3086 return NULL_TREE;
3088 else
3090 if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE)
3091 return expr;
3092 if (integer_nonzerop (expr))
3093 return boolean_true_node;
3094 else if (integer_zerop (expr))
3095 return boolean_false_node;
3096 else if (TREE_CODE (expr) == SSA_NAME)
3097 return fold_build2 (NE_EXPR, boolean_type_node, expr,
3098 build_int_cst (TREE_TYPE (expr), 0));
3099 else if (TREE_CODE_CLASS (TREE_CODE (expr)) == tcc_comparison)
3100 return fold_build2 (TREE_CODE (expr),
3101 boolean_type_node,
3102 TREE_OPERAND (expr, 0),
3103 TREE_OPERAND (expr, 1));
3104 else
3105 return NULL_TREE;
3109 /* Check to see if a boolean expression EXPR is logically equivalent to the
3110 comparison (OP1 CODE OP2). Check for various identities involving
3111 SSA_NAMEs. */
3113 static bool
3114 same_bool_comparison_p (const_tree expr, enum tree_code code,
3115 const_tree op1, const_tree op2)
3117 gimple s;
3119 /* The obvious case. */
3120 if (TREE_CODE (expr) == code
3121 && operand_equal_p (TREE_OPERAND (expr, 0), op1, 0)
3122 && operand_equal_p (TREE_OPERAND (expr, 1), op2, 0))
3123 return true;
3125 /* Check for comparing (name, name != 0) and the case where expr
3126 is an SSA_NAME with a definition matching the comparison. */
3127 if (TREE_CODE (expr) == SSA_NAME
3128 && TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE)
3130 if (operand_equal_p (expr, op1, 0))
3131 return ((code == NE_EXPR && integer_zerop (op2))
3132 || (code == EQ_EXPR && integer_nonzerop (op2)));
3133 s = SSA_NAME_DEF_STMT (expr);
3134 if (is_gimple_assign (s)
3135 && gimple_assign_rhs_code (s) == code
3136 && operand_equal_p (gimple_assign_rhs1 (s), op1, 0)
3137 && operand_equal_p (gimple_assign_rhs2 (s), op2, 0))
3138 return true;
3141 /* If op1 is of the form (name != 0) or (name == 0), and the definition
3142 of name is a comparison, recurse. */
3143 if (TREE_CODE (op1) == SSA_NAME
3144 && TREE_CODE (TREE_TYPE (op1)) == BOOLEAN_TYPE)
3146 s = SSA_NAME_DEF_STMT (op1);
3147 if (is_gimple_assign (s)
3148 && TREE_CODE_CLASS (gimple_assign_rhs_code (s)) == tcc_comparison)
3150 enum tree_code c = gimple_assign_rhs_code (s);
3151 if ((c == NE_EXPR && integer_zerop (op2))
3152 || (c == EQ_EXPR && integer_nonzerop (op2)))
3153 return same_bool_comparison_p (expr, c,
3154 gimple_assign_rhs1 (s),
3155 gimple_assign_rhs2 (s));
3156 if ((c == EQ_EXPR && integer_zerop (op2))
3157 || (c == NE_EXPR && integer_nonzerop (op2)))
3158 return same_bool_comparison_p (expr,
3159 invert_tree_comparison (c, false),
3160 gimple_assign_rhs1 (s),
3161 gimple_assign_rhs2 (s));
3164 return false;
3167 /* Check to see if two boolean expressions OP1 and OP2 are logically
3168 equivalent. */
3170 static bool
3171 same_bool_result_p (const_tree op1, const_tree op2)
3173 /* Simple cases first. */
3174 if (operand_equal_p (op1, op2, 0))
3175 return true;
3177 /* Check the cases where at least one of the operands is a comparison.
3178 These are a bit smarter than operand_equal_p in that they apply some
3179 identifies on SSA_NAMEs. */
3180 if (TREE_CODE_CLASS (TREE_CODE (op2)) == tcc_comparison
3181 && same_bool_comparison_p (op1, TREE_CODE (op2),
3182 TREE_OPERAND (op2, 0),
3183 TREE_OPERAND (op2, 1)))
3184 return true;
3185 if (TREE_CODE_CLASS (TREE_CODE (op1)) == tcc_comparison
3186 && same_bool_comparison_p (op2, TREE_CODE (op1),
3187 TREE_OPERAND (op1, 0),
3188 TREE_OPERAND (op1, 1)))
3189 return true;
3191 /* Default case. */
3192 return false;
3195 /* Forward declarations for some mutually recursive functions. */
3197 static tree
3198 and_comparisons_1 (enum tree_code code1, tree op1a, tree op1b,
3199 enum tree_code code2, tree op2a, tree op2b);
3200 static tree
3201 and_var_with_comparison (tree var, bool invert,
3202 enum tree_code code2, tree op2a, tree op2b);
3203 static tree
3204 and_var_with_comparison_1 (gimple stmt,
3205 enum tree_code code2, tree op2a, tree op2b);
3206 static tree
3207 or_comparisons_1 (enum tree_code code1, tree op1a, tree op1b,
3208 enum tree_code code2, tree op2a, tree op2b);
3209 static tree
3210 or_var_with_comparison (tree var, bool invert,
3211 enum tree_code code2, tree op2a, tree op2b);
3212 static tree
3213 or_var_with_comparison_1 (gimple stmt,
3214 enum tree_code code2, tree op2a, tree op2b);
3216 /* Helper function for and_comparisons_1: try to simplify the AND of the
3217 ssa variable VAR with the comparison specified by (OP2A CODE2 OP2B).
3218 If INVERT is true, invert the value of the VAR before doing the AND.
3219 Return NULL_EXPR if we can't simplify this to a single expression. */
3221 static tree
3222 and_var_with_comparison (tree var, bool invert,
3223 enum tree_code code2, tree op2a, tree op2b)
3225 tree t;
3226 gimple stmt = SSA_NAME_DEF_STMT (var);
3228 /* We can only deal with variables whose definitions are assignments. */
3229 if (!is_gimple_assign (stmt))
3230 return NULL_TREE;
3232 /* If we have an inverted comparison, apply DeMorgan's law and rewrite
3233 !var AND (op2a code2 op2b) => !(var OR !(op2a code2 op2b))
3234 Then we only have to consider the simpler non-inverted cases. */
3235 if (invert)
3236 t = or_var_with_comparison_1 (stmt,
3237 invert_tree_comparison (code2, false),
3238 op2a, op2b);
3239 else
3240 t = and_var_with_comparison_1 (stmt, code2, op2a, op2b);
3241 return canonicalize_bool (t, invert);
3244 /* Try to simplify the AND of the ssa variable defined by the assignment
3245 STMT with the comparison specified by (OP2A CODE2 OP2B).
3246 Return NULL_EXPR if we can't simplify this to a single expression. */
3248 static tree
3249 and_var_with_comparison_1 (gimple stmt,
3250 enum tree_code code2, tree op2a, tree op2b)
3252 tree var = gimple_assign_lhs (stmt);
3253 tree true_test_var = NULL_TREE;
3254 tree false_test_var = NULL_TREE;
3255 enum tree_code innercode = gimple_assign_rhs_code (stmt);
3257 /* Check for identities like (var AND (var == 0)) => false. */
3258 if (TREE_CODE (op2a) == SSA_NAME
3259 && TREE_CODE (TREE_TYPE (var)) == BOOLEAN_TYPE)
3261 if ((code2 == NE_EXPR && integer_zerop (op2b))
3262 || (code2 == EQ_EXPR && integer_nonzerop (op2b)))
3264 true_test_var = op2a;
3265 if (var == true_test_var)
3266 return var;
3268 else if ((code2 == EQ_EXPR && integer_zerop (op2b))
3269 || (code2 == NE_EXPR && integer_nonzerop (op2b)))
3271 false_test_var = op2a;
3272 if (var == false_test_var)
3273 return boolean_false_node;
3277 /* If the definition is a comparison, recurse on it. */
3278 if (TREE_CODE_CLASS (innercode) == tcc_comparison)
3280 tree t = and_comparisons_1 (innercode,
3281 gimple_assign_rhs1 (stmt),
3282 gimple_assign_rhs2 (stmt),
3283 code2,
3284 op2a,
3285 op2b);
3286 if (t)
3287 return t;
3290 /* If the definition is an AND or OR expression, we may be able to
3291 simplify by reassociating. */
3292 if (TREE_CODE (TREE_TYPE (var)) == BOOLEAN_TYPE
3293 && (innercode == BIT_AND_EXPR || innercode == BIT_IOR_EXPR))
3295 tree inner1 = gimple_assign_rhs1 (stmt);
3296 tree inner2 = gimple_assign_rhs2 (stmt);
3297 gimple s;
3298 tree t;
3299 tree partial = NULL_TREE;
3300 bool is_and = (innercode == BIT_AND_EXPR);
3302 /* Check for boolean identities that don't require recursive examination
3303 of inner1/inner2:
3304 inner1 AND (inner1 AND inner2) => inner1 AND inner2 => var
3305 inner1 AND (inner1 OR inner2) => inner1
3306 !inner1 AND (inner1 AND inner2) => false
3307 !inner1 AND (inner1 OR inner2) => !inner1 AND inner2
3308 Likewise for similar cases involving inner2. */
3309 if (inner1 == true_test_var)
3310 return (is_and ? var : inner1);
3311 else if (inner2 == true_test_var)
3312 return (is_and ? var : inner2);
3313 else if (inner1 == false_test_var)
3314 return (is_and
3315 ? boolean_false_node
3316 : and_var_with_comparison (inner2, false, code2, op2a, op2b));
3317 else if (inner2 == false_test_var)
3318 return (is_and
3319 ? boolean_false_node
3320 : and_var_with_comparison (inner1, false, code2, op2a, op2b));
3322 /* Next, redistribute/reassociate the AND across the inner tests.
3323 Compute the first partial result, (inner1 AND (op2a code op2b)) */
3324 if (TREE_CODE (inner1) == SSA_NAME
3325 && is_gimple_assign (s = SSA_NAME_DEF_STMT (inner1))
3326 && TREE_CODE_CLASS (gimple_assign_rhs_code (s)) == tcc_comparison
3327 && (t = maybe_fold_and_comparisons (gimple_assign_rhs_code (s),
3328 gimple_assign_rhs1 (s),
3329 gimple_assign_rhs2 (s),
3330 code2, op2a, op2b)))
3332 /* Handle the AND case, where we are reassociating:
3333 (inner1 AND inner2) AND (op2a code2 op2b)
3334 => (t AND inner2)
3335 If the partial result t is a constant, we win. Otherwise
3336 continue on to try reassociating with the other inner test. */
3337 if (is_and)
3339 if (integer_onep (t))
3340 return inner2;
3341 else if (integer_zerop (t))
3342 return boolean_false_node;
3345 /* Handle the OR case, where we are redistributing:
3346 (inner1 OR inner2) AND (op2a code2 op2b)
3347 => (t OR (inner2 AND (op2a code2 op2b))) */
3348 else if (integer_onep (t))
3349 return boolean_true_node;
3351 /* Save partial result for later. */
3352 partial = t;
3355 /* Compute the second partial result, (inner2 AND (op2a code op2b)) */
3356 if (TREE_CODE (inner2) == SSA_NAME
3357 && is_gimple_assign (s = SSA_NAME_DEF_STMT (inner2))
3358 && TREE_CODE_CLASS (gimple_assign_rhs_code (s)) == tcc_comparison
3359 && (t = maybe_fold_and_comparisons (gimple_assign_rhs_code (s),
3360 gimple_assign_rhs1 (s),
3361 gimple_assign_rhs2 (s),
3362 code2, op2a, op2b)))
3364 /* Handle the AND case, where we are reassociating:
3365 (inner1 AND inner2) AND (op2a code2 op2b)
3366 => (inner1 AND t) */
3367 if (is_and)
3369 if (integer_onep (t))
3370 return inner1;
3371 else if (integer_zerop (t))
3372 return boolean_false_node;
3373 /* If both are the same, we can apply the identity
3374 (x AND x) == x. */
3375 else if (partial && same_bool_result_p (t, partial))
3376 return t;
3379 /* Handle the OR case. where we are redistributing:
3380 (inner1 OR inner2) AND (op2a code2 op2b)
3381 => (t OR (inner1 AND (op2a code2 op2b)))
3382 => (t OR partial) */
3383 else
3385 if (integer_onep (t))
3386 return boolean_true_node;
3387 else if (partial)
3389 /* We already got a simplification for the other
3390 operand to the redistributed OR expression. The
3391 interesting case is when at least one is false.
3392 Or, if both are the same, we can apply the identity
3393 (x OR x) == x. */
3394 if (integer_zerop (partial))
3395 return t;
3396 else if (integer_zerop (t))
3397 return partial;
3398 else if (same_bool_result_p (t, partial))
3399 return t;
3404 return NULL_TREE;
3407 /* Try to simplify the AND of two comparisons defined by
3408 (OP1A CODE1 OP1B) and (OP2A CODE2 OP2B), respectively.
3409 If this can be done without constructing an intermediate value,
3410 return the resulting tree; otherwise NULL_TREE is returned.
3411 This function is deliberately asymmetric as it recurses on SSA_DEFs
3412 in the first comparison but not the second. */
3414 static tree
3415 and_comparisons_1 (enum tree_code code1, tree op1a, tree op1b,
3416 enum tree_code code2, tree op2a, tree op2b)
3418 tree truth_type = truth_type_for (TREE_TYPE (op1a));
3420 /* First check for ((x CODE1 y) AND (x CODE2 y)). */
3421 if (operand_equal_p (op1a, op2a, 0)
3422 && operand_equal_p (op1b, op2b, 0))
3424 /* Result will be either NULL_TREE, or a combined comparison. */
3425 tree t = combine_comparisons (UNKNOWN_LOCATION,
3426 TRUTH_ANDIF_EXPR, code1, code2,
3427 truth_type, op1a, op1b);
3428 if (t)
3429 return t;
3432 /* Likewise the swapped case of the above. */
3433 if (operand_equal_p (op1a, op2b, 0)
3434 && operand_equal_p (op1b, op2a, 0))
3436 /* Result will be either NULL_TREE, or a combined comparison. */
3437 tree t = combine_comparisons (UNKNOWN_LOCATION,
3438 TRUTH_ANDIF_EXPR, code1,
3439 swap_tree_comparison (code2),
3440 truth_type, op1a, op1b);
3441 if (t)
3442 return t;
3445 /* If both comparisons are of the same value against constants, we might
3446 be able to merge them. */
3447 if (operand_equal_p (op1a, op2a, 0)
3448 && TREE_CODE (op1b) == INTEGER_CST
3449 && TREE_CODE (op2b) == INTEGER_CST)
3451 int cmp = tree_int_cst_compare (op1b, op2b);
3453 /* If we have (op1a == op1b), we should either be able to
3454 return that or FALSE, depending on whether the constant op1b
3455 also satisfies the other comparison against op2b. */
3456 if (code1 == EQ_EXPR)
3458 bool done = true;
3459 bool val;
3460 switch (code2)
3462 case EQ_EXPR: val = (cmp == 0); break;
3463 case NE_EXPR: val = (cmp != 0); break;
3464 case LT_EXPR: val = (cmp < 0); break;
3465 case GT_EXPR: val = (cmp > 0); break;
3466 case LE_EXPR: val = (cmp <= 0); break;
3467 case GE_EXPR: val = (cmp >= 0); break;
3468 default: done = false;
3470 if (done)
3472 if (val)
3473 return fold_build2 (code1, boolean_type_node, op1a, op1b);
3474 else
3475 return boolean_false_node;
3478 /* Likewise if the second comparison is an == comparison. */
3479 else if (code2 == EQ_EXPR)
3481 bool done = true;
3482 bool val;
3483 switch (code1)
3485 case EQ_EXPR: val = (cmp == 0); break;
3486 case NE_EXPR: val = (cmp != 0); break;
3487 case LT_EXPR: val = (cmp > 0); break;
3488 case GT_EXPR: val = (cmp < 0); break;
3489 case LE_EXPR: val = (cmp >= 0); break;
3490 case GE_EXPR: val = (cmp <= 0); break;
3491 default: done = false;
3493 if (done)
3495 if (val)
3496 return fold_build2 (code2, boolean_type_node, op2a, op2b);
3497 else
3498 return boolean_false_node;
3502 /* Same business with inequality tests. */
3503 else if (code1 == NE_EXPR)
3505 bool val;
3506 switch (code2)
3508 case EQ_EXPR: val = (cmp != 0); break;
3509 case NE_EXPR: val = (cmp == 0); break;
3510 case LT_EXPR: val = (cmp >= 0); break;
3511 case GT_EXPR: val = (cmp <= 0); break;
3512 case LE_EXPR: val = (cmp > 0); break;
3513 case GE_EXPR: val = (cmp < 0); break;
3514 default:
3515 val = false;
3517 if (val)
3518 return fold_build2 (code2, boolean_type_node, op2a, op2b);
3520 else if (code2 == NE_EXPR)
3522 bool val;
3523 switch (code1)
3525 case EQ_EXPR: val = (cmp == 0); break;
3526 case NE_EXPR: val = (cmp != 0); break;
3527 case LT_EXPR: val = (cmp <= 0); break;
3528 case GT_EXPR: val = (cmp >= 0); break;
3529 case LE_EXPR: val = (cmp < 0); break;
3530 case GE_EXPR: val = (cmp > 0); break;
3531 default:
3532 val = false;
3534 if (val)
3535 return fold_build2 (code1, boolean_type_node, op1a, op1b);
3538 /* Chose the more restrictive of two < or <= comparisons. */
3539 else if ((code1 == LT_EXPR || code1 == LE_EXPR)
3540 && (code2 == LT_EXPR || code2 == LE_EXPR))
3542 if ((cmp < 0) || (cmp == 0 && code1 == LT_EXPR))
3543 return fold_build2 (code1, boolean_type_node, op1a, op1b);
3544 else
3545 return fold_build2 (code2, boolean_type_node, op2a, op2b);
3548 /* Likewise chose the more restrictive of two > or >= comparisons. */
3549 else if ((code1 == GT_EXPR || code1 == GE_EXPR)
3550 && (code2 == GT_EXPR || code2 == GE_EXPR))
3552 if ((cmp > 0) || (cmp == 0 && code1 == GT_EXPR))
3553 return fold_build2 (code1, boolean_type_node, op1a, op1b);
3554 else
3555 return fold_build2 (code2, boolean_type_node, op2a, op2b);
3558 /* Check for singleton ranges. */
3559 else if (cmp == 0
3560 && ((code1 == LE_EXPR && code2 == GE_EXPR)
3561 || (code1 == GE_EXPR && code2 == LE_EXPR)))
3562 return fold_build2 (EQ_EXPR, boolean_type_node, op1a, op2b);
3564 /* Check for disjoint ranges. */
3565 else if (cmp <= 0
3566 && (code1 == LT_EXPR || code1 == LE_EXPR)
3567 && (code2 == GT_EXPR || code2 == GE_EXPR))
3568 return boolean_false_node;
3569 else if (cmp >= 0
3570 && (code1 == GT_EXPR || code1 == GE_EXPR)
3571 && (code2 == LT_EXPR || code2 == LE_EXPR))
3572 return boolean_false_node;
3575 /* Perhaps the first comparison is (NAME != 0) or (NAME == 1) where
3576 NAME's definition is a truth value. See if there are any simplifications
3577 that can be done against the NAME's definition. */
3578 if (TREE_CODE (op1a) == SSA_NAME
3579 && (code1 == NE_EXPR || code1 == EQ_EXPR)
3580 && (integer_zerop (op1b) || integer_onep (op1b)))
3582 bool invert = ((code1 == EQ_EXPR && integer_zerop (op1b))
3583 || (code1 == NE_EXPR && integer_onep (op1b)));
3584 gimple stmt = SSA_NAME_DEF_STMT (op1a);
3585 switch (gimple_code (stmt))
3587 case GIMPLE_ASSIGN:
3588 /* Try to simplify by copy-propagating the definition. */
3589 return and_var_with_comparison (op1a, invert, code2, op2a, op2b);
3591 case GIMPLE_PHI:
3592 /* If every argument to the PHI produces the same result when
3593 ANDed with the second comparison, we win.
3594 Do not do this unless the type is bool since we need a bool
3595 result here anyway. */
3596 if (TREE_CODE (TREE_TYPE (op1a)) == BOOLEAN_TYPE)
3598 tree result = NULL_TREE;
3599 unsigned i;
3600 for (i = 0; i < gimple_phi_num_args (stmt); i++)
3602 tree arg = gimple_phi_arg_def (stmt, i);
3604 /* If this PHI has itself as an argument, ignore it.
3605 If all the other args produce the same result,
3606 we're still OK. */
3607 if (arg == gimple_phi_result (stmt))
3608 continue;
3609 else if (TREE_CODE (arg) == INTEGER_CST)
3611 if (invert ? integer_nonzerop (arg) : integer_zerop (arg))
3613 if (!result)
3614 result = boolean_false_node;
3615 else if (!integer_zerop (result))
3616 return NULL_TREE;
3618 else if (!result)
3619 result = fold_build2 (code2, boolean_type_node,
3620 op2a, op2b);
3621 else if (!same_bool_comparison_p (result,
3622 code2, op2a, op2b))
3623 return NULL_TREE;
3625 else if (TREE_CODE (arg) == SSA_NAME
3626 && !SSA_NAME_IS_DEFAULT_DEF (arg))
3628 tree temp;
3629 gimple def_stmt = SSA_NAME_DEF_STMT (arg);
3630 /* In simple cases we can look through PHI nodes,
3631 but we have to be careful with loops.
3632 See PR49073. */
3633 if (! dom_info_available_p (CDI_DOMINATORS)
3634 || gimple_bb (def_stmt) == gimple_bb (stmt)
3635 || dominated_by_p (CDI_DOMINATORS,
3636 gimple_bb (def_stmt),
3637 gimple_bb (stmt)))
3638 return NULL_TREE;
3639 temp = and_var_with_comparison (arg, invert, code2,
3640 op2a, op2b);
3641 if (!temp)
3642 return NULL_TREE;
3643 else if (!result)
3644 result = temp;
3645 else if (!same_bool_result_p (result, temp))
3646 return NULL_TREE;
3648 else
3649 return NULL_TREE;
3651 return result;
3654 default:
3655 break;
3658 return NULL_TREE;
3661 /* Try to simplify the AND of two comparisons, specified by
3662 (OP1A CODE1 OP1B) and (OP2B CODE2 OP2B), respectively.
3663 If this can be simplified to a single expression (without requiring
3664 introducing more SSA variables to hold intermediate values),
3665 return the resulting tree. Otherwise return NULL_TREE.
3666 If the result expression is non-null, it has boolean type. */
3668 tree
3669 maybe_fold_and_comparisons (enum tree_code code1, tree op1a, tree op1b,
3670 enum tree_code code2, tree op2a, tree op2b)
3672 tree t = and_comparisons_1 (code1, op1a, op1b, code2, op2a, op2b);
3673 if (t)
3674 return t;
3675 else
3676 return and_comparisons_1 (code2, op2a, op2b, code1, op1a, op1b);
3679 /* Helper function for or_comparisons_1: try to simplify the OR of the
3680 ssa variable VAR with the comparison specified by (OP2A CODE2 OP2B).
3681 If INVERT is true, invert the value of VAR before doing the OR.
3682 Return NULL_EXPR if we can't simplify this to a single expression. */
3684 static tree
3685 or_var_with_comparison (tree var, bool invert,
3686 enum tree_code code2, tree op2a, tree op2b)
3688 tree t;
3689 gimple stmt = SSA_NAME_DEF_STMT (var);
3691 /* We can only deal with variables whose definitions are assignments. */
3692 if (!is_gimple_assign (stmt))
3693 return NULL_TREE;
3695 /* If we have an inverted comparison, apply DeMorgan's law and rewrite
3696 !var OR (op2a code2 op2b) => !(var AND !(op2a code2 op2b))
3697 Then we only have to consider the simpler non-inverted cases. */
3698 if (invert)
3699 t = and_var_with_comparison_1 (stmt,
3700 invert_tree_comparison (code2, false),
3701 op2a, op2b);
3702 else
3703 t = or_var_with_comparison_1 (stmt, code2, op2a, op2b);
3704 return canonicalize_bool (t, invert);
3707 /* Try to simplify the OR of the ssa variable defined by the assignment
3708 STMT with the comparison specified by (OP2A CODE2 OP2B).
3709 Return NULL_EXPR if we can't simplify this to a single expression. */
3711 static tree
3712 or_var_with_comparison_1 (gimple stmt,
3713 enum tree_code code2, tree op2a, tree op2b)
3715 tree var = gimple_assign_lhs (stmt);
3716 tree true_test_var = NULL_TREE;
3717 tree false_test_var = NULL_TREE;
3718 enum tree_code innercode = gimple_assign_rhs_code (stmt);
3720 /* Check for identities like (var OR (var != 0)) => true . */
3721 if (TREE_CODE (op2a) == SSA_NAME
3722 && TREE_CODE (TREE_TYPE (var)) == BOOLEAN_TYPE)
3724 if ((code2 == NE_EXPR && integer_zerop (op2b))
3725 || (code2 == EQ_EXPR && integer_nonzerop (op2b)))
3727 true_test_var = op2a;
3728 if (var == true_test_var)
3729 return var;
3731 else if ((code2 == EQ_EXPR && integer_zerop (op2b))
3732 || (code2 == NE_EXPR && integer_nonzerop (op2b)))
3734 false_test_var = op2a;
3735 if (var == false_test_var)
3736 return boolean_true_node;
3740 /* If the definition is a comparison, recurse on it. */
3741 if (TREE_CODE_CLASS (innercode) == tcc_comparison)
3743 tree t = or_comparisons_1 (innercode,
3744 gimple_assign_rhs1 (stmt),
3745 gimple_assign_rhs2 (stmt),
3746 code2,
3747 op2a,
3748 op2b);
3749 if (t)
3750 return t;
3753 /* If the definition is an AND or OR expression, we may be able to
3754 simplify by reassociating. */
3755 if (TREE_CODE (TREE_TYPE (var)) == BOOLEAN_TYPE
3756 && (innercode == BIT_AND_EXPR || innercode == BIT_IOR_EXPR))
3758 tree inner1 = gimple_assign_rhs1 (stmt);
3759 tree inner2 = gimple_assign_rhs2 (stmt);
3760 gimple s;
3761 tree t;
3762 tree partial = NULL_TREE;
3763 bool is_or = (innercode == BIT_IOR_EXPR);
3765 /* Check for boolean identities that don't require recursive examination
3766 of inner1/inner2:
3767 inner1 OR (inner1 OR inner2) => inner1 OR inner2 => var
3768 inner1 OR (inner1 AND inner2) => inner1
3769 !inner1 OR (inner1 OR inner2) => true
3770 !inner1 OR (inner1 AND inner2) => !inner1 OR inner2
3772 if (inner1 == true_test_var)
3773 return (is_or ? var : inner1);
3774 else if (inner2 == true_test_var)
3775 return (is_or ? var : inner2);
3776 else if (inner1 == false_test_var)
3777 return (is_or
3778 ? boolean_true_node
3779 : or_var_with_comparison (inner2, false, code2, op2a, op2b));
3780 else if (inner2 == false_test_var)
3781 return (is_or
3782 ? boolean_true_node
3783 : or_var_with_comparison (inner1, false, code2, op2a, op2b));
3785 /* Next, redistribute/reassociate the OR across the inner tests.
3786 Compute the first partial result, (inner1 OR (op2a code op2b)) */
3787 if (TREE_CODE (inner1) == SSA_NAME
3788 && is_gimple_assign (s = SSA_NAME_DEF_STMT (inner1))
3789 && TREE_CODE_CLASS (gimple_assign_rhs_code (s)) == tcc_comparison
3790 && (t = maybe_fold_or_comparisons (gimple_assign_rhs_code (s),
3791 gimple_assign_rhs1 (s),
3792 gimple_assign_rhs2 (s),
3793 code2, op2a, op2b)))
3795 /* Handle the OR case, where we are reassociating:
3796 (inner1 OR inner2) OR (op2a code2 op2b)
3797 => (t OR inner2)
3798 If the partial result t is a constant, we win. Otherwise
3799 continue on to try reassociating with the other inner test. */
3800 if (is_or)
3802 if (integer_onep (t))
3803 return boolean_true_node;
3804 else if (integer_zerop (t))
3805 return inner2;
3808 /* Handle the AND case, where we are redistributing:
3809 (inner1 AND inner2) OR (op2a code2 op2b)
3810 => (t AND (inner2 OR (op2a code op2b))) */
3811 else if (integer_zerop (t))
3812 return boolean_false_node;
3814 /* Save partial result for later. */
3815 partial = t;
3818 /* Compute the second partial result, (inner2 OR (op2a code op2b)) */
3819 if (TREE_CODE (inner2) == SSA_NAME
3820 && is_gimple_assign (s = SSA_NAME_DEF_STMT (inner2))
3821 && TREE_CODE_CLASS (gimple_assign_rhs_code (s)) == tcc_comparison
3822 && (t = maybe_fold_or_comparisons (gimple_assign_rhs_code (s),
3823 gimple_assign_rhs1 (s),
3824 gimple_assign_rhs2 (s),
3825 code2, op2a, op2b)))
3827 /* Handle the OR case, where we are reassociating:
3828 (inner1 OR inner2) OR (op2a code2 op2b)
3829 => (inner1 OR t)
3830 => (t OR partial) */
3831 if (is_or)
3833 if (integer_zerop (t))
3834 return inner1;
3835 else if (integer_onep (t))
3836 return boolean_true_node;
3837 /* If both are the same, we can apply the identity
3838 (x OR x) == x. */
3839 else if (partial && same_bool_result_p (t, partial))
3840 return t;
3843 /* Handle the AND case, where we are redistributing:
3844 (inner1 AND inner2) OR (op2a code2 op2b)
3845 => (t AND (inner1 OR (op2a code2 op2b)))
3846 => (t AND partial) */
3847 else
3849 if (integer_zerop (t))
3850 return boolean_false_node;
3851 else if (partial)
3853 /* We already got a simplification for the other
3854 operand to the redistributed AND expression. The
3855 interesting case is when at least one is true.
3856 Or, if both are the same, we can apply the identity
3857 (x AND x) == x. */
3858 if (integer_onep (partial))
3859 return t;
3860 else if (integer_onep (t))
3861 return partial;
3862 else if (same_bool_result_p (t, partial))
3863 return t;
3868 return NULL_TREE;
3871 /* Try to simplify the OR of two comparisons defined by
3872 (OP1A CODE1 OP1B) and (OP2A CODE2 OP2B), respectively.
3873 If this can be done without constructing an intermediate value,
3874 return the resulting tree; otherwise NULL_TREE is returned.
3875 This function is deliberately asymmetric as it recurses on SSA_DEFs
3876 in the first comparison but not the second. */
3878 static tree
3879 or_comparisons_1 (enum tree_code code1, tree op1a, tree op1b,
3880 enum tree_code code2, tree op2a, tree op2b)
3882 tree truth_type = truth_type_for (TREE_TYPE (op1a));
3884 /* First check for ((x CODE1 y) OR (x CODE2 y)). */
3885 if (operand_equal_p (op1a, op2a, 0)
3886 && operand_equal_p (op1b, op2b, 0))
3888 /* Result will be either NULL_TREE, or a combined comparison. */
3889 tree t = combine_comparisons (UNKNOWN_LOCATION,
3890 TRUTH_ORIF_EXPR, code1, code2,
3891 truth_type, op1a, op1b);
3892 if (t)
3893 return t;
3896 /* Likewise the swapped case of the above. */
3897 if (operand_equal_p (op1a, op2b, 0)
3898 && operand_equal_p (op1b, op2a, 0))
3900 /* Result will be either NULL_TREE, or a combined comparison. */
3901 tree t = combine_comparisons (UNKNOWN_LOCATION,
3902 TRUTH_ORIF_EXPR, code1,
3903 swap_tree_comparison (code2),
3904 truth_type, op1a, op1b);
3905 if (t)
3906 return t;
3909 /* If both comparisons are of the same value against constants, we might
3910 be able to merge them. */
3911 if (operand_equal_p (op1a, op2a, 0)
3912 && TREE_CODE (op1b) == INTEGER_CST
3913 && TREE_CODE (op2b) == INTEGER_CST)
3915 int cmp = tree_int_cst_compare (op1b, op2b);
3917 /* If we have (op1a != op1b), we should either be able to
3918 return that or TRUE, depending on whether the constant op1b
3919 also satisfies the other comparison against op2b. */
3920 if (code1 == NE_EXPR)
3922 bool done = true;
3923 bool val;
3924 switch (code2)
3926 case EQ_EXPR: val = (cmp == 0); break;
3927 case NE_EXPR: val = (cmp != 0); break;
3928 case LT_EXPR: val = (cmp < 0); break;
3929 case GT_EXPR: val = (cmp > 0); break;
3930 case LE_EXPR: val = (cmp <= 0); break;
3931 case GE_EXPR: val = (cmp >= 0); break;
3932 default: done = false;
3934 if (done)
3936 if (val)
3937 return boolean_true_node;
3938 else
3939 return fold_build2 (code1, boolean_type_node, op1a, op1b);
3942 /* Likewise if the second comparison is a != comparison. */
3943 else if (code2 == NE_EXPR)
3945 bool done = true;
3946 bool val;
3947 switch (code1)
3949 case EQ_EXPR: val = (cmp == 0); break;
3950 case NE_EXPR: val = (cmp != 0); break;
3951 case LT_EXPR: val = (cmp > 0); break;
3952 case GT_EXPR: val = (cmp < 0); break;
3953 case LE_EXPR: val = (cmp >= 0); break;
3954 case GE_EXPR: val = (cmp <= 0); break;
3955 default: done = false;
3957 if (done)
3959 if (val)
3960 return boolean_true_node;
3961 else
3962 return fold_build2 (code2, boolean_type_node, op2a, op2b);
3966 /* See if an equality test is redundant with the other comparison. */
3967 else if (code1 == EQ_EXPR)
3969 bool val;
3970 switch (code2)
3972 case EQ_EXPR: val = (cmp == 0); break;
3973 case NE_EXPR: val = (cmp != 0); break;
3974 case LT_EXPR: val = (cmp < 0); break;
3975 case GT_EXPR: val = (cmp > 0); break;
3976 case LE_EXPR: val = (cmp <= 0); break;
3977 case GE_EXPR: val = (cmp >= 0); break;
3978 default:
3979 val = false;
3981 if (val)
3982 return fold_build2 (code2, boolean_type_node, op2a, op2b);
3984 else if (code2 == EQ_EXPR)
3986 bool val;
3987 switch (code1)
3989 case EQ_EXPR: val = (cmp == 0); break;
3990 case NE_EXPR: val = (cmp != 0); break;
3991 case LT_EXPR: val = (cmp > 0); break;
3992 case GT_EXPR: val = (cmp < 0); break;
3993 case LE_EXPR: val = (cmp >= 0); break;
3994 case GE_EXPR: val = (cmp <= 0); break;
3995 default:
3996 val = false;
3998 if (val)
3999 return fold_build2 (code1, boolean_type_node, op1a, op1b);
4002 /* Chose the less restrictive of two < or <= comparisons. */
4003 else if ((code1 == LT_EXPR || code1 == LE_EXPR)
4004 && (code2 == LT_EXPR || code2 == LE_EXPR))
4006 if ((cmp < 0) || (cmp == 0 && code1 == LT_EXPR))
4007 return fold_build2 (code2, boolean_type_node, op2a, op2b);
4008 else
4009 return fold_build2 (code1, boolean_type_node, op1a, op1b);
4012 /* Likewise chose the less restrictive of two > or >= comparisons. */
4013 else if ((code1 == GT_EXPR || code1 == GE_EXPR)
4014 && (code2 == GT_EXPR || code2 == GE_EXPR))
4016 if ((cmp > 0) || (cmp == 0 && code1 == GT_EXPR))
4017 return fold_build2 (code2, boolean_type_node, op2a, op2b);
4018 else
4019 return fold_build2 (code1, boolean_type_node, op1a, op1b);
4022 /* Check for singleton ranges. */
4023 else if (cmp == 0
4024 && ((code1 == LT_EXPR && code2 == GT_EXPR)
4025 || (code1 == GT_EXPR && code2 == LT_EXPR)))
4026 return fold_build2 (NE_EXPR, boolean_type_node, op1a, op2b);
4028 /* Check for less/greater pairs that don't restrict the range at all. */
4029 else if (cmp >= 0
4030 && (code1 == LT_EXPR || code1 == LE_EXPR)
4031 && (code2 == GT_EXPR || code2 == GE_EXPR))
4032 return boolean_true_node;
4033 else if (cmp <= 0
4034 && (code1 == GT_EXPR || code1 == GE_EXPR)
4035 && (code2 == LT_EXPR || code2 == LE_EXPR))
4036 return boolean_true_node;
4039 /* Perhaps the first comparison is (NAME != 0) or (NAME == 1) where
4040 NAME's definition is a truth value. See if there are any simplifications
4041 that can be done against the NAME's definition. */
4042 if (TREE_CODE (op1a) == SSA_NAME
4043 && (code1 == NE_EXPR || code1 == EQ_EXPR)
4044 && (integer_zerop (op1b) || integer_onep (op1b)))
4046 bool invert = ((code1 == EQ_EXPR && integer_zerop (op1b))
4047 || (code1 == NE_EXPR && integer_onep (op1b)));
4048 gimple stmt = SSA_NAME_DEF_STMT (op1a);
4049 switch (gimple_code (stmt))
4051 case GIMPLE_ASSIGN:
4052 /* Try to simplify by copy-propagating the definition. */
4053 return or_var_with_comparison (op1a, invert, code2, op2a, op2b);
4055 case GIMPLE_PHI:
4056 /* If every argument to the PHI produces the same result when
4057 ORed with the second comparison, we win.
4058 Do not do this unless the type is bool since we need a bool
4059 result here anyway. */
4060 if (TREE_CODE (TREE_TYPE (op1a)) == BOOLEAN_TYPE)
4062 tree result = NULL_TREE;
4063 unsigned i;
4064 for (i = 0; i < gimple_phi_num_args (stmt); i++)
4066 tree arg = gimple_phi_arg_def (stmt, i);
4068 /* If this PHI has itself as an argument, ignore it.
4069 If all the other args produce the same result,
4070 we're still OK. */
4071 if (arg == gimple_phi_result (stmt))
4072 continue;
4073 else if (TREE_CODE (arg) == INTEGER_CST)
4075 if (invert ? integer_zerop (arg) : integer_nonzerop (arg))
4077 if (!result)
4078 result = boolean_true_node;
4079 else if (!integer_onep (result))
4080 return NULL_TREE;
4082 else if (!result)
4083 result = fold_build2 (code2, boolean_type_node,
4084 op2a, op2b);
4085 else if (!same_bool_comparison_p (result,
4086 code2, op2a, op2b))
4087 return NULL_TREE;
4089 else if (TREE_CODE (arg) == SSA_NAME
4090 && !SSA_NAME_IS_DEFAULT_DEF (arg))
4092 tree temp;
4093 gimple def_stmt = SSA_NAME_DEF_STMT (arg);
4094 /* In simple cases we can look through PHI nodes,
4095 but we have to be careful with loops.
4096 See PR49073. */
4097 if (! dom_info_available_p (CDI_DOMINATORS)
4098 || gimple_bb (def_stmt) == gimple_bb (stmt)
4099 || dominated_by_p (CDI_DOMINATORS,
4100 gimple_bb (def_stmt),
4101 gimple_bb (stmt)))
4102 return NULL_TREE;
4103 temp = or_var_with_comparison (arg, invert, code2,
4104 op2a, op2b);
4105 if (!temp)
4106 return NULL_TREE;
4107 else if (!result)
4108 result = temp;
4109 else if (!same_bool_result_p (result, temp))
4110 return NULL_TREE;
4112 else
4113 return NULL_TREE;
4115 return result;
4118 default:
4119 break;
4122 return NULL_TREE;
4125 /* Try to simplify the OR of two comparisons, specified by
4126 (OP1A CODE1 OP1B) and (OP2B CODE2 OP2B), respectively.
4127 If this can be simplified to a single expression (without requiring
4128 introducing more SSA variables to hold intermediate values),
4129 return the resulting tree. Otherwise return NULL_TREE.
4130 If the result expression is non-null, it has boolean type. */
4132 tree
4133 maybe_fold_or_comparisons (enum tree_code code1, tree op1a, tree op1b,
4134 enum tree_code code2, tree op2a, tree op2b)
4136 tree t = or_comparisons_1 (code1, op1a, op1b, code2, op2a, op2b);
4137 if (t)
4138 return t;
4139 else
4140 return or_comparisons_1 (code2, op2a, op2b, code1, op1a, op1b);
4144 /* Fold STMT to a constant using VALUEIZE to valueize SSA names.
4146 Either NULL_TREE, a simplified but non-constant or a constant
4147 is returned.
4149 ??? This should go into a gimple-fold-inline.h file to be eventually
4150 privatized with the single valueize function used in the various TUs
4151 to avoid the indirect function call overhead. */
4153 tree
4154 gimple_fold_stmt_to_constant_1 (gimple stmt, tree (*valueize) (tree))
4156 location_t loc = gimple_location (stmt);
4157 switch (gimple_code (stmt))
4159 case GIMPLE_ASSIGN:
4161 enum tree_code subcode = gimple_assign_rhs_code (stmt);
4163 switch (get_gimple_rhs_class (subcode))
4165 case GIMPLE_SINGLE_RHS:
4167 tree rhs = gimple_assign_rhs1 (stmt);
4168 enum tree_code_class kind = TREE_CODE_CLASS (subcode);
4170 if (TREE_CODE (rhs) == SSA_NAME)
4172 /* If the RHS is an SSA_NAME, return its known constant value,
4173 if any. */
4174 return (*valueize) (rhs);
4176 /* Handle propagating invariant addresses into address
4177 operations. */
4178 else if (TREE_CODE (rhs) == ADDR_EXPR
4179 && !is_gimple_min_invariant (rhs))
4181 HOST_WIDE_INT offset = 0;
4182 tree base;
4183 base = get_addr_base_and_unit_offset_1 (TREE_OPERAND (rhs, 0),
4184 &offset,
4185 valueize);
4186 if (base
4187 && (CONSTANT_CLASS_P (base)
4188 || decl_address_invariant_p (base)))
4189 return build_invariant_address (TREE_TYPE (rhs),
4190 base, offset);
4192 else if (TREE_CODE (rhs) == CONSTRUCTOR
4193 && TREE_CODE (TREE_TYPE (rhs)) == VECTOR_TYPE
4194 && (CONSTRUCTOR_NELTS (rhs)
4195 == TYPE_VECTOR_SUBPARTS (TREE_TYPE (rhs))))
4197 unsigned i;
4198 tree val, *vec;
4200 vec = XALLOCAVEC (tree,
4201 TYPE_VECTOR_SUBPARTS (TREE_TYPE (rhs)));
4202 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs), i, val)
4204 val = (*valueize) (val);
4205 if (TREE_CODE (val) == INTEGER_CST
4206 || TREE_CODE (val) == REAL_CST
4207 || TREE_CODE (val) == FIXED_CST)
4208 vec[i] = val;
4209 else
4210 return NULL_TREE;
4213 return build_vector (TREE_TYPE (rhs), vec);
4215 if (subcode == OBJ_TYPE_REF)
4217 tree val = (*valueize) (OBJ_TYPE_REF_EXPR (rhs));
4218 /* If callee is constant, we can fold away the wrapper. */
4219 if (is_gimple_min_invariant (val))
4220 return val;
4223 if (kind == tcc_reference)
4225 if ((TREE_CODE (rhs) == VIEW_CONVERT_EXPR
4226 || TREE_CODE (rhs) == REALPART_EXPR
4227 || TREE_CODE (rhs) == IMAGPART_EXPR)
4228 && TREE_CODE (TREE_OPERAND (rhs, 0)) == SSA_NAME)
4230 tree val = (*valueize) (TREE_OPERAND (rhs, 0));
4231 return fold_unary_loc (EXPR_LOCATION (rhs),
4232 TREE_CODE (rhs),
4233 TREE_TYPE (rhs), val);
4235 else if (TREE_CODE (rhs) == BIT_FIELD_REF
4236 && TREE_CODE (TREE_OPERAND (rhs, 0)) == SSA_NAME)
4238 tree val = (*valueize) (TREE_OPERAND (rhs, 0));
4239 return fold_ternary_loc (EXPR_LOCATION (rhs),
4240 TREE_CODE (rhs),
4241 TREE_TYPE (rhs), val,
4242 TREE_OPERAND (rhs, 1),
4243 TREE_OPERAND (rhs, 2));
4245 else if (TREE_CODE (rhs) == MEM_REF
4246 && TREE_CODE (TREE_OPERAND (rhs, 0)) == SSA_NAME)
4248 tree val = (*valueize) (TREE_OPERAND (rhs, 0));
4249 if (TREE_CODE (val) == ADDR_EXPR
4250 && is_gimple_min_invariant (val))
4252 tree tem = fold_build2 (MEM_REF, TREE_TYPE (rhs),
4253 unshare_expr (val),
4254 TREE_OPERAND (rhs, 1));
4255 if (tem)
4256 rhs = tem;
4259 return fold_const_aggregate_ref_1 (rhs, valueize);
4261 else if (kind == tcc_declaration)
4262 return get_symbol_constant_value (rhs);
4263 return rhs;
4266 case GIMPLE_UNARY_RHS:
4268 /* Handle unary operators that can appear in GIMPLE form.
4269 Note that we know the single operand must be a constant,
4270 so this should almost always return a simplified RHS. */
4271 tree op0 = (*valueize) (gimple_assign_rhs1 (stmt));
4273 return
4274 fold_unary_ignore_overflow_loc (loc, subcode,
4275 gimple_expr_type (stmt), op0);
4278 case GIMPLE_BINARY_RHS:
4280 /* Handle binary operators that can appear in GIMPLE form. */
4281 tree op0 = (*valueize) (gimple_assign_rhs1 (stmt));
4282 tree op1 = (*valueize) (gimple_assign_rhs2 (stmt));
4284 /* Translate &x + CST into an invariant form suitable for
4285 further propagation. */
4286 if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR
4287 && TREE_CODE (op0) == ADDR_EXPR
4288 && TREE_CODE (op1) == INTEGER_CST)
4290 tree off = fold_convert (ptr_type_node, op1);
4291 return build_fold_addr_expr_loc
4292 (loc,
4293 fold_build2 (MEM_REF,
4294 TREE_TYPE (TREE_TYPE (op0)),
4295 unshare_expr (op0), off));
4298 return fold_binary_loc (loc, subcode,
4299 gimple_expr_type (stmt), op0, op1);
4302 case GIMPLE_TERNARY_RHS:
4304 /* Handle ternary operators that can appear in GIMPLE form. */
4305 tree op0 = (*valueize) (gimple_assign_rhs1 (stmt));
4306 tree op1 = (*valueize) (gimple_assign_rhs2 (stmt));
4307 tree op2 = (*valueize) (gimple_assign_rhs3 (stmt));
4309 /* Fold embedded expressions in ternary codes. */
4310 if ((subcode == COND_EXPR
4311 || subcode == VEC_COND_EXPR)
4312 && COMPARISON_CLASS_P (op0))
4314 tree op00 = (*valueize) (TREE_OPERAND (op0, 0));
4315 tree op01 = (*valueize) (TREE_OPERAND (op0, 1));
4316 tree tem = fold_binary_loc (loc, TREE_CODE (op0),
4317 TREE_TYPE (op0), op00, op01);
4318 if (tem)
4319 op0 = tem;
4322 return fold_ternary_loc (loc, subcode,
4323 gimple_expr_type (stmt), op0, op1, op2);
4326 default:
4327 gcc_unreachable ();
4331 case GIMPLE_CALL:
4333 tree fn;
4334 gimple_call call_stmt = as_a <gimple_call> (stmt);
4336 if (gimple_call_internal_p (stmt))
4338 enum tree_code subcode = ERROR_MARK;
4339 switch (gimple_call_internal_fn (stmt))
4341 case IFN_UBSAN_CHECK_ADD:
4342 subcode = PLUS_EXPR;
4343 break;
4344 case IFN_UBSAN_CHECK_SUB:
4345 subcode = MINUS_EXPR;
4346 break;
4347 case IFN_UBSAN_CHECK_MUL:
4348 subcode = MULT_EXPR;
4349 break;
4350 default:
4351 return NULL_TREE;
4353 tree arg0 = gimple_call_arg (stmt, 0);
4354 tree arg1 = gimple_call_arg (stmt, 1);
4355 tree op0 = (*valueize) (arg0);
4356 tree op1 = (*valueize) (arg1);
4358 if (TREE_CODE (op0) != INTEGER_CST
4359 || TREE_CODE (op1) != INTEGER_CST)
4361 switch (subcode)
4363 case MULT_EXPR:
4364 /* x * 0 = 0 * x = 0 without overflow. */
4365 if (integer_zerop (op0) || integer_zerop (op1))
4366 return build_zero_cst (TREE_TYPE (arg0));
4367 break;
4368 case MINUS_EXPR:
4369 /* y - y = 0 without overflow. */
4370 if (operand_equal_p (op0, op1, 0))
4371 return build_zero_cst (TREE_TYPE (arg0));
4372 break;
4373 default:
4374 break;
4377 tree res
4378 = fold_binary_loc (loc, subcode, TREE_TYPE (arg0), op0, op1);
4379 if (res
4380 && TREE_CODE (res) == INTEGER_CST
4381 && !TREE_OVERFLOW (res))
4382 return res;
4383 return NULL_TREE;
4386 fn = (*valueize) (gimple_call_fn (stmt));
4387 if (TREE_CODE (fn) == ADDR_EXPR
4388 && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
4389 && DECL_BUILT_IN (TREE_OPERAND (fn, 0))
4390 && gimple_builtin_call_types_compatible_p (stmt,
4391 TREE_OPERAND (fn, 0)))
4393 tree *args = XALLOCAVEC (tree, gimple_call_num_args (stmt));
4394 tree call, retval;
4395 unsigned i;
4396 for (i = 0; i < gimple_call_num_args (stmt); ++i)
4397 args[i] = (*valueize) (gimple_call_arg (stmt, i));
4398 call = build_call_array_loc (loc,
4399 gimple_call_return_type (call_stmt),
4400 fn, gimple_call_num_args (stmt), args);
4401 retval = fold_call_expr (EXPR_LOCATION (call), call, false);
4402 if (retval)
4404 /* fold_call_expr wraps the result inside a NOP_EXPR. */
4405 STRIP_NOPS (retval);
4406 retval = fold_convert (gimple_call_return_type (call_stmt),
4407 retval);
4409 return retval;
4411 return NULL_TREE;
4414 default:
4415 return NULL_TREE;
4419 /* Fold STMT to a constant using VALUEIZE to valueize SSA names.
4420 Returns NULL_TREE if folding to a constant is not possible, otherwise
4421 returns a constant according to is_gimple_min_invariant. */
4423 tree
4424 gimple_fold_stmt_to_constant (gimple stmt, tree (*valueize) (tree))
4426 tree res = gimple_fold_stmt_to_constant_1 (stmt, valueize);
4427 if (res && is_gimple_min_invariant (res))
4428 return res;
4429 return NULL_TREE;
4433 /* The following set of functions are supposed to fold references using
4434 their constant initializers. */
4436 static tree fold_ctor_reference (tree type, tree ctor,
4437 unsigned HOST_WIDE_INT offset,
4438 unsigned HOST_WIDE_INT size, tree);
4440 /* See if we can find constructor defining value of BASE.
4441 When we know the consructor with constant offset (such as
4442 base is array[40] and we do know constructor of array), then
4443 BIT_OFFSET is adjusted accordingly.
4445 As a special case, return error_mark_node when constructor
4446 is not explicitly available, but it is known to be zero
4447 such as 'static const int a;'. */
4448 static tree
4449 get_base_constructor (tree base, HOST_WIDE_INT *bit_offset,
4450 tree (*valueize)(tree))
4452 HOST_WIDE_INT bit_offset2, size, max_size;
4453 if (TREE_CODE (base) == MEM_REF)
4455 if (!integer_zerop (TREE_OPERAND (base, 1)))
4457 if (!tree_fits_shwi_p (TREE_OPERAND (base, 1)))
4458 return NULL_TREE;
4459 *bit_offset += (mem_ref_offset (base).to_short_addr ()
4460 * BITS_PER_UNIT);
4463 if (valueize
4464 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
4465 base = valueize (TREE_OPERAND (base, 0));
4466 if (!base || TREE_CODE (base) != ADDR_EXPR)
4467 return NULL_TREE;
4468 base = TREE_OPERAND (base, 0);
4471 /* Get a CONSTRUCTOR. If BASE is a VAR_DECL, get its
4472 DECL_INITIAL. If BASE is a nested reference into another
4473 ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
4474 the inner reference. */
4475 switch (TREE_CODE (base))
4477 case VAR_DECL:
4478 case CONST_DECL:
4480 tree init = ctor_for_folding (base);
4482 /* Our semantic is exact opposite of ctor_for_folding;
4483 NULL means unknown, while error_mark_node is 0. */
4484 if (init == error_mark_node)
4485 return NULL_TREE;
4486 if (!init)
4487 return error_mark_node;
4488 return init;
4491 case ARRAY_REF:
4492 case COMPONENT_REF:
4493 base = get_ref_base_and_extent (base, &bit_offset2, &size, &max_size);
4494 if (max_size == -1 || size != max_size)
4495 return NULL_TREE;
4496 *bit_offset += bit_offset2;
4497 return get_base_constructor (base, bit_offset, valueize);
4499 case STRING_CST:
4500 case CONSTRUCTOR:
4501 return base;
4503 default:
4504 return NULL_TREE;
4508 /* CTOR is CONSTRUCTOR of an array type. Fold reference of type TYPE and size
4509 SIZE to the memory at bit OFFSET. */
4511 static tree
4512 fold_array_ctor_reference (tree type, tree ctor,
4513 unsigned HOST_WIDE_INT offset,
4514 unsigned HOST_WIDE_INT size,
4515 tree from_decl)
4517 unsigned HOST_WIDE_INT cnt;
4518 tree cfield, cval;
4519 offset_int low_bound;
4520 offset_int elt_size;
4521 offset_int index, max_index;
4522 offset_int access_index;
4523 tree domain_type = NULL_TREE, index_type = NULL_TREE;
4524 HOST_WIDE_INT inner_offset;
4526 /* Compute low bound and elt size. */
4527 if (TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE)
4528 domain_type = TYPE_DOMAIN (TREE_TYPE (ctor));
4529 if (domain_type && TYPE_MIN_VALUE (domain_type))
4531 /* Static constructors for variably sized objects makes no sense. */
4532 gcc_assert (TREE_CODE (TYPE_MIN_VALUE (domain_type)) == INTEGER_CST);
4533 index_type = TREE_TYPE (TYPE_MIN_VALUE (domain_type));
4534 low_bound = wi::to_offset (TYPE_MIN_VALUE (domain_type));
4536 else
4537 low_bound = 0;
4538 /* Static constructors for variably sized objects makes no sense. */
4539 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (ctor))))
4540 == INTEGER_CST);
4541 elt_size = wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (ctor))));
4543 /* We can handle only constantly sized accesses that are known to not
4544 be larger than size of array element. */
4545 if (!TYPE_SIZE_UNIT (type)
4546 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
4547 || wi::lts_p (elt_size, wi::to_offset (TYPE_SIZE_UNIT (type)))
4548 || elt_size == 0)
4549 return NULL_TREE;
4551 /* Compute the array index we look for. */
4552 access_index = wi::udiv_trunc (offset_int (offset / BITS_PER_UNIT),
4553 elt_size);
4554 access_index += low_bound;
4555 if (index_type)
4556 access_index = wi::ext (access_index, TYPE_PRECISION (index_type),
4557 TYPE_SIGN (index_type));
4559 /* And offset within the access. */
4560 inner_offset = offset % (elt_size.to_uhwi () * BITS_PER_UNIT);
4562 /* See if the array field is large enough to span whole access. We do not
4563 care to fold accesses spanning multiple array indexes. */
4564 if (inner_offset + size > elt_size.to_uhwi () * BITS_PER_UNIT)
4565 return NULL_TREE;
4567 index = low_bound - 1;
4568 if (index_type)
4569 index = wi::ext (index, TYPE_PRECISION (index_type),
4570 TYPE_SIGN (index_type));
4572 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
4574 /* Array constructor might explicitely set index, or specify range
4575 or leave index NULL meaning that it is next index after previous
4576 one. */
4577 if (cfield)
4579 if (TREE_CODE (cfield) == INTEGER_CST)
4580 max_index = index = wi::to_offset (cfield);
4581 else
4583 gcc_assert (TREE_CODE (cfield) == RANGE_EXPR);
4584 index = wi::to_offset (TREE_OPERAND (cfield, 0));
4585 max_index = wi::to_offset (TREE_OPERAND (cfield, 1));
4588 else
4590 index += 1;
4591 if (index_type)
4592 index = wi::ext (index, TYPE_PRECISION (index_type),
4593 TYPE_SIGN (index_type));
4594 max_index = index;
4597 /* Do we have match? */
4598 if (wi::cmpu (access_index, index) >= 0
4599 && wi::cmpu (access_index, max_index) <= 0)
4600 return fold_ctor_reference (type, cval, inner_offset, size,
4601 from_decl);
4603 /* When memory is not explicitely mentioned in constructor,
4604 it is 0 (or out of range). */
4605 return build_zero_cst (type);
4608 /* CTOR is CONSTRUCTOR of an aggregate or vector.
4609 Fold reference of type TYPE and size SIZE to the memory at bit OFFSET. */
4611 static tree
4612 fold_nonarray_ctor_reference (tree type, tree ctor,
4613 unsigned HOST_WIDE_INT offset,
4614 unsigned HOST_WIDE_INT size,
4615 tree from_decl)
4617 unsigned HOST_WIDE_INT cnt;
4618 tree cfield, cval;
4620 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield,
4621 cval)
4623 tree byte_offset = DECL_FIELD_OFFSET (cfield);
4624 tree field_offset = DECL_FIELD_BIT_OFFSET (cfield);
4625 tree field_size = DECL_SIZE (cfield);
4626 offset_int bitoffset;
4627 offset_int bitoffset_end, access_end;
4629 /* Variable sized objects in static constructors makes no sense,
4630 but field_size can be NULL for flexible array members. */
4631 gcc_assert (TREE_CODE (field_offset) == INTEGER_CST
4632 && TREE_CODE (byte_offset) == INTEGER_CST
4633 && (field_size != NULL_TREE
4634 ? TREE_CODE (field_size) == INTEGER_CST
4635 : TREE_CODE (TREE_TYPE (cfield)) == ARRAY_TYPE));
4637 /* Compute bit offset of the field. */
4638 bitoffset = (wi::to_offset (field_offset)
4639 + wi::lshift (wi::to_offset (byte_offset),
4640 LOG2_BITS_PER_UNIT));
4641 /* Compute bit offset where the field ends. */
4642 if (field_size != NULL_TREE)
4643 bitoffset_end = bitoffset + wi::to_offset (field_size);
4644 else
4645 bitoffset_end = 0;
4647 access_end = offset_int (offset) + size;
4649 /* Is there any overlap between [OFFSET, OFFSET+SIZE) and
4650 [BITOFFSET, BITOFFSET_END)? */
4651 if (wi::cmps (access_end, bitoffset) > 0
4652 && (field_size == NULL_TREE
4653 || wi::lts_p (offset, bitoffset_end)))
4655 offset_int inner_offset = offset_int (offset) - bitoffset;
4656 /* We do have overlap. Now see if field is large enough to
4657 cover the access. Give up for accesses spanning multiple
4658 fields. */
4659 if (wi::cmps (access_end, bitoffset_end) > 0)
4660 return NULL_TREE;
4661 if (wi::lts_p (offset, bitoffset))
4662 return NULL_TREE;
4663 return fold_ctor_reference (type, cval,
4664 inner_offset.to_uhwi (), size,
4665 from_decl);
4668 /* When memory is not explicitely mentioned in constructor, it is 0. */
4669 return build_zero_cst (type);
4672 /* CTOR is value initializing memory, fold reference of type TYPE and size SIZE
4673 to the memory at bit OFFSET. */
4675 static tree
4676 fold_ctor_reference (tree type, tree ctor, unsigned HOST_WIDE_INT offset,
4677 unsigned HOST_WIDE_INT size, tree from_decl)
4679 tree ret;
4681 /* We found the field with exact match. */
4682 if (useless_type_conversion_p (type, TREE_TYPE (ctor))
4683 && !offset)
4684 return canonicalize_constructor_val (unshare_expr (ctor), from_decl);
4686 /* We are at the end of walk, see if we can view convert the
4687 result. */
4688 if (!AGGREGATE_TYPE_P (TREE_TYPE (ctor)) && !offset
4689 /* VIEW_CONVERT_EXPR is defined only for matching sizes. */
4690 && !compare_tree_int (TYPE_SIZE (type), size)
4691 && !compare_tree_int (TYPE_SIZE (TREE_TYPE (ctor)), size))
4693 ret = canonicalize_constructor_val (unshare_expr (ctor), from_decl);
4694 ret = fold_unary (VIEW_CONVERT_EXPR, type, ret);
4695 if (ret)
4696 STRIP_NOPS (ret);
4697 return ret;
4699 /* For constants and byte-aligned/sized reads try to go through
4700 native_encode/interpret. */
4701 if (CONSTANT_CLASS_P (ctor)
4702 && BITS_PER_UNIT == 8
4703 && offset % BITS_PER_UNIT == 0
4704 && size % BITS_PER_UNIT == 0
4705 && size <= MAX_BITSIZE_MODE_ANY_MODE)
4707 unsigned char buf[MAX_BITSIZE_MODE_ANY_MODE / BITS_PER_UNIT];
4708 if (native_encode_expr (ctor, buf, size / BITS_PER_UNIT,
4709 offset / BITS_PER_UNIT) > 0)
4710 return native_interpret_expr (type, buf, size / BITS_PER_UNIT);
4712 if (TREE_CODE (ctor) == CONSTRUCTOR)
4715 if (TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE
4716 || TREE_CODE (TREE_TYPE (ctor)) == VECTOR_TYPE)
4717 return fold_array_ctor_reference (type, ctor, offset, size,
4718 from_decl);
4719 else
4720 return fold_nonarray_ctor_reference (type, ctor, offset, size,
4721 from_decl);
4724 return NULL_TREE;
4727 /* Return the tree representing the element referenced by T if T is an
4728 ARRAY_REF or COMPONENT_REF into constant aggregates valuezing SSA
4729 names using VALUEIZE. Return NULL_TREE otherwise. */
4731 tree
4732 fold_const_aggregate_ref_1 (tree t, tree (*valueize) (tree))
4734 tree ctor, idx, base;
4735 HOST_WIDE_INT offset, size, max_size;
4736 tree tem;
4738 if (TREE_THIS_VOLATILE (t))
4739 return NULL_TREE;
4741 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4742 return get_symbol_constant_value (t);
4744 tem = fold_read_from_constant_string (t);
4745 if (tem)
4746 return tem;
4748 switch (TREE_CODE (t))
4750 case ARRAY_REF:
4751 case ARRAY_RANGE_REF:
4752 /* Constant indexes are handled well by get_base_constructor.
4753 Only special case variable offsets.
4754 FIXME: This code can't handle nested references with variable indexes
4755 (they will be handled only by iteration of ccp). Perhaps we can bring
4756 get_ref_base_and_extent here and make it use a valueize callback. */
4757 if (TREE_CODE (TREE_OPERAND (t, 1)) == SSA_NAME
4758 && valueize
4759 && (idx = (*valueize) (TREE_OPERAND (t, 1)))
4760 && TREE_CODE (idx) == INTEGER_CST)
4762 tree low_bound, unit_size;
4764 /* If the resulting bit-offset is constant, track it. */
4765 if ((low_bound = array_ref_low_bound (t),
4766 TREE_CODE (low_bound) == INTEGER_CST)
4767 && (unit_size = array_ref_element_size (t),
4768 tree_fits_uhwi_p (unit_size)))
4770 offset_int woffset
4771 = wi::sext (wi::to_offset (idx) - wi::to_offset (low_bound),
4772 TYPE_PRECISION (TREE_TYPE (idx)));
4774 if (wi::fits_shwi_p (woffset))
4776 offset = woffset.to_shwi ();
4777 /* TODO: This code seems wrong, multiply then check
4778 to see if it fits. */
4779 offset *= tree_to_uhwi (unit_size);
4780 offset *= BITS_PER_UNIT;
4782 base = TREE_OPERAND (t, 0);
4783 ctor = get_base_constructor (base, &offset, valueize);
4784 /* Empty constructor. Always fold to 0. */
4785 if (ctor == error_mark_node)
4786 return build_zero_cst (TREE_TYPE (t));
4787 /* Out of bound array access. Value is undefined,
4788 but don't fold. */
4789 if (offset < 0)
4790 return NULL_TREE;
4791 /* We can not determine ctor. */
4792 if (!ctor)
4793 return NULL_TREE;
4794 return fold_ctor_reference (TREE_TYPE (t), ctor, offset,
4795 tree_to_uhwi (unit_size)
4796 * BITS_PER_UNIT,
4797 base);
4801 /* Fallthru. */
4803 case COMPONENT_REF:
4804 case BIT_FIELD_REF:
4805 case TARGET_MEM_REF:
4806 case MEM_REF:
4807 base = get_ref_base_and_extent (t, &offset, &size, &max_size);
4808 ctor = get_base_constructor (base, &offset, valueize);
4810 /* Empty constructor. Always fold to 0. */
4811 if (ctor == error_mark_node)
4812 return build_zero_cst (TREE_TYPE (t));
4813 /* We do not know precise address. */
4814 if (max_size == -1 || max_size != size)
4815 return NULL_TREE;
4816 /* We can not determine ctor. */
4817 if (!ctor)
4818 return NULL_TREE;
4820 /* Out of bound array access. Value is undefined, but don't fold. */
4821 if (offset < 0)
4822 return NULL_TREE;
4824 return fold_ctor_reference (TREE_TYPE (t), ctor, offset, size,
4825 base);
4827 case REALPART_EXPR:
4828 case IMAGPART_EXPR:
4830 tree c = fold_const_aggregate_ref_1 (TREE_OPERAND (t, 0), valueize);
4831 if (c && TREE_CODE (c) == COMPLEX_CST)
4832 return fold_build1_loc (EXPR_LOCATION (t),
4833 TREE_CODE (t), TREE_TYPE (t), c);
4834 break;
4837 default:
4838 break;
4841 return NULL_TREE;
4844 tree
4845 fold_const_aggregate_ref (tree t)
4847 return fold_const_aggregate_ref_1 (t, NULL);
4850 /* Lookup virtual method with index TOKEN in a virtual table V
4851 at OFFSET.
4852 Set CAN_REFER if non-NULL to false if method
4853 is not referable or if the virtual table is ill-formed (such as rewriten
4854 by non-C++ produced symbol). Otherwise just return NULL in that calse. */
4856 tree
4857 gimple_get_virt_method_for_vtable (HOST_WIDE_INT token,
4858 tree v,
4859 unsigned HOST_WIDE_INT offset,
4860 bool *can_refer)
4862 tree vtable = v, init, fn;
4863 unsigned HOST_WIDE_INT size;
4864 unsigned HOST_WIDE_INT elt_size, access_index;
4865 tree domain_type;
4867 if (can_refer)
4868 *can_refer = true;
4870 /* First of all double check we have virtual table. */
4871 if (TREE_CODE (v) != VAR_DECL
4872 || !DECL_VIRTUAL_P (v))
4874 gcc_assert (in_lto_p);
4875 /* Pass down that we lost track of the target. */
4876 if (can_refer)
4877 *can_refer = false;
4878 return NULL_TREE;
4881 init = ctor_for_folding (v);
4883 /* The virtual tables should always be born with constructors
4884 and we always should assume that they are avaialble for
4885 folding. At the moment we do not stream them in all cases,
4886 but it should never happen that ctor seem unreachable. */
4887 gcc_assert (init);
4888 if (init == error_mark_node)
4890 gcc_assert (in_lto_p);
4891 /* Pass down that we lost track of the target. */
4892 if (can_refer)
4893 *can_refer = false;
4894 return NULL_TREE;
4896 gcc_checking_assert (TREE_CODE (TREE_TYPE (v)) == ARRAY_TYPE);
4897 size = tree_to_uhwi (TYPE_SIZE (TREE_TYPE (TREE_TYPE (v))));
4898 offset *= BITS_PER_UNIT;
4899 offset += token * size;
4901 /* Lookup the value in the constructor that is assumed to be array.
4902 This is equivalent to
4903 fn = fold_ctor_reference (TREE_TYPE (TREE_TYPE (v)), init,
4904 offset, size, NULL);
4905 but in a constant time. We expect that frontend produced a simple
4906 array without indexed initializers. */
4908 gcc_checking_assert (TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE);
4909 domain_type = TYPE_DOMAIN (TREE_TYPE (init));
4910 gcc_checking_assert (integer_zerop (TYPE_MIN_VALUE (domain_type)));
4911 elt_size = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (init))));
4913 access_index = offset / BITS_PER_UNIT / elt_size;
4914 gcc_checking_assert (offset % (elt_size * BITS_PER_UNIT) == 0);
4916 /* This code makes an assumption that there are no
4917 indexed fileds produced by C++ FE, so we can directly index the array. */
4918 if (access_index < CONSTRUCTOR_NELTS (init))
4920 fn = CONSTRUCTOR_ELT (init, access_index)->value;
4921 gcc_checking_assert (!CONSTRUCTOR_ELT (init, access_index)->index);
4922 STRIP_NOPS (fn);
4924 else
4925 fn = NULL;
4927 /* For type inconsistent program we may end up looking up virtual method
4928 in virtual table that does not contain TOKEN entries. We may overrun
4929 the virtual table and pick up a constant or RTTI info pointer.
4930 In any case the call is undefined. */
4931 if (!fn
4932 || (TREE_CODE (fn) != ADDR_EXPR && TREE_CODE (fn) != FDESC_EXPR)
4933 || TREE_CODE (TREE_OPERAND (fn, 0)) != FUNCTION_DECL)
4934 fn = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
4935 else
4937 fn = TREE_OPERAND (fn, 0);
4939 /* When cgraph node is missing and function is not public, we cannot
4940 devirtualize. This can happen in WHOPR when the actual method
4941 ends up in other partition, because we found devirtualization
4942 possibility too late. */
4943 if (!can_refer_decl_in_current_unit_p (fn, vtable))
4945 if (can_refer)
4947 *can_refer = false;
4948 return fn;
4950 return NULL_TREE;
4954 /* Make sure we create a cgraph node for functions we'll reference.
4955 They can be non-existent if the reference comes from an entry
4956 of an external vtable for example. */
4957 cgraph_node::get_create (fn);
4959 return fn;
4962 /* Return a declaration of a function which an OBJ_TYPE_REF references. TOKEN
4963 is integer form of OBJ_TYPE_REF_TOKEN of the reference expression.
4964 KNOWN_BINFO carries the binfo describing the true type of
4965 OBJ_TYPE_REF_OBJECT(REF).
4966 Set CAN_REFER if non-NULL to false if method
4967 is not referable or if the virtual table is ill-formed (such as rewriten
4968 by non-C++ produced symbol). Otherwise just return NULL in that calse. */
4970 tree
4971 gimple_get_virt_method_for_binfo (HOST_WIDE_INT token, tree known_binfo,
4972 bool *can_refer)
4974 unsigned HOST_WIDE_INT offset;
4975 tree v;
4977 v = BINFO_VTABLE (known_binfo);
4978 /* If there is no virtual methods table, leave the OBJ_TYPE_REF alone. */
4979 if (!v)
4980 return NULL_TREE;
4982 if (!vtable_pointer_value_to_vtable (v, &v, &offset))
4984 if (can_refer)
4985 *can_refer = false;
4986 return NULL_TREE;
4988 return gimple_get_virt_method_for_vtable (token, v, offset, can_refer);
4991 /* Return true iff VAL is a gimple expression that is known to be
4992 non-negative. Restricted to floating-point inputs. */
4994 bool
4995 gimple_val_nonnegative_real_p (tree val)
4997 gimple def_stmt;
4999 gcc_assert (val && SCALAR_FLOAT_TYPE_P (TREE_TYPE (val)));
5001 /* Use existing logic for non-gimple trees. */
5002 if (tree_expr_nonnegative_p (val))
5003 return true;
5005 if (TREE_CODE (val) != SSA_NAME)
5006 return false;
5008 /* Currently we look only at the immediately defining statement
5009 to make this determination, since recursion on defining
5010 statements of operands can lead to quadratic behavior in the
5011 worst case. This is expected to catch almost all occurrences
5012 in practice. It would be possible to implement limited-depth
5013 recursion if important cases are lost. Alternatively, passes
5014 that need this information (such as the pow/powi lowering code
5015 in the cse_sincos pass) could be revised to provide it through
5016 dataflow propagation. */
5018 def_stmt = SSA_NAME_DEF_STMT (val);
5020 if (is_gimple_assign (def_stmt))
5022 tree op0, op1;
5024 /* See fold-const.c:tree_expr_nonnegative_p for additional
5025 cases that could be handled with recursion. */
5027 switch (gimple_assign_rhs_code (def_stmt))
5029 case ABS_EXPR:
5030 /* Always true for floating-point operands. */
5031 return true;
5033 case MULT_EXPR:
5034 /* True if the two operands are identical (since we are
5035 restricted to floating-point inputs). */
5036 op0 = gimple_assign_rhs1 (def_stmt);
5037 op1 = gimple_assign_rhs2 (def_stmt);
5039 if (op0 == op1
5040 || operand_equal_p (op0, op1, 0))
5041 return true;
5043 default:
5044 return false;
5047 else if (is_gimple_call (def_stmt))
5049 tree fndecl = gimple_call_fndecl (def_stmt);
5050 if (fndecl
5051 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
5053 tree arg1;
5055 switch (DECL_FUNCTION_CODE (fndecl))
5057 CASE_FLT_FN (BUILT_IN_ACOS):
5058 CASE_FLT_FN (BUILT_IN_ACOSH):
5059 CASE_FLT_FN (BUILT_IN_CABS):
5060 CASE_FLT_FN (BUILT_IN_COSH):
5061 CASE_FLT_FN (BUILT_IN_ERFC):
5062 CASE_FLT_FN (BUILT_IN_EXP):
5063 CASE_FLT_FN (BUILT_IN_EXP10):
5064 CASE_FLT_FN (BUILT_IN_EXP2):
5065 CASE_FLT_FN (BUILT_IN_FABS):
5066 CASE_FLT_FN (BUILT_IN_FDIM):
5067 CASE_FLT_FN (BUILT_IN_HYPOT):
5068 CASE_FLT_FN (BUILT_IN_POW10):
5069 return true;
5071 CASE_FLT_FN (BUILT_IN_SQRT):
5072 /* sqrt(-0.0) is -0.0, and sqrt is not defined over other
5073 nonnegative inputs. */
5074 if (!HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (val))))
5075 return true;
5077 break;
5079 CASE_FLT_FN (BUILT_IN_POWI):
5080 /* True if the second argument is an even integer. */
5081 arg1 = gimple_call_arg (def_stmt, 1);
5083 if (TREE_CODE (arg1) == INTEGER_CST
5084 && (TREE_INT_CST_LOW (arg1) & 1) == 0)
5085 return true;
5087 break;
5089 CASE_FLT_FN (BUILT_IN_POW):
5090 /* True if the second argument is an even integer-valued
5091 real. */
5092 arg1 = gimple_call_arg (def_stmt, 1);
5094 if (TREE_CODE (arg1) == REAL_CST)
5096 REAL_VALUE_TYPE c;
5097 HOST_WIDE_INT n;
5099 c = TREE_REAL_CST (arg1);
5100 n = real_to_integer (&c);
5102 if ((n & 1) == 0)
5104 REAL_VALUE_TYPE cint;
5105 real_from_integer (&cint, VOIDmode, n, SIGNED);
5106 if (real_identical (&c, &cint))
5107 return true;
5111 break;
5113 default:
5114 return false;
5119 return false;
5122 /* Given a pointer value OP0, return a simplified version of an
5123 indirection through OP0, or NULL_TREE if no simplification is
5124 possible. Note that the resulting type may be different from
5125 the type pointed to in the sense that it is still compatible
5126 from the langhooks point of view. */
5128 tree
5129 gimple_fold_indirect_ref (tree t)
5131 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
5132 tree sub = t;
5133 tree subtype;
5135 STRIP_NOPS (sub);
5136 subtype = TREE_TYPE (sub);
5137 if (!POINTER_TYPE_P (subtype))
5138 return NULL_TREE;
5140 if (TREE_CODE (sub) == ADDR_EXPR)
5142 tree op = TREE_OPERAND (sub, 0);
5143 tree optype = TREE_TYPE (op);
5144 /* *&p => p */
5145 if (useless_type_conversion_p (type, optype))
5146 return op;
5148 /* *(foo *)&fooarray => fooarray[0] */
5149 if (TREE_CODE (optype) == ARRAY_TYPE
5150 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
5151 && useless_type_conversion_p (type, TREE_TYPE (optype)))
5153 tree type_domain = TYPE_DOMAIN (optype);
5154 tree min_val = size_zero_node;
5155 if (type_domain && TYPE_MIN_VALUE (type_domain))
5156 min_val = TYPE_MIN_VALUE (type_domain);
5157 if (TREE_CODE (min_val) == INTEGER_CST)
5158 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
5160 /* *(foo *)&complexfoo => __real__ complexfoo */
5161 else if (TREE_CODE (optype) == COMPLEX_TYPE
5162 && useless_type_conversion_p (type, TREE_TYPE (optype)))
5163 return fold_build1 (REALPART_EXPR, type, op);
5164 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
5165 else if (TREE_CODE (optype) == VECTOR_TYPE
5166 && useless_type_conversion_p (type, TREE_TYPE (optype)))
5168 tree part_width = TYPE_SIZE (type);
5169 tree index = bitsize_int (0);
5170 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
5174 /* *(p + CST) -> ... */
5175 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
5176 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
5178 tree addr = TREE_OPERAND (sub, 0);
5179 tree off = TREE_OPERAND (sub, 1);
5180 tree addrtype;
5182 STRIP_NOPS (addr);
5183 addrtype = TREE_TYPE (addr);
5185 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
5186 if (TREE_CODE (addr) == ADDR_EXPR
5187 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
5188 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
5189 && tree_fits_uhwi_p (off))
5191 unsigned HOST_WIDE_INT offset = tree_to_uhwi (off);
5192 tree part_width = TYPE_SIZE (type);
5193 unsigned HOST_WIDE_INT part_widthi
5194 = tree_to_shwi (part_width) / BITS_PER_UNIT;
5195 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
5196 tree index = bitsize_int (indexi);
5197 if (offset / part_widthi
5198 < TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
5199 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
5200 part_width, index);
5203 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
5204 if (TREE_CODE (addr) == ADDR_EXPR
5205 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
5206 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
5208 tree size = TYPE_SIZE_UNIT (type);
5209 if (tree_int_cst_equal (size, off))
5210 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
5213 /* *(p + CST) -> MEM_REF <p, CST>. */
5214 if (TREE_CODE (addr) != ADDR_EXPR
5215 || DECL_P (TREE_OPERAND (addr, 0)))
5216 return fold_build2 (MEM_REF, type,
5217 addr,
5218 wide_int_to_tree (ptype, off));
5221 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
5222 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
5223 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
5224 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
5226 tree type_domain;
5227 tree min_val = size_zero_node;
5228 tree osub = sub;
5229 sub = gimple_fold_indirect_ref (sub);
5230 if (! sub)
5231 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
5232 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
5233 if (type_domain && TYPE_MIN_VALUE (type_domain))
5234 min_val = TYPE_MIN_VALUE (type_domain);
5235 if (TREE_CODE (min_val) == INTEGER_CST)
5236 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
5239 return NULL_TREE;
5242 /* Return true if CODE is an operation that when operating on signed
5243 integer types involves undefined behavior on overflow and the
5244 operation can be expressed with unsigned arithmetic. */
5246 bool
5247 arith_code_with_undefined_signed_overflow (tree_code code)
5249 switch (code)
5251 case PLUS_EXPR:
5252 case MINUS_EXPR:
5253 case MULT_EXPR:
5254 case NEGATE_EXPR:
5255 case POINTER_PLUS_EXPR:
5256 return true;
5257 default:
5258 return false;
5262 /* Rewrite STMT, an assignment with a signed integer or pointer arithmetic
5263 operation that can be transformed to unsigned arithmetic by converting
5264 its operand, carrying out the operation in the corresponding unsigned
5265 type and converting the result back to the original type.
5267 Returns a sequence of statements that replace STMT and also contain
5268 a modified form of STMT itself. */
5270 gimple_seq
5271 rewrite_to_defined_overflow (gimple stmt)
5273 if (dump_file && (dump_flags & TDF_DETAILS))
5275 fprintf (dump_file, "rewriting stmt with undefined signed "
5276 "overflow ");
5277 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
5280 tree lhs = gimple_assign_lhs (stmt);
5281 tree type = unsigned_type_for (TREE_TYPE (lhs));
5282 gimple_seq stmts = NULL;
5283 for (unsigned i = 1; i < gimple_num_ops (stmt); ++i)
5285 gimple_seq stmts2 = NULL;
5286 gimple_set_op (stmt, i,
5287 force_gimple_operand (fold_convert (type,
5288 gimple_op (stmt, i)),
5289 &stmts2, true, NULL_TREE));
5290 gimple_seq_add_seq (&stmts, stmts2);
5292 gimple_assign_set_lhs (stmt, make_ssa_name (type, stmt));
5293 if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR)
5294 gimple_assign_set_rhs_code (stmt, PLUS_EXPR);
5295 gimple_seq_add_stmt (&stmts, stmt);
5296 gimple cvt = gimple_build_assign_with_ops
5297 (NOP_EXPR, lhs, gimple_assign_lhs (stmt), NULL_TREE);
5298 gimple_seq_add_stmt (&stmts, cvt);
5300 return stmts;
5303 /* Return OP converted to TYPE by emitting a conversion statement on SEQ
5304 if required using location LOC. Note that OP will be returned
5305 unmodified if GIMPLE does not require an explicit conversion between
5306 its type and TYPE. */
5308 tree
5309 gimple_convert (gimple_seq *seq, location_t loc, tree type, tree op)
5311 if (useless_type_conversion_p (type, TREE_TYPE (op)))
5312 return op;
5313 op = fold_convert_loc (loc, type, op);
5314 gimple_seq stmts = NULL;
5315 op = force_gimple_operand (op, &stmts, true, NULL_TREE);
5316 gimple_seq_add_seq_without_update (seq, stmts);
5317 return op;