OSDN Git Service

Daily bump.
[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
3    Free Software Foundation, Inc.
4    Adapted from original RTL SSA-CCP by Daniel Berlin <dberlin@dberlin.org>
5    Adapted to GIMPLE trees by Diego Novillo <dnovillo@redhat.com>
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 2, 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 COPYING.  If not, write to the Free
21 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 02110-1301, USA.  */
23
24 /* Conditional constant propagation (CCP) is based on the SSA
25    propagation engine (tree-ssa-propagate.c).  Constant assignments of
26    the form VAR = CST are propagated from the assignments into uses of
27    VAR, which in turn may generate new constants.  The simulation uses
28    a four level lattice to keep track of constant values associated
29    with SSA names.  Given an SSA name V_i, it may take one of the
30    following values:
31
32         UNINITIALIZED   ->  This is the default starting value.  V_i
33                             has not been processed yet.
34
35         UNDEFINED       ->  V_i is a local variable whose definition
36                             has not been processed yet.  Therefore we
37                             don't yet know if its value is a constant
38                             or not.
39
40         CONSTANT        ->  V_i has been found to hold a constant
41                             value C.
42
43         VARYING         ->  V_i cannot take a constant value, or if it
44                             does, it is not possible to determine it
45                             at compile time.
46
47    The core of SSA-CCP is in ccp_visit_stmt and ccp_visit_phi_node:
48
49    1- In ccp_visit_stmt, we are interested in assignments whose RHS
50       evaluates into a constant and conditional jumps whose predicate
51       evaluates into a boolean true or false.  When an assignment of
52       the form V_i = CONST is found, V_i's lattice value is set to
53       CONSTANT and CONST is associated with it.  This causes the
54       propagation engine to add all the SSA edges coming out the
55       assignment into the worklists, so that statements that use V_i
56       can be visited.
57
58       If the statement is a conditional with a constant predicate, we
59       mark the outgoing edges as executable or not executable
60       depending on the predicate's value.  This is then used when
61       visiting PHI nodes to know when a PHI argument can be ignored.
62       
63
64    2- In ccp_visit_phi_node, if all the PHI arguments evaluate to the
65       same constant C, then the LHS of the PHI is set to C.  This
66       evaluation is known as the "meet operation".  Since one of the
67       goals of this evaluation is to optimistically return constant
68       values as often as possible, it uses two main short cuts:
69
70       - If an argument is flowing in through a non-executable edge, it
71         is ignored.  This is useful in cases like this:
72
73                         if (PRED)
74                           a_9 = 3;
75                         else
76                           a_10 = 100;
77                         a_11 = PHI (a_9, a_10)
78
79         If PRED is known to always evaluate to false, then we can
80         assume that a_11 will always take its value from a_10, meaning
81         that instead of consider it VARYING (a_9 and a_10 have
82         different values), we can consider it CONSTANT 100.
83
84       - If an argument has an UNDEFINED value, then it does not affect
85         the outcome of the meet operation.  If a variable V_i has an
86         UNDEFINED value, it means that either its defining statement
87         hasn't been visited yet or V_i has no defining statement, in
88         which case the original symbol 'V' is being used
89         uninitialized.  Since 'V' is a local variable, the compiler
90         may assume any initial value for it.
91
92
93    After propagation, every variable V_i that ends up with a lattice
94    value of CONSTANT will have the associated constant value in the
95    array CONST_VAL[i].VALUE.  That is fed into substitute_and_fold for
96    final substitution and folding.
97
98
99    Constant propagation in stores and loads (STORE-CCP)
100    ----------------------------------------------------
101
102    While CCP has all the logic to propagate constants in GIMPLE
103    registers, it is missing the ability to associate constants with
104    stores and loads (i.e., pointer dereferences, structures and
105    global/aliased variables).  We don't keep loads and stores in
106    SSA, but we do build a factored use-def web for them (in the
107    virtual operands).
108
109    For instance, consider the following code fragment:
110
111           struct A a;
112           const int B = 42;
113
114           void foo (int i)
115           {
116             if (i > 10)
117               a.a = 42;
118             else
119               {
120                 a.b = 21;
121                 a.a = a.b + 21;
122               }
123
124             if (a.a != B)
125               never_executed ();
126           }
127
128    We should be able to deduce that the predicate 'a.a != B' is always
129    false.  To achieve this, we associate constant values to the SSA
130    names in the V_MAY_DEF and V_MUST_DEF operands for each store.
131    Additionally, since we also glob partial loads/stores with the base
132    symbol, we also keep track of the memory reference where the
133    constant value was stored (in the MEM_REF field of PROP_VALUE_T).
134    For instance,
135
136         # a_5 = V_MAY_DEF <a_4>
137         a.a = 2;
138
139         # VUSE <a_5>
140         x_3 = a.b;
141
142    In the example above, CCP will associate value '2' with 'a_5', but
143    it would be wrong to replace the load from 'a.b' with '2', because
144    '2' had been stored into a.a.
145
146    To support STORE-CCP, it is necessary to add a new value to the
147    constant propagation lattice.  When evaluating a load for a memory
148    reference we can no longer assume a value of UNDEFINED if we
149    haven't seen a preceding store to the same memory location.
150    Consider, for instance global variables:
151
152         int A;
153
154         foo (int i)
155         {
156           if (i_3 > 10)
157             A_4 = 3;
158           # A_5 = PHI (A_4, A_2);
159
160           # VUSE <A_5>
161           A.0_6 = A;
162
163           return A.0_6;
164         }
165
166    The value of A_2 cannot be assumed to be UNDEFINED, as it may have
167    been defined outside of foo.  If we were to assume it UNDEFINED, we
168    would erroneously optimize the above into 'return 3;'.  Therefore,
169    when doing STORE-CCP, we introduce a fifth lattice value
170    (UNKNOWN_VAL), which overrides any other value when computing the
171    meet operation in PHI nodes.
172
173    Though STORE-CCP is not too expensive, it does have to do more work
174    than regular CCP, so it is only enabled at -O2.  Both regular CCP
175    and STORE-CCP use the exact same algorithm.  The only distinction
176    is that when doing STORE-CCP, the boolean variable DO_STORE_CCP is
177    set to true.  This affects the evaluation of statements and PHI
178    nodes.
179
180    References:
181
182      Constant propagation with conditional branches,
183      Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
184
185      Building an Optimizing Compiler,
186      Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
187
188      Advanced Compiler Design and Implementation,
189      Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6  */
190
191 #include "config.h"
192 #include "system.h"
193 #include "coretypes.h"
194 #include "tm.h"
195 #include "tree.h"
196 #include "flags.h"
197 #include "rtl.h"
198 #include "tm_p.h"
199 #include "ggc.h"
200 #include "basic-block.h"
201 #include "output.h"
202 #include "expr.h"
203 #include "function.h"
204 #include "diagnostic.h"
205 #include "timevar.h"
206 #include "tree-dump.h"
207 #include "tree-flow.h"
208 #include "tree-pass.h"
209 #include "tree-ssa-propagate.h"
210 #include "langhooks.h"
211 #include "target.h"
212
213
214 /* Possible lattice values.  */
215 typedef enum
216 {
217   UNINITIALIZED = 0,
218   UNDEFINED,
219   UNKNOWN_VAL,
220   CONSTANT,
221   VARYING
222 } ccp_lattice_t;
223
224 /* Array of propagated constant values.  After propagation,
225    CONST_VAL[I].VALUE holds the constant value for SSA_NAME(I).  If
226    the constant is held in an SSA name representing a memory store
227    (i.e., a V_MAY_DEF or V_MUST_DEF), CONST_VAL[I].MEM_REF will
228    contain the actual memory reference used to store (i.e., the LHS of
229    the assignment doing the store).  */
230 static prop_value_t *const_val;
231
232 /* True if we are also propagating constants in stores and loads.  */
233 static bool do_store_ccp;
234
235 /* Dump constant propagation value VAL to file OUTF prefixed by PREFIX.  */
236
237 static void
238 dump_lattice_value (FILE *outf, const char *prefix, prop_value_t val)
239 {
240   switch (val.lattice_val)
241     {
242     case UNINITIALIZED:
243       fprintf (outf, "%sUNINITIALIZED", prefix);
244       break;
245     case UNDEFINED:
246       fprintf (outf, "%sUNDEFINED", prefix);
247       break;
248     case VARYING:
249       fprintf (outf, "%sVARYING", prefix);
250       break;
251     case UNKNOWN_VAL:
252       fprintf (outf, "%sUNKNOWN_VAL", prefix);
253       break;
254     case CONSTANT:
255       fprintf (outf, "%sCONSTANT ", prefix);
256       print_generic_expr (outf, val.value, dump_flags);
257       break;
258     default:
259       gcc_unreachable ();
260     }
261 }
262
263
264 /* Print lattice value VAL to stderr.  */
265
266 void debug_lattice_value (prop_value_t val);
267
268 void
269 debug_lattice_value (prop_value_t val)
270 {
271   dump_lattice_value (stderr, "", val);
272   fprintf (stderr, "\n");
273 }
274
275
276 /* The regular is_gimple_min_invariant does a shallow test of the object.
277    It assumes that full gimplification has happened, or will happen on the
278    object.  For a value coming from DECL_INITIAL, this is not true, so we
279    have to be more strict ourselves.  */
280
281 static bool
282 ccp_decl_initial_min_invariant (tree t)
283 {
284   if (!is_gimple_min_invariant (t))
285     return false;
286   if (TREE_CODE (t) == ADDR_EXPR)
287     {
288       /* Inline and unroll is_gimple_addressable.  */
289       while (1)
290         {
291           t = TREE_OPERAND (t, 0);
292           if (is_gimple_id (t))
293             return true;
294           if (!handled_component_p (t))
295             return false;
296         }
297     }
298   return true;
299 }
300
301
302 /* Compute a default value for variable VAR and store it in the
303    CONST_VAL array.  The following rules are used to get default
304    values:
305
306    1- Global and static variables that are declared constant are
307       considered CONSTANT.
308
309    2- Any other value is considered UNDEFINED.  This is useful when
310       considering PHI nodes.  PHI arguments that are undefined do not
311       change the constant value of the PHI node, which allows for more
312       constants to be propagated.
313
314    3- If SSA_NAME_VALUE is set and it is a constant, its value is
315       used.
316
317    4- Variables defined by statements other than assignments and PHI
318       nodes are considered VARYING.
319
320    5- Variables that are not GIMPLE registers are considered
321       UNKNOWN_VAL, which is really a stronger version of UNDEFINED.
322       It's used to avoid the short circuit evaluation implied by
323       UNDEFINED in ccp_lattice_meet.  */
324
325 static prop_value_t
326 get_default_value (tree var)
327 {
328   tree sym = SSA_NAME_VAR (var);
329   prop_value_t val = { UNINITIALIZED, NULL_TREE, NULL_TREE };
330
331   if (!do_store_ccp && !is_gimple_reg (var))
332     {
333       /* Short circuit for regular CCP.  We are not interested in any
334          non-register when DO_STORE_CCP is false.  */
335       val.lattice_val = VARYING;
336     }
337   else if (SSA_NAME_VALUE (var)
338            && is_gimple_min_invariant (SSA_NAME_VALUE (var)))
339     {
340       val.lattice_val = CONSTANT;
341       val.value = SSA_NAME_VALUE (var);
342     }
343   else if (TREE_STATIC (sym)
344            && TREE_READONLY (sym)
345            && !MTAG_P (sym)
346            && DECL_INITIAL (sym)
347            && ccp_decl_initial_min_invariant (DECL_INITIAL (sym)))
348     {
349       /* Globals and static variables declared 'const' take their
350          initial value.  */
351       val.lattice_val = CONSTANT;
352       val.value = DECL_INITIAL (sym);
353       val.mem_ref = sym;
354     }
355   else
356     {
357       tree stmt = SSA_NAME_DEF_STMT (var);
358
359       if (IS_EMPTY_STMT (stmt))
360         {
361           /* Variables defined by an empty statement are those used
362              before being initialized.  If VAR is a local variable, we
363              can assume initially that it is UNDEFINED.  If we are
364              doing STORE-CCP, function arguments and non-register
365              variables are initially UNKNOWN_VAL, because we cannot
366              discard the value incoming from outside of this function
367              (see ccp_lattice_meet for details).  */
368           if (is_gimple_reg (sym) && TREE_CODE (sym) != PARM_DECL)
369             val.lattice_val = UNDEFINED;
370           else if (do_store_ccp)
371             val.lattice_val = UNKNOWN_VAL;
372           else
373             val.lattice_val = VARYING;
374         }
375       else if (TREE_CODE (stmt) == MODIFY_EXPR
376                || TREE_CODE (stmt) == PHI_NODE)
377         {
378           /* Any other variable defined by an assignment or a PHI node
379              is considered UNDEFINED (or UNKNOWN_VAL if VAR is not a
380              GIMPLE register).  */
381           val.lattice_val = is_gimple_reg (sym) ? UNDEFINED : UNKNOWN_VAL;
382         }
383       else
384         {
385           /* Otherwise, VAR will never take on a constant value.  */
386           val.lattice_val = VARYING;
387         }
388     }
389
390   return val;
391 }
392
393
394 /* Get the constant value associated with variable VAR.  If
395    MAY_USE_DEFAULT_P is true, call get_default_value on variables that
396    have the lattice value UNINITIALIZED.  */
397
398 static prop_value_t *
399 get_value (tree var, bool may_use_default_p)
400 {
401   prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
402   if (may_use_default_p && val->lattice_val == UNINITIALIZED)
403     *val = get_default_value (var);
404
405   return val;
406 }
407
408
409 /* Set the value for variable VAR to NEW_VAL.  Return true if the new
410    value is different from VAR's previous value.  */
411
412 static bool
413 set_lattice_value (tree var, prop_value_t new_val)
414 {
415   prop_value_t *old_val = get_value (var, false);
416
417   /* Lattice transitions must always be monotonically increasing in
418      value.  We allow two exceptions:
419      
420      1- If *OLD_VAL and NEW_VAL are the same, return false to
421         inform the caller that this was a non-transition.
422
423      2- If we are doing store-ccp (i.e., DOING_STORE_CCP is true),
424         allow CONSTANT->UNKNOWN_VAL.  The UNKNOWN_VAL state is a
425         special type of UNDEFINED state which prevents the short
426         circuit evaluation of PHI arguments (see ccp_visit_phi_node
427         and ccp_lattice_meet).  */
428   gcc_assert (old_val->lattice_val <= new_val.lattice_val
429               || (old_val->lattice_val == new_val.lattice_val
430                   && old_val->value == new_val.value
431                   && old_val->mem_ref == new_val.mem_ref)
432               || (do_store_ccp
433                   && old_val->lattice_val == CONSTANT
434                   && new_val.lattice_val == UNKNOWN_VAL));
435
436   if (old_val->lattice_val != new_val.lattice_val)
437     {
438       if (dump_file && (dump_flags & TDF_DETAILS))
439         {
440           dump_lattice_value (dump_file, "Lattice value changed to ", new_val);
441           fprintf (dump_file, ".  %sdding SSA edges to worklist.\n",
442                    new_val.lattice_val != UNDEFINED ? "A" : "Not a");
443         }
444
445       *old_val = new_val;
446
447       /* Transitions UNINITIALIZED -> UNDEFINED are never interesting
448          for propagation purposes.  In these cases return false to
449          avoid doing useless work.  */
450       return (new_val.lattice_val != UNDEFINED);
451     }
452
453   return false;
454 }
455
456
457 /* Return the likely CCP lattice value for STMT.
458
459    If STMT has no operands, then return CONSTANT.
460
461    Else if any operands of STMT are undefined, then return UNDEFINED.
462
463    Else if any operands of STMT are constants, then return CONSTANT.
464
465    Else return VARYING.  */
466
467 static ccp_lattice_t
468 likely_value (tree stmt)
469 {
470   bool found_constant;
471   stmt_ann_t ann;
472   tree use;
473   ssa_op_iter iter;
474
475   ann = stmt_ann (stmt);
476
477   /* If the statement has volatile operands, it won't fold to a
478      constant value.  */
479   if (ann->has_volatile_ops)
480     return VARYING;
481
482   /* If we are not doing store-ccp, statements with loads
483      and/or stores will never fold into a constant.  */
484   if (!do_store_ccp
485       && !ZERO_SSA_OPERANDS (stmt, SSA_OP_ALL_VIRTUALS))
486     return VARYING;
487
488
489   /* A CALL_EXPR is assumed to be varying.  NOTE: This may be overly
490      conservative, in the presence of const and pure calls.  */
491   if (get_call_expr_in (stmt) != NULL_TREE)
492     return VARYING;
493
494   /* Anything other than assignments and conditional jumps are not
495      interesting for CCP.  */
496   if (TREE_CODE (stmt) != MODIFY_EXPR
497       && TREE_CODE (stmt) != COND_EXPR
498       && TREE_CODE (stmt) != SWITCH_EXPR)
499     return VARYING;
500
501   if (is_gimple_min_invariant (get_rhs (stmt)))
502     return CONSTANT;
503
504   found_constant = false;
505   FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE|SSA_OP_VUSE)
506     {
507       prop_value_t *val = get_value (use, true);
508
509       if (val->lattice_val == VARYING)
510         return VARYING;
511
512       if (val->lattice_val == UNKNOWN_VAL)
513         {
514           /* UNKNOWN_VAL is invalid when not doing STORE-CCP.  */
515           gcc_assert (do_store_ccp);
516           return UNKNOWN_VAL;
517         }
518
519       if (val->lattice_val == CONSTANT)
520         found_constant = true;
521     }
522
523   if (found_constant
524       || ZERO_SSA_OPERANDS (stmt, SSA_OP_USE)
525       || ZERO_SSA_OPERANDS (stmt, SSA_OP_VUSE))
526     return CONSTANT;
527
528   return UNDEFINED;
529 }
530
531
532 /* Initialize local data structures for CCP.  */
533
534 static void
535 ccp_initialize (void)
536 {
537   basic_block bb;
538
539   const_val = XNEWVEC (prop_value_t, num_ssa_names);
540   memset (const_val, 0, num_ssa_names * sizeof (*const_val));
541
542   /* Initialize simulation flags for PHI nodes and statements.  */
543   FOR_EACH_BB (bb)
544     {
545       block_stmt_iterator i;
546
547       for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
548         {
549           bool is_varying = false;
550           tree stmt = bsi_stmt (i);
551
552           if (likely_value (stmt) == VARYING)
553
554             {
555               tree def;
556               ssa_op_iter iter;
557
558               /* If the statement will not produce a constant, mark
559                  all its outputs VARYING.  */
560               FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
561                 get_value (def, false)->lattice_val = VARYING;
562
563               /* Never mark conditional jumps with DONT_SIMULATE_AGAIN,
564                  otherwise the propagator will never add the outgoing
565                  control edges.  */
566               if (TREE_CODE (stmt) != COND_EXPR
567                   && TREE_CODE (stmt) != SWITCH_EXPR)
568                 is_varying = true;
569             }
570
571           DONT_SIMULATE_AGAIN (stmt) = is_varying;
572         }
573     }
574
575   /* Now process PHI nodes.  */
576   FOR_EACH_BB (bb)
577     {
578       tree phi;
579
580       for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
581         {
582           int i;
583           tree arg;
584           prop_value_t *val = get_value (PHI_RESULT (phi), false);
585
586           for (i = 0; i < PHI_NUM_ARGS (phi); i++)
587             {
588               arg = PHI_ARG_DEF (phi, i);
589
590               if (TREE_CODE (arg) == SSA_NAME
591                   && get_value (arg, false)->lattice_val == VARYING)
592                 {
593                   val->lattice_val = VARYING;
594                   break;
595                 }
596             }
597
598           DONT_SIMULATE_AGAIN (phi) = (val->lattice_val == VARYING);
599         }
600     }
601 }
602
603
604 /* Do final substitution of propagated values, cleanup the flowgraph and
605    free allocated storage.  */
606
607 static void
608 ccp_finalize (void)
609 {
610   /* Perform substitutions based on the known constant values.  */
611   substitute_and_fold (const_val, false);
612
613   free (const_val);
614 }
615
616
617 /* Compute the meet operator between *VAL1 and *VAL2.  Store the result
618    in VAL1.
619
620                 any  M UNDEFINED   = any
621                 any  M UNKNOWN_VAL = UNKNOWN_VAL
622                 any  M VARYING     = VARYING
623                 Ci   M Cj          = Ci         if (i == j)
624                 Ci   M Cj          = VARYING    if (i != j)
625
626    Lattice values UNKNOWN_VAL and UNDEFINED are similar but have
627    different semantics at PHI nodes.  Both values imply that we don't
628    know whether the variable is constant or not.  However, UNKNOWN_VAL
629    values override all others.  For instance, suppose that A is a
630    global variable:
631
632                 +------+
633                 |      |
634                 |     / \
635                 |    /   \
636                 |   |  A_1 = 4
637                 |    \   /
638                 |     \ /    
639                 | A_3 = PHI (A_2, A_1)
640                 | ... = A_3
641                 |    |
642                 +----+
643
644    If the edge into A_2 is not executable, the first visit to A_3 will
645    yield the constant 4.  But the second visit to A_3 will be with A_2
646    in state UNKNOWN_VAL.  We can no longer conclude that A_3 is 4
647    because A_2 may have been set in another function.  If we had used
648    the lattice value UNDEFINED, we would have had wrongly concluded
649    that A_3 is 4.  */
650    
651
652 static void
653 ccp_lattice_meet (prop_value_t *val1, prop_value_t *val2)
654 {
655   if (val1->lattice_val == UNDEFINED)
656     {
657       /* UNDEFINED M any = any   */
658       *val1 = *val2;
659     }
660   else if (val2->lattice_val == UNDEFINED)
661     {
662       /* any M UNDEFINED = any
663          Nothing to do.  VAL1 already contains the value we want.  */
664       ;
665     }
666   else if (val1->lattice_val == UNKNOWN_VAL
667            || val2->lattice_val == UNKNOWN_VAL)
668     {
669       /* UNKNOWN_VAL values are invalid if we are not doing STORE-CCP.  */
670       gcc_assert (do_store_ccp);
671
672       /* any M UNKNOWN_VAL = UNKNOWN_VAL.  */
673       val1->lattice_val = UNKNOWN_VAL;
674       val1->value = NULL_TREE;
675       val1->mem_ref = NULL_TREE;
676     }
677   else if (val1->lattice_val == VARYING
678            || val2->lattice_val == VARYING)
679     {
680       /* any M VARYING = VARYING.  */
681       val1->lattice_val = VARYING;
682       val1->value = NULL_TREE;
683       val1->mem_ref = NULL_TREE;
684     }
685   else if (val1->lattice_val == CONSTANT
686            && val2->lattice_val == CONSTANT
687            && simple_cst_equal (val1->value, val2->value) == 1
688            && (!do_store_ccp
689                || (val1->mem_ref && val2->mem_ref
690                    && operand_equal_p (val1->mem_ref, val2->mem_ref, 0))))
691     {
692       /* Ci M Cj = Ci           if (i == j)
693          Ci M Cj = VARYING      if (i != j)
694
695          If these two values come from memory stores, make sure that
696          they come from the same memory reference.  */
697       val1->lattice_val = CONSTANT;
698       val1->value = val1->value;
699       val1->mem_ref = val1->mem_ref;
700     }
701   else
702     {
703       /* Any other combination is VARYING.  */
704       val1->lattice_val = VARYING;
705       val1->value = NULL_TREE;
706       val1->mem_ref = NULL_TREE;
707     }
708 }
709
710
711 /* Loop through the PHI_NODE's parameters for BLOCK and compare their
712    lattice values to determine PHI_NODE's lattice value.  The value of a
713    PHI node is determined calling ccp_lattice_meet with all the arguments
714    of the PHI node that are incoming via executable edges.  */
715
716 static enum ssa_prop_result
717 ccp_visit_phi_node (tree phi)
718 {
719   int i;
720   prop_value_t *old_val, new_val;
721
722   if (dump_file && (dump_flags & TDF_DETAILS))
723     {
724       fprintf (dump_file, "\nVisiting PHI node: ");
725       print_generic_expr (dump_file, phi, dump_flags);
726     }
727
728   old_val = get_value (PHI_RESULT (phi), false);
729   switch (old_val->lattice_val)
730     {
731     case VARYING:
732       return SSA_PROP_VARYING;
733
734     case CONSTANT:
735       new_val = *old_val;
736       break;
737
738     case UNKNOWN_VAL:
739       /* To avoid the default value of UNKNOWN_VAL overriding
740          that of its possible constant arguments, temporarily
741          set the PHI node's default lattice value to be 
742          UNDEFINED.  If the PHI node's old value was UNKNOWN_VAL and
743          the new value is UNDEFINED, then we prevent the invalid
744          transition by not calling set_lattice_value.  */
745       gcc_assert (do_store_ccp);
746
747       /* FALLTHRU  */
748
749     case UNDEFINED:
750     case UNINITIALIZED:
751       new_val.lattice_val = UNDEFINED;
752       new_val.value = NULL_TREE;
753       new_val.mem_ref = NULL_TREE;
754       break;
755
756     default:
757       gcc_unreachable ();
758     }
759
760   for (i = 0; i < PHI_NUM_ARGS (phi); i++)
761     {
762       /* Compute the meet operator over all the PHI arguments flowing
763          through executable edges.  */
764       edge e = PHI_ARG_EDGE (phi, i);
765
766       if (dump_file && (dump_flags & TDF_DETAILS))
767         {
768           fprintf (dump_file,
769               "\n    Argument #%d (%d -> %d %sexecutable)\n",
770               i, e->src->index, e->dest->index,
771               (e->flags & EDGE_EXECUTABLE) ? "" : "not ");
772         }
773
774       /* If the incoming edge is executable, Compute the meet operator for
775          the existing value of the PHI node and the current PHI argument.  */
776       if (e->flags & EDGE_EXECUTABLE)
777         {
778           tree arg = PHI_ARG_DEF (phi, i);
779           prop_value_t arg_val;
780
781           if (is_gimple_min_invariant (arg))
782             {
783               arg_val.lattice_val = CONSTANT;
784               arg_val.value = arg;
785               arg_val.mem_ref = NULL_TREE;
786             }
787           else
788             arg_val = *(get_value (arg, true));
789
790           ccp_lattice_meet (&new_val, &arg_val);
791
792           if (dump_file && (dump_flags & TDF_DETAILS))
793             {
794               fprintf (dump_file, "\t");
795               print_generic_expr (dump_file, arg, dump_flags);
796               dump_lattice_value (dump_file, "\tValue: ", arg_val);
797               fprintf (dump_file, "\n");
798             }
799
800           if (new_val.lattice_val == VARYING)
801             break;
802         }
803     }
804
805   if (dump_file && (dump_flags & TDF_DETAILS))
806     {
807       dump_lattice_value (dump_file, "\n    PHI node value: ", new_val);
808       fprintf (dump_file, "\n\n");
809     }
810
811   /* Check for an invalid change from UNKNOWN_VAL to UNDEFINED.  */
812   if (do_store_ccp
813       && old_val->lattice_val == UNKNOWN_VAL
814       && new_val.lattice_val == UNDEFINED)
815     return SSA_PROP_NOT_INTERESTING;
816
817   /* Otherwise, make the transition to the new value.  */
818   if (set_lattice_value (PHI_RESULT (phi), new_val))
819     {
820       if (new_val.lattice_val == VARYING)
821         return SSA_PROP_VARYING;
822       else
823         return SSA_PROP_INTERESTING;
824     }
825   else
826     return SSA_PROP_NOT_INTERESTING;
827 }
828
829
830 /* CCP specific front-end to the non-destructive constant folding
831    routines.
832
833    Attempt to simplify the RHS of STMT knowing that one or more
834    operands are constants.
835
836    If simplification is possible, return the simplified RHS,
837    otherwise return the original RHS.  */
838
839 static tree
840 ccp_fold (tree stmt)
841 {
842   tree rhs = get_rhs (stmt);
843   enum tree_code code = TREE_CODE (rhs);
844   enum tree_code_class kind = TREE_CODE_CLASS (code);
845   tree retval = NULL_TREE;
846
847   if (TREE_CODE (rhs) == SSA_NAME)
848     {
849       /* If the RHS is an SSA_NAME, return its known constant value,
850          if any.  */
851       return get_value (rhs, true)->value;
852     }
853   else if (do_store_ccp && stmt_makes_single_load (stmt))
854     {
855       /* If the RHS is a memory load, see if the VUSEs associated with
856          it are a valid constant for that memory load.  */
857       prop_value_t *val = get_value_loaded_by (stmt, const_val);
858       if (val && val->mem_ref)
859         {
860           if (operand_equal_p (val->mem_ref, rhs, 0))
861             return val->value;
862
863           /* If RHS is extracting REALPART_EXPR or IMAGPART_EXPR of a
864              complex type with a known constant value, return it.  */
865           if ((TREE_CODE (rhs) == REALPART_EXPR
866                || TREE_CODE (rhs) == IMAGPART_EXPR)
867               && operand_equal_p (val->mem_ref, TREE_OPERAND (rhs, 0), 0))
868             return fold_build1 (TREE_CODE (rhs), TREE_TYPE (rhs), val->value);
869         }
870       return NULL_TREE;
871     }
872
873   /* Unary operators.  Note that we know the single operand must
874      be a constant.  So this should almost always return a
875      simplified RHS.  */
876   if (kind == tcc_unary)
877     {
878       /* Handle unary operators which can appear in GIMPLE form.  */
879       tree op0 = TREE_OPERAND (rhs, 0);
880
881       /* Simplify the operand down to a constant.  */
882       if (TREE_CODE (op0) == SSA_NAME)
883         {
884           prop_value_t *val = get_value (op0, true);
885           if (val->lattice_val == CONSTANT)
886             op0 = get_value (op0, true)->value;
887         }
888
889       if ((code == NOP_EXPR || code == CONVERT_EXPR)
890           && tree_ssa_useless_type_conversion_1 (TREE_TYPE (rhs),
891                                                  TREE_TYPE (op0)))
892         return op0;
893       return fold_unary (code, TREE_TYPE (rhs), op0);
894     }
895
896   /* Binary and comparison operators.  We know one or both of the
897      operands are constants.  */
898   else if (kind == tcc_binary
899            || kind == tcc_comparison
900            || code == TRUTH_AND_EXPR
901            || code == TRUTH_OR_EXPR
902            || code == TRUTH_XOR_EXPR)
903     {
904       /* Handle binary and comparison operators that can appear in
905          GIMPLE form.  */
906       tree op0 = TREE_OPERAND (rhs, 0);
907       tree op1 = TREE_OPERAND (rhs, 1);
908
909       /* Simplify the operands down to constants when appropriate.  */
910       if (TREE_CODE (op0) == SSA_NAME)
911         {
912           prop_value_t *val = get_value (op0, true);
913           if (val->lattice_val == CONSTANT)
914             op0 = val->value;
915         }
916
917       if (TREE_CODE (op1) == SSA_NAME)
918         {
919           prop_value_t *val = get_value (op1, true);
920           if (val->lattice_val == CONSTANT)
921             op1 = val->value;
922         }
923
924       return fold_binary (code, TREE_TYPE (rhs), op0, op1);
925     }
926
927   /* We may be able to fold away calls to builtin functions if their
928      arguments are constants.  */
929   else if (code == CALL_EXPR
930            && TREE_CODE (TREE_OPERAND (rhs, 0)) == ADDR_EXPR
931            && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (rhs, 0), 0))
932                == FUNCTION_DECL)
933            && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (rhs, 0), 0)))
934     {
935       if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_USE))
936         {
937           tree *orig, var;
938           tree fndecl, arglist;
939           size_t i = 0;
940           ssa_op_iter iter;
941           use_operand_p var_p;
942
943           /* Preserve the original values of every operand.  */
944           orig = XNEWVEC (tree,  NUM_SSA_OPERANDS (stmt, SSA_OP_USE));
945           FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
946             orig[i++] = var;
947
948           /* Substitute operands with their values and try to fold.  */
949           replace_uses_in (stmt, NULL, const_val);
950           fndecl = get_callee_fndecl (rhs);
951           arglist = TREE_OPERAND (rhs, 1);
952           retval = fold_builtin (fndecl, arglist, false);
953
954           /* Restore operands to their original form.  */
955           i = 0;
956           FOR_EACH_SSA_USE_OPERAND (var_p, stmt, iter, SSA_OP_USE)
957             SET_USE (var_p, orig[i++]);
958           free (orig);
959         }
960     }
961   else
962     return rhs;
963
964   /* If we got a simplified form, see if we need to convert its type.  */
965   if (retval)
966     return fold_convert (TREE_TYPE (rhs), retval);
967
968   /* No simplification was possible.  */
969   return rhs;
970 }
971
972
973 /* Return the tree representing the element referenced by T if T is an
974    ARRAY_REF or COMPONENT_REF into constant aggregates.  Return
975    NULL_TREE otherwise.  */
976
977 static tree
978 fold_const_aggregate_ref (tree t)
979 {
980   prop_value_t *value;
981   tree base, ctor, idx, field;
982   unsigned HOST_WIDE_INT cnt;
983   tree cfield, cval;
984
985   switch (TREE_CODE (t))
986     {
987     case ARRAY_REF:
988       /* Get a CONSTRUCTOR.  If BASE is a VAR_DECL, get its
989          DECL_INITIAL.  If BASE is a nested reference into another
990          ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
991          the inner reference.  */
992       base = TREE_OPERAND (t, 0);
993       switch (TREE_CODE (base))
994         {
995         case VAR_DECL:
996           if (!TREE_READONLY (base)
997               || TREE_CODE (TREE_TYPE (base)) != ARRAY_TYPE
998               || !targetm.binds_local_p (base))
999             return NULL_TREE;
1000
1001           ctor = DECL_INITIAL (base);
1002           break;
1003
1004         case ARRAY_REF:
1005         case COMPONENT_REF:
1006           ctor = fold_const_aggregate_ref (base);
1007           break;
1008
1009         default:
1010           return NULL_TREE;
1011         }
1012
1013       if (ctor == NULL_TREE
1014           || TREE_CODE (ctor) != CONSTRUCTOR
1015           || !TREE_STATIC (ctor))
1016         return NULL_TREE;
1017
1018       /* Get the index.  If we have an SSA_NAME, try to resolve it
1019          with the current lattice value for the SSA_NAME.  */
1020       idx = TREE_OPERAND (t, 1);
1021       switch (TREE_CODE (idx))
1022         {
1023         case SSA_NAME:
1024           if ((value = get_value (idx, true))
1025               && value->lattice_val == CONSTANT
1026               && TREE_CODE (value->value) == INTEGER_CST)
1027             idx = value->value;
1028           else
1029             return NULL_TREE;
1030           break;
1031
1032         case INTEGER_CST:
1033           break;
1034
1035         default:
1036           return NULL_TREE;
1037         }
1038
1039       /* Whoo-hoo!  I'll fold ya baby.  Yeah!  */
1040       FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1041         if (tree_int_cst_equal (cfield, idx))
1042           return cval;
1043       break;
1044
1045     case COMPONENT_REF:
1046       /* Get a CONSTRUCTOR.  If BASE is a VAR_DECL, get its
1047          DECL_INITIAL.  If BASE is a nested reference into another
1048          ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
1049          the inner reference.  */
1050       base = TREE_OPERAND (t, 0);
1051       switch (TREE_CODE (base))
1052         {
1053         case VAR_DECL:
1054           if (!TREE_READONLY (base)
1055               || TREE_CODE (TREE_TYPE (base)) != RECORD_TYPE
1056               || !targetm.binds_local_p (base))
1057             return NULL_TREE;
1058
1059           ctor = DECL_INITIAL (base);
1060           break;
1061
1062         case ARRAY_REF:
1063         case COMPONENT_REF:
1064           ctor = fold_const_aggregate_ref (base);
1065           break;
1066
1067         default:
1068           return NULL_TREE;
1069         }
1070
1071       if (ctor == NULL_TREE
1072           || TREE_CODE (ctor) != CONSTRUCTOR
1073           || !TREE_STATIC (ctor))
1074         return NULL_TREE;
1075
1076       field = TREE_OPERAND (t, 1);
1077
1078       FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1079         if (cfield == field
1080             /* FIXME: Handle bit-fields.  */
1081             && ! DECL_BIT_FIELD (cfield))
1082           return cval;
1083       break;
1084
1085     case REALPART_EXPR:
1086     case IMAGPART_EXPR:
1087       {
1088         tree c = fold_const_aggregate_ref (TREE_OPERAND (t, 0));
1089         if (c && TREE_CODE (c) == COMPLEX_CST)
1090           return fold_build1 (TREE_CODE (t), TREE_TYPE (t), c);
1091         break;
1092       }
1093     
1094     default:
1095       break;
1096     }
1097
1098   return NULL_TREE;
1099 }
1100   
1101 /* Evaluate statement STMT.  */
1102
1103 static prop_value_t
1104 evaluate_stmt (tree stmt)
1105 {
1106   prop_value_t val;
1107   tree simplified;
1108   ccp_lattice_t likelyvalue = likely_value (stmt);
1109
1110   val.mem_ref = NULL_TREE;
1111
1112   /* If the statement is likely to have a CONSTANT result, then try
1113      to fold the statement to determine the constant value.  */
1114   if (likelyvalue == CONSTANT)
1115     simplified = ccp_fold (stmt);
1116   /* If the statement is likely to have a VARYING result, then do not
1117      bother folding the statement.  */
1118   else if (likelyvalue == VARYING)
1119     simplified = get_rhs (stmt);
1120   /* If the statement is an ARRAY_REF or COMPONENT_REF into constant
1121      aggregates, extract the referenced constant.  Otherwise the
1122      statement is likely to have an UNDEFINED value, and there will be
1123      nothing to do.  Note that fold_const_aggregate_ref returns
1124      NULL_TREE if the first case does not match.  */
1125   else
1126     simplified = fold_const_aggregate_ref (get_rhs (stmt));
1127
1128   if (simplified && is_gimple_min_invariant (simplified))
1129     {
1130       /* The statement produced a constant value.  */
1131       val.lattice_val = CONSTANT;
1132       val.value = simplified;
1133     }
1134   else
1135     {
1136       /* The statement produced a nonconstant value.  If the statement
1137          had UNDEFINED operands, then the result of the statement
1138          should be UNDEFINED.  Otherwise, the statement is VARYING.  */
1139       if (likelyvalue == UNDEFINED || likelyvalue == UNKNOWN_VAL)
1140         val.lattice_val = likelyvalue;
1141       else
1142         val.lattice_val = VARYING;
1143
1144       val.value = NULL_TREE;
1145     }
1146
1147   return val;
1148 }
1149
1150
1151 /* Visit the assignment statement STMT.  Set the value of its LHS to the
1152    value computed by the RHS and store LHS in *OUTPUT_P.  If STMT
1153    creates virtual definitions, set the value of each new name to that
1154    of the RHS (if we can derive a constant out of the RHS).  */
1155
1156 static enum ssa_prop_result
1157 visit_assignment (tree stmt, tree *output_p)
1158 {
1159   prop_value_t val;
1160   tree lhs, rhs;
1161   enum ssa_prop_result retval;
1162
1163   lhs = TREE_OPERAND (stmt, 0);
1164   rhs = TREE_OPERAND (stmt, 1);
1165
1166   if (TREE_CODE (rhs) == SSA_NAME)
1167     {
1168       /* For a simple copy operation, we copy the lattice values.  */
1169       prop_value_t *nval = get_value (rhs, true);
1170       val = *nval;
1171     }
1172   else if (do_store_ccp && stmt_makes_single_load (stmt))
1173     {
1174       /* Same as above, but the RHS is not a gimple register and yet
1175          has a known VUSE.  If STMT is loading from the same memory
1176          location that created the SSA_NAMEs for the virtual operands,
1177          we can propagate the value on the RHS.  */
1178       prop_value_t *nval = get_value_loaded_by (stmt, const_val);
1179
1180       if (nval && nval->mem_ref
1181           && operand_equal_p (nval->mem_ref, rhs, 0))
1182         val = *nval;
1183       else
1184         val = evaluate_stmt (stmt);
1185     }
1186   else
1187     /* Evaluate the statement.  */
1188       val = evaluate_stmt (stmt);
1189
1190   /* If the original LHS was a VIEW_CONVERT_EXPR, modify the constant
1191      value to be a VIEW_CONVERT_EXPR of the old constant value.
1192
1193      ??? Also, if this was a definition of a bitfield, we need to widen
1194      the constant value into the type of the destination variable.  This
1195      should not be necessary if GCC represented bitfields properly.  */
1196   {
1197     tree orig_lhs = TREE_OPERAND (stmt, 0);
1198
1199     if (TREE_CODE (orig_lhs) == VIEW_CONVERT_EXPR
1200         && val.lattice_val == CONSTANT)
1201       {
1202         tree w = fold_unary (VIEW_CONVERT_EXPR,
1203                              TREE_TYPE (TREE_OPERAND (orig_lhs, 0)),
1204                              val.value);
1205
1206         orig_lhs = TREE_OPERAND (orig_lhs, 0);
1207         if (w && is_gimple_min_invariant (w))
1208           val.value = w;
1209         else
1210           {
1211             val.lattice_val = VARYING;
1212             val.value = NULL;
1213           }
1214       }
1215
1216     if (val.lattice_val == CONSTANT
1217         && TREE_CODE (orig_lhs) == COMPONENT_REF
1218         && DECL_BIT_FIELD (TREE_OPERAND (orig_lhs, 1)))
1219       {
1220         tree w = widen_bitfield (val.value, TREE_OPERAND (orig_lhs, 1),
1221                                  orig_lhs);
1222
1223         if (w && is_gimple_min_invariant (w))
1224           val.value = w;
1225         else
1226           {
1227             val.lattice_val = VARYING;
1228             val.value = NULL_TREE;
1229             val.mem_ref = NULL_TREE;
1230           }
1231       }
1232   }
1233
1234   retval = SSA_PROP_NOT_INTERESTING;
1235
1236   /* Set the lattice value of the statement's output.  */
1237   if (TREE_CODE (lhs) == SSA_NAME)
1238     {
1239       /* If STMT is an assignment to an SSA_NAME, we only have one
1240          value to set.  */
1241       if (set_lattice_value (lhs, val))
1242         {
1243           *output_p = lhs;
1244           if (val.lattice_val == VARYING)
1245             retval = SSA_PROP_VARYING;
1246           else
1247             retval = SSA_PROP_INTERESTING;
1248         }
1249     }
1250   else if (do_store_ccp && stmt_makes_single_store (stmt))
1251     {
1252       /* Otherwise, set the names in V_MAY_DEF/V_MUST_DEF operands
1253          to the new constant value and mark the LHS as the memory
1254          reference associated with VAL.  */
1255       ssa_op_iter i;
1256       tree vdef;
1257       bool changed;
1258
1259       /* Stores cannot take on an UNDEFINED value.  */
1260       if (val.lattice_val == UNDEFINED)
1261         val.lattice_val = UNKNOWN_VAL;      
1262
1263       /* Mark VAL as stored in the LHS of this assignment.  */
1264       val.mem_ref = lhs;
1265
1266       /* Set the value of every VDEF to VAL.  */
1267       changed = false;
1268       FOR_EACH_SSA_TREE_OPERAND (vdef, stmt, i, SSA_OP_VIRTUAL_DEFS)
1269         changed |= set_lattice_value (vdef, val);
1270       
1271       /* Note that for propagation purposes, we are only interested in
1272          visiting statements that load the exact same memory reference
1273          stored here.  Those statements will have the exact same list
1274          of virtual uses, so it is enough to set the output of this
1275          statement to be its first virtual definition.  */
1276       *output_p = first_vdef (stmt);
1277       if (changed)
1278         {
1279           if (val.lattice_val == VARYING)
1280             retval = SSA_PROP_VARYING;
1281           else 
1282             retval = SSA_PROP_INTERESTING;
1283         }
1284     }
1285
1286   return retval;
1287 }
1288
1289
1290 /* Visit the conditional statement STMT.  Return SSA_PROP_INTERESTING
1291    if it can determine which edge will be taken.  Otherwise, return
1292    SSA_PROP_VARYING.  */
1293
1294 static enum ssa_prop_result
1295 visit_cond_stmt (tree stmt, edge *taken_edge_p)
1296 {
1297   prop_value_t val;
1298   basic_block block;
1299
1300   block = bb_for_stmt (stmt);
1301   val = evaluate_stmt (stmt);
1302
1303   /* Find which edge out of the conditional block will be taken and add it
1304      to the worklist.  If no single edge can be determined statically,
1305      return SSA_PROP_VARYING to feed all the outgoing edges to the
1306      propagation engine.  */
1307   *taken_edge_p = val.value ? find_taken_edge (block, val.value) : 0;
1308   if (*taken_edge_p)
1309     return SSA_PROP_INTERESTING;
1310   else
1311     return SSA_PROP_VARYING;
1312 }
1313
1314
1315 /* Evaluate statement STMT.  If the statement produces an output value and
1316    its evaluation changes the lattice value of its output, return
1317    SSA_PROP_INTERESTING and set *OUTPUT_P to the SSA_NAME holding the
1318    output value.
1319    
1320    If STMT is a conditional branch and we can determine its truth
1321    value, set *TAKEN_EDGE_P accordingly.  If STMT produces a varying
1322    value, return SSA_PROP_VARYING.  */
1323
1324 static enum ssa_prop_result
1325 ccp_visit_stmt (tree stmt, edge *taken_edge_p, tree *output_p)
1326 {
1327   tree def;
1328   ssa_op_iter iter;
1329
1330   if (dump_file && (dump_flags & TDF_DETAILS))
1331     {
1332       fprintf (dump_file, "\nVisiting statement:\n");
1333       print_generic_stmt (dump_file, stmt, dump_flags);
1334       fprintf (dump_file, "\n");
1335     }
1336
1337   if (TREE_CODE (stmt) == MODIFY_EXPR)
1338     {
1339       /* If the statement is an assignment that produces a single
1340          output value, evaluate its RHS to see if the lattice value of
1341          its output has changed.  */
1342       return visit_assignment (stmt, output_p);
1343     }
1344   else if (TREE_CODE (stmt) == COND_EXPR || TREE_CODE (stmt) == SWITCH_EXPR)
1345     {
1346       /* If STMT is a conditional branch, see if we can determine
1347          which branch will be taken.  */
1348       return visit_cond_stmt (stmt, taken_edge_p);
1349     }
1350
1351   /* Any other kind of statement is not interesting for constant
1352      propagation and, therefore, not worth simulating.  */
1353   if (dump_file && (dump_flags & TDF_DETAILS))
1354     fprintf (dump_file, "No interesting values produced.  Marked VARYING.\n");
1355
1356   /* Definitions made by statements other than assignments to
1357      SSA_NAMEs represent unknown modifications to their outputs.
1358      Mark them VARYING.  */
1359   FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
1360     {
1361       prop_value_t v = { VARYING, NULL_TREE, NULL_TREE };
1362       set_lattice_value (def, v);
1363     }
1364
1365   return SSA_PROP_VARYING;
1366 }
1367
1368
1369 /* Main entry point for SSA Conditional Constant Propagation.  */
1370
1371 static void
1372 execute_ssa_ccp (bool store_ccp)
1373 {
1374   do_store_ccp = store_ccp;
1375   ccp_initialize ();
1376   ssa_propagate (ccp_visit_stmt, ccp_visit_phi_node);
1377   ccp_finalize ();
1378 }
1379
1380
1381 static unsigned int
1382 do_ssa_ccp (void)
1383 {
1384   execute_ssa_ccp (false);
1385   return 0;
1386 }
1387
1388
1389 static bool
1390 gate_ccp (void)
1391 {
1392   return flag_tree_ccp != 0;
1393 }
1394
1395
1396 struct tree_opt_pass pass_ccp = 
1397 {
1398   "ccp",                                /* name */
1399   gate_ccp,                             /* gate */
1400   do_ssa_ccp,                           /* execute */
1401   NULL,                                 /* sub */
1402   NULL,                                 /* next */
1403   0,                                    /* static_pass_number */
1404   TV_TREE_CCP,                          /* tv_id */
1405   PROP_cfg | PROP_ssa | PROP_alias,     /* properties_required */
1406   0,                                    /* properties_provided */
1407   PROP_smt_usage,                       /* properties_destroyed */
1408   0,                                    /* todo_flags_start */
1409   TODO_cleanup_cfg | TODO_dump_func | TODO_update_ssa
1410     | TODO_ggc_collect | TODO_verify_ssa
1411     | TODO_verify_stmts | TODO_update_smt_usage, /* todo_flags_finish */
1412   0                                     /* letter */
1413 };
1414
1415
1416 static unsigned int
1417 do_ssa_store_ccp (void)
1418 {
1419   /* If STORE-CCP is not enabled, we just run regular CCP.  */
1420   execute_ssa_ccp (flag_tree_store_ccp != 0);
1421   return 0;
1422 }
1423
1424 static bool
1425 gate_store_ccp (void)
1426 {
1427   /* STORE-CCP is enabled only with -ftree-store-ccp, but when
1428      -fno-tree-store-ccp is specified, we should run regular CCP.
1429      That's why the pass is enabled with either flag.  */
1430   return flag_tree_store_ccp != 0 || flag_tree_ccp != 0;
1431 }
1432
1433
1434 struct tree_opt_pass pass_store_ccp = 
1435 {
1436   "store_ccp",                          /* name */
1437   gate_store_ccp,                       /* gate */
1438   do_ssa_store_ccp,                     /* execute */
1439   NULL,                                 /* sub */
1440   NULL,                                 /* next */
1441   0,                                    /* static_pass_number */
1442   TV_TREE_STORE_CCP,                    /* tv_id */
1443   PROP_cfg | PROP_ssa | PROP_alias,     /* properties_required */
1444   0,                                    /* properties_provided */
1445   PROP_smt_usage,                       /* properties_destroyed */
1446   0,                                    /* todo_flags_start */
1447   TODO_dump_func | TODO_update_ssa
1448     | TODO_ggc_collect | TODO_verify_ssa
1449     | TODO_cleanup_cfg
1450     | TODO_verify_stmts | TODO_update_smt_usage, /* todo_flags_finish */
1451   0                                     /* letter */
1452 };
1453
1454 /* Given a constant value VAL for bitfield FIELD, and a destination
1455    variable VAR, return VAL appropriately widened to fit into VAR.  If
1456    FIELD is wider than HOST_WIDE_INT, NULL is returned.  */
1457
1458 tree
1459 widen_bitfield (tree val, tree field, tree var)
1460 {
1461   unsigned HOST_WIDE_INT var_size, field_size;
1462   tree wide_val;
1463   unsigned HOST_WIDE_INT mask;
1464   unsigned int i;
1465
1466   /* We can only do this if the size of the type and field and VAL are
1467      all constants representable in HOST_WIDE_INT.  */
1468   if (!host_integerp (TYPE_SIZE (TREE_TYPE (var)), 1)
1469       || !host_integerp (DECL_SIZE (field), 1)
1470       || !host_integerp (val, 0))
1471     return NULL_TREE;
1472
1473   var_size = tree_low_cst (TYPE_SIZE (TREE_TYPE (var)), 1);
1474   field_size = tree_low_cst (DECL_SIZE (field), 1);
1475
1476   /* Give up if either the bitfield or the variable are too wide.  */
1477   if (field_size > HOST_BITS_PER_WIDE_INT || var_size > HOST_BITS_PER_WIDE_INT)
1478     return NULL_TREE;
1479
1480   gcc_assert (var_size >= field_size);
1481
1482   /* If the sign bit of the value is not set or the field's type is unsigned,
1483      just mask off the high order bits of the value.  */
1484   if (DECL_UNSIGNED (field)
1485       || !(tree_low_cst (val, 0) & (((HOST_WIDE_INT)1) << (field_size - 1))))
1486     {
1487       /* Zero extension.  Build a mask with the lower 'field_size' bits
1488          set and a BIT_AND_EXPR node to clear the high order bits of
1489          the value.  */
1490       for (i = 0, mask = 0; i < field_size; i++)
1491         mask |= ((HOST_WIDE_INT) 1) << i;
1492
1493       wide_val = fold_build2 (BIT_AND_EXPR, TREE_TYPE (var), val, 
1494                               build_int_cst (TREE_TYPE (var), mask));
1495     }
1496   else
1497     {
1498       /* Sign extension.  Create a mask with the upper 'field_size'
1499          bits set and a BIT_IOR_EXPR to set the high order bits of the
1500          value.  */
1501       for (i = 0, mask = 0; i < (var_size - field_size); i++)
1502         mask |= ((HOST_WIDE_INT) 1) << (var_size - i - 1);
1503
1504       wide_val = fold_build2 (BIT_IOR_EXPR, TREE_TYPE (var), val,
1505                               build_int_cst (TREE_TYPE (var), mask));
1506     }
1507
1508   return wide_val;
1509 }
1510
1511
1512 /* A subroutine of fold_stmt_r.  Attempts to fold *(A+O) to A[X].
1513    BASE is an array type.  OFFSET is a byte displacement.  ORIG_TYPE
1514    is the desired result type.  */
1515
1516 static tree
1517 maybe_fold_offset_to_array_ref (tree base, tree offset, tree orig_type)
1518 {
1519   tree min_idx, idx, elt_offset = integer_zero_node;
1520   tree array_type, elt_type, elt_size;
1521
1522   /* If BASE is an ARRAY_REF, we can pick up another offset (this time
1523      measured in units of the size of elements type) from that ARRAY_REF).
1524      We can't do anything if either is variable.
1525
1526      The case we handle here is *(&A[N]+O).  */
1527   if (TREE_CODE (base) == ARRAY_REF)
1528     {
1529       tree low_bound = array_ref_low_bound (base);
1530
1531       elt_offset = TREE_OPERAND (base, 1);
1532       if (TREE_CODE (low_bound) != INTEGER_CST
1533           || TREE_CODE (elt_offset) != INTEGER_CST)
1534         return NULL_TREE;
1535
1536       elt_offset = int_const_binop (MINUS_EXPR, elt_offset, low_bound, 0);
1537       base = TREE_OPERAND (base, 0);
1538     }
1539
1540   /* Ignore stupid user tricks of indexing non-array variables.  */
1541   array_type = TREE_TYPE (base);
1542   if (TREE_CODE (array_type) != ARRAY_TYPE)
1543     return NULL_TREE;
1544   elt_type = TREE_TYPE (array_type);
1545   if (!lang_hooks.types_compatible_p (orig_type, elt_type))
1546     return NULL_TREE;
1547         
1548   /* If OFFSET and ELT_OFFSET are zero, we don't care about the size of the
1549      element type (so we can use the alignment if it's not constant).
1550      Otherwise, compute the offset as an index by using a division.  If the
1551      division isn't exact, then don't do anything.  */
1552   elt_size = TYPE_SIZE_UNIT (elt_type);
1553   if (integer_zerop (offset))
1554     {
1555       if (TREE_CODE (elt_size) != INTEGER_CST)
1556         elt_size = size_int (TYPE_ALIGN (elt_type));
1557
1558       idx = integer_zero_node;
1559     }
1560   else
1561     {
1562       unsigned HOST_WIDE_INT lquo, lrem;
1563       HOST_WIDE_INT hquo, hrem;
1564
1565       if (TREE_CODE (elt_size) != INTEGER_CST
1566           || div_and_round_double (TRUNC_DIV_EXPR, 1,
1567                                    TREE_INT_CST_LOW (offset),
1568                                    TREE_INT_CST_HIGH (offset),
1569                                    TREE_INT_CST_LOW (elt_size),
1570                                    TREE_INT_CST_HIGH (elt_size),
1571                                    &lquo, &hquo, &lrem, &hrem)
1572           || lrem || hrem)
1573         return NULL_TREE;
1574
1575       idx = build_int_cst_wide (NULL_TREE, lquo, hquo);
1576     }
1577
1578   /* Assume the low bound is zero.  If there is a domain type, get the
1579      low bound, if any, convert the index into that type, and add the
1580      low bound.  */
1581   min_idx = integer_zero_node;
1582   if (TYPE_DOMAIN (array_type))
1583     {
1584       if (TYPE_MIN_VALUE (TYPE_DOMAIN (array_type)))
1585         min_idx = TYPE_MIN_VALUE (TYPE_DOMAIN (array_type));
1586       else
1587         min_idx = fold_convert (TYPE_DOMAIN (array_type), min_idx);
1588
1589       if (TREE_CODE (min_idx) != INTEGER_CST)
1590         return NULL_TREE;
1591
1592       idx = fold_convert (TYPE_DOMAIN (array_type), idx);
1593       elt_offset = fold_convert (TYPE_DOMAIN (array_type), elt_offset);
1594     }
1595
1596   if (!integer_zerop (min_idx))
1597     idx = int_const_binop (PLUS_EXPR, idx, min_idx, 0);
1598   if (!integer_zerop (elt_offset))
1599     idx = int_const_binop (PLUS_EXPR, idx, elt_offset, 0);
1600
1601   return build4 (ARRAY_REF, orig_type, base, idx, min_idx,
1602                  size_int (tree_low_cst (elt_size, 1)
1603                            / (TYPE_ALIGN_UNIT (elt_type))));
1604 }
1605
1606
1607 /* A subroutine of fold_stmt_r.  Attempts to fold *(S+O) to S.X.
1608    BASE is a record type.  OFFSET is a byte displacement.  ORIG_TYPE
1609    is the desired result type.  */
1610 /* ??? This doesn't handle class inheritance.  */
1611
1612 static tree
1613 maybe_fold_offset_to_component_ref (tree record_type, tree base, tree offset,
1614                                     tree orig_type, bool base_is_ptr)
1615 {
1616   tree f, t, field_type, tail_array_field, field_offset;
1617
1618   if (TREE_CODE (record_type) != RECORD_TYPE
1619       && TREE_CODE (record_type) != UNION_TYPE
1620       && TREE_CODE (record_type) != QUAL_UNION_TYPE)
1621     return NULL_TREE;
1622
1623   /* Short-circuit silly cases.  */
1624   if (lang_hooks.types_compatible_p (record_type, orig_type))
1625     return NULL_TREE;
1626
1627   tail_array_field = NULL_TREE;
1628   for (f = TYPE_FIELDS (record_type); f ; f = TREE_CHAIN (f))
1629     {
1630       int cmp;
1631
1632       if (TREE_CODE (f) != FIELD_DECL)
1633         continue;
1634       if (DECL_BIT_FIELD (f))
1635         continue;
1636
1637       field_offset = byte_position (f);
1638       if (TREE_CODE (field_offset) != INTEGER_CST)
1639         continue;
1640
1641       /* ??? Java creates "interesting" fields for representing base classes.
1642          They have no name, and have no context.  With no context, we get into
1643          trouble with nonoverlapping_component_refs_p.  Skip them.  */
1644       if (!DECL_FIELD_CONTEXT (f))
1645         continue;
1646
1647       /* The previous array field isn't at the end.  */
1648       tail_array_field = NULL_TREE;
1649
1650       /* Check to see if this offset overlaps with the field.  */
1651       cmp = tree_int_cst_compare (field_offset, offset);
1652       if (cmp > 0)
1653         continue;
1654
1655       field_type = TREE_TYPE (f);
1656
1657       /* Here we exactly match the offset being checked.  If the types match,
1658          then we can return that field.  */
1659       if (cmp == 0
1660           && lang_hooks.types_compatible_p (orig_type, field_type))
1661         {
1662           if (base_is_ptr)
1663             base = build1 (INDIRECT_REF, record_type, base);
1664           t = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE);
1665           return t;
1666         }
1667       
1668       /* Don't care about offsets into the middle of scalars.  */
1669       if (!AGGREGATE_TYPE_P (field_type))
1670         continue;
1671
1672       /* Check for array at the end of the struct.  This is often
1673          used as for flexible array members.  We should be able to
1674          turn this into an array access anyway.  */
1675       if (TREE_CODE (field_type) == ARRAY_TYPE)
1676         tail_array_field = f;
1677
1678       /* Check the end of the field against the offset.  */
1679       if (!DECL_SIZE_UNIT (f)
1680           || TREE_CODE (DECL_SIZE_UNIT (f)) != INTEGER_CST)
1681         continue;
1682       t = int_const_binop (MINUS_EXPR, offset, field_offset, 1);
1683       if (!tree_int_cst_lt (t, DECL_SIZE_UNIT (f)))
1684         continue;
1685
1686       /* If we matched, then set offset to the displacement into
1687          this field.  */
1688       offset = t;
1689       goto found;
1690     }
1691
1692   if (!tail_array_field)
1693     return NULL_TREE;
1694
1695   f = tail_array_field;
1696   field_type = TREE_TYPE (f);
1697   offset = int_const_binop (MINUS_EXPR, offset, byte_position (f), 1);
1698
1699  found:
1700   /* If we get here, we've got an aggregate field, and a possibly 
1701      nonzero offset into them.  Recurse and hope for a valid match.  */
1702   if (base_is_ptr)
1703     base = build1 (INDIRECT_REF, record_type, base);
1704   base = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE);
1705
1706   t = maybe_fold_offset_to_array_ref (base, offset, orig_type);
1707   if (t)
1708     return t;
1709   return maybe_fold_offset_to_component_ref (field_type, base, offset,
1710                                              orig_type, false);
1711 }
1712
1713
1714 /* A subroutine of fold_stmt_r.  Attempt to simplify *(BASE+OFFSET).
1715    Return the simplified expression, or NULL if nothing could be done.  */
1716
1717 static tree
1718 maybe_fold_stmt_indirect (tree expr, tree base, tree offset)
1719 {
1720   tree t;
1721
1722   /* We may well have constructed a double-nested PLUS_EXPR via multiple
1723      substitutions.  Fold that down to one.  Remove NON_LVALUE_EXPRs that
1724      are sometimes added.  */
1725   base = fold (base);
1726   STRIP_TYPE_NOPS (base);
1727   TREE_OPERAND (expr, 0) = base;
1728
1729   /* One possibility is that the address reduces to a string constant.  */
1730   t = fold_read_from_constant_string (expr);
1731   if (t)
1732     return t;
1733
1734   /* Add in any offset from a PLUS_EXPR.  */
1735   if (TREE_CODE (base) == PLUS_EXPR)
1736     {
1737       tree offset2;
1738
1739       offset2 = TREE_OPERAND (base, 1);
1740       if (TREE_CODE (offset2) != INTEGER_CST)
1741         return NULL_TREE;
1742       base = TREE_OPERAND (base, 0);
1743
1744       offset = int_const_binop (PLUS_EXPR, offset, offset2, 1);
1745     }
1746
1747   if (TREE_CODE (base) == ADDR_EXPR)
1748     {
1749       /* Strip the ADDR_EXPR.  */
1750       base = TREE_OPERAND (base, 0);
1751
1752       /* Fold away CONST_DECL to its value, if the type is scalar.  */
1753       if (TREE_CODE (base) == CONST_DECL
1754           && ccp_decl_initial_min_invariant (DECL_INITIAL (base)))
1755         return DECL_INITIAL (base);
1756
1757       /* Try folding *(&B+O) to B[X].  */
1758       t = maybe_fold_offset_to_array_ref (base, offset, TREE_TYPE (expr));
1759       if (t)
1760         return t;
1761
1762       /* Try folding *(&B+O) to B.X.  */
1763       t = maybe_fold_offset_to_component_ref (TREE_TYPE (base), base, offset,
1764                                               TREE_TYPE (expr), false);
1765       if (t)
1766         return t;
1767
1768       /* Fold *&B to B.  We can only do this if EXPR is the same type
1769          as BASE.  We can't do this if EXPR is the element type of an array
1770          and BASE is the array.  */
1771       if (integer_zerop (offset)
1772           && lang_hooks.types_compatible_p (TREE_TYPE (base),
1773                                             TREE_TYPE (expr)))
1774         return base;
1775     }
1776   else
1777     {
1778       /* We can get here for out-of-range string constant accesses, 
1779          such as "_"[3].  Bail out of the entire substitution search
1780          and arrange for the entire statement to be replaced by a
1781          call to __builtin_trap.  In all likelihood this will all be
1782          constant-folded away, but in the meantime we can't leave with
1783          something that get_expr_operands can't understand.  */
1784
1785       t = base;
1786       STRIP_NOPS (t);
1787       if (TREE_CODE (t) == ADDR_EXPR
1788           && TREE_CODE (TREE_OPERAND (t, 0)) == STRING_CST)
1789         {
1790           /* FIXME: Except that this causes problems elsewhere with dead
1791              code not being deleted, and we die in the rtl expanders 
1792              because we failed to remove some ssa_name.  In the meantime,
1793              just return zero.  */
1794           /* FIXME2: This condition should be signaled by
1795              fold_read_from_constant_string directly, rather than 
1796              re-checking for it here.  */
1797           return integer_zero_node;
1798         }
1799
1800       /* Try folding *(B+O) to B->X.  Still an improvement.  */
1801       if (POINTER_TYPE_P (TREE_TYPE (base)))
1802         {
1803           t = maybe_fold_offset_to_component_ref (TREE_TYPE (TREE_TYPE (base)),
1804                                                   base, offset,
1805                                                   TREE_TYPE (expr), true);
1806           if (t)
1807             return t;
1808         }
1809     }
1810
1811   /* Otherwise we had an offset that we could not simplify.  */
1812   return NULL_TREE;
1813 }
1814
1815
1816 /* A subroutine of fold_stmt_r.  EXPR is a PLUS_EXPR.
1817
1818    A quaint feature extant in our address arithmetic is that there
1819    can be hidden type changes here.  The type of the result need
1820    not be the same as the type of the input pointer.
1821
1822    What we're after here is an expression of the form
1823         (T *)(&array + const)
1824    where the cast doesn't actually exist, but is implicit in the
1825    type of the PLUS_EXPR.  We'd like to turn this into
1826         &array[x]
1827    which may be able to propagate further.  */
1828
1829 static tree
1830 maybe_fold_stmt_addition (tree expr)
1831 {
1832   tree op0 = TREE_OPERAND (expr, 0);
1833   tree op1 = TREE_OPERAND (expr, 1);
1834   tree ptr_type = TREE_TYPE (expr);
1835   tree ptd_type;
1836   tree t;
1837   bool subtract = (TREE_CODE (expr) == MINUS_EXPR);
1838
1839   /* We're only interested in pointer arithmetic.  */
1840   if (!POINTER_TYPE_P (ptr_type))
1841     return NULL_TREE;
1842   /* Canonicalize the integral operand to op1.  */
1843   if (INTEGRAL_TYPE_P (TREE_TYPE (op0)))
1844     {
1845       if (subtract)
1846         return NULL_TREE;
1847       t = op0, op0 = op1, op1 = t;
1848     }
1849   /* It had better be a constant.  */
1850   if (TREE_CODE (op1) != INTEGER_CST)
1851     return NULL_TREE;
1852   /* The first operand should be an ADDR_EXPR.  */
1853   if (TREE_CODE (op0) != ADDR_EXPR)
1854     return NULL_TREE;
1855   op0 = TREE_OPERAND (op0, 0);
1856
1857   /* If the first operand is an ARRAY_REF, expand it so that we can fold
1858      the offset into it.  */
1859   while (TREE_CODE (op0) == ARRAY_REF)
1860     {
1861       tree array_obj = TREE_OPERAND (op0, 0);
1862       tree array_idx = TREE_OPERAND (op0, 1);
1863       tree elt_type = TREE_TYPE (op0);
1864       tree elt_size = TYPE_SIZE_UNIT (elt_type);
1865       tree min_idx;
1866
1867       if (TREE_CODE (array_idx) != INTEGER_CST)
1868         break;
1869       if (TREE_CODE (elt_size) != INTEGER_CST)
1870         break;
1871
1872       /* Un-bias the index by the min index of the array type.  */
1873       min_idx = TYPE_DOMAIN (TREE_TYPE (array_obj));
1874       if (min_idx)
1875         {
1876           min_idx = TYPE_MIN_VALUE (min_idx);
1877           if (min_idx)
1878             {
1879               if (TREE_CODE (min_idx) != INTEGER_CST)
1880                 break;
1881
1882               array_idx = convert (TREE_TYPE (min_idx), array_idx);
1883               if (!integer_zerop (min_idx))
1884                 array_idx = int_const_binop (MINUS_EXPR, array_idx,
1885                                              min_idx, 0);
1886             }
1887         }
1888
1889       /* Convert the index to a byte offset.  */
1890       array_idx = convert (sizetype, array_idx);
1891       array_idx = int_const_binop (MULT_EXPR, array_idx, elt_size, 0);
1892
1893       /* Update the operands for the next round, or for folding.  */
1894       /* If we're manipulating unsigned types, then folding into negative
1895          values can produce incorrect results.  Particularly if the type
1896          is smaller than the width of the pointer.  */
1897       if (subtract
1898           && TYPE_UNSIGNED (TREE_TYPE (op1))
1899           && tree_int_cst_lt (array_idx, op1))
1900         return NULL;
1901       op1 = int_const_binop (subtract ? MINUS_EXPR : PLUS_EXPR,
1902                              array_idx, op1, 0);
1903       subtract = false;
1904       op0 = array_obj;
1905     }
1906
1907   /* If we weren't able to fold the subtraction into another array reference,
1908      canonicalize the integer for passing to the array and component ref
1909      simplification functions.  */
1910   if (subtract)
1911     {
1912       if (TYPE_UNSIGNED (TREE_TYPE (op1)))
1913         return NULL;
1914       op1 = fold_unary (NEGATE_EXPR, TREE_TYPE (op1), op1);
1915       /* ??? In theory fold should always produce another integer.  */
1916       if (op1 == NULL || TREE_CODE (op1) != INTEGER_CST)
1917         return NULL;
1918     }
1919
1920   ptd_type = TREE_TYPE (ptr_type);
1921
1922   /* At which point we can try some of the same things as for indirects.  */
1923   t = maybe_fold_offset_to_array_ref (op0, op1, ptd_type);
1924   if (!t)
1925     t = maybe_fold_offset_to_component_ref (TREE_TYPE (op0), op0, op1,
1926                                             ptd_type, false);
1927   if (t)
1928     t = build1 (ADDR_EXPR, ptr_type, t);
1929
1930   return t;
1931 }
1932
1933 /* For passing state through walk_tree into fold_stmt_r and its
1934    children.  */
1935
1936 struct fold_stmt_r_data
1937 {
1938     bool *changed_p;
1939     bool *inside_addr_expr_p;
1940 };
1941
1942 /* Subroutine of fold_stmt called via walk_tree.  We perform several
1943    simplifications of EXPR_P, mostly having to do with pointer arithmetic.  */
1944
1945 static tree
1946 fold_stmt_r (tree *expr_p, int *walk_subtrees, void *data)
1947 {
1948   struct fold_stmt_r_data *fold_stmt_r_data = (struct fold_stmt_r_data *) data;
1949   bool *inside_addr_expr_p = fold_stmt_r_data->inside_addr_expr_p;
1950   bool *changed_p = fold_stmt_r_data->changed_p;
1951   tree expr = *expr_p, t;
1952
1953   /* ??? It'd be nice if walk_tree had a pre-order option.  */
1954   switch (TREE_CODE (expr))
1955     {
1956     case INDIRECT_REF:
1957       t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
1958       if (t)
1959         return t;
1960       *walk_subtrees = 0;
1961
1962       t = maybe_fold_stmt_indirect (expr, TREE_OPERAND (expr, 0),
1963                                     integer_zero_node);
1964       break;
1965
1966       /* ??? Could handle more ARRAY_REFs here, as a variant of INDIRECT_REF.
1967          We'd only want to bother decomposing an existing ARRAY_REF if
1968          the base array is found to have another offset contained within.
1969          Otherwise we'd be wasting time.  */
1970     case ARRAY_REF:
1971       /* If we are not processing expressions found within an
1972          ADDR_EXPR, then we can fold constant array references.  */
1973       if (!*inside_addr_expr_p)
1974         t = fold_read_from_constant_string (expr);
1975       else
1976         t = NULL;
1977       break;
1978
1979     case ADDR_EXPR:
1980       *inside_addr_expr_p = true;
1981       t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
1982       *inside_addr_expr_p = false;
1983       if (t)
1984         return t;
1985       *walk_subtrees = 0;
1986
1987       /* Set TREE_INVARIANT properly so that the value is properly
1988          considered constant, and so gets propagated as expected.  */
1989       if (*changed_p)
1990         recompute_tree_invariant_for_addr_expr (expr);
1991       return NULL_TREE;
1992
1993     case PLUS_EXPR:
1994     case MINUS_EXPR:
1995       t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
1996       if (t)
1997         return t;
1998       t = walk_tree (&TREE_OPERAND (expr, 1), fold_stmt_r, data, NULL);
1999       if (t)
2000         return t;
2001       *walk_subtrees = 0;
2002
2003       t = maybe_fold_stmt_addition (expr);
2004       break;
2005
2006     case COMPONENT_REF:
2007       t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2008       if (t)
2009         return t;
2010       *walk_subtrees = 0;
2011
2012       /* Make sure the FIELD_DECL is actually a field in the type on the lhs.
2013          We've already checked that the records are compatible, so we should
2014          come up with a set of compatible fields.  */
2015       {
2016         tree expr_record = TREE_TYPE (TREE_OPERAND (expr, 0));
2017         tree expr_field = TREE_OPERAND (expr, 1);
2018
2019         if (DECL_FIELD_CONTEXT (expr_field) != TYPE_MAIN_VARIANT (expr_record))
2020           {
2021             expr_field = find_compatible_field (expr_record, expr_field);
2022             TREE_OPERAND (expr, 1) = expr_field;
2023           }
2024       }
2025       break;
2026
2027     case TARGET_MEM_REF:
2028       t = maybe_fold_tmr (expr);
2029       break;
2030
2031     default:
2032       return NULL_TREE;
2033     }
2034
2035   if (t)
2036     {
2037       *expr_p = t;
2038       *changed_p = true;
2039     }
2040
2041   return NULL_TREE;
2042 }
2043
2044
2045 /* Return the string length, maximum string length or maximum value of
2046    ARG in LENGTH.
2047    If ARG is an SSA name variable, follow its use-def chains.  If LENGTH
2048    is not NULL and, for TYPE == 0, its value is not equal to the length
2049    we determine or if we are unable to determine the length or value,
2050    return false.  VISITED is a bitmap of visited variables.
2051    TYPE is 0 if string length should be returned, 1 for maximum string
2052    length and 2 for maximum value ARG can have.  */
2053
2054 static bool
2055 get_maxval_strlen (tree arg, tree *length, bitmap visited, int type)
2056 {
2057   tree var, def_stmt, val;
2058   
2059   if (TREE_CODE (arg) != SSA_NAME)
2060     {
2061       if (type == 2)
2062         {
2063           val = arg;
2064           if (TREE_CODE (val) != INTEGER_CST
2065               || tree_int_cst_sgn (val) < 0)
2066             return false;
2067         }
2068       else
2069         val = c_strlen (arg, 1);
2070       if (!val)
2071         return false;
2072
2073       if (*length)
2074         {
2075           if (type > 0)
2076             {
2077               if (TREE_CODE (*length) != INTEGER_CST
2078                   || TREE_CODE (val) != INTEGER_CST)
2079                 return false;
2080
2081               if (tree_int_cst_lt (*length, val))
2082                 *length = val;
2083               return true;
2084             }
2085           else if (simple_cst_equal (val, *length) != 1)
2086             return false;
2087         }
2088
2089       *length = val;
2090       return true;
2091     }
2092
2093   /* If we were already here, break the infinite cycle.  */
2094   if (bitmap_bit_p (visited, SSA_NAME_VERSION (arg)))
2095     return true;
2096   bitmap_set_bit (visited, SSA_NAME_VERSION (arg));
2097
2098   var = arg;
2099   def_stmt = SSA_NAME_DEF_STMT (var);
2100
2101   switch (TREE_CODE (def_stmt))
2102     {
2103       case MODIFY_EXPR:
2104         {
2105           tree rhs;
2106
2107           /* The RHS of the statement defining VAR must either have a
2108              constant length or come from another SSA_NAME with a constant
2109              length.  */
2110           rhs = TREE_OPERAND (def_stmt, 1);
2111           STRIP_NOPS (rhs);
2112           return get_maxval_strlen (rhs, length, visited, type);
2113         }
2114
2115       case PHI_NODE:
2116         {
2117           /* All the arguments of the PHI node must have the same constant
2118              length.  */
2119           int i;
2120
2121           for (i = 0; i < PHI_NUM_ARGS (def_stmt); i++)
2122             {
2123               tree arg = PHI_ARG_DEF (def_stmt, i);
2124
2125               /* If this PHI has itself as an argument, we cannot
2126                  determine the string length of this argument.  However,
2127                  if we can find a constant string length for the other
2128                  PHI args then we can still be sure that this is a
2129                  constant string length.  So be optimistic and just
2130                  continue with the next argument.  */
2131               if (arg == PHI_RESULT (def_stmt))
2132                 continue;
2133
2134               if (!get_maxval_strlen (arg, length, visited, type))
2135                 return false;
2136             }
2137
2138           return true;
2139         }
2140
2141       default:
2142         break;
2143     }
2144
2145
2146   return false;
2147 }
2148
2149
2150 /* Fold builtin call FN in statement STMT.  If it cannot be folded into a
2151    constant, return NULL_TREE.  Otherwise, return its constant value.  */
2152
2153 static tree
2154 ccp_fold_builtin (tree stmt, tree fn)
2155 {
2156   tree result, val[3];
2157   tree callee, arglist, a;
2158   int arg_mask, i, type;
2159   bitmap visited;
2160   bool ignore;
2161
2162   ignore = TREE_CODE (stmt) != MODIFY_EXPR;
2163
2164   /* First try the generic builtin folder.  If that succeeds, return the
2165      result directly.  */
2166   callee = get_callee_fndecl (fn);
2167   arglist = TREE_OPERAND (fn, 1);
2168   result = fold_builtin (callee, arglist, ignore);
2169   if (result)
2170     {
2171       if (ignore)
2172         STRIP_NOPS (result);
2173       return result;
2174     }
2175
2176   /* Ignore MD builtins.  */
2177   if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_MD)
2178     return NULL_TREE;
2179
2180   /* If the builtin could not be folded, and it has no argument list,
2181      we're done.  */
2182   if (!arglist)
2183     return NULL_TREE;
2184
2185   /* Limit the work only for builtins we know how to simplify.  */
2186   switch (DECL_FUNCTION_CODE (callee))
2187     {
2188     case BUILT_IN_STRLEN:
2189     case BUILT_IN_FPUTS:
2190     case BUILT_IN_FPUTS_UNLOCKED:
2191       arg_mask = 1;
2192       type = 0;
2193       break;
2194     case BUILT_IN_STRCPY:
2195     case BUILT_IN_STRNCPY:
2196       arg_mask = 2;
2197       type = 0;
2198       break;
2199     case BUILT_IN_MEMCPY_CHK:
2200     case BUILT_IN_MEMPCPY_CHK:
2201     case BUILT_IN_MEMMOVE_CHK:
2202     case BUILT_IN_MEMSET_CHK:
2203     case BUILT_IN_STRNCPY_CHK:
2204       arg_mask = 4;
2205       type = 2;
2206       break;
2207     case BUILT_IN_STRCPY_CHK:
2208     case BUILT_IN_STPCPY_CHK:
2209       arg_mask = 2;
2210       type = 1;
2211       break;
2212     case BUILT_IN_SNPRINTF_CHK:
2213     case BUILT_IN_VSNPRINTF_CHK:
2214       arg_mask = 2;
2215       type = 2;
2216       break;
2217     default:
2218       return NULL_TREE;
2219     }
2220
2221   /* Try to use the dataflow information gathered by the CCP process.  */
2222   visited = BITMAP_ALLOC (NULL);
2223
2224   memset (val, 0, sizeof (val));
2225   for (i = 0, a = arglist;
2226        arg_mask;
2227        i++, arg_mask >>= 1, a = TREE_CHAIN (a))
2228     if (arg_mask & 1)
2229       {
2230         bitmap_clear (visited);
2231         if (!get_maxval_strlen (TREE_VALUE (a), &val[i], visited, type))
2232           val[i] = NULL_TREE;
2233       }
2234
2235   BITMAP_FREE (visited);
2236
2237   result = NULL_TREE;
2238   switch (DECL_FUNCTION_CODE (callee))
2239     {
2240     case BUILT_IN_STRLEN:
2241       if (val[0])
2242         {
2243           tree new = fold_convert (TREE_TYPE (fn), val[0]);
2244
2245           /* If the result is not a valid gimple value, or not a cast
2246              of a valid gimple value, then we can not use the result.  */
2247           if (is_gimple_val (new)
2248               || (is_gimple_cast (new)
2249                   && is_gimple_val (TREE_OPERAND (new, 0))))
2250             return new;
2251         }
2252       break;
2253
2254     case BUILT_IN_STRCPY:
2255       if (val[1] && is_gimple_val (val[1]))
2256         result = fold_builtin_strcpy (callee, arglist, val[1]);
2257       break;
2258
2259     case BUILT_IN_STRNCPY:
2260       if (val[1] && is_gimple_val (val[1]))
2261         result = fold_builtin_strncpy (callee, arglist, val[1]);
2262       break;
2263
2264     case BUILT_IN_FPUTS:
2265       result = fold_builtin_fputs (arglist,
2266                                    TREE_CODE (stmt) != MODIFY_EXPR, 0,
2267                                    val[0]);
2268       break;
2269
2270     case BUILT_IN_FPUTS_UNLOCKED:
2271       result = fold_builtin_fputs (arglist,
2272                                    TREE_CODE (stmt) != MODIFY_EXPR, 1,
2273                                    val[0]);
2274       break;
2275
2276     case BUILT_IN_MEMCPY_CHK:
2277     case BUILT_IN_MEMPCPY_CHK:
2278     case BUILT_IN_MEMMOVE_CHK:
2279     case BUILT_IN_MEMSET_CHK:
2280       if (val[2] && is_gimple_val (val[2]))
2281         result = fold_builtin_memory_chk (callee, arglist, val[2], ignore,
2282                                           DECL_FUNCTION_CODE (callee));
2283       break;
2284
2285     case BUILT_IN_STRCPY_CHK:
2286     case BUILT_IN_STPCPY_CHK:
2287       if (val[1] && is_gimple_val (val[1]))
2288         result = fold_builtin_stxcpy_chk (callee, arglist, val[1], ignore,
2289                                           DECL_FUNCTION_CODE (callee));
2290       break;
2291
2292     case BUILT_IN_STRNCPY_CHK:
2293       if (val[2] && is_gimple_val (val[2]))
2294         result = fold_builtin_strncpy_chk (arglist, val[2]);
2295       break;
2296
2297     case BUILT_IN_SNPRINTF_CHK:
2298     case BUILT_IN_VSNPRINTF_CHK:
2299       if (val[1] && is_gimple_val (val[1]))
2300         result = fold_builtin_snprintf_chk (arglist, val[1],
2301                                             DECL_FUNCTION_CODE (callee));
2302       break;
2303
2304     default:
2305       gcc_unreachable ();
2306     }
2307
2308   if (result && ignore)
2309     result = fold_ignored_result (result);
2310   return result;
2311 }
2312
2313
2314 /* Fold the statement pointed to by STMT_P.  In some cases, this function may
2315    replace the whole statement with a new one.  Returns true iff folding
2316    makes any changes.  */
2317
2318 bool
2319 fold_stmt (tree *stmt_p)
2320 {
2321   tree rhs, result, stmt;
2322   struct fold_stmt_r_data fold_stmt_r_data;
2323   bool changed = false;
2324   bool inside_addr_expr = false;
2325
2326   fold_stmt_r_data.changed_p = &changed;
2327   fold_stmt_r_data.inside_addr_expr_p = &inside_addr_expr;
2328
2329   stmt = *stmt_p;
2330
2331   /* If we replaced constants and the statement makes pointer dereferences,
2332      then we may need to fold instances of *&VAR into VAR, etc.  */
2333   if (walk_tree (stmt_p, fold_stmt_r, &fold_stmt_r_data, NULL))
2334     {
2335       *stmt_p
2336         = build_function_call_expr (implicit_built_in_decls[BUILT_IN_TRAP],
2337                                     NULL);
2338       return true;
2339     }
2340
2341   rhs = get_rhs (stmt);
2342   if (!rhs)
2343     return changed;
2344   result = NULL_TREE;
2345
2346   if (TREE_CODE (rhs) == CALL_EXPR)
2347     {
2348       tree callee;
2349
2350       /* Check for builtins that CCP can handle using information not
2351          available in the generic fold routines.  */
2352       callee = get_callee_fndecl (rhs);
2353       if (callee && DECL_BUILT_IN (callee))
2354         result = ccp_fold_builtin (stmt, rhs);
2355       else
2356         {
2357           /* Check for resolvable OBJ_TYPE_REF.  The only sorts we can resolve
2358              here are when we've propagated the address of a decl into the
2359              object slot.  */
2360           /* ??? Should perhaps do this in fold proper.  However, doing it
2361              there requires that we create a new CALL_EXPR, and that requires
2362              copying EH region info to the new node.  Easier to just do it
2363              here where we can just smash the call operand. Also
2364              CALL_EXPR_RETURN_SLOT_OPT needs to be handled correctly and
2365              copied, fold_ternary does not have not information. */
2366           callee = TREE_OPERAND (rhs, 0);
2367           if (TREE_CODE (callee) == OBJ_TYPE_REF
2368               && lang_hooks.fold_obj_type_ref
2369               && TREE_CODE (OBJ_TYPE_REF_OBJECT (callee)) == ADDR_EXPR
2370               && DECL_P (TREE_OPERAND
2371                          (OBJ_TYPE_REF_OBJECT (callee), 0)))
2372             {
2373               tree t;
2374
2375               /* ??? Caution: Broken ADDR_EXPR semantics means that
2376                  looking at the type of the operand of the addr_expr
2377                  can yield an array type.  See silly exception in
2378                  check_pointer_types_r.  */
2379
2380               t = TREE_TYPE (TREE_TYPE (OBJ_TYPE_REF_OBJECT (callee)));
2381               t = lang_hooks.fold_obj_type_ref (callee, t);
2382               if (t)
2383                 {
2384                   TREE_OPERAND (rhs, 0) = t;
2385                   changed = true;
2386                 }
2387             }
2388         }
2389     }
2390
2391   /* If we couldn't fold the RHS, hand over to the generic fold routines.  */
2392   if (result == NULL_TREE)
2393     result = fold (rhs);
2394
2395   /* Strip away useless type conversions.  Both the NON_LVALUE_EXPR that
2396      may have been added by fold, and "useless" type conversions that might
2397      now be apparent due to propagation.  */
2398   STRIP_USELESS_TYPE_CONVERSION (result);
2399
2400   if (result != rhs)
2401     changed |= set_rhs (stmt_p, result);
2402
2403   return changed;
2404 }
2405
2406 /* Perform the minimal folding on statement STMT.  Only operations like
2407    *&x created by constant propagation are handled.  The statement cannot
2408    be replaced with a new one.  */
2409
2410 bool
2411 fold_stmt_inplace (tree stmt)
2412 {
2413   tree old_stmt = stmt, rhs, new_rhs;
2414   struct fold_stmt_r_data fold_stmt_r_data;
2415   bool changed = false;
2416   bool inside_addr_expr = false;
2417
2418   fold_stmt_r_data.changed_p = &changed;
2419   fold_stmt_r_data.inside_addr_expr_p = &inside_addr_expr;
2420
2421   walk_tree (&stmt, fold_stmt_r, &fold_stmt_r_data, NULL);
2422   gcc_assert (stmt == old_stmt);
2423
2424   rhs = get_rhs (stmt);
2425   if (!rhs || rhs == stmt)
2426     return changed;
2427
2428   new_rhs = fold (rhs);
2429   STRIP_USELESS_TYPE_CONVERSION (new_rhs);
2430   if (new_rhs == rhs)
2431     return changed;
2432
2433   changed |= set_rhs (&stmt, new_rhs);
2434   gcc_assert (stmt == old_stmt);
2435
2436   return changed;
2437 }
2438 \f
2439 /* Convert EXPR into a GIMPLE value suitable for substitution on the
2440    RHS of an assignment.  Insert the necessary statements before
2441    iterator *SI_P.  */
2442
2443 static tree
2444 convert_to_gimple_builtin (block_stmt_iterator *si_p, tree expr)
2445 {
2446   tree_stmt_iterator ti;
2447   tree stmt = bsi_stmt (*si_p);
2448   tree tmp, stmts = NULL;
2449
2450   push_gimplify_context ();
2451   tmp = get_initialized_tmp_var (expr, &stmts, NULL);
2452   pop_gimplify_context (NULL);
2453
2454   if (EXPR_HAS_LOCATION (stmt))
2455     annotate_all_with_locus (&stmts, EXPR_LOCATION (stmt));
2456
2457   /* The replacement can expose previously unreferenced variables.  */
2458   for (ti = tsi_start (stmts); !tsi_end_p (ti); tsi_next (&ti))
2459     {
2460       tree new_stmt = tsi_stmt (ti);
2461       find_new_referenced_vars (tsi_stmt_ptr (ti));
2462       bsi_insert_before (si_p, new_stmt, BSI_NEW_STMT);
2463       mark_new_vars_to_rename (bsi_stmt (*si_p));
2464       bsi_next (si_p);
2465     }
2466
2467   return tmp;
2468 }
2469
2470
2471 /* A simple pass that attempts to fold all builtin functions.  This pass
2472    is run after we've propagated as many constants as we can.  */
2473
2474 static unsigned int
2475 execute_fold_all_builtins (void)
2476 {
2477   bool cfg_changed = false;
2478   basic_block bb;
2479   FOR_EACH_BB (bb)
2480     {
2481       block_stmt_iterator i;
2482       for (i = bsi_start (bb); !bsi_end_p (i); )
2483         {
2484           tree *stmtp = bsi_stmt_ptr (i);
2485           tree old_stmt = *stmtp;
2486           tree call = get_rhs (*stmtp);
2487           tree callee, result;
2488           enum built_in_function fcode;
2489
2490           if (!call || TREE_CODE (call) != CALL_EXPR)
2491             {
2492               bsi_next (&i);
2493               continue;
2494             }
2495           callee = get_callee_fndecl (call);
2496           if (!callee || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL)
2497             {
2498               bsi_next (&i);
2499               continue;
2500             }
2501           fcode = DECL_FUNCTION_CODE (callee);
2502
2503           result = ccp_fold_builtin (*stmtp, call);
2504           if (!result)
2505             switch (DECL_FUNCTION_CODE (callee))
2506               {
2507               case BUILT_IN_CONSTANT_P:
2508                 /* Resolve __builtin_constant_p.  If it hasn't been
2509                    folded to integer_one_node by now, it's fairly
2510                    certain that the value simply isn't constant.  */
2511                 result = integer_zero_node;
2512                 break;
2513
2514               default:
2515                 bsi_next (&i);
2516                 continue;
2517               }
2518
2519           if (dump_file && (dump_flags & TDF_DETAILS))
2520             {
2521               fprintf (dump_file, "Simplified\n  ");
2522               print_generic_stmt (dump_file, *stmtp, dump_flags);
2523             }
2524
2525           if (!set_rhs (stmtp, result))
2526             {
2527               result = convert_to_gimple_builtin (&i, result);
2528               if (result)
2529                 {
2530                   bool ok = set_rhs (stmtp, result);
2531                   
2532                   gcc_assert (ok);
2533                 }
2534             }
2535           mark_new_vars_to_rename (*stmtp);
2536           if (maybe_clean_or_replace_eh_stmt (old_stmt, *stmtp)
2537               && tree_purge_dead_eh_edges (bb))
2538             cfg_changed = true;
2539
2540           if (dump_file && (dump_flags & TDF_DETAILS))
2541             {
2542               fprintf (dump_file, "to\n  ");
2543               print_generic_stmt (dump_file, *stmtp, dump_flags);
2544               fprintf (dump_file, "\n");
2545             }
2546
2547           /* Retry the same statement if it changed into another
2548              builtin, there might be new opportunities now.  */
2549           call = get_rhs (*stmtp);
2550           if (!call || TREE_CODE (call) != CALL_EXPR)
2551             {
2552               bsi_next (&i);
2553               continue;
2554             }
2555           callee = get_callee_fndecl (call);
2556           if (!callee
2557               || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
2558               || DECL_FUNCTION_CODE (callee) == fcode)
2559             bsi_next (&i);
2560         }
2561     }
2562
2563   /* Delete unreachable blocks.  */
2564   if (cfg_changed)
2565     cleanup_tree_cfg ();
2566   return 0;
2567 }
2568
2569
2570 struct tree_opt_pass pass_fold_builtins = 
2571 {
2572   "fab",                                /* name */
2573   NULL,                                 /* gate */
2574   execute_fold_all_builtins,            /* execute */
2575   NULL,                                 /* sub */
2576   NULL,                                 /* next */
2577   0,                                    /* static_pass_number */
2578   0,                                    /* tv_id */
2579   PROP_cfg | PROP_ssa | PROP_alias,     /* properties_required */
2580   0,                                    /* properties_provided */
2581   0,                                    /* properties_destroyed */
2582   0,                                    /* todo_flags_start */
2583   TODO_dump_func
2584     | TODO_verify_ssa
2585     | TODO_update_ssa,                  /* todo_flags_finish */
2586   0                                     /* letter */
2587 };