OSDN Git Service

* gimplify.c (gimplify_compound_lval): Take fallback argument
[pf3gnuchains/gcc-fork.git] / gcc / gimplify.c
1 /* Tree lowering pass.  This pass converts the GENERIC functions-as-trees
2    tree representation into the GIMPLE form.
3    Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
4    Major work done by Sebastian Pop <s.pop@laposte.net>,
5    Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 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, 59 Temple Place - Suite 330, Boston, MA
22 02111-1307, USA.  */
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "rtl.h"
30 #include "errors.h"
31 #include "varray.h"
32 #include "tree-gimple.h"
33 #include "tree-inline.h"
34 #include "diagnostic.h"
35 #include "langhooks.h"
36 #include "langhooks-def.h"
37 #include "tree-flow.h"
38 #include "cgraph.h"
39 #include "timevar.h"
40 #include "except.h"
41 #include "hashtab.h"
42 #include "flags.h"
43 #include "real.h"
44 #include "function.h"
45 #include "output.h"
46 #include "expr.h"
47 #include "ggc.h"
48 #include "target.h"
49
50 static struct gimplify_ctx
51 {
52   tree current_bind_expr;
53   bool save_stack;
54   tree temps;
55   tree conditional_cleanups;
56   int conditions;
57   tree exit_label;
58   tree return_temp;
59   varray_type case_labels;
60   /* The formal temporary table.  Should this be persistent?  */
61   htab_t temp_htab;
62 } *gimplify_ctxp;
63
64
65 /* Formal (expression) temporary table handling: Multiple occurrences of
66    the same scalar expression are evaluated into the same temporary.  */
67
68 typedef struct gimple_temp_hash_elt
69 {
70   tree val;   /* Key */
71   tree temp;  /* Value */
72 } elt_t;
73
74 /* Forward declarations.  */
75 static enum gimplify_status gimplify_modify_expr_rhs (tree *, tree *, tree *,
76                                                       tree *, tree *, bool);
77 static enum gimplify_status gimplify_compound_expr (tree *, tree *, bool);
78
79
80 /* Return a hash value for a formal temporary table entry.  */
81
82 static hashval_t
83 gimple_tree_hash (const void *p)
84 {
85   tree t = ((const elt_t *) p)->val;
86   return iterative_hash_expr (t, 0);
87 }
88
89 /* Compare two formal temporary table entries.  */
90
91 static int
92 gimple_tree_eq (const void *p1, const void *p2)
93 {
94   tree t1 = ((const elt_t *) p1)->val;
95   tree t2 = ((const elt_t *) p2)->val;
96   enum tree_code code = TREE_CODE (t1);
97
98   if (TREE_CODE (t2) != code
99       || TREE_TYPE (t1) != TREE_TYPE (t2))
100     return 0;
101
102   if (!operand_equal_p (t1, t2, 0))
103     return 0;
104
105   /* Only allow them to compare equal if they also hash equal; otherwise
106      results are nondeterminate, and we fail bootstrap comparison.  */
107   if (gimple_tree_hash (p1) != gimple_tree_hash (p2))
108     abort ();
109
110   return 1;
111 }
112
113 /* Set up a context for the gimplifier.  */
114
115 void
116 push_gimplify_context (void)
117 {
118   if (gimplify_ctxp)
119     abort ();
120   gimplify_ctxp
121     = (struct gimplify_ctx *) xcalloc (1, sizeof (struct gimplify_ctx));
122   gimplify_ctxp->temp_htab
123     = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
124 }
125
126 /* Tear down a context for the gimplifier.  If BODY is non-null, then
127    put the temporaries into the outer BIND_EXPR.  Otherwise, put them
128    in the unexpanded_var_list.  */
129
130 void
131 pop_gimplify_context (tree body)
132 {
133   if (!gimplify_ctxp || gimplify_ctxp->current_bind_expr)
134     abort ();
135
136   if (body)
137     declare_tmp_vars (gimplify_ctxp->temps, body);
138   else
139     record_vars (gimplify_ctxp->temps);
140
141 #if 0
142   if (!quiet_flag)
143     fprintf (stderr, " collisions: %f ",
144              htab_collisions (gimplify_ctxp->temp_htab));
145 #endif
146
147   htab_delete (gimplify_ctxp->temp_htab);
148   free (gimplify_ctxp);
149   gimplify_ctxp = NULL;
150 }
151
152 void
153 gimple_push_bind_expr (tree bind)
154 {
155   TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr;
156   gimplify_ctxp->current_bind_expr = bind;
157 }
158
159 void
160 gimple_pop_bind_expr (void)
161 {
162   gimplify_ctxp->current_bind_expr
163     = TREE_CHAIN (gimplify_ctxp->current_bind_expr);
164 }
165
166 tree
167 gimple_current_bind_expr (void)
168 {
169   return gimplify_ctxp->current_bind_expr;
170 }
171
172 /* Returns true iff there is a COND_EXPR between us and the innermost
173    CLEANUP_POINT_EXPR.  This info is used by gimple_push_cleanup.  */
174
175 static bool
176 gimple_conditional_context (void)
177 {
178   return gimplify_ctxp->conditions > 0;
179 }
180
181 /* Note that we've entered a COND_EXPR.  */
182
183 static void
184 gimple_push_condition (void)
185 {
186   ++(gimplify_ctxp->conditions);
187 }
188
189 /* Note that we've left a COND_EXPR.  If we're back at unconditional scope
190    now, add any conditional cleanups we've seen to the prequeue.  */
191
192 static void
193 gimple_pop_condition (tree *pre_p)
194 {
195   int conds = --(gimplify_ctxp->conditions);
196
197   if (conds == 0)
198     {
199       append_to_statement_list (gimplify_ctxp->conditional_cleanups, pre_p);
200       gimplify_ctxp->conditional_cleanups = NULL_TREE;
201     }
202   else if (conds < 0)
203     abort ();
204 }
205
206 /* A subroutine of append_to_statement_list{,_force}.  */
207
208 static void
209 append_to_statement_list_1 (tree t, tree *list_p, bool side_effects)
210 {
211   tree list = *list_p;
212   tree_stmt_iterator i;
213
214   if (!side_effects)
215     return;
216
217   if (!list)
218     {
219       if (t && TREE_CODE (t) == STATEMENT_LIST)
220         {
221           *list_p = t;
222           return;
223         }
224       *list_p = list = alloc_stmt_list ();
225     }
226
227   i = tsi_last (list);
228   tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
229 }
230
231 /* Add T to the end of the list container pointed by LIST_P.
232    If T is an expression with no effects, it is ignored.  */
233
234 void
235 append_to_statement_list (tree t, tree *list_p)
236 {
237   append_to_statement_list_1 (t, list_p, t ? TREE_SIDE_EFFECTS (t) : false);
238 }
239
240 /* Similar, but the statement is always added, regardless of side effects.  */
241
242 void
243 append_to_statement_list_force (tree t, tree *list_p)
244 {
245   append_to_statement_list_1 (t, list_p, t != NULL);
246 }
247
248 /* Both gimplify the statement T and append it to LIST_P.  */
249
250 void
251 gimplify_and_add (tree t, tree *list_p)
252 {
253   gimplify_stmt (&t);
254   append_to_statement_list (t, list_p);
255 }
256
257 /* Strip off a legitimate source ending from the input string NAME of
258    length LEN.  Rather than having to know the names used by all of
259    our front ends, we strip off an ending of a period followed by
260    up to five characters.  (Java uses ".class".)  */
261
262 static inline void
263 remove_suffix (char *name, int len)
264 {
265   int i;
266
267   for (i = 2;  i < 8 && len > i;  i++)
268     {
269       if (name[len - i] == '.')
270         {
271           name[len - i] = '\0';
272           break;
273         }
274     }
275 }
276
277 /* Create a nameless artificial label and put it in the current function
278    context.  Returns the newly created label.  */
279
280 tree
281 create_artificial_label (void)
282 {
283   tree lab = build_decl (LABEL_DECL, NULL_TREE, void_type_node);
284
285   DECL_ARTIFICIAL (lab) = 1;
286   DECL_CONTEXT (lab) = current_function_decl;
287   return lab;
288 }
289
290 /* Create a new temporary name with PREFIX.  Returns an identifier.  */
291
292 static GTY(()) unsigned int tmp_var_id_num;
293
294 tree
295 create_tmp_var_name (const char *prefix)
296 {
297   char *tmp_name;
298
299   if (prefix)
300     {
301       char *preftmp = ASTRDUP (prefix);
302
303       remove_suffix (preftmp, strlen (preftmp));
304       prefix = preftmp;
305     }
306
307   ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
308   return get_identifier (tmp_name);
309 }
310
311
312 /* Create a new temporary variable declaration of type TYPE.
313    Does NOT push it into the current binding.  */
314
315 tree
316 create_tmp_var_raw (tree type, const char *prefix)
317 {
318   tree tmp_var;
319   tree new_type;
320
321   /* Make the type of the variable writable.  */
322   new_type = build_type_variant (type, 0, 0);
323   TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
324
325   tmp_var = build_decl (VAR_DECL, create_tmp_var_name (prefix), type);
326
327   /* The variable was declared by the compiler.  */
328   DECL_ARTIFICIAL (tmp_var) = 1;
329   /* And we don't want debug info for it.  */
330   DECL_IGNORED_P (tmp_var) = 1;
331
332   /* Make the variable writable.  */
333   TREE_READONLY (tmp_var) = 0;
334
335   DECL_EXTERNAL (tmp_var) = 0;
336   TREE_STATIC (tmp_var) = 0;
337   TREE_USED (tmp_var) = 1;
338
339   return tmp_var;
340 }
341
342 /* Create a new temporary variable declaration of type TYPE.  DOES push the
343    variable into the current binding.  Further, assume that this is called
344    only from gimplification or optimization, at which point the creation of
345    certain types are bugs.  */
346
347 tree
348 create_tmp_var (tree type, const char *prefix)
349 {
350   tree tmp_var;
351
352 #if defined ENABLE_CHECKING
353   /* We don't allow types that are addressable (meaning we can't make copies),
354      incomplete, or of variable size.  */
355   if (TREE_ADDRESSABLE (type)
356       || !COMPLETE_TYPE_P (type)
357       || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST)
358     abort ();
359 #endif
360
361   tmp_var = create_tmp_var_raw (type, prefix);
362   gimple_add_tmp_var (tmp_var);
363   return tmp_var;
364 }
365
366 /*  Given a tree, try to return a useful variable name that we can use
367     to prefix a temporary that is being assigned the value of the tree.
368     I.E. given  <temp> = &A, return A.  */
369
370 const char *
371 get_name (tree t)
372 {
373   tree stripped_decl;
374
375   stripped_decl = t;
376   STRIP_NOPS (stripped_decl);
377   if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
378     return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
379   else
380     {
381       switch (TREE_CODE (stripped_decl))
382         {
383         case ADDR_EXPR:
384           return get_name (TREE_OPERAND (stripped_decl, 0));
385           break;
386         default:
387           return NULL;
388         }
389     }
390 }
391
392 /* Create a temporary with a name derived from VAL.  Subroutine of
393    lookup_tmp_var; nobody else should call this function.  */
394
395 static inline tree
396 create_tmp_from_val (tree val)
397 {
398   return create_tmp_var (TREE_TYPE (val), get_name (val));
399 }
400
401 /* Create a temporary to hold the value of VAL.  If IS_FORMAL, try to reuse
402    an existing expression temporary.  */
403
404 static tree
405 lookup_tmp_var (tree val, bool is_formal)
406 {
407   if (!is_formal || TREE_SIDE_EFFECTS (val))
408     return create_tmp_from_val (val);
409   else
410     {
411       elt_t elt, *elt_p;
412       void **slot;
413
414       elt.val = val;
415       slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
416       if (*slot == NULL)
417         {
418           elt_p = xmalloc (sizeof (*elt_p));
419           elt_p->val = val;
420           elt_p->temp = create_tmp_from_val (val);
421           TREE_READONLY (elt_p->temp) = 1;
422           *slot = (void *) elt_p;
423         }
424       else
425         elt_p = (elt_t *) *slot;
426
427       return elt_p->temp;
428     }
429 }
430
431 /* Returns a formal temporary variable initialized with VAL.  PRE_P is as
432    in gimplify_expr.  Only use this function if:
433
434    1) The value of the unfactored expression represented by VAL will not
435       change between the initialization and use of the temporary, and
436    2) The temporary will not be otherwise modified.
437
438    For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
439    and #2 means it is inappropriate for && temps.
440
441    For other cases, use get_initialized_tmp_var instead.  */
442
443 static tree
444 internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
445 {
446   tree t, mod;
447   char class;
448
449   gimplify_expr (&val, pre_p, post_p, is_gimple_rhs, fb_rvalue);
450
451   t = lookup_tmp_var (val, is_formal);
452
453   mod = build (MODIFY_EXPR, TREE_TYPE (t), t, val);
454
455   class = TREE_CODE_CLASS (TREE_CODE (val));
456   if (EXPR_HAS_LOCATION (val))
457     SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
458   else
459     SET_EXPR_LOCATION (mod, input_location);
460
461   /* gimplify_modify_expr might want to reduce this further.  */
462   gimplify_and_add (mod, pre_p);
463   return t;
464 }
465
466 tree
467 get_formal_tmp_var (tree val, tree *pre_p)
468 {
469   return internal_get_tmp_var (val, pre_p, NULL, true);
470 }
471
472 /* Returns a temporary variable initialized with VAL.  PRE_P and POST_P
473    are as in gimplify_expr.  */
474
475 tree
476 get_initialized_tmp_var (tree val, tree *pre_p, tree *post_p)
477 {
478   return internal_get_tmp_var (val, pre_p, post_p, false);
479 }
480
481 /*  Returns true if T is a GIMPLE temporary variable, false otherwise.  */
482
483 bool
484 is_gimple_tmp_var (tree t)
485 {
486   /* FIXME this could trigger for other local artificials, too.  */
487   return (TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t)
488           && !TREE_STATIC (t) && !DECL_EXTERNAL (t));
489 }
490
491 /* Declares all the variables in VARS in SCOPE.  */
492
493 void
494 declare_tmp_vars (tree vars, tree scope)
495 {
496   tree last = vars;
497   if (last)
498     {
499       tree temps;
500
501       /* C99 mode puts the default 'return 0;' for main outside the outer
502          braces.  So drill down until we find an actual scope.  */
503       while (TREE_CODE (scope) == COMPOUND_EXPR)
504         scope = TREE_OPERAND (scope, 0);
505
506       if (TREE_CODE (scope) != BIND_EXPR)
507         abort ();
508
509       temps = nreverse (last);
510       TREE_CHAIN (last) = BIND_EXPR_VARS (scope);
511       BIND_EXPR_VARS (scope) = temps;
512
513       /* We don't add the temps to the block for this BIND_EXPR, as we're
514          not interested in debugging info for them.  */
515     }
516 }
517
518 void
519 gimple_add_tmp_var (tree tmp)
520 {
521   if (TREE_CHAIN (tmp) || tmp->decl.seen_in_bind_expr)
522     abort ();
523
524   DECL_CONTEXT (tmp) = current_function_decl;
525   tmp->decl.seen_in_bind_expr = 1;
526
527   if (gimplify_ctxp)
528     {
529       TREE_CHAIN (tmp) = gimplify_ctxp->temps;
530       gimplify_ctxp->temps = tmp;
531     }
532   else if (cfun)
533     record_vars (tmp);
534   else
535     declare_tmp_vars (tmp, DECL_SAVED_TREE (current_function_decl));
536 }
537
538 /* Determines whether to assign a locus to the statement STMT.  */
539
540 static bool
541 should_carry_locus_p (tree stmt)
542 {
543   /* Don't emit a line note for a label.  We particularly don't want to
544      emit one for the break label, since it doesn't actually correspond
545      to the beginning of the loop/switch.  */
546   if (TREE_CODE (stmt) == LABEL_EXPR)
547     return false;
548
549   /* Do not annotate empty statements, since it confuses gcov.  */
550   if (!TREE_SIDE_EFFECTS (stmt))
551     return false;
552
553   return true;
554 }
555
556 static void
557 annotate_one_with_locus (tree t, location_t locus)
558 {
559   if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (t)))
560       && ! EXPR_HAS_LOCATION (t)
561       && should_carry_locus_p (t))
562     SET_EXPR_LOCATION (t, locus);
563 }
564
565 void
566 annotate_all_with_locus (tree *stmt_p, location_t locus)
567 {
568   tree_stmt_iterator i;
569
570   if (!*stmt_p)
571     return;
572
573   for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
574     {
575       tree t = tsi_stmt (i);
576
577 #ifdef ENABLE_CHECKING
578           /* Assuming we've already been gimplified, we shouldn't
579              see nested chaining constructs anymore.  */
580           if (TREE_CODE (t) == STATEMENT_LIST
581               || TREE_CODE (t) == COMPOUND_EXPR)
582             abort ();
583 #endif
584
585       annotate_one_with_locus (t, locus);
586     }
587 }
588
589 /* Similar to copy_tree_r() but do not copy SAVE_EXPR or TARGET_EXPR nodes.
590    These nodes model computations that should only be done once.  If we
591    were to unshare something like SAVE_EXPR(i++), the gimplification
592    process would create wrong code.  */
593
594 static tree
595 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
596 {
597   enum tree_code code = TREE_CODE (*tp);
598   /* Don't unshare types, decls, constants and SAVE_EXPR nodes.  */
599   if (TREE_CODE_CLASS (code) == 't'
600       || TREE_CODE_CLASS (code) == 'd'
601       || TREE_CODE_CLASS (code) == 'c'
602       || code == SAVE_EXPR || code == TARGET_EXPR
603       /* We can't do anything sensible with a BLOCK used as an expression,
604          but we also can't abort when we see it because of non-expression
605          uses.  So just avert our eyes and cross our fingers.  Silly Java.  */
606       || code == BLOCK)
607     *walk_subtrees = 0;
608   else if (code == BIND_EXPR)
609     abort ();
610   else
611     copy_tree_r (tp, walk_subtrees, data);
612
613   return NULL_TREE;
614 }
615
616 /* Mark all the _DECL nodes under *TP as volatile.  FIXME: This must die
617    after VA_ARG_EXPRs are properly lowered.  */
618
619 static tree
620 mark_decls_volatile_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
621                        void *data ATTRIBUTE_UNUSED)
622 {
623   if (SSA_VAR_P (*tp))
624     TREE_THIS_VOLATILE (*tp) = 1;
625
626   return NULL_TREE;
627 }
628
629
630 /* Callback for walk_tree to unshare most of the shared trees rooted at
631    *TP.  If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
632    then *TP is deep copied by calling copy_tree_r.
633
634    This unshares the same trees as copy_tree_r with the exception of
635    SAVE_EXPR nodes.  These nodes model computations that should only be
636    done once.  If we were to unshare something like SAVE_EXPR(i++), the
637    gimplification process would create wrong code.  */
638
639 static tree
640 copy_if_shared_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
641                   void *data ATTRIBUTE_UNUSED)
642 {
643   tree t = *tp;
644   enum tree_code code = TREE_CODE (t);
645
646   /* Skip types, decls, and constants.  But we do want to look at their
647      types and the bounds of types.  Mark them as visited so we properly
648      unmark their subtrees on the unmark pass.  If we've already seen them,
649      don't look down further.  */
650   if (TREE_CODE_CLASS (code) == 't'
651       || TREE_CODE_CLASS (code) == 'd'
652       || TREE_CODE_CLASS (code) == 'c')
653     {
654       if (TREE_VISITED (t))
655         *walk_subtrees = 0;
656       else
657         TREE_VISITED (t) = 1;
658     }
659
660   /* Special-case BIND_EXPR.  We should never be copying these, therefore
661      we can omit examining BIND_EXPR_VARS.  Which also avoids problems with
662      double processing of the DECL_INITIAL, which could be seen via both
663      the BIND_EXPR_VARS and a DECL_EXPR.  */
664   else if (code == BIND_EXPR)
665     {
666       if (TREE_VISITED (t))
667         abort ();
668       TREE_VISITED (t) = 1;
669       *walk_subtrees = 0;
670       walk_tree (&BIND_EXPR_BODY (t), copy_if_shared_r, NULL, NULL);
671     }
672
673   /* If this node has been visited already, unshare it and don't look
674      any deeper.  */
675   else if (TREE_VISITED (t))
676     {
677       walk_tree (tp, mostly_copy_tree_r, NULL, NULL);
678       *walk_subtrees = 0;
679     }
680
681   /* Otherwise, mark the tree as visited and keep looking.  */
682   else
683     {
684       TREE_VISITED (t) = 1;
685       if (TREE_CODE (*tp) == VA_ARG_EXPR
686           && targetm.calls.gimplify_va_arg_expr == NULL)
687         {
688           /* Mark any _DECL inside the operand as volatile to avoid
689              the optimizers messing around with it. We have to do this
690              early, otherwise we might mark a variable as volatile
691              after we gimplify other statements that use the variable
692              assuming it's not volatile.  */
693
694           /* FIXME once most targets define the above hook, this should
695              go away (perhaps along with the #include "target.h").  */
696           walk_tree (&TREE_OPERAND (*tp, 0), mark_decls_volatile_r,
697                      NULL, NULL);
698         }
699     }
700
701   return NULL_TREE;
702 }
703
704 static tree
705 unmark_visited_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
706                   void *data ATTRIBUTE_UNUSED)
707 {
708   if (TREE_VISITED (*tp))
709     TREE_VISITED (*tp) = 0;
710   else
711     *walk_subtrees = 0;
712
713   return NULL_TREE;
714 }
715
716 /* Unshare all the trees in BODY_P, a pointer to the body of FNDECL, and the
717    bodies of any nested functions.  */
718
719 static void
720 unshare_body (tree *body_p, tree fndecl)
721 {
722   struct cgraph_node *cgn = cgraph_node (fndecl);
723
724   walk_tree (body_p, copy_if_shared_r, NULL, NULL);
725   for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
726     unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
727 }
728
729 /* Likewise, but mark all trees as not visited.  */
730
731 static void
732 unvisit_body (tree *body_p, tree fndecl)
733 {
734   struct cgraph_node *cgn = cgraph_node (fndecl);
735
736   walk_tree (body_p, unmark_visited_r, NULL, NULL);
737   for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
738     unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
739 }
740
741 /* Unshare T and all the trees reached from T via TREE_CHAIN.  */
742
743 void
744 unshare_all_trees (tree t)
745 {
746   walk_tree (&t, copy_if_shared_r, NULL, NULL);
747   walk_tree (&t, unmark_visited_r, NULL, NULL);
748 }
749
750 /* Unconditionally make an unshared copy of EXPR.  This is used when using
751    stored expressions which span multiple functions, such as BINFO_VTABLE,
752    as the normal unsharing process can't tell that they're shared.  */
753
754 tree
755 unshare_expr (tree expr)
756 {
757   walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
758   return expr;
759 }
760
761 /* A terser interface for building a representation of a exception
762    specification.  */
763
764 tree
765 gimple_build_eh_filter (tree body, tree allowed, tree failure)
766 {
767   tree t;
768
769   /* FIXME should the allowed types go in TREE_TYPE?  */
770   t = build (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE);
771   append_to_statement_list (failure, &EH_FILTER_FAILURE (t));
772
773   t = build (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t);
774   append_to_statement_list (body, &TREE_OPERAND (t, 0));
775
776   return t;
777 }
778
779 \f
780 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
781    contain statements and have a value.  Assign its value to a temporary
782    and give it void_type_node.  Returns the temporary, or NULL_TREE if
783    WRAPPER was already void.  */
784
785 tree
786 voidify_wrapper_expr (tree wrapper, tree temp)
787 {
788   if (!VOID_TYPE_P (TREE_TYPE (wrapper)))
789     {
790       tree *p, sub = wrapper;
791
792     restart:
793       /* Set p to point to the body of the wrapper.  */
794       switch (TREE_CODE (sub))
795         {
796         case BIND_EXPR:
797           /* For a BIND_EXPR, the body is operand 1.  */
798           p = &BIND_EXPR_BODY (sub);
799           break;
800
801         default:
802           p = &TREE_OPERAND (sub, 0);
803           break;
804         }
805
806       /* Advance to the last statement.  Set all container types to void.  */
807       if (TREE_CODE (*p) == STATEMENT_LIST)
808         {
809           tree_stmt_iterator i = tsi_last (*p);
810           p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
811         }
812       else
813         { 
814           for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
815             {
816               TREE_SIDE_EFFECTS (*p) = 1;
817               TREE_TYPE (*p) = void_type_node;
818             }
819         }
820
821       if (p == NULL || IS_EMPTY_STMT (*p))
822         ;
823       /* Look through exception handling.  */
824       else if (TREE_CODE (*p) == TRY_FINALLY_EXPR
825                || TREE_CODE (*p) == TRY_CATCH_EXPR)
826         {
827           sub = *p;
828           goto restart;
829         }
830       /* The C++ frontend already did this for us.  */
831       else if (TREE_CODE (*p) == INIT_EXPR
832                || TREE_CODE (*p) == TARGET_EXPR)
833         temp = TREE_OPERAND (*p, 0);
834       /* If we're returning a dereference, move the dereference
835          outside the wrapper.  */
836       else if (TREE_CODE (*p) == INDIRECT_REF)
837         {
838           tree ptr = TREE_OPERAND (*p, 0);
839           temp = create_tmp_var (TREE_TYPE (ptr), "retval");
840           *p = build (MODIFY_EXPR, TREE_TYPE (ptr), temp, ptr);
841           temp = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (temp)), temp);
842           /* If this is a BIND_EXPR for a const inline function, it might not
843              have TREE_SIDE_EFFECTS set.  That is no longer accurate.  */
844           TREE_SIDE_EFFECTS (wrapper) = 1;
845         }
846       else
847         {
848           if (!temp)
849             temp = create_tmp_var (TREE_TYPE (wrapper), "retval");
850           *p = build (MODIFY_EXPR, TREE_TYPE (temp), temp, *p);
851           TREE_SIDE_EFFECTS (wrapper) = 1;
852         }
853
854       TREE_TYPE (wrapper) = void_type_node;
855       return temp;
856     }
857
858   return NULL_TREE;
859 }
860
861 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
862    a temporary through which they communicate.  */
863
864 static void
865 build_stack_save_restore (tree *save, tree *restore)
866 {
867   tree save_call, tmp_var;
868
869   save_call =
870       build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_SAVE],
871                                 NULL_TREE);
872   tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
873
874   *save = build (MODIFY_EXPR, ptr_type_node, tmp_var, save_call);
875   *restore =
876     build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
877                               tree_cons (NULL_TREE, tmp_var, NULL_TREE));
878 }
879
880 /* Gimplify a BIND_EXPR.  Just voidify and recurse.  */
881
882 static enum gimplify_status
883 gimplify_bind_expr (tree *expr_p, tree temp, tree *pre_p)
884 {
885   tree bind_expr = *expr_p;
886   bool old_save_stack = gimplify_ctxp->save_stack;
887   tree t;
888
889   temp = voidify_wrapper_expr (bind_expr, temp);
890
891   /* Mark variables seen in this bind expr.  */
892   for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
893     t->decl.seen_in_bind_expr = 1;
894
895   gimple_push_bind_expr (bind_expr);
896   gimplify_ctxp->save_stack = false;
897
898   gimplify_to_stmt_list (&BIND_EXPR_BODY (bind_expr));
899
900   if (gimplify_ctxp->save_stack)
901     {
902       tree stack_save, stack_restore;
903
904       /* Save stack on entry and restore it on exit.  Add a try_finally
905          block to achieve this.  Note that mudflap depends on the
906          format of the emitted code: see mx_register_decls().  */
907       build_stack_save_restore (&stack_save, &stack_restore);
908
909       t = build (TRY_FINALLY_EXPR, void_type_node,
910                  BIND_EXPR_BODY (bind_expr), NULL_TREE);
911       append_to_statement_list (stack_restore, &TREE_OPERAND (t, 1));
912
913       BIND_EXPR_BODY (bind_expr) = NULL_TREE;
914       append_to_statement_list (stack_save, &BIND_EXPR_BODY (bind_expr));
915       append_to_statement_list (t, &BIND_EXPR_BODY (bind_expr));
916     }
917
918   gimplify_ctxp->save_stack = old_save_stack;
919   gimple_pop_bind_expr ();
920
921   if (temp)
922     {
923       *expr_p = temp;
924       append_to_statement_list (bind_expr, pre_p);
925       return GS_OK;
926     }
927   else
928     return GS_ALL_DONE;
929 }
930
931 /* Gimplify a RETURN_EXPR.  If the expression to be returned is not a
932    GIMPLE value, it is assigned to a new temporary and the statement is
933    re-written to return the temporary.
934
935    PRE_P points to the list where side effects that must happen before
936    STMT should be stored.  */
937
938 static enum gimplify_status
939 gimplify_return_expr (tree stmt, tree *pre_p)
940 {
941   tree ret_expr = TREE_OPERAND (stmt, 0);
942   tree result_decl, result;
943
944   if (!ret_expr || TREE_CODE (ret_expr) == RESULT_DECL)
945     return GS_ALL_DONE;
946
947   if (ret_expr == error_mark_node)
948     return GS_ERROR;
949
950   if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
951     result_decl = NULL_TREE;
952   else
953     {
954       result_decl = TREE_OPERAND (ret_expr, 0);
955 #ifdef ENABLE_CHECKING
956       if ((TREE_CODE (ret_expr) != MODIFY_EXPR
957            && TREE_CODE (ret_expr) != INIT_EXPR)
958           || TREE_CODE (result_decl) != RESULT_DECL)
959         abort ();
960 #endif
961     }
962
963   /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
964      Recall that aggregate_value_p is FALSE for any aggregate type that is
965      returned in registers.  If we're returning values in registers, then
966      we don't want to extend the lifetime of the RESULT_DECL, particularly
967      across another call.  In addition, for those aggregates for which 
968      hard_function_value generates a PARALLEL, we'll abort during normal
969      expansion of structure assignments; there's special code in expand_return
970      to handle this case that does not exist in expand_expr.  */
971   if (!result_decl
972       || aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
973     result = result_decl;
974   else if (gimplify_ctxp->return_temp)
975     result = gimplify_ctxp->return_temp;
976   else
977     {
978       result = create_tmp_var (TREE_TYPE (result_decl), NULL);
979
980       /* ??? With complex control flow (usually involving abnormal edges),
981          we can wind up warning about an uninitialized value for this.  Due
982          to how this variable is constructed and initialized, this is never
983          true.  Give up and never warn.  */
984       TREE_NO_WARNING (result) = 1;
985
986       gimplify_ctxp->return_temp = result;
987     }
988
989   /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
990      Then gimplify the whole thing.  */
991   if (result != result_decl)
992     TREE_OPERAND (ret_expr, 0) = result;
993
994   gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
995
996   /* If we didn't use a temporary, then the result is just the result_decl.
997      Otherwise we need a simple copy.  This should already be gimple.  */
998   if (result == result_decl)
999     ret_expr = result;
1000   else
1001     ret_expr = build (MODIFY_EXPR, TREE_TYPE (result), result_decl, result);
1002   TREE_OPERAND (stmt, 0) = ret_expr;
1003
1004   return GS_ALL_DONE;
1005 }
1006
1007 /* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
1008    and initialization explicit.  */
1009
1010 static enum gimplify_status
1011 gimplify_decl_expr (tree *stmt_p)
1012 {
1013   tree stmt = *stmt_p;
1014   tree decl = DECL_EXPR_DECL (stmt);
1015
1016   *stmt_p = NULL_TREE;
1017
1018   if (TREE_TYPE (decl) == error_mark_node)
1019     return GS_ERROR;
1020
1021   else if (TREE_CODE (decl) == TYPE_DECL)
1022     gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1023
1024   else if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1025     {
1026       tree init = DECL_INITIAL (decl);
1027
1028       if (!TREE_CONSTANT (DECL_SIZE (decl)))
1029         {
1030           /* This is a variable-sized decl.  Simplify its size and mark it
1031              for deferred expansion.  Note that mudflap depends on the format
1032              of the emitted code: see mx_register_decls().  */
1033           tree t, args;
1034
1035           gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1036           gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p);
1037           gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1038
1039           args = tree_cons (NULL, DECL_SIZE_UNIT (decl), NULL);
1040           t = build_fold_addr_expr (decl);
1041           args = tree_cons (NULL, t, args);
1042           t = implicit_built_in_decls[BUILT_IN_STACK_ALLOC];
1043           t = build_function_call_expr (t, args);
1044
1045           gimplify_and_add (t, stmt_p);
1046           DECL_DEFER_OUTPUT (decl) = 1;
1047         }
1048
1049       if (init && init != error_mark_node)
1050         {
1051           if (!TREE_STATIC (decl))
1052             {
1053               DECL_INITIAL (decl) = NULL_TREE;
1054               init = build (MODIFY_EXPR, void_type_node, decl, init);
1055               gimplify_and_add (init, stmt_p);
1056             }
1057           else
1058             /* We must still examine initializers for static variables
1059                as they may contain a label address.  */
1060             walk_tree (&init, force_labels_r, NULL, NULL);
1061         }
1062
1063       /* This decl isn't mentioned in the enclosing block, so add it to the
1064          list of temps.  FIXME it seems a bit of a kludge to say that
1065          anonymous artificial vars aren't pushed, but everything else is.  */
1066       if (DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1067         gimple_add_tmp_var (decl);
1068     }
1069
1070   return GS_ALL_DONE;
1071 }
1072
1073 /* Gimplify a LOOP_EXPR.  Normally this just involves gimplifying the body
1074    and replacing the LOOP_EXPR with goto, but if the loop contains an
1075    EXIT_EXPR, we need to append a label for it to jump to.  */
1076
1077 static enum gimplify_status
1078 gimplify_loop_expr (tree *expr_p, tree *pre_p)
1079 {
1080   tree saved_label = gimplify_ctxp->exit_label;
1081   tree start_label = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
1082   tree jump_stmt = build_and_jump (&LABEL_EXPR_LABEL (start_label));
1083
1084   append_to_statement_list (start_label, pre_p);
1085
1086   gimplify_ctxp->exit_label = NULL_TREE;
1087
1088   gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1089
1090   if (gimplify_ctxp->exit_label)
1091     {
1092       append_to_statement_list (jump_stmt, pre_p);
1093       *expr_p = build1 (LABEL_EXPR, void_type_node, gimplify_ctxp->exit_label);
1094     }
1095   else
1096     *expr_p = jump_stmt;
1097
1098   gimplify_ctxp->exit_label = saved_label;
1099
1100   return GS_ALL_DONE;
1101 }
1102
1103 /* Compare two case labels.  Because the front end should already have
1104    made sure that case ranges do not overlap, it is enough to only compare
1105    the CASE_LOW values of each case label.  */
1106
1107 static int
1108 compare_case_labels (const void *p1, const void *p2)
1109 {
1110   tree case1 = *(tree *)p1;
1111   tree case2 = *(tree *)p2;
1112
1113   return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1114 }
1115
1116 /* Sort the case labels in LABEL_VEC in ascending order.  */
1117
1118 void
1119 sort_case_labels (tree label_vec)
1120 {
1121   size_t len = TREE_VEC_LENGTH (label_vec);
1122   tree default_case = TREE_VEC_ELT (label_vec, len - 1);
1123
1124   if (CASE_LOW (default_case))
1125     {
1126       size_t i;
1127
1128       /* The last label in the vector should be the default case
1129          but it is not.  */
1130       for (i = 0; i < len; ++i)
1131         {
1132           tree t = TREE_VEC_ELT (label_vec, i);
1133           if (!CASE_LOW (t))
1134             {
1135               default_case = t;
1136               TREE_VEC_ELT (label_vec, i) = TREE_VEC_ELT (label_vec, len - 1);
1137               TREE_VEC_ELT (label_vec, len - 1) = default_case;
1138               break;
1139             }
1140         }
1141     }
1142
1143   qsort (&TREE_VEC_ELT (label_vec, 0), len - 1, sizeof (tree),
1144          compare_case_labels);
1145 }
1146
1147 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1148    branch to.  */
1149
1150 static enum gimplify_status
1151 gimplify_switch_expr (tree *expr_p, tree *pre_p)
1152 {
1153   tree switch_expr = *expr_p;
1154   enum gimplify_status ret;
1155
1156   ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL,
1157                        is_gimple_val, fb_rvalue);
1158
1159   if (SWITCH_BODY (switch_expr))
1160     {
1161       varray_type labels, saved_labels;
1162       tree label_vec, default_case = NULL_TREE;
1163       size_t i, len;
1164
1165       /* If someone can be bothered to fill in the labels, they can
1166          be bothered to null out the body too.  */
1167       if (SWITCH_LABELS (switch_expr))
1168         abort ();
1169
1170       saved_labels = gimplify_ctxp->case_labels;
1171       VARRAY_TREE_INIT (gimplify_ctxp->case_labels, 8, "case_labels");
1172
1173       gimplify_to_stmt_list (&SWITCH_BODY (switch_expr));
1174
1175       labels = gimplify_ctxp->case_labels;
1176       gimplify_ctxp->case_labels = saved_labels;
1177
1178       len = VARRAY_ACTIVE_SIZE (labels);
1179
1180       for (i = 0; i < len; ++i)
1181         {
1182           tree t = VARRAY_TREE (labels, i);
1183           if (!CASE_LOW (t))
1184             {
1185               /* The default case must be the last label in the list.  */
1186               default_case = t;
1187               VARRAY_TREE (labels, i) = VARRAY_TREE (labels, len - 1);
1188               len--;
1189               break;
1190             }
1191         }
1192
1193       label_vec = make_tree_vec (len + 1);
1194       SWITCH_LABELS (*expr_p) = label_vec;
1195       append_to_statement_list (switch_expr, pre_p);
1196
1197       if (! default_case)
1198         {
1199           /* If the switch has no default label, add one, so that we jump
1200              around the switch body.  */
1201           default_case = build (CASE_LABEL_EXPR, void_type_node, NULL_TREE,
1202                                 NULL_TREE, create_artificial_label ());
1203           append_to_statement_list (SWITCH_BODY (switch_expr), pre_p);
1204           *expr_p = build (LABEL_EXPR, void_type_node,
1205                            CASE_LABEL (default_case));
1206         }
1207       else
1208         *expr_p = SWITCH_BODY (switch_expr);
1209
1210       for (i = 0; i < len; ++i)
1211         TREE_VEC_ELT (label_vec, i) = VARRAY_TREE (labels, i);
1212       TREE_VEC_ELT (label_vec, len) = default_case;
1213
1214       sort_case_labels (label_vec);
1215
1216       SWITCH_BODY (switch_expr) = NULL;
1217     }
1218   else if (!SWITCH_LABELS (switch_expr))
1219     abort ();
1220
1221   return ret;
1222 }
1223
1224 static enum gimplify_status
1225 gimplify_case_label_expr (tree *expr_p)
1226 {
1227   tree expr = *expr_p;
1228   if (gimplify_ctxp->case_labels)
1229     VARRAY_PUSH_TREE (gimplify_ctxp->case_labels, expr);
1230   else
1231     abort ();
1232   *expr_p = build (LABEL_EXPR, void_type_node, CASE_LABEL (expr));
1233   return GS_ALL_DONE;
1234 }
1235
1236 /* Gimplify a LABELED_BLOCK_EXPR into a LABEL_EXPR following
1237    a (possibly empty) body.  */
1238
1239 static enum gimplify_status
1240 gimplify_labeled_block_expr (tree *expr_p)
1241 {
1242   tree body = LABELED_BLOCK_BODY (*expr_p);
1243   tree label = LABELED_BLOCK_LABEL (*expr_p);
1244   tree t;
1245
1246   DECL_CONTEXT (label) = current_function_decl;
1247   t = build (LABEL_EXPR, void_type_node, label);
1248   if (body != NULL_TREE)
1249     t = build (COMPOUND_EXPR, void_type_node, body, t);
1250   *expr_p = t;
1251
1252   return GS_OK;
1253 }
1254
1255 /* Gimplify a EXIT_BLOCK_EXPR into a GOTO_EXPR.  */
1256
1257 static enum gimplify_status
1258 gimplify_exit_block_expr (tree *expr_p)
1259 {
1260   tree labeled_block = TREE_OPERAND (*expr_p, 0);
1261   tree label;
1262
1263   /* First operand must be a LABELED_BLOCK_EXPR, which should
1264      already be lowered (or partially lowered) when we get here.  */
1265 #if defined ENABLE_CHECKING
1266   if (TREE_CODE (labeled_block) != LABELED_BLOCK_EXPR)
1267     abort ();
1268 #endif
1269
1270   label = LABELED_BLOCK_LABEL (labeled_block);
1271   *expr_p = build1 (GOTO_EXPR, void_type_node, label);
1272
1273   return GS_OK;
1274 }
1275
1276 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1277    if necessary.  */
1278
1279 tree
1280 build_and_jump (tree *label_p)
1281 {
1282   if (label_p == NULL)
1283     /* If there's nowhere to jump, just fall through.  */
1284     return NULL_TREE;
1285
1286   if (*label_p == NULL_TREE)
1287     {
1288       tree label = create_artificial_label ();
1289       *label_p = label;
1290     }
1291
1292   return build1 (GOTO_EXPR, void_type_node, *label_p);
1293 }
1294
1295 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1296    This also involves building a label to jump to and communicating it to
1297    gimplify_loop_expr through gimplify_ctxp->exit_label.  */
1298
1299 static enum gimplify_status
1300 gimplify_exit_expr (tree *expr_p)
1301 {
1302   tree cond = TREE_OPERAND (*expr_p, 0);
1303   tree expr;
1304
1305   expr = build_and_jump (&gimplify_ctxp->exit_label);
1306   expr = build (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1307   *expr_p = expr;
1308
1309   return GS_OK;
1310 }
1311
1312 /* A helper function to be called via walk_tree.  Mark all labels under *TP
1313    as being forced.  To be called for DECL_INITIAL of static variables.  */
1314
1315 tree
1316 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1317 {
1318   if (TYPE_P (*tp))
1319     *walk_subtrees = 0;
1320   if (TREE_CODE (*tp) == LABEL_DECL)
1321     FORCED_LABEL (*tp) = 1;
1322
1323   return NULL_TREE;
1324 }
1325
1326 /* *EXPR_P is a COMPONENT_REF being used as an rvalue.  If its type is
1327    different from its canonical type, wrap the whole thing inside a
1328    NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1329    type.
1330
1331    The canonical type of a COMPONENT_REF is the type of the field being
1332    referenced--unless the field is a bit-field which can be read directly
1333    in a smaller mode, in which case the canonical type is the
1334    sign-appropriate type corresponding to that mode.  */
1335
1336 static void
1337 canonicalize_component_ref (tree *expr_p)
1338 {
1339   tree expr = *expr_p;
1340   tree type;
1341
1342   if (TREE_CODE (expr) != COMPONENT_REF)
1343     abort ();
1344
1345   if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1346     type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1347   else
1348     type = TREE_TYPE (TREE_OPERAND (expr, 1));
1349
1350   if (TREE_TYPE (expr) != type)
1351     {
1352       tree old_type = TREE_TYPE (expr);
1353
1354       /* Set the type of the COMPONENT_REF to the underlying type.  */
1355       TREE_TYPE (expr) = type;
1356
1357       /* And wrap the whole thing inside a NOP_EXPR.  */
1358       expr = build1 (NOP_EXPR, old_type, expr);
1359
1360       *expr_p = expr;
1361     }
1362 }
1363
1364 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1365    to foo, embed that change in the ADDR_EXPR by converting 
1366       T array[U];
1367       (T *)&array
1368    ==>
1369       &array[L]
1370    where L is the lower bound.  For simplicity, only do this for constant
1371    lower bound.  */
1372
1373 static void
1374 canonicalize_addr_expr (tree *expr_p)
1375 {
1376   tree expr = *expr_p;
1377   tree ctype = TREE_TYPE (expr);
1378   tree addr_expr = TREE_OPERAND (expr, 0);
1379   tree atype = TREE_TYPE (addr_expr);
1380   tree dctype, datype, ddatype, otype, obj_expr;
1381
1382   /* Both cast and addr_expr types should be pointers.  */
1383   if (!POINTER_TYPE_P (ctype) || !POINTER_TYPE_P (atype))
1384     return;
1385
1386   /* The addr_expr type should be a pointer to an array.  */
1387   datype = TREE_TYPE (atype);
1388   if (TREE_CODE (datype) != ARRAY_TYPE)
1389     return;
1390
1391   /* Both cast and addr_expr types should address the same object type.  */
1392   dctype = TREE_TYPE (ctype);
1393   ddatype = TREE_TYPE (datype);
1394   if (!lang_hooks.types_compatible_p (ddatype, dctype))
1395     return;
1396
1397   /* The addr_expr and the object type should match.  */
1398   obj_expr = TREE_OPERAND (addr_expr, 0);
1399   otype = TREE_TYPE (obj_expr);
1400   if (!lang_hooks.types_compatible_p (otype, datype))
1401     return;
1402
1403   /* The lower bound and element sizes must be constant.  */
1404   if (TREE_CODE (TYPE_SIZE_UNIT (dctype)) != INTEGER_CST
1405       || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1406       || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1407     return;
1408
1409   /* All checks succeeded.  Build a new node to merge the cast.  */
1410   *expr_p = build4 (ARRAY_REF, dctype, obj_expr,
1411                     TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1412                     TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1413                     size_binop (EXACT_DIV_EXPR, TYPE_SIZE_UNIT (dctype),
1414                                 size_int (TYPE_ALIGN (dctype)
1415                                           / BITS_PER_UNIT)));
1416   *expr_p = build1 (ADDR_EXPR, ctype, *expr_p);
1417 }
1418
1419 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR.  Remove it and/or other conversions
1420    underneath as appropriate.  */
1421
1422 static enum gimplify_status
1423 gimplify_conversion (tree *expr_p)
1424 {  
1425   /* Strip away as many useless type conversions as possible
1426      at the toplevel.  */
1427   STRIP_USELESS_TYPE_CONVERSION (*expr_p);
1428
1429   /* If we still have a conversion at the toplevel, then strip
1430      away all but the outermost conversion.  */
1431   if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1432     {
1433       STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1434
1435       /* And remove the outermost conversion if it's useless.  */
1436       if (tree_ssa_useless_type_conversion (*expr_p))
1437         *expr_p = TREE_OPERAND (*expr_p, 0);
1438     }
1439
1440   /* If we still have a conversion at the toplevel,
1441      then canonicalize some constructs.  */
1442   if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1443     {
1444       tree sub = TREE_OPERAND (*expr_p, 0);
1445
1446       /* If a NOP conversion is changing the type of a COMPONENT_REF
1447          expression, then canonicalize its type now in order to expose more
1448          redundant conversions.  */
1449       if (TREE_CODE (sub) == COMPONENT_REF)
1450         canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1451
1452       /* If a NOP conversion is changing a pointer to array of foo
1453          to a pointer to foo, embed that change in the ADDR_EXPR.  */
1454       else if (TREE_CODE (sub) == ADDR_EXPR)
1455         canonicalize_addr_expr (expr_p);
1456     }
1457
1458   return GS_OK;
1459 }
1460
1461 /* Reduce MIN/MAX_EXPR to a COND_EXPR for further gimplification.  */
1462
1463 static enum gimplify_status
1464 gimplify_minimax_expr (tree *expr_p, tree *pre_p, tree *post_p)
1465 {
1466   tree op1 = TREE_OPERAND (*expr_p, 0);
1467   tree op2 = TREE_OPERAND (*expr_p, 1);
1468   enum tree_code code;
1469   enum gimplify_status r0, r1;
1470
1471   if (TREE_CODE (*expr_p) == MIN_EXPR)
1472     code = LE_EXPR;
1473   else
1474     code = GE_EXPR;
1475
1476   r0 = gimplify_expr (&op1, pre_p, post_p, is_gimple_val, fb_rvalue);
1477   r1 = gimplify_expr (&op2, pre_p, post_p, is_gimple_val, fb_rvalue);
1478
1479   *expr_p = build (COND_EXPR, TREE_TYPE (*expr_p),
1480                    build (code, boolean_type_node, op1, op2),
1481                    op1, op2);
1482
1483   if (r0 == GS_ERROR || r1 == GS_ERROR)
1484     return GS_ERROR;
1485   else
1486     return GS_OK;
1487 }
1488
1489 /* Subroutine of gimplify_compound_lval.
1490    Converts an ARRAY_REF to the equivalent *(&array + offset) form.  */
1491
1492 static enum gimplify_status
1493 gimplify_array_ref_to_plus (tree *expr_p, tree *pre_p, tree *post_p)
1494 {
1495   tree array = TREE_OPERAND (*expr_p, 0);
1496   tree arrtype = TREE_TYPE (array);
1497   tree elttype = TREE_TYPE (arrtype);
1498   tree size = array_ref_element_size (*expr_p);
1499   tree ptrtype = build_pointer_type (elttype);
1500   enum tree_code add_code = PLUS_EXPR;
1501   tree idx = TREE_OPERAND (*expr_p, 1);
1502   tree minidx = unshare_expr (array_ref_low_bound (*expr_p));
1503   tree offset, addr, result;
1504   enum gimplify_status ret;
1505
1506   /* If the array domain does not start at zero, apply the offset.  */
1507   if (!integer_zerop (minidx))
1508     {
1509       idx = convert (TREE_TYPE (minidx), idx);
1510       idx = fold (build (MINUS_EXPR, TREE_TYPE (minidx), idx, minidx));
1511     }
1512   
1513   /* If the index is negative -- a technically invalid situation now
1514      that we've biased the index back to zero -- then casting it to
1515      unsigned has ill effects.  In particular, -1*4U/4U != -1.
1516      Represent this as a subtraction of a positive rather than addition
1517      of a negative.  This will prevent any conversion back to ARRAY_REF
1518      from getting the wrong results from the division.  */
1519   if (TREE_CODE (idx) == INTEGER_CST && tree_int_cst_sgn (idx) < 0)
1520     {
1521       idx = fold (build1 (NEGATE_EXPR, TREE_TYPE (idx), idx));
1522       add_code = MINUS_EXPR;
1523     }
1524
1525   /* Pointer arithmetic must be done in sizetype.  */
1526   idx = fold_convert (sizetype, idx);
1527
1528   /* Convert the index to a byte offset.  */
1529   offset = size_binop (MULT_EXPR, size, idx);
1530
1531   ret = gimplify_expr (&array, pre_p, post_p, is_gimple_min_lval, fb_lvalue);
1532   if (ret == GS_ERROR)
1533     return ret;
1534
1535   addr = build_fold_addr_expr_with_type (array, ptrtype);
1536   result = fold (build (add_code, ptrtype, addr, offset));
1537   *expr_p = build1 (INDIRECT_REF, elttype, result);
1538
1539   return GS_OK;
1540 }
1541
1542 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1543    node pointed by EXPR_P.
1544
1545       compound_lval
1546               : min_lval '[' val ']'
1547               | min_lval '.' ID
1548               | compound_lval '[' val ']'
1549               | compound_lval '.' ID
1550
1551    This is not part of the original SIMPLE definition, which separates
1552    array and member references, but it seems reasonable to handle them
1553    together.  Also, this way we don't run into problems with union
1554    aliasing; gcc requires that for accesses through a union to alias, the
1555    union reference must be explicit, which was not always the case when we
1556    were splitting up array and member refs.
1557
1558    PRE_P points to the list where side effects that must happen before
1559      *EXPR_P should be stored.
1560
1561    POST_P points to the list where side effects that must happen after
1562      *EXPR_P should be stored.  */
1563
1564 static enum gimplify_status
1565 gimplify_compound_lval (tree *expr_p, tree *pre_p,
1566                         tree *post_p, fallback_t fallback)
1567 {
1568   tree *p;
1569   varray_type stack;
1570   enum gimplify_status ret = GS_OK, tret;
1571   int i;
1572
1573 #if defined ENABLE_CHECKING
1574   if (TREE_CODE (*expr_p) != ARRAY_REF
1575       && TREE_CODE (*expr_p) != ARRAY_RANGE_REF
1576       && TREE_CODE (*expr_p) != COMPONENT_REF
1577       && TREE_CODE (*expr_p) != BIT_FIELD_REF
1578       && TREE_CODE (*expr_p) != REALPART_EXPR
1579       && TREE_CODE (*expr_p) != IMAGPART_EXPR)
1580     abort ();
1581 #endif
1582
1583   /* Create a stack of the subexpressions so later we can walk them in
1584      order from inner to outer.  */
1585   VARRAY_TREE_INIT (stack, 10, "stack");
1586
1587   /* We can either handle REALPART_EXPR, IMAGEPART_EXPR anything that
1588      handled_components can deal with.  */
1589   for (p = expr_p;
1590        (handled_component_p (*p)
1591         || TREE_CODE (*p) == REALPART_EXPR || TREE_CODE (*p) == IMAGPART_EXPR);
1592        p = &TREE_OPERAND (*p, 0))
1593     VARRAY_PUSH_TREE (stack, *p);
1594
1595   /* Now STACK is a stack of pointers to all the refs we've walked through
1596      and P points to the innermost expression.
1597
1598      Java requires that we elaborated nodes in source order.  That
1599      means we must gimplify the inner expression followed by each of
1600      the indices, in order.  But we can't gimplify the inner
1601      expression until we deal with any variable bounds, sizes, or
1602      positions in order to deal with PLACEHOLDER_EXPRs.
1603
1604      So we do this in three steps.  First we deal with the annotations
1605      for any variables in the components, then we gimplify the base,
1606      then we gimplify any indices, from left to right.  */
1607   for (i = VARRAY_ACTIVE_SIZE (stack) - 1; i >= 0; i--)
1608     {
1609       tree t = VARRAY_TREE (stack, i);
1610
1611       if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1612         {
1613           /* Gimplify the low bound and element type size and put them into
1614              the ARRAY_REF.  If these values are set, they have already been
1615              gimplified.  */
1616           if (!TREE_OPERAND (t, 2))
1617             {
1618               tree low = unshare_expr (array_ref_low_bound (t));
1619               if (!is_gimple_min_invariant (low))
1620                 {
1621                   TREE_OPERAND (t, 2) = low;
1622                   tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1623                                         is_gimple_tmp_var, fb_rvalue);
1624                   ret = MIN (ret, tret);
1625                 }
1626             }
1627
1628           if (!TREE_OPERAND (t, 3))
1629             {
1630               tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
1631               tree elmt_size = unshare_expr (array_ref_element_size (t));
1632               tree factor = size_int (TYPE_ALIGN (elmt_type) / BITS_PER_UNIT);
1633
1634               /* Divide the element size by the alignment of the element
1635                  type (above).  */
1636               elmt_size = size_binop (EXACT_DIV_EXPR, elmt_size, factor);
1637
1638               if (!is_gimple_min_invariant (elmt_size))
1639                 {
1640                   TREE_OPERAND (t, 3) = elmt_size;
1641                   tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
1642                                         is_gimple_tmp_var, fb_rvalue);
1643                   ret = MIN (ret, tret);
1644                 }
1645             }
1646         }
1647       else if (TREE_CODE (t) == COMPONENT_REF)
1648         {
1649           /* Set the field offset into T and gimplify it.  */
1650           if (!TREE_OPERAND (t, 2))
1651             {
1652               tree offset = unshare_expr (component_ref_field_offset (t));
1653               tree field = TREE_OPERAND (t, 1);
1654               tree factor
1655                 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
1656
1657               /* Divide the offset by its alignment.  */
1658               offset = size_binop (EXACT_DIV_EXPR, offset, factor);
1659
1660               if (!is_gimple_min_invariant (offset))
1661                 {
1662                   TREE_OPERAND (t, 2) = offset;
1663                   tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1664                                         is_gimple_tmp_var, fb_rvalue);
1665                   ret = MIN (ret, tret);
1666                 }
1667             }
1668         }
1669     }
1670
1671   /* Step 2 is to gimplify the base expression.  */
1672   tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1673   ret = MIN (ret, tret);
1674
1675   /* And finally, the indices and operands to BIT_FIELD_REF.  */
1676   for (; VARRAY_ACTIVE_SIZE (stack) > 0; )
1677     {
1678       tree t = VARRAY_TOP_TREE (stack);
1679
1680       if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1681         {
1682           /* Gimplify the dimension.
1683              Temporary fix for gcc.c-torture/execute/20040313-1.c.
1684              Gimplify non-constant array indices into a temporary
1685              variable.
1686              FIXME - The real fix is to gimplify post-modify
1687              expressions into a minimal gimple lvalue.  However, that
1688              exposes bugs in alias analysis.  The alias analyzer does
1689              not handle &PTR->FIELD very well.  Will fix after the
1690              branch is merged into mainline (dnovillo 2004-05-03).  */
1691           if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
1692             {
1693               tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1694                                     is_gimple_tmp_var, fb_rvalue);
1695               ret = MIN (ret, tret);
1696             }
1697         }
1698       else if (TREE_CODE (t) == BIT_FIELD_REF)
1699         {
1700           tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1701                                 is_gimple_val, fb_rvalue);
1702           ret = MIN (ret, tret);
1703           tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1704                                 is_gimple_val, fb_rvalue);
1705           ret = MIN (ret, tret);
1706         }
1707           
1708       /* The innermost expression P may have originally had TREE_SIDE_EFFECTS
1709          set which would have caused all the outer expressions in EXPR_P
1710          leading to P to also have had TREE_SIDE_EFFECTS set.  */
1711       recalculate_side_effects (t);
1712       VARRAY_POP (stack);
1713     }
1714
1715   tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1716   ret = MIN (ret, tret);
1717
1718   /* If the outermost expression is a COMPONENT_REF, canonicalize its type.  */
1719   if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
1720     {
1721       canonicalize_component_ref (expr_p);
1722       ret = MIN (ret, GS_OK);
1723     }
1724
1725   return ret;
1726 }
1727
1728 /*  Gimplify the self modifying expression pointed by EXPR_P (++, --, +=, -=).
1729
1730     PRE_P points to the list where side effects that must happen before
1731         *EXPR_P should be stored.
1732
1733     POST_P points to the list where side effects that must happen after
1734         *EXPR_P should be stored.
1735
1736     WANT_VALUE is nonzero iff we want to use the value of this expression
1737         in another expression.  */
1738
1739 static enum gimplify_status
1740 gimplify_self_mod_expr (tree *expr_p, tree *pre_p, tree *post_p,
1741                         bool want_value)
1742 {
1743   enum tree_code code;
1744   tree lhs, lvalue, rhs, t1;
1745   bool postfix;
1746   enum tree_code arith_code;
1747   enum gimplify_status ret;
1748
1749   code = TREE_CODE (*expr_p);
1750
1751 #if defined ENABLE_CHECKING
1752   if (code != POSTINCREMENT_EXPR
1753       && code != POSTDECREMENT_EXPR
1754       && code != PREINCREMENT_EXPR
1755       && code != PREDECREMENT_EXPR)
1756     abort ();
1757 #endif
1758
1759   /* Prefix or postfix?  */
1760   if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
1761     /* Faster to treat as prefix if result is not used.  */
1762     postfix = want_value;
1763   else
1764     postfix = false;
1765
1766   /* Add or subtract?  */
1767   if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
1768     arith_code = PLUS_EXPR;
1769   else
1770     arith_code = MINUS_EXPR;
1771
1772   /* Gimplify the LHS into a GIMPLE lvalue.  */
1773   lvalue = TREE_OPERAND (*expr_p, 0);
1774   ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1775   if (ret == GS_ERROR)
1776     return ret;
1777
1778   /* Extract the operands to the arithmetic operation.  */
1779   lhs = lvalue;
1780   rhs = TREE_OPERAND (*expr_p, 1);
1781
1782   /* For postfix operator, we evaluate the LHS to an rvalue and then use
1783      that as the result value and in the postqueue operation.  */
1784   if (postfix)
1785     {
1786       ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
1787       if (ret == GS_ERROR)
1788         return ret;
1789     }
1790
1791   t1 = build (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
1792   t1 = build (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
1793
1794   if (postfix)
1795     {
1796       gimplify_and_add (t1, post_p);
1797       *expr_p = lhs;
1798       return GS_ALL_DONE;
1799     }
1800   else
1801     {
1802       *expr_p = t1;
1803       return GS_OK;
1804     }
1805 }
1806
1807 /* Gimplify the CALL_EXPR node pointed by EXPR_P.  PRE_P points to the
1808    list where side effects that must happen before *EXPR_P should be stored.
1809    WANT_VALUE is true if the result of the call is desired.  */
1810
1811 static enum gimplify_status
1812 gimplify_call_expr (tree *expr_p, tree *pre_p, bool want_value)
1813 {
1814   tree decl;
1815   tree arglist;
1816   enum gimplify_status ret;
1817
1818 #if defined ENABLE_CHECKING
1819   if (TREE_CODE (*expr_p) != CALL_EXPR)
1820     abort ();
1821 #endif
1822
1823   /* For reliable diagnostics during inlining, it is necessary that 
1824      every call_expr be annotated with file and line.  */
1825   if (! EXPR_HAS_LOCATION (*expr_p))
1826     SET_EXPR_LOCATION (*expr_p, input_location);
1827
1828   /* This may be a call to a builtin function.
1829
1830      Builtin function calls may be transformed into different
1831      (and more efficient) builtin function calls under certain
1832      circumstances.  Unfortunately, gimplification can muck things
1833      up enough that the builtin expanders are not aware that certain
1834      transformations are still valid.
1835
1836      So we attempt transformation/gimplification of the call before
1837      we gimplify the CALL_EXPR.  At this time we do not manage to
1838      transform all calls in the same manner as the expanders do, but
1839      we do transform most of them.  */
1840   decl = get_callee_fndecl (*expr_p);
1841   if (decl && DECL_BUILT_IN (decl))
1842     {
1843       tree new;
1844
1845       /* If it is allocation of stack, record the need to restore the memory
1846          when the enclosing bind_expr is exited.  */
1847       if (DECL_FUNCTION_CODE (decl) == BUILT_IN_STACK_ALLOC)
1848         gimplify_ctxp->save_stack = true;
1849
1850       /* If it is restore of the stack, reset it, since it means we are
1851          regimplifying the bind_expr.  Note that we use the fact that
1852          for try_finally_expr, try part is processed first.  */
1853       if (DECL_FUNCTION_CODE (decl) == BUILT_IN_STACK_RESTORE)
1854         gimplify_ctxp->save_stack = false;
1855
1856       new = simplify_builtin (*expr_p, !want_value);
1857
1858       if (new && new != *expr_p)
1859         {
1860           /* There was a transformation of this call which computes the
1861              same value, but in a more efficient way.  Return and try
1862              again.  */
1863           *expr_p = new;
1864           return GS_OK;
1865         }
1866     }
1867
1868   /* There is a sequence point before the call, so any side effects in
1869      the calling expression must occur before the actual call.  Force
1870      gimplify_expr to use an internal post queue.  */
1871   ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, NULL,
1872                        is_gimple_call_addr, fb_rvalue);
1873
1874   if (PUSH_ARGS_REVERSED)
1875     TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
1876   for (arglist = TREE_OPERAND (*expr_p, 1); arglist;
1877        arglist = TREE_CHAIN (arglist))
1878     {
1879       enum gimplify_status t;
1880       bool (*test) (tree);
1881       fallback_t fb;
1882
1883       /* In general, we allow lvalues for function arguments to avoid
1884          extra overhead of copying large aggregates out of even larger
1885          aggregates into temporaries only to copy the temporaries to
1886          the argument list.  Make optimizers happy by pulling out to
1887          temporaries those types that fit in registers.  */
1888       if (is_gimple_reg_type (TREE_TYPE (TREE_VALUE (arglist))))
1889         test = is_gimple_val, fb = fb_rvalue;
1890       else
1891         test = is_gimple_lvalue, fb = fb_either;
1892
1893       /* There is a sequence point before a function call.  Side effects in
1894          the argument list must occur before the actual call. So, when
1895          gimplifying arguments, force gimplify_expr to use an internal
1896          post queue which is then appended to the end of PRE_P.  */
1897       t = gimplify_expr (&TREE_VALUE (arglist), pre_p, NULL, test, fb);
1898
1899       if (t == GS_ERROR)
1900         ret = GS_ERROR;
1901     }
1902   if (PUSH_ARGS_REVERSED)
1903     TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
1904
1905   /* Try this again in case gimplification exposed something.  */
1906   if (ret != GS_ERROR && decl && DECL_BUILT_IN (decl))
1907     {
1908       tree new = simplify_builtin (*expr_p, !want_value);
1909
1910       if (new && new != *expr_p)
1911         {
1912           /* There was a transformation of this call which computes the
1913              same value, but in a more efficient way.  Return and try
1914              again.  */
1915           *expr_p = new;
1916           return GS_OK;
1917         }
1918     }
1919
1920   /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
1921      decl.  This allows us to eliminate redundant or useless
1922      calls to "const" functions.  */
1923   if (TREE_CODE (*expr_p) == CALL_EXPR
1924       && (call_expr_flags (*expr_p) & (ECF_CONST | ECF_PURE)))
1925     TREE_SIDE_EFFECTS (*expr_p) = 0;
1926
1927   return ret;
1928 }
1929
1930 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
1931    rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
1932
1933    TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
1934    condition is true or false, respectively.  If null, we should generate
1935    our own to skip over the evaluation of this specific expression.
1936
1937    This function is the tree equivalent of do_jump.
1938
1939    shortcut_cond_r should only be called by shortcut_cond_expr.  */
1940
1941 static tree
1942 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p)
1943 {
1944   tree local_label = NULL_TREE;
1945   tree t, expr = NULL;
1946
1947   /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
1948      retain the shortcut semantics.  Just insert the gotos here;
1949      shortcut_cond_expr will append the real blocks later.  */
1950   if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
1951     {
1952       /* Turn if (a && b) into
1953
1954          if (a); else goto no;
1955          if (b) goto yes; else goto no;
1956          (no:) */
1957
1958       if (false_label_p == NULL)
1959         false_label_p = &local_label;
1960
1961       t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p);
1962       append_to_statement_list (t, &expr);
1963
1964       t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1965                            false_label_p);
1966       append_to_statement_list (t, &expr);
1967     }
1968   else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
1969     {
1970       /* Turn if (a || b) into
1971
1972          if (a) goto yes;
1973          if (b) goto yes; else goto no;
1974          (yes:) */
1975
1976       if (true_label_p == NULL)
1977         true_label_p = &local_label;
1978
1979       t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL);
1980       append_to_statement_list (t, &expr);
1981
1982       t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1983                            false_label_p);
1984       append_to_statement_list (t, &expr);
1985     }
1986   else if (TREE_CODE (pred) == COND_EXPR)
1987     {
1988       /* As long as we're messing with gotos, turn if (a ? b : c) into
1989          if (a)
1990            if (b) goto yes; else goto no;
1991          else
1992            if (c) goto yes; else goto no;  */
1993       expr = build (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
1994                     shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1995                                      false_label_p),
1996                     shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
1997                                      false_label_p));
1998     }
1999   else
2000     {
2001       expr = build (COND_EXPR, void_type_node, pred,
2002                     build_and_jump (true_label_p),
2003                     build_and_jump (false_label_p));
2004     }
2005
2006   if (local_label)
2007     {
2008       t = build1 (LABEL_EXPR, void_type_node, local_label);
2009       append_to_statement_list (t, &expr);
2010     }
2011
2012   return expr;
2013 }
2014
2015 static tree
2016 shortcut_cond_expr (tree expr)
2017 {
2018   tree pred = TREE_OPERAND (expr, 0);
2019   tree then_ = TREE_OPERAND (expr, 1);
2020   tree else_ = TREE_OPERAND (expr, 2);
2021   tree true_label, false_label, end_label, t;
2022   tree *true_label_p;
2023   tree *false_label_p;
2024   bool emit_end, emit_false;
2025   bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2026   bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2027
2028   /* First do simple transformations.  */
2029   if (!else_se)
2030     {
2031       /* If there is no 'else', turn (a && b) into if (a) if (b).  */
2032       while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2033         {
2034           TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2035           then_ = shortcut_cond_expr (expr);
2036           pred = TREE_OPERAND (pred, 0);
2037           expr = build (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2038         }
2039     }
2040   if (!then_se)
2041     {
2042       /* If there is no 'then', turn
2043            if (a || b); else d
2044          into
2045            if (a); else if (b); else d.  */
2046       while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2047         {
2048           TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2049           else_ = shortcut_cond_expr (expr);
2050           pred = TREE_OPERAND (pred, 0);
2051           expr = build (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2052         }
2053     }
2054
2055   /* If we're done, great.  */
2056   if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2057       && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2058     return expr;
2059
2060   /* Otherwise we need to mess with gotos.  Change
2061        if (a) c; else d;
2062      to
2063        if (a); else goto no;
2064        c; goto end;
2065        no: d; end:
2066      and recursively gimplify the condition.  */
2067
2068   true_label = false_label = end_label = NULL_TREE;
2069
2070   /* If our arms just jump somewhere, hijack those labels so we don't
2071      generate jumps to jumps.  */
2072
2073   if (then_
2074       && TREE_CODE (then_) == GOTO_EXPR
2075       && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2076     {
2077       true_label = GOTO_DESTINATION (then_);
2078       then_ = NULL;
2079       then_se = false;
2080     }
2081
2082   if (else_
2083       && TREE_CODE (else_) == GOTO_EXPR
2084       && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2085     {
2086       false_label = GOTO_DESTINATION (else_);
2087       else_ = NULL;
2088       else_se = false;
2089     }
2090
2091   /* If we aren't hijacking a label for the 'then' branch, it falls through.  */
2092   if (true_label)
2093     true_label_p = &true_label;
2094   else
2095     true_label_p = NULL;
2096
2097   /* The 'else' branch also needs a label if it contains interesting code.  */
2098   if (false_label || else_se)
2099     false_label_p = &false_label;
2100   else
2101     false_label_p = NULL;
2102
2103   /* If there was nothing else in our arms, just forward the label(s).  */
2104   if (!then_se && !else_se)
2105     return shortcut_cond_r (pred, true_label_p, false_label_p);
2106
2107   /* If our last subexpression already has a terminal label, reuse it.  */
2108   if (else_se)
2109     expr = expr_last (else_);
2110   else if (then_se)
2111     expr = expr_last (then_);
2112   else
2113     expr = NULL;
2114   if (expr && TREE_CODE (expr) == LABEL_EXPR)
2115     end_label = LABEL_EXPR_LABEL (expr);
2116
2117   /* If we don't care about jumping to the 'else' branch, jump to the end
2118      if the condition is false.  */
2119   if (!false_label_p)
2120     false_label_p = &end_label;
2121
2122   /* We only want to emit these labels if we aren't hijacking them.  */
2123   emit_end = (end_label == NULL_TREE);
2124   emit_false = (false_label == NULL_TREE);
2125
2126   pred = shortcut_cond_r (pred, true_label_p, false_label_p);
2127
2128   expr = NULL;
2129   append_to_statement_list (pred, &expr);
2130
2131   append_to_statement_list (then_, &expr);
2132   if (else_se)
2133     {
2134       t = build_and_jump (&end_label);
2135       append_to_statement_list (t, &expr);
2136       if (emit_false)
2137         {
2138           t = build1 (LABEL_EXPR, void_type_node, false_label);
2139           append_to_statement_list (t, &expr);
2140         }
2141       append_to_statement_list (else_, &expr);
2142     }
2143   if (emit_end && end_label)
2144     {
2145       t = build1 (LABEL_EXPR, void_type_node, end_label);
2146       append_to_statement_list (t, &expr);
2147     }
2148
2149   return expr;
2150 }
2151
2152 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE.  */
2153
2154 static tree
2155 gimple_boolify (tree expr)
2156 {
2157   tree type = TREE_TYPE (expr);
2158
2159   if (TREE_CODE (type) == BOOLEAN_TYPE)
2160     return expr;
2161
2162   /* If this is the predicate of a COND_EXPR, it might not even be a
2163      truthvalue yet.  */
2164   expr = lang_hooks.truthvalue_conversion (expr);
2165
2166   switch (TREE_CODE (expr))
2167     {
2168     case TRUTH_AND_EXPR:
2169     case TRUTH_OR_EXPR:
2170     case TRUTH_XOR_EXPR:
2171     case TRUTH_ANDIF_EXPR:
2172     case TRUTH_ORIF_EXPR:
2173       /* Also boolify the arguments of truth exprs.  */
2174       TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2175       /* FALLTHRU */
2176
2177     case TRUTH_NOT_EXPR:
2178       TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2179       /* FALLTHRU */
2180
2181     case EQ_EXPR: case NE_EXPR:
2182     case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2183       /* These expressions always produce boolean results.  */
2184       TREE_TYPE (expr) = boolean_type_node;
2185       return expr;
2186       
2187     default:
2188       /* Other expressions that get here must have boolean values, but
2189          might need to be converted to the appropriate mode.  */
2190       return convert (boolean_type_node, expr);
2191     }
2192 }
2193
2194 /*  Convert the conditional expression pointed by EXPR_P '(p) ? a : b;'
2195     into
2196
2197     if (p)                      if (p)
2198       t1 = a;                     a;
2199     else                or      else
2200       t1 = b;                     b;
2201     t1;
2202
2203     The second form is used when *EXPR_P is of type void.
2204
2205     TARGET is the tree for T1 above.
2206
2207     PRE_P points to the list where side effects that must happen before
2208         *EXPR_P should be stored.  */
2209
2210 static enum gimplify_status
2211 gimplify_cond_expr (tree *expr_p, tree *pre_p, tree target)
2212 {
2213   tree expr = *expr_p;
2214   tree tmp, type;
2215   enum gimplify_status ret;
2216
2217   type = TREE_TYPE (expr);
2218   if (!type)
2219     TREE_TYPE (expr) = void_type_node;
2220
2221   /* If this COND_EXPR has a value, copy the values into a temporary within
2222      the arms.  */
2223   else if (! VOID_TYPE_P (type))
2224     {
2225       if (target)
2226         {
2227           tmp = target;
2228           ret = GS_OK;
2229         }
2230       else
2231         {
2232           tmp = create_tmp_var (TREE_TYPE (expr), "iftmp");
2233           ret = GS_ALL_DONE;
2234         }
2235
2236       /* Build the then clause, 't1 = a;'.  But don't build an assignment
2237          if this branch is void; in C++ it can be, if it's a throw.  */
2238       if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2239         TREE_OPERAND (expr, 1)
2240           = build (MODIFY_EXPR, void_type_node, tmp, TREE_OPERAND (expr, 1));
2241
2242       /* Build the else clause, 't1 = b;'.  */
2243       if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2244         TREE_OPERAND (expr, 2)
2245           = build (MODIFY_EXPR, void_type_node, tmp, TREE_OPERAND (expr, 2));
2246
2247       TREE_TYPE (expr) = void_type_node;
2248       recalculate_side_effects (expr);
2249
2250       /* Move the COND_EXPR to the prequeue and use the temp in its place.  */
2251       gimplify_and_add (expr, pre_p);
2252       *expr_p = tmp;
2253
2254       return ret;
2255     }
2256
2257   /* Make sure the condition has BOOLEAN_TYPE.  */
2258   TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2259
2260   /* Break apart && and || conditions.  */
2261   if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
2262       || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
2263     {
2264       expr = shortcut_cond_expr (expr);
2265
2266       if (expr != *expr_p)
2267         {
2268           *expr_p = expr;
2269
2270           /* We can't rely on gimplify_expr to re-gimplify the expanded
2271              form properly, as cleanups might cause the target labels to be
2272              wrapped in a TRY_FINALLY_EXPR.  To prevent that, we need to
2273              set up a conditional context.  */
2274           gimple_push_condition ();
2275           gimplify_stmt (expr_p);
2276           gimple_pop_condition (pre_p);
2277
2278           return GS_ALL_DONE;
2279         }
2280     }
2281
2282   /* Now do the normal gimplification.  */
2283   ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2284                        is_gimple_condexpr, fb_rvalue);
2285
2286   gimple_push_condition ();
2287
2288   gimplify_to_stmt_list (&TREE_OPERAND (expr, 1));
2289   gimplify_to_stmt_list (&TREE_OPERAND (expr, 2));
2290   recalculate_side_effects (expr);
2291
2292   gimple_pop_condition (pre_p);
2293
2294   if (ret == GS_ERROR)
2295     ;
2296   else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2297     ret = GS_ALL_DONE;
2298   else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 2)))
2299     /* Rewrite "if (a); else b" to "if (!a) b"  */
2300     {
2301       TREE_OPERAND (expr, 0) = invert_truthvalue (TREE_OPERAND (expr, 0));
2302       ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2303                            is_gimple_condexpr, fb_rvalue);
2304
2305       tmp = TREE_OPERAND (expr, 1);
2306       TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 2);
2307       TREE_OPERAND (expr, 2) = tmp;
2308     }
2309   else
2310     /* Both arms are empty; replace the COND_EXPR with its predicate.  */
2311     expr = TREE_OPERAND (expr, 0);
2312
2313   *expr_p = expr;
2314   return ret;
2315 }
2316
2317 /* A subroutine of gimplify_modify_expr.  Replace a MODIFY_EXPR with
2318    a call to __builtin_memcpy.  */
2319
2320 static enum gimplify_status
2321 gimplify_modify_expr_to_memcpy (tree *expr_p, bool want_value)
2322 {
2323   tree args, t, to, to_ptr, from;
2324
2325   to = TREE_OPERAND (*expr_p, 0);
2326   from = TREE_OPERAND (*expr_p, 1);
2327
2328   t = TYPE_SIZE_UNIT (TREE_TYPE (to));
2329   t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, to);
2330   t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, from);
2331   t = unshare_expr (t);
2332   args = tree_cons (NULL, t, NULL);
2333
2334   t = build_fold_addr_expr (from);
2335   args = tree_cons (NULL, t, args);
2336
2337   to_ptr = build_fold_addr_expr (to);
2338   args = tree_cons (NULL, to_ptr, args);
2339   t = implicit_built_in_decls[BUILT_IN_MEMCPY];
2340   t = build_function_call_expr (t, args);
2341
2342   if (want_value)
2343     {
2344       t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2345       t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2346     }
2347
2348   *expr_p = t;
2349   return GS_OK;
2350 }
2351
2352 /* A subroutine of gimplify_modify_expr.  Replace a MODIFY_EXPR with
2353    a call to __builtin_memset.  In this case we know that the RHS is
2354    a CONSTRUCTOR with an empty element list.  */
2355
2356 static enum gimplify_status
2357 gimplify_modify_expr_to_memset (tree *expr_p, bool want_value)
2358 {
2359   tree args, t, to, to_ptr;
2360
2361   to = TREE_OPERAND (*expr_p, 0);
2362
2363   t = TYPE_SIZE_UNIT (TREE_TYPE (to));
2364   t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, to);
2365   t = unshare_expr (t);
2366   args = tree_cons (NULL, t, NULL);
2367
2368   args = tree_cons (NULL, integer_zero_node, args);
2369
2370   to_ptr = build_fold_addr_expr (to);
2371   args = tree_cons (NULL, to, args);
2372   t = implicit_built_in_decls[BUILT_IN_MEMSET];
2373   t = build_function_call_expr (t, args);
2374
2375   if (want_value)
2376     {
2377       t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2378       t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2379     }
2380
2381   *expr_p = t;
2382   return GS_OK;
2383 }
2384
2385 /* A subroutine of gimplify_modify_expr.  Break out elements of a
2386    CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
2387
2388    Note that we still need to clear any elements that don't have explicit
2389    initializers, so if not all elements are initialized we keep the
2390    original MODIFY_EXPR, we just remove all of the constructor elements.  */
2391
2392 static enum gimplify_status
2393 gimplify_init_constructor (tree *expr_p, tree *pre_p,
2394                            tree *post_p, bool want_value)
2395 {
2396   tree object = TREE_OPERAND (*expr_p, 0);
2397   tree ctor = TREE_OPERAND (*expr_p, 1);
2398   tree type = TREE_TYPE (ctor);
2399   enum gimplify_status ret;
2400   tree elt_list;
2401
2402   if (TREE_CODE (ctor) != CONSTRUCTOR)
2403     return GS_UNHANDLED;
2404
2405   elt_list = CONSTRUCTOR_ELTS (ctor);
2406
2407   ret = GS_ALL_DONE;
2408   switch (TREE_CODE (type))
2409     {
2410     case RECORD_TYPE:
2411     case UNION_TYPE:
2412     case QUAL_UNION_TYPE:
2413     case ARRAY_TYPE:
2414       {
2415         HOST_WIDE_INT i, num_elements, num_nonzero_elements;
2416         HOST_WIDE_INT num_nonconstant_elements;
2417         bool cleared;
2418
2419         /* Aggregate types must lower constructors to initialization of
2420            individual elements.  The exception is that a CONSTRUCTOR node
2421            with no elements indicates zero-initialization of the whole.  */
2422         if (elt_list == NULL)
2423           {
2424             if (want_value)
2425               {
2426                 *expr_p = object;
2427                 return GS_OK;
2428               }
2429             else
2430               return GS_UNHANDLED;
2431           }
2432
2433         categorize_ctor_elements (ctor, &num_nonzero_elements,
2434                                   &num_nonconstant_elements);
2435         num_elements = count_type_elements (TREE_TYPE (ctor));
2436
2437         /* If a const aggregate variable is being initialized, then it
2438            should never be a lose to promote the variable to be static.  */
2439         if (num_nonconstant_elements == 0
2440             && TREE_READONLY (object)
2441             && TREE_CODE (object) == VAR_DECL)
2442           {
2443             DECL_INITIAL (object) = ctor;
2444             TREE_STATIC (object) = 1;
2445             if (!DECL_NAME (object))
2446               DECL_NAME (object) = create_tmp_var_name ("C");
2447             walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
2448
2449             /* ??? C++ doesn't automatically append a .<number> to the
2450                assembler name, and even when it does, it looks a FE private
2451                data structures to figure out what that number should be,
2452                which are not set for this variable.  I suppose this is
2453                important for local statics for inline functions, which aren't
2454                "local" in the object file sense.  So in order to get a unique
2455                TU-local symbol, we must invoke the lhd version now.  */
2456             lhd_set_decl_assembler_name (object);
2457
2458             *expr_p = NULL_TREE;
2459             break;
2460           }
2461
2462         /* If there are "lots" of initialized elements, and all of them
2463            are valid address constants, then the entire initializer can
2464            be dropped to memory, and then memcpy'd out.  */
2465         if (num_nonconstant_elements == 0)
2466           {
2467             HOST_WIDE_INT size = int_size_in_bytes (type);
2468             unsigned int align;
2469
2470             /* ??? We can still get unbounded array types, at least
2471                from the C++ front end.  This seems wrong, but attempt
2472                to work around it for now.  */
2473             if (size < 0)
2474               {
2475                 size = int_size_in_bytes (TREE_TYPE (object));
2476                 if (size >= 0)
2477                   TREE_TYPE (ctor) = type = TREE_TYPE (object);
2478               }
2479
2480             /* Find the maximum alignment we can assume for the object.  */
2481             /* ??? Make use of DECL_OFFSET_ALIGN.  */
2482             if (DECL_P (object))
2483               align = DECL_ALIGN (object);
2484             else
2485               align = TYPE_ALIGN (type);
2486
2487             if (size > 0 && !can_move_by_pieces (size, align))
2488               {
2489                 tree new = create_tmp_var_raw (type, "C");
2490                 gimple_add_tmp_var (new);
2491                 TREE_STATIC (new) = 1;
2492                 TREE_READONLY (new) = 1;
2493                 DECL_INITIAL (new) = ctor;
2494                 if (align > DECL_ALIGN (new))
2495                   {
2496                     DECL_ALIGN (new) = align;
2497                     DECL_USER_ALIGN (new) = 1;
2498                   }
2499                 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
2500
2501                 TREE_OPERAND (*expr_p, 1) = new;
2502                 break;
2503               }
2504           }
2505
2506         /* If there are "lots" of initialized elements, even discounting
2507            those that are not address constants (and thus *must* be 
2508            computed at runtime), then partition the constructor into
2509            constant and non-constant parts.  Block copy the constant
2510            parts in, then generate code for the non-constant parts.  */
2511         /* TODO.  There's code in cp/typeck.c to do this.  */
2512
2513         /* If there are "lots" of zeros, then block clear the object first.  */
2514         cleared = false;
2515         if (num_elements - num_nonzero_elements > CLEAR_RATIO
2516             && num_nonzero_elements < num_elements/4)
2517           cleared = true;
2518
2519         /* ??? This bit ought not be needed.  For any element not present
2520            in the initializer, we should simply set them to zero.  Except
2521            we'd need to *find* the elements that are not present, and that
2522            requires trickery to avoid quadratic compile-time behavior in
2523            large cases or excessive memory use in small cases.  */
2524         else
2525           {
2526             HOST_WIDE_INT len = list_length (elt_list);
2527             if (TREE_CODE (type) == ARRAY_TYPE)
2528               {
2529                 tree nelts = array_type_nelts (type);
2530                 if (!host_integerp (nelts, 1)
2531                     || tree_low_cst (nelts, 1) != len)
2532                   cleared = 1;;
2533               }
2534             else if (len != fields_length (type))
2535               cleared = 1;
2536           }
2537
2538         if (cleared)
2539           {
2540             /* Zap the CONSTRUCTOR element list, which simplifies this case.
2541                Note that we still have to gimplify, in order to handle the
2542                case of variable sized types.  */
2543             CONSTRUCTOR_ELTS (ctor) = NULL_TREE;
2544             gimplify_stmt (expr_p);
2545             append_to_statement_list (*expr_p, pre_p);
2546           }
2547
2548         for (i = 0; elt_list; i++, elt_list = TREE_CHAIN (elt_list))
2549           {
2550             tree purpose, value, cref, init;
2551
2552             purpose = TREE_PURPOSE (elt_list);
2553             value = TREE_VALUE (elt_list);
2554
2555             if (cleared && initializer_zerop (value))
2556               continue;
2557
2558             if (TREE_CODE (type) == ARRAY_TYPE)
2559               {
2560                 tree t = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
2561
2562                 /* ??? Here's to hoping the front end fills in all of the
2563                    indicies, so we don't have to figure out what's missing
2564                    ourselves.  */
2565                 if (!purpose)
2566                   abort ();
2567                 /* ??? Need to handle this.  */
2568                 if (TREE_CODE (purpose) == RANGE_EXPR)
2569                   abort ();
2570
2571                 cref = build (ARRAY_REF, t, object, purpose,
2572                               NULL_TREE, NULL_TREE);
2573               }
2574             else
2575               cref = build (COMPONENT_REF, TREE_TYPE (purpose), object,
2576                             purpose, NULL_TREE);
2577
2578             init = build (MODIFY_EXPR, TREE_TYPE (purpose), cref, value);
2579
2580             /* Each member initialization is a full-expression.  */
2581             gimplify_and_add (init, pre_p);
2582           }
2583
2584         *expr_p = NULL_TREE;
2585       }
2586       break;
2587
2588     case COMPLEX_TYPE:
2589       {
2590         tree r, i;
2591
2592         /* Extract the real and imaginary parts out of the ctor.  */
2593         r = i = NULL_TREE;
2594         if (elt_list)
2595           {
2596             r = TREE_VALUE (elt_list);
2597             elt_list = TREE_CHAIN (elt_list);
2598             if (elt_list)
2599               {
2600                 i = TREE_VALUE (elt_list);
2601                 if (TREE_CHAIN (elt_list))
2602                   abort ();
2603               }
2604           }
2605         if (r == NULL || i == NULL)
2606           {
2607             tree zero = convert (TREE_TYPE (type), integer_zero_node);
2608             if (r == NULL)
2609               r = zero;
2610             if (i == NULL)
2611               i = zero;
2612           }
2613
2614         /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
2615            represent creation of a complex value.  */
2616         if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
2617           {
2618             ctor = build_complex (type, r, i);
2619             TREE_OPERAND (*expr_p, 1) = ctor;
2620           }
2621         else
2622           {
2623             ctor = build (COMPLEX_EXPR, type, r, i);
2624             TREE_OPERAND (*expr_p, 1) = ctor;
2625             ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
2626                                  is_gimple_rhs, fb_rvalue);
2627           }
2628       }
2629       break;
2630
2631     case VECTOR_TYPE:
2632       /* Go ahead and simplify constant constructors to VECTOR_CST.  */
2633       if (TREE_CONSTANT (ctor))
2634         TREE_OPERAND (*expr_p, 1) = build_vector (type, elt_list);
2635       else
2636         {
2637           /* Vector types use CONSTRUCTOR all the way through gimple
2638              compilation as a general initializer.  */
2639           for (; elt_list; elt_list = TREE_CHAIN (elt_list))
2640             {
2641               enum gimplify_status tret;
2642               tret = gimplify_expr (&TREE_VALUE (elt_list), pre_p, post_p,
2643                                     is_gimple_constructor_elt, fb_rvalue);
2644               if (tret == GS_ERROR)
2645                 ret = GS_ERROR;
2646             }
2647         }
2648       break;
2649
2650     default:
2651       /* So how did we get a CONSTRUCTOR for a scalar type?  */
2652       abort ();
2653     }
2654
2655   if (ret == GS_ERROR)
2656     return GS_ERROR;
2657   else if (want_value)
2658     {
2659       append_to_statement_list (*expr_p, pre_p);
2660       *expr_p = object;
2661       return GS_OK;
2662     }
2663   else
2664     return GS_ALL_DONE;
2665 }
2666
2667 /* Subroutine of gimplify_modify_expr to do simplifications of MODIFY_EXPRs
2668    based on the code of the RHS.  We loop for as long as something changes.  */
2669
2670 static enum gimplify_status
2671 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
2672                           tree *post_p, bool want_value)
2673 {
2674   enum gimplify_status ret = GS_OK;
2675
2676   while (ret != GS_UNHANDLED)
2677     switch (TREE_CODE (*from_p))
2678       {
2679       case TARGET_EXPR:
2680         {
2681           /* If we are initializing something from a TARGET_EXPR, strip the
2682              TARGET_EXPR and initialize it directly, if possible.  This can't
2683              be done if the initializer is void, since that implies that the
2684              temporary is set in some non-trivial way.
2685
2686              ??? What about code that pulls out the temp and uses it
2687              elsewhere? I think that such code never uses the TARGET_EXPR as
2688              an initializer.  If I'm wrong, we'll abort because the temp won't
2689              have any RTL.  In that case, I guess we'll need to replace
2690              references somehow.  */
2691           tree init = TARGET_EXPR_INITIAL (*from_p);
2692
2693           if (!VOID_TYPE_P (TREE_TYPE (init)))
2694             {
2695               *from_p = init;
2696               ret = GS_OK;
2697             }
2698           else
2699             ret = GS_UNHANDLED;
2700         }
2701         break;
2702
2703       case COMPOUND_EXPR:
2704         /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
2705            caught.  */
2706         gimplify_compound_expr (from_p, pre_p, true);
2707         ret = GS_OK;
2708         break;
2709
2710       case CONSTRUCTOR:
2711         /* If we're initializing from a CONSTRUCTOR, break this into
2712            individual MODIFY_EXPRs.  */
2713         return gimplify_init_constructor (expr_p, pre_p, post_p, want_value);
2714
2715       case COND_EXPR:
2716         /* If we're assigning from a ?: expression with ADDRESSABLE type, push
2717            the assignment down into the branches, since we can't generate a
2718            temporary of such a type.  */
2719         if (TREE_ADDRESSABLE (TREE_TYPE (*from_p)))
2720           {
2721             *expr_p = *from_p;
2722             return gimplify_cond_expr (expr_p, pre_p, *to_p);
2723           }
2724         else
2725           ret = GS_UNHANDLED;
2726         break;
2727
2728       default:
2729         ret = GS_UNHANDLED;
2730         break;
2731       }
2732
2733   return ret;
2734 }
2735
2736 /* Gimplify the MODIFY_EXPR node pointed by EXPR_P.
2737
2738       modify_expr
2739               : varname '=' rhs
2740               | '*' ID '=' rhs
2741
2742     PRE_P points to the list where side effects that must happen before
2743         *EXPR_P should be stored.
2744
2745     POST_P points to the list where side effects that must happen after
2746         *EXPR_P should be stored.
2747
2748     WANT_VALUE is nonzero iff we want to use the value of this expression
2749         in another expression.  */
2750
2751 static enum gimplify_status
2752 gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
2753 {
2754   tree *from_p = &TREE_OPERAND (*expr_p, 1);
2755   tree *to_p = &TREE_OPERAND (*expr_p, 0);
2756   enum gimplify_status ret = GS_UNHANDLED;
2757
2758 #if defined ENABLE_CHECKING
2759   if (TREE_CODE (*expr_p) != MODIFY_EXPR && TREE_CODE (*expr_p) != INIT_EXPR)
2760     abort ();
2761 #endif
2762
2763   /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer useful.  */
2764   if (TREE_CODE (*expr_p) == INIT_EXPR)
2765     TREE_SET_CODE (*expr_p, MODIFY_EXPR);
2766
2767   /* See if any simplifications can be done based on what the RHS is.  */
2768   ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
2769                                   want_value);
2770   if (ret != GS_UNHANDLED)
2771     return ret;
2772
2773   /* If the value being copied is of variable width, expose the length
2774      if the copy by converting the whole thing to a memcpy/memset.
2775      Note that we need to do this before gimplifying any of the operands
2776      so that we can resolve any PLACEHOLDER_EXPRs in the size.  */
2777   if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (*to_p))) != INTEGER_CST)
2778     {
2779       if (TREE_CODE (*from_p) == CONSTRUCTOR)
2780         return gimplify_modify_expr_to_memset (expr_p, want_value);
2781       else
2782         return gimplify_modify_expr_to_memcpy (expr_p, want_value);
2783     }
2784
2785   ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2786   if (ret == GS_ERROR)
2787     return ret;
2788
2789   ret = gimplify_expr (from_p, pre_p, post_p, is_gimple_rhs, fb_rvalue);
2790   if (ret == GS_ERROR)
2791     return ret;
2792
2793   /* Now see if the above changed *from_p to something we handle specially.  */
2794   ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
2795                                   want_value);
2796   if (ret != GS_UNHANDLED)
2797     return ret;
2798
2799   /* If the destination is already simple, nothing else needed.  */
2800   if (is_gimple_tmp_var (*to_p))
2801     ret = GS_ALL_DONE;
2802   else
2803     {
2804       /* If the RHS of the MODIFY_EXPR may throw or make a nonlocal goto and
2805          the LHS is a user variable, then we need to introduce a temporary.
2806          ie temp = RHS; LHS = temp.
2807
2808          This way the optimizers can determine that the user variable is
2809          only modified if evaluation of the RHS does not throw.
2810
2811          FIXME this should be handled by the is_gimple_rhs predicate.  */
2812
2813       if (aggregate_value_p (TREE_TYPE (*from_p), NULL_TREE))
2814         /* Don't force a temp of a large aggregate type; the copy could be
2815            arbitrarily expensive.  Instead we will generate a V_MAY_DEF for
2816            the assignment.  */;
2817       else if (TREE_CODE (*from_p) == CALL_EXPR
2818                || (flag_non_call_exceptions && tree_could_trap_p (*from_p))
2819                /* If we're dealing with a renamable type, either source or dest
2820                   must be a renamed variable.  */
2821                || (is_gimple_reg_type (TREE_TYPE (*from_p))
2822                    && !is_gimple_reg (*to_p)))
2823         gimplify_expr (from_p, pre_p, post_p, is_gimple_val, fb_rvalue);
2824
2825       ret = want_value ? GS_OK : GS_ALL_DONE;
2826     }
2827
2828   if (want_value)
2829     {
2830       append_to_statement_list (*expr_p, pre_p);
2831       *expr_p = *to_p;
2832     }
2833
2834   return ret;
2835 }
2836
2837 /*  Gimplify a comparison between two variable-sized objects.  Do this
2838     with a call to BUILT_IN_MEMCMP.  */
2839
2840 static enum gimplify_status
2841 gimplify_variable_sized_compare (tree *expr_p)
2842 {
2843   tree op0 = TREE_OPERAND (*expr_p, 0);
2844   tree op1 = TREE_OPERAND (*expr_p, 1);
2845   tree args, t, dest;
2846
2847   t = TYPE_SIZE_UNIT (TREE_TYPE (op0));
2848   t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, op0);
2849   t = unshare_expr (t);
2850   args = tree_cons (NULL, t, NULL);
2851   t = build_fold_addr_expr (op1);
2852   args = tree_cons (NULL, t, args);
2853   dest = build_fold_addr_expr (op0);
2854   args = tree_cons (NULL, dest, args);
2855   t = implicit_built_in_decls[BUILT_IN_MEMCMP];
2856   t = build_function_call_expr (t, args);
2857   *expr_p
2858     = build (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
2859
2860   return GS_OK;
2861 }
2862
2863 /*  Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions.  EXPR_P
2864     points to the expression to gimplify.
2865
2866     Expressions of the form 'a && b' are gimplified to:
2867
2868         a && b ? true : false
2869
2870     gimplify_cond_expr will do the rest.
2871
2872     PRE_P points to the list where side effects that must happen before
2873         *EXPR_P should be stored.  */
2874
2875 static enum gimplify_status
2876 gimplify_boolean_expr (tree *expr_p)
2877 {
2878   /* Preserve the original type of the expression.  */
2879   tree type = TREE_TYPE (*expr_p);
2880
2881   *expr_p = build (COND_EXPR, type, *expr_p,
2882                    convert (type, boolean_true_node),
2883                    convert (type, boolean_false_node));
2884
2885   return GS_OK;
2886 }
2887
2888 /* Gimplifies an expression sequence.  This function gimplifies each
2889    expression and re-writes the original expression with the last
2890    expression of the sequence in GIMPLE form.
2891
2892    PRE_P points to the list where the side effects for all the
2893        expressions in the sequence will be emitted.
2894     
2895    WANT_VALUE is true when the result of the last COMPOUND_EXPR is used.  */
2896 /* ??? Should rearrange to share the pre-queue with all the indirect
2897    invocations of gimplify_expr.  Would probably save on creations 
2898    of statement_list nodes.  */
2899
2900 static enum gimplify_status
2901 gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
2902 {
2903   tree t = *expr_p;
2904
2905   do
2906     {
2907       tree *sub_p = &TREE_OPERAND (t, 0);
2908
2909       if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
2910         gimplify_compound_expr (sub_p, pre_p, false);
2911       else
2912         gimplify_stmt (sub_p);
2913       append_to_statement_list (*sub_p, pre_p);
2914
2915       t = TREE_OPERAND (t, 1);
2916     }
2917   while (TREE_CODE (t) == COMPOUND_EXPR);
2918
2919   *expr_p = t;
2920   if (want_value)
2921     return GS_OK;
2922   else
2923     {
2924       gimplify_stmt (expr_p);
2925       return GS_ALL_DONE;
2926     }
2927 }
2928
2929 /* Gimplifies a statement list.  These may be created either by an
2930    enlightened front-end, or by shortcut_cond_expr.  */
2931
2932 static enum gimplify_status
2933 gimplify_statement_list (tree *expr_p)
2934 {
2935   tree_stmt_iterator i = tsi_start (*expr_p);
2936
2937   while (!tsi_end_p (i))
2938     {
2939       tree t;
2940
2941       gimplify_stmt (tsi_stmt_ptr (i));
2942
2943       t = tsi_stmt (i);
2944       if (t == NULL)
2945         tsi_delink (&i);
2946       else if (TREE_CODE (t) == STATEMENT_LIST)
2947         {
2948           tsi_link_before (&i, t, TSI_SAME_STMT);
2949           tsi_delink (&i);
2950         }
2951       else
2952         tsi_next (&i);
2953     }
2954
2955   return GS_ALL_DONE;
2956 }
2957
2958 /*  Gimplify a SAVE_EXPR node.  EXPR_P points to the expression to
2959     gimplify.  After gimplification, EXPR_P will point to a new temporary
2960     that holds the original value of the SAVE_EXPR node.
2961
2962     PRE_P points to the list where side effects that must happen before
2963         *EXPR_P should be stored.  */
2964
2965 static enum gimplify_status
2966 gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
2967 {
2968   enum gimplify_status ret = GS_ALL_DONE;
2969   tree val;
2970
2971 #if defined ENABLE_CHECKING
2972   if (TREE_CODE (*expr_p) != SAVE_EXPR)
2973     abort ();
2974 #endif
2975
2976   val = TREE_OPERAND (*expr_p, 0);
2977
2978   /* If the operand is already a GIMPLE temporary, just re-write the
2979      SAVE_EXPR node.  */
2980   if (is_gimple_tmp_var (val))
2981     *expr_p = val;
2982   /* The operand may be a void-valued expression such as SAVE_EXPRs
2983      generated by the Java frontend for class initialization.  It is
2984      being executed only for its side-effects.  */
2985   else if (TREE_TYPE (val) == void_type_node)
2986     {
2987       tree body = TREE_OPERAND (*expr_p, 0);
2988       ret = gimplify_expr (& body, pre_p, post_p, is_gimple_stmt, fb_none);
2989       append_to_statement_list (body, pre_p);
2990       *expr_p = NULL;
2991     }
2992   else
2993     *expr_p = TREE_OPERAND (*expr_p, 0)
2994       = get_initialized_tmp_var (val, pre_p, post_p);
2995
2996   return ret;
2997 }
2998
2999 /*  Re-write the ADDR_EXPR node pointed by EXPR_P
3000
3001       unary_expr
3002               : ...
3003               | '&' varname
3004               ...
3005
3006     PRE_P points to the list where side effects that must happen before
3007         *EXPR_P should be stored.
3008
3009     POST_P points to the list where side effects that must happen after
3010         *EXPR_P should be stored.  */
3011
3012 static enum gimplify_status
3013 gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
3014 {
3015   tree expr = *expr_p;
3016   tree op0 = TREE_OPERAND (expr, 0);
3017   enum gimplify_status ret;
3018
3019   switch (TREE_CODE (op0))
3020     {
3021     case INDIRECT_REF:
3022       /* Check if we are dealing with an expression of the form '&*ptr'.
3023          While the front end folds away '&*ptr' into 'ptr', these
3024          expressions may be generated internally by the compiler (e.g.,
3025          builtins like __builtin_va_end).  */
3026       *expr_p = TREE_OPERAND (op0, 0);
3027       ret = GS_OK;
3028       break;
3029
3030     case ARRAY_REF:
3031       /* Fold &a[6] to (&a + 6).  */
3032       ret = gimplify_array_ref_to_plus (&TREE_OPERAND (expr, 0),
3033                                         pre_p, post_p);
3034
3035       /* This added an INDIRECT_REF.  Fold it away.  */
3036       *expr_p = TREE_OPERAND (TREE_OPERAND (expr, 0), 0);
3037       break;
3038
3039     case VIEW_CONVERT_EXPR:
3040       /* Take the address of our operand and then convert it to the type of
3041          this ADDR_EXPR.
3042
3043          ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3044          all clear.  The impact of this transformation is even less clear.  */
3045       *expr_p = fold_convert (TREE_TYPE (expr),
3046                               build_fold_addr_expr (TREE_OPERAND (op0, 0)));
3047       ret = GS_OK;
3048       break;
3049
3050     default:
3051       /* We use fb_either here because the C frontend sometimes takes
3052          the address of a call that returns a struct.  */
3053       ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
3054                            is_gimple_addr_expr_arg, fb_either);
3055       if (ret != GS_ERROR)
3056         {
3057           /* At this point, the argument of the ADDR_EXPR should be
3058              sufficiently simple that there are never side effects.  */
3059           /* ??? Could split out the decision code from build1 to verify.  */
3060           TREE_SIDE_EFFECTS (expr) = 0;
3061
3062           /* Make sure TREE_INVARIANT/TREE_CONSTANT is set properly.  */
3063           recompute_tree_invarant_for_addr_expr (expr);
3064
3065           /* Mark the RHS addressable.  */
3066           lang_hooks.mark_addressable (TREE_OPERAND (expr, 0));
3067         }
3068       break;
3069     }
3070
3071   /* If the operand is gimplified into a _DECL, mark the address expression
3072      as TREE_INVARIANT.  */
3073   if (DECL_P (TREE_OPERAND (expr, 0)))
3074     TREE_INVARIANT (expr) = 1;
3075
3076   return ret;
3077 }
3078
3079 /* Gimplify the operands of an ASM_EXPR.  Input operands should be a gimple
3080    value; output operands should be a gimple lvalue.  */
3081
3082 static enum gimplify_status
3083 gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
3084 {
3085   tree expr = *expr_p;
3086   int noutputs = list_length (ASM_OUTPUTS (expr));
3087   const char **oconstraints
3088     = (const char **) alloca ((noutputs) * sizeof (const char *));
3089   int i;
3090   tree link;
3091   const char *constraint;
3092   bool allows_mem, allows_reg, is_inout;
3093   enum gimplify_status ret, tret;
3094
3095   ASM_STRING (expr)
3096     = resolve_asm_operand_names (ASM_STRING (expr), ASM_OUTPUTS (expr),
3097                                  ASM_INPUTS (expr));
3098
3099   ret = GS_ALL_DONE;
3100   for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3101     {
3102       oconstraints[i] = constraint
3103         = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3104
3105       parse_output_constraint (&constraint, i, 0, 0,
3106                                &allows_mem, &allows_reg, &is_inout);
3107
3108       if (!allows_reg && allows_mem)
3109         lang_hooks.mark_addressable (TREE_VALUE (link));
3110
3111       tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3112                             is_inout ? is_gimple_min_lval : is_gimple_lvalue,
3113                             fb_lvalue | fb_mayfail);
3114       if (tret == GS_ERROR)
3115         {
3116           error ("invalid lvalue in asm output %d", i);
3117           ret = tret;
3118         }
3119
3120       if (is_inout)
3121         {
3122           /* An input/output operand.  To give the optimizers more
3123              flexibility, split it into separate input and output
3124              operands.  */
3125           tree input;
3126           char buf[10];
3127           size_t constraint_len = strlen (constraint);
3128
3129           /* Turn the in/out constraint into an output constraint.  */
3130           char *p = xstrdup (constraint);
3131           p[0] = '=';
3132           TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
3133           free (p);
3134
3135           /* And add a matching input constraint.  */
3136           if (allows_reg)
3137             {
3138               sprintf (buf, "%d", i);
3139               input = build_string (strlen (buf), buf);
3140             }
3141           else
3142             input = build_string (constraint_len - 1, constraint + 1);
3143           input = build_tree_list (build_tree_list (NULL_TREE, input),
3144                                    unshare_expr (TREE_VALUE (link)));
3145           ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
3146         }
3147     }
3148
3149   for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3150     {
3151       constraint
3152         = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3153       parse_input_constraint (&constraint, 0, 0, noutputs, 0,
3154                               oconstraints, &allows_mem, &allows_reg);
3155
3156       /* If the operand is a memory input, it should be an lvalue.  */
3157       if (!allows_reg && allows_mem)
3158         {
3159           lang_hooks.mark_addressable (TREE_VALUE (link));
3160           tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3161                                 is_gimple_lvalue, fb_lvalue | fb_mayfail);
3162           if (tret == GS_ERROR)
3163             {
3164               error ("memory input %d is not directly addressable", i);
3165               ret = tret;
3166             }
3167         }
3168       else
3169         {
3170           tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3171                                 is_gimple_val, fb_rvalue);
3172           if (tret == GS_ERROR)
3173             ret = tret;
3174         }
3175     }
3176
3177   return ret;
3178 }
3179
3180 /* Gimplify a CLEANUP_POINT_EXPR.  Currently this works by adding
3181    WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
3182    gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
3183    return to this function.
3184
3185    FIXME should we complexify the prequeue handling instead?  Or use flags
3186    for all the cleanups and let the optimizer tighten them up?  The current
3187    code seems pretty fragile; it will break on a cleanup within any
3188    non-conditional nesting.  But any such nesting would be broken, anyway;
3189    we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
3190    and continues out of it.  We can do that at the RTL level, though, so
3191    having an optimizer to tighten up try/finally regions would be a Good
3192    Thing.  */
3193
3194 static enum gimplify_status
3195 gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
3196 {
3197   tree_stmt_iterator iter;
3198   tree body;
3199
3200   tree temp = voidify_wrapper_expr (*expr_p, NULL);
3201
3202   /* We only care about the number of conditions between the innermost
3203      CLEANUP_POINT_EXPR and the cleanup.  So save and reset the count.  */
3204   int old_conds = gimplify_ctxp->conditions;
3205   gimplify_ctxp->conditions = 0;
3206
3207   body = TREE_OPERAND (*expr_p, 0);
3208   gimplify_to_stmt_list (&body);
3209
3210   gimplify_ctxp->conditions = old_conds;
3211
3212   for (iter = tsi_start (body); !tsi_end_p (iter); )
3213     {
3214       tree *wce_p = tsi_stmt_ptr (iter);
3215       tree wce = *wce_p;
3216
3217       if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
3218         {
3219           if (tsi_one_before_end_p (iter))
3220             {
3221               tsi_link_before (&iter, TREE_OPERAND (wce, 1), TSI_SAME_STMT);
3222               tsi_delink (&iter);
3223               break;
3224             }
3225           else
3226             {
3227               tree sl, tfe;
3228
3229               sl = tsi_split_statement_list_after (&iter);
3230               tfe = build (TRY_FINALLY_EXPR, void_type_node, sl, NULL_TREE);
3231               append_to_statement_list (TREE_OPERAND (wce, 1),
3232                                      &TREE_OPERAND (tfe, 1));
3233               *wce_p = tfe;
3234               iter = tsi_start (sl);
3235             }
3236         }
3237       else
3238         tsi_next (&iter);
3239     }
3240
3241   if (temp)
3242     {
3243       *expr_p = temp;
3244       append_to_statement_list (body, pre_p);
3245       return GS_OK;
3246     }
3247   else
3248     {
3249       *expr_p = body;
3250       return GS_ALL_DONE;
3251     }
3252 }
3253
3254 /* Insert a cleanup marker for gimplify_cleanup_point_expr.  CLEANUP
3255    is the cleanup action required.  */
3256
3257 static void
3258 gimple_push_cleanup (tree var, tree cleanup, tree *pre_p)
3259 {
3260   tree wce;
3261
3262   /* Errors can result in improperly nested cleanups.  Which results in
3263      confusion when trying to resolve the WITH_CLEANUP_EXPR.  */
3264   if (errorcount || sorrycount)
3265     return;
3266
3267   if (gimple_conditional_context ())
3268     {
3269       /* If we're in a conditional context, this is more complex.  We only
3270          want to run the cleanup if we actually ran the initialization that
3271          necessitates it, but we want to run it after the end of the
3272          conditional context.  So we wrap the try/finally around the
3273          condition and use a flag to determine whether or not to actually
3274          run the destructor.  Thus
3275
3276            test ? f(A()) : 0
3277
3278          becomes (approximately)
3279
3280            flag = 0;
3281            try {
3282              if (test) { A::A(temp); flag = 1; val = f(temp); }
3283              else { val = 0; }
3284            } finally {
3285              if (flag) A::~A(temp);
3286            }
3287            val
3288       */
3289
3290       tree flag = create_tmp_var (boolean_type_node, "cleanup");
3291       tree ffalse = build (MODIFY_EXPR, void_type_node, flag,
3292                            boolean_false_node);
3293       tree ftrue = build (MODIFY_EXPR, void_type_node, flag,
3294                           boolean_true_node);
3295       cleanup = build (COND_EXPR, void_type_node, flag, cleanup, NULL);
3296       wce = build (WITH_CLEANUP_EXPR, void_type_node, NULL_TREE,
3297                    cleanup, NULL_TREE);
3298       append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
3299       append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
3300       append_to_statement_list (ftrue, pre_p);
3301
3302       /* Because of this manipulation, and the EH edges that jump
3303          threading cannot redirect, the temporary (VAR) will appear
3304          to be used uninitialized.  Don't warn.  */
3305       TREE_NO_WARNING (var) = 1;
3306     }
3307   else
3308     {
3309       wce = build (WITH_CLEANUP_EXPR, void_type_node, NULL_TREE,
3310                    cleanup, NULL_TREE);
3311       append_to_statement_list (wce, pre_p);
3312     }
3313
3314   gimplify_stmt (&TREE_OPERAND (wce, 1));
3315 }
3316
3317 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR.  */
3318
3319 static enum gimplify_status
3320 gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
3321 {
3322   tree targ = *expr_p;
3323   tree temp = TARGET_EXPR_SLOT (targ);
3324   tree init = TARGET_EXPR_INITIAL (targ);
3325   enum gimplify_status ret;
3326
3327   if (init)
3328     {
3329       /* TARGET_EXPR temps aren't part of the enclosing block, so add it
3330          to the temps list.  */
3331       gimple_add_tmp_var (temp);
3332
3333       /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
3334          expression is supposed to initialize the slot.  */
3335       if (VOID_TYPE_P (TREE_TYPE (init)))
3336         ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
3337       else
3338         {
3339           /* Special handling for BIND_EXPR can result in fewer temps.  */
3340           ret = GS_OK;
3341           if (TREE_CODE (init) == BIND_EXPR)
3342             gimplify_bind_expr (&init, temp, pre_p);
3343           if (init != temp)
3344             {
3345               init = build (MODIFY_EXPR, void_type_node, temp, init);
3346               ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
3347                                    fb_none);
3348             }
3349         }
3350       if (ret == GS_ERROR)
3351         return GS_ERROR;
3352       append_to_statement_list (init, pre_p);
3353
3354       /* If needed, push the cleanup for the temp.  */
3355       if (TARGET_EXPR_CLEANUP (targ))
3356         {
3357           gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
3358           gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ), pre_p);
3359         }
3360
3361       /* Only expand this once.  */
3362       TREE_OPERAND (targ, 3) = init;
3363       TARGET_EXPR_INITIAL (targ) = NULL_TREE;
3364     }
3365   else if (!temp->decl.seen_in_bind_expr)
3366     /* We should have expanded this before.  */
3367     abort ();
3368
3369   *expr_p = temp;
3370   return GS_OK;
3371 }
3372
3373 /* Gimplification of expression trees.  */
3374
3375 /* Gimplify an expression which appears at statement context; usually, this
3376    means replacing it with a suitably gimple STATEMENT_LIST.  */
3377
3378 void
3379 gimplify_stmt (tree *stmt_p)
3380 {
3381   gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
3382 }
3383
3384 /* Similarly, but force the result to be a STATEMENT_LIST.  */
3385
3386 void
3387 gimplify_to_stmt_list (tree *stmt_p)
3388 {
3389   gimplify_stmt (stmt_p);
3390   if (!*stmt_p)
3391     *stmt_p = alloc_stmt_list ();
3392   else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
3393     {
3394       tree t = *stmt_p;
3395       *stmt_p = alloc_stmt_list ();
3396       append_to_statement_list (t, stmt_p);
3397     }
3398 }
3399
3400
3401 /*  Gimplifies the expression tree pointed by EXPR_P.  Return 0 if
3402     gimplification failed.
3403
3404     PRE_P points to the list where side effects that must happen before
3405         EXPR should be stored.
3406
3407     POST_P points to the list where side effects that must happen after
3408         EXPR should be stored, or NULL if there is no suitable list.  In
3409         that case, we copy the result to a temporary, emit the
3410         post-effects, and then return the temporary.
3411
3412     GIMPLE_TEST_F points to a function that takes a tree T and
3413         returns nonzero if T is in the GIMPLE form requested by the
3414         caller.  The GIMPLE predicates are in tree-gimple.c.
3415
3416         This test is used twice.  Before gimplification, the test is
3417         invoked to determine whether *EXPR_P is already gimple enough.  If
3418         that fails, *EXPR_P is gimplified according to its code and
3419         GIMPLE_TEST_F is called again.  If the test still fails, then a new
3420         temporary variable is created and assigned the value of the
3421         gimplified expression.
3422
3423     FALLBACK tells the function what sort of a temporary we want.  If the 1
3424         bit is set, an rvalue is OK.  If the 2 bit is set, an lvalue is OK.
3425         If both are set, either is OK, but an lvalue is preferable.
3426
3427     The return value is either GS_ERROR or GS_ALL_DONE, since this function
3428     iterates until solution.  */
3429
3430 enum gimplify_status
3431 gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
3432                bool (* gimple_test_f) (tree), fallback_t fallback)
3433 {
3434   tree tmp;
3435   tree internal_pre = NULL_TREE;
3436   tree internal_post = NULL_TREE;
3437   tree save_expr;
3438   int is_statement = (pre_p == NULL);
3439   location_t saved_location;
3440   enum gimplify_status ret;
3441
3442   save_expr = *expr_p;
3443   if (save_expr == NULL_TREE)
3444     return GS_ALL_DONE;
3445
3446   /* We used to check the predicate here and return immediately if it
3447      succeeds.  This is wrong; the design is for gimplification to be
3448      idempotent, and for the predicates to only test for valid forms, not
3449      whether they are fully simplified.  */
3450
3451   /* Set up our internal queues if needed.  */
3452   if (pre_p == NULL)
3453     pre_p = &internal_pre;
3454   if (post_p == NULL)
3455     post_p = &internal_post;
3456
3457   saved_location = input_location;
3458   if (save_expr != error_mark_node
3459       && EXPR_HAS_LOCATION (*expr_p))
3460     input_location = EXPR_LOCATION (*expr_p);
3461
3462   /* Loop over the specific gimplifiers until the toplevel node
3463      remains the same.  */
3464   do
3465     {
3466       /* Strip any uselessness.  */
3467       STRIP_MAIN_TYPE_NOPS (*expr_p);
3468
3469       /* Remember the expr.  */
3470       save_expr = *expr_p;
3471
3472       /* Die, die, die, my darling.  */
3473       if (save_expr == error_mark_node
3474           || (TREE_TYPE (save_expr)
3475               && TREE_TYPE (save_expr) == error_mark_node))
3476         {
3477           ret = GS_ERROR;
3478           break;
3479         }
3480
3481       /* Do any language-specific gimplification.  */
3482       ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
3483       if (ret == GS_OK)
3484         {
3485           if (*expr_p == NULL_TREE)
3486             break;
3487           if (*expr_p != save_expr)
3488             continue;
3489         }
3490       else if (ret != GS_UNHANDLED)
3491         break;
3492
3493       ret = GS_OK;
3494       switch (TREE_CODE (*expr_p))
3495         {
3496           /* First deal with the special cases.  */
3497
3498         case POSTINCREMENT_EXPR:
3499         case POSTDECREMENT_EXPR:
3500         case PREINCREMENT_EXPR:
3501         case PREDECREMENT_EXPR:
3502           ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
3503                                         fallback != fb_none);
3504           break;
3505
3506         case ARRAY_REF:
3507         case ARRAY_RANGE_REF:
3508         case REALPART_EXPR:
3509         case IMAGPART_EXPR:
3510         case COMPONENT_REF:
3511           ret = gimplify_compound_lval (expr_p, pre_p, post_p,
3512                                         fallback ? fallback : fb_rvalue);
3513           break;
3514
3515         case COND_EXPR:
3516           ret = gimplify_cond_expr (expr_p, pre_p, NULL_TREE);
3517           break;
3518
3519         case CALL_EXPR:
3520           ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
3521           break;
3522
3523         case TREE_LIST:
3524           abort ();
3525
3526         case COMPOUND_EXPR:
3527           ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
3528           break;
3529
3530         case MODIFY_EXPR:
3531         case INIT_EXPR:
3532           ret = gimplify_modify_expr (expr_p, pre_p, post_p,
3533                                       fallback != fb_none);
3534           break;
3535
3536         case TRUTH_ANDIF_EXPR:
3537         case TRUTH_ORIF_EXPR:
3538           ret = gimplify_boolean_expr (expr_p);
3539           break;
3540
3541         case TRUTH_NOT_EXPR:
3542           TREE_OPERAND (*expr_p, 0)
3543             = gimple_boolify (TREE_OPERAND (*expr_p, 0));
3544           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3545                                is_gimple_val, fb_rvalue);
3546           recalculate_side_effects (*expr_p);
3547           break;
3548
3549         case ADDR_EXPR:
3550           ret = gimplify_addr_expr (expr_p, pre_p, post_p);
3551           break;
3552
3553         case VA_ARG_EXPR:
3554           ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
3555           break;
3556
3557         case VIEW_CONVERT_EXPR:
3558           if (VOID_TYPE_P (TREE_TYPE (*expr_p))
3559               || fallback == fb_none)
3560             {
3561               /* Just strip a conversion to void (or in void context) and
3562                  try again.  */
3563               *expr_p = TREE_OPERAND (*expr_p, 0);
3564               break;
3565             }
3566
3567           /* If both types are BLKmode or if one type is of variable size,
3568              convert this into a pointer punning operation.  This avoids
3569              copies of large data or making a variable-size temporary.
3570
3571              ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3572              all clear.  The impact of this transformation is even less
3573              clear.  */
3574
3575           if ((TYPE_MODE (TREE_TYPE (*expr_p)) == BLKmode
3576                && TYPE_MODE (TREE_TYPE (TREE_OPERAND (*expr_p, 0))) == BLKmode)
3577               || !TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (*expr_p)))
3578               || !TREE_CONSTANT (TYPE_SIZE (TREE_TYPE
3579                                             (TREE_OPERAND (*expr_p,0)))))
3580             {
3581               tree restype = TREE_TYPE (*expr_p);
3582               *expr_p = build1 (INDIRECT_REF, TREE_TYPE (*expr_p),
3583                                 fold_convert (build_pointer_type (restype),
3584                                               build_fold_addr_expr
3585                                               (TREE_OPERAND (*expr_p, 0))));
3586               break;
3587             }
3588           goto unary;
3589
3590         case CONVERT_EXPR:
3591         case NOP_EXPR:
3592           if (IS_EMPTY_STMT (*expr_p))
3593             {
3594               ret = GS_ALL_DONE;
3595               break;
3596             }
3597
3598           if (VOID_TYPE_P (TREE_TYPE (*expr_p))
3599               || fallback == fb_none)
3600             {
3601               /* Just strip a conversion to void (or in void context) and
3602                  try again.  */
3603               *expr_p = TREE_OPERAND (*expr_p, 0);
3604               break;
3605             }
3606
3607           ret = gimplify_conversion (expr_p);
3608           if (ret == GS_ERROR)
3609             break;
3610           if (*expr_p != save_expr)
3611             break;
3612           /* FALLTHRU */
3613
3614         case FIX_TRUNC_EXPR:
3615         case FIX_CEIL_EXPR:
3616         case FIX_FLOOR_EXPR:
3617         case FIX_ROUND_EXPR:
3618         unary:
3619           /* unary_expr: ... | '(' cast ')' val | ...  */
3620           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3621                                is_gimple_val, fb_rvalue);
3622           recalculate_side_effects (*expr_p);
3623           break;
3624
3625         case INDIRECT_REF:
3626           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3627                                is_gimple_reg, fb_rvalue);
3628           recalculate_side_effects (*expr_p);
3629           break;
3630
3631           /* Constants need not be gimplified.  */
3632         case INTEGER_CST:
3633         case REAL_CST:
3634         case STRING_CST:
3635         case COMPLEX_CST:
3636         case VECTOR_CST:
3637           ret = GS_ALL_DONE;
3638           break;
3639
3640         case CONST_DECL:
3641           *expr_p = DECL_INITIAL (*expr_p);
3642           break;
3643
3644         case DECL_EXPR:
3645           ret = gimplify_decl_expr (expr_p);
3646           break;
3647
3648         case EXC_PTR_EXPR:
3649           /* FIXME make this a decl.  */
3650           ret = GS_ALL_DONE;
3651           break;
3652
3653         case BIND_EXPR:
3654           ret = gimplify_bind_expr (expr_p, NULL, pre_p);
3655           break;
3656
3657         case LOOP_EXPR:
3658           ret = gimplify_loop_expr (expr_p, pre_p);
3659           break;
3660
3661         case SWITCH_EXPR:
3662           ret = gimplify_switch_expr (expr_p, pre_p);
3663           break;
3664
3665         case LABELED_BLOCK_EXPR:
3666           ret = gimplify_labeled_block_expr (expr_p);
3667           break;
3668
3669         case EXIT_BLOCK_EXPR:
3670           ret = gimplify_exit_block_expr (expr_p);
3671           break;
3672
3673         case EXIT_EXPR:
3674           ret = gimplify_exit_expr (expr_p);
3675           break;
3676
3677         case GOTO_EXPR:
3678           /* If the target is not LABEL, then it is a computed jump
3679              and the target needs to be gimplified.  */
3680           if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
3681             ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
3682                                  NULL, is_gimple_val, fb_rvalue);
3683           break;
3684
3685         case LABEL_EXPR:
3686           ret = GS_ALL_DONE;
3687 #ifdef ENABLE_CHECKING
3688           if (decl_function_context (LABEL_EXPR_LABEL (*expr_p)) != current_function_decl)
3689             abort ();
3690 #endif
3691           break;
3692
3693         case CASE_LABEL_EXPR:
3694           ret = gimplify_case_label_expr (expr_p);
3695           break;
3696
3697         case RETURN_EXPR:
3698           ret = gimplify_return_expr (*expr_p, pre_p);
3699           break;
3700
3701         case CONSTRUCTOR:
3702           /* Don't reduce this in place; let gimplify_init_constructor work
3703              its magic.  */
3704           ret = GS_ALL_DONE;
3705           break;
3706
3707           /* The following are special cases that are not handled by the
3708              original GIMPLE grammar.  */
3709
3710           /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
3711              eliminated.  */
3712         case SAVE_EXPR:
3713           ret = gimplify_save_expr (expr_p, pre_p, post_p);
3714           break;
3715
3716         case BIT_FIELD_REF:
3717           {
3718             enum gimplify_status r0, r1, r2;
3719
3720             r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3721                                 is_gimple_lvalue, fb_either);
3722             r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3723                                 is_gimple_val, fb_rvalue);
3724             r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
3725                                 is_gimple_val, fb_rvalue);
3726             recalculate_side_effects (*expr_p);
3727
3728             ret = MIN (r0, MIN (r1, r2));
3729           }
3730           break;
3731
3732         case NON_LVALUE_EXPR:
3733           /* This should have been stripped above.  */
3734           abort ();
3735           break;
3736
3737         case ASM_EXPR:
3738           ret = gimplify_asm_expr (expr_p, pre_p, post_p);
3739           break;
3740
3741         case TRY_FINALLY_EXPR:
3742         case TRY_CATCH_EXPR:
3743           gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
3744           gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
3745           ret = GS_ALL_DONE;
3746           break;
3747
3748         case CLEANUP_POINT_EXPR:
3749           ret = gimplify_cleanup_point_expr (expr_p, pre_p);
3750           break;
3751
3752         case TARGET_EXPR:
3753           ret = gimplify_target_expr (expr_p, pre_p, post_p);
3754           break;
3755
3756         case CATCH_EXPR:
3757           gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
3758           ret = GS_ALL_DONE;
3759           break;
3760
3761         case EH_FILTER_EXPR:
3762           gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
3763           ret = GS_ALL_DONE;
3764           break;
3765
3766         case OBJ_TYPE_REF:
3767           {
3768             enum gimplify_status r0, r1;
3769             r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
3770                                 is_gimple_val, fb_rvalue);
3771             r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
3772                                 is_gimple_val, fb_rvalue);
3773             ret = MIN (r0, r1);
3774           }
3775           break;
3776
3777         case MIN_EXPR:
3778         case MAX_EXPR:
3779           ret = gimplify_minimax_expr (expr_p, pre_p, post_p);
3780           break;
3781
3782         case LABEL_DECL:
3783           /* We get here when taking the address of a label.  We mark
3784              the label as "forced"; meaning it can never be removed and
3785              it is a potential target for any computed goto.  */
3786           FORCED_LABEL (*expr_p) = 1;
3787           ret = GS_ALL_DONE;
3788           break;
3789
3790         case STATEMENT_LIST:
3791           ret = gimplify_statement_list (expr_p);
3792           break;
3793
3794         case VAR_DECL:
3795           /* ??? If this is a local variable, and it has not been seen in any
3796              outer BIND_EXPR, then it's probably the result of a duplicate
3797              declaration, for which we've already issued an error.  It would
3798              be really nice if the front end wouldn't leak these at all. 
3799              Currently the only known culprit is C++ destructors, as seen
3800              in g++.old-deja/g++.jason/binding.C.  */
3801           tmp = *expr_p;
3802           if (!TREE_STATIC (tmp) && !DECL_EXTERNAL (tmp)
3803               && decl_function_context (tmp) == current_function_decl
3804               && !tmp->decl.seen_in_bind_expr)
3805             {
3806 #ifdef ENABLE_CHECKING
3807               if (!errorcount && !sorrycount)
3808                 abort ();
3809 #endif
3810               ret = GS_ERROR;
3811             }
3812           else
3813             ret = GS_ALL_DONE;
3814           break;
3815
3816         default:
3817           /* If this is a comparison of objects of aggregate type, handle
3818              it specially (by converting to a call to memcmp).  It would be
3819              nice to only have to do this for variable-sized objects, but
3820              then we'd have to allow the same nest of reference nodes we
3821              allow for MODIFY_EXPR and that's too complex.  */
3822           if (TREE_CODE_CLASS (TREE_CODE (*expr_p)) == '<'
3823               && (AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (*expr_p, 1)))))
3824             ret = gimplify_variable_sized_compare (expr_p);
3825
3826           /* If *EXPR_P does not need to be special-cased, handle it
3827              according to its class.  */
3828           else if (TREE_CODE_CLASS (TREE_CODE (*expr_p)) == '1')
3829             ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
3830                                  post_p, is_gimple_val, fb_rvalue);
3831           else if (TREE_CODE_CLASS (TREE_CODE (*expr_p)) == '2'
3832                    || TREE_CODE_CLASS (TREE_CODE (*expr_p)) == '<'
3833                    || TREE_CODE (*expr_p) == TRUTH_AND_EXPR
3834                    || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
3835                    || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR)
3836             {
3837               enum gimplify_status r0, r1;
3838
3839               r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
3840                                   post_p, is_gimple_val, fb_rvalue);
3841               r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
3842                                   post_p, is_gimple_val, fb_rvalue);
3843
3844               ret = MIN (r0, r1);
3845             }
3846           else if (TREE_CODE_CLASS (TREE_CODE (*expr_p)) == 'd'
3847                    || TREE_CODE_CLASS (TREE_CODE (*expr_p)) == 'c')
3848             {
3849               ret = GS_ALL_DONE;
3850               break;
3851             }
3852           else
3853             /* Fail if we don't know how to handle this tree code.  */
3854             abort ();
3855
3856           recalculate_side_effects (*expr_p);
3857           break;
3858         }
3859
3860       /* If we replaced *expr_p, gimplify again.  */
3861       if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
3862         ret = GS_ALL_DONE;
3863     }
3864   while (ret == GS_OK);
3865
3866   /* If we encountered an error_mark somewhere nested inside, either
3867      stub out the statement or propagate the error back out.  */
3868   if (ret == GS_ERROR)
3869     {
3870       if (is_statement)
3871         *expr_p = NULL;
3872       goto out;
3873     }
3874
3875 #ifdef ENABLE_CHECKING
3876   /* This was only valid as a return value from the langhook, which
3877      we handled.  Make sure it doesn't escape from any other context.  */
3878   if (ret == GS_UNHANDLED)
3879     abort ();
3880 #endif
3881
3882   if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
3883     {
3884       /* We aren't looking for a value, and we don't have a valid
3885          statement.  If it doesn't have side-effects, throw it away.  */
3886       if (!TREE_SIDE_EFFECTS (*expr_p))
3887         *expr_p = NULL;
3888       else if (!TREE_THIS_VOLATILE (*expr_p))
3889         {
3890           /* This is probably a _REF that contains something nested that
3891              has side effects.  Recurse through the operands to find it.  */
3892           enum tree_code code = TREE_CODE (*expr_p);
3893
3894           if (code == COMPONENT_REF
3895               || code == REALPART_EXPR || code == IMAGPART_EXPR)
3896             gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3897                            gimple_test_f, fallback);
3898           else if (code == ARRAY_REF || code == ARRAY_RANGE_REF)
3899             {
3900               gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3901                              gimple_test_f, fallback);
3902               gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3903                            gimple_test_f, fallback);
3904             }
3905           else
3906             /* Anything else with side-effects
3907                must be converted to a valid statement before we get here.  */
3908             abort ();
3909
3910           *expr_p = NULL;
3911         }
3912       else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p)))
3913         {
3914           /* Historically, the compiler has treated a bare
3915              reference to a volatile lvalue as forcing a load.  */
3916           tree tmp = create_tmp_var (TREE_TYPE (*expr_p), "vol");
3917           *expr_p = build (MODIFY_EXPR, TREE_TYPE (tmp), tmp, *expr_p);
3918         }
3919       else
3920         /* We can't do anything useful with a volatile reference to
3921            incomplete type, so just throw it away.  */
3922         *expr_p = NULL;
3923     }
3924
3925   /* If we are gimplifying at the statement level, we're done.  Tack
3926      everything together and replace the original statement with the
3927      gimplified form.  */
3928   if (fallback == fb_none || is_statement)
3929     {
3930       if (internal_pre || internal_post)
3931         {
3932           append_to_statement_list (*expr_p, &internal_pre);
3933           append_to_statement_list (internal_post, &internal_pre);
3934           annotate_all_with_locus (&internal_pre, input_location);
3935           *expr_p = internal_pre;
3936         }
3937       else if (!*expr_p)
3938         ;
3939       else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
3940         annotate_all_with_locus (expr_p, input_location);
3941       else
3942         annotate_one_with_locus (*expr_p, input_location);
3943       goto out;
3944     }
3945
3946   /* Otherwise we're gimplifying a subexpression, so the resulting value is
3947      interesting.  */
3948
3949   /* If it's sufficiently simple already, we're done.  Unless we are
3950      handling some post-effects internally; if that's the case, we need to
3951      copy into a temp before adding the post-effects to the tree.  */
3952   if (!internal_post && (*gimple_test_f) (*expr_p))
3953     goto out;
3954
3955   /* Otherwise, we need to create a new temporary for the gimplified
3956      expression.  */
3957
3958   /* We can't return an lvalue if we have an internal postqueue.  The
3959      object the lvalue refers to would (probably) be modified by the
3960      postqueue; we need to copy the value out first, which means an
3961      rvalue.  */
3962   if ((fallback & fb_lvalue) && !internal_post
3963       && is_gimple_addr_expr_arg (*expr_p))
3964     {
3965       /* An lvalue will do.  Take the address of the expression, store it
3966          in a temporary, and replace the expression with an INDIRECT_REF of
3967          that temporary.  */
3968       tmp = build_fold_addr_expr (*expr_p);
3969       gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
3970       *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
3971     }
3972   else if ((fallback & fb_rvalue) && is_gimple_rhs (*expr_p))
3973     {
3974 #if defined ENABLE_CHECKING
3975       if (VOID_TYPE_P (TREE_TYPE (*expr_p)))
3976         abort ();
3977 #endif
3978
3979       /* An rvalue will do.  Assign the gimplified expression into a new
3980          temporary TMP and replace the original expression with TMP.  */
3981
3982       if (internal_post || (fallback & fb_lvalue))
3983         /* The postqueue might change the value of the expression between
3984            the initialization and use of the temporary, so we can't use a
3985            formal temp.  FIXME do we care?  */
3986         *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
3987       else
3988         *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3989     }
3990   else if (fallback & fb_mayfail)
3991     {
3992       /* If this is an asm statement, and the user asked for the impossible,
3993          don't abort.  Fail and let gimplify_asm_expr issue an error.  */
3994       ret = GS_ERROR;
3995       goto out;
3996     }
3997   else
3998     {
3999       fprintf (stderr, "gimplification failed:\n");
4000       print_generic_expr (stderr, *expr_p, 0);
4001       debug_tree (*expr_p);
4002       abort ();
4003     }
4004
4005 #if defined ENABLE_CHECKING
4006   /* Make sure the temporary matches our predicate.  */
4007   if (!(*gimple_test_f) (*expr_p))
4008     abort ();
4009 #endif
4010
4011   if (internal_post)
4012     {
4013       annotate_all_with_locus (&internal_post, input_location);
4014       append_to_statement_list (internal_post, pre_p);
4015     }
4016
4017  out:
4018   input_location = saved_location;
4019   return ret;
4020 }
4021
4022 /* Look through TYPE for variable-sized objects and gimplify each such
4023    size that we find.  Add to LIST_P any statements generated.  */
4024
4025 void
4026 gimplify_type_sizes (tree type, tree *list_p)
4027 {
4028   tree field;
4029
4030   switch (TREE_CODE (type))
4031     {
4032     case ERROR_MARK:
4033       return;
4034
4035     case INTEGER_TYPE:
4036     case ENUMERAL_TYPE:
4037     case BOOLEAN_TYPE:
4038     case CHAR_TYPE:
4039     case REAL_TYPE:
4040       gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
4041       gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
4042       break;
4043
4044     case ARRAY_TYPE:
4045       /* These anonymous types don't have declarations, so handle them here. */
4046       gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
4047       break;
4048
4049     case RECORD_TYPE:
4050     case UNION_TYPE:
4051     case QUAL_UNION_TYPE:
4052       for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4053         if (TREE_CODE (field) == FIELD_DECL)
4054           gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
4055       break;
4056
4057     default:
4058       break;
4059     }
4060
4061   gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
4062   gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
4063 }
4064
4065 /* Subroutine of the above to gimplify one size or position, *EXPR_P.
4066    We add any required statements to STMT_P.  */
4067
4068 void
4069 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
4070 {
4071   /* We don't do anything if the value isn't there, is constant, or contains
4072      A PLACEHOLDER_EXPR.  */
4073   if (*expr_p == NULL_TREE || TREE_CONSTANT (*expr_p)
4074       || CONTAINS_PLACEHOLDER_P (*expr_p))
4075     return;
4076
4077   gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
4078 }
4079 \f
4080 #ifdef ENABLE_CHECKING
4081 /* Compare types A and B for a "close enough" match.  */
4082
4083 static bool
4084 cpt_same_type (tree a, tree b)
4085 {
4086   if (lang_hooks.types_compatible_p (a, b))
4087     return true;
4088
4089   /* ??? The C++ FE decomposes METHOD_TYPES to FUNCTION_TYPES and doesn't
4090      link them together.  This routine is intended to catch type errors
4091      that will affect the optimizers, and the optimizers don't add new
4092      dereferences of function pointers, so ignore it.  */
4093   if ((TREE_CODE (a) == FUNCTION_TYPE || TREE_CODE (a) == METHOD_TYPE)
4094       && (TREE_CODE (b) == FUNCTION_TYPE || TREE_CODE (b) == METHOD_TYPE))
4095     return true;
4096
4097   /* ??? The C FE pushes type qualifiers after the fact into the type of
4098      the element from the type of the array.  See build_unary_op's handling
4099      of ADDR_EXPR.  This seems wrong -- if we were going to do this, we
4100      should have done it when creating the variable in the first place.
4101      Alternately, why aren't the two array types made variants?  */
4102   if (TREE_CODE (a) == ARRAY_TYPE && TREE_CODE (b) == ARRAY_TYPE)
4103     return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
4104
4105   /* And because of those, we have to recurse down through pointers.  */
4106   if (POINTER_TYPE_P (a) && POINTER_TYPE_P (b))
4107     return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
4108
4109   return false;
4110 }
4111
4112 /* Check for some cases of the front end missing cast expressions.
4113    The type of a dereference should correspond to the pointer type;
4114    similarly the type of an address should match its object.  */
4115
4116 static tree
4117 check_pointer_types_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
4118                        void *data ATTRIBUTE_UNUSED)
4119 {
4120   tree t = *tp;
4121   tree ptype, otype, dtype;
4122
4123   switch (TREE_CODE (t))
4124     {
4125     case INDIRECT_REF:
4126     case ARRAY_REF:
4127       otype = TREE_TYPE (t);
4128       ptype = TREE_TYPE (TREE_OPERAND (t, 0));
4129       dtype = TREE_TYPE (ptype);
4130       if (!cpt_same_type (otype, dtype))
4131         abort ();
4132       break;
4133
4134     case ADDR_EXPR:
4135       ptype = TREE_TYPE (t);
4136       otype = TREE_TYPE (TREE_OPERAND (t, 0));
4137       dtype = TREE_TYPE (ptype);
4138       if (!cpt_same_type (otype, dtype))
4139         {
4140           /* &array is allowed to produce a pointer to the element, rather than
4141              a pointer to the array type.  We must allow this in order to
4142              properly represent assigning the address of an array in C into
4143              pointer to the element type.  */
4144           if (TREE_CODE (otype) == ARRAY_TYPE
4145               && POINTER_TYPE_P (ptype)
4146               && cpt_same_type (TREE_TYPE (otype), dtype))
4147             break;
4148           abort ();
4149         }
4150       break;
4151
4152     default:
4153       return NULL_TREE;
4154     }
4155
4156
4157   return NULL_TREE;
4158 }
4159 #endif
4160
4161 /* Gimplify the body of statements pointed by BODY_P.  FNDECL is the
4162    function decl containing BODY.  */
4163
4164 void
4165 gimplify_body (tree *body_p, tree fndecl)
4166 {
4167   location_t saved_location = input_location;
4168   tree body;
4169
4170   timevar_push (TV_TREE_GIMPLIFY);
4171   push_gimplify_context ();
4172
4173   /* Unshare most shared trees in the body and in that of any nested functions.
4174      It would seem we don't have to do this for nested functions because
4175      they are supposed to be output and then the outer function gimplified
4176      first, but the g++ front end doesn't always do it that way.  */
4177   unshare_body (body_p, fndecl);
4178   unvisit_body (body_p, fndecl);
4179
4180   /* Make sure input_location isn't set to something wierd.  */
4181   input_location = DECL_SOURCE_LOCATION (fndecl);
4182
4183   /* Gimplify the function's body.  */
4184   gimplify_stmt (body_p);
4185   body = *body_p;
4186
4187   /* Unshare again, in case gimplification was sloppy.  */
4188   unshare_all_trees (body);
4189
4190   if (!body)
4191     body = alloc_stmt_list ();
4192   else if (TREE_CODE (body) == STATEMENT_LIST)
4193     {
4194       tree t = expr_only (*body_p);
4195       if (t)
4196         body = t;
4197     }
4198
4199   /* If there isn't an outer BIND_EXPR, add one.  */
4200   if (TREE_CODE (body) != BIND_EXPR)
4201     {
4202       tree b = build (BIND_EXPR, void_type_node, NULL_TREE,
4203                       NULL_TREE, NULL_TREE);
4204       TREE_SIDE_EFFECTS (b) = 1;
4205       append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
4206       body = b;
4207     }
4208   *body_p = body;
4209
4210   pop_gimplify_context (body);
4211
4212 #ifdef ENABLE_CHECKING
4213   walk_tree (body_p, check_pointer_types_r, NULL, NULL);
4214 #endif
4215
4216   timevar_pop (TV_TREE_GIMPLIFY);
4217   input_location = saved_location;
4218 }
4219
4220 /* Entry point to the gimplification pass.  FNDECL is the FUNCTION_DECL
4221    node for the function we want to gimplify.  */
4222
4223 void
4224 gimplify_function_tree (tree fndecl)
4225 {
4226   tree oldfn;
4227
4228   oldfn = current_function_decl;
4229   current_function_decl = fndecl;
4230
4231   gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl);
4232
4233   /* If we're instrumenting function entry/exit, then prepend the call to
4234      the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
4235      catch the exit hook.  */
4236   /* ??? Add some way to ignore exceptions for this TFE.  */
4237   if (flag_instrument_function_entry_exit
4238       && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl))
4239     {
4240       tree tf, x, bind;
4241
4242       tf = build (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
4243       TREE_SIDE_EFFECTS (tf) = 1;
4244       x = DECL_SAVED_TREE (fndecl);
4245       append_to_statement_list (x, &TREE_OPERAND (tf, 0));
4246       x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
4247       x = build_function_call_expr (x, NULL);
4248       append_to_statement_list (x, &TREE_OPERAND (tf, 1));
4249
4250       bind = build (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4251       TREE_SIDE_EFFECTS (bind) = 1;
4252       x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
4253       x = build_function_call_expr (x, NULL);
4254       append_to_statement_list (x, &BIND_EXPR_BODY (bind));
4255       append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
4256
4257       DECL_SAVED_TREE (fndecl) = bind;
4258     }
4259
4260   current_function_decl = oldfn;
4261 }
4262
4263 #include "gt-gimplify.h"