OSDN Git Service

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