OSDN Git Service

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