OSDN Git Service

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