OSDN Git Service

2010-08-12 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / tree-ssa-ccp.c
1 /* Conditional constant propagation pass for the GNU compiler.
2    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
3    2010 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>
6
7 This file is part of GCC.
8
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.
13
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.
18
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/>.  */
22
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:
30
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.
38
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.
43
44         CONSTANT        ->  V_i has been found to hold a constant
45                             value C.
46
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.
50
51    The core of SSA-CCP is in ccp_visit_stmt and ccp_visit_phi_node:
52
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.
61
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.
66
67
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:
73
74       - If an argument is flowing in through a non-executable edge, it
75         is ignored.  This is useful in cases like this:
76
77                         if (PRED)
78                           a_9 = 3;
79                         else
80                           a_10 = 100;
81                         a_11 = PHI (a_9, a_10)
82
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.
87
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.
95
96
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.
101
102    References:
103
104      Constant propagation with conditional branches,
105      Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
106
107      Building an Optimizing Compiler,
108      Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
109
110      Advanced Compiler Design and Implementation,
111      Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6  */
112
113 #include "config.h"
114 #include "system.h"
115 #include "coretypes.h"
116 #include "tm.h"
117 #include "tree.h"
118 #include "flags.h"
119 #include "tm_p.h"
120 #include "basic-block.h"
121 #include "output.h"
122 #include "function.h"
123 #include "tree-pretty-print.h"
124 #include "gimple-pretty-print.h"
125 #include "timevar.h"
126 #include "tree-dump.h"
127 #include "tree-flow.h"
128 #include "tree-pass.h"
129 #include "tree-ssa-propagate.h"
130 #include "value-prof.h"
131 #include "langhooks.h"
132 #include "target.h"
133 #include "diagnostic-core.h"
134 #include "toplev.h"
135 #include "dbgcnt.h"
136
137
138 /* Possible lattice values.  */
139 typedef enum
140 {
141   UNINITIALIZED,
142   UNDEFINED,
143   CONSTANT,
144   VARYING
145 } ccp_lattice_t;
146
147 struct prop_value_d {
148     /* Lattice value.  */
149     ccp_lattice_t lattice_val;
150
151     /* Propagated value.  */
152     tree value;
153
154     /* Mask that applies to the propagated value during CCP.  For
155        X with a CONSTANT lattice value X & ~mask == value & ~mask.  */
156     double_int mask;
157 };
158
159 typedef struct prop_value_d prop_value_t;
160
161 /* Array of propagated constant values.  After propagation,
162    CONST_VAL[I].VALUE holds the constant value for SSA_NAME(I).  If
163    the constant is held in an SSA name representing a memory store
164    (i.e., a VDEF), CONST_VAL[I].MEM_REF will contain the actual
165    memory reference used to store (i.e., the LHS of the assignment
166    doing the store).  */
167 static prop_value_t *const_val;
168
169 static void canonicalize_float_value (prop_value_t *);
170 static bool ccp_fold_stmt (gimple_stmt_iterator *);
171
172 /* Dump constant propagation value VAL to file OUTF prefixed by PREFIX.  */
173
174 static void
175 dump_lattice_value (FILE *outf, const char *prefix, prop_value_t val)
176 {
177   switch (val.lattice_val)
178     {
179     case UNINITIALIZED:
180       fprintf (outf, "%sUNINITIALIZED", prefix);
181       break;
182     case UNDEFINED:
183       fprintf (outf, "%sUNDEFINED", prefix);
184       break;
185     case VARYING:
186       fprintf (outf, "%sVARYING", prefix);
187       break;
188     case CONSTANT:
189       fprintf (outf, "%sCONSTANT ", prefix);
190       if (TREE_CODE (val.value) != INTEGER_CST
191           || double_int_zero_p (val.mask))
192         print_generic_expr (outf, val.value, dump_flags);
193       else
194         {
195           double_int cval = double_int_and_not (tree_to_double_int (val.value),
196                                                 val.mask);
197           fprintf (outf, "%sCONSTANT " HOST_WIDE_INT_PRINT_DOUBLE_HEX,
198                    prefix, cval.high, cval.low);
199           fprintf (outf, " (" HOST_WIDE_INT_PRINT_DOUBLE_HEX ")",
200                    val.mask.high, val.mask.low);
201         }
202       break;
203     default:
204       gcc_unreachable ();
205     }
206 }
207
208
209 /* Print lattice value VAL to stderr.  */
210
211 void debug_lattice_value (prop_value_t val);
212
213 DEBUG_FUNCTION void
214 debug_lattice_value (prop_value_t val)
215 {
216   dump_lattice_value (stderr, "", val);
217   fprintf (stderr, "\n");
218 }
219
220
221 /* Compute a default value for variable VAR and store it in the
222    CONST_VAL array.  The following rules are used to get default
223    values:
224
225    1- Global and static variables that are declared constant are
226       considered CONSTANT.
227
228    2- Any other value is considered UNDEFINED.  This is useful when
229       considering PHI nodes.  PHI arguments that are undefined do not
230       change the constant value of the PHI node, which allows for more
231       constants to be propagated.
232
233    3- Variables defined by statements other than assignments and PHI
234       nodes are considered VARYING.
235
236    4- Initial values of variables that are not GIMPLE registers are
237       considered VARYING.  */
238
239 static prop_value_t
240 get_default_value (tree var)
241 {
242   tree sym = SSA_NAME_VAR (var);
243   prop_value_t val = { UNINITIALIZED, NULL_TREE, { 0, 0 } };
244   gimple stmt;
245
246   stmt = SSA_NAME_DEF_STMT (var);
247
248   if (gimple_nop_p (stmt))
249     {
250       /* Variables defined by an empty statement are those used
251          before being initialized.  If VAR is a local variable, we
252          can assume initially that it is UNDEFINED, otherwise we must
253          consider it VARYING.  */
254       if (is_gimple_reg (sym)
255           && TREE_CODE (sym) == VAR_DECL)
256         val.lattice_val = UNDEFINED;
257       else
258         {
259           val.lattice_val = VARYING;
260           val.mask = double_int_minus_one;
261         }
262     }
263   else if (is_gimple_assign (stmt)
264            /* Value-returning GIMPLE_CALL statements assign to
265               a variable, and are treated similarly to GIMPLE_ASSIGN.  */
266            || (is_gimple_call (stmt)
267                && gimple_call_lhs (stmt) != NULL_TREE)
268            || gimple_code (stmt) == GIMPLE_PHI)
269     {
270       tree cst;
271       if (gimple_assign_single_p (stmt)
272           && DECL_P (gimple_assign_rhs1 (stmt))
273           && (cst = get_symbol_constant_value (gimple_assign_rhs1 (stmt))))
274         {
275           val.lattice_val = CONSTANT;
276           val.value = cst;
277         }
278       else
279         /* Any other variable defined by an assignment or a PHI node
280            is considered UNDEFINED.  */
281         val.lattice_val = UNDEFINED;
282     }
283   else
284     {
285       /* Otherwise, VAR will never take on a constant value.  */
286       val.lattice_val = VARYING;
287       val.mask = double_int_minus_one;
288     }
289
290   return val;
291 }
292
293
294 /* Get the constant value associated with variable VAR.  */
295
296 static inline prop_value_t *
297 get_value (tree var)
298 {
299   prop_value_t *val;
300
301   if (const_val == NULL)
302     return NULL;
303
304   val = &const_val[SSA_NAME_VERSION (var)];
305   if (val->lattice_val == UNINITIALIZED)
306     *val = get_default_value (var);
307
308   canonicalize_float_value (val);
309
310   return val;
311 }
312
313 /* Return the constant tree value associated with VAR.  */
314
315 static inline tree
316 get_constant_value (tree var)
317 {
318   prop_value_t *val = get_value (var);
319   if (val
320       && val->lattice_val == CONSTANT
321       && (TREE_CODE (val->value) != INTEGER_CST
322           || double_int_zero_p (val->mask)))
323     return val->value;
324   return NULL_TREE;
325 }
326
327 /* Sets the value associated with VAR to VARYING.  */
328
329 static inline void
330 set_value_varying (tree var)
331 {
332   prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
333
334   val->lattice_val = VARYING;
335   val->value = NULL_TREE;
336   val->mask = double_int_minus_one;
337 }
338
339 /* For float types, modify the value of VAL to make ccp work correctly
340    for non-standard values (-0, NaN):
341
342    If HONOR_SIGNED_ZEROS is false, and VAL = -0, we canonicalize it to 0.
343    If HONOR_NANS is false, and VAL is NaN, we canonicalize it to UNDEFINED.
344      This is to fix the following problem (see PR 29921): Suppose we have
345
346      x = 0.0 * y
347
348      and we set value of y to NaN.  This causes value of x to be set to NaN.
349      When we later determine that y is in fact VARYING, fold uses the fact
350      that HONOR_NANS is false, and we try to change the value of x to 0,
351      causing an ICE.  With HONOR_NANS being false, the real appearance of
352      NaN would cause undefined behavior, though, so claiming that y (and x)
353      are UNDEFINED initially is correct.  */
354
355 static void
356 canonicalize_float_value (prop_value_t *val)
357 {
358   enum machine_mode mode;
359   tree type;
360   REAL_VALUE_TYPE d;
361
362   if (val->lattice_val != CONSTANT
363       || TREE_CODE (val->value) != REAL_CST)
364     return;
365
366   d = TREE_REAL_CST (val->value);
367   type = TREE_TYPE (val->value);
368   mode = TYPE_MODE (type);
369
370   if (!HONOR_SIGNED_ZEROS (mode)
371       && REAL_VALUE_MINUS_ZERO (d))
372     {
373       val->value = build_real (type, dconst0);
374       return;
375     }
376
377   if (!HONOR_NANS (mode)
378       && REAL_VALUE_ISNAN (d))
379     {
380       val->lattice_val = UNDEFINED;
381       val->value = NULL;
382       return;
383     }
384 }
385
386 /* Return whether the lattice transition is valid.  */
387
388 static bool
389 valid_lattice_transition (prop_value_t old_val, prop_value_t new_val)
390 {
391   /* Lattice transitions must always be monotonically increasing in
392      value.  */
393   if (old_val.lattice_val < new_val.lattice_val)
394     return true;
395
396   if (old_val.lattice_val != new_val.lattice_val)
397     return false;
398
399   if (!old_val.value && !new_val.value)
400     return true;
401
402   /* Now both lattice values are CONSTANT.  */
403
404   /* Allow transitioning from &x to &x & ~3.  */
405   if (TREE_CODE (old_val.value) != INTEGER_CST
406       && TREE_CODE (new_val.value) == INTEGER_CST)
407     return true;
408
409   /* Bit-lattices have to agree in the still valid bits.  */
410   if (TREE_CODE (old_val.value) == INTEGER_CST
411       && TREE_CODE (new_val.value) == INTEGER_CST)
412     return double_int_equal_p
413                 (double_int_and_not (tree_to_double_int (old_val.value),
414                                      new_val.mask),
415                  double_int_and_not (tree_to_double_int (new_val.value),
416                                      new_val.mask));
417
418   /* Otherwise constant values have to agree.  */
419   return operand_equal_p (old_val.value, new_val.value, 0);
420 }
421
422 /* Set the value for variable VAR to NEW_VAL.  Return true if the new
423    value is different from VAR's previous value.  */
424
425 static bool
426 set_lattice_value (tree var, prop_value_t new_val)
427 {
428   /* We can deal with old UNINITIALIZED values just fine here.  */
429   prop_value_t *old_val = &const_val[SSA_NAME_VERSION (var)];
430
431   canonicalize_float_value (&new_val);
432
433   /* We have to be careful to not go up the bitwise lattice
434      represented by the mask.
435      ???  This doesn't seem to be the best place to enforce this.  */
436   if (new_val.lattice_val == CONSTANT
437       && old_val->lattice_val == CONSTANT
438       && TREE_CODE (new_val.value) == INTEGER_CST
439       && TREE_CODE (old_val->value) == INTEGER_CST)
440     {
441       double_int diff;
442       diff = double_int_xor (tree_to_double_int (new_val.value),
443                              tree_to_double_int (old_val->value));
444       new_val.mask = double_int_ior (new_val.mask,
445                                      double_int_ior (old_val->mask, diff));
446     }
447
448   gcc_assert (valid_lattice_transition (*old_val, new_val));
449
450   /* If *OLD_VAL and NEW_VAL are the same, return false to inform the
451      caller that this was a non-transition.  */
452   if (old_val->lattice_val != new_val.lattice_val
453       || (new_val.lattice_val == CONSTANT
454           && TREE_CODE (new_val.value) == INTEGER_CST
455           && (TREE_CODE (old_val->value) != INTEGER_CST
456               || !double_int_equal_p (new_val.mask, old_val->mask))))
457     {
458       /* ???  We would like to delay creation of INTEGER_CSTs from
459          partially constants here.  */
460
461       if (dump_file && (dump_flags & TDF_DETAILS))
462         {
463           dump_lattice_value (dump_file, "Lattice value changed to ", new_val);
464           fprintf (dump_file, ".  Adding SSA edges to worklist.\n");
465         }
466
467       *old_val = new_val;
468
469       gcc_assert (new_val.lattice_val != UNINITIALIZED);
470       return true;
471     }
472
473   return false;
474 }
475
476 static prop_value_t get_value_for_expr (tree, bool);
477 static prop_value_t bit_value_binop (enum tree_code, tree, tree, tree);
478 static void bit_value_binop_1 (enum tree_code, tree, double_int *, double_int *,
479                                tree, double_int, double_int,
480                                tree, double_int, double_int);
481
482 /* Return a double_int that can be used for bitwise simplifications
483    from VAL.  */
484
485 static double_int
486 value_to_double_int (prop_value_t val)
487 {
488   if (val.value
489       && TREE_CODE (val.value) == INTEGER_CST)
490     return tree_to_double_int (val.value);
491   else
492     return double_int_zero;
493 }
494
495 /* Return the value for the address expression EXPR based on alignment
496    information.  */
497
498 static prop_value_t
499 get_value_from_alignment (tree expr)
500 {
501   prop_value_t val;
502   HOST_WIDE_INT bitsize, bitpos;
503   tree base, offset;
504   enum machine_mode mode;
505   int align;
506
507   gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
508
509   base = get_inner_reference (TREE_OPERAND (expr, 0),
510                               &bitsize, &bitpos, &offset,
511                               &mode, &align, &align, false);
512   if (TREE_CODE (base) == MISALIGNED_INDIRECT_REF)
513     val = get_value_for_expr (TREE_OPERAND (base, 0), true);
514   else if (TREE_CODE (base) == MEM_REF)
515     val = bit_value_binop (PLUS_EXPR, TREE_TYPE (expr),
516                            TREE_OPERAND (base, 0), TREE_OPERAND (base, 1));
517   else if (base
518            && ((align = get_object_alignment (base, BIGGEST_ALIGNMENT))
519                 > BITS_PER_UNIT))
520     {
521       val.lattice_val = CONSTANT;
522       /* We assume pointers are zero-extended.  */
523       val.mask = double_int_and_not
524                    (double_int_mask (TYPE_PRECISION (TREE_TYPE (expr))),
525                     uhwi_to_double_int (align / BITS_PER_UNIT - 1));
526       val.value = build_int_cst (TREE_TYPE (expr), 0);
527     }
528   else
529     {
530       val.lattice_val = VARYING;
531       val.mask = double_int_minus_one;
532       val.value = NULL_TREE;
533     }
534   if (bitpos != 0)
535     {
536       double_int value, mask;
537       bit_value_binop_1 (PLUS_EXPR, TREE_TYPE (expr), &value, &mask,
538                          TREE_TYPE (expr), value_to_double_int (val), val.mask,
539                          TREE_TYPE (expr),
540                          shwi_to_double_int (bitpos / BITS_PER_UNIT),
541                          double_int_zero);
542       val.lattice_val = double_int_minus_one_p (mask) ? VARYING : CONSTANT;
543       val.mask = mask;
544       if (val.lattice_val == CONSTANT)
545         val.value = double_int_to_tree (TREE_TYPE (expr), value);
546       else
547         val.value = NULL_TREE;
548     }
549   /* ???  We should handle i * 4 and more complex expressions from
550      the offset, possibly by just expanding get_value_for_expr.  */
551   if (offset != NULL_TREE)
552     {
553       double_int value, mask;
554       prop_value_t oval = get_value_for_expr (offset, true);
555       bit_value_binop_1 (PLUS_EXPR, TREE_TYPE (expr), &value, &mask,
556                          TREE_TYPE (expr), value_to_double_int (val), val.mask,
557                          TREE_TYPE (expr), value_to_double_int (oval),
558                          oval.mask);
559       val.mask = mask;
560       if (double_int_minus_one_p (mask))
561         {
562           val.lattice_val = VARYING;
563           val.value = NULL_TREE;
564         }
565       else
566         {
567           val.lattice_val = CONSTANT;
568           val.value = double_int_to_tree (TREE_TYPE (expr), value);
569         }
570     }
571
572   return val;
573 }
574
575 /* Return the value for the tree operand EXPR.  If FOR_BITS_P is true
576    return constant bits extracted from alignment information for
577    invariant addresses.  */
578
579 static prop_value_t
580 get_value_for_expr (tree expr, bool for_bits_p)
581 {
582   prop_value_t val;
583
584   if (TREE_CODE (expr) == SSA_NAME)
585     {
586       val = *get_value (expr);
587       if (for_bits_p
588           && val.lattice_val == CONSTANT
589           && TREE_CODE (val.value) == ADDR_EXPR)
590         val = get_value_from_alignment (val.value);
591     }
592   else if (is_gimple_min_invariant (expr)
593            && (!for_bits_p || TREE_CODE (expr) != ADDR_EXPR))
594     {
595       val.lattice_val = CONSTANT;
596       val.value = expr;
597       val.mask = double_int_zero;
598       canonicalize_float_value (&val);
599     }
600   else if (TREE_CODE (expr) == ADDR_EXPR)
601     val = get_value_from_alignment (expr);
602   else
603     {
604       val.lattice_val = VARYING;
605       val.mask = double_int_minus_one;
606       val.value = NULL_TREE;
607     }
608   return val;
609 }
610
611 /* Return the likely CCP lattice value for STMT.
612
613    If STMT has no operands, then return CONSTANT.
614
615    Else if undefinedness of operands of STMT cause its value to be
616    undefined, then return UNDEFINED.
617
618    Else if any operands of STMT are constants, then return CONSTANT.
619
620    Else return VARYING.  */
621
622 static ccp_lattice_t
623 likely_value (gimple stmt)
624 {
625   bool has_constant_operand, has_undefined_operand, all_undefined_operands;
626   tree use;
627   ssa_op_iter iter;
628   unsigned i;
629
630   enum gimple_code code = gimple_code (stmt);
631
632   /* This function appears to be called only for assignments, calls,
633      conditionals, and switches, due to the logic in visit_stmt.  */
634   gcc_assert (code == GIMPLE_ASSIGN
635               || code == GIMPLE_CALL
636               || code == GIMPLE_COND
637               || code == GIMPLE_SWITCH);
638
639   /* If the statement has volatile operands, it won't fold to a
640      constant value.  */
641   if (gimple_has_volatile_ops (stmt))
642     return VARYING;
643
644   /* Arrive here for more complex cases.  */
645   has_constant_operand = false;
646   has_undefined_operand = false;
647   all_undefined_operands = true;
648   FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
649     {
650       prop_value_t *val = get_value (use);
651
652       if (val->lattice_val == UNDEFINED)
653         has_undefined_operand = true;
654       else
655         all_undefined_operands = false;
656
657       if (val->lattice_val == CONSTANT)
658         has_constant_operand = true;
659     }
660
661   /* There may be constants in regular rhs operands.  For calls we
662      have to ignore lhs, fndecl and static chain, otherwise only
663      the lhs.  */
664   for (i = (is_gimple_call (stmt) ? 2 : 0) + gimple_has_lhs (stmt);
665        i < gimple_num_ops (stmt); ++i)
666     {
667       tree op = gimple_op (stmt, i);
668       if (!op || TREE_CODE (op) == SSA_NAME)
669         continue;
670       if (is_gimple_min_invariant (op))
671         has_constant_operand = true;
672     }
673
674   if (has_constant_operand)
675     all_undefined_operands = false;
676
677   /* If the operation combines operands like COMPLEX_EXPR make sure to
678      not mark the result UNDEFINED if only one part of the result is
679      undefined.  */
680   if (has_undefined_operand && all_undefined_operands)
681     return UNDEFINED;
682   else if (code == GIMPLE_ASSIGN && has_undefined_operand)
683     {
684       switch (gimple_assign_rhs_code (stmt))
685         {
686         /* Unary operators are handled with all_undefined_operands.  */
687         case PLUS_EXPR:
688         case MINUS_EXPR:
689         case POINTER_PLUS_EXPR:
690           /* Not MIN_EXPR, MAX_EXPR.  One VARYING operand may be selected.
691              Not bitwise operators, one VARYING operand may specify the
692              result completely.  Not logical operators for the same reason.
693              Not COMPLEX_EXPR as one VARYING operand makes the result partly
694              not UNDEFINED.  Not *DIV_EXPR, comparisons and shifts because
695              the undefined operand may be promoted.  */
696           return UNDEFINED;
697
698         default:
699           ;
700         }
701     }
702   /* If there was an UNDEFINED operand but the result may be not UNDEFINED
703      fall back to VARYING even if there were CONSTANT operands.  */
704   if (has_undefined_operand)
705     return VARYING;
706
707   /* We do not consider virtual operands here -- load from read-only
708      memory may have only VARYING virtual operands, but still be
709      constant.  */
710   if (has_constant_operand
711       || gimple_references_memory_p (stmt))
712     return CONSTANT;
713
714   return VARYING;
715 }
716
717 /* Returns true if STMT cannot be constant.  */
718
719 static bool
720 surely_varying_stmt_p (gimple stmt)
721 {
722   /* If the statement has operands that we cannot handle, it cannot be
723      constant.  */
724   if (gimple_has_volatile_ops (stmt))
725     return true;
726
727   /* If it is a call and does not return a value or is not a
728      builtin and not an indirect call, it is varying.  */
729   if (is_gimple_call (stmt))
730     {
731       tree fndecl;
732       if (!gimple_call_lhs (stmt)
733           || ((fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
734               && !DECL_BUILT_IN (fndecl)))
735         return true;
736     }
737
738   /* Any other store operation is not interesting.  */
739   else if (gimple_vdef (stmt))
740     return true;
741
742   /* Anything other than assignments and conditional jumps are not
743      interesting for CCP.  */
744   if (gimple_code (stmt) != GIMPLE_ASSIGN
745       && gimple_code (stmt) != GIMPLE_COND
746       && gimple_code (stmt) != GIMPLE_SWITCH
747       && gimple_code (stmt) != GIMPLE_CALL)
748     return true;
749
750   return false;
751 }
752
753 /* Initialize local data structures for CCP.  */
754
755 static void
756 ccp_initialize (void)
757 {
758   basic_block bb;
759
760   const_val = XCNEWVEC (prop_value_t, num_ssa_names);
761
762   /* Initialize simulation flags for PHI nodes and statements.  */
763   FOR_EACH_BB (bb)
764     {
765       gimple_stmt_iterator i;
766
767       for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
768         {
769           gimple stmt = gsi_stmt (i);
770           bool is_varying;
771
772           /* If the statement is a control insn, then we do not
773              want to avoid simulating the statement once.  Failure
774              to do so means that those edges will never get added.  */
775           if (stmt_ends_bb_p (stmt))
776             is_varying = false;
777           else
778             is_varying = surely_varying_stmt_p (stmt);
779
780           if (is_varying)
781             {
782               tree def;
783               ssa_op_iter iter;
784
785               /* If the statement will not produce a constant, mark
786                  all its outputs VARYING.  */
787               FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
788                 set_value_varying (def);
789             }
790           prop_set_simulate_again (stmt, !is_varying);
791         }
792     }
793
794   /* Now process PHI nodes.  We never clear the simulate_again flag on
795      phi nodes, since we do not know which edges are executable yet,
796      except for phi nodes for virtual operands when we do not do store ccp.  */
797   FOR_EACH_BB (bb)
798     {
799       gimple_stmt_iterator i;
800
801       for (i = gsi_start_phis (bb); !gsi_end_p (i); gsi_next (&i))
802         {
803           gimple phi = gsi_stmt (i);
804
805           if (!is_gimple_reg (gimple_phi_result (phi)))
806             prop_set_simulate_again (phi, false);
807           else
808             prop_set_simulate_again (phi, true);
809         }
810     }
811 }
812
813 /* Debug count support. Reset the values of ssa names
814    VARYING when the total number ssa names analyzed is
815    beyond the debug count specified.  */
816
817 static void
818 do_dbg_cnt (void)
819 {
820   unsigned i;
821   for (i = 0; i < num_ssa_names; i++)
822     {
823       if (!dbg_cnt (ccp))
824         {
825           const_val[i].lattice_val = VARYING;
826           const_val[i].mask = double_int_minus_one;
827           const_val[i].value = NULL_TREE;
828         }
829     }
830 }
831
832
833 /* Do final substitution of propagated values, cleanup the flowgraph and
834    free allocated storage.
835
836    Return TRUE when something was optimized.  */
837
838 static bool
839 ccp_finalize (void)
840 {
841   bool something_changed;
842   unsigned i;
843
844   do_dbg_cnt ();
845
846   /* Derive alignment and misalignment information from partially
847      constant pointers in the lattice.  */
848   for (i = 1; i < num_ssa_names; ++i)
849     {
850       tree name = ssa_name (i);
851       prop_value_t *val;
852       struct ptr_info_def *pi;
853       unsigned int tem, align;
854
855       if (!name
856           || !POINTER_TYPE_P (TREE_TYPE (name)))
857         continue;
858
859       val = get_value (name);
860       if (val->lattice_val != CONSTANT
861           || TREE_CODE (val->value) != INTEGER_CST)
862         continue;
863
864       /* Trailing constant bits specify the alignment, trailing value
865          bits the misalignment.  */
866       tem = val->mask.low;
867       align = (tem & -tem);
868       if (align == 1)
869         continue;
870
871       pi = get_ptr_info (name);
872       pi->align = align;
873       pi->misalign = TREE_INT_CST_LOW (val->value) & (align - 1);
874     }
875
876   /* Perform substitutions based on the known constant values.  */
877   something_changed = substitute_and_fold (get_constant_value,
878                                            ccp_fold_stmt, true);
879
880   free (const_val);
881   const_val = NULL;
882   return something_changed;;
883 }
884
885
886 /* Compute the meet operator between *VAL1 and *VAL2.  Store the result
887    in VAL1.
888
889                 any  M UNDEFINED   = any
890                 any  M VARYING     = VARYING
891                 Ci   M Cj          = Ci         if (i == j)
892                 Ci   M Cj          = VARYING    if (i != j)
893    */
894
895 static void
896 ccp_lattice_meet (prop_value_t *val1, prop_value_t *val2)
897 {
898   if (val1->lattice_val == UNDEFINED)
899     {
900       /* UNDEFINED M any = any   */
901       *val1 = *val2;
902     }
903   else if (val2->lattice_val == UNDEFINED)
904     {
905       /* any M UNDEFINED = any
906          Nothing to do.  VAL1 already contains the value we want.  */
907       ;
908     }
909   else if (val1->lattice_val == VARYING
910            || val2->lattice_val == VARYING)
911     {
912       /* any M VARYING = VARYING.  */
913       val1->lattice_val = VARYING;
914       val1->mask = double_int_minus_one;
915       val1->value = NULL_TREE;
916     }
917   else if (val1->lattice_val == CONSTANT
918            && val2->lattice_val == CONSTANT
919            && TREE_CODE (val1->value) == INTEGER_CST
920            && TREE_CODE (val2->value) == INTEGER_CST)
921     {
922       /* Ci M Cj = Ci           if (i == j)
923          Ci M Cj = VARYING      if (i != j)
924
925          For INTEGER_CSTs mask unequal bits.  If no equal bits remain,
926          drop to varying.  */
927       val1->mask
928           = double_int_ior (double_int_ior (val1->mask,
929                                             val2->mask),
930                             double_int_xor (tree_to_double_int (val1->value),
931                                             tree_to_double_int (val2->value)));
932       if (double_int_minus_one_p (val1->mask))
933         {
934           val1->lattice_val = VARYING;
935           val1->value = NULL_TREE;
936         }
937     }
938   else if (val1->lattice_val == CONSTANT
939            && val2->lattice_val == CONSTANT
940            && simple_cst_equal (val1->value, val2->value) == 1)
941     {
942       /* Ci M Cj = Ci           if (i == j)
943          Ci M Cj = VARYING      if (i != j)
944
945          VAL1 already contains the value we want for equivalent values.  */
946     }
947   else if (val1->lattice_val == CONSTANT
948            && val2->lattice_val == CONSTANT
949            && (TREE_CODE (val1->value) == ADDR_EXPR
950                || TREE_CODE (val2->value) == ADDR_EXPR))
951     {
952       /* When not equal addresses are involved try meeting for
953          alignment.  */
954       prop_value_t tem = *val2;
955       if (TREE_CODE (val1->value) == ADDR_EXPR)
956         *val1 = get_value_for_expr (val1->value, true);
957       if (TREE_CODE (val2->value) == ADDR_EXPR)
958         tem = get_value_for_expr (val2->value, true);
959       ccp_lattice_meet (val1, &tem);
960     }
961   else
962     {
963       /* Any other combination is VARYING.  */
964       val1->lattice_val = VARYING;
965       val1->mask = double_int_minus_one;
966       val1->value = NULL_TREE;
967     }
968 }
969
970
971 /* Loop through the PHI_NODE's parameters for BLOCK and compare their
972    lattice values to determine PHI_NODE's lattice value.  The value of a
973    PHI node is determined calling ccp_lattice_meet with all the arguments
974    of the PHI node that are incoming via executable edges.  */
975
976 static enum ssa_prop_result
977 ccp_visit_phi_node (gimple phi)
978 {
979   unsigned i;
980   prop_value_t *old_val, new_val;
981
982   if (dump_file && (dump_flags & TDF_DETAILS))
983     {
984       fprintf (dump_file, "\nVisiting PHI node: ");
985       print_gimple_stmt (dump_file, phi, 0, dump_flags);
986     }
987
988   old_val = get_value (gimple_phi_result (phi));
989   switch (old_val->lattice_val)
990     {
991     case VARYING:
992       return SSA_PROP_VARYING;
993
994     case CONSTANT:
995       new_val = *old_val;
996       break;
997
998     case UNDEFINED:
999       new_val.lattice_val = UNDEFINED;
1000       new_val.value = NULL_TREE;
1001       break;
1002
1003     default:
1004       gcc_unreachable ();
1005     }
1006
1007   for (i = 0; i < gimple_phi_num_args (phi); i++)
1008     {
1009       /* Compute the meet operator over all the PHI arguments flowing
1010          through executable edges.  */
1011       edge e = gimple_phi_arg_edge (phi, i);
1012
1013       if (dump_file && (dump_flags & TDF_DETAILS))
1014         {
1015           fprintf (dump_file,
1016               "\n    Argument #%d (%d -> %d %sexecutable)\n",
1017               i, e->src->index, e->dest->index,
1018               (e->flags & EDGE_EXECUTABLE) ? "" : "not ");
1019         }
1020
1021       /* If the incoming edge is executable, Compute the meet operator for
1022          the existing value of the PHI node and the current PHI argument.  */
1023       if (e->flags & EDGE_EXECUTABLE)
1024         {
1025           tree arg = gimple_phi_arg (phi, i)->def;
1026           prop_value_t arg_val = get_value_for_expr (arg, false);
1027
1028           ccp_lattice_meet (&new_val, &arg_val);
1029
1030           if (dump_file && (dump_flags & TDF_DETAILS))
1031             {
1032               fprintf (dump_file, "\t");
1033               print_generic_expr (dump_file, arg, dump_flags);
1034               dump_lattice_value (dump_file, "\tValue: ", arg_val);
1035               fprintf (dump_file, "\n");
1036             }
1037
1038           if (new_val.lattice_val == VARYING)
1039             break;
1040         }
1041     }
1042
1043   if (dump_file && (dump_flags & TDF_DETAILS))
1044     {
1045       dump_lattice_value (dump_file, "\n    PHI node value: ", new_val);
1046       fprintf (dump_file, "\n\n");
1047     }
1048
1049   /* Make the transition to the new value.  */
1050   if (set_lattice_value (gimple_phi_result (phi), new_val))
1051     {
1052       if (new_val.lattice_val == VARYING)
1053         return SSA_PROP_VARYING;
1054       else
1055         return SSA_PROP_INTERESTING;
1056     }
1057   else
1058     return SSA_PROP_NOT_INTERESTING;
1059 }
1060
1061 /* Return the constant value for OP or OP otherwise.  */
1062
1063 static tree
1064 valueize_op (tree op)
1065 {
1066   if (TREE_CODE (op) == SSA_NAME)
1067     {
1068       tree tem = get_constant_value (op);
1069       if (tem)
1070         return tem;
1071     }
1072   return op;
1073 }
1074
1075 /* CCP specific front-end to the non-destructive constant folding
1076    routines.
1077
1078    Attempt to simplify the RHS of STMT knowing that one or more
1079    operands are constants.
1080
1081    If simplification is possible, return the simplified RHS,
1082    otherwise return the original RHS or NULL_TREE.  */
1083
1084 static tree
1085 ccp_fold (gimple stmt)
1086 {
1087   location_t loc = gimple_location (stmt);
1088   switch (gimple_code (stmt))
1089     {
1090     case GIMPLE_ASSIGN:
1091       {
1092         enum tree_code subcode = gimple_assign_rhs_code (stmt);
1093
1094         switch (get_gimple_rhs_class (subcode))
1095           {
1096           case GIMPLE_SINGLE_RHS:
1097             {
1098               tree rhs = gimple_assign_rhs1 (stmt);
1099               enum tree_code_class kind = TREE_CODE_CLASS (subcode);
1100
1101               if (TREE_CODE (rhs) == SSA_NAME)
1102                 {
1103                   /* If the RHS is an SSA_NAME, return its known constant value,
1104                      if any.  */
1105                   return get_constant_value (rhs);
1106                 }
1107               /* Handle propagating invariant addresses into address operations.
1108                  The folding we do here matches that in tree-ssa-forwprop.c.  */
1109               else if (TREE_CODE (rhs) == ADDR_EXPR)
1110                 {
1111                   tree *base;
1112                   base = &TREE_OPERAND (rhs, 0);
1113                   while (handled_component_p (*base))
1114                     base = &TREE_OPERAND (*base, 0);
1115                   if (TREE_CODE (*base) == MEM_REF
1116                       && TREE_CODE (TREE_OPERAND (*base, 0)) == SSA_NAME)
1117                     {
1118                       tree val = get_constant_value (TREE_OPERAND (*base, 0));
1119                       if (val
1120                           && TREE_CODE (val) == ADDR_EXPR)
1121                         {
1122                           tree ret, save = *base;
1123                           tree new_base;
1124                           new_base = fold_build2 (MEM_REF, TREE_TYPE (*base),
1125                                                   unshare_expr (val),
1126                                                   TREE_OPERAND (*base, 1));
1127                           /* We need to return a new tree, not modify the IL
1128                              or share parts of it.  So play some tricks to
1129                              avoid manually building it.  */
1130                           *base = new_base;
1131                           ret = unshare_expr (rhs);
1132                           recompute_tree_invariant_for_addr_expr (ret);
1133                           *base = save;
1134                           return ret;
1135                         }
1136                     }
1137                 }
1138               else if (TREE_CODE (rhs) == CONSTRUCTOR
1139                        && TREE_CODE (TREE_TYPE (rhs)) == VECTOR_TYPE
1140                        && (CONSTRUCTOR_NELTS (rhs)
1141                            == TYPE_VECTOR_SUBPARTS (TREE_TYPE (rhs))))
1142                 {
1143                   unsigned i;
1144                   tree val, list;
1145
1146                   list = NULL_TREE;
1147                   FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (rhs), i, val)
1148                     {
1149                       val = valueize_op (val);
1150                       if (TREE_CODE (val) == INTEGER_CST
1151                           || TREE_CODE (val) == REAL_CST
1152                           || TREE_CODE (val) == FIXED_CST)
1153                         list = tree_cons (NULL_TREE, val, list);
1154                       else
1155                         return NULL_TREE;
1156                     }
1157
1158                   return build_vector (TREE_TYPE (rhs), nreverse (list));
1159                 }
1160
1161               if (kind == tcc_reference)
1162                 {
1163                   if ((TREE_CODE (rhs) == VIEW_CONVERT_EXPR
1164                        || TREE_CODE (rhs) == REALPART_EXPR
1165                        || TREE_CODE (rhs) == IMAGPART_EXPR)
1166                       && TREE_CODE (TREE_OPERAND (rhs, 0)) == SSA_NAME)
1167                     {
1168                       tree val = get_constant_value (TREE_OPERAND (rhs, 0));
1169                       if (val)
1170                         return fold_unary_loc (EXPR_LOCATION (rhs),
1171                                                TREE_CODE (rhs),
1172                                                TREE_TYPE (rhs), val);
1173                     }
1174                   else if (TREE_CODE (rhs) == MEM_REF
1175                            && TREE_CODE (TREE_OPERAND (rhs, 0)) == SSA_NAME)
1176                     {
1177                       tree val = get_constant_value (TREE_OPERAND (rhs, 0));
1178                       if (val
1179                           && TREE_CODE (val) == ADDR_EXPR)
1180                         {
1181                           tree tem = fold_build2 (MEM_REF, TREE_TYPE (rhs),
1182                                                   unshare_expr (val),
1183                                                   TREE_OPERAND (rhs, 1));
1184                           if (tem)
1185                             rhs = tem;
1186                         }
1187                     }
1188                   return fold_const_aggregate_ref (rhs);
1189                 }
1190               else if (kind == tcc_declaration)
1191                 return get_symbol_constant_value (rhs);
1192               return rhs;
1193             }
1194
1195           case GIMPLE_UNARY_RHS:
1196             {
1197               /* Handle unary operators that can appear in GIMPLE form.
1198                  Note that we know the single operand must be a constant,
1199                  so this should almost always return a simplified RHS.  */
1200               tree lhs = gimple_assign_lhs (stmt);
1201               tree op0 = valueize_op (gimple_assign_rhs1 (stmt));
1202
1203               /* Conversions are useless for CCP purposes if they are
1204                  value-preserving.  Thus the restrictions that
1205                  useless_type_conversion_p places for pointer type conversions
1206                  do not apply here.  Substitution later will only substitute to
1207                  allowed places.  */
1208               if (CONVERT_EXPR_CODE_P (subcode)
1209                   && POINTER_TYPE_P (TREE_TYPE (lhs))
1210                   && POINTER_TYPE_P (TREE_TYPE (op0)))
1211                 {
1212                   tree tem;
1213                   /* Try to re-construct array references on-the-fly.  */
1214                   if (!useless_type_conversion_p (TREE_TYPE (lhs),
1215                                                   TREE_TYPE (op0))
1216                       && ((tem = maybe_fold_offset_to_address
1217                            (loc,
1218                             op0, integer_zero_node, TREE_TYPE (lhs)))
1219                           != NULL_TREE))
1220                     return tem;
1221                   return op0;
1222                 }
1223
1224               return
1225                 fold_unary_ignore_overflow_loc (loc, subcode,
1226                                                 gimple_expr_type (stmt), op0);
1227             }
1228
1229           case GIMPLE_BINARY_RHS:
1230             {
1231               /* Handle binary operators that can appear in GIMPLE form.  */
1232               tree op0 = valueize_op (gimple_assign_rhs1 (stmt));
1233               tree op1 = valueize_op (gimple_assign_rhs2 (stmt));
1234
1235               /* Translate &x + CST into an invariant form suitable for
1236                  further propagation.  */
1237               if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR
1238                   && TREE_CODE (op0) == ADDR_EXPR
1239                   && TREE_CODE (op1) == INTEGER_CST)
1240                 {
1241                   tree off = fold_convert (ptr_type_node, op1);
1242                   return build_fold_addr_expr
1243                            (fold_build2 (MEM_REF,
1244                                          TREE_TYPE (TREE_TYPE (op0)),
1245                                          unshare_expr (op0), off));
1246                 }
1247
1248               return fold_binary_loc (loc, subcode,
1249                                       gimple_expr_type (stmt), op0, op1);
1250             }
1251
1252           case GIMPLE_TERNARY_RHS:
1253             {
1254               /* Handle ternary operators that can appear in GIMPLE form.  */
1255               tree op0 = valueize_op (gimple_assign_rhs1 (stmt));
1256               tree op1 = valueize_op (gimple_assign_rhs2 (stmt));
1257               tree op2 = valueize_op (gimple_assign_rhs3 (stmt));
1258
1259               return fold_ternary_loc (loc, subcode,
1260                                        gimple_expr_type (stmt), op0, op1, op2);
1261             }
1262
1263           default:
1264             gcc_unreachable ();
1265           }
1266       }
1267       break;
1268
1269     case GIMPLE_CALL:
1270       {
1271         tree fn = valueize_op (gimple_call_fn (stmt));
1272         if (TREE_CODE (fn) == ADDR_EXPR
1273             && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
1274             && DECL_BUILT_IN (TREE_OPERAND (fn, 0)))
1275           {
1276             tree *args = XALLOCAVEC (tree, gimple_call_num_args (stmt));
1277             tree call, retval;
1278             unsigned i;
1279             for (i = 0; i < gimple_call_num_args (stmt); ++i)
1280               args[i] = valueize_op (gimple_call_arg (stmt, i));
1281             call = build_call_array_loc (loc,
1282                                          gimple_call_return_type (stmt),
1283                                          fn, gimple_call_num_args (stmt), args);
1284             retval = fold_call_expr (EXPR_LOCATION (call), call, false);
1285             if (retval)
1286               /* fold_call_expr wraps the result inside a NOP_EXPR.  */
1287               STRIP_NOPS (retval);
1288             return retval;
1289           }
1290         return NULL_TREE;
1291       }
1292
1293     case GIMPLE_COND:
1294       {
1295         /* Handle comparison operators that can appear in GIMPLE form.  */
1296         tree op0 = valueize_op (gimple_cond_lhs (stmt));
1297         tree op1 = valueize_op (gimple_cond_rhs (stmt));
1298         enum tree_code code = gimple_cond_code (stmt);
1299         return fold_binary_loc (loc, code, boolean_type_node, op0, op1);
1300       }
1301
1302     case GIMPLE_SWITCH:
1303       {
1304         /* Return the constant switch index.  */
1305         return valueize_op (gimple_switch_index (stmt));
1306       }
1307
1308     default:
1309       gcc_unreachable ();
1310     }
1311 }
1312
1313 /* Return the tree representing the element referenced by T if T is an
1314    ARRAY_REF or COMPONENT_REF into constant aggregates.  Return
1315    NULL_TREE otherwise.  */
1316
1317 tree
1318 fold_const_aggregate_ref (tree t)
1319 {
1320   tree base, ctor, idx, field;
1321   unsigned HOST_WIDE_INT cnt;
1322   tree cfield, cval;
1323   tree tem;
1324
1325   if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
1326     return get_symbol_constant_value (t);
1327
1328   switch (TREE_CODE (t))
1329     {
1330     case ARRAY_REF:
1331       /* Get a CONSTRUCTOR.  If BASE is a VAR_DECL, get its
1332          DECL_INITIAL.  If BASE is a nested reference into another
1333          ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
1334          the inner reference.  */
1335       base = TREE_OPERAND (t, 0);
1336       switch (TREE_CODE (base))
1337         {
1338         case MEM_REF:
1339           /* ???  We could handle this case.  */
1340           if (!integer_zerop (TREE_OPERAND (base, 1)))
1341             return NULL_TREE;
1342           base = get_base_address (base);
1343           if (!base
1344               || TREE_CODE (base) != VAR_DECL)
1345             return NULL_TREE;
1346
1347           /* Fallthru.  */
1348         case VAR_DECL:
1349           if (!TREE_READONLY (base)
1350               || TREE_CODE (TREE_TYPE (base)) != ARRAY_TYPE
1351               || !targetm.binds_local_p (base))
1352             return NULL_TREE;
1353
1354           ctor = DECL_INITIAL (base);
1355           break;
1356
1357         case ARRAY_REF:
1358         case COMPONENT_REF:
1359           ctor = fold_const_aggregate_ref (base);
1360           break;
1361
1362         case STRING_CST:
1363         case CONSTRUCTOR:
1364           ctor = base;
1365           break;
1366
1367         default:
1368           return NULL_TREE;
1369         }
1370
1371       if (ctor == NULL_TREE
1372           || (TREE_CODE (ctor) != CONSTRUCTOR
1373               && TREE_CODE (ctor) != STRING_CST)
1374           || !TREE_STATIC (ctor))
1375         return NULL_TREE;
1376
1377       /* Get the index.  If we have an SSA_NAME, try to resolve it
1378          with the current lattice value for the SSA_NAME.  */
1379       idx = TREE_OPERAND (t, 1);
1380       switch (TREE_CODE (idx))
1381         {
1382         case SSA_NAME:
1383           if ((tem = get_constant_value (idx))
1384               && TREE_CODE (tem) == INTEGER_CST)
1385             idx = tem;
1386           else
1387             return NULL_TREE;
1388           break;
1389
1390         case INTEGER_CST:
1391           break;
1392
1393         default:
1394           return NULL_TREE;
1395         }
1396
1397       /* Fold read from constant string.  */
1398       if (TREE_CODE (ctor) == STRING_CST)
1399         {
1400           if ((TYPE_MODE (TREE_TYPE (t))
1401                == TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1402               && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1403                   == MODE_INT)
1404               && GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor)))) == 1
1405               && compare_tree_int (idx, TREE_STRING_LENGTH (ctor)) < 0)
1406             return build_int_cst_type (TREE_TYPE (t),
1407                                        (TREE_STRING_POINTER (ctor)
1408                                         [TREE_INT_CST_LOW (idx)]));
1409           return NULL_TREE;
1410         }
1411
1412       /* Whoo-hoo!  I'll fold ya baby.  Yeah!  */
1413       FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1414         if (tree_int_cst_equal (cfield, idx))
1415           {
1416             STRIP_NOPS (cval);
1417             if (TREE_CODE (cval) == ADDR_EXPR)
1418               {
1419                 tree base = get_base_address (TREE_OPERAND (cval, 0));
1420                 if (base && TREE_CODE (base) == VAR_DECL)
1421                   add_referenced_var (base);
1422               }
1423             return cval;
1424           }
1425       break;
1426
1427     case COMPONENT_REF:
1428       /* Get a CONSTRUCTOR.  If BASE is a VAR_DECL, get its
1429          DECL_INITIAL.  If BASE is a nested reference into another
1430          ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
1431          the inner reference.  */
1432       base = TREE_OPERAND (t, 0);
1433       switch (TREE_CODE (base))
1434         {
1435         case VAR_DECL:
1436           if (!TREE_READONLY (base)
1437               || TREE_CODE (TREE_TYPE (base)) != RECORD_TYPE
1438               || !targetm.binds_local_p (base))
1439             return NULL_TREE;
1440
1441           ctor = DECL_INITIAL (base);
1442           break;
1443
1444         case ARRAY_REF:
1445         case COMPONENT_REF:
1446           ctor = fold_const_aggregate_ref (base);
1447           break;
1448
1449         default:
1450           return NULL_TREE;
1451         }
1452
1453       if (ctor == NULL_TREE
1454           || TREE_CODE (ctor) != CONSTRUCTOR
1455           || !TREE_STATIC (ctor))
1456         return NULL_TREE;
1457
1458       field = TREE_OPERAND (t, 1);
1459
1460       FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1461         if (cfield == field
1462             /* FIXME: Handle bit-fields.  */
1463             && ! DECL_BIT_FIELD (cfield))
1464           {
1465             STRIP_NOPS (cval);
1466             if (TREE_CODE (cval) == ADDR_EXPR)
1467               {
1468                 tree base = get_base_address (TREE_OPERAND (cval, 0));
1469                 if (base && TREE_CODE (base) == VAR_DECL)
1470                   add_referenced_var (base);
1471               }
1472             return cval;
1473           }
1474       break;
1475
1476     case REALPART_EXPR:
1477     case IMAGPART_EXPR:
1478       {
1479         tree c = fold_const_aggregate_ref (TREE_OPERAND (t, 0));
1480         if (c && TREE_CODE (c) == COMPLEX_CST)
1481           return fold_build1_loc (EXPR_LOCATION (t),
1482                               TREE_CODE (t), TREE_TYPE (t), c);
1483         break;
1484       }
1485
1486     case MEM_REF:
1487       /* Get the base object we are accessing.  */
1488       base = TREE_OPERAND (t, 0);
1489       if (TREE_CODE (base) == SSA_NAME
1490           && (tem = get_constant_value (base)))
1491         base = tem;
1492       if (TREE_CODE (base) != ADDR_EXPR)
1493         return NULL_TREE;
1494       base = TREE_OPERAND (base, 0);
1495       switch (TREE_CODE (base))
1496         {
1497         case VAR_DECL:
1498           if (DECL_P (base)
1499               && !AGGREGATE_TYPE_P (TREE_TYPE (base))
1500               && integer_zerop (TREE_OPERAND (t, 1)))
1501             {
1502               tree res = get_symbol_constant_value (base);
1503               if (res
1504                   && !useless_type_conversion_p
1505                         (TREE_TYPE (t), TREE_TYPE (res)))
1506                 res = fold_unary (VIEW_CONVERT_EXPR, TREE_TYPE (t), res);
1507               return res;
1508             }
1509
1510           if (!TREE_READONLY (base)
1511               || TREE_CODE (TREE_TYPE (base)) != ARRAY_TYPE
1512               || !targetm.binds_local_p (base))
1513             return NULL_TREE;
1514
1515           ctor = DECL_INITIAL (base);
1516           break;
1517
1518         case STRING_CST:
1519         case CONSTRUCTOR:
1520           ctor = base;
1521           break;
1522
1523         default:
1524           return NULL_TREE;
1525         }
1526
1527       if (ctor == NULL_TREE
1528           || (TREE_CODE (ctor) != CONSTRUCTOR
1529               && TREE_CODE (ctor) != STRING_CST)
1530           || !TREE_STATIC (ctor))
1531         return NULL_TREE;
1532
1533       /* Get the byte offset.  */
1534       idx = TREE_OPERAND (t, 1);
1535
1536       /* Fold read from constant string.  */
1537       if (TREE_CODE (ctor) == STRING_CST)
1538         {
1539           if ((TYPE_MODE (TREE_TYPE (t))
1540                == TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1541               && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1542                   == MODE_INT)
1543               && GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor)))) == 1
1544               && compare_tree_int (idx, TREE_STRING_LENGTH (ctor)) < 0)
1545             return build_int_cst_type (TREE_TYPE (t),
1546                                        (TREE_STRING_POINTER (ctor)
1547                                         [TREE_INT_CST_LOW (idx)]));
1548           return NULL_TREE;
1549         }
1550
1551       /* ???  Implement byte-offset indexing into a non-array CONSTRUCTOR.  */
1552       if (TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE
1553           && (TYPE_MODE (TREE_TYPE (t))
1554               == TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1555           && GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (t))) != 0
1556           && integer_zerop
1557                (int_const_binop
1558                   (TRUNC_MOD_EXPR, idx,
1559                    size_int (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (t)))), 0)))
1560         {
1561           idx = int_const_binop (TRUNC_DIV_EXPR, idx,
1562                                  size_int (GET_MODE_SIZE
1563                                              (TYPE_MODE (TREE_TYPE (t)))), 0);
1564           FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1565             if (tree_int_cst_equal (cfield, idx))
1566               {
1567                 STRIP_NOPS (cval);
1568                 if (TREE_CODE (cval) == ADDR_EXPR)
1569                   {
1570                     tree base = get_base_address (TREE_OPERAND (cval, 0));
1571                     if (base && TREE_CODE (base) == VAR_DECL)
1572                       add_referenced_var (base);
1573                   }
1574                 if (useless_type_conversion_p (TREE_TYPE (t), TREE_TYPE (cval)))
1575                   return cval;
1576                 else if (CONSTANT_CLASS_P (cval))
1577                   return fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (t), cval);
1578                 else
1579                   return NULL_TREE;
1580               }
1581         }
1582       break;
1583
1584     default:
1585       break;
1586     }
1587
1588   return NULL_TREE;
1589 }
1590
1591 /* Apply the operation CODE in type TYPE to the value, mask pair
1592    RVAL and RMASK representing a value of type RTYPE and set
1593    the value, mask pair *VAL and *MASK to the result.  */
1594
1595 static void
1596 bit_value_unop_1 (enum tree_code code, tree type,
1597                   double_int *val, double_int *mask,
1598                   tree rtype, double_int rval, double_int rmask)
1599 {
1600   switch (code)
1601     {
1602     case BIT_NOT_EXPR:
1603       *mask = rmask;
1604       *val = double_int_not (rval);
1605       break;
1606
1607     case NEGATE_EXPR:
1608       {
1609         double_int temv, temm;
1610         /* Return ~rval + 1.  */
1611         bit_value_unop_1 (BIT_NOT_EXPR, type, &temv, &temm, type, rval, rmask);
1612         bit_value_binop_1 (PLUS_EXPR, type, val, mask,
1613                          type, temv, temm,
1614                          type, double_int_one, double_int_zero);
1615         break;
1616       }
1617
1618     CASE_CONVERT:
1619       {
1620         bool uns;
1621
1622         /* First extend mask and value according to the original type.  */
1623         uns = (TREE_CODE (rtype) == INTEGER_TYPE && TYPE_IS_SIZETYPE (rtype)
1624                ? 0 : TYPE_UNSIGNED (rtype));
1625         *mask = double_int_ext (rmask, TYPE_PRECISION (rtype), uns);
1626         *val = double_int_ext (rval, TYPE_PRECISION (rtype), uns);
1627
1628         /* Then extend mask and value according to the target type.  */
1629         uns = (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type)
1630                ? 0 : TYPE_UNSIGNED (type));
1631         *mask = double_int_ext (*mask, TYPE_PRECISION (type), uns);
1632         *val = double_int_ext (*val, TYPE_PRECISION (type), uns);
1633         break;
1634       }
1635
1636     default:
1637       *mask = double_int_minus_one;
1638       break;
1639     }
1640 }
1641
1642 /* Apply the operation CODE in type TYPE to the value, mask pairs
1643    R1VAL, R1MASK and R2VAL, R2MASK representing a values of type R1TYPE
1644    and R2TYPE and set the value, mask pair *VAL and *MASK to the result.  */
1645
1646 static void
1647 bit_value_binop_1 (enum tree_code code, tree type,
1648                    double_int *val, double_int *mask,
1649                    tree r1type, double_int r1val, double_int r1mask,
1650                    tree r2type, double_int r2val, double_int r2mask)
1651 {
1652   bool uns = (TREE_CODE (type) == INTEGER_TYPE
1653               && TYPE_IS_SIZETYPE (type) ? 0 : TYPE_UNSIGNED (type));
1654   /* Assume we'll get a constant result.  Use an initial varying value,
1655      we fall back to varying in the end if necessary.  */
1656   *mask = double_int_minus_one;
1657   switch (code)
1658     {
1659     case BIT_AND_EXPR:
1660       /* The mask is constant where there is a known not
1661          set bit, (m1 | m2) & ((v1 | m1) & (v2 | m2)) */
1662       *mask = double_int_and (double_int_ior (r1mask, r2mask),
1663                               double_int_and (double_int_ior (r1val, r1mask),
1664                                               double_int_ior (r2val, r2mask)));
1665       *val = double_int_and (r1val, r2val);
1666       break;
1667
1668     case BIT_IOR_EXPR:
1669       /* The mask is constant where there is a known
1670          set bit, (m1 | m2) & ~((v1 & ~m1) | (v2 & ~m2)).  */
1671       *mask = double_int_and_not
1672                 (double_int_ior (r1mask, r2mask),
1673                  double_int_ior (double_int_and_not (r1val, r1mask),
1674                                  double_int_and_not (r2val, r2mask)));
1675       *val = double_int_ior (r1val, r2val);
1676       break;
1677
1678     case BIT_XOR_EXPR:
1679       /* m1 | m2  */
1680       *mask = double_int_ior (r1mask, r2mask);
1681       *val = double_int_xor (r1val, r2val);
1682       break;
1683
1684     case LROTATE_EXPR:
1685     case RROTATE_EXPR:
1686       if (double_int_zero_p (r2mask))
1687         {
1688           HOST_WIDE_INT shift = r2val.low;
1689           if (code == RROTATE_EXPR)
1690             shift = -shift;
1691           *mask = double_int_lrotate (r1mask, shift, TYPE_PRECISION (type));
1692           *val = double_int_lrotate (r1val, shift, TYPE_PRECISION (type));
1693         }
1694       break;
1695
1696     case LSHIFT_EXPR:
1697     case RSHIFT_EXPR:
1698       /* ???  We can handle partially known shift counts if we know
1699          its sign.  That way we can tell that (x << (y | 8)) & 255
1700          is zero.  */
1701       if (double_int_zero_p (r2mask))
1702         {
1703           HOST_WIDE_INT shift = r2val.low;
1704           if (code == RSHIFT_EXPR)
1705             shift = -shift;
1706           /* We need to know if we are doing a left or a right shift
1707              to properly shift in zeros for left shift and unsigned
1708              right shifts and the sign bit for signed right shifts.
1709              For signed right shifts we shift in varying in case
1710              the sign bit was varying.  */
1711           if (shift > 0)
1712             {
1713               *mask = double_int_lshift (r1mask, shift,
1714                                          TYPE_PRECISION (type), false);
1715               *val = double_int_lshift (r1val, shift,
1716                                         TYPE_PRECISION (type), false);
1717             }
1718           else if (shift < 0)
1719             {
1720               shift = -shift;
1721               *mask = double_int_rshift (r1mask, shift,
1722                                          TYPE_PRECISION (type), !uns);
1723               *val = double_int_rshift (r1val, shift,
1724                                         TYPE_PRECISION (type), !uns);
1725             }
1726           else
1727             {
1728               *mask = r1mask;
1729               *val = r1val;
1730             }
1731         }
1732       break;
1733
1734     case PLUS_EXPR:
1735     case POINTER_PLUS_EXPR:
1736       {
1737         double_int lo, hi;
1738         /* Do the addition with unknown bits set to zero, to give carry-ins of
1739            zero wherever possible.  */
1740         lo = double_int_add (double_int_and_not (r1val, r1mask),
1741                              double_int_and_not (r2val, r2mask));
1742         lo = double_int_ext (lo, TYPE_PRECISION (type), uns);
1743         /* Do the addition with unknown bits set to one, to give carry-ins of
1744            one wherever possible.  */
1745         hi = double_int_add (double_int_ior (r1val, r1mask),
1746                              double_int_ior (r2val, r2mask));
1747         hi = double_int_ext (hi, TYPE_PRECISION (type), uns);
1748         /* Each bit in the result is known if (a) the corresponding bits in
1749            both inputs are known, and (b) the carry-in to that bit position
1750            is known.  We can check condition (b) by seeing if we got the same
1751            result with minimised carries as with maximised carries.  */
1752         *mask = double_int_ior (double_int_ior (r1mask, r2mask),
1753                                 double_int_xor (lo, hi));
1754         *mask = double_int_ext (*mask, TYPE_PRECISION (type), uns);
1755         /* It shouldn't matter whether we choose lo or hi here.  */
1756         *val = lo;
1757         break;
1758       }
1759
1760     case MINUS_EXPR:
1761       {
1762         double_int temv, temm;
1763         bit_value_unop_1 (NEGATE_EXPR, r2type, &temv, &temm,
1764                           r2type, r2val, r2mask);
1765         bit_value_binop_1 (PLUS_EXPR, type, val, mask,
1766                            r1type, r1val, r1mask,
1767                            r2type, temv, temm);
1768         break;
1769       }
1770
1771     case MULT_EXPR:
1772       {
1773         /* Just track trailing zeros in both operands and transfer
1774            them to the other.  */
1775         int r1tz = double_int_ctz (double_int_ior (r1val, r1mask));
1776         int r2tz = double_int_ctz (double_int_ior (r2val, r2mask));
1777         if (r1tz + r2tz >= HOST_BITS_PER_DOUBLE_INT)
1778           {
1779             *mask = double_int_zero;
1780             *val = double_int_zero;
1781           }
1782         else if (r1tz + r2tz > 0)
1783           {
1784             *mask = double_int_not (double_int_mask (r1tz + r2tz));
1785             *mask = double_int_ext (*mask, TYPE_PRECISION (type), uns);
1786             *val = double_int_zero;
1787           }
1788         break;
1789       }
1790
1791     case EQ_EXPR:
1792     case NE_EXPR:
1793       {
1794         double_int m = double_int_ior (r1mask, r2mask);
1795         if (!double_int_equal_p (double_int_and_not (r1val, m),
1796                                  double_int_and_not (r2val, m)))
1797           {
1798             *mask = double_int_zero;
1799             *val = ((code == EQ_EXPR) ? double_int_zero : double_int_one);
1800           }
1801         else
1802           {
1803             /* We know the result of a comparison is always one or zero.  */
1804             *mask = double_int_one;
1805             *val = double_int_zero;
1806           }
1807         break;
1808       }
1809
1810     case GE_EXPR:
1811     case GT_EXPR:
1812       {
1813         double_int tem = r1val;
1814         r1val = r2val;
1815         r2val = tem;
1816         tem = r1mask;
1817         r1mask = r2mask;
1818         r2mask = tem;
1819         code = swap_tree_comparison (code);
1820       }
1821       /* Fallthru.  */
1822     case LT_EXPR:
1823     case LE_EXPR:
1824       {
1825         int minmax, maxmin;
1826         /* If the most significant bits are not known we know nothing.  */
1827         if (double_int_negative_p (r1mask) || double_int_negative_p (r2mask))
1828           break;
1829
1830         /* If we know the most significant bits we know the values
1831            value ranges by means of treating varying bits as zero
1832            or one.  Do a cross comparison of the max/min pairs.  */
1833         maxmin = double_int_cmp (double_int_ior (r1val, r1mask),
1834                                  double_int_and_not (r2val, r2mask), uns);
1835         minmax = double_int_cmp (double_int_and_not (r1val, r1mask),
1836                                  double_int_ior (r2val, r2mask), uns);
1837         if (maxmin < 0)  /* r1 is less than r2.  */
1838           {
1839             *mask = double_int_zero;
1840             *val = double_int_one;
1841           }
1842         else if (minmax > 0)  /* r1 is not less or equal to r2.  */
1843           {
1844             *mask = double_int_zero;
1845             *val = double_int_zero;
1846           }
1847         else if (maxmin == minmax)  /* r1 and r2 are equal.  */
1848           {
1849             /* This probably should never happen as we'd have
1850                folded the thing during fully constant value folding.  */
1851             *mask = double_int_zero;
1852             *val = (code == LE_EXPR ? double_int_one :  double_int_zero);
1853           }
1854         else
1855           {
1856             /* We know the result of a comparison is always one or zero.  */
1857             *mask = double_int_one;
1858             *val = double_int_zero;
1859           }
1860         break;
1861       }
1862
1863     default:;
1864     }
1865 }
1866
1867 /* Return the propagation value when applying the operation CODE to
1868    the value RHS yielding type TYPE.  */
1869
1870 static prop_value_t
1871 bit_value_unop (enum tree_code code, tree type, tree rhs)
1872 {
1873   prop_value_t rval = get_value_for_expr (rhs, true);
1874   double_int value, mask;
1875   prop_value_t val;
1876   gcc_assert ((rval.lattice_val == CONSTANT
1877                && TREE_CODE (rval.value) == INTEGER_CST)
1878               || double_int_minus_one_p (rval.mask));
1879   bit_value_unop_1 (code, type, &value, &mask,
1880                     TREE_TYPE (rhs), value_to_double_int (rval), rval.mask);
1881   if (!double_int_minus_one_p (mask))
1882     {
1883       val.lattice_val = CONSTANT;
1884       val.mask = mask;
1885       /* ???  Delay building trees here.  */
1886       val.value = double_int_to_tree (type, value);
1887     }
1888   else
1889     {
1890       val.lattice_val = VARYING;
1891       val.value = NULL_TREE;
1892       val.mask = double_int_minus_one;
1893     }
1894   return val;
1895 }
1896
1897 /* Return the propagation value when applying the operation CODE to
1898    the values RHS1 and RHS2 yielding type TYPE.  */
1899
1900 static prop_value_t
1901 bit_value_binop (enum tree_code code, tree type, tree rhs1, tree rhs2)
1902 {
1903   prop_value_t r1val = get_value_for_expr (rhs1, true);
1904   prop_value_t r2val = get_value_for_expr (rhs2, true);
1905   double_int value, mask;
1906   prop_value_t val;
1907   gcc_assert ((r1val.lattice_val == CONSTANT
1908                && TREE_CODE (r1val.value) == INTEGER_CST)
1909               || double_int_minus_one_p (r1val.mask));
1910   gcc_assert ((r2val.lattice_val == CONSTANT
1911                && TREE_CODE (r2val.value) == INTEGER_CST)
1912               || double_int_minus_one_p (r2val.mask));
1913   bit_value_binop_1 (code, type, &value, &mask,
1914                      TREE_TYPE (rhs1), value_to_double_int (r1val), r1val.mask,
1915                      TREE_TYPE (rhs2), value_to_double_int (r2val), r2val.mask);
1916   if (!double_int_minus_one_p (mask))
1917     {
1918       val.lattice_val = CONSTANT;
1919       val.mask = mask;
1920       /* ???  Delay building trees here.  */
1921       val.value = double_int_to_tree (type, value);
1922     }
1923   else
1924     {
1925       val.lattice_val = VARYING;
1926       val.value = NULL_TREE;
1927       val.mask = double_int_minus_one;
1928     }
1929   return val;
1930 }
1931
1932 /* Evaluate statement STMT.
1933    Valid only for assignments, calls, conditionals, and switches. */
1934
1935 static prop_value_t
1936 evaluate_stmt (gimple stmt)
1937 {
1938   prop_value_t val;
1939   tree simplified = NULL_TREE;
1940   ccp_lattice_t likelyvalue = likely_value (stmt);
1941   bool is_constant = false;
1942
1943   if (dump_file && (dump_flags & TDF_DETAILS))
1944     {
1945       fprintf (dump_file, "which is likely ");
1946       switch (likelyvalue)
1947         {
1948         case CONSTANT:
1949           fprintf (dump_file, "CONSTANT");
1950           break;
1951         case UNDEFINED:
1952           fprintf (dump_file, "UNDEFINED");
1953           break;
1954         case VARYING:
1955           fprintf (dump_file, "VARYING");
1956           break;
1957         default:;
1958         }
1959       fprintf (dump_file, "\n");
1960     }
1961
1962   /* If the statement is likely to have a CONSTANT result, then try
1963      to fold the statement to determine the constant value.  */
1964   /* FIXME.  This is the only place that we call ccp_fold.
1965      Since likely_value never returns CONSTANT for calls, we will
1966      not attempt to fold them, including builtins that may profit.  */
1967   if (likelyvalue == CONSTANT)
1968     {
1969       fold_defer_overflow_warnings ();
1970       simplified = ccp_fold (stmt);
1971       is_constant = simplified && is_gimple_min_invariant (simplified);
1972       fold_undefer_overflow_warnings (is_constant, stmt, 0);
1973       if (is_constant)
1974         {
1975           /* The statement produced a constant value.  */
1976           val.lattice_val = CONSTANT;
1977           val.value = simplified;
1978           val.mask = double_int_zero;
1979         }
1980     }
1981   /* If the statement is likely to have a VARYING result, then do not
1982      bother folding the statement.  */
1983   else if (likelyvalue == VARYING)
1984     {
1985       enum gimple_code code = gimple_code (stmt);
1986       if (code == GIMPLE_ASSIGN)
1987         {
1988           enum tree_code subcode = gimple_assign_rhs_code (stmt);
1989
1990           /* Other cases cannot satisfy is_gimple_min_invariant
1991              without folding.  */
1992           if (get_gimple_rhs_class (subcode) == GIMPLE_SINGLE_RHS)
1993             simplified = gimple_assign_rhs1 (stmt);
1994         }
1995       else if (code == GIMPLE_SWITCH)
1996         simplified = gimple_switch_index (stmt);
1997       else
1998         /* These cannot satisfy is_gimple_min_invariant without folding.  */
1999         gcc_assert (code == GIMPLE_CALL || code == GIMPLE_COND);
2000       is_constant = simplified && is_gimple_min_invariant (simplified);
2001       if (is_constant)
2002         {
2003           /* The statement produced a constant value.  */
2004           val.lattice_val = CONSTANT;
2005           val.value = simplified;
2006           val.mask = double_int_zero;
2007         }
2008     }
2009
2010   /* Resort to simplification for bitwise tracking.  */
2011   if (flag_tree_bit_ccp
2012       && likelyvalue == CONSTANT
2013       && !is_constant)
2014     {
2015       enum gimple_code code = gimple_code (stmt);
2016       tree fndecl;
2017       val.lattice_val = VARYING;
2018       val.value = NULL_TREE;
2019       val.mask = double_int_minus_one;
2020       if (code == GIMPLE_ASSIGN)
2021         {
2022           enum tree_code subcode = gimple_assign_rhs_code (stmt);
2023           tree rhs1 = gimple_assign_rhs1 (stmt);
2024           switch (get_gimple_rhs_class (subcode))
2025             {
2026             case GIMPLE_SINGLE_RHS:
2027               if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
2028                   || POINTER_TYPE_P (TREE_TYPE (rhs1)))
2029                 val = get_value_for_expr (rhs1, true);
2030               break;
2031
2032             case GIMPLE_UNARY_RHS:
2033               if ((INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
2034                    || POINTER_TYPE_P (TREE_TYPE (rhs1)))
2035                   && (INTEGRAL_TYPE_P (gimple_expr_type (stmt))
2036                       || POINTER_TYPE_P (gimple_expr_type (stmt))))
2037                 val = bit_value_unop (subcode, gimple_expr_type (stmt), rhs1);
2038               break;
2039
2040             case GIMPLE_BINARY_RHS:
2041               if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
2042                   || POINTER_TYPE_P (TREE_TYPE (rhs1)))
2043                 {
2044                   tree rhs2 = gimple_assign_rhs2 (stmt);
2045                   val = bit_value_binop (subcode,
2046                                          TREE_TYPE (rhs1), rhs1, rhs2);
2047                 }
2048               break;
2049
2050             default:;
2051             }
2052         }
2053       else if (code == GIMPLE_COND)
2054         {
2055           enum tree_code code = gimple_cond_code (stmt);
2056           tree rhs1 = gimple_cond_lhs (stmt);
2057           tree rhs2 = gimple_cond_rhs (stmt);
2058           if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
2059               || POINTER_TYPE_P (TREE_TYPE (rhs1)))
2060             val = bit_value_binop (code, TREE_TYPE (rhs1), rhs1, rhs2);
2061         }
2062       else if (code == GIMPLE_CALL
2063                && (fndecl = gimple_call_fndecl (stmt))
2064                && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
2065         {
2066           switch (DECL_FUNCTION_CODE (fndecl))
2067             {
2068             case BUILT_IN_MALLOC:
2069             case BUILT_IN_REALLOC:
2070             case BUILT_IN_CALLOC:
2071               val.lattice_val = CONSTANT;
2072               val.value = build_int_cst (TREE_TYPE (gimple_get_lhs (stmt)), 0);
2073               val.mask = shwi_to_double_int
2074                            (~(((HOST_WIDE_INT) MALLOC_ABI_ALIGNMENT)
2075                               / BITS_PER_UNIT - 1));
2076               break;
2077
2078             case BUILT_IN_ALLOCA:
2079               val.lattice_val = CONSTANT;
2080               val.value = build_int_cst (TREE_TYPE (gimple_get_lhs (stmt)), 0);
2081               val.mask = shwi_to_double_int
2082                            (~(((HOST_WIDE_INT) BIGGEST_ALIGNMENT)
2083                               / BITS_PER_UNIT - 1));
2084               break;
2085
2086             default:;
2087             }
2088         }
2089       is_constant = (val.lattice_val == CONSTANT);
2090     }
2091
2092   if (!is_constant)
2093     {
2094       /* The statement produced a nonconstant value.  If the statement
2095          had UNDEFINED operands, then the result of the statement
2096          should be UNDEFINED.  Otherwise, the statement is VARYING.  */
2097       if (likelyvalue == UNDEFINED)
2098         {
2099           val.lattice_val = likelyvalue;
2100           val.mask = double_int_zero;
2101         }
2102       else
2103         {
2104           val.lattice_val = VARYING;
2105           val.mask = double_int_minus_one;
2106         }
2107
2108       val.value = NULL_TREE;
2109     }
2110
2111   return val;
2112 }
2113
2114 /* Fold the stmt at *GSI with CCP specific information that propagating
2115    and regular folding does not catch.  */
2116
2117 static bool
2118 ccp_fold_stmt (gimple_stmt_iterator *gsi)
2119 {
2120   gimple stmt = gsi_stmt (*gsi);
2121
2122   switch (gimple_code (stmt))
2123     {
2124     case GIMPLE_COND:
2125       {
2126         prop_value_t val;
2127         /* Statement evaluation will handle type mismatches in constants
2128            more gracefully than the final propagation.  This allows us to
2129            fold more conditionals here.  */
2130         val = evaluate_stmt (stmt);
2131         if (val.lattice_val != CONSTANT
2132             || !double_int_zero_p (val.mask))
2133           return false;
2134
2135         if (dump_file)
2136           {
2137             fprintf (dump_file, "Folding predicate ");
2138             print_gimple_expr (dump_file, stmt, 0, 0);
2139             fprintf (dump_file, " to ");
2140             print_generic_expr (dump_file, val.value, 0);
2141             fprintf (dump_file, "\n");
2142           }
2143
2144         if (integer_zerop (val.value))
2145           gimple_cond_make_false (stmt);
2146         else
2147           gimple_cond_make_true (stmt);
2148
2149         return true;
2150       }
2151
2152     case GIMPLE_CALL:
2153       {
2154         tree lhs = gimple_call_lhs (stmt);
2155         tree val;
2156         tree argt;
2157         bool changed = false;
2158         unsigned i;
2159
2160         /* If the call was folded into a constant make sure it goes
2161            away even if we cannot propagate into all uses because of
2162            type issues.  */
2163         if (lhs
2164             && TREE_CODE (lhs) == SSA_NAME
2165             && (val = get_constant_value (lhs)))
2166           {
2167             tree new_rhs = unshare_expr (val);
2168             bool res;
2169             if (!useless_type_conversion_p (TREE_TYPE (lhs),
2170                                             TREE_TYPE (new_rhs)))
2171               new_rhs = fold_convert (TREE_TYPE (lhs), new_rhs);
2172             res = update_call_from_tree (gsi, new_rhs);
2173             gcc_assert (res);
2174             return true;
2175           }
2176
2177         /* Propagate into the call arguments.  Compared to replace_uses_in
2178            this can use the argument slot types for type verification
2179            instead of the current argument type.  We also can safely
2180            drop qualifiers here as we are dealing with constants anyway.  */
2181         argt = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (gimple_call_fn (stmt))));
2182         for (i = 0; i < gimple_call_num_args (stmt) && argt;
2183              ++i, argt = TREE_CHAIN (argt))
2184           {
2185             tree arg = gimple_call_arg (stmt, i);
2186             if (TREE_CODE (arg) == SSA_NAME
2187                 && (val = get_constant_value (arg))
2188                 && useless_type_conversion_p
2189                      (TYPE_MAIN_VARIANT (TREE_VALUE (argt)),
2190                       TYPE_MAIN_VARIANT (TREE_TYPE (val))))
2191               {
2192                 gimple_call_set_arg (stmt, i, unshare_expr (val));
2193                 changed = true;
2194               }
2195           }
2196
2197         return changed;
2198       }
2199
2200     case GIMPLE_ASSIGN:
2201       {
2202         tree lhs = gimple_assign_lhs (stmt);
2203         tree val;
2204
2205         /* If we have a load that turned out to be constant replace it
2206            as we cannot propagate into all uses in all cases.  */
2207         if (gimple_assign_single_p (stmt)
2208             && TREE_CODE (lhs) == SSA_NAME
2209             && (val = get_constant_value (lhs)))
2210           {
2211             tree rhs = unshare_expr (val);
2212             if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
2213               rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (lhs), rhs);
2214             gimple_assign_set_rhs_from_tree (gsi, rhs);
2215             return true;
2216           }
2217
2218         return false;
2219       }
2220
2221     default:
2222       return false;
2223     }
2224 }
2225
2226 /* Visit the assignment statement STMT.  Set the value of its LHS to the
2227    value computed by the RHS and store LHS in *OUTPUT_P.  If STMT
2228    creates virtual definitions, set the value of each new name to that
2229    of the RHS (if we can derive a constant out of the RHS).
2230    Value-returning call statements also perform an assignment, and
2231    are handled here.  */
2232
2233 static enum ssa_prop_result
2234 visit_assignment (gimple stmt, tree *output_p)
2235 {
2236   prop_value_t val;
2237   enum ssa_prop_result retval;
2238
2239   tree lhs = gimple_get_lhs (stmt);
2240
2241   gcc_assert (gimple_code (stmt) != GIMPLE_CALL
2242               || gimple_call_lhs (stmt) != NULL_TREE);
2243
2244   if (gimple_assign_single_p (stmt)
2245       && gimple_assign_rhs_code (stmt) == SSA_NAME)
2246     /* For a simple copy operation, we copy the lattice values.  */
2247     val = *get_value (gimple_assign_rhs1 (stmt));
2248   else
2249     /* Evaluate the statement, which could be
2250        either a GIMPLE_ASSIGN or a GIMPLE_CALL.  */
2251     val = evaluate_stmt (stmt);
2252
2253   retval = SSA_PROP_NOT_INTERESTING;
2254
2255   /* Set the lattice value of the statement's output.  */
2256   if (TREE_CODE (lhs) == SSA_NAME)
2257     {
2258       /* If STMT is an assignment to an SSA_NAME, we only have one
2259          value to set.  */
2260       if (set_lattice_value (lhs, val))
2261         {
2262           *output_p = lhs;
2263           if (val.lattice_val == VARYING)
2264             retval = SSA_PROP_VARYING;
2265           else
2266             retval = SSA_PROP_INTERESTING;
2267         }
2268     }
2269
2270   return retval;
2271 }
2272
2273
2274 /* Visit the conditional statement STMT.  Return SSA_PROP_INTERESTING
2275    if it can determine which edge will be taken.  Otherwise, return
2276    SSA_PROP_VARYING.  */
2277
2278 static enum ssa_prop_result
2279 visit_cond_stmt (gimple stmt, edge *taken_edge_p)
2280 {
2281   prop_value_t val;
2282   basic_block block;
2283
2284   block = gimple_bb (stmt);
2285   val = evaluate_stmt (stmt);
2286   if (val.lattice_val != CONSTANT
2287       || !double_int_zero_p (val.mask))
2288     return SSA_PROP_VARYING;
2289
2290   /* Find which edge out of the conditional block will be taken and add it
2291      to the worklist.  If no single edge can be determined statically,
2292      return SSA_PROP_VARYING to feed all the outgoing edges to the
2293      propagation engine.  */
2294   *taken_edge_p = find_taken_edge (block, val.value);
2295   if (*taken_edge_p)
2296     return SSA_PROP_INTERESTING;
2297   else
2298     return SSA_PROP_VARYING;
2299 }
2300
2301
2302 /* Evaluate statement STMT.  If the statement produces an output value and
2303    its evaluation changes the lattice value of its output, return
2304    SSA_PROP_INTERESTING and set *OUTPUT_P to the SSA_NAME holding the
2305    output value.
2306
2307    If STMT is a conditional branch and we can determine its truth
2308    value, set *TAKEN_EDGE_P accordingly.  If STMT produces a varying
2309    value, return SSA_PROP_VARYING.  */
2310
2311 static enum ssa_prop_result
2312 ccp_visit_stmt (gimple stmt, edge *taken_edge_p, tree *output_p)
2313 {
2314   tree def;
2315   ssa_op_iter iter;
2316
2317   if (dump_file && (dump_flags & TDF_DETAILS))
2318     {
2319       fprintf (dump_file, "\nVisiting statement:\n");
2320       print_gimple_stmt (dump_file, stmt, 0, dump_flags);
2321     }
2322
2323   switch (gimple_code (stmt))
2324     {
2325       case GIMPLE_ASSIGN:
2326         /* If the statement is an assignment that produces a single
2327            output value, evaluate its RHS to see if the lattice value of
2328            its output has changed.  */
2329         return visit_assignment (stmt, output_p);
2330
2331       case GIMPLE_CALL:
2332         /* A value-returning call also performs an assignment.  */
2333         if (gimple_call_lhs (stmt) != NULL_TREE)
2334           return visit_assignment (stmt, output_p);
2335         break;
2336
2337       case GIMPLE_COND:
2338       case GIMPLE_SWITCH:
2339         /* If STMT is a conditional branch, see if we can determine
2340            which branch will be taken.   */
2341         /* FIXME.  It appears that we should be able to optimize
2342            computed GOTOs here as well.  */
2343         return visit_cond_stmt (stmt, taken_edge_p);
2344
2345       default:
2346         break;
2347     }
2348
2349   /* Any other kind of statement is not interesting for constant
2350      propagation and, therefore, not worth simulating.  */
2351   if (dump_file && (dump_flags & TDF_DETAILS))
2352     fprintf (dump_file, "No interesting values produced.  Marked VARYING.\n");
2353
2354   /* Definitions made by statements other than assignments to
2355      SSA_NAMEs represent unknown modifications to their outputs.
2356      Mark them VARYING.  */
2357   FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
2358     {
2359       prop_value_t v = { VARYING, NULL_TREE, { -1, (HOST_WIDE_INT) -1 } };
2360       set_lattice_value (def, v);
2361     }
2362
2363   return SSA_PROP_VARYING;
2364 }
2365
2366
2367 /* Main entry point for SSA Conditional Constant Propagation.  */
2368
2369 static unsigned int
2370 do_ssa_ccp (void)
2371 {
2372   ccp_initialize ();
2373   ssa_propagate (ccp_visit_stmt, ccp_visit_phi_node);
2374   if (ccp_finalize ())
2375     return (TODO_cleanup_cfg | TODO_update_ssa | TODO_remove_unused_locals);
2376   else
2377     return 0;
2378 }
2379
2380
2381 static bool
2382 gate_ccp (void)
2383 {
2384   return flag_tree_ccp != 0;
2385 }
2386
2387
2388 struct gimple_opt_pass pass_ccp =
2389 {
2390  {
2391   GIMPLE_PASS,
2392   "ccp",                                /* name */
2393   gate_ccp,                             /* gate */
2394   do_ssa_ccp,                           /* execute */
2395   NULL,                                 /* sub */
2396   NULL,                                 /* next */
2397   0,                                    /* static_pass_number */
2398   TV_TREE_CCP,                          /* tv_id */
2399   PROP_cfg | PROP_ssa,                  /* properties_required */
2400   0,                                    /* properties_provided */
2401   0,                                    /* properties_destroyed */
2402   0,                                    /* todo_flags_start */
2403   TODO_dump_func | TODO_verify_ssa
2404   | TODO_verify_stmts | TODO_ggc_collect/* todo_flags_finish */
2405  }
2406 };
2407
2408
2409
2410 /* Try to optimize out __builtin_stack_restore.  Optimize it out
2411    if there is another __builtin_stack_restore in the same basic
2412    block and no calls or ASM_EXPRs are in between, or if this block's
2413    only outgoing edge is to EXIT_BLOCK and there are no calls or
2414    ASM_EXPRs after this __builtin_stack_restore.  */
2415
2416 static tree
2417 optimize_stack_restore (gimple_stmt_iterator i)
2418 {
2419   tree callee;
2420   gimple stmt;
2421
2422   basic_block bb = gsi_bb (i);
2423   gimple call = gsi_stmt (i);
2424
2425   if (gimple_code (call) != GIMPLE_CALL
2426       || gimple_call_num_args (call) != 1
2427       || TREE_CODE (gimple_call_arg (call, 0)) != SSA_NAME
2428       || !POINTER_TYPE_P (TREE_TYPE (gimple_call_arg (call, 0))))
2429     return NULL_TREE;
2430
2431   for (gsi_next (&i); !gsi_end_p (i); gsi_next (&i))
2432     {
2433       stmt = gsi_stmt (i);
2434       if (gimple_code (stmt) == GIMPLE_ASM)
2435         return NULL_TREE;
2436       if (gimple_code (stmt) != GIMPLE_CALL)
2437         continue;
2438
2439       callee = gimple_call_fndecl (stmt);
2440       if (!callee
2441           || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
2442           /* All regular builtins are ok, just obviously not alloca.  */
2443           || DECL_FUNCTION_CODE (callee) == BUILT_IN_ALLOCA)
2444         return NULL_TREE;
2445
2446       if (DECL_FUNCTION_CODE (callee) == BUILT_IN_STACK_RESTORE)
2447         goto second_stack_restore;
2448     }
2449
2450   if (!gsi_end_p (i))
2451     return NULL_TREE;
2452
2453   /* Allow one successor of the exit block, or zero successors.  */
2454   switch (EDGE_COUNT (bb->succs))
2455     {
2456     case 0:
2457       break;
2458     case 1:
2459       if (single_succ_edge (bb)->dest != EXIT_BLOCK_PTR)
2460         return NULL_TREE;
2461       break;
2462     default:
2463       return NULL_TREE;
2464     }
2465  second_stack_restore:
2466
2467   /* If there's exactly one use, then zap the call to __builtin_stack_save.
2468      If there are multiple uses, then the last one should remove the call.
2469      In any case, whether the call to __builtin_stack_save can be removed
2470      or not is irrelevant to removing the call to __builtin_stack_restore.  */
2471   if (has_single_use (gimple_call_arg (call, 0)))
2472     {
2473       gimple stack_save = SSA_NAME_DEF_STMT (gimple_call_arg (call, 0));
2474       if (is_gimple_call (stack_save))
2475         {
2476           callee = gimple_call_fndecl (stack_save);
2477           if (callee
2478               && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL
2479               && DECL_FUNCTION_CODE (callee) == BUILT_IN_STACK_SAVE)
2480             {
2481               gimple_stmt_iterator stack_save_gsi;
2482               tree rhs;
2483
2484               stack_save_gsi = gsi_for_stmt (stack_save);
2485               rhs = build_int_cst (TREE_TYPE (gimple_call_arg (call, 0)), 0);
2486               update_call_from_tree (&stack_save_gsi, rhs);
2487             }
2488         }
2489     }
2490
2491   /* No effect, so the statement will be deleted.  */
2492   return integer_zero_node;
2493 }
2494
2495 /* If va_list type is a simple pointer and nothing special is needed,
2496    optimize __builtin_va_start (&ap, 0) into ap = __builtin_next_arg (0),
2497    __builtin_va_end (&ap) out as NOP and __builtin_va_copy into a simple
2498    pointer assignment.  */
2499
2500 static tree
2501 optimize_stdarg_builtin (gimple call)
2502 {
2503   tree callee, lhs, rhs, cfun_va_list;
2504   bool va_list_simple_ptr;
2505   location_t loc = gimple_location (call);
2506
2507   if (gimple_code (call) != GIMPLE_CALL)
2508     return NULL_TREE;
2509
2510   callee = gimple_call_fndecl (call);
2511
2512   cfun_va_list = targetm.fn_abi_va_list (callee);
2513   va_list_simple_ptr = POINTER_TYPE_P (cfun_va_list)
2514                        && (TREE_TYPE (cfun_va_list) == void_type_node
2515                            || TREE_TYPE (cfun_va_list) == char_type_node);
2516
2517   switch (DECL_FUNCTION_CODE (callee))
2518     {
2519     case BUILT_IN_VA_START:
2520       if (!va_list_simple_ptr
2521           || targetm.expand_builtin_va_start != NULL
2522           || built_in_decls[BUILT_IN_NEXT_ARG] == NULL)
2523         return NULL_TREE;
2524
2525       if (gimple_call_num_args (call) != 2)
2526         return NULL_TREE;
2527
2528       lhs = gimple_call_arg (call, 0);
2529       if (!POINTER_TYPE_P (TREE_TYPE (lhs))
2530           || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (lhs)))
2531              != TYPE_MAIN_VARIANT (cfun_va_list))
2532         return NULL_TREE;
2533
2534       lhs = build_fold_indirect_ref_loc (loc, lhs);
2535       rhs = build_call_expr_loc (loc, built_in_decls[BUILT_IN_NEXT_ARG],
2536                              1, integer_zero_node);
2537       rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
2538       return build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, rhs);
2539
2540     case BUILT_IN_VA_COPY:
2541       if (!va_list_simple_ptr)
2542         return NULL_TREE;
2543
2544       if (gimple_call_num_args (call) != 2)
2545         return NULL_TREE;
2546
2547       lhs = gimple_call_arg (call, 0);
2548       if (!POINTER_TYPE_P (TREE_TYPE (lhs))
2549           || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (lhs)))
2550              != TYPE_MAIN_VARIANT (cfun_va_list))
2551         return NULL_TREE;
2552
2553       lhs = build_fold_indirect_ref_loc (loc, lhs);
2554       rhs = gimple_call_arg (call, 1);
2555       if (TYPE_MAIN_VARIANT (TREE_TYPE (rhs))
2556           != TYPE_MAIN_VARIANT (cfun_va_list))
2557         return NULL_TREE;
2558
2559       rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
2560       return build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, rhs);
2561
2562     case BUILT_IN_VA_END:
2563       /* No effect, so the statement will be deleted.  */
2564       return integer_zero_node;
2565
2566     default:
2567       gcc_unreachable ();
2568     }
2569 }
2570
2571 /* A simple pass that attempts to fold all builtin functions.  This pass
2572    is run after we've propagated as many constants as we can.  */
2573
2574 static unsigned int
2575 execute_fold_all_builtins (void)
2576 {
2577   bool cfg_changed = false;
2578   basic_block bb;
2579   unsigned int todoflags = 0;
2580
2581   FOR_EACH_BB (bb)
2582     {
2583       gimple_stmt_iterator i;
2584       for (i = gsi_start_bb (bb); !gsi_end_p (i); )
2585         {
2586           gimple stmt, old_stmt;
2587           tree callee, result;
2588           enum built_in_function fcode;
2589
2590           stmt = gsi_stmt (i);
2591
2592           if (gimple_code (stmt) != GIMPLE_CALL)
2593             {
2594               gsi_next (&i);
2595               continue;
2596             }
2597           callee = gimple_call_fndecl (stmt);
2598           if (!callee || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL)
2599             {
2600               gsi_next (&i);
2601               continue;
2602             }
2603           fcode = DECL_FUNCTION_CODE (callee);
2604
2605           result = gimple_fold_builtin (stmt);
2606
2607           if (result)
2608             gimple_remove_stmt_histograms (cfun, stmt);
2609
2610           if (!result)
2611             switch (DECL_FUNCTION_CODE (callee))
2612               {
2613               case BUILT_IN_CONSTANT_P:
2614                 /* Resolve __builtin_constant_p.  If it hasn't been
2615                    folded to integer_one_node by now, it's fairly
2616                    certain that the value simply isn't constant.  */
2617                 result = integer_zero_node;
2618                 break;
2619
2620               case BUILT_IN_STACK_RESTORE:
2621                 result = optimize_stack_restore (i);
2622                 if (result)
2623                   break;
2624                 gsi_next (&i);
2625                 continue;
2626
2627               case BUILT_IN_VA_START:
2628               case BUILT_IN_VA_END:
2629               case BUILT_IN_VA_COPY:
2630                 /* These shouldn't be folded before pass_stdarg.  */
2631                 result = optimize_stdarg_builtin (stmt);
2632                 if (result)
2633                   break;
2634                 /* FALLTHRU */
2635
2636               default:
2637                 gsi_next (&i);
2638                 continue;
2639               }
2640
2641           if (dump_file && (dump_flags & TDF_DETAILS))
2642             {
2643               fprintf (dump_file, "Simplified\n  ");
2644               print_gimple_stmt (dump_file, stmt, 0, dump_flags);
2645             }
2646
2647           old_stmt = stmt;
2648           if (!update_call_from_tree (&i, result))
2649             {
2650               gimplify_and_update_call_from_tree (&i, result);
2651               todoflags |= TODO_update_address_taken;
2652             }
2653
2654           stmt = gsi_stmt (i);
2655           update_stmt (stmt);
2656
2657           if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt)
2658               && gimple_purge_dead_eh_edges (bb))
2659             cfg_changed = true;
2660
2661           if (dump_file && (dump_flags & TDF_DETAILS))
2662             {
2663               fprintf (dump_file, "to\n  ");
2664               print_gimple_stmt (dump_file, stmt, 0, dump_flags);
2665               fprintf (dump_file, "\n");
2666             }
2667
2668           /* Retry the same statement if it changed into another
2669              builtin, there might be new opportunities now.  */
2670           if (gimple_code (stmt) != GIMPLE_CALL)
2671             {
2672               gsi_next (&i);
2673               continue;
2674             }
2675           callee = gimple_call_fndecl (stmt);
2676           if (!callee
2677               || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
2678               || DECL_FUNCTION_CODE (callee) == fcode)
2679             gsi_next (&i);
2680         }
2681     }
2682
2683   /* Delete unreachable blocks.  */
2684   if (cfg_changed)
2685     todoflags |= TODO_cleanup_cfg;
2686
2687   return todoflags;
2688 }
2689
2690
2691 struct gimple_opt_pass pass_fold_builtins =
2692 {
2693  {
2694   GIMPLE_PASS,
2695   "fab",                                /* name */
2696   NULL,                                 /* gate */
2697   execute_fold_all_builtins,            /* execute */
2698   NULL,                                 /* sub */
2699   NULL,                                 /* next */
2700   0,                                    /* static_pass_number */
2701   TV_NONE,                              /* tv_id */
2702   PROP_cfg | PROP_ssa,                  /* properties_required */
2703   0,                                    /* properties_provided */
2704   0,                                    /* properties_destroyed */
2705   0,                                    /* todo_flags_start */
2706   TODO_dump_func
2707     | TODO_verify_ssa
2708     | TODO_update_ssa                   /* todo_flags_finish */
2709  }
2710 };