OSDN Git Service

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