Daily bump.
[official-gcc.git] / gcc / tree-ssa-ccp.c
blobf9f1217c5fc0e7113d25888aec44b1f81b099779
1 /* Conditional constant propagation pass for the GNU compiler.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Adapted from original RTL SSA-CCP by Daniel Berlin <dberlin@dberlin.org>
5 Adapted to GIMPLE trees by Diego Novillo <dnovillo@redhat.com>
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 3, or (at your option) any
12 later version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 /* Conditional constant propagation (CCP) is based on the SSA
24 propagation engine (tree-ssa-propagate.c). Constant assignments of
25 the form VAR = CST are propagated from the assignments into uses of
26 VAR, which in turn may generate new constants. The simulation uses
27 a four level lattice to keep track of constant values associated
28 with SSA names. Given an SSA name V_i, it may take one of the
29 following values:
31 UNINITIALIZED -> the initial state of the value. This value
32 is replaced with a correct initial value
33 the first time the value is used, so the
34 rest of the pass does not need to care about
35 it. Using this value simplifies initialization
36 of the pass, and prevents us from needlessly
37 scanning statements that are never reached.
39 UNDEFINED -> V_i is a local variable whose definition
40 has not been processed yet. Therefore we
41 don't yet know if its value is a constant
42 or not.
44 CONSTANT -> V_i has been found to hold a constant
45 value C.
47 VARYING -> V_i cannot take a constant value, or if it
48 does, it is not possible to determine it
49 at compile time.
51 The core of SSA-CCP is in ccp_visit_stmt and ccp_visit_phi_node:
53 1- In ccp_visit_stmt, we are interested in assignments whose RHS
54 evaluates into a constant and conditional jumps whose predicate
55 evaluates into a boolean true or false. When an assignment of
56 the form V_i = CONST is found, V_i's lattice value is set to
57 CONSTANT and CONST is associated with it. This causes the
58 propagation engine to add all the SSA edges coming out the
59 assignment into the worklists, so that statements that use V_i
60 can be visited.
62 If the statement is a conditional with a constant predicate, we
63 mark the outgoing edges as executable or not executable
64 depending on the predicate's value. This is then used when
65 visiting PHI nodes to know when a PHI argument can be ignored.
68 2- In ccp_visit_phi_node, if all the PHI arguments evaluate to the
69 same constant C, then the LHS of the PHI is set to C. This
70 evaluation is known as the "meet operation". Since one of the
71 goals of this evaluation is to optimistically return constant
72 values as often as possible, it uses two main short cuts:
74 - If an argument is flowing in through a non-executable edge, it
75 is ignored. This is useful in cases like this:
77 if (PRED)
78 a_9 = 3;
79 else
80 a_10 = 100;
81 a_11 = PHI (a_9, a_10)
83 If PRED is known to always evaluate to false, then we can
84 assume that a_11 will always take its value from a_10, meaning
85 that instead of consider it VARYING (a_9 and a_10 have
86 different values), we can consider it CONSTANT 100.
88 - If an argument has an UNDEFINED value, then it does not affect
89 the outcome of the meet operation. If a variable V_i has an
90 UNDEFINED value, it means that either its defining statement
91 hasn't been visited yet or V_i has no defining statement, in
92 which case the original symbol 'V' is being used
93 uninitialized. Since 'V' is a local variable, the compiler
94 may assume any initial value for it.
97 After propagation, every variable V_i that ends up with a lattice
98 value of CONSTANT will have the associated constant value in the
99 array CONST_VAL[i].VALUE. That is fed into substitute_and_fold for
100 final substitution and folding.
103 Constant propagation in stores and loads (STORE-CCP)
104 ----------------------------------------------------
106 While CCP has all the logic to propagate constants in GIMPLE
107 registers, it is missing the ability to associate constants with
108 stores and loads (i.e., pointer dereferences, structures and
109 global/aliased variables). We don't keep loads and stores in
110 SSA, but we do build a factored use-def web for them (in the
111 virtual operands).
113 For instance, consider the following code fragment:
115 struct A a;
116 const int B = 42;
118 void foo (int i)
120 if (i > 10)
121 a.a = 42;
122 else
124 a.b = 21;
125 a.a = a.b + 21;
128 if (a.a != B)
129 never_executed ();
132 We should be able to deduce that the predicate 'a.a != B' is always
133 false. To achieve this, we associate constant values to the SSA
134 names in the VDEF operands for each store. Additionally,
135 since we also glob partial loads/stores with the base symbol, we
136 also keep track of the memory reference where the constant value
137 was stored (in the MEM_REF field of PROP_VALUE_T). For instance,
139 # a_5 = VDEF <a_4>
140 a.a = 2;
142 # VUSE <a_5>
143 x_3 = a.b;
145 In the example above, CCP will associate value '2' with 'a_5', but
146 it would be wrong to replace the load from 'a.b' with '2', because
147 '2' had been stored into a.a.
149 Note that the initial value of virtual operands is VARYING, not
150 UNDEFINED. Consider, for instance global variables:
152 int A;
154 foo (int i)
156 if (i_3 > 10)
157 A_4 = 3;
158 # A_5 = PHI (A_4, A_2);
160 # VUSE <A_5>
161 A.0_6 = A;
163 return A.0_6;
166 The value of A_2 cannot be assumed to be UNDEFINED, as it may have
167 been defined outside of foo. If we were to assume it UNDEFINED, we
168 would erroneously optimize the above into 'return 3;'.
170 Though STORE-CCP is not too expensive, it does have to do more work
171 than regular CCP, so it is only enabled at -O2. Both regular CCP
172 and STORE-CCP use the exact same algorithm. The only distinction
173 is that when doing STORE-CCP, the boolean variable DO_STORE_CCP is
174 set to true. This affects the evaluation of statements and PHI
175 nodes.
177 References:
179 Constant propagation with conditional branches,
180 Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
182 Building an Optimizing Compiler,
183 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
185 Advanced Compiler Design and Implementation,
186 Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6 */
188 #include "config.h"
189 #include "system.h"
190 #include "coretypes.h"
191 #include "tm.h"
192 #include "tree.h"
193 #include "flags.h"
194 #include "rtl.h"
195 #include "tm_p.h"
196 #include "ggc.h"
197 #include "basic-block.h"
198 #include "output.h"
199 #include "expr.h"
200 #include "function.h"
201 #include "diagnostic.h"
202 #include "timevar.h"
203 #include "tree-dump.h"
204 #include "tree-flow.h"
205 #include "tree-pass.h"
206 #include "tree-ssa-propagate.h"
207 #include "langhooks.h"
208 #include "target.h"
209 #include "toplev.h"
212 /* Possible lattice values. */
213 typedef enum
215 UNINITIALIZED,
216 UNDEFINED,
217 CONSTANT,
218 VARYING
219 } ccp_lattice_t;
221 /* Array of propagated constant values. After propagation,
222 CONST_VAL[I].VALUE holds the constant value for SSA_NAME(I). If
223 the constant is held in an SSA name representing a memory store
224 (i.e., a VDEF), CONST_VAL[I].MEM_REF will contain the actual
225 memory reference used to store (i.e., the LHS of the assignment
226 doing the store). */
227 static prop_value_t *const_val;
229 /* True if we are also propagating constants in stores and loads. */
230 static bool do_store_ccp;
232 /* Dump constant propagation value VAL to file OUTF prefixed by PREFIX. */
234 static void
235 dump_lattice_value (FILE *outf, const char *prefix, prop_value_t val)
237 switch (val.lattice_val)
239 case UNINITIALIZED:
240 fprintf (outf, "%sUNINITIALIZED", prefix);
241 break;
242 case UNDEFINED:
243 fprintf (outf, "%sUNDEFINED", prefix);
244 break;
245 case VARYING:
246 fprintf (outf, "%sVARYING", prefix);
247 break;
248 case CONSTANT:
249 fprintf (outf, "%sCONSTANT ", prefix);
250 print_generic_expr (outf, val.value, dump_flags);
251 break;
252 default:
253 gcc_unreachable ();
258 /* Print lattice value VAL to stderr. */
260 void debug_lattice_value (prop_value_t val);
262 void
263 debug_lattice_value (prop_value_t val)
265 dump_lattice_value (stderr, "", val);
266 fprintf (stderr, "\n");
270 /* The regular is_gimple_min_invariant does a shallow test of the object.
271 It assumes that full gimplification has happened, or will happen on the
272 object. For a value coming from DECL_INITIAL, this is not true, so we
273 have to be more strict ourselves. */
275 static bool
276 ccp_decl_initial_min_invariant (tree t)
278 if (!is_gimple_min_invariant (t))
279 return false;
280 if (TREE_CODE (t) == ADDR_EXPR)
282 /* Inline and unroll is_gimple_addressable. */
283 while (1)
285 t = TREE_OPERAND (t, 0);
286 if (is_gimple_id (t))
287 return true;
288 if (!handled_component_p (t))
289 return false;
292 return true;
295 /* If SYM is a constant variable with known value, return the value.
296 NULL_TREE is returned otherwise. */
298 static tree
299 get_symbol_constant_value (tree sym)
301 if (TREE_STATIC (sym)
302 && TREE_READONLY (sym)
303 && !MTAG_P (sym))
305 tree val = DECL_INITIAL (sym);
306 if (val
307 && ccp_decl_initial_min_invariant (val))
308 return val;
311 return NULL_TREE;
314 /* Compute a default value for variable VAR and store it in the
315 CONST_VAL array. The following rules are used to get default
316 values:
318 1- Global and static variables that are declared constant are
319 considered CONSTANT.
321 2- Any other value is considered UNDEFINED. This is useful when
322 considering PHI nodes. PHI arguments that are undefined do not
323 change the constant value of the PHI node, which allows for more
324 constants to be propagated.
326 3- If SSA_NAME_VALUE is set and it is a constant, its value is
327 used.
329 4- Variables defined by statements other than assignments and PHI
330 nodes are considered VARYING.
332 5- Initial values of variables that are not GIMPLE registers are
333 considered VARYING. */
335 static prop_value_t
336 get_default_value (tree var)
338 tree sym = SSA_NAME_VAR (var);
339 prop_value_t val = { UNINITIALIZED, NULL_TREE, NULL_TREE };
340 tree cst_val;
342 if (!do_store_ccp && !is_gimple_reg (var))
344 /* Short circuit for regular CCP. We are not interested in any
345 non-register when DO_STORE_CCP is false. */
346 val.lattice_val = VARYING;
348 else if (SSA_NAME_VALUE (var)
349 && is_gimple_min_invariant (SSA_NAME_VALUE (var)))
351 val.lattice_val = CONSTANT;
352 val.value = SSA_NAME_VALUE (var);
354 else if ((cst_val = get_symbol_constant_value (sym)) != NULL_TREE)
356 /* Globals and static variables declared 'const' take their
357 initial value. */
358 val.lattice_val = CONSTANT;
359 val.value = cst_val;
360 val.mem_ref = sym;
362 else
364 tree stmt = SSA_NAME_DEF_STMT (var);
366 if (IS_EMPTY_STMT (stmt))
368 /* Variables defined by an empty statement are those used
369 before being initialized. If VAR is a local variable, we
370 can assume initially that it is UNDEFINED, otherwise we must
371 consider it VARYING. */
372 if (is_gimple_reg (sym) && TREE_CODE (sym) != PARM_DECL)
373 val.lattice_val = UNDEFINED;
374 else
375 val.lattice_val = VARYING;
377 else if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
378 || TREE_CODE (stmt) == PHI_NODE)
380 /* Any other variable defined by an assignment or a PHI node
381 is considered UNDEFINED. */
382 val.lattice_val = UNDEFINED;
384 else
386 /* Otherwise, VAR will never take on a constant value. */
387 val.lattice_val = VARYING;
391 return val;
395 /* Get the constant value associated with variable VAR. */
397 static inline prop_value_t *
398 get_value (tree var)
400 prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
402 if (val->lattice_val == UNINITIALIZED)
403 *val = get_default_value (var);
405 return val;
408 /* Sets the value associated with VAR to VARYING. */
410 static inline void
411 set_value_varying (tree var)
413 prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
415 val->lattice_val = VARYING;
416 val->value = NULL_TREE;
417 val->mem_ref = NULL_TREE;
420 /* For float types, modify the value of VAL to make ccp work correctly
421 for non-standard values (-0, NaN):
423 If HONOR_SIGNED_ZEROS is false, and VAL = -0, we canonicalize it to 0.
424 If HONOR_NANS is false, and VAL is NaN, we canonicalize it to UNDEFINED.
425 This is to fix the following problem (see PR 29921): Suppose we have
427 x = 0.0 * y
429 and we set value of y to NaN. This causes value of x to be set to NaN.
430 When we later determine that y is in fact VARYING, fold uses the fact
431 that HONOR_NANS is false, and we try to change the value of x to 0,
432 causing an ICE. With HONOR_NANS being false, the real appearance of
433 NaN would cause undefined behavior, though, so claiming that y (and x)
434 are UNDEFINED initially is correct. */
436 static void
437 canonicalize_float_value (prop_value_t *val)
439 enum machine_mode mode;
440 tree type;
441 REAL_VALUE_TYPE d;
443 if (val->lattice_val != CONSTANT
444 || TREE_CODE (val->value) != REAL_CST)
445 return;
447 d = TREE_REAL_CST (val->value);
448 type = TREE_TYPE (val->value);
449 mode = TYPE_MODE (type);
451 if (!HONOR_SIGNED_ZEROS (mode)
452 && REAL_VALUE_MINUS_ZERO (d))
454 val->value = build_real (type, dconst0);
455 return;
458 if (!HONOR_NANS (mode)
459 && REAL_VALUE_ISNAN (d))
461 val->lattice_val = UNDEFINED;
462 val->value = NULL;
463 val->mem_ref = NULL;
464 return;
468 /* Set the value for variable VAR to NEW_VAL. Return true if the new
469 value is different from VAR's previous value. */
471 static bool
472 set_lattice_value (tree var, prop_value_t new_val)
474 prop_value_t *old_val = get_value (var);
476 canonicalize_float_value (&new_val);
478 /* Lattice transitions must always be monotonically increasing in
479 value. If *OLD_VAL and NEW_VAL are the same, return false to
480 inform the caller that this was a non-transition. */
482 gcc_assert (old_val->lattice_val < new_val.lattice_val
483 || (old_val->lattice_val == new_val.lattice_val
484 && ((!old_val->value && !new_val.value)
485 || operand_equal_p (old_val->value, new_val.value, 0))
486 && old_val->mem_ref == new_val.mem_ref));
488 if (old_val->lattice_val != new_val.lattice_val)
490 if (dump_file && (dump_flags & TDF_DETAILS))
492 dump_lattice_value (dump_file, "Lattice value changed to ", new_val);
493 fprintf (dump_file, ". Adding SSA edges to worklist.\n");
496 *old_val = new_val;
498 gcc_assert (new_val.lattice_val != UNDEFINED);
499 return true;
502 return false;
506 /* Return the likely CCP lattice value for STMT.
508 If STMT has no operands, then return CONSTANT.
510 Else if undefinedness of operands of STMT cause its value to be
511 undefined, then return UNDEFINED.
513 Else if any operands of STMT are constants, then return CONSTANT.
515 Else return VARYING. */
517 static ccp_lattice_t
518 likely_value (tree stmt)
520 bool has_constant_operand, has_undefined_operand, all_undefined_operands;
521 stmt_ann_t ann;
522 tree use;
523 ssa_op_iter iter;
525 ann = stmt_ann (stmt);
527 /* If the statement has volatile operands, it won't fold to a
528 constant value. */
529 if (ann->has_volatile_ops)
530 return VARYING;
532 /* If we are not doing store-ccp, statements with loads
533 and/or stores will never fold into a constant. */
534 if (!do_store_ccp
535 && !ZERO_SSA_OPERANDS (stmt, SSA_OP_ALL_VIRTUALS))
536 return VARYING;
539 /* A CALL_EXPR is assumed to be varying. NOTE: This may be overly
540 conservative, in the presence of const and pure calls. */
541 if (get_call_expr_in (stmt) != NULL_TREE)
542 return VARYING;
544 /* Anything other than assignments and conditional jumps are not
545 interesting for CCP. */
546 if (TREE_CODE (stmt) != GIMPLE_MODIFY_STMT
547 && !(TREE_CODE (stmt) == RETURN_EXPR && get_rhs (stmt) != NULL_TREE)
548 && TREE_CODE (stmt) != COND_EXPR
549 && TREE_CODE (stmt) != SWITCH_EXPR)
550 return VARYING;
552 if (is_gimple_min_invariant (get_rhs (stmt)))
553 return CONSTANT;
555 has_constant_operand = false;
556 has_undefined_operand = false;
557 all_undefined_operands = true;
558 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE | SSA_OP_VUSE)
560 prop_value_t *val = get_value (use);
562 if (val->lattice_val == UNDEFINED)
563 has_undefined_operand = true;
564 else
565 all_undefined_operands = false;
567 if (val->lattice_val == CONSTANT)
568 has_constant_operand = true;
571 /* If the operation combines operands like COMPLEX_EXPR make sure to
572 not mark the result UNDEFINED if only one part of the result is
573 undefined. */
574 if (has_undefined_operand
575 && all_undefined_operands)
576 return UNDEFINED;
577 else if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
578 && has_undefined_operand)
580 switch (TREE_CODE (GIMPLE_STMT_OPERAND (stmt, 1)))
582 /* Unary operators are handled with all_undefined_operands. */
583 case PLUS_EXPR:
584 case MINUS_EXPR:
585 case POINTER_PLUS_EXPR:
586 /* Not MIN_EXPR, MAX_EXPR. One VARYING operand may be selected.
587 Not bitwise operators, one VARYING operand may specify the
588 result completely. Not logical operators for the same reason.
589 Not COMPLEX_EXPR as one VARYING operand makes the result partly
590 not UNDEFINED. Not *DIV_EXPR, comparisons and shifts because
591 the undefined operand may be promoted. */
592 return UNDEFINED;
594 default:
598 /* If there was an UNDEFINED operand but the result may be not UNDEFINED
599 fall back to VARYING even if there were CONSTANT operands. */
600 if (has_undefined_operand)
601 return VARYING;
603 if (has_constant_operand
604 /* We do not consider virtual operands here -- load from read-only
605 memory may have only VARYING virtual operands, but still be
606 constant. */
607 || ZERO_SSA_OPERANDS (stmt, SSA_OP_USE))
608 return CONSTANT;
610 return VARYING;
613 /* Returns true if STMT cannot be constant. */
615 static bool
616 surely_varying_stmt_p (tree stmt)
618 /* If the statement has operands that we cannot handle, it cannot be
619 constant. */
620 if (stmt_ann (stmt)->has_volatile_ops)
621 return true;
623 if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_ALL_VIRTUALS))
625 if (!do_store_ccp)
626 return true;
628 /* We can only handle simple loads and stores. */
629 if (!stmt_makes_single_load (stmt)
630 && !stmt_makes_single_store (stmt))
631 return true;
634 /* If it contains a call, it is varying. */
635 if (get_call_expr_in (stmt) != NULL_TREE)
636 return true;
638 /* Anything other than assignments and conditional jumps are not
639 interesting for CCP. */
640 if (TREE_CODE (stmt) != GIMPLE_MODIFY_STMT
641 && !(TREE_CODE (stmt) == RETURN_EXPR && get_rhs (stmt) != NULL_TREE)
642 && TREE_CODE (stmt) != COND_EXPR
643 && TREE_CODE (stmt) != SWITCH_EXPR)
644 return true;
646 return false;
649 /* Initialize local data structures for CCP. */
651 static void
652 ccp_initialize (void)
654 basic_block bb;
656 const_val = XCNEWVEC (prop_value_t, num_ssa_names);
658 /* Initialize simulation flags for PHI nodes and statements. */
659 FOR_EACH_BB (bb)
661 block_stmt_iterator i;
663 for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
665 tree stmt = bsi_stmt (i);
666 bool is_varying = surely_varying_stmt_p (stmt);
668 if (is_varying)
670 tree def;
671 ssa_op_iter iter;
673 /* If the statement will not produce a constant, mark
674 all its outputs VARYING. */
675 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
677 if (is_varying)
678 set_value_varying (def);
682 DONT_SIMULATE_AGAIN (stmt) = is_varying;
686 /* Now process PHI nodes. We never set DONT_SIMULATE_AGAIN on phi node,
687 since we do not know which edges are executable yet, except for
688 phi nodes for virtual operands when we do not do store ccp. */
689 FOR_EACH_BB (bb)
691 tree phi;
693 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
695 if (!do_store_ccp && !is_gimple_reg (PHI_RESULT (phi)))
696 DONT_SIMULATE_AGAIN (phi) = true;
697 else
698 DONT_SIMULATE_AGAIN (phi) = false;
704 /* Do final substitution of propagated values, cleanup the flowgraph and
705 free allocated storage.
707 Return TRUE when something was optimized. */
709 static bool
710 ccp_finalize (void)
712 /* Perform substitutions based on the known constant values. */
713 bool something_changed = substitute_and_fold (const_val, false);
715 free (const_val);
716 return something_changed;;
720 /* Compute the meet operator between *VAL1 and *VAL2. Store the result
721 in VAL1.
723 any M UNDEFINED = any
724 any M VARYING = VARYING
725 Ci M Cj = Ci if (i == j)
726 Ci M Cj = VARYING if (i != j)
729 static void
730 ccp_lattice_meet (prop_value_t *val1, prop_value_t *val2)
732 if (val1->lattice_val == UNDEFINED)
734 /* UNDEFINED M any = any */
735 *val1 = *val2;
737 else if (val2->lattice_val == UNDEFINED)
739 /* any M UNDEFINED = any
740 Nothing to do. VAL1 already contains the value we want. */
743 else if (val1->lattice_val == VARYING
744 || val2->lattice_val == VARYING)
746 /* any M VARYING = VARYING. */
747 val1->lattice_val = VARYING;
748 val1->value = NULL_TREE;
749 val1->mem_ref = NULL_TREE;
751 else if (val1->lattice_val == CONSTANT
752 && val2->lattice_val == CONSTANT
753 && simple_cst_equal (val1->value, val2->value) == 1
754 && (!do_store_ccp
755 || (val1->mem_ref && val2->mem_ref
756 && operand_equal_p (val1->mem_ref, val2->mem_ref, 0))))
758 /* Ci M Cj = Ci if (i == j)
759 Ci M Cj = VARYING if (i != j)
761 If these two values come from memory stores, make sure that
762 they come from the same memory reference. */
763 val1->lattice_val = CONSTANT;
764 val1->value = val1->value;
765 val1->mem_ref = val1->mem_ref;
767 else
769 /* Any other combination is VARYING. */
770 val1->lattice_val = VARYING;
771 val1->value = NULL_TREE;
772 val1->mem_ref = NULL_TREE;
777 /* Loop through the PHI_NODE's parameters for BLOCK and compare their
778 lattice values to determine PHI_NODE's lattice value. The value of a
779 PHI node is determined calling ccp_lattice_meet with all the arguments
780 of the PHI node that are incoming via executable edges. */
782 static enum ssa_prop_result
783 ccp_visit_phi_node (tree phi)
785 int i;
786 prop_value_t *old_val, new_val;
788 if (dump_file && (dump_flags & TDF_DETAILS))
790 fprintf (dump_file, "\nVisiting PHI node: ");
791 print_generic_expr (dump_file, phi, dump_flags);
794 old_val = get_value (PHI_RESULT (phi));
795 switch (old_val->lattice_val)
797 case VARYING:
798 return SSA_PROP_VARYING;
800 case CONSTANT:
801 new_val = *old_val;
802 break;
804 case UNDEFINED:
805 new_val.lattice_val = UNDEFINED;
806 new_val.value = NULL_TREE;
807 new_val.mem_ref = NULL_TREE;
808 break;
810 default:
811 gcc_unreachable ();
814 for (i = 0; i < PHI_NUM_ARGS (phi); i++)
816 /* Compute the meet operator over all the PHI arguments flowing
817 through executable edges. */
818 edge e = PHI_ARG_EDGE (phi, i);
820 if (dump_file && (dump_flags & TDF_DETAILS))
822 fprintf (dump_file,
823 "\n Argument #%d (%d -> %d %sexecutable)\n",
824 i, e->src->index, e->dest->index,
825 (e->flags & EDGE_EXECUTABLE) ? "" : "not ");
828 /* If the incoming edge is executable, Compute the meet operator for
829 the existing value of the PHI node and the current PHI argument. */
830 if (e->flags & EDGE_EXECUTABLE)
832 tree arg = PHI_ARG_DEF (phi, i);
833 prop_value_t arg_val;
835 if (is_gimple_min_invariant (arg))
837 arg_val.lattice_val = CONSTANT;
838 arg_val.value = arg;
839 arg_val.mem_ref = NULL_TREE;
841 else
842 arg_val = *(get_value (arg));
844 ccp_lattice_meet (&new_val, &arg_val);
846 if (dump_file && (dump_flags & TDF_DETAILS))
848 fprintf (dump_file, "\t");
849 print_generic_expr (dump_file, arg, dump_flags);
850 dump_lattice_value (dump_file, "\tValue: ", arg_val);
851 fprintf (dump_file, "\n");
854 if (new_val.lattice_val == VARYING)
855 break;
859 if (dump_file && (dump_flags & TDF_DETAILS))
861 dump_lattice_value (dump_file, "\n PHI node value: ", new_val);
862 fprintf (dump_file, "\n\n");
865 /* Make the transition to the new value. */
866 if (set_lattice_value (PHI_RESULT (phi), new_val))
868 if (new_val.lattice_val == VARYING)
869 return SSA_PROP_VARYING;
870 else
871 return SSA_PROP_INTERESTING;
873 else
874 return SSA_PROP_NOT_INTERESTING;
878 /* CCP specific front-end to the non-destructive constant folding
879 routines.
881 Attempt to simplify the RHS of STMT knowing that one or more
882 operands are constants.
884 If simplification is possible, return the simplified RHS,
885 otherwise return the original RHS. */
887 static tree
888 ccp_fold (tree stmt)
890 tree rhs = get_rhs (stmt);
891 enum tree_code code = TREE_CODE (rhs);
892 enum tree_code_class kind = TREE_CODE_CLASS (code);
893 tree retval = NULL_TREE;
895 if (TREE_CODE (rhs) == SSA_NAME)
897 /* If the RHS is an SSA_NAME, return its known constant value,
898 if any. */
899 return get_value (rhs)->value;
901 else if (do_store_ccp && stmt_makes_single_load (stmt))
903 /* If the RHS is a memory load, see if the VUSEs associated with
904 it are a valid constant for that memory load. */
905 prop_value_t *val = get_value_loaded_by (stmt, const_val);
906 if (val && val->mem_ref)
908 if (operand_equal_p (val->mem_ref, rhs, 0))
909 return val->value;
911 /* If RHS is extracting REALPART_EXPR or IMAGPART_EXPR of a
912 complex type with a known constant value, return it. */
913 if ((TREE_CODE (rhs) == REALPART_EXPR
914 || TREE_CODE (rhs) == IMAGPART_EXPR)
915 && operand_equal_p (val->mem_ref, TREE_OPERAND (rhs, 0), 0))
916 return fold_build1 (TREE_CODE (rhs), TREE_TYPE (rhs), val->value);
918 return NULL_TREE;
921 /* Unary operators. Note that we know the single operand must
922 be a constant. So this should almost always return a
923 simplified RHS. */
924 if (kind == tcc_unary)
926 /* Handle unary operators which can appear in GIMPLE form. */
927 tree op0 = TREE_OPERAND (rhs, 0);
929 /* Simplify the operand down to a constant. */
930 if (TREE_CODE (op0) == SSA_NAME)
932 prop_value_t *val = get_value (op0);
933 if (val->lattice_val == CONSTANT)
934 op0 = get_value (op0)->value;
937 if ((code == NOP_EXPR || code == CONVERT_EXPR)
938 && useless_type_conversion_p (TREE_TYPE (rhs), TREE_TYPE (op0)))
939 return op0;
940 return fold_unary (code, TREE_TYPE (rhs), op0);
943 /* Binary and comparison operators. We know one or both of the
944 operands are constants. */
945 else if (kind == tcc_binary
946 || kind == tcc_comparison
947 || code == TRUTH_AND_EXPR
948 || code == TRUTH_OR_EXPR
949 || code == TRUTH_XOR_EXPR)
951 /* Handle binary and comparison operators that can appear in
952 GIMPLE form. */
953 tree op0 = TREE_OPERAND (rhs, 0);
954 tree op1 = TREE_OPERAND (rhs, 1);
956 /* Simplify the operands down to constants when appropriate. */
957 if (TREE_CODE (op0) == SSA_NAME)
959 prop_value_t *val = get_value (op0);
960 if (val->lattice_val == CONSTANT)
961 op0 = val->value;
964 if (TREE_CODE (op1) == SSA_NAME)
966 prop_value_t *val = get_value (op1);
967 if (val->lattice_val == CONSTANT)
968 op1 = val->value;
971 return fold_binary (code, TREE_TYPE (rhs), op0, op1);
974 /* We may be able to fold away calls to builtin functions if their
975 arguments are constants. */
976 else if (code == CALL_EXPR
977 && TREE_CODE (CALL_EXPR_FN (rhs)) == ADDR_EXPR
978 && TREE_CODE (TREE_OPERAND (CALL_EXPR_FN (rhs), 0)) == FUNCTION_DECL
979 && DECL_BUILT_IN (TREE_OPERAND (CALL_EXPR_FN (rhs), 0)))
981 if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_USE))
983 tree *orig, var;
984 size_t i = 0;
985 ssa_op_iter iter;
986 use_operand_p var_p;
988 /* Preserve the original values of every operand. */
989 orig = XNEWVEC (tree, NUM_SSA_OPERANDS (stmt, SSA_OP_USE));
990 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
991 orig[i++] = var;
993 /* Substitute operands with their values and try to fold. */
994 replace_uses_in (stmt, NULL, const_val);
995 retval = fold_call_expr (rhs, false);
997 /* Restore operands to their original form. */
998 i = 0;
999 FOR_EACH_SSA_USE_OPERAND (var_p, stmt, iter, SSA_OP_USE)
1000 SET_USE (var_p, orig[i++]);
1001 free (orig);
1004 else
1005 return rhs;
1007 /* If we got a simplified form, see if we need to convert its type. */
1008 if (retval)
1009 return fold_convert (TREE_TYPE (rhs), retval);
1011 /* No simplification was possible. */
1012 return rhs;
1016 /* Return the tree representing the element referenced by T if T is an
1017 ARRAY_REF or COMPONENT_REF into constant aggregates. Return
1018 NULL_TREE otherwise. */
1020 static tree
1021 fold_const_aggregate_ref (tree t)
1023 prop_value_t *value;
1024 tree base, ctor, idx, field;
1025 unsigned HOST_WIDE_INT cnt;
1026 tree cfield, cval;
1028 switch (TREE_CODE (t))
1030 case ARRAY_REF:
1031 /* Get a CONSTRUCTOR. If BASE is a VAR_DECL, get its
1032 DECL_INITIAL. If BASE is a nested reference into another
1033 ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
1034 the inner reference. */
1035 base = TREE_OPERAND (t, 0);
1036 switch (TREE_CODE (base))
1038 case VAR_DECL:
1039 if (!TREE_READONLY (base)
1040 || TREE_CODE (TREE_TYPE (base)) != ARRAY_TYPE
1041 || !targetm.binds_local_p (base))
1042 return NULL_TREE;
1044 ctor = DECL_INITIAL (base);
1045 break;
1047 case ARRAY_REF:
1048 case COMPONENT_REF:
1049 ctor = fold_const_aggregate_ref (base);
1050 break;
1052 default:
1053 return NULL_TREE;
1056 if (ctor == NULL_TREE
1057 || (TREE_CODE (ctor) != CONSTRUCTOR
1058 && TREE_CODE (ctor) != STRING_CST)
1059 || !TREE_STATIC (ctor))
1060 return NULL_TREE;
1062 /* Get the index. If we have an SSA_NAME, try to resolve it
1063 with the current lattice value for the SSA_NAME. */
1064 idx = TREE_OPERAND (t, 1);
1065 switch (TREE_CODE (idx))
1067 case SSA_NAME:
1068 if ((value = get_value (idx))
1069 && value->lattice_val == CONSTANT
1070 && TREE_CODE (value->value) == INTEGER_CST)
1071 idx = value->value;
1072 else
1073 return NULL_TREE;
1074 break;
1076 case INTEGER_CST:
1077 break;
1079 default:
1080 return NULL_TREE;
1083 /* Fold read from constant string. */
1084 if (TREE_CODE (ctor) == STRING_CST)
1086 if ((TYPE_MODE (TREE_TYPE (t))
1087 == TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1088 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1089 == MODE_INT)
1090 && GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor)))) == 1
1091 && compare_tree_int (idx, TREE_STRING_LENGTH (ctor)) < 0)
1092 return build_int_cst_type (TREE_TYPE (t),
1093 (TREE_STRING_POINTER (ctor)
1094 [TREE_INT_CST_LOW (idx)]));
1095 return NULL_TREE;
1098 /* Whoo-hoo! I'll fold ya baby. Yeah! */
1099 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1100 if (tree_int_cst_equal (cfield, idx))
1101 return cval;
1102 break;
1104 case COMPONENT_REF:
1105 /* Get a CONSTRUCTOR. If BASE is a VAR_DECL, get its
1106 DECL_INITIAL. If BASE is a nested reference into another
1107 ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
1108 the inner reference. */
1109 base = TREE_OPERAND (t, 0);
1110 switch (TREE_CODE (base))
1112 case VAR_DECL:
1113 if (!TREE_READONLY (base)
1114 || TREE_CODE (TREE_TYPE (base)) != RECORD_TYPE
1115 || !targetm.binds_local_p (base))
1116 return NULL_TREE;
1118 ctor = DECL_INITIAL (base);
1119 break;
1121 case ARRAY_REF:
1122 case COMPONENT_REF:
1123 ctor = fold_const_aggregate_ref (base);
1124 break;
1126 default:
1127 return NULL_TREE;
1130 if (ctor == NULL_TREE
1131 || TREE_CODE (ctor) != CONSTRUCTOR
1132 || !TREE_STATIC (ctor))
1133 return NULL_TREE;
1135 field = TREE_OPERAND (t, 1);
1137 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1138 if (cfield == field
1139 /* FIXME: Handle bit-fields. */
1140 && ! DECL_BIT_FIELD (cfield))
1141 return cval;
1142 break;
1144 case REALPART_EXPR:
1145 case IMAGPART_EXPR:
1147 tree c = fold_const_aggregate_ref (TREE_OPERAND (t, 0));
1148 if (c && TREE_CODE (c) == COMPLEX_CST)
1149 return fold_build1 (TREE_CODE (t), TREE_TYPE (t), c);
1150 break;
1153 default:
1154 break;
1157 return NULL_TREE;
1160 /* Evaluate statement STMT. */
1162 static prop_value_t
1163 evaluate_stmt (tree stmt)
1165 prop_value_t val;
1166 tree simplified = NULL_TREE;
1167 ccp_lattice_t likelyvalue = likely_value (stmt);
1168 bool is_constant;
1170 val.mem_ref = NULL_TREE;
1172 fold_defer_overflow_warnings ();
1174 /* If the statement is likely to have a CONSTANT result, then try
1175 to fold the statement to determine the constant value. */
1176 if (likelyvalue == CONSTANT)
1177 simplified = ccp_fold (stmt);
1178 /* If the statement is likely to have a VARYING result, then do not
1179 bother folding the statement. */
1180 if (likelyvalue == VARYING)
1181 simplified = get_rhs (stmt);
1182 /* If the statement is an ARRAY_REF or COMPONENT_REF into constant
1183 aggregates, extract the referenced constant. Otherwise the
1184 statement is likely to have an UNDEFINED value, and there will be
1185 nothing to do. Note that fold_const_aggregate_ref returns
1186 NULL_TREE if the first case does not match. */
1187 else if (!simplified)
1188 simplified = fold_const_aggregate_ref (get_rhs (stmt));
1190 is_constant = simplified && is_gimple_min_invariant (simplified);
1192 fold_undefer_overflow_warnings (is_constant, stmt, 0);
1194 if (is_constant)
1196 /* The statement produced a constant value. */
1197 val.lattice_val = CONSTANT;
1198 val.value = simplified;
1200 else
1202 /* The statement produced a nonconstant value. If the statement
1203 had UNDEFINED operands, then the result of the statement
1204 should be UNDEFINED. Otherwise, the statement is VARYING. */
1205 if (likelyvalue == UNDEFINED)
1206 val.lattice_val = likelyvalue;
1207 else
1208 val.lattice_val = VARYING;
1210 val.value = NULL_TREE;
1213 return val;
1217 /* Visit the assignment statement STMT. Set the value of its LHS to the
1218 value computed by the RHS and store LHS in *OUTPUT_P. If STMT
1219 creates virtual definitions, set the value of each new name to that
1220 of the RHS (if we can derive a constant out of the RHS). */
1222 static enum ssa_prop_result
1223 visit_assignment (tree stmt, tree *output_p)
1225 prop_value_t val;
1226 tree lhs, rhs;
1227 enum ssa_prop_result retval;
1229 lhs = GIMPLE_STMT_OPERAND (stmt, 0);
1230 rhs = GIMPLE_STMT_OPERAND (stmt, 1);
1232 if (TREE_CODE (rhs) == SSA_NAME)
1234 /* For a simple copy operation, we copy the lattice values. */
1235 prop_value_t *nval = get_value (rhs);
1236 val = *nval;
1238 else if (do_store_ccp && stmt_makes_single_load (stmt))
1240 /* Same as above, but the RHS is not a gimple register and yet
1241 has a known VUSE. If STMT is loading from the same memory
1242 location that created the SSA_NAMEs for the virtual operands,
1243 we can propagate the value on the RHS. */
1244 prop_value_t *nval = get_value_loaded_by (stmt, const_val);
1246 if (nval
1247 && nval->mem_ref
1248 && operand_equal_p (nval->mem_ref, rhs, 0))
1249 val = *nval;
1250 else
1251 val = evaluate_stmt (stmt);
1253 else
1254 /* Evaluate the statement. */
1255 val = evaluate_stmt (stmt);
1257 /* If the original LHS was a VIEW_CONVERT_EXPR, modify the constant
1258 value to be a VIEW_CONVERT_EXPR of the old constant value.
1260 ??? Also, if this was a definition of a bitfield, we need to widen
1261 the constant value into the type of the destination variable. This
1262 should not be necessary if GCC represented bitfields properly. */
1264 tree orig_lhs = GIMPLE_STMT_OPERAND (stmt, 0);
1266 if (TREE_CODE (orig_lhs) == VIEW_CONVERT_EXPR
1267 && val.lattice_val == CONSTANT)
1269 tree w = fold_unary (VIEW_CONVERT_EXPR,
1270 TREE_TYPE (TREE_OPERAND (orig_lhs, 0)),
1271 val.value);
1273 orig_lhs = TREE_OPERAND (orig_lhs, 0);
1274 if (w && is_gimple_min_invariant (w))
1275 val.value = w;
1276 else
1278 val.lattice_val = VARYING;
1279 val.value = NULL;
1283 if (val.lattice_val == CONSTANT
1284 && TREE_CODE (orig_lhs) == COMPONENT_REF
1285 && DECL_BIT_FIELD (TREE_OPERAND (orig_lhs, 1)))
1287 tree w = widen_bitfield (val.value, TREE_OPERAND (orig_lhs, 1),
1288 orig_lhs);
1290 if (w && is_gimple_min_invariant (w))
1291 val.value = w;
1292 else
1294 val.lattice_val = VARYING;
1295 val.value = NULL_TREE;
1296 val.mem_ref = NULL_TREE;
1301 retval = SSA_PROP_NOT_INTERESTING;
1303 /* Set the lattice value of the statement's output. */
1304 if (TREE_CODE (lhs) == SSA_NAME)
1306 /* If STMT is an assignment to an SSA_NAME, we only have one
1307 value to set. */
1308 if (set_lattice_value (lhs, val))
1310 *output_p = lhs;
1311 if (val.lattice_val == VARYING)
1312 retval = SSA_PROP_VARYING;
1313 else
1314 retval = SSA_PROP_INTERESTING;
1317 else if (do_store_ccp && stmt_makes_single_store (stmt))
1319 /* Otherwise, set the names in VDEF operands to the new
1320 constant value and mark the LHS as the memory reference
1321 associated with VAL. */
1322 ssa_op_iter i;
1323 tree vdef;
1324 bool changed;
1326 /* Mark VAL as stored in the LHS of this assignment. */
1327 if (val.lattice_val == CONSTANT)
1328 val.mem_ref = lhs;
1330 /* Set the value of every VDEF to VAL. */
1331 changed = false;
1332 FOR_EACH_SSA_TREE_OPERAND (vdef, stmt, i, SSA_OP_VIRTUAL_DEFS)
1334 /* See PR 29801. We may have VDEFs for read-only variables
1335 (see the handling of unmodifiable variables in
1336 add_virtual_operand); do not attempt to change their value. */
1337 if (get_symbol_constant_value (SSA_NAME_VAR (vdef)) != NULL_TREE)
1338 continue;
1340 changed |= set_lattice_value (vdef, val);
1343 /* Note that for propagation purposes, we are only interested in
1344 visiting statements that load the exact same memory reference
1345 stored here. Those statements will have the exact same list
1346 of virtual uses, so it is enough to set the output of this
1347 statement to be its first virtual definition. */
1348 *output_p = first_vdef (stmt);
1349 if (changed)
1351 if (val.lattice_val == VARYING)
1352 retval = SSA_PROP_VARYING;
1353 else
1354 retval = SSA_PROP_INTERESTING;
1358 return retval;
1362 /* Visit the conditional statement STMT. Return SSA_PROP_INTERESTING
1363 if it can determine which edge will be taken. Otherwise, return
1364 SSA_PROP_VARYING. */
1366 static enum ssa_prop_result
1367 visit_cond_stmt (tree stmt, edge *taken_edge_p)
1369 prop_value_t val;
1370 basic_block block;
1372 block = bb_for_stmt (stmt);
1373 val = evaluate_stmt (stmt);
1375 /* Find which edge out of the conditional block will be taken and add it
1376 to the worklist. If no single edge can be determined statically,
1377 return SSA_PROP_VARYING to feed all the outgoing edges to the
1378 propagation engine. */
1379 *taken_edge_p = val.value ? find_taken_edge (block, val.value) : 0;
1380 if (*taken_edge_p)
1381 return SSA_PROP_INTERESTING;
1382 else
1383 return SSA_PROP_VARYING;
1387 /* Evaluate statement STMT. If the statement produces an output value and
1388 its evaluation changes the lattice value of its output, return
1389 SSA_PROP_INTERESTING and set *OUTPUT_P to the SSA_NAME holding the
1390 output value.
1392 If STMT is a conditional branch and we can determine its truth
1393 value, set *TAKEN_EDGE_P accordingly. If STMT produces a varying
1394 value, return SSA_PROP_VARYING. */
1396 static enum ssa_prop_result
1397 ccp_visit_stmt (tree stmt, edge *taken_edge_p, tree *output_p)
1399 tree def;
1400 ssa_op_iter iter;
1402 if (dump_file && (dump_flags & TDF_DETAILS))
1404 fprintf (dump_file, "\nVisiting statement:\n");
1405 print_generic_stmt (dump_file, stmt, dump_flags);
1406 fprintf (dump_file, "\n");
1409 if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT)
1411 /* If the statement is an assignment that produces a single
1412 output value, evaluate its RHS to see if the lattice value of
1413 its output has changed. */
1414 return visit_assignment (stmt, output_p);
1416 else if (TREE_CODE (stmt) == COND_EXPR || TREE_CODE (stmt) == SWITCH_EXPR)
1418 /* If STMT is a conditional branch, see if we can determine
1419 which branch will be taken. */
1420 return visit_cond_stmt (stmt, taken_edge_p);
1423 /* Any other kind of statement is not interesting for constant
1424 propagation and, therefore, not worth simulating. */
1425 if (dump_file && (dump_flags & TDF_DETAILS))
1426 fprintf (dump_file, "No interesting values produced. Marked VARYING.\n");
1428 /* Definitions made by statements other than assignments to
1429 SSA_NAMEs represent unknown modifications to their outputs.
1430 Mark them VARYING. */
1431 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
1433 prop_value_t v = { VARYING, NULL_TREE, NULL_TREE };
1434 set_lattice_value (def, v);
1437 return SSA_PROP_VARYING;
1441 /* Main entry point for SSA Conditional Constant Propagation. */
1443 static unsigned int
1444 execute_ssa_ccp (bool store_ccp)
1446 do_store_ccp = store_ccp;
1447 ccp_initialize ();
1448 ssa_propagate (ccp_visit_stmt, ccp_visit_phi_node);
1449 if (ccp_finalize ())
1450 return (TODO_cleanup_cfg | TODO_update_ssa | TODO_remove_unused_locals);
1451 else
1452 return 0;
1456 static unsigned int
1457 do_ssa_ccp (void)
1459 return execute_ssa_ccp (false);
1463 static bool
1464 gate_ccp (void)
1466 return flag_tree_ccp != 0;
1470 struct tree_opt_pass pass_ccp =
1472 "ccp", /* name */
1473 gate_ccp, /* gate */
1474 do_ssa_ccp, /* execute */
1475 NULL, /* sub */
1476 NULL, /* next */
1477 0, /* static_pass_number */
1478 TV_TREE_CCP, /* tv_id */
1479 PROP_cfg | PROP_ssa, /* properties_required */
1480 0, /* properties_provided */
1481 0, /* properties_destroyed */
1482 0, /* todo_flags_start */
1483 TODO_dump_func | TODO_verify_ssa
1484 | TODO_verify_stmts | TODO_ggc_collect,/* todo_flags_finish */
1485 0 /* letter */
1489 static unsigned int
1490 do_ssa_store_ccp (void)
1492 /* If STORE-CCP is not enabled, we just run regular CCP. */
1493 return execute_ssa_ccp (flag_tree_store_ccp != 0);
1496 static bool
1497 gate_store_ccp (void)
1499 /* STORE-CCP is enabled only with -ftree-store-ccp, but when
1500 -fno-tree-store-ccp is specified, we should run regular CCP.
1501 That's why the pass is enabled with either flag. */
1502 return flag_tree_store_ccp != 0 || flag_tree_ccp != 0;
1506 struct tree_opt_pass pass_store_ccp =
1508 "store_ccp", /* name */
1509 gate_store_ccp, /* gate */
1510 do_ssa_store_ccp, /* execute */
1511 NULL, /* sub */
1512 NULL, /* next */
1513 0, /* static_pass_number */
1514 TV_TREE_STORE_CCP, /* tv_id */
1515 PROP_cfg | PROP_ssa | PROP_alias, /* properties_required */
1516 0, /* properties_provided */
1517 0, /* properties_destroyed */
1518 0, /* todo_flags_start */
1519 TODO_dump_func | TODO_verify_ssa
1520 | TODO_verify_stmts | TODO_ggc_collect,/* todo_flags_finish */
1521 0 /* letter */
1524 /* Given a constant value VAL for bitfield FIELD, and a destination
1525 variable VAR, return VAL appropriately widened to fit into VAR. If
1526 FIELD is wider than HOST_WIDE_INT, NULL is returned. */
1528 tree
1529 widen_bitfield (tree val, tree field, tree var)
1531 unsigned HOST_WIDE_INT var_size, field_size;
1532 tree wide_val;
1533 unsigned HOST_WIDE_INT mask;
1534 unsigned int i;
1536 /* We can only do this if the size of the type and field and VAL are
1537 all constants representable in HOST_WIDE_INT. */
1538 if (!host_integerp (TYPE_SIZE (TREE_TYPE (var)), 1)
1539 || !host_integerp (DECL_SIZE (field), 1)
1540 || !host_integerp (val, 0))
1541 return NULL_TREE;
1543 var_size = tree_low_cst (TYPE_SIZE (TREE_TYPE (var)), 1);
1544 field_size = tree_low_cst (DECL_SIZE (field), 1);
1546 /* Give up if either the bitfield or the variable are too wide. */
1547 if (field_size > HOST_BITS_PER_WIDE_INT || var_size > HOST_BITS_PER_WIDE_INT)
1548 return NULL_TREE;
1550 gcc_assert (var_size >= field_size);
1552 /* If the sign bit of the value is not set or the field's type is unsigned,
1553 just mask off the high order bits of the value. */
1554 if (DECL_UNSIGNED (field)
1555 || !(tree_low_cst (val, 0) & (((HOST_WIDE_INT)1) << (field_size - 1))))
1557 /* Zero extension. Build a mask with the lower 'field_size' bits
1558 set and a BIT_AND_EXPR node to clear the high order bits of
1559 the value. */
1560 for (i = 0, mask = 0; i < field_size; i++)
1561 mask |= ((HOST_WIDE_INT) 1) << i;
1563 wide_val = fold_build2 (BIT_AND_EXPR, TREE_TYPE (var), val,
1564 build_int_cst (TREE_TYPE (var), mask));
1566 else
1568 /* Sign extension. Create a mask with the upper 'field_size'
1569 bits set and a BIT_IOR_EXPR to set the high order bits of the
1570 value. */
1571 for (i = 0, mask = 0; i < (var_size - field_size); i++)
1572 mask |= ((HOST_WIDE_INT) 1) << (var_size - i - 1);
1574 wide_val = fold_build2 (BIT_IOR_EXPR, TREE_TYPE (var), val,
1575 build_int_cst (TREE_TYPE (var), mask));
1578 return wide_val;
1582 /* A subroutine of fold_stmt_r. Attempts to fold *(A+O) to A[X].
1583 BASE is an array type. OFFSET is a byte displacement. ORIG_TYPE
1584 is the desired result type. */
1586 static tree
1587 maybe_fold_offset_to_array_ref (tree base, tree offset, tree orig_type)
1589 tree min_idx, idx, idx_type, elt_offset = integer_zero_node;
1590 tree array_type, elt_type, elt_size;
1591 tree domain_type;
1593 /* If BASE is an ARRAY_REF, we can pick up another offset (this time
1594 measured in units of the size of elements type) from that ARRAY_REF).
1595 We can't do anything if either is variable.
1597 The case we handle here is *(&A[N]+O). */
1598 if (TREE_CODE (base) == ARRAY_REF)
1600 tree low_bound = array_ref_low_bound (base);
1602 elt_offset = TREE_OPERAND (base, 1);
1603 if (TREE_CODE (low_bound) != INTEGER_CST
1604 || TREE_CODE (elt_offset) != INTEGER_CST)
1605 return NULL_TREE;
1607 elt_offset = int_const_binop (MINUS_EXPR, elt_offset, low_bound, 0);
1608 base = TREE_OPERAND (base, 0);
1611 /* Ignore stupid user tricks of indexing non-array variables. */
1612 array_type = TREE_TYPE (base);
1613 if (TREE_CODE (array_type) != ARRAY_TYPE)
1614 return NULL_TREE;
1615 elt_type = TREE_TYPE (array_type);
1616 if (!useless_type_conversion_p (orig_type, elt_type))
1617 return NULL_TREE;
1619 /* Use signed size type for intermediate computation on the index. */
1620 idx_type = signed_type_for (size_type_node);
1622 /* If OFFSET and ELT_OFFSET are zero, we don't care about the size of the
1623 element type (so we can use the alignment if it's not constant).
1624 Otherwise, compute the offset as an index by using a division. If the
1625 division isn't exact, then don't do anything. */
1626 elt_size = TYPE_SIZE_UNIT (elt_type);
1627 if (!elt_size)
1628 return NULL;
1629 if (integer_zerop (offset))
1631 if (TREE_CODE (elt_size) != INTEGER_CST)
1632 elt_size = size_int (TYPE_ALIGN (elt_type));
1634 idx = build_int_cst (idx_type, 0);
1636 else
1638 unsigned HOST_WIDE_INT lquo, lrem;
1639 HOST_WIDE_INT hquo, hrem;
1640 double_int soffset;
1642 /* The final array offset should be signed, so we need
1643 to sign-extend the (possibly pointer) offset here
1644 and use signed division. */
1645 soffset = double_int_sext (tree_to_double_int (offset),
1646 TYPE_PRECISION (TREE_TYPE (offset)));
1647 if (TREE_CODE (elt_size) != INTEGER_CST
1648 || div_and_round_double (TRUNC_DIV_EXPR, 0,
1649 soffset.low, soffset.high,
1650 TREE_INT_CST_LOW (elt_size),
1651 TREE_INT_CST_HIGH (elt_size),
1652 &lquo, &hquo, &lrem, &hrem)
1653 || lrem || hrem)
1654 return NULL_TREE;
1656 idx = build_int_cst_wide (idx_type, lquo, hquo);
1659 /* Assume the low bound is zero. If there is a domain type, get the
1660 low bound, if any, convert the index into that type, and add the
1661 low bound. */
1662 min_idx = build_int_cst (idx_type, 0);
1663 domain_type = TYPE_DOMAIN (array_type);
1664 if (domain_type)
1666 idx_type = domain_type;
1667 if (TYPE_MIN_VALUE (idx_type))
1668 min_idx = TYPE_MIN_VALUE (idx_type);
1669 else
1670 min_idx = fold_convert (idx_type, min_idx);
1672 if (TREE_CODE (min_idx) != INTEGER_CST)
1673 return NULL_TREE;
1675 elt_offset = fold_convert (idx_type, elt_offset);
1678 if (!integer_zerop (min_idx))
1679 idx = int_const_binop (PLUS_EXPR, idx, min_idx, 0);
1680 if (!integer_zerop (elt_offset))
1681 idx = int_const_binop (PLUS_EXPR, idx, elt_offset, 0);
1683 /* Make sure to possibly truncate late after offsetting. */
1684 idx = fold_convert (idx_type, idx);
1686 /* We don't want to construct access past array bounds. For example
1687 char *(c[4]);
1689 c[3][2]; should not be simplified into (*c)[14] or tree-vrp will give false
1690 warning. */
1691 if (domain_type && TYPE_MAX_VALUE (domain_type)
1692 && TREE_CODE (TYPE_MAX_VALUE (domain_type)) == INTEGER_CST)
1694 tree up_bound = TYPE_MAX_VALUE (domain_type);
1696 if (tree_int_cst_lt (up_bound, idx)
1697 /* Accesses after the end of arrays of size 0 (gcc
1698 extension) and 1 are likely intentional ("struct
1699 hack"). */
1700 && compare_tree_int (up_bound, 1) > 0)
1701 return NULL_TREE;
1704 return build4 (ARRAY_REF, elt_type, base, idx, NULL_TREE, NULL_TREE);
1708 /* Attempt to fold *(S+O) to S.X.
1709 BASE is a record type. OFFSET is a byte displacement. ORIG_TYPE
1710 is the desired result type. */
1712 static tree
1713 maybe_fold_offset_to_component_ref (tree record_type, tree base, tree offset,
1714 tree orig_type, bool base_is_ptr)
1716 tree f, t, field_type, tail_array_field, field_offset;
1717 tree ret;
1718 tree new_base;
1720 if (TREE_CODE (record_type) != RECORD_TYPE
1721 && TREE_CODE (record_type) != UNION_TYPE
1722 && TREE_CODE (record_type) != QUAL_UNION_TYPE)
1723 return NULL_TREE;
1725 /* Short-circuit silly cases. */
1726 if (useless_type_conversion_p (record_type, orig_type))
1727 return NULL_TREE;
1729 tail_array_field = NULL_TREE;
1730 for (f = TYPE_FIELDS (record_type); f ; f = TREE_CHAIN (f))
1732 int cmp;
1734 if (TREE_CODE (f) != FIELD_DECL)
1735 continue;
1736 if (DECL_BIT_FIELD (f))
1737 continue;
1739 if (!DECL_FIELD_OFFSET (f))
1740 continue;
1741 field_offset = byte_position (f);
1742 if (TREE_CODE (field_offset) != INTEGER_CST)
1743 continue;
1745 /* ??? Java creates "interesting" fields for representing base classes.
1746 They have no name, and have no context. With no context, we get into
1747 trouble with nonoverlapping_component_refs_p. Skip them. */
1748 if (!DECL_FIELD_CONTEXT (f))
1749 continue;
1751 /* The previous array field isn't at the end. */
1752 tail_array_field = NULL_TREE;
1754 /* Check to see if this offset overlaps with the field. */
1755 cmp = tree_int_cst_compare (field_offset, offset);
1756 if (cmp > 0)
1757 continue;
1759 field_type = TREE_TYPE (f);
1761 /* Here we exactly match the offset being checked. If the types match,
1762 then we can return that field. */
1763 if (cmp == 0
1764 && useless_type_conversion_p (orig_type, field_type))
1766 if (base_is_ptr)
1767 base = build1 (INDIRECT_REF, record_type, base);
1768 t = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE);
1769 return t;
1772 /* Don't care about offsets into the middle of scalars. */
1773 if (!AGGREGATE_TYPE_P (field_type))
1774 continue;
1776 /* Check for array at the end of the struct. This is often
1777 used as for flexible array members. We should be able to
1778 turn this into an array access anyway. */
1779 if (TREE_CODE (field_type) == ARRAY_TYPE)
1780 tail_array_field = f;
1782 /* Check the end of the field against the offset. */
1783 if (!DECL_SIZE_UNIT (f)
1784 || TREE_CODE (DECL_SIZE_UNIT (f)) != INTEGER_CST)
1785 continue;
1786 t = int_const_binop (MINUS_EXPR, offset, field_offset, 1);
1787 if (!tree_int_cst_lt (t, DECL_SIZE_UNIT (f)))
1788 continue;
1790 /* If we matched, then set offset to the displacement into
1791 this field. */
1792 if (base_is_ptr)
1793 new_base = build1 (INDIRECT_REF, record_type, base);
1794 else
1795 new_base = base;
1796 new_base = build3 (COMPONENT_REF, field_type, new_base, f, NULL_TREE);
1798 /* Recurse to possibly find the match. */
1799 ret = maybe_fold_offset_to_array_ref (new_base, t, orig_type);
1800 if (ret)
1801 return ret;
1802 ret = maybe_fold_offset_to_component_ref (field_type, new_base, t,
1803 orig_type, false);
1804 if (ret)
1805 return ret;
1808 if (!tail_array_field)
1809 return NULL_TREE;
1811 f = tail_array_field;
1812 field_type = TREE_TYPE (f);
1813 offset = int_const_binop (MINUS_EXPR, offset, byte_position (f), 1);
1815 /* If we get here, we've got an aggregate field, and a possibly
1816 nonzero offset into them. Recurse and hope for a valid match. */
1817 if (base_is_ptr)
1818 base = build1 (INDIRECT_REF, record_type, base);
1819 base = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE);
1821 t = maybe_fold_offset_to_array_ref (base, offset, orig_type);
1822 if (t)
1823 return t;
1824 return maybe_fold_offset_to_component_ref (field_type, base, offset,
1825 orig_type, false);
1828 /* Attempt to express (ORIG_TYPE)BASE+OFFSET as BASE->field_of_orig_type
1829 or BASE[index] or by combination of those.
1831 Before attempting the conversion strip off existing ADDR_EXPRs and
1832 handled component refs. */
1834 tree
1835 maybe_fold_offset_to_reference (tree base, tree offset, tree orig_type)
1837 tree ret;
1838 tree type;
1839 bool base_is_ptr = true;
1841 STRIP_NOPS (base);
1842 if (TREE_CODE (base) == ADDR_EXPR)
1844 base_is_ptr = false;
1846 base = TREE_OPERAND (base, 0);
1848 /* Handle case where existing COMPONENT_REF pick e.g. wrong field of union,
1849 so it needs to be removed and new COMPONENT_REF constructed.
1850 The wrong COMPONENT_REF are often constructed by folding the
1851 (type *)&object within the expression (type *)&object+offset */
1852 if (handled_component_p (base) && 0)
1854 HOST_WIDE_INT sub_offset, size, maxsize;
1855 tree newbase;
1856 newbase = get_ref_base_and_extent (base, &sub_offset,
1857 &size, &maxsize);
1858 gcc_assert (newbase);
1859 gcc_assert (!(sub_offset & (BITS_PER_UNIT - 1)));
1860 if (size == maxsize)
1862 base = newbase;
1863 if (sub_offset)
1864 offset = int_const_binop (PLUS_EXPR, offset,
1865 build_int_cst (TREE_TYPE (offset),
1866 sub_offset / BITS_PER_UNIT), 1);
1869 if (useless_type_conversion_p (orig_type, TREE_TYPE (base))
1870 && integer_zerop (offset))
1871 return base;
1872 type = TREE_TYPE (base);
1874 else
1876 base_is_ptr = true;
1877 if (!POINTER_TYPE_P (TREE_TYPE (base)))
1878 return NULL_TREE;
1879 type = TREE_TYPE (TREE_TYPE (base));
1881 ret = maybe_fold_offset_to_component_ref (type, base, offset,
1882 orig_type, base_is_ptr);
1883 if (!ret)
1885 if (base_is_ptr)
1886 base = build1 (INDIRECT_REF, type, base);
1887 ret = maybe_fold_offset_to_array_ref (base, offset, orig_type);
1889 return ret;
1892 /* A subroutine of fold_stmt_r. Attempt to simplify *(BASE+OFFSET).
1893 Return the simplified expression, or NULL if nothing could be done. */
1895 static tree
1896 maybe_fold_stmt_indirect (tree expr, tree base, tree offset)
1898 tree t;
1899 bool volatile_p = TREE_THIS_VOLATILE (expr);
1901 /* We may well have constructed a double-nested PLUS_EXPR via multiple
1902 substitutions. Fold that down to one. Remove NON_LVALUE_EXPRs that
1903 are sometimes added. */
1904 base = fold (base);
1905 STRIP_TYPE_NOPS (base);
1906 TREE_OPERAND (expr, 0) = base;
1908 /* One possibility is that the address reduces to a string constant. */
1909 t = fold_read_from_constant_string (expr);
1910 if (t)
1911 return t;
1913 /* Add in any offset from a POINTER_PLUS_EXPR. */
1914 if (TREE_CODE (base) == POINTER_PLUS_EXPR)
1916 tree offset2;
1918 offset2 = TREE_OPERAND (base, 1);
1919 if (TREE_CODE (offset2) != INTEGER_CST)
1920 return NULL_TREE;
1921 base = TREE_OPERAND (base, 0);
1923 offset = fold_convert (sizetype,
1924 int_const_binop (PLUS_EXPR, offset, offset2, 1));
1927 if (TREE_CODE (base) == ADDR_EXPR)
1929 tree base_addr = base;
1931 /* Strip the ADDR_EXPR. */
1932 base = TREE_OPERAND (base, 0);
1934 /* Fold away CONST_DECL to its value, if the type is scalar. */
1935 if (TREE_CODE (base) == CONST_DECL
1936 && ccp_decl_initial_min_invariant (DECL_INITIAL (base)))
1937 return DECL_INITIAL (base);
1939 /* Try folding *(&B+O) to B.X. */
1940 t = maybe_fold_offset_to_reference (base_addr, offset,
1941 TREE_TYPE (expr));
1942 if (t)
1944 TREE_THIS_VOLATILE (t) = volatile_p;
1945 return t;
1948 else
1950 /* We can get here for out-of-range string constant accesses,
1951 such as "_"[3]. Bail out of the entire substitution search
1952 and arrange for the entire statement to be replaced by a
1953 call to __builtin_trap. In all likelihood this will all be
1954 constant-folded away, but in the meantime we can't leave with
1955 something that get_expr_operands can't understand. */
1957 t = base;
1958 STRIP_NOPS (t);
1959 if (TREE_CODE (t) == ADDR_EXPR
1960 && TREE_CODE (TREE_OPERAND (t, 0)) == STRING_CST)
1962 /* FIXME: Except that this causes problems elsewhere with dead
1963 code not being deleted, and we die in the rtl expanders
1964 because we failed to remove some ssa_name. In the meantime,
1965 just return zero. */
1966 /* FIXME2: This condition should be signaled by
1967 fold_read_from_constant_string directly, rather than
1968 re-checking for it here. */
1969 return integer_zero_node;
1972 /* Try folding *(B+O) to B->X. Still an improvement. */
1973 if (POINTER_TYPE_P (TREE_TYPE (base)))
1975 t = maybe_fold_offset_to_reference (base, offset,
1976 TREE_TYPE (expr));
1977 if (t)
1978 return t;
1982 /* Otherwise we had an offset that we could not simplify. */
1983 return NULL_TREE;
1987 /* A subroutine of fold_stmt_r. EXPR is a POINTER_PLUS_EXPR.
1989 A quaint feature extant in our address arithmetic is that there
1990 can be hidden type changes here. The type of the result need
1991 not be the same as the type of the input pointer.
1993 What we're after here is an expression of the form
1994 (T *)(&array + const)
1995 where the cast doesn't actually exist, but is implicit in the
1996 type of the POINTER_PLUS_EXPR. We'd like to turn this into
1997 &array[x]
1998 which may be able to propagate further. */
2000 static tree
2001 maybe_fold_stmt_addition (tree expr)
2003 tree op0 = TREE_OPERAND (expr, 0);
2004 tree op1 = TREE_OPERAND (expr, 1);
2005 tree ptr_type = TREE_TYPE (expr);
2006 tree ptd_type;
2007 tree t;
2009 gcc_assert (TREE_CODE (expr) == POINTER_PLUS_EXPR);
2011 /* It had better be a constant. */
2012 if (TREE_CODE (op1) != INTEGER_CST)
2013 return NULL_TREE;
2014 /* The first operand should be an ADDR_EXPR. */
2015 if (TREE_CODE (op0) != ADDR_EXPR)
2016 return NULL_TREE;
2017 op0 = TREE_OPERAND (op0, 0);
2019 /* If the first operand is an ARRAY_REF, expand it so that we can fold
2020 the offset into it. */
2021 while (TREE_CODE (op0) == ARRAY_REF)
2023 tree array_obj = TREE_OPERAND (op0, 0);
2024 tree array_idx = TREE_OPERAND (op0, 1);
2025 tree elt_type = TREE_TYPE (op0);
2026 tree elt_size = TYPE_SIZE_UNIT (elt_type);
2027 tree min_idx;
2029 if (TREE_CODE (array_idx) != INTEGER_CST)
2030 break;
2031 if (TREE_CODE (elt_size) != INTEGER_CST)
2032 break;
2034 /* Un-bias the index by the min index of the array type. */
2035 min_idx = TYPE_DOMAIN (TREE_TYPE (array_obj));
2036 if (min_idx)
2038 min_idx = TYPE_MIN_VALUE (min_idx);
2039 if (min_idx)
2041 if (TREE_CODE (min_idx) != INTEGER_CST)
2042 break;
2044 array_idx = fold_convert (TREE_TYPE (min_idx), array_idx);
2045 if (!integer_zerop (min_idx))
2046 array_idx = int_const_binop (MINUS_EXPR, array_idx,
2047 min_idx, 0);
2051 /* Convert the index to a byte offset. */
2052 array_idx = fold_convert (sizetype, array_idx);
2053 array_idx = int_const_binop (MULT_EXPR, array_idx, elt_size, 0);
2055 /* Update the operands for the next round, or for folding. */
2056 op1 = int_const_binop (PLUS_EXPR,
2057 array_idx, op1, 0);
2058 op0 = array_obj;
2061 ptd_type = TREE_TYPE (ptr_type);
2063 /* At which point we can try some of the same things as for indirects. */
2064 t = maybe_fold_offset_to_array_ref (op0, op1, ptd_type);
2065 if (!t)
2066 t = maybe_fold_offset_to_component_ref (TREE_TYPE (op0), op0, op1,
2067 ptd_type, false);
2068 if (t)
2069 t = build1 (ADDR_EXPR, ptr_type, t);
2071 return t;
2074 /* For passing state through walk_tree into fold_stmt_r and its
2075 children. */
2077 struct fold_stmt_r_data
2079 tree stmt;
2080 bool *changed_p;
2081 bool *inside_addr_expr_p;
2084 /* Subroutine of fold_stmt called via walk_tree. We perform several
2085 simplifications of EXPR_P, mostly having to do with pointer arithmetic. */
2087 static tree
2088 fold_stmt_r (tree *expr_p, int *walk_subtrees, void *data)
2090 struct fold_stmt_r_data *fold_stmt_r_data = (struct fold_stmt_r_data *) data;
2091 bool *inside_addr_expr_p = fold_stmt_r_data->inside_addr_expr_p;
2092 bool *changed_p = fold_stmt_r_data->changed_p;
2093 tree expr = *expr_p, t;
2094 bool volatile_p = TREE_THIS_VOLATILE (expr);
2096 /* ??? It'd be nice if walk_tree had a pre-order option. */
2097 switch (TREE_CODE (expr))
2099 case INDIRECT_REF:
2100 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2101 if (t)
2102 return t;
2103 *walk_subtrees = 0;
2105 t = maybe_fold_stmt_indirect (expr, TREE_OPERAND (expr, 0),
2106 integer_zero_node);
2107 break;
2109 case NOP_EXPR:
2110 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2111 if (t)
2112 return t;
2113 *walk_subtrees = 0;
2115 if (POINTER_TYPE_P (TREE_TYPE (expr))
2116 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 0)))
2117 && (t = maybe_fold_offset_to_reference
2118 (TREE_OPERAND (expr, 0),
2119 integer_zero_node,
2120 TREE_TYPE (TREE_TYPE (expr)))))
2122 tree ptr_type = build_pointer_type (TREE_TYPE (t));
2123 if (!useless_type_conversion_p (TREE_TYPE (expr), ptr_type))
2124 return NULL_TREE;
2125 t = build_fold_addr_expr_with_type (t, ptr_type);
2127 break;
2129 /* ??? Could handle more ARRAY_REFs here, as a variant of INDIRECT_REF.
2130 We'd only want to bother decomposing an existing ARRAY_REF if
2131 the base array is found to have another offset contained within.
2132 Otherwise we'd be wasting time. */
2133 case ARRAY_REF:
2134 /* If we are not processing expressions found within an
2135 ADDR_EXPR, then we can fold constant array references. */
2136 if (!*inside_addr_expr_p)
2137 t = fold_read_from_constant_string (expr);
2138 else
2139 t = NULL;
2140 break;
2142 case ADDR_EXPR:
2143 *inside_addr_expr_p = true;
2144 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2145 *inside_addr_expr_p = false;
2146 if (t)
2147 return t;
2148 *walk_subtrees = 0;
2150 /* Set TREE_INVARIANT properly so that the value is properly
2151 considered constant, and so gets propagated as expected. */
2152 if (*changed_p)
2153 recompute_tree_invariant_for_addr_expr (expr);
2154 return NULL_TREE;
2156 case POINTER_PLUS_EXPR:
2157 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2158 if (t)
2159 return t;
2160 t = walk_tree (&TREE_OPERAND (expr, 1), fold_stmt_r, data, NULL);
2161 if (t)
2162 return t;
2163 *walk_subtrees = 0;
2165 t = maybe_fold_stmt_addition (expr);
2166 break;
2168 case COMPONENT_REF:
2169 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2170 if (t)
2171 return t;
2172 *walk_subtrees = 0;
2174 /* Make sure the FIELD_DECL is actually a field in the type on the lhs.
2175 We've already checked that the records are compatible, so we should
2176 come up with a set of compatible fields. */
2178 tree expr_record = TREE_TYPE (TREE_OPERAND (expr, 0));
2179 tree expr_field = TREE_OPERAND (expr, 1);
2181 if (DECL_FIELD_CONTEXT (expr_field) != TYPE_MAIN_VARIANT (expr_record))
2183 expr_field = find_compatible_field (expr_record, expr_field);
2184 TREE_OPERAND (expr, 1) = expr_field;
2187 break;
2189 case TARGET_MEM_REF:
2190 t = maybe_fold_tmr (expr);
2191 break;
2193 case COND_EXPR:
2194 if (COMPARISON_CLASS_P (TREE_OPERAND (expr, 0)))
2196 tree op0 = TREE_OPERAND (expr, 0);
2197 tree tem;
2198 bool set;
2200 fold_defer_overflow_warnings ();
2201 tem = fold_binary (TREE_CODE (op0), TREE_TYPE (op0),
2202 TREE_OPERAND (op0, 0),
2203 TREE_OPERAND (op0, 1));
2204 set = tem && set_rhs (expr_p, tem);
2205 fold_undefer_overflow_warnings (set, fold_stmt_r_data->stmt, 0);
2206 if (set)
2208 t = *expr_p;
2209 break;
2212 return NULL_TREE;
2214 default:
2215 return NULL_TREE;
2218 if (t)
2220 /* Preserve volatileness of the original expression. */
2221 TREE_THIS_VOLATILE (t) = volatile_p;
2222 *expr_p = t;
2223 *changed_p = true;
2226 return NULL_TREE;
2230 /* Return the string length, maximum string length or maximum value of
2231 ARG in LENGTH.
2232 If ARG is an SSA name variable, follow its use-def chains. If LENGTH
2233 is not NULL and, for TYPE == 0, its value is not equal to the length
2234 we determine or if we are unable to determine the length or value,
2235 return false. VISITED is a bitmap of visited variables.
2236 TYPE is 0 if string length should be returned, 1 for maximum string
2237 length and 2 for maximum value ARG can have. */
2239 static bool
2240 get_maxval_strlen (tree arg, tree *length, bitmap visited, int type)
2242 tree var, def_stmt, val;
2244 if (TREE_CODE (arg) != SSA_NAME)
2246 if (TREE_CODE (arg) == COND_EXPR)
2247 return get_maxval_strlen (COND_EXPR_THEN (arg), length, visited, type)
2248 && get_maxval_strlen (COND_EXPR_ELSE (arg), length, visited, type);
2250 if (type == 2)
2252 val = arg;
2253 if (TREE_CODE (val) != INTEGER_CST
2254 || tree_int_cst_sgn (val) < 0)
2255 return false;
2257 else
2258 val = c_strlen (arg, 1);
2259 if (!val)
2260 return false;
2262 if (*length)
2264 if (type > 0)
2266 if (TREE_CODE (*length) != INTEGER_CST
2267 || TREE_CODE (val) != INTEGER_CST)
2268 return false;
2270 if (tree_int_cst_lt (*length, val))
2271 *length = val;
2272 return true;
2274 else if (simple_cst_equal (val, *length) != 1)
2275 return false;
2278 *length = val;
2279 return true;
2282 /* If we were already here, break the infinite cycle. */
2283 if (bitmap_bit_p (visited, SSA_NAME_VERSION (arg)))
2284 return true;
2285 bitmap_set_bit (visited, SSA_NAME_VERSION (arg));
2287 var = arg;
2288 def_stmt = SSA_NAME_DEF_STMT (var);
2290 switch (TREE_CODE (def_stmt))
2292 case GIMPLE_MODIFY_STMT:
2294 tree rhs;
2296 /* The RHS of the statement defining VAR must either have a
2297 constant length or come from another SSA_NAME with a constant
2298 length. */
2299 rhs = GIMPLE_STMT_OPERAND (def_stmt, 1);
2300 STRIP_NOPS (rhs);
2301 return get_maxval_strlen (rhs, length, visited, type);
2304 case PHI_NODE:
2306 /* All the arguments of the PHI node must have the same constant
2307 length. */
2308 int i;
2310 for (i = 0; i < PHI_NUM_ARGS (def_stmt); i++)
2312 tree arg = PHI_ARG_DEF (def_stmt, i);
2314 /* If this PHI has itself as an argument, we cannot
2315 determine the string length of this argument. However,
2316 if we can find a constant string length for the other
2317 PHI args then we can still be sure that this is a
2318 constant string length. So be optimistic and just
2319 continue with the next argument. */
2320 if (arg == PHI_RESULT (def_stmt))
2321 continue;
2323 if (!get_maxval_strlen (arg, length, visited, type))
2324 return false;
2327 return true;
2330 default:
2331 break;
2335 return false;
2339 /* Fold builtin call FN in statement STMT. If it cannot be folded into a
2340 constant, return NULL_TREE. Otherwise, return its constant value. */
2342 static tree
2343 ccp_fold_builtin (tree stmt, tree fn)
2345 tree result, val[3];
2346 tree callee, a;
2347 int arg_mask, i, type;
2348 bitmap visited;
2349 bool ignore;
2350 call_expr_arg_iterator iter;
2351 int nargs;
2353 ignore = TREE_CODE (stmt) != GIMPLE_MODIFY_STMT;
2355 /* First try the generic builtin folder. If that succeeds, return the
2356 result directly. */
2357 result = fold_call_expr (fn, ignore);
2358 if (result)
2360 if (ignore)
2361 STRIP_NOPS (result);
2362 return result;
2365 /* Ignore MD builtins. */
2366 callee = get_callee_fndecl (fn);
2367 if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_MD)
2368 return NULL_TREE;
2370 /* If the builtin could not be folded, and it has no argument list,
2371 we're done. */
2372 nargs = call_expr_nargs (fn);
2373 if (nargs == 0)
2374 return NULL_TREE;
2376 /* Limit the work only for builtins we know how to simplify. */
2377 switch (DECL_FUNCTION_CODE (callee))
2379 case BUILT_IN_STRLEN:
2380 case BUILT_IN_FPUTS:
2381 case BUILT_IN_FPUTS_UNLOCKED:
2382 arg_mask = 1;
2383 type = 0;
2384 break;
2385 case BUILT_IN_STRCPY:
2386 case BUILT_IN_STRNCPY:
2387 arg_mask = 2;
2388 type = 0;
2389 break;
2390 case BUILT_IN_MEMCPY_CHK:
2391 case BUILT_IN_MEMPCPY_CHK:
2392 case BUILT_IN_MEMMOVE_CHK:
2393 case BUILT_IN_MEMSET_CHK:
2394 case BUILT_IN_STRNCPY_CHK:
2395 arg_mask = 4;
2396 type = 2;
2397 break;
2398 case BUILT_IN_STRCPY_CHK:
2399 case BUILT_IN_STPCPY_CHK:
2400 arg_mask = 2;
2401 type = 1;
2402 break;
2403 case BUILT_IN_SNPRINTF_CHK:
2404 case BUILT_IN_VSNPRINTF_CHK:
2405 arg_mask = 2;
2406 type = 2;
2407 break;
2408 default:
2409 return NULL_TREE;
2412 /* Try to use the dataflow information gathered by the CCP process. */
2413 visited = BITMAP_ALLOC (NULL);
2415 memset (val, 0, sizeof (val));
2416 init_call_expr_arg_iterator (fn, &iter);
2417 for (i = 0; arg_mask; i++, arg_mask >>= 1)
2419 a = next_call_expr_arg (&iter);
2420 if (arg_mask & 1)
2422 bitmap_clear (visited);
2423 if (!get_maxval_strlen (a, &val[i], visited, type))
2424 val[i] = NULL_TREE;
2428 BITMAP_FREE (visited);
2430 result = NULL_TREE;
2431 switch (DECL_FUNCTION_CODE (callee))
2433 case BUILT_IN_STRLEN:
2434 if (val[0])
2436 tree new_val = fold_convert (TREE_TYPE (fn), val[0]);
2438 /* If the result is not a valid gimple value, or not a cast
2439 of a valid gimple value, then we can not use the result. */
2440 if (is_gimple_val (new_val)
2441 || (is_gimple_cast (new_val)
2442 && is_gimple_val (TREE_OPERAND (new_val, 0))))
2443 return new_val;
2445 break;
2447 case BUILT_IN_STRCPY:
2448 if (val[1] && is_gimple_val (val[1]) && nargs == 2)
2449 result = fold_builtin_strcpy (callee,
2450 CALL_EXPR_ARG (fn, 0),
2451 CALL_EXPR_ARG (fn, 1),
2452 val[1]);
2453 break;
2455 case BUILT_IN_STRNCPY:
2456 if (val[1] && is_gimple_val (val[1]) && nargs == 3)
2457 result = fold_builtin_strncpy (callee,
2458 CALL_EXPR_ARG (fn, 0),
2459 CALL_EXPR_ARG (fn, 1),
2460 CALL_EXPR_ARG (fn, 2),
2461 val[1]);
2462 break;
2464 case BUILT_IN_FPUTS:
2465 result = fold_builtin_fputs (CALL_EXPR_ARG (fn, 0),
2466 CALL_EXPR_ARG (fn, 1),
2467 TREE_CODE (stmt) != GIMPLE_MODIFY_STMT, 0,
2468 val[0]);
2469 break;
2471 case BUILT_IN_FPUTS_UNLOCKED:
2472 result = fold_builtin_fputs (CALL_EXPR_ARG (fn, 0),
2473 CALL_EXPR_ARG (fn, 1),
2474 TREE_CODE (stmt) != GIMPLE_MODIFY_STMT, 1,
2475 val[0]);
2476 break;
2478 case BUILT_IN_MEMCPY_CHK:
2479 case BUILT_IN_MEMPCPY_CHK:
2480 case BUILT_IN_MEMMOVE_CHK:
2481 case BUILT_IN_MEMSET_CHK:
2482 if (val[2] && is_gimple_val (val[2]))
2483 result = fold_builtin_memory_chk (callee,
2484 CALL_EXPR_ARG (fn, 0),
2485 CALL_EXPR_ARG (fn, 1),
2486 CALL_EXPR_ARG (fn, 2),
2487 CALL_EXPR_ARG (fn, 3),
2488 val[2], ignore,
2489 DECL_FUNCTION_CODE (callee));
2490 break;
2492 case BUILT_IN_STRCPY_CHK:
2493 case BUILT_IN_STPCPY_CHK:
2494 if (val[1] && is_gimple_val (val[1]))
2495 result = fold_builtin_stxcpy_chk (callee,
2496 CALL_EXPR_ARG (fn, 0),
2497 CALL_EXPR_ARG (fn, 1),
2498 CALL_EXPR_ARG (fn, 2),
2499 val[1], ignore,
2500 DECL_FUNCTION_CODE (callee));
2501 break;
2503 case BUILT_IN_STRNCPY_CHK:
2504 if (val[2] && is_gimple_val (val[2]))
2505 result = fold_builtin_strncpy_chk (CALL_EXPR_ARG (fn, 0),
2506 CALL_EXPR_ARG (fn, 1),
2507 CALL_EXPR_ARG (fn, 2),
2508 CALL_EXPR_ARG (fn, 3),
2509 val[2]);
2510 break;
2512 case BUILT_IN_SNPRINTF_CHK:
2513 case BUILT_IN_VSNPRINTF_CHK:
2514 if (val[1] && is_gimple_val (val[1]))
2515 result = fold_builtin_snprintf_chk (fn, val[1],
2516 DECL_FUNCTION_CODE (callee));
2517 break;
2519 default:
2520 gcc_unreachable ();
2523 if (result && ignore)
2524 result = fold_ignored_result (result);
2525 return result;
2529 /* Fold the statement pointed to by STMT_P. In some cases, this function may
2530 replace the whole statement with a new one. Returns true iff folding
2531 makes any changes. */
2533 bool
2534 fold_stmt (tree *stmt_p)
2536 tree rhs, result, stmt;
2537 struct fold_stmt_r_data fold_stmt_r_data;
2538 bool changed = false;
2539 bool inside_addr_expr = false;
2541 stmt = *stmt_p;
2543 fold_stmt_r_data.stmt = stmt;
2544 fold_stmt_r_data.changed_p = &changed;
2545 fold_stmt_r_data.inside_addr_expr_p = &inside_addr_expr;
2547 /* If we replaced constants and the statement makes pointer dereferences,
2548 then we may need to fold instances of *&VAR into VAR, etc. */
2549 if (walk_tree (stmt_p, fold_stmt_r, &fold_stmt_r_data, NULL))
2551 *stmt_p = build_call_expr (implicit_built_in_decls[BUILT_IN_TRAP], 0);
2552 return true;
2555 rhs = get_rhs (stmt);
2556 if (!rhs)
2557 return changed;
2558 result = NULL_TREE;
2560 if (TREE_CODE (rhs) == CALL_EXPR)
2562 tree callee;
2564 /* Check for builtins that CCP can handle using information not
2565 available in the generic fold routines. */
2566 callee = get_callee_fndecl (rhs);
2567 if (callee && DECL_BUILT_IN (callee))
2568 result = ccp_fold_builtin (stmt, rhs);
2569 else
2571 /* Check for resolvable OBJ_TYPE_REF. The only sorts we can resolve
2572 here are when we've propagated the address of a decl into the
2573 object slot. */
2574 /* ??? Should perhaps do this in fold proper. However, doing it
2575 there requires that we create a new CALL_EXPR, and that requires
2576 copying EH region info to the new node. Easier to just do it
2577 here where we can just smash the call operand. Also
2578 CALL_EXPR_RETURN_SLOT_OPT needs to be handled correctly and
2579 copied, fold_call_expr does not have not information. */
2580 callee = CALL_EXPR_FN (rhs);
2581 if (TREE_CODE (callee) == OBJ_TYPE_REF
2582 && lang_hooks.fold_obj_type_ref
2583 && TREE_CODE (OBJ_TYPE_REF_OBJECT (callee)) == ADDR_EXPR
2584 && DECL_P (TREE_OPERAND
2585 (OBJ_TYPE_REF_OBJECT (callee), 0)))
2587 tree t;
2589 /* ??? Caution: Broken ADDR_EXPR semantics means that
2590 looking at the type of the operand of the addr_expr
2591 can yield an array type. See silly exception in
2592 check_pointer_types_r. */
2594 t = TREE_TYPE (TREE_TYPE (OBJ_TYPE_REF_OBJECT (callee)));
2595 t = lang_hooks.fold_obj_type_ref (callee, t);
2596 if (t)
2598 CALL_EXPR_FN (rhs) = t;
2599 changed = true;
2604 else if (TREE_CODE (rhs) == COND_EXPR)
2606 tree temp = fold (COND_EXPR_COND (rhs));
2607 if (temp != COND_EXPR_COND (rhs))
2608 result = fold_build3 (COND_EXPR, TREE_TYPE (rhs), temp,
2609 COND_EXPR_THEN (rhs), COND_EXPR_ELSE (rhs));
2612 /* If we couldn't fold the RHS, hand over to the generic fold routines. */
2613 if (result == NULL_TREE)
2614 result = fold (rhs);
2616 /* Strip away useless type conversions. Both the NON_LVALUE_EXPR that
2617 may have been added by fold, and "useless" type conversions that might
2618 now be apparent due to propagation. */
2619 STRIP_USELESS_TYPE_CONVERSION (result);
2621 if (result != rhs)
2622 changed |= set_rhs (stmt_p, result);
2624 return changed;
2627 /* Perform the minimal folding on statement STMT. Only operations like
2628 *&x created by constant propagation are handled. The statement cannot
2629 be replaced with a new one. */
2631 bool
2632 fold_stmt_inplace (tree stmt)
2634 tree old_stmt = stmt, rhs, new_rhs;
2635 struct fold_stmt_r_data fold_stmt_r_data;
2636 bool changed = false;
2637 bool inside_addr_expr = false;
2639 fold_stmt_r_data.stmt = stmt;
2640 fold_stmt_r_data.changed_p = &changed;
2641 fold_stmt_r_data.inside_addr_expr_p = &inside_addr_expr;
2643 walk_tree (&stmt, fold_stmt_r, &fold_stmt_r_data, NULL);
2644 gcc_assert (stmt == old_stmt);
2646 rhs = get_rhs (stmt);
2647 if (!rhs || rhs == stmt)
2648 return changed;
2650 new_rhs = fold (rhs);
2651 STRIP_USELESS_TYPE_CONVERSION (new_rhs);
2652 if (new_rhs == rhs)
2653 return changed;
2655 changed |= set_rhs (&stmt, new_rhs);
2656 gcc_assert (stmt == old_stmt);
2658 return changed;
2661 /* Try to optimize out __builtin_stack_restore. Optimize it out
2662 if there is another __builtin_stack_restore in the same basic
2663 block and no calls or ASM_EXPRs are in between, or if this block's
2664 only outgoing edge is to EXIT_BLOCK and there are no calls or
2665 ASM_EXPRs after this __builtin_stack_restore. */
2667 static tree
2668 optimize_stack_restore (basic_block bb, tree call, block_stmt_iterator i)
2670 tree stack_save, stmt, callee;
2672 if (TREE_CODE (call) != CALL_EXPR
2673 || call_expr_nargs (call) != 1
2674 || TREE_CODE (CALL_EXPR_ARG (call, 0)) != SSA_NAME
2675 || !POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (call, 0))))
2676 return NULL_TREE;
2678 for (bsi_next (&i); !bsi_end_p (i); bsi_next (&i))
2680 tree call;
2682 stmt = bsi_stmt (i);
2683 if (TREE_CODE (stmt) == ASM_EXPR)
2684 return NULL_TREE;
2685 call = get_call_expr_in (stmt);
2686 if (call == NULL)
2687 continue;
2689 callee = get_callee_fndecl (call);
2690 if (!callee || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL)
2691 return NULL_TREE;
2693 if (DECL_FUNCTION_CODE (callee) == BUILT_IN_STACK_RESTORE)
2694 break;
2697 if (bsi_end_p (i)
2698 && (! single_succ_p (bb)
2699 || single_succ_edge (bb)->dest != EXIT_BLOCK_PTR))
2700 return NULL_TREE;
2702 stack_save = SSA_NAME_DEF_STMT (CALL_EXPR_ARG (call, 0));
2703 if (TREE_CODE (stack_save) != GIMPLE_MODIFY_STMT
2704 || GIMPLE_STMT_OPERAND (stack_save, 0) != CALL_EXPR_ARG (call, 0)
2705 || TREE_CODE (GIMPLE_STMT_OPERAND (stack_save, 1)) != CALL_EXPR
2706 || tree_could_throw_p (stack_save)
2707 || !has_single_use (CALL_EXPR_ARG (call, 0)))
2708 return NULL_TREE;
2710 callee = get_callee_fndecl (GIMPLE_STMT_OPERAND (stack_save, 1));
2711 if (!callee
2712 || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
2713 || DECL_FUNCTION_CODE (callee) != BUILT_IN_STACK_SAVE
2714 || call_expr_nargs (GIMPLE_STMT_OPERAND (stack_save, 1)) != 0)
2715 return NULL_TREE;
2717 stmt = stack_save;
2718 push_stmt_changes (&stmt);
2719 if (!set_rhs (&stmt,
2720 build_int_cst (TREE_TYPE (CALL_EXPR_ARG (call, 0)), 0)))
2722 discard_stmt_changes (&stmt);
2723 return NULL_TREE;
2725 gcc_assert (stmt == stack_save);
2726 pop_stmt_changes (&stmt);
2728 return integer_zero_node;
2731 /* If va_list type is a simple pointer and nothing special is needed,
2732 optimize __builtin_va_start (&ap, 0) into ap = __builtin_next_arg (0),
2733 __builtin_va_end (&ap) out as NOP and __builtin_va_copy into a simple
2734 pointer assignment. */
2736 static tree
2737 optimize_stdarg_builtin (tree call)
2739 tree callee, lhs, rhs;
2740 bool va_list_simple_ptr;
2742 if (TREE_CODE (call) != CALL_EXPR)
2743 return NULL_TREE;
2745 va_list_simple_ptr = POINTER_TYPE_P (va_list_type_node)
2746 && (TREE_TYPE (va_list_type_node) == void_type_node
2747 || TREE_TYPE (va_list_type_node) == char_type_node);
2749 callee = get_callee_fndecl (call);
2750 switch (DECL_FUNCTION_CODE (callee))
2752 case BUILT_IN_VA_START:
2753 if (!va_list_simple_ptr
2754 || targetm.expand_builtin_va_start != NULL
2755 || built_in_decls[BUILT_IN_NEXT_ARG] == NULL)
2756 return NULL_TREE;
2758 if (call_expr_nargs (call) != 2)
2759 return NULL_TREE;
2761 lhs = CALL_EXPR_ARG (call, 0);
2762 if (!POINTER_TYPE_P (TREE_TYPE (lhs))
2763 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (lhs)))
2764 != TYPE_MAIN_VARIANT (va_list_type_node))
2765 return NULL_TREE;
2767 lhs = build_fold_indirect_ref (lhs);
2768 rhs = build_call_expr (built_in_decls[BUILT_IN_NEXT_ARG],
2769 1, integer_zero_node);
2770 rhs = fold_convert (TREE_TYPE (lhs), rhs);
2771 return build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, rhs);
2773 case BUILT_IN_VA_COPY:
2774 if (!va_list_simple_ptr)
2775 return NULL_TREE;
2777 if (call_expr_nargs (call) != 2)
2778 return NULL_TREE;
2780 lhs = CALL_EXPR_ARG (call, 0);
2781 if (!POINTER_TYPE_P (TREE_TYPE (lhs))
2782 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (lhs)))
2783 != TYPE_MAIN_VARIANT (va_list_type_node))
2784 return NULL_TREE;
2786 lhs = build_fold_indirect_ref (lhs);
2787 rhs = CALL_EXPR_ARG (call, 1);
2788 if (TYPE_MAIN_VARIANT (TREE_TYPE (rhs))
2789 != TYPE_MAIN_VARIANT (va_list_type_node))
2790 return NULL_TREE;
2792 rhs = fold_convert (TREE_TYPE (lhs), rhs);
2793 return build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, rhs);
2795 case BUILT_IN_VA_END:
2796 return integer_zero_node;
2798 default:
2799 gcc_unreachable ();
2803 /* Convert EXPR into a GIMPLE value suitable for substitution on the
2804 RHS of an assignment. Insert the necessary statements before
2805 iterator *SI_P.
2806 When IGNORE is set, don't worry about the return value. */
2808 static tree
2809 convert_to_gimple_builtin (block_stmt_iterator *si_p, tree expr, bool ignore)
2811 tree_stmt_iterator ti;
2812 tree stmt = bsi_stmt (*si_p);
2813 tree tmp, stmts = NULL;
2815 push_gimplify_context ();
2816 if (ignore)
2818 tmp = build_empty_stmt ();
2819 gimplify_and_add (expr, &stmts);
2821 else
2822 tmp = get_initialized_tmp_var (expr, &stmts, NULL);
2823 pop_gimplify_context (NULL);
2825 if (EXPR_HAS_LOCATION (stmt))
2826 annotate_all_with_locus (&stmts, EXPR_LOCATION (stmt));
2828 /* The replacement can expose previously unreferenced variables. */
2829 for (ti = tsi_start (stmts); !tsi_end_p (ti); tsi_next (&ti))
2831 tree new_stmt = tsi_stmt (ti);
2832 find_new_referenced_vars (tsi_stmt_ptr (ti));
2833 bsi_insert_before (si_p, new_stmt, BSI_NEW_STMT);
2834 mark_symbols_for_renaming (new_stmt);
2835 bsi_next (si_p);
2838 return tmp;
2842 /* A simple pass that attempts to fold all builtin functions. This pass
2843 is run after we've propagated as many constants as we can. */
2845 static unsigned int
2846 execute_fold_all_builtins (void)
2848 bool cfg_changed = false;
2849 basic_block bb;
2850 unsigned int todoflags = 0;
2852 FOR_EACH_BB (bb)
2854 block_stmt_iterator i;
2855 for (i = bsi_start (bb); !bsi_end_p (i); )
2857 tree *stmtp = bsi_stmt_ptr (i);
2858 tree old_stmt = *stmtp;
2859 tree call = get_rhs (*stmtp);
2860 tree callee, result;
2861 enum built_in_function fcode;
2863 if (!call || TREE_CODE (call) != CALL_EXPR)
2865 bsi_next (&i);
2866 continue;
2868 callee = get_callee_fndecl (call);
2869 if (!callee || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL)
2871 bsi_next (&i);
2872 continue;
2874 fcode = DECL_FUNCTION_CODE (callee);
2876 result = ccp_fold_builtin (*stmtp, call);
2877 if (!result)
2878 switch (DECL_FUNCTION_CODE (callee))
2880 case BUILT_IN_CONSTANT_P:
2881 /* Resolve __builtin_constant_p. If it hasn't been
2882 folded to integer_one_node by now, it's fairly
2883 certain that the value simply isn't constant. */
2884 result = integer_zero_node;
2885 break;
2887 case BUILT_IN_STACK_RESTORE:
2888 result = optimize_stack_restore (bb, *stmtp, i);
2889 if (result)
2890 break;
2891 bsi_next (&i);
2892 continue;
2894 case BUILT_IN_VA_START:
2895 case BUILT_IN_VA_END:
2896 case BUILT_IN_VA_COPY:
2897 /* These shouldn't be folded before pass_stdarg. */
2898 result = optimize_stdarg_builtin (*stmtp);
2899 if (result)
2900 break;
2901 /* FALLTHRU */
2903 default:
2904 bsi_next (&i);
2905 continue;
2908 if (dump_file && (dump_flags & TDF_DETAILS))
2910 fprintf (dump_file, "Simplified\n ");
2911 print_generic_stmt (dump_file, *stmtp, dump_flags);
2914 push_stmt_changes (stmtp);
2916 if (!set_rhs (stmtp, result))
2918 result = convert_to_gimple_builtin (&i, result,
2919 TREE_CODE (old_stmt)
2920 != GIMPLE_MODIFY_STMT);
2921 if (result)
2923 bool ok = set_rhs (stmtp, result);
2924 gcc_assert (ok);
2925 todoflags |= TODO_rebuild_alias;
2929 pop_stmt_changes (stmtp);
2931 if (maybe_clean_or_replace_eh_stmt (old_stmt, *stmtp)
2932 && tree_purge_dead_eh_edges (bb))
2933 cfg_changed = true;
2935 if (dump_file && (dump_flags & TDF_DETAILS))
2937 fprintf (dump_file, "to\n ");
2938 print_generic_stmt (dump_file, *stmtp, dump_flags);
2939 fprintf (dump_file, "\n");
2942 /* Retry the same statement if it changed into another
2943 builtin, there might be new opportunities now. */
2944 call = get_rhs (*stmtp);
2945 if (!call || TREE_CODE (call) != CALL_EXPR)
2947 bsi_next (&i);
2948 continue;
2950 callee = get_callee_fndecl (call);
2951 if (!callee
2952 || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
2953 || DECL_FUNCTION_CODE (callee) == fcode)
2954 bsi_next (&i);
2958 /* Delete unreachable blocks. */
2959 if (cfg_changed)
2960 todoflags |= TODO_cleanup_cfg;
2962 return todoflags;
2966 struct tree_opt_pass pass_fold_builtins =
2968 "fab", /* name */
2969 NULL, /* gate */
2970 execute_fold_all_builtins, /* execute */
2971 NULL, /* sub */
2972 NULL, /* next */
2973 0, /* static_pass_number */
2974 0, /* tv_id */
2975 PROP_cfg | PROP_ssa, /* properties_required */
2976 0, /* properties_provided */
2977 0, /* properties_destroyed */
2978 0, /* todo_flags_start */
2979 TODO_dump_func
2980 | TODO_verify_ssa
2981 | TODO_update_ssa, /* todo_flags_finish */
2982 0 /* letter */