OSDN Git Service

gcc/
[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, 2006 Free Software Foundation, Inc.
4    Major work done by Sebastian Pop <s.pop@laposte.net>,
5    Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING.  If not, write to the Free
21 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 02110-1301, USA.  */
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "rtl.h"
30 #include "varray.h"
31 #include "tree-gimple.h"
32 #include "tree-inline.h"
33 #include "diagnostic.h"
34 #include "langhooks.h"
35 #include "langhooks-def.h"
36 #include "tree-flow.h"
37 #include "cgraph.h"
38 #include "timevar.h"
39 #include "except.h"
40 #include "hashtab.h"
41 #include "flags.h"
42 #include "real.h"
43 #include "function.h"
44 #include "output.h"
45 #include "expr.h"
46 #include "ggc.h"
47 #include "toplev.h"
48 #include "target.h"
49 #include "optabs.h"
50 #include "pointer-set.h"
51
52
53 enum gimplify_omp_var_data
54 {
55   GOVD_SEEN = 1,
56   GOVD_EXPLICIT = 2,
57   GOVD_SHARED = 4,
58   GOVD_PRIVATE = 8,
59   GOVD_FIRSTPRIVATE = 16,
60   GOVD_LASTPRIVATE = 32,
61   GOVD_REDUCTION = 64,
62   GOVD_LOCAL = 128,
63   GOVD_DEBUG_PRIVATE = 256,
64   GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
65                            | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
66 };
67
68 struct gimplify_omp_ctx
69 {
70   struct gimplify_omp_ctx *outer_context;
71   splay_tree variables;
72   struct pointer_set_t *privatized_types;
73   location_t location;
74   enum omp_clause_default_kind default_kind;
75   bool is_parallel;
76   bool is_combined_parallel;
77 };
78
79 struct gimplify_ctx
80 {
81   struct gimplify_ctx *prev_context;
82
83   tree current_bind_expr;
84   tree temps;
85   tree conditional_cleanups;
86   tree exit_label;
87   tree return_temp;
88   
89   VEC(tree,heap) *case_labels;
90   /* The formal temporary table.  Should this be persistent?  */
91   htab_t temp_htab;
92
93   int conditions;
94   bool save_stack;
95   bool into_ssa;
96 };
97
98 static struct gimplify_ctx *gimplify_ctxp;
99 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
100
101
102
103 /* Formal (expression) temporary table handling: Multiple occurrences of
104    the same scalar expression are evaluated into the same temporary.  */
105
106 typedef struct gimple_temp_hash_elt
107 {
108   tree val;   /* Key */
109   tree temp;  /* Value */
110 } elt_t;
111
112 /* Forward declarations.  */
113 static enum gimplify_status gimplify_compound_expr (tree *, tree *, bool);
114 #ifdef ENABLE_CHECKING
115 static bool cpt_same_type (tree a, tree b);
116 #endif
117
118
119 /* Return a hash value for a formal temporary table entry.  */
120
121 static hashval_t
122 gimple_tree_hash (const void *p)
123 {
124   tree t = ((const elt_t *) p)->val;
125   return iterative_hash_expr (t, 0);
126 }
127
128 /* Compare two formal temporary table entries.  */
129
130 static int
131 gimple_tree_eq (const void *p1, const void *p2)
132 {
133   tree t1 = ((const elt_t *) p1)->val;
134   tree t2 = ((const elt_t *) p2)->val;
135   enum tree_code code = TREE_CODE (t1);
136
137   if (TREE_CODE (t2) != code
138       || TREE_TYPE (t1) != TREE_TYPE (t2))
139     return 0;
140
141   if (!operand_equal_p (t1, t2, 0))
142     return 0;
143
144   /* Only allow them to compare equal if they also hash equal; otherwise
145      results are nondeterminate, and we fail bootstrap comparison.  */
146   gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
147
148   return 1;
149 }
150
151 /* Set up a context for the gimplifier.  */
152
153 void
154 push_gimplify_context (void)
155 {
156   struct gimplify_ctx *c;
157
158   c = (struct gimplify_ctx *) xcalloc (1, sizeof (struct gimplify_ctx));
159   c->prev_context = gimplify_ctxp;
160   if (optimize)
161     c->temp_htab = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
162
163   gimplify_ctxp = c;
164 }
165
166 /* Tear down a context for the gimplifier.  If BODY is non-null, then
167    put the temporaries into the outer BIND_EXPR.  Otherwise, put them
168    in the unexpanded_var_list.  */
169
170 void
171 pop_gimplify_context (tree body)
172 {
173   struct gimplify_ctx *c = gimplify_ctxp;
174   tree t;
175
176   gcc_assert (c && !c->current_bind_expr);
177   gimplify_ctxp = c->prev_context;
178
179   for (t = c->temps; t ; t = TREE_CHAIN (t))
180     DECL_GIMPLE_FORMAL_TEMP_P (t) = 0;
181
182   if (body)
183     declare_vars (c->temps, body, false);
184   else
185     record_vars (c->temps);
186
187   if (optimize)
188     htab_delete (c->temp_htab);
189   free (c);
190 }
191
192 static void
193 gimple_push_bind_expr (tree bind)
194 {
195   TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr;
196   gimplify_ctxp->current_bind_expr = bind;
197 }
198
199 static void
200 gimple_pop_bind_expr (void)
201 {
202   gimplify_ctxp->current_bind_expr
203     = TREE_CHAIN (gimplify_ctxp->current_bind_expr);
204 }
205
206 tree
207 gimple_current_bind_expr (void)
208 {
209   return gimplify_ctxp->current_bind_expr;
210 }
211
212 /* Returns true iff there is a COND_EXPR between us and the innermost
213    CLEANUP_POINT_EXPR.  This info is used by gimple_push_cleanup.  */
214
215 static bool
216 gimple_conditional_context (void)
217 {
218   return gimplify_ctxp->conditions > 0;
219 }
220
221 /* Note that we've entered a COND_EXPR.  */
222
223 static void
224 gimple_push_condition (void)
225 {
226 #ifdef ENABLE_CHECKING
227   if (gimplify_ctxp->conditions == 0)
228     gcc_assert (!gimplify_ctxp->conditional_cleanups);
229 #endif
230   ++(gimplify_ctxp->conditions);
231 }
232
233 /* Note that we've left a COND_EXPR.  If we're back at unconditional scope
234    now, add any conditional cleanups we've seen to the prequeue.  */
235
236 static void
237 gimple_pop_condition (tree *pre_p)
238 {
239   int conds = --(gimplify_ctxp->conditions);
240
241   gcc_assert (conds >= 0);
242   if (conds == 0)
243     {
244       append_to_statement_list (gimplify_ctxp->conditional_cleanups, pre_p);
245       gimplify_ctxp->conditional_cleanups = NULL_TREE;
246     }
247 }
248
249 /* A stable comparison routine for use with splay trees and DECLs.  */
250
251 static int
252 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
253 {
254   tree a = (tree) xa;
255   tree b = (tree) xb;
256
257   return DECL_UID (a) - DECL_UID (b);
258 }
259
260 /* Create a new omp construct that deals with variable remapping.  */
261
262 static struct gimplify_omp_ctx *
263 new_omp_context (bool is_parallel, bool is_combined_parallel)
264 {
265   struct gimplify_omp_ctx *c;
266
267   c = XCNEW (struct gimplify_omp_ctx);
268   c->outer_context = gimplify_omp_ctxp;
269   c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
270   c->privatized_types = pointer_set_create ();
271   c->location = input_location;
272   c->is_parallel = is_parallel;
273   c->is_combined_parallel = is_combined_parallel;
274   c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
275
276   return c;
277 }
278
279 /* Destroy an omp construct that deals with variable remapping.  */
280
281 static void
282 delete_omp_context (struct gimplify_omp_ctx *c)
283 {
284   splay_tree_delete (c->variables);
285   pointer_set_destroy (c->privatized_types);
286   XDELETE (c);
287 }
288
289 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
290 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
291
292 /* A subroutine of append_to_statement_list{,_force}.  T is not NULL.  */
293
294 static void
295 append_to_statement_list_1 (tree t, tree *list_p)
296 {
297   tree list = *list_p;
298   tree_stmt_iterator i;
299
300   if (!list)
301     {
302       if (t && TREE_CODE (t) == STATEMENT_LIST)
303         {
304           *list_p = t;
305           return;
306         }
307       *list_p = list = alloc_stmt_list ();
308     }
309
310   i = tsi_last (list);
311   tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
312 }
313
314 /* Add T to the end of the list container pointed to by LIST_P.
315    If T is an expression with no effects, it is ignored.  */
316
317 void
318 append_to_statement_list (tree t, tree *list_p)
319 {
320   if (t && TREE_SIDE_EFFECTS (t))
321     append_to_statement_list_1 (t, list_p);
322 }
323
324 /* Similar, but the statement is always added, regardless of side effects.  */
325
326 void
327 append_to_statement_list_force (tree t, tree *list_p)
328 {
329   if (t != NULL_TREE)
330     append_to_statement_list_1 (t, list_p);
331 }
332
333 /* Both gimplify the statement T and append it to LIST_P.  */
334
335 void
336 gimplify_and_add (tree t, tree *list_p)
337 {
338   gimplify_stmt (&t);
339   append_to_statement_list (t, list_p);
340 }
341
342 /* Strip off a legitimate source ending from the input string NAME of
343    length LEN.  Rather than having to know the names used by all of
344    our front ends, we strip off an ending of a period followed by
345    up to five characters.  (Java uses ".class".)  */
346
347 static inline void
348 remove_suffix (char *name, int len)
349 {
350   int i;
351
352   for (i = 2;  i < 8 && len > i;  i++)
353     {
354       if (name[len - i] == '.')
355         {
356           name[len - i] = '\0';
357           break;
358         }
359     }
360 }
361
362 /* Create a nameless artificial label and put it in the current function
363    context.  Returns the newly created label.  */
364
365 tree
366 create_artificial_label (void)
367 {
368   tree lab = build_decl (LABEL_DECL, NULL_TREE, void_type_node);
369
370   DECL_ARTIFICIAL (lab) = 1;
371   DECL_IGNORED_P (lab) = 1;
372   DECL_CONTEXT (lab) = current_function_decl;
373   return lab;
374 }
375
376 /* Subroutine for find_single_pointer_decl.  */
377
378 static tree
379 find_single_pointer_decl_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
380                             void *data)
381 {
382   tree *pdecl = (tree *) data;
383
384   if (DECL_P (*tp) && POINTER_TYPE_P (TREE_TYPE (*tp)))
385     {
386       if (*pdecl)
387         {
388           /* We already found a pointer decl; return anything other
389              than NULL_TREE to unwind from walk_tree signalling that
390              we have a duplicate.  */
391           return *tp;
392         }
393       *pdecl = *tp;
394     }
395
396   return NULL_TREE;
397 }
398
399 /* Find the single DECL of pointer type in the tree T and return it.
400    If there are zero or more than one such DECLs, return NULL.  */
401
402 static tree
403 find_single_pointer_decl (tree t)
404 {
405   tree decl = NULL_TREE;
406
407   if (walk_tree (&t, find_single_pointer_decl_1, &decl, NULL))
408     {
409       /* find_single_pointer_decl_1 returns a nonzero value, causing
410          walk_tree to return a nonzero value, to indicate that it
411          found more than one pointer DECL.  */
412       return NULL_TREE;
413     }
414
415   return decl;
416 }
417
418 /* Create a new temporary name with PREFIX.  Returns an identifier.  */
419
420 static GTY(()) unsigned int tmp_var_id_num;
421
422 tree
423 create_tmp_var_name (const char *prefix)
424 {
425   char *tmp_name;
426
427   if (prefix)
428     {
429       char *preftmp = ASTRDUP (prefix);
430
431       remove_suffix (preftmp, strlen (preftmp));
432       prefix = preftmp;
433     }
434
435   ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
436   return get_identifier (tmp_name);
437 }
438
439
440 /* Create a new temporary variable declaration of type TYPE.
441    Does NOT push it into the current binding.  */
442
443 tree
444 create_tmp_var_raw (tree type, const char *prefix)
445 {
446   tree tmp_var;
447   tree new_type;
448
449   /* Make the type of the variable writable.  */
450   new_type = build_type_variant (type, 0, 0);
451   TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
452
453   tmp_var = build_decl (VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
454                         type);
455
456   /* The variable was declared by the compiler.  */
457   DECL_ARTIFICIAL (tmp_var) = 1;
458   /* And we don't want debug info for it.  */
459   DECL_IGNORED_P (tmp_var) = 1;
460
461   /* Make the variable writable.  */
462   TREE_READONLY (tmp_var) = 0;
463
464   DECL_EXTERNAL (tmp_var) = 0;
465   TREE_STATIC (tmp_var) = 0;
466   TREE_USED (tmp_var) = 1;
467
468   return tmp_var;
469 }
470
471 /* Create a new temporary variable declaration of type TYPE.  DOES push the
472    variable into the current binding.  Further, assume that this is called
473    only from gimplification or optimization, at which point the creation of
474    certain types are bugs.  */
475
476 tree
477 create_tmp_var (tree type, const char *prefix)
478 {
479   tree tmp_var;
480
481   /* We don't allow types that are addressable (meaning we can't make copies),
482      or incomplete.  We also used to reject every variable size objects here,
483      but now support those for which a constant upper bound can be obtained.
484      The processing for variable sizes is performed in gimple_add_tmp_var,
485      point at which it really matters and possibly reached via paths not going
486      through this function, e.g. after direct calls to create_tmp_var_raw.  */
487   gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
488
489   tmp_var = create_tmp_var_raw (type, prefix);
490   gimple_add_tmp_var (tmp_var);
491   return tmp_var;
492 }
493
494 /*  Given a tree, try to return a useful variable name that we can use
495     to prefix a temporary that is being assigned the value of the tree.
496     I.E. given  <temp> = &A, return A.  */
497
498 const char *
499 get_name (tree t)
500 {
501   tree stripped_decl;
502
503   stripped_decl = t;
504   STRIP_NOPS (stripped_decl);
505   if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
506     return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
507   else
508     {
509       switch (TREE_CODE (stripped_decl))
510         {
511         case ADDR_EXPR:
512           return get_name (TREE_OPERAND (stripped_decl, 0));
513         default:
514           return NULL;
515         }
516     }
517 }
518
519 /* Create a temporary with a name derived from VAL.  Subroutine of
520    lookup_tmp_var; nobody else should call this function.  */
521
522 static inline tree
523 create_tmp_from_val (tree val)
524 {
525   return create_tmp_var (TYPE_MAIN_VARIANT (TREE_TYPE (val)), get_name (val));
526 }
527
528 /* Create a temporary to hold the value of VAL.  If IS_FORMAL, try to reuse
529    an existing expression temporary.  */
530
531 static tree
532 lookup_tmp_var (tree val, bool is_formal)
533 {
534   tree ret;
535
536   /* If not optimizing, never really reuse a temporary.  local-alloc
537      won't allocate any variable that is used in more than one basic
538      block, which means it will go into memory, causing much extra
539      work in reload and final and poorer code generation, outweighing
540      the extra memory allocation here.  */
541   if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
542     ret = create_tmp_from_val (val);
543   else
544     {
545       elt_t elt, *elt_p;
546       void **slot;
547
548       elt.val = val;
549       slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
550       if (*slot == NULL)
551         {
552           elt_p = XNEW (elt_t);
553           elt_p->val = val;
554           elt_p->temp = ret = create_tmp_from_val (val);
555           *slot = (void *) elt_p;
556         }
557       else
558         {
559           elt_p = (elt_t *) *slot;
560           ret = elt_p->temp;
561         }
562     }
563
564   if (is_formal)
565     DECL_GIMPLE_FORMAL_TEMP_P (ret) = 1;
566
567   return ret;
568 }
569
570 /* Returns a formal temporary variable initialized with VAL.  PRE_P is as
571    in gimplify_expr.  Only use this function if:
572
573    1) The value of the unfactored expression represented by VAL will not
574       change between the initialization and use of the temporary, and
575    2) The temporary will not be otherwise modified.
576
577    For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
578    and #2 means it is inappropriate for && temps.
579
580    For other cases, use get_initialized_tmp_var instead.  */
581
582 static tree
583 internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
584 {
585   tree t, mod;
586
587   gimplify_expr (&val, pre_p, post_p, is_gimple_formal_tmp_rhs, fb_rvalue);
588
589   t = lookup_tmp_var (val, is_formal);
590
591   if (is_formal)
592     {
593       tree u = find_single_pointer_decl (val);
594
595       if (u && TREE_CODE (u) == VAR_DECL && DECL_BASED_ON_RESTRICT_P (u))
596         u = DECL_GET_RESTRICT_BASE (u);
597       if (u && TYPE_RESTRICT (TREE_TYPE (u)))
598         {
599           if (DECL_BASED_ON_RESTRICT_P (t))
600             gcc_assert (u == DECL_GET_RESTRICT_BASE (t));
601           else
602             {
603               DECL_BASED_ON_RESTRICT_P (t) = 1;
604               SET_DECL_RESTRICT_BASE (t, u);
605             }
606         }
607     }
608
609   if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE)
610     DECL_COMPLEX_GIMPLE_REG_P (t) = 1;
611
612   mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
613
614   if (EXPR_HAS_LOCATION (val))
615     SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
616   else
617     SET_EXPR_LOCATION (mod, input_location);
618
619   /* gimplify_modify_expr might want to reduce this further.  */
620   gimplify_and_add (mod, pre_p);
621
622   /* If we're gimplifying into ssa, gimplify_modify_expr will have
623      given our temporary an ssa name.  Find and return it.  */
624   if (gimplify_ctxp->into_ssa)
625     t = TREE_OPERAND (mod, 0);
626
627   return t;
628 }
629
630 /* Returns a formal temporary variable initialized with VAL.  PRE_P
631    points to a statement list where side-effects needed to compute VAL
632    should be stored.  */
633
634 tree
635 get_formal_tmp_var (tree val, tree *pre_p)
636 {
637   return internal_get_tmp_var (val, pre_p, NULL, true);
638 }
639
640 /* Returns a temporary variable initialized with VAL.  PRE_P and POST_P
641    are as in gimplify_expr.  */
642
643 tree
644 get_initialized_tmp_var (tree val, tree *pre_p, tree *post_p)
645 {
646   return internal_get_tmp_var (val, pre_p, post_p, false);
647 }
648
649 /* Declares all the variables in VARS in SCOPE.  If DEBUG_INFO is
650    true, generate debug info for them; otherwise don't.  */
651
652 void
653 declare_vars (tree vars, tree scope, bool debug_info)
654 {
655   tree last = vars;
656   if (last)
657     {
658       tree temps, block;
659
660       /* C99 mode puts the default 'return 0;' for main outside the outer
661          braces.  So drill down until we find an actual scope.  */
662       while (TREE_CODE (scope) == COMPOUND_EXPR)
663         scope = TREE_OPERAND (scope, 0);
664
665       gcc_assert (TREE_CODE (scope) == BIND_EXPR);
666
667       temps = nreverse (last);
668
669       block = BIND_EXPR_BLOCK (scope);
670       if (!block || !debug_info)
671         {
672           TREE_CHAIN (last) = BIND_EXPR_VARS (scope);
673           BIND_EXPR_VARS (scope) = temps;
674         }
675       else
676         {
677           /* We need to attach the nodes both to the BIND_EXPR and to its
678              associated BLOCK for debugging purposes.  The key point here
679              is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
680              is a subchain of the BIND_EXPR_VARS of the BIND_EXPR.  */
681           if (BLOCK_VARS (block))
682             BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
683           else
684             {
685               BIND_EXPR_VARS (scope) = chainon (BIND_EXPR_VARS (scope), temps);
686               BLOCK_VARS (block) = temps;
687             }
688         }
689     }
690 }
691
692 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
693    for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly.  Abort if
694    no such upper bound can be obtained.  */
695
696 static void
697 force_constant_size (tree var)
698 {
699   /* The only attempt we make is by querying the maximum size of objects
700      of the variable's type.  */
701
702   HOST_WIDE_INT max_size;
703
704   gcc_assert (TREE_CODE (var) == VAR_DECL);
705
706   max_size = max_int_size_in_bytes (TREE_TYPE (var));
707
708   gcc_assert (max_size >= 0);
709
710   DECL_SIZE_UNIT (var)
711     = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
712   DECL_SIZE (var)
713     = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
714 }
715
716 void
717 gimple_add_tmp_var (tree tmp)
718 {
719   gcc_assert (!TREE_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
720
721   /* Later processing assumes that the object size is constant, which might
722      not be true at this point.  Force the use of a constant upper bound in
723      this case.  */
724   if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
725     force_constant_size (tmp);
726
727   DECL_CONTEXT (tmp) = current_function_decl;
728   DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
729
730   if (gimplify_ctxp)
731     {
732       TREE_CHAIN (tmp) = gimplify_ctxp->temps;
733       gimplify_ctxp->temps = tmp;
734
735       /* Mark temporaries local within the nearest enclosing parallel.  */
736       if (gimplify_omp_ctxp)
737         {
738           struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
739           while (ctx && !ctx->is_parallel)
740             ctx = ctx->outer_context;
741           if (ctx)
742             omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
743         }
744     }
745   else if (cfun)
746     record_vars (tmp);
747   else
748     declare_vars (tmp, DECL_SAVED_TREE (current_function_decl), false);
749 }
750
751 /* Determines whether to assign a locus to the statement STMT.  */
752
753 static bool
754 should_carry_locus_p (tree stmt)
755 {
756   /* Don't emit a line note for a label.  We particularly don't want to
757      emit one for the break label, since it doesn't actually correspond
758      to the beginning of the loop/switch.  */
759   if (TREE_CODE (stmt) == LABEL_EXPR)
760     return false;
761
762   /* Do not annotate empty statements, since it confuses gcov.  */
763   if (!TREE_SIDE_EFFECTS (stmt))
764     return false;
765
766   return true;
767 }
768
769 static void
770 annotate_one_with_locus (tree t, location_t locus)
771 {
772   if (EXPR_P (t) && ! EXPR_HAS_LOCATION (t) && should_carry_locus_p (t))
773     SET_EXPR_LOCATION (t, locus);
774 }
775
776 void
777 annotate_all_with_locus (tree *stmt_p, location_t locus)
778 {
779   tree_stmt_iterator i;
780
781   if (!*stmt_p)
782     return;
783
784   for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
785     {
786       tree t = tsi_stmt (i);
787
788       /* Assuming we've already been gimplified, we shouldn't
789           see nested chaining constructs anymore.  */
790       gcc_assert (TREE_CODE (t) != STATEMENT_LIST
791                   && TREE_CODE (t) != COMPOUND_EXPR);
792
793       annotate_one_with_locus (t, locus);
794     }
795 }
796
797 /* Similar to copy_tree_r() but do not copy SAVE_EXPR or TARGET_EXPR nodes.
798    These nodes model computations that should only be done once.  If we
799    were to unshare something like SAVE_EXPR(i++), the gimplification
800    process would create wrong code.  */
801
802 static tree
803 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
804 {
805   enum tree_code code = TREE_CODE (*tp);
806   /* Don't unshare types, decls, constants and SAVE_EXPR nodes.  */
807   if (TREE_CODE_CLASS (code) == tcc_type
808       || TREE_CODE_CLASS (code) == tcc_declaration
809       || TREE_CODE_CLASS (code) == tcc_constant
810       || code == SAVE_EXPR || code == TARGET_EXPR
811       /* We can't do anything sensible with a BLOCK used as an expression,
812          but we also can't just die when we see it because of non-expression
813          uses.  So just avert our eyes and cross our fingers.  Silly Java.  */
814       || code == BLOCK)
815     *walk_subtrees = 0;
816   else
817     {
818       gcc_assert (code != BIND_EXPR);
819       copy_tree_r (tp, walk_subtrees, data);
820     }
821
822   return NULL_TREE;
823 }
824
825 /* Callback for walk_tree to unshare most of the shared trees rooted at
826    *TP.  If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
827    then *TP is deep copied by calling copy_tree_r.
828
829    This unshares the same trees as copy_tree_r with the exception of
830    SAVE_EXPR nodes.  These nodes model computations that should only be
831    done once.  If we were to unshare something like SAVE_EXPR(i++), the
832    gimplification process would create wrong code.  */
833
834 static tree
835 copy_if_shared_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
836                   void *data ATTRIBUTE_UNUSED)
837 {
838   tree t = *tp;
839   enum tree_code code = TREE_CODE (t);
840
841   /* Skip types, decls, and constants.  But we do want to look at their
842      types and the bounds of types.  Mark them as visited so we properly
843      unmark their subtrees on the unmark pass.  If we've already seen them,
844      don't look down further.  */
845   if (TREE_CODE_CLASS (code) == tcc_type
846       || TREE_CODE_CLASS (code) == tcc_declaration
847       || TREE_CODE_CLASS (code) == tcc_constant)
848     {
849       if (TREE_VISITED (t))
850         *walk_subtrees = 0;
851       else
852         TREE_VISITED (t) = 1;
853     }
854
855   /* If this node has been visited already, unshare it and don't look
856      any deeper.  */
857   else if (TREE_VISITED (t))
858     {
859       walk_tree (tp, mostly_copy_tree_r, NULL, NULL);
860       *walk_subtrees = 0;
861     }
862
863   /* Otherwise, mark the tree as visited and keep looking.  */
864   else
865     TREE_VISITED (t) = 1;
866
867   return NULL_TREE;
868 }
869
870 static tree
871 unmark_visited_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
872                   void *data ATTRIBUTE_UNUSED)
873 {
874   if (TREE_VISITED (*tp))
875     TREE_VISITED (*tp) = 0;
876   else
877     *walk_subtrees = 0;
878
879   return NULL_TREE;
880 }
881
882 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
883    bodies of any nested functions if we are unsharing the entire body of
884    FNDECL.  */
885
886 static void
887 unshare_body (tree *body_p, tree fndecl)
888 {
889   struct cgraph_node *cgn = cgraph_node (fndecl);
890
891   walk_tree (body_p, copy_if_shared_r, NULL, NULL);
892   if (body_p == &DECL_SAVED_TREE (fndecl))
893     for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
894       unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
895 }
896
897 /* Likewise, but mark all trees as not visited.  */
898
899 static void
900 unvisit_body (tree *body_p, tree fndecl)
901 {
902   struct cgraph_node *cgn = cgraph_node (fndecl);
903
904   walk_tree (body_p, unmark_visited_r, NULL, NULL);
905   if (body_p == &DECL_SAVED_TREE (fndecl))
906     for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
907       unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
908 }
909
910 /* Unshare T and all the trees reached from T via TREE_CHAIN.  */
911
912 static void
913 unshare_all_trees (tree t)
914 {
915   walk_tree (&t, copy_if_shared_r, NULL, NULL);
916   walk_tree (&t, unmark_visited_r, NULL, NULL);
917 }
918
919 /* Unconditionally make an unshared copy of EXPR.  This is used when using
920    stored expressions which span multiple functions, such as BINFO_VTABLE,
921    as the normal unsharing process can't tell that they're shared.  */
922
923 tree
924 unshare_expr (tree expr)
925 {
926   walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
927   return expr;
928 }
929
930 /* A terser interface for building a representation of an exception
931    specification.  */
932
933 tree
934 gimple_build_eh_filter (tree body, tree allowed, tree failure)
935 {
936   tree t;
937
938   /* FIXME should the allowed types go in TREE_TYPE?  */
939   t = build2 (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE);
940   append_to_statement_list (failure, &EH_FILTER_FAILURE (t));
941
942   t = build2 (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t);
943   append_to_statement_list (body, &TREE_OPERAND (t, 0));
944
945   return t;
946 }
947
948 \f
949 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
950    contain statements and have a value.  Assign its value to a temporary
951    and give it void_type_node.  Returns the temporary, or NULL_TREE if
952    WRAPPER was already void.  */
953
954 tree
955 voidify_wrapper_expr (tree wrapper, tree temp)
956 {
957   tree type = TREE_TYPE (wrapper);
958   if (type && !VOID_TYPE_P (type))
959     {
960       tree *p;
961
962       /* Set p to point to the body of the wrapper.  Loop until we find
963          something that isn't a wrapper.  */
964       for (p = &wrapper; p && *p; )
965         {
966           switch (TREE_CODE (*p))
967             {
968             case BIND_EXPR:
969               TREE_SIDE_EFFECTS (*p) = 1;
970               TREE_TYPE (*p) = void_type_node;
971               /* For a BIND_EXPR, the body is operand 1.  */
972               p = &BIND_EXPR_BODY (*p);
973               break;
974
975             case CLEANUP_POINT_EXPR:
976             case TRY_FINALLY_EXPR:
977             case TRY_CATCH_EXPR:
978               TREE_SIDE_EFFECTS (*p) = 1;
979               TREE_TYPE (*p) = void_type_node;
980               p = &TREE_OPERAND (*p, 0);
981               break;
982
983             case STATEMENT_LIST:
984               {
985                 tree_stmt_iterator i = tsi_last (*p);
986                 TREE_SIDE_EFFECTS (*p) = 1;
987                 TREE_TYPE (*p) = void_type_node;
988                 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
989               }
990               break;
991
992             case COMPOUND_EXPR:
993               /* Advance to the last statement.  Set all container types to void.  */
994               for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
995                 {
996                   TREE_SIDE_EFFECTS (*p) = 1;
997                   TREE_TYPE (*p) = void_type_node;
998                 }
999               break;
1000
1001             default:
1002               goto out;
1003             }
1004         }
1005
1006     out:
1007       if (p == NULL || IS_EMPTY_STMT (*p))
1008         temp = NULL_TREE;
1009       else if (temp)
1010         {
1011           /* The wrapper is on the RHS of an assignment that we're pushing
1012              down.  */
1013           gcc_assert (TREE_CODE (temp) == INIT_EXPR
1014                       || TREE_CODE (temp) == MODIFY_EXPR);
1015           TREE_OPERAND (temp, 1) = *p;
1016           *p = temp;
1017         }
1018       else
1019         {
1020           temp = create_tmp_var (type, "retval");
1021           *p = build2 (INIT_EXPR, type, temp, *p);
1022         }
1023
1024       return temp;
1025     }
1026
1027   return NULL_TREE;
1028 }
1029
1030 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1031    a temporary through which they communicate.  */
1032
1033 static void
1034 build_stack_save_restore (tree *save, tree *restore)
1035 {
1036   tree save_call, tmp_var;
1037
1038   save_call =
1039       build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_SAVE],
1040                                 NULL_TREE);
1041   tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1042
1043   *save = build2 (MODIFY_EXPR, ptr_type_node, tmp_var, save_call);
1044   *restore =
1045     build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
1046                               tree_cons (NULL_TREE, tmp_var, NULL_TREE));
1047 }
1048
1049 /* Gimplify a BIND_EXPR.  Just voidify and recurse.  */
1050
1051 static enum gimplify_status
1052 gimplify_bind_expr (tree *expr_p, tree *pre_p)
1053 {
1054   tree bind_expr = *expr_p;
1055   bool old_save_stack = gimplify_ctxp->save_stack;
1056   tree t;
1057
1058   tree temp = voidify_wrapper_expr (bind_expr, NULL);
1059
1060   /* Mark variables seen in this bind expr.  */
1061   for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
1062     {
1063       if (TREE_CODE (t) == VAR_DECL)
1064         {
1065           struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1066
1067           /* Mark variable as local.  */
1068           if (ctx && !is_global_var (t)
1069               && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1070                   || splay_tree_lookup (ctx->variables,
1071                                         (splay_tree_key) t) == NULL))
1072             omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1073
1074           DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1075         }
1076
1077       /* Preliminarily mark non-addressed complex variables as eligible
1078          for promotion to gimple registers.  We'll transform their uses
1079          as we find them.  */
1080       if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1081           && !TREE_THIS_VOLATILE (t)
1082           && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1083           && !needs_to_live_in_memory (t))
1084         DECL_COMPLEX_GIMPLE_REG_P (t) = 1;
1085     }
1086
1087   gimple_push_bind_expr (bind_expr);
1088   gimplify_ctxp->save_stack = false;
1089
1090   gimplify_to_stmt_list (&BIND_EXPR_BODY (bind_expr));
1091
1092   if (gimplify_ctxp->save_stack)
1093     {
1094       tree stack_save, stack_restore;
1095
1096       /* Save stack on entry and restore it on exit.  Add a try_finally
1097          block to achieve this.  Note that mudflap depends on the
1098          format of the emitted code: see mx_register_decls().  */
1099       build_stack_save_restore (&stack_save, &stack_restore);
1100
1101       t = build2 (TRY_FINALLY_EXPR, void_type_node,
1102                   BIND_EXPR_BODY (bind_expr), NULL_TREE);
1103       append_to_statement_list (stack_restore, &TREE_OPERAND (t, 1));
1104
1105       BIND_EXPR_BODY (bind_expr) = NULL_TREE;
1106       append_to_statement_list (stack_save, &BIND_EXPR_BODY (bind_expr));
1107       append_to_statement_list (t, &BIND_EXPR_BODY (bind_expr));
1108     }
1109
1110   gimplify_ctxp->save_stack = old_save_stack;
1111   gimple_pop_bind_expr ();
1112
1113   if (temp)
1114     {
1115       *expr_p = temp;
1116       append_to_statement_list (bind_expr, pre_p);
1117       return GS_OK;
1118     }
1119   else
1120     return GS_ALL_DONE;
1121 }
1122
1123 /* Gimplify a RETURN_EXPR.  If the expression to be returned is not a
1124    GIMPLE value, it is assigned to a new temporary and the statement is
1125    re-written to return the temporary.
1126
1127    PRE_P points to the list where side effects that must happen before
1128    STMT should be stored.  */
1129
1130 static enum gimplify_status
1131 gimplify_return_expr (tree stmt, tree *pre_p)
1132 {
1133   tree ret_expr = TREE_OPERAND (stmt, 0);
1134   tree result_decl, result;
1135
1136   if (!ret_expr || TREE_CODE (ret_expr) == RESULT_DECL
1137       || ret_expr == error_mark_node)
1138     return GS_ALL_DONE;
1139
1140   if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1141     result_decl = NULL_TREE;
1142   else
1143     {
1144       result_decl = TREE_OPERAND (ret_expr, 0);
1145       if (TREE_CODE (result_decl) == INDIRECT_REF)
1146         /* See through a return by reference.  */
1147         result_decl = TREE_OPERAND (result_decl, 0);
1148
1149       gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1150                    || TREE_CODE (ret_expr) == INIT_EXPR)
1151                   && TREE_CODE (result_decl) == RESULT_DECL);
1152     }
1153
1154   /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1155      Recall that aggregate_value_p is FALSE for any aggregate type that is
1156      returned in registers.  If we're returning values in registers, then
1157      we don't want to extend the lifetime of the RESULT_DECL, particularly
1158      across another call.  In addition, for those aggregates for which
1159      hard_function_value generates a PARALLEL, we'll die during normal
1160      expansion of structure assignments; there's special code in expand_return
1161      to handle this case that does not exist in expand_expr.  */
1162   if (!result_decl
1163       || aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1164     result = result_decl;
1165   else if (gimplify_ctxp->return_temp)
1166     result = gimplify_ctxp->return_temp;
1167   else
1168     {
1169       result = create_tmp_var (TREE_TYPE (result_decl), NULL);
1170
1171       /* ??? With complex control flow (usually involving abnormal edges),
1172          we can wind up warning about an uninitialized value for this.  Due
1173          to how this variable is constructed and initialized, this is never
1174          true.  Give up and never warn.  */
1175       TREE_NO_WARNING (result) = 1;
1176
1177       gimplify_ctxp->return_temp = result;
1178     }
1179
1180   /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1181      Then gimplify the whole thing.  */
1182   if (result != result_decl)
1183     TREE_OPERAND (ret_expr, 0) = result;
1184
1185   gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1186
1187   /* If we didn't use a temporary, then the result is just the result_decl.
1188      Otherwise we need a simple copy.  This should already be gimple.  */
1189   if (result == result_decl)
1190     ret_expr = result;
1191   else
1192     ret_expr = build2 (MODIFY_EXPR, TREE_TYPE (result), result_decl, result);
1193   TREE_OPERAND (stmt, 0) = ret_expr;
1194
1195   return GS_ALL_DONE;
1196 }
1197
1198 /* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
1199    and initialization explicit.  */
1200
1201 static enum gimplify_status
1202 gimplify_decl_expr (tree *stmt_p)
1203 {
1204   tree stmt = *stmt_p;
1205   tree decl = DECL_EXPR_DECL (stmt);
1206
1207   *stmt_p = NULL_TREE;
1208
1209   if (TREE_TYPE (decl) == error_mark_node)
1210     return GS_ERROR;
1211
1212   if ((TREE_CODE (decl) == TYPE_DECL
1213        || TREE_CODE (decl) == VAR_DECL)
1214       && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1215     gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1216
1217   if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1218     {
1219       tree init = DECL_INITIAL (decl);
1220
1221       if (TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
1222         {
1223           /* This is a variable-sized decl.  Simplify its size and mark it
1224              for deferred expansion.  Note that mudflap depends on the format
1225              of the emitted code: see mx_register_decls().  */
1226           tree t, args, addr, ptr_type;
1227
1228           gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p);
1229           gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1230
1231           /* All occurrences of this decl in final gimplified code will be
1232              replaced by indirection.  Setting DECL_VALUE_EXPR does two
1233              things: First, it lets the rest of the gimplifier know what
1234              replacement to use.  Second, it lets the debug info know
1235              where to find the value.  */
1236           ptr_type = build_pointer_type (TREE_TYPE (decl));
1237           addr = create_tmp_var (ptr_type, get_name (decl));
1238           DECL_IGNORED_P (addr) = 0;
1239           t = build_fold_indirect_ref (addr);
1240           SET_DECL_VALUE_EXPR (decl, t);
1241           DECL_HAS_VALUE_EXPR_P (decl) = 1;
1242
1243           args = tree_cons (NULL, DECL_SIZE_UNIT (decl), NULL);
1244           t = built_in_decls[BUILT_IN_ALLOCA];
1245           t = build_function_call_expr (t, args);
1246           t = fold_convert (ptr_type, t);
1247           t = build2 (MODIFY_EXPR, void_type_node, addr, t);
1248
1249           gimplify_and_add (t, stmt_p);
1250
1251           /* Indicate that we need to restore the stack level when the
1252              enclosing BIND_EXPR is exited.  */
1253           gimplify_ctxp->save_stack = true;
1254         }
1255
1256       if (init && init != error_mark_node)
1257         {
1258           if (!TREE_STATIC (decl))
1259             {
1260               DECL_INITIAL (decl) = NULL_TREE;
1261               init = build2 (INIT_EXPR, void_type_node, decl, init);
1262               gimplify_and_add (init, stmt_p);
1263             }
1264           else
1265             /* We must still examine initializers for static variables
1266                as they may contain a label address.  */
1267             walk_tree (&init, force_labels_r, NULL, NULL);
1268         }
1269
1270       /* Some front ends do not explicitly declare all anonymous
1271          artificial variables.  We compensate here by declaring the
1272          variables, though it would be better if the front ends would
1273          explicitly declare them.  */
1274       if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1275           && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1276         gimple_add_tmp_var (decl);
1277     }
1278
1279   return GS_ALL_DONE;
1280 }
1281
1282 /* Gimplify a LOOP_EXPR.  Normally this just involves gimplifying the body
1283    and replacing the LOOP_EXPR with goto, but if the loop contains an
1284    EXIT_EXPR, we need to append a label for it to jump to.  */
1285
1286 static enum gimplify_status
1287 gimplify_loop_expr (tree *expr_p, tree *pre_p)
1288 {
1289   tree saved_label = gimplify_ctxp->exit_label;
1290   tree start_label = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
1291   tree jump_stmt = build_and_jump (&LABEL_EXPR_LABEL (start_label));
1292
1293   append_to_statement_list (start_label, pre_p);
1294
1295   gimplify_ctxp->exit_label = NULL_TREE;
1296
1297   gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1298
1299   if (gimplify_ctxp->exit_label)
1300     {
1301       append_to_statement_list (jump_stmt, pre_p);
1302       *expr_p = build1 (LABEL_EXPR, void_type_node, gimplify_ctxp->exit_label);
1303     }
1304   else
1305     *expr_p = jump_stmt;
1306
1307   gimplify_ctxp->exit_label = saved_label;
1308
1309   return GS_ALL_DONE;
1310 }
1311
1312 /* Compare two case labels.  Because the front end should already have
1313    made sure that case ranges do not overlap, it is enough to only compare
1314    the CASE_LOW values of each case label.  */
1315
1316 static int
1317 compare_case_labels (const void *p1, const void *p2)
1318 {
1319   tree case1 = *(tree *)p1;
1320   tree case2 = *(tree *)p2;
1321
1322   return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1323 }
1324
1325 /* Sort the case labels in LABEL_VEC in place in ascending order.  */
1326
1327 void
1328 sort_case_labels (tree label_vec)
1329 {
1330   size_t len = TREE_VEC_LENGTH (label_vec);
1331   tree default_case = TREE_VEC_ELT (label_vec, len - 1);
1332
1333   if (CASE_LOW (default_case))
1334     {
1335       size_t i;
1336
1337       /* The last label in the vector should be the default case
1338          but it is not.  */
1339       for (i = 0; i < len; ++i)
1340         {
1341           tree t = TREE_VEC_ELT (label_vec, i);
1342           if (!CASE_LOW (t))
1343             {
1344               default_case = t;
1345               TREE_VEC_ELT (label_vec, i) = TREE_VEC_ELT (label_vec, len - 1);
1346               TREE_VEC_ELT (label_vec, len - 1) = default_case;
1347               break;
1348             }
1349         }
1350     }
1351
1352   qsort (&TREE_VEC_ELT (label_vec, 0), len - 1, sizeof (tree),
1353          compare_case_labels);
1354 }
1355
1356 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1357    branch to.  */
1358
1359 static enum gimplify_status
1360 gimplify_switch_expr (tree *expr_p, tree *pre_p)
1361 {
1362   tree switch_expr = *expr_p;
1363   enum gimplify_status ret;
1364
1365   ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL,
1366                        is_gimple_val, fb_rvalue);
1367
1368   if (SWITCH_BODY (switch_expr))
1369     {
1370       VEC(tree,heap) *labels, *saved_labels;
1371       tree label_vec, default_case = NULL_TREE;
1372       size_t i, len;
1373
1374       /* If someone can be bothered to fill in the labels, they can
1375          be bothered to null out the body too.  */
1376       gcc_assert (!SWITCH_LABELS (switch_expr));
1377
1378       saved_labels = gimplify_ctxp->case_labels;
1379       gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1380
1381       gimplify_to_stmt_list (&SWITCH_BODY (switch_expr));
1382
1383       labels = gimplify_ctxp->case_labels;
1384       gimplify_ctxp->case_labels = saved_labels;
1385
1386       i = 0;
1387       while (i < VEC_length (tree, labels))
1388         {
1389           tree elt = VEC_index (tree, labels, i);
1390           tree low = CASE_LOW (elt);
1391           bool remove_element = FALSE;
1392
1393           if (low)
1394             {
1395               /* Discard empty ranges.  */
1396               tree high = CASE_HIGH (elt);
1397               if (high && INT_CST_LT (high, low))
1398                 remove_element = TRUE;
1399             }
1400           else
1401             {
1402               /* The default case must be the last label in the list.  */
1403               gcc_assert (!default_case);
1404               default_case = elt;
1405               remove_element = TRUE;
1406             }
1407
1408           if (remove_element)
1409             VEC_ordered_remove (tree, labels, i);
1410           else
1411             i++;
1412         }
1413       len = i;
1414
1415       label_vec = make_tree_vec (len + 1);
1416       SWITCH_LABELS (*expr_p) = label_vec;
1417       append_to_statement_list (switch_expr, pre_p);
1418
1419       if (! default_case)
1420         {
1421           /* If the switch has no default label, add one, so that we jump
1422              around the switch body.  */
1423           default_case = build3 (CASE_LABEL_EXPR, void_type_node, NULL_TREE,
1424                                  NULL_TREE, create_artificial_label ());
1425           append_to_statement_list (SWITCH_BODY (switch_expr), pre_p);
1426           *expr_p = build1 (LABEL_EXPR, void_type_node,
1427                             CASE_LABEL (default_case));
1428         }
1429       else
1430         *expr_p = SWITCH_BODY (switch_expr);
1431
1432       for (i = 0; i < len; ++i)
1433         TREE_VEC_ELT (label_vec, i) = VEC_index (tree, labels, i);
1434       TREE_VEC_ELT (label_vec, len) = default_case;
1435
1436       VEC_free (tree, heap, labels);
1437
1438       sort_case_labels (label_vec);
1439
1440       SWITCH_BODY (switch_expr) = NULL;
1441     }
1442   else
1443     gcc_assert (SWITCH_LABELS (switch_expr));
1444
1445   return ret;
1446 }
1447
1448 static enum gimplify_status
1449 gimplify_case_label_expr (tree *expr_p)
1450 {
1451   tree expr = *expr_p;
1452   struct gimplify_ctx *ctxp;
1453
1454   /* Invalid OpenMP programs can play Duff's Device type games with
1455      #pragma omp parallel.  At least in the C front end, we don't
1456      detect such invalid branches until after gimplification.  */
1457   for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1458     if (ctxp->case_labels)
1459       break;
1460
1461   VEC_safe_push (tree, heap, ctxp->case_labels, expr);
1462   *expr_p = build1 (LABEL_EXPR, void_type_node, CASE_LABEL (expr));
1463   return GS_ALL_DONE;
1464 }
1465
1466 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1467    if necessary.  */
1468
1469 tree
1470 build_and_jump (tree *label_p)
1471 {
1472   if (label_p == NULL)
1473     /* If there's nowhere to jump, just fall through.  */
1474     return NULL_TREE;
1475
1476   if (*label_p == NULL_TREE)
1477     {
1478       tree label = create_artificial_label ();
1479       *label_p = label;
1480     }
1481
1482   return build1 (GOTO_EXPR, void_type_node, *label_p);
1483 }
1484
1485 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1486    This also involves building a label to jump to and communicating it to
1487    gimplify_loop_expr through gimplify_ctxp->exit_label.  */
1488
1489 static enum gimplify_status
1490 gimplify_exit_expr (tree *expr_p)
1491 {
1492   tree cond = TREE_OPERAND (*expr_p, 0);
1493   tree expr;
1494
1495   expr = build_and_jump (&gimplify_ctxp->exit_label);
1496   expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1497   *expr_p = expr;
1498
1499   return GS_OK;
1500 }
1501
1502 /* A helper function to be called via walk_tree.  Mark all labels under *TP
1503    as being forced.  To be called for DECL_INITIAL of static variables.  */
1504
1505 tree
1506 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1507 {
1508   if (TYPE_P (*tp))
1509     *walk_subtrees = 0;
1510   if (TREE_CODE (*tp) == LABEL_DECL)
1511     FORCED_LABEL (*tp) = 1;
1512
1513   return NULL_TREE;
1514 }
1515
1516 /* *EXPR_P is a COMPONENT_REF being used as an rvalue.  If its type is
1517    different from its canonical type, wrap the whole thing inside a
1518    NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1519    type.
1520
1521    The canonical type of a COMPONENT_REF is the type of the field being
1522    referenced--unless the field is a bit-field which can be read directly
1523    in a smaller mode, in which case the canonical type is the
1524    sign-appropriate type corresponding to that mode.  */
1525
1526 static void
1527 canonicalize_component_ref (tree *expr_p)
1528 {
1529   tree expr = *expr_p;
1530   tree type;
1531
1532   gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1533
1534   if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1535     type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1536   else
1537     type = TREE_TYPE (TREE_OPERAND (expr, 1));
1538
1539   if (TREE_TYPE (expr) != type)
1540     {
1541       tree old_type = TREE_TYPE (expr);
1542
1543       /* Set the type of the COMPONENT_REF to the underlying type.  */
1544       TREE_TYPE (expr) = type;
1545
1546       /* And wrap the whole thing inside a NOP_EXPR.  */
1547       expr = build1 (NOP_EXPR, old_type, expr);
1548
1549       *expr_p = expr;
1550     }
1551 }
1552
1553 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1554    to foo, embed that change in the ADDR_EXPR by converting
1555       T array[U];
1556       (T *)&array
1557    ==>
1558       &array[L]
1559    where L is the lower bound.  For simplicity, only do this for constant
1560    lower bound.  */
1561
1562 static void
1563 canonicalize_addr_expr (tree *expr_p)
1564 {
1565   tree expr = *expr_p;
1566   tree ctype = TREE_TYPE (expr);
1567   tree addr_expr = TREE_OPERAND (expr, 0);
1568   tree atype = TREE_TYPE (addr_expr);
1569   tree dctype, datype, ddatype, otype, obj_expr;
1570
1571   /* Both cast and addr_expr types should be pointers.  */
1572   if (!POINTER_TYPE_P (ctype) || !POINTER_TYPE_P (atype))
1573     return;
1574
1575   /* The addr_expr type should be a pointer to an array.  */
1576   datype = TREE_TYPE (atype);
1577   if (TREE_CODE (datype) != ARRAY_TYPE)
1578     return;
1579
1580   /* Both cast and addr_expr types should address the same object type.  */
1581   dctype = TREE_TYPE (ctype);
1582   ddatype = TREE_TYPE (datype);
1583   if (!lang_hooks.types_compatible_p (ddatype, dctype))
1584     return;
1585
1586   /* The addr_expr and the object type should match.  */
1587   obj_expr = TREE_OPERAND (addr_expr, 0);
1588   otype = TREE_TYPE (obj_expr);
1589   if (!lang_hooks.types_compatible_p (otype, datype))
1590     return;
1591
1592   /* The lower bound and element sizes must be constant.  */
1593   if (!TYPE_SIZE_UNIT (dctype)
1594       || TREE_CODE (TYPE_SIZE_UNIT (dctype)) != INTEGER_CST
1595       || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1596       || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1597     return;
1598
1599   /* All checks succeeded.  Build a new node to merge the cast.  */
1600   *expr_p = build4 (ARRAY_REF, dctype, obj_expr,
1601                     TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1602                     TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1603                     size_binop (EXACT_DIV_EXPR, TYPE_SIZE_UNIT (dctype),
1604                                 size_int (TYPE_ALIGN_UNIT (dctype))));
1605   *expr_p = build1 (ADDR_EXPR, ctype, *expr_p);
1606 }
1607
1608 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR.  Remove it and/or other conversions
1609    underneath as appropriate.  */
1610
1611 static enum gimplify_status
1612 gimplify_conversion (tree *expr_p)
1613 {
1614   gcc_assert (TREE_CODE (*expr_p) == NOP_EXPR
1615               || TREE_CODE (*expr_p) == CONVERT_EXPR);
1616   
1617   /* Then strip away all but the outermost conversion.  */
1618   STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1619
1620   /* And remove the outermost conversion if it's useless.  */
1621   if (tree_ssa_useless_type_conversion (*expr_p))
1622     *expr_p = TREE_OPERAND (*expr_p, 0);
1623
1624   /* If we still have a conversion at the toplevel,
1625      then canonicalize some constructs.  */
1626   if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1627     {
1628       tree sub = TREE_OPERAND (*expr_p, 0);
1629
1630       /* If a NOP conversion is changing the type of a COMPONENT_REF
1631          expression, then canonicalize its type now in order to expose more
1632          redundant conversions.  */
1633       if (TREE_CODE (sub) == COMPONENT_REF)
1634         canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1635
1636       /* If a NOP conversion is changing a pointer to array of foo
1637          to a pointer to foo, embed that change in the ADDR_EXPR.  */
1638       else if (TREE_CODE (sub) == ADDR_EXPR)
1639         canonicalize_addr_expr (expr_p);
1640     }
1641
1642   return GS_OK;
1643 }
1644
1645 /* Gimplify a VAR_DECL or PARM_DECL.  Returns GS_OK if we expanded a 
1646    DECL_VALUE_EXPR, and it's worth re-examining things.  */
1647
1648 static enum gimplify_status
1649 gimplify_var_or_parm_decl (tree *expr_p)
1650 {
1651   tree decl = *expr_p;
1652
1653   /* ??? If this is a local variable, and it has not been seen in any
1654      outer BIND_EXPR, then it's probably the result of a duplicate
1655      declaration, for which we've already issued an error.  It would
1656      be really nice if the front end wouldn't leak these at all.
1657      Currently the only known culprit is C++ destructors, as seen
1658      in g++.old-deja/g++.jason/binding.C.  */
1659   if (TREE_CODE (decl) == VAR_DECL
1660       && !DECL_SEEN_IN_BIND_EXPR_P (decl)
1661       && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
1662       && decl_function_context (decl) == current_function_decl)
1663     {
1664       gcc_assert (errorcount || sorrycount);
1665       return GS_ERROR;
1666     }
1667
1668   /* When within an OpenMP context, notice uses of variables.  */
1669   if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
1670     return GS_ALL_DONE;
1671
1672   /* If the decl is an alias for another expression, substitute it now.  */
1673   if (DECL_HAS_VALUE_EXPR_P (decl))
1674     {
1675       *expr_p = unshare_expr (DECL_VALUE_EXPR (decl));
1676       return GS_OK;
1677     }
1678
1679   return GS_ALL_DONE;
1680 }
1681
1682
1683 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1684    node pointed to by EXPR_P.
1685
1686       compound_lval
1687               : min_lval '[' val ']'
1688               | min_lval '.' ID
1689               | compound_lval '[' val ']'
1690               | compound_lval '.' ID
1691
1692    This is not part of the original SIMPLE definition, which separates
1693    array and member references, but it seems reasonable to handle them
1694    together.  Also, this way we don't run into problems with union
1695    aliasing; gcc requires that for accesses through a union to alias, the
1696    union reference must be explicit, which was not always the case when we
1697    were splitting up array and member refs.
1698
1699    PRE_P points to the list where side effects that must happen before
1700      *EXPR_P should be stored.
1701
1702    POST_P points to the list where side effects that must happen after
1703      *EXPR_P should be stored.  */
1704
1705 static enum gimplify_status
1706 gimplify_compound_lval (tree *expr_p, tree *pre_p,
1707                         tree *post_p, fallback_t fallback)
1708 {
1709   tree *p;
1710   VEC(tree,heap) *stack;
1711   enum gimplify_status ret = GS_OK, tret;
1712   int i;
1713
1714   /* Create a stack of the subexpressions so later we can walk them in
1715      order from inner to outer.  */
1716   stack = VEC_alloc (tree, heap, 10);
1717
1718   /* We can handle anything that get_inner_reference can deal with.  */
1719   for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
1720     {
1721     restart:
1722       /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs.  */
1723       if (TREE_CODE (*p) == INDIRECT_REF)
1724         *p = fold_indirect_ref (*p);
1725
1726       if (handled_component_p (*p))
1727         ;
1728       /* Expand DECL_VALUE_EXPR now.  In some cases that may expose
1729          additional COMPONENT_REFs.  */
1730       else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
1731                && gimplify_var_or_parm_decl (p) == GS_OK)
1732         goto restart;
1733       else
1734         break;
1735                
1736       VEC_safe_push (tree, heap, stack, *p);
1737     }
1738
1739   gcc_assert (VEC_length (tree, stack));
1740
1741   /* Now STACK is a stack of pointers to all the refs we've walked through
1742      and P points to the innermost expression.
1743
1744      Java requires that we elaborated nodes in source order.  That
1745      means we must gimplify the inner expression followed by each of
1746      the indices, in order.  But we can't gimplify the inner
1747      expression until we deal with any variable bounds, sizes, or
1748      positions in order to deal with PLACEHOLDER_EXPRs.
1749
1750      So we do this in three steps.  First we deal with the annotations
1751      for any variables in the components, then we gimplify the base,
1752      then we gimplify any indices, from left to right.  */
1753   for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
1754     {
1755       tree t = VEC_index (tree, stack, i);
1756
1757       if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1758         {
1759           /* Gimplify the low bound and element type size and put them into
1760              the ARRAY_REF.  If these values are set, they have already been
1761              gimplified.  */
1762           if (!TREE_OPERAND (t, 2))
1763             {
1764               tree low = unshare_expr (array_ref_low_bound (t));
1765               if (!is_gimple_min_invariant (low))
1766                 {
1767                   TREE_OPERAND (t, 2) = low;
1768                   tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1769                                         is_gimple_formal_tmp_reg, fb_rvalue);
1770                   ret = MIN (ret, tret);
1771                 }
1772             }
1773
1774           if (!TREE_OPERAND (t, 3))
1775             {
1776               tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
1777               tree elmt_size = unshare_expr (array_ref_element_size (t));
1778               tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
1779
1780               /* Divide the element size by the alignment of the element
1781                  type (above).  */
1782               elmt_size = size_binop (EXACT_DIV_EXPR, elmt_size, factor);
1783
1784               if (!is_gimple_min_invariant (elmt_size))
1785                 {
1786                   TREE_OPERAND (t, 3) = elmt_size;
1787                   tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
1788                                         is_gimple_formal_tmp_reg, fb_rvalue);
1789                   ret = MIN (ret, tret);
1790                 }
1791             }
1792         }
1793       else if (TREE_CODE (t) == COMPONENT_REF)
1794         {
1795           /* Set the field offset into T and gimplify it.  */
1796           if (!TREE_OPERAND (t, 2))
1797             {
1798               tree offset = unshare_expr (component_ref_field_offset (t));
1799               tree field = TREE_OPERAND (t, 1);
1800               tree factor
1801                 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
1802
1803               /* Divide the offset by its alignment.  */
1804               offset = size_binop (EXACT_DIV_EXPR, offset, factor);
1805
1806               if (!is_gimple_min_invariant (offset))
1807                 {
1808                   TREE_OPERAND (t, 2) = offset;
1809                   tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1810                                         is_gimple_formal_tmp_reg, fb_rvalue);
1811                   ret = MIN (ret, tret);
1812                 }
1813             }
1814         }
1815     }
1816
1817   /* Step 2 is to gimplify the base expression.  Make sure lvalue is set
1818      so as to match the min_lval predicate.  Failure to do so may result
1819      in the creation of large aggregate temporaries.  */
1820   tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
1821                         fallback | fb_lvalue);
1822   ret = MIN (ret, tret);
1823
1824   /* And finally, the indices and operands to BIT_FIELD_REF.  During this
1825      loop we also remove any useless conversions.  */
1826   for (; VEC_length (tree, stack) > 0; )
1827     {
1828       tree t = VEC_pop (tree, stack);
1829
1830       if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1831         {
1832           /* Gimplify the dimension.
1833              Temporary fix for gcc.c-torture/execute/20040313-1.c.
1834              Gimplify non-constant array indices into a temporary
1835              variable.
1836              FIXME - The real fix is to gimplify post-modify
1837              expressions into a minimal gimple lvalue.  However, that
1838              exposes bugs in alias analysis.  The alias analyzer does
1839              not handle &PTR->FIELD very well.  Will fix after the
1840              branch is merged into mainline (dnovillo 2004-05-03).  */
1841           if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
1842             {
1843               tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1844                                     is_gimple_formal_tmp_reg, fb_rvalue);
1845               ret = MIN (ret, tret);
1846             }
1847         }
1848       else if (TREE_CODE (t) == BIT_FIELD_REF)
1849         {
1850           tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1851                                 is_gimple_val, fb_rvalue);
1852           ret = MIN (ret, tret);
1853           tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1854                                 is_gimple_val, fb_rvalue);
1855           ret = MIN (ret, tret);
1856         }
1857
1858       STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
1859
1860       /* The innermost expression P may have originally had TREE_SIDE_EFFECTS
1861          set which would have caused all the outer expressions in EXPR_P
1862          leading to P to also have had TREE_SIDE_EFFECTS set.  */
1863       recalculate_side_effects (t);
1864     }
1865
1866   tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1867   ret = MIN (ret, tret);
1868
1869   /* If the outermost expression is a COMPONENT_REF, canonicalize its type.  */
1870   if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
1871     {
1872       canonicalize_component_ref (expr_p);
1873       ret = MIN (ret, GS_OK);
1874     }
1875
1876   VEC_free (tree, heap, stack);
1877
1878   return ret;
1879 }
1880
1881 /*  Gimplify the self modifying expression pointed to by EXPR_P
1882     (++, --, +=, -=).
1883
1884     PRE_P points to the list where side effects that must happen before
1885         *EXPR_P should be stored.
1886
1887     POST_P points to the list where side effects that must happen after
1888         *EXPR_P should be stored.
1889
1890     WANT_VALUE is nonzero iff we want to use the value of this expression
1891         in another expression.  */
1892
1893 static enum gimplify_status
1894 gimplify_self_mod_expr (tree *expr_p, tree *pre_p, tree *post_p,
1895                         bool want_value)
1896 {
1897   enum tree_code code;
1898   tree lhs, lvalue, rhs, t1, post = NULL, *orig_post_p = post_p;
1899   bool postfix;
1900   enum tree_code arith_code;
1901   enum gimplify_status ret;
1902
1903   code = TREE_CODE (*expr_p);
1904
1905   gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
1906               || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
1907
1908   /* Prefix or postfix?  */
1909   if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
1910     /* Faster to treat as prefix if result is not used.  */
1911     postfix = want_value;
1912   else
1913     postfix = false;
1914
1915   /* For postfix, make sure the inner expression's post side effects
1916      are executed after side effects from this expression.  */
1917   if (postfix)
1918     post_p = &post;
1919
1920   /* Add or subtract?  */
1921   if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
1922     arith_code = PLUS_EXPR;
1923   else
1924     arith_code = MINUS_EXPR;
1925
1926   /* Gimplify the LHS into a GIMPLE lvalue.  */
1927   lvalue = TREE_OPERAND (*expr_p, 0);
1928   ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1929   if (ret == GS_ERROR)
1930     return ret;
1931
1932   /* Extract the operands to the arithmetic operation.  */
1933   lhs = lvalue;
1934   rhs = TREE_OPERAND (*expr_p, 1);
1935
1936   /* For postfix operator, we evaluate the LHS to an rvalue and then use
1937      that as the result value and in the postqueue operation.  */
1938   if (postfix)
1939     {
1940       ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
1941       if (ret == GS_ERROR)
1942         return ret;
1943     }
1944
1945   t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
1946   t1 = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
1947
1948   if (postfix)
1949     {
1950       gimplify_and_add (t1, orig_post_p);
1951       append_to_statement_list (post, orig_post_p);
1952       *expr_p = lhs;
1953       return GS_ALL_DONE;
1954     }
1955   else
1956     {
1957       *expr_p = t1;
1958       return GS_OK;
1959     }
1960 }
1961
1962 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR.  */
1963
1964 static void
1965 maybe_with_size_expr (tree *expr_p)
1966 {
1967   tree expr = *expr_p;
1968   tree type = TREE_TYPE (expr);
1969   tree size;
1970
1971   /* If we've already wrapped this or the type is error_mark_node, we can't do
1972      anything.  */
1973   if (TREE_CODE (expr) == WITH_SIZE_EXPR
1974       || type == error_mark_node)
1975     return;
1976
1977   /* If the size isn't known or is a constant, we have nothing to do.  */
1978   size = TYPE_SIZE_UNIT (type);
1979   if (!size || TREE_CODE (size) == INTEGER_CST)
1980     return;
1981
1982   /* Otherwise, make a WITH_SIZE_EXPR.  */
1983   size = unshare_expr (size);
1984   size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
1985   *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
1986 }
1987
1988 /* Subroutine of gimplify_call_expr:  Gimplify a single argument.  */
1989
1990 static enum gimplify_status
1991 gimplify_arg (tree *expr_p, tree *pre_p)
1992 {
1993   bool (*test) (tree);
1994   fallback_t fb;
1995
1996   /* In general, we allow lvalues for function arguments to avoid
1997      extra overhead of copying large aggregates out of even larger
1998      aggregates into temporaries only to copy the temporaries to
1999      the argument list.  Make optimizers happy by pulling out to
2000      temporaries those types that fit in registers.  */
2001   if (is_gimple_reg_type (TREE_TYPE (*expr_p)))
2002     test = is_gimple_val, fb = fb_rvalue;
2003   else
2004     test = is_gimple_lvalue, fb = fb_either;
2005
2006   /* If this is a variable sized type, we must remember the size.  */
2007   maybe_with_size_expr (expr_p);
2008
2009   /* There is a sequence point before a function call.  Side effects in
2010      the argument list must occur before the actual call. So, when
2011      gimplifying arguments, force gimplify_expr to use an internal
2012      post queue which is then appended to the end of PRE_P.  */
2013   return gimplify_expr (expr_p, pre_p, NULL, test, fb);
2014 }
2015
2016 /* Gimplify the CALL_EXPR node pointed to by EXPR_P.  PRE_P points to the
2017    list where side effects that must happen before *EXPR_P should be stored.
2018    WANT_VALUE is true if the result of the call is desired.  */
2019
2020 static enum gimplify_status
2021 gimplify_call_expr (tree *expr_p, tree *pre_p, bool want_value)
2022 {
2023   tree decl;
2024   tree arglist;
2025   enum gimplify_status ret;
2026
2027   gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2028
2029   /* For reliable diagnostics during inlining, it is necessary that
2030      every call_expr be annotated with file and line.  */
2031   if (! EXPR_HAS_LOCATION (*expr_p))
2032     SET_EXPR_LOCATION (*expr_p, input_location);
2033
2034   /* This may be a call to a builtin function.
2035
2036      Builtin function calls may be transformed into different
2037      (and more efficient) builtin function calls under certain
2038      circumstances.  Unfortunately, gimplification can muck things
2039      up enough that the builtin expanders are not aware that certain
2040      transformations are still valid.
2041
2042      So we attempt transformation/gimplification of the call before
2043      we gimplify the CALL_EXPR.  At this time we do not manage to
2044      transform all calls in the same manner as the expanders do, but
2045      we do transform most of them.  */
2046   decl = get_callee_fndecl (*expr_p);
2047   if (decl && DECL_BUILT_IN (decl))
2048     {
2049       tree arglist = TREE_OPERAND (*expr_p, 1);
2050       tree new = fold_builtin (decl, arglist, !want_value);
2051
2052       if (new && new != *expr_p)
2053         {
2054           /* There was a transformation of this call which computes the
2055              same value, but in a more efficient way.  Return and try
2056              again.  */
2057           *expr_p = new;
2058           return GS_OK;
2059         }
2060
2061       if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2062           && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_START)
2063         {
2064           if (!arglist || !TREE_CHAIN (arglist))
2065             {
2066               error ("too few arguments to function %<va_start%>");
2067               *expr_p = build_empty_stmt ();
2068               return GS_OK;
2069             }
2070           
2071           if (fold_builtin_next_arg (TREE_CHAIN (arglist)))
2072             {
2073               *expr_p = build_empty_stmt ();
2074               return GS_OK;
2075             }
2076           /* Avoid gimplifying the second argument to va_start, which needs
2077              to be the plain PARM_DECL.  */
2078           return gimplify_arg (&TREE_VALUE (TREE_OPERAND (*expr_p, 1)), pre_p);
2079         }
2080     }
2081
2082   /* There is a sequence point before the call, so any side effects in
2083      the calling expression must occur before the actual call.  Force
2084      gimplify_expr to use an internal post queue.  */
2085   ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, NULL,
2086                        is_gimple_call_addr, fb_rvalue);
2087
2088   if (PUSH_ARGS_REVERSED)
2089     TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
2090   for (arglist = TREE_OPERAND (*expr_p, 1); arglist;
2091        arglist = TREE_CHAIN (arglist))
2092     {
2093       enum gimplify_status t;
2094
2095       t = gimplify_arg (&TREE_VALUE (arglist), pre_p);
2096
2097       if (t == GS_ERROR)
2098         ret = GS_ERROR;
2099     }
2100   if (PUSH_ARGS_REVERSED)
2101     TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
2102
2103   /* Try this again in case gimplification exposed something.  */
2104   if (ret != GS_ERROR)
2105     {
2106       decl = get_callee_fndecl (*expr_p);
2107       if (decl && DECL_BUILT_IN (decl))
2108         {
2109           tree arglist = TREE_OPERAND (*expr_p, 1);
2110           tree new = fold_builtin (decl, arglist, !want_value);
2111
2112           if (new && new != *expr_p)
2113             {
2114               /* There was a transformation of this call which computes the
2115                  same value, but in a more efficient way.  Return and try
2116                  again.  */
2117               *expr_p = new;
2118               return GS_OK;
2119             }
2120         }
2121     }
2122
2123   /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2124      decl.  This allows us to eliminate redundant or useless
2125      calls to "const" functions.  */
2126   if (TREE_CODE (*expr_p) == CALL_EXPR
2127       && (call_expr_flags (*expr_p) & (ECF_CONST | ECF_PURE)))
2128     TREE_SIDE_EFFECTS (*expr_p) = 0;
2129
2130   return ret;
2131 }
2132
2133 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2134    rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2135
2136    TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2137    condition is true or false, respectively.  If null, we should generate
2138    our own to skip over the evaluation of this specific expression.
2139
2140    This function is the tree equivalent of do_jump.
2141
2142    shortcut_cond_r should only be called by shortcut_cond_expr.  */
2143
2144 static tree
2145 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p)
2146 {
2147   tree local_label = NULL_TREE;
2148   tree t, expr = NULL;
2149
2150   /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2151      retain the shortcut semantics.  Just insert the gotos here;
2152      shortcut_cond_expr will append the real blocks later.  */
2153   if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2154     {
2155       /* Turn if (a && b) into
2156
2157          if (a); else goto no;
2158          if (b) goto yes; else goto no;
2159          (no:) */
2160
2161       if (false_label_p == NULL)
2162         false_label_p = &local_label;
2163
2164       t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p);
2165       append_to_statement_list (t, &expr);
2166
2167       t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2168                            false_label_p);
2169       append_to_statement_list (t, &expr);
2170     }
2171   else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2172     {
2173       /* Turn if (a || b) into
2174
2175          if (a) goto yes;
2176          if (b) goto yes; else goto no;
2177          (yes:) */
2178
2179       if (true_label_p == NULL)
2180         true_label_p = &local_label;
2181
2182       t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL);
2183       append_to_statement_list (t, &expr);
2184
2185       t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2186                            false_label_p);
2187       append_to_statement_list (t, &expr);
2188     }
2189   else if (TREE_CODE (pred) == COND_EXPR)
2190     {
2191       /* As long as we're messing with gotos, turn if (a ? b : c) into
2192          if (a)
2193            if (b) goto yes; else goto no;
2194          else
2195            if (c) goto yes; else goto no;  */
2196       expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2197                      shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2198                                       false_label_p),
2199                      shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2200                                       false_label_p));
2201     }
2202   else
2203     {
2204       expr = build3 (COND_EXPR, void_type_node, pred,
2205                      build_and_jump (true_label_p),
2206                      build_and_jump (false_label_p));
2207     }
2208
2209   if (local_label)
2210     {
2211       t = build1 (LABEL_EXPR, void_type_node, local_label);
2212       append_to_statement_list (t, &expr);
2213     }
2214
2215   return expr;
2216 }
2217
2218 static tree
2219 shortcut_cond_expr (tree expr)
2220 {
2221   tree pred = TREE_OPERAND (expr, 0);
2222   tree then_ = TREE_OPERAND (expr, 1);
2223   tree else_ = TREE_OPERAND (expr, 2);
2224   tree true_label, false_label, end_label, t;
2225   tree *true_label_p;
2226   tree *false_label_p;
2227   bool emit_end, emit_false, jump_over_else;
2228   bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2229   bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2230
2231   /* First do simple transformations.  */
2232   if (!else_se)
2233     {
2234       /* If there is no 'else', turn (a && b) into if (a) if (b).  */
2235       while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2236         {
2237           TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2238           then_ = shortcut_cond_expr (expr);
2239           then_se = then_ && TREE_SIDE_EFFECTS (then_);
2240           pred = TREE_OPERAND (pred, 0);
2241           expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2242         }
2243     }
2244   if (!then_se)
2245     {
2246       /* If there is no 'then', turn
2247            if (a || b); else d
2248          into
2249            if (a); else if (b); else d.  */
2250       while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2251         {
2252           TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2253           else_ = shortcut_cond_expr (expr);
2254           else_se = else_ && TREE_SIDE_EFFECTS (else_);
2255           pred = TREE_OPERAND (pred, 0);
2256           expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2257         }
2258     }
2259
2260   /* If we're done, great.  */
2261   if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2262       && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2263     return expr;
2264
2265   /* Otherwise we need to mess with gotos.  Change
2266        if (a) c; else d;
2267      to
2268        if (a); else goto no;
2269        c; goto end;
2270        no: d; end:
2271      and recursively gimplify the condition.  */
2272
2273   true_label = false_label = end_label = NULL_TREE;
2274
2275   /* If our arms just jump somewhere, hijack those labels so we don't
2276      generate jumps to jumps.  */
2277
2278   if (then_
2279       && TREE_CODE (then_) == GOTO_EXPR
2280       && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2281     {
2282       true_label = GOTO_DESTINATION (then_);
2283       then_ = NULL;
2284       then_se = false;
2285     }
2286
2287   if (else_
2288       && TREE_CODE (else_) == GOTO_EXPR
2289       && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2290     {
2291       false_label = GOTO_DESTINATION (else_);
2292       else_ = NULL;
2293       else_se = false;
2294     }
2295
2296   /* If we aren't hijacking a label for the 'then' branch, it falls through.  */
2297   if (true_label)
2298     true_label_p = &true_label;
2299   else
2300     true_label_p = NULL;
2301
2302   /* The 'else' branch also needs a label if it contains interesting code.  */
2303   if (false_label || else_se)
2304     false_label_p = &false_label;
2305   else
2306     false_label_p = NULL;
2307
2308   /* If there was nothing else in our arms, just forward the label(s).  */
2309   if (!then_se && !else_se)
2310     return shortcut_cond_r (pred, true_label_p, false_label_p);
2311
2312   /* If our last subexpression already has a terminal label, reuse it.  */
2313   if (else_se)
2314     expr = expr_last (else_);
2315   else if (then_se)
2316     expr = expr_last (then_);
2317   else
2318     expr = NULL;
2319   if (expr && TREE_CODE (expr) == LABEL_EXPR)
2320     end_label = LABEL_EXPR_LABEL (expr);
2321
2322   /* If we don't care about jumping to the 'else' branch, jump to the end
2323      if the condition is false.  */
2324   if (!false_label_p)
2325     false_label_p = &end_label;
2326
2327   /* We only want to emit these labels if we aren't hijacking them.  */
2328   emit_end = (end_label == NULL_TREE);
2329   emit_false = (false_label == NULL_TREE);
2330
2331   /* We only emit the jump over the else clause if we have to--if the
2332      then clause may fall through.  Otherwise we can wind up with a
2333      useless jump and a useless label at the end of gimplified code,
2334      which will cause us to think that this conditional as a whole
2335      falls through even if it doesn't.  If we then inline a function
2336      which ends with such a condition, that can cause us to issue an
2337      inappropriate warning about control reaching the end of a
2338      non-void function.  */
2339   jump_over_else = block_may_fallthru (then_);
2340
2341   pred = shortcut_cond_r (pred, true_label_p, false_label_p);
2342
2343   expr = NULL;
2344   append_to_statement_list (pred, &expr);
2345
2346   append_to_statement_list (then_, &expr);
2347   if (else_se)
2348     {
2349       if (jump_over_else)
2350         {
2351           t = build_and_jump (&end_label);
2352           append_to_statement_list (t, &expr);
2353         }
2354       if (emit_false)
2355         {
2356           t = build1 (LABEL_EXPR, void_type_node, false_label);
2357           append_to_statement_list (t, &expr);
2358         }
2359       append_to_statement_list (else_, &expr);
2360     }
2361   if (emit_end && end_label)
2362     {
2363       t = build1 (LABEL_EXPR, void_type_node, end_label);
2364       append_to_statement_list (t, &expr);
2365     }
2366
2367   return expr;
2368 }
2369
2370 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE.  */
2371
2372 tree
2373 gimple_boolify (tree expr)
2374 {
2375   tree type = TREE_TYPE (expr);
2376
2377   if (TREE_CODE (type) == BOOLEAN_TYPE)
2378     return expr;
2379
2380   switch (TREE_CODE (expr))
2381     {
2382     case TRUTH_AND_EXPR:
2383     case TRUTH_OR_EXPR:
2384     case TRUTH_XOR_EXPR:
2385     case TRUTH_ANDIF_EXPR:
2386     case TRUTH_ORIF_EXPR:
2387       /* Also boolify the arguments of truth exprs.  */
2388       TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2389       /* FALLTHRU */
2390
2391     case TRUTH_NOT_EXPR:
2392       TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2393       /* FALLTHRU */
2394
2395     case EQ_EXPR: case NE_EXPR:
2396     case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2397       /* These expressions always produce boolean results.  */
2398       TREE_TYPE (expr) = boolean_type_node;
2399       return expr;
2400
2401     default:
2402       /* Other expressions that get here must have boolean values, but
2403          might need to be converted to the appropriate mode.  */
2404       return fold_convert (boolean_type_node, expr);
2405     }
2406 }
2407
2408 /*  Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
2409     into
2410
2411     if (p)                      if (p)
2412       t1 = a;                     a;
2413     else                or      else
2414       t1 = b;                     b;
2415     t1;
2416
2417     The second form is used when *EXPR_P is of type void.
2418
2419     TARGET is the tree for T1 above.
2420
2421     PRE_P points to the list where side effects that must happen before
2422       *EXPR_P should be stored.  */
2423
2424 static enum gimplify_status
2425 gimplify_cond_expr (tree *expr_p, tree *pre_p, fallback_t fallback)
2426 {
2427   tree expr = *expr_p;
2428   tree tmp, tmp2, type;
2429   enum gimplify_status ret;
2430
2431   type = TREE_TYPE (expr);
2432
2433   /* If this COND_EXPR has a value, copy the values into a temporary within
2434      the arms.  */
2435   if (! VOID_TYPE_P (type))
2436     {
2437       tree result;
2438
2439       if ((fallback & fb_lvalue) == 0)
2440         {
2441           result = tmp2 = tmp = create_tmp_var (TREE_TYPE (expr), "iftmp");
2442           ret = GS_ALL_DONE;
2443         }
2444       else
2445         {
2446           tree type = build_pointer_type (TREE_TYPE (expr));
2447
2448           if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2449             TREE_OPERAND (expr, 1) =
2450               build_fold_addr_expr (TREE_OPERAND (expr, 1));
2451
2452           if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2453             TREE_OPERAND (expr, 2) =
2454               build_fold_addr_expr (TREE_OPERAND (expr, 2));
2455           
2456           tmp2 = tmp = create_tmp_var (type, "iftmp");
2457
2458           expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (expr, 0),
2459                          TREE_OPERAND (expr, 1), TREE_OPERAND (expr, 2));
2460
2461           result = build_fold_indirect_ref (tmp);
2462           ret = GS_ALL_DONE;
2463         }
2464
2465       /* Build the then clause, 't1 = a;'.  But don't build an assignment
2466          if this branch is void; in C++ it can be, if it's a throw.  */
2467       if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2468         TREE_OPERAND (expr, 1)
2469           = build2 (MODIFY_EXPR, void_type_node, tmp, TREE_OPERAND (expr, 1));
2470
2471       /* Build the else clause, 't1 = b;'.  */
2472       if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2473         TREE_OPERAND (expr, 2)
2474           = build2 (MODIFY_EXPR, void_type_node, tmp2, TREE_OPERAND (expr, 2));
2475
2476       TREE_TYPE (expr) = void_type_node;
2477       recalculate_side_effects (expr);
2478
2479       /* Move the COND_EXPR to the prequeue.  */
2480       gimplify_and_add (expr, pre_p);
2481
2482       *expr_p = result;
2483       return ret;
2484     }
2485
2486   /* Make sure the condition has BOOLEAN_TYPE.  */
2487   TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2488
2489   /* Break apart && and || conditions.  */
2490   if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
2491       || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
2492     {
2493       expr = shortcut_cond_expr (expr);
2494
2495       if (expr != *expr_p)
2496         {
2497           *expr_p = expr;
2498
2499           /* We can't rely on gimplify_expr to re-gimplify the expanded
2500              form properly, as cleanups might cause the target labels to be
2501              wrapped in a TRY_FINALLY_EXPR.  To prevent that, we need to
2502              set up a conditional context.  */
2503           gimple_push_condition ();
2504           gimplify_stmt (expr_p);
2505           gimple_pop_condition (pre_p);
2506
2507           return GS_ALL_DONE;
2508         }
2509     }
2510
2511   /* Now do the normal gimplification.  */
2512   ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2513                        is_gimple_condexpr, fb_rvalue);
2514
2515   gimple_push_condition ();
2516
2517   gimplify_to_stmt_list (&TREE_OPERAND (expr, 1));
2518   gimplify_to_stmt_list (&TREE_OPERAND (expr, 2));
2519   recalculate_side_effects (expr);
2520
2521   gimple_pop_condition (pre_p);
2522
2523   if (ret == GS_ERROR)
2524     ;
2525   else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2526     ret = GS_ALL_DONE;
2527   else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 2)))
2528     /* Rewrite "if (a); else b" to "if (!a) b"  */
2529     {
2530       TREE_OPERAND (expr, 0) = invert_truthvalue (TREE_OPERAND (expr, 0));
2531       ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2532                            is_gimple_condexpr, fb_rvalue);
2533
2534       tmp = TREE_OPERAND (expr, 1);
2535       TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 2);
2536       TREE_OPERAND (expr, 2) = tmp;
2537     }
2538   else
2539     /* Both arms are empty; replace the COND_EXPR with its predicate.  */
2540     expr = TREE_OPERAND (expr, 0);
2541
2542   *expr_p = expr;
2543   return ret;
2544 }
2545
2546 /* A subroutine of gimplify_modify_expr.  Replace a MODIFY_EXPR with
2547    a call to __builtin_memcpy.  */
2548
2549 static enum gimplify_status
2550 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value)
2551 {
2552   tree args, t, to, to_ptr, from;
2553
2554   to = TREE_OPERAND (*expr_p, 0);
2555   from = TREE_OPERAND (*expr_p, 1);
2556
2557   args = tree_cons (NULL, size, NULL);
2558
2559   t = build_fold_addr_expr (from);
2560   args = tree_cons (NULL, t, args);
2561
2562   to_ptr = build_fold_addr_expr (to);
2563   args = tree_cons (NULL, to_ptr, args);
2564   t = implicit_built_in_decls[BUILT_IN_MEMCPY];
2565   t = build_function_call_expr (t, args);
2566
2567   if (want_value)
2568     {
2569       t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2570       t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2571     }
2572
2573   *expr_p = t;
2574   return GS_OK;
2575 }
2576
2577 /* A subroutine of gimplify_modify_expr.  Replace a MODIFY_EXPR with
2578    a call to __builtin_memset.  In this case we know that the RHS is
2579    a CONSTRUCTOR with an empty element list.  */
2580
2581 static enum gimplify_status
2582 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value)
2583 {
2584   tree args, t, to, to_ptr;
2585
2586   to = TREE_OPERAND (*expr_p, 0);
2587
2588   args = tree_cons (NULL, size, NULL);
2589
2590   args = tree_cons (NULL, integer_zero_node, args);
2591
2592   to_ptr = build_fold_addr_expr (to);
2593   args = tree_cons (NULL, to_ptr, args);
2594   t = implicit_built_in_decls[BUILT_IN_MEMSET];
2595   t = build_function_call_expr (t, args);
2596
2597   if (want_value)
2598     {
2599       t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2600       t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2601     }
2602
2603   *expr_p = t;
2604   return GS_OK;
2605 }
2606
2607 /* A subroutine of gimplify_init_ctor_preeval.  Called via walk_tree,
2608    determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
2609    assignment.  Returns non-null if we detect a potential overlap.  */
2610
2611 struct gimplify_init_ctor_preeval_data
2612 {
2613   /* The base decl of the lhs object.  May be NULL, in which case we
2614      have to assume the lhs is indirect.  */
2615   tree lhs_base_decl;
2616
2617   /* The alias set of the lhs object.  */
2618   int lhs_alias_set;
2619 };
2620
2621 static tree
2622 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
2623 {
2624   struct gimplify_init_ctor_preeval_data *data
2625     = (struct gimplify_init_ctor_preeval_data *) xdata;
2626   tree t = *tp;
2627
2628   /* If we find the base object, obviously we have overlap.  */
2629   if (data->lhs_base_decl == t)
2630     return t;
2631
2632   /* If the constructor component is indirect, determine if we have a
2633      potential overlap with the lhs.  The only bits of information we
2634      have to go on at this point are addressability and alias sets.  */
2635   if (TREE_CODE (t) == INDIRECT_REF
2636       && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2637       && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
2638     return t;
2639
2640   if (IS_TYPE_OR_DECL_P (t))
2641     *walk_subtrees = 0;
2642   return NULL;
2643 }
2644
2645 /* A subroutine of gimplify_init_constructor.  Pre-evaluate *EXPR_P,
2646    force values that overlap with the lhs (as described by *DATA)
2647    into temporaries.  */
2648
2649 static void
2650 gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
2651                             struct gimplify_init_ctor_preeval_data *data)
2652 {
2653   enum gimplify_status one;
2654
2655   /* If the value is invariant, then there's nothing to pre-evaluate.
2656      But ensure it doesn't have any side-effects since a SAVE_EXPR is
2657      invariant but has side effects and might contain a reference to
2658      the object we're initializing.  */
2659   if (TREE_INVARIANT (*expr_p) && !TREE_SIDE_EFFECTS (*expr_p))
2660     return;
2661
2662   /* If the type has non-trivial constructors, we can't pre-evaluate.  */
2663   if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
2664     return;
2665
2666   /* Recurse for nested constructors.  */
2667   if (TREE_CODE (*expr_p) == CONSTRUCTOR)
2668     {
2669       unsigned HOST_WIDE_INT ix;
2670       constructor_elt *ce;
2671       VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
2672
2673       for (ix = 0; VEC_iterate (constructor_elt, v, ix, ce); ix++)
2674         gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
2675       return;
2676     }
2677
2678   /* If this is a variable sized type, we must remember the size.  */
2679   maybe_with_size_expr (expr_p);
2680
2681   /* Gimplify the constructor element to something appropriate for the rhs
2682      of a MODIFY_EXPR.  Given that we know the lhs is an aggregate, we know
2683      the gimplifier will consider this a store to memory.  Doing this
2684      gimplification now means that we won't have to deal with complicated
2685      language-specific trees, nor trees like SAVE_EXPR that can induce
2686      exponential search behavior.  */
2687   one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
2688   if (one == GS_ERROR)
2689     {
2690       *expr_p = NULL;
2691       return;
2692     }
2693
2694   /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
2695      with the lhs, since "a = { .x=a }" doesn't make sense.  This will
2696      always be true for all scalars, since is_gimple_mem_rhs insists on a
2697      temporary variable for them.  */
2698   if (DECL_P (*expr_p))
2699     return;
2700
2701   /* If this is of variable size, we have no choice but to assume it doesn't
2702      overlap since we can't make a temporary for it.  */
2703   if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
2704     return;
2705
2706   /* Otherwise, we must search for overlap ...  */
2707   if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
2708     return;
2709
2710   /* ... and if found, force the value into a temporary.  */
2711   *expr_p = get_formal_tmp_var (*expr_p, pre_p);
2712 }
2713
2714 /* A subroutine of gimplify_init_ctor_eval.  Create a loop for
2715    a RANGE_EXPR in a CONSTRUCTOR for an array.
2716
2717       var = lower;
2718     loop_entry:
2719       object[var] = value;
2720       if (var == upper)
2721         goto loop_exit;
2722       var = var + 1;
2723       goto loop_entry;
2724     loop_exit:
2725
2726    We increment var _after_ the loop exit check because we might otherwise
2727    fail if upper == TYPE_MAX_VALUE (type for upper).
2728
2729    Note that we never have to deal with SAVE_EXPRs here, because this has
2730    already been taken care of for us, in gimplify_init_ctor_preeval().  */
2731
2732 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
2733                                      tree *, bool);
2734
2735 static void
2736 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
2737                                tree value, tree array_elt_type,
2738                                tree *pre_p, bool cleared)
2739 {
2740   tree loop_entry_label, loop_exit_label;
2741   tree var, var_type, cref;
2742
2743   loop_entry_label = create_artificial_label ();
2744   loop_exit_label = create_artificial_label ();
2745
2746   /* Create and initialize the index variable.  */
2747   var_type = TREE_TYPE (upper);
2748   var = create_tmp_var (var_type, NULL);
2749   append_to_statement_list (build2 (MODIFY_EXPR, var_type, var, lower), pre_p);
2750
2751   /* Add the loop entry label.  */
2752   append_to_statement_list (build1 (LABEL_EXPR,
2753                                     void_type_node,
2754                                     loop_entry_label),
2755                             pre_p);
2756
2757   /* Build the reference.  */
2758   cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2759                  var, NULL_TREE, NULL_TREE);
2760
2761   /* If we are a constructor, just call gimplify_init_ctor_eval to do
2762      the store.  Otherwise just assign value to the reference.  */
2763
2764   if (TREE_CODE (value) == CONSTRUCTOR)
2765     /* NB we might have to call ourself recursively through
2766        gimplify_init_ctor_eval if the value is a constructor.  */
2767     gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2768                              pre_p, cleared);
2769   else
2770     append_to_statement_list (build2 (MODIFY_EXPR, TREE_TYPE (cref),
2771                                       cref, value),
2772                               pre_p);
2773
2774   /* We exit the loop when the index var is equal to the upper bound.  */
2775   gimplify_and_add (build3 (COND_EXPR, void_type_node,
2776                             build2 (EQ_EXPR, boolean_type_node,
2777                                     var, upper),
2778                             build1 (GOTO_EXPR,
2779                                     void_type_node,
2780                                     loop_exit_label),
2781                             NULL_TREE),
2782                     pre_p);
2783
2784   /* Otherwise, increment the index var...  */
2785   append_to_statement_list (build2 (MODIFY_EXPR, var_type, var,
2786                                     build2 (PLUS_EXPR, var_type, var,
2787                                             fold_convert (var_type,
2788                                                           integer_one_node))),
2789                             pre_p);
2790
2791   /* ...and jump back to the loop entry.  */
2792   append_to_statement_list (build1 (GOTO_EXPR,
2793                                     void_type_node,
2794                                     loop_entry_label),
2795                             pre_p);
2796
2797   /* Add the loop exit label.  */
2798   append_to_statement_list (build1 (LABEL_EXPR,
2799                                     void_type_node,
2800                                     loop_exit_label),
2801                             pre_p);
2802 }
2803
2804 /* Return true if FDECL is accessing a field that is zero sized.  */
2805    
2806 static bool
2807 zero_sized_field_decl (tree fdecl)
2808 {
2809   if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl) 
2810       && integer_zerop (DECL_SIZE (fdecl)))
2811     return true;
2812   return false;
2813 }
2814
2815 /* Return true if TYPE is zero sized.  */
2816    
2817 static bool
2818 zero_sized_type (tree type)
2819 {
2820   if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
2821       && integer_zerop (TYPE_SIZE (type)))
2822     return true;
2823   return false;
2824 }
2825
2826 /* A subroutine of gimplify_init_constructor.  Generate individual
2827    MODIFY_EXPRs for a CONSTRUCTOR.  OBJECT is the LHS against which the
2828    assignments should happen.  ELTS is the CONSTRUCTOR_ELTS of the
2829    CONSTRUCTOR.  CLEARED is true if the entire LHS object has been
2830    zeroed first.  */
2831
2832 static void
2833 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
2834                          tree *pre_p, bool cleared)
2835 {
2836   tree array_elt_type = NULL;
2837   unsigned HOST_WIDE_INT ix;
2838   tree purpose, value;
2839
2840   if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
2841     array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
2842
2843   FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
2844     {
2845       tree cref, init;
2846
2847       /* NULL values are created above for gimplification errors.  */
2848       if (value == NULL)
2849         continue;
2850
2851       if (cleared && initializer_zerop (value))
2852         continue;
2853
2854       /* ??? Here's to hoping the front end fills in all of the indices,
2855          so we don't have to figure out what's missing ourselves.  */
2856       gcc_assert (purpose);
2857
2858       /* Skip zero-sized fields, unless value has side-effects.  This can
2859          happen with calls to functions returning a zero-sized type, which
2860          we shouldn't discard.  As a number of downstream passes don't
2861          expect sets of zero-sized fields, we rely on the gimplification of
2862          the MODIFY_EXPR we make below to drop the assignment statement.  */
2863       if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
2864         continue;
2865
2866       /* If we have a RANGE_EXPR, we have to build a loop to assign the
2867          whole range.  */
2868       if (TREE_CODE (purpose) == RANGE_EXPR)
2869         {
2870           tree lower = TREE_OPERAND (purpose, 0);
2871           tree upper = TREE_OPERAND (purpose, 1);
2872
2873           /* If the lower bound is equal to upper, just treat it as if
2874              upper was the index.  */
2875           if (simple_cst_equal (lower, upper))
2876             purpose = upper;
2877           else
2878             {
2879               gimplify_init_ctor_eval_range (object, lower, upper, value,
2880                                              array_elt_type, pre_p, cleared);
2881               continue;
2882             }
2883         }
2884
2885       if (array_elt_type)
2886         {
2887           cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2888                          purpose, NULL_TREE, NULL_TREE);
2889         }
2890       else
2891         {
2892           gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
2893           cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
2894                          unshare_expr (object), purpose, NULL_TREE);
2895         }
2896
2897       if (TREE_CODE (value) == CONSTRUCTOR
2898           && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
2899         gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2900                                  pre_p, cleared);
2901       else
2902         {
2903           init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
2904           gimplify_and_add (init, pre_p);
2905         }
2906     }
2907 }
2908
2909 /* A subroutine of gimplify_modify_expr.  Break out elements of a
2910    CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
2911
2912    Note that we still need to clear any elements that don't have explicit
2913    initializers, so if not all elements are initialized we keep the
2914    original MODIFY_EXPR, we just remove all of the constructor elements.  */
2915
2916 static enum gimplify_status
2917 gimplify_init_constructor (tree *expr_p, tree *pre_p,
2918                            tree *post_p, bool want_value)
2919 {
2920   tree object;
2921   tree ctor = TREE_OPERAND (*expr_p, 1);
2922   tree type = TREE_TYPE (ctor);
2923   enum gimplify_status ret;
2924   VEC(constructor_elt,gc) *elts;
2925
2926   if (TREE_CODE (ctor) != CONSTRUCTOR)
2927     return GS_UNHANDLED;
2928
2929   ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
2930                        is_gimple_lvalue, fb_lvalue);
2931   if (ret == GS_ERROR)
2932     return ret;
2933   object = TREE_OPERAND (*expr_p, 0);
2934
2935   elts = CONSTRUCTOR_ELTS (ctor);
2936
2937   ret = GS_ALL_DONE;
2938   switch (TREE_CODE (type))
2939     {
2940     case RECORD_TYPE:
2941     case UNION_TYPE:
2942     case QUAL_UNION_TYPE:
2943     case ARRAY_TYPE:
2944       {
2945         struct gimplify_init_ctor_preeval_data preeval_data;
2946         HOST_WIDE_INT num_type_elements, num_ctor_elements;
2947         HOST_WIDE_INT num_nonzero_elements;
2948         bool cleared, valid_const_initializer;
2949
2950         /* Aggregate types must lower constructors to initialization of
2951            individual elements.  The exception is that a CONSTRUCTOR node
2952            with no elements indicates zero-initialization of the whole.  */
2953         if (VEC_empty (constructor_elt, elts))
2954           break;
2955
2956         /* Fetch information about the constructor to direct later processing.
2957            We might want to make static versions of it in various cases, and
2958            can only do so if it known to be a valid constant initializer.  */
2959         valid_const_initializer
2960           = categorize_ctor_elements (ctor, &num_nonzero_elements,
2961                                       &num_ctor_elements, &cleared);
2962
2963         /* If a const aggregate variable is being initialized, then it
2964            should never be a lose to promote the variable to be static.  */
2965         if (valid_const_initializer
2966             && num_nonzero_elements > 1
2967             && TREE_READONLY (object)
2968             && TREE_CODE (object) == VAR_DECL)
2969           {
2970             DECL_INITIAL (object) = ctor;
2971             TREE_STATIC (object) = 1;
2972             if (!DECL_NAME (object))
2973               DECL_NAME (object) = create_tmp_var_name ("C");
2974             walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
2975
2976             /* ??? C++ doesn't automatically append a .<number> to the
2977                assembler name, and even when it does, it looks a FE private
2978                data structures to figure out what that number should be,
2979                which are not set for this variable.  I suppose this is
2980                important for local statics for inline functions, which aren't
2981                "local" in the object file sense.  So in order to get a unique
2982                TU-local symbol, we must invoke the lhd version now.  */
2983             lhd_set_decl_assembler_name (object);
2984
2985             *expr_p = NULL_TREE;
2986             break;
2987           }
2988
2989         /* If there are "lots" of initialized elements, even discounting
2990            those that are not address constants (and thus *must* be
2991            computed at runtime), then partition the constructor into
2992            constant and non-constant parts.  Block copy the constant
2993            parts in, then generate code for the non-constant parts.  */
2994         /* TODO.  There's code in cp/typeck.c to do this.  */
2995
2996         num_type_elements = count_type_elements (type, true);
2997
2998         /* If count_type_elements could not determine number of type elements
2999            for a constant-sized object, assume clearing is needed.
3000            Don't do this for variable-sized objects, as store_constructor
3001            will ignore the clearing of variable-sized objects.  */
3002         if (num_type_elements < 0 && int_size_in_bytes (type) >= 0)
3003           cleared = true;
3004         /* If there are "lots" of zeros, then block clear the object first.  */
3005         else if (num_type_elements - num_nonzero_elements > CLEAR_RATIO
3006                  && num_nonzero_elements < num_type_elements/4)
3007           cleared = true;
3008         /* ??? This bit ought not be needed.  For any element not present
3009            in the initializer, we should simply set them to zero.  Except
3010            we'd need to *find* the elements that are not present, and that
3011            requires trickery to avoid quadratic compile-time behavior in
3012            large cases or excessive memory use in small cases.  */
3013         else if (num_ctor_elements < num_type_elements)
3014           cleared = true;
3015
3016         /* If there are "lots" of initialized elements, and all of them
3017            are valid address constants, then the entire initializer can
3018            be dropped to memory, and then memcpy'd out.  Don't do this
3019            for sparse arrays, though, as it's more efficient to follow
3020            the standard CONSTRUCTOR behavior of memset followed by
3021            individual element initialization.  */
3022         if (valid_const_initializer && !cleared)
3023           {
3024             HOST_WIDE_INT size = int_size_in_bytes (type);
3025             unsigned int align;
3026
3027             /* ??? We can still get unbounded array types, at least
3028                from the C++ front end.  This seems wrong, but attempt
3029                to work around it for now.  */
3030             if (size < 0)
3031               {
3032                 size = int_size_in_bytes (TREE_TYPE (object));
3033                 if (size >= 0)
3034                   TREE_TYPE (ctor) = type = TREE_TYPE (object);
3035               }
3036
3037             /* Find the maximum alignment we can assume for the object.  */
3038             /* ??? Make use of DECL_OFFSET_ALIGN.  */
3039             if (DECL_P (object))
3040               align = DECL_ALIGN (object);
3041             else
3042               align = TYPE_ALIGN (type);
3043
3044             if (size > 0 && !can_move_by_pieces (size, align))
3045               {
3046                 tree new = create_tmp_var_raw (type, "C");
3047
3048                 gimple_add_tmp_var (new);
3049                 TREE_STATIC (new) = 1;
3050                 TREE_READONLY (new) = 1;
3051                 DECL_INITIAL (new) = ctor;
3052                 if (align > DECL_ALIGN (new))
3053                   {
3054                     DECL_ALIGN (new) = align;
3055                     DECL_USER_ALIGN (new) = 1;
3056                   }
3057                 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
3058
3059                 TREE_OPERAND (*expr_p, 1) = new;
3060
3061                 /* This is no longer an assignment of a CONSTRUCTOR, but
3062                    we still may have processing to do on the LHS.  So
3063                    pretend we didn't do anything here to let that happen.  */
3064                 return GS_UNHANDLED;
3065               }
3066           }
3067
3068         /* If there are nonzero elements, pre-evaluate to capture elements
3069            overlapping with the lhs into temporaries.  We must do this before
3070            clearing to fetch the values before they are zeroed-out.  */
3071         if (num_nonzero_elements > 0)
3072           {
3073             preeval_data.lhs_base_decl = get_base_address (object);
3074             if (!DECL_P (preeval_data.lhs_base_decl))
3075               preeval_data.lhs_base_decl = NULL;
3076             preeval_data.lhs_alias_set = get_alias_set (object);
3077
3078             gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
3079                                         pre_p, post_p, &preeval_data);
3080           }
3081
3082         if (cleared)
3083           {
3084             /* Zap the CONSTRUCTOR element list, which simplifies this case.
3085                Note that we still have to gimplify, in order to handle the
3086                case of variable sized types.  Avoid shared tree structures.  */
3087             CONSTRUCTOR_ELTS (ctor) = NULL;
3088             object = unshare_expr (object);
3089             gimplify_stmt (expr_p);
3090             append_to_statement_list (*expr_p, pre_p);
3091           }
3092
3093         /* If we have not block cleared the object, or if there are nonzero
3094            elements in the constructor, add assignments to the individual
3095            scalar fields of the object.  */
3096         if (!cleared || num_nonzero_elements > 0)
3097           gimplify_init_ctor_eval (object, elts, pre_p, cleared);
3098
3099         *expr_p = NULL_TREE;
3100       }
3101       break;
3102
3103     case COMPLEX_TYPE:
3104       {
3105         tree r, i;
3106
3107         /* Extract the real and imaginary parts out of the ctor.  */
3108         gcc_assert (VEC_length (constructor_elt, elts) == 2);
3109         r = VEC_index (constructor_elt, elts, 0)->value;
3110         i = VEC_index (constructor_elt, elts, 1)->value;
3111         if (r == NULL || i == NULL)
3112           {
3113             tree zero = fold_convert (TREE_TYPE (type), integer_zero_node);
3114             if (r == NULL)
3115               r = zero;
3116             if (i == NULL)
3117               i = zero;
3118           }
3119
3120         /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3121            represent creation of a complex value.  */
3122         if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3123           {
3124             ctor = build_complex (type, r, i);
3125             TREE_OPERAND (*expr_p, 1) = ctor;
3126           }
3127         else
3128           {
3129             ctor = build2 (COMPLEX_EXPR, type, r, i);
3130             TREE_OPERAND (*expr_p, 1) = ctor;
3131             ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3132                                  rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
3133                                  fb_rvalue);
3134           }
3135       }
3136       break;
3137
3138     case VECTOR_TYPE:
3139       {
3140         unsigned HOST_WIDE_INT ix;
3141         constructor_elt *ce;
3142
3143         /* Go ahead and simplify constant constructors to VECTOR_CST.  */
3144         if (TREE_CONSTANT (ctor))
3145           {
3146             bool constant_p = true;
3147             tree value;
3148
3149             /* Even when ctor is constant, it might contain non-*_CST
3150               elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
3151               belong into VECTOR_CST nodes.  */
3152             FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
3153               if (!CONSTANT_CLASS_P (value))
3154                 {
3155                   constant_p = false;
3156                   break;
3157                 }
3158
3159             if (constant_p)
3160               {
3161                 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
3162                 break;
3163               }
3164           }
3165
3166         /* Vector types use CONSTRUCTOR all the way through gimple
3167           compilation as a general initializer.  */
3168         for (ix = 0; VEC_iterate (constructor_elt, elts, ix, ce); ix++)
3169           {
3170             enum gimplify_status tret;
3171             tret = gimplify_expr (&ce->value, pre_p, post_p,
3172                                   is_gimple_val, fb_rvalue);
3173             if (tret == GS_ERROR)
3174               ret = GS_ERROR;
3175           }
3176       }
3177       break;
3178
3179     default:
3180       /* So how did we get a CONSTRUCTOR for a scalar type?  */
3181       gcc_unreachable ();
3182     }
3183
3184   if (ret == GS_ERROR)
3185     return GS_ERROR;
3186   else if (want_value)
3187     {
3188       append_to_statement_list (*expr_p, pre_p);
3189       *expr_p = object;
3190       return GS_OK;
3191     }
3192   else
3193     return GS_ALL_DONE;
3194 }
3195
3196 /* Given a pointer value OP0, return a simplified version of an
3197    indirection through OP0, or NULL_TREE if no simplification is
3198    possible.  This may only be applied to a rhs of an expression.
3199    Note that the resulting type may be different from the type pointed
3200    to in the sense that it is still compatible from the langhooks
3201    point of view. */
3202
3203 static tree
3204 fold_indirect_ref_rhs (tree t)
3205 {
3206   tree type = TREE_TYPE (TREE_TYPE (t));
3207   tree sub = t;
3208   tree subtype;
3209
3210   STRIP_NOPS (sub);
3211   subtype = TREE_TYPE (sub);
3212   if (!POINTER_TYPE_P (subtype))
3213     return NULL_TREE;
3214
3215   if (TREE_CODE (sub) == ADDR_EXPR)
3216     {
3217       tree op = TREE_OPERAND (sub, 0);
3218       tree optype = TREE_TYPE (op);
3219       /* *&p => p */
3220       if (lang_hooks.types_compatible_p (type, optype))
3221         return op;
3222       /* *(foo *)&fooarray => fooarray[0] */
3223       else if (TREE_CODE (optype) == ARRAY_TYPE
3224                && lang_hooks.types_compatible_p (type, TREE_TYPE (optype)))
3225        {
3226          tree type_domain = TYPE_DOMAIN (optype);
3227          tree min_val = size_zero_node;
3228          if (type_domain && TYPE_MIN_VALUE (type_domain))
3229            min_val = TYPE_MIN_VALUE (type_domain);
3230          return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
3231        }
3232     }
3233
3234   /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3235   if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3236       && lang_hooks.types_compatible_p (type, TREE_TYPE (TREE_TYPE (subtype))))
3237     {
3238       tree type_domain;
3239       tree min_val = size_zero_node;
3240       tree osub = sub;
3241       sub = fold_indirect_ref_rhs (sub);
3242       if (! sub)
3243         sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
3244       type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3245       if (type_domain && TYPE_MIN_VALUE (type_domain))
3246         min_val = TYPE_MIN_VALUE (type_domain);
3247       return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
3248     }
3249
3250   return NULL_TREE;
3251 }
3252
3253 /* Subroutine of gimplify_modify_expr to do simplifications of MODIFY_EXPRs
3254    based on the code of the RHS.  We loop for as long as something changes.  */
3255
3256 static enum gimplify_status
3257 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
3258                           tree *post_p, bool want_value)
3259 {
3260   enum gimplify_status ret = GS_OK;
3261
3262   while (ret != GS_UNHANDLED)
3263     switch (TREE_CODE (*from_p))
3264       {
3265       case INDIRECT_REF:
3266         {
3267           /* If we have code like 
3268
3269                 *(const A*)(A*)&x
3270
3271              where the type of "x" is a (possibly cv-qualified variant
3272              of "A"), treat the entire expression as identical to "x".
3273              This kind of code arises in C++ when an object is bound
3274              to a const reference, and if "x" is a TARGET_EXPR we want
3275              to take advantage of the optimization below.  */
3276           tree t = fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
3277           if (t)
3278             {
3279               *from_p = t;
3280               ret = GS_OK;
3281             }
3282           else
3283             ret = GS_UNHANDLED;
3284           break;
3285         }
3286
3287       case TARGET_EXPR:
3288         {
3289           /* If we are initializing something from a TARGET_EXPR, strip the
3290              TARGET_EXPR and initialize it directly, if possible.  This can't
3291              be done if the initializer is void, since that implies that the
3292              temporary is set in some non-trivial way.
3293
3294              ??? What about code that pulls out the temp and uses it
3295              elsewhere? I think that such code never uses the TARGET_EXPR as
3296              an initializer.  If I'm wrong, we'll die because the temp won't
3297              have any RTL.  In that case, I guess we'll need to replace
3298              references somehow.  */
3299           tree init = TARGET_EXPR_INITIAL (*from_p);
3300
3301           if (!VOID_TYPE_P (TREE_TYPE (init)))
3302             {
3303               *from_p = init;
3304               ret = GS_OK;
3305             }
3306           else
3307             ret = GS_UNHANDLED;
3308         }
3309         break;
3310
3311       case COMPOUND_EXPR:
3312         /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
3313            caught.  */
3314         gimplify_compound_expr (from_p, pre_p, true);
3315         ret = GS_OK;
3316         break;
3317
3318       case CONSTRUCTOR:
3319         /* If we're initializing from a CONSTRUCTOR, break this into
3320            individual MODIFY_EXPRs.  */
3321         return gimplify_init_constructor (expr_p, pre_p, post_p, want_value);
3322
3323       case COND_EXPR:
3324         /* If we're assigning to a non-register type, push the assignment
3325            down into the branches.  This is mandatory for ADDRESSABLE types,
3326            since we cannot generate temporaries for such, but it saves a
3327            copy in other cases as well.  */
3328         if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
3329           {
3330             /* This code should mirror the code in gimplify_cond_expr. */
3331             enum tree_code code = TREE_CODE (*expr_p);
3332             tree cond = *from_p;
3333             tree result = *to_p;
3334
3335             ret = gimplify_expr (&result, pre_p, post_p,
3336                                  is_gimple_min_lval, fb_lvalue);
3337             if (ret != GS_ERROR)
3338               ret = GS_OK;
3339
3340             if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
3341               TREE_OPERAND (cond, 1)
3342                 = build2 (code, void_type_node, result,
3343                           TREE_OPERAND (cond, 1));
3344             if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
3345               TREE_OPERAND (cond, 2)
3346                 = build2 (code, void_type_node, unshare_expr (result),
3347                           TREE_OPERAND (cond, 2));
3348
3349             TREE_TYPE (cond) = void_type_node;
3350             recalculate_side_effects (cond);
3351
3352             if (want_value)
3353               {
3354                 gimplify_and_add (cond, pre_p);
3355                 *expr_p = unshare_expr (result);
3356               }
3357             else
3358               *expr_p = cond;
3359             return ret;
3360           }
3361         else
3362           ret = GS_UNHANDLED;
3363         break;
3364
3365       case CALL_EXPR:
3366         /* For calls that return in memory, give *to_p as the CALL_EXPR's
3367            return slot so that we don't generate a temporary.  */
3368         if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
3369             && aggregate_value_p (*from_p, *from_p))
3370           {
3371             bool use_target;
3372
3373             if (!(rhs_predicate_for (*to_p))(*from_p))
3374               /* If we need a temporary, *to_p isn't accurate.  */
3375               use_target = false;
3376             else if (TREE_CODE (*to_p) == RESULT_DECL
3377                      && DECL_NAME (*to_p) == NULL_TREE
3378                      && needs_to_live_in_memory (*to_p))
3379               /* It's OK to use the return slot directly unless it's an NRV. */
3380               use_target = true;
3381             else if (is_gimple_reg_type (TREE_TYPE (*to_p))
3382                      || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
3383               /* Don't force regs into memory.  */
3384               use_target = false;
3385             else if (TREE_CODE (*to_p) == VAR_DECL
3386                      && DECL_GIMPLE_FORMAL_TEMP_P (*to_p))
3387               /* Don't use the original target if it's a formal temp; we
3388                  don't want to take their addresses.  */
3389               use_target = false;
3390             else if (TREE_CODE (*expr_p) == INIT_EXPR)
3391               /* It's OK to use the target directly if it's being
3392                  initialized. */
3393               use_target = true;
3394             else if (!is_gimple_non_addressable (*to_p))
3395               /* Don't use the original target if it's already addressable;
3396                  if its address escapes, and the called function uses the
3397                  NRV optimization, a conforming program could see *to_p
3398                  change before the called function returns; see c++/19317.
3399                  When optimizing, the return_slot pass marks more functions
3400                  as safe after we have escape info.  */
3401               use_target = false;
3402             else
3403               use_target = true;
3404
3405             if (use_target)
3406               {
3407                 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
3408                 lang_hooks.mark_addressable (*to_p);
3409               }
3410           }
3411
3412         ret = GS_UNHANDLED;
3413         break;
3414
3415         /* If we're initializing from a container, push the initialization
3416            inside it.  */
3417       case CLEANUP_POINT_EXPR:
3418       case BIND_EXPR:
3419       case STATEMENT_LIST:
3420         {
3421           tree wrap = *from_p;
3422           tree t;
3423
3424           ret = gimplify_expr (to_p, pre_p, post_p,
3425                                is_gimple_min_lval, fb_lvalue);
3426           if (ret != GS_ERROR)
3427             ret = GS_OK;
3428
3429           t = voidify_wrapper_expr (wrap, *expr_p);
3430           gcc_assert (t == *expr_p);
3431
3432           if (want_value)
3433             {
3434               gimplify_and_add (wrap, pre_p);
3435               *expr_p = unshare_expr (*to_p);
3436             }
3437           else
3438             *expr_p = wrap;
3439           return GS_OK;
3440         }
3441         
3442       default:
3443         ret = GS_UNHANDLED;
3444         break;
3445       }
3446
3447   return ret;
3448 }
3449
3450 /* Promote partial stores to COMPLEX variables to total stores.  *EXPR_P is
3451    a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
3452    DECL_COMPLEX_GIMPLE_REG_P set.  */
3453
3454 static enum gimplify_status
3455 gimplify_modify_expr_complex_part (tree *expr_p, tree *pre_p, bool want_value)
3456 {
3457   enum tree_code code, ocode;
3458   tree lhs, rhs, new_rhs, other, realpart, imagpart;
3459
3460   lhs = TREE_OPERAND (*expr_p, 0);
3461   rhs = TREE_OPERAND (*expr_p, 1);
3462   code = TREE_CODE (lhs);
3463   lhs = TREE_OPERAND (lhs, 0);
3464
3465   ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
3466   other = build1 (ocode, TREE_TYPE (rhs), lhs);
3467   other = get_formal_tmp_var (other, pre_p);
3468
3469   realpart = code == REALPART_EXPR ? rhs : other;
3470   imagpart = code == REALPART_EXPR ? other : rhs;
3471
3472   if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
3473     new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
3474   else
3475     new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
3476
3477   TREE_OPERAND (*expr_p, 0) = lhs;
3478   TREE_OPERAND (*expr_p, 1) = new_rhs;
3479
3480   if (want_value)
3481     {
3482       append_to_statement_list (*expr_p, pre_p);
3483       *expr_p = rhs;
3484     }
3485
3486   return GS_ALL_DONE;
3487 }
3488
3489 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
3490
3491       modify_expr
3492               : varname '=' rhs
3493               | '*' ID '=' rhs
3494
3495     PRE_P points to the list where side effects that must happen before
3496         *EXPR_P should be stored.
3497
3498     POST_P points to the list where side effects that must happen after
3499         *EXPR_P should be stored.
3500
3501     WANT_VALUE is nonzero iff we want to use the value of this expression
3502         in another expression.  */
3503
3504 static enum gimplify_status
3505 gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
3506 {
3507   tree *from_p = &TREE_OPERAND (*expr_p, 1);
3508   tree *to_p = &TREE_OPERAND (*expr_p, 0);
3509   enum gimplify_status ret = GS_UNHANDLED;
3510
3511   gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
3512               || TREE_CODE (*expr_p) == INIT_EXPR);
3513
3514   /* For zero sized types only gimplify the left hand side and right hand side
3515      as statements and throw away the assignment.  */
3516   if (zero_sized_type (TREE_TYPE (*from_p)))
3517     {
3518       gimplify_stmt (from_p);
3519       gimplify_stmt (to_p);
3520       append_to_statement_list (*from_p, pre_p);
3521       append_to_statement_list (*to_p, pre_p);
3522       *expr_p = NULL_TREE;
3523       return GS_ALL_DONE;
3524     }
3525
3526   /* See if any simplifications can be done based on what the RHS is.  */
3527   ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3528                                   want_value);
3529   if (ret != GS_UNHANDLED)
3530     return ret;
3531
3532   /* If the value being copied is of variable width, compute the length
3533      of the copy into a WITH_SIZE_EXPR.   Note that we need to do this
3534      before gimplifying any of the operands so that we can resolve any
3535      PLACEHOLDER_EXPRs in the size.  Also note that the RTL expander uses
3536      the size of the expression to be copied, not of the destination, so
3537      that is what we must here.  */
3538   maybe_with_size_expr (from_p);
3539
3540   ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
3541   if (ret == GS_ERROR)
3542     return ret;
3543
3544   ret = gimplify_expr (from_p, pre_p, post_p,
3545                        rhs_predicate_for (*to_p), fb_rvalue);
3546   if (ret == GS_ERROR)
3547     return ret;
3548
3549   /* Now see if the above changed *from_p to something we handle specially.  */
3550   ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3551                                   want_value);
3552   if (ret != GS_UNHANDLED)
3553     return ret;
3554
3555   /* If we've got a variable sized assignment between two lvalues (i.e. does
3556      not involve a call), then we can make things a bit more straightforward
3557      by converting the assignment to memcpy or memset.  */
3558   if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
3559     {
3560       tree from = TREE_OPERAND (*from_p, 0);
3561       tree size = TREE_OPERAND (*from_p, 1);
3562
3563       if (TREE_CODE (from) == CONSTRUCTOR)
3564         return gimplify_modify_expr_to_memset (expr_p, size, want_value);
3565       if (is_gimple_addressable (from))
3566         {
3567           *from_p = from;
3568           return gimplify_modify_expr_to_memcpy (expr_p, size, want_value);
3569         }
3570     }
3571
3572   /* Transform partial stores to non-addressable complex variables into
3573      total stores.  This allows us to use real instead of virtual operands
3574      for these variables, which improves optimization.  */
3575   if ((TREE_CODE (*to_p) == REALPART_EXPR
3576        || TREE_CODE (*to_p) == IMAGPART_EXPR)
3577       && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
3578     return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
3579
3580   if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
3581     {
3582       /* If we've somehow already got an SSA_NAME on the LHS, then
3583          we're probably modified it twice.  Not good.  */
3584       gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
3585       *to_p = make_ssa_name (*to_p, *expr_p);
3586     }
3587
3588   if (want_value)
3589     {
3590       append_to_statement_list (*expr_p, pre_p);
3591       *expr_p = *to_p;
3592       return GS_OK;
3593     }
3594
3595   return GS_ALL_DONE;
3596 }
3597
3598 /*  Gimplify a comparison between two variable-sized objects.  Do this
3599     with a call to BUILT_IN_MEMCMP.  */
3600
3601 static enum gimplify_status
3602 gimplify_variable_sized_compare (tree *expr_p)
3603 {
3604   tree op0 = TREE_OPERAND (*expr_p, 0);
3605   tree op1 = TREE_OPERAND (*expr_p, 1);
3606   tree args, t, dest;
3607
3608   t = TYPE_SIZE_UNIT (TREE_TYPE (op0));
3609   t = unshare_expr (t);
3610   t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, op0);
3611   args = tree_cons (NULL, t, NULL);
3612   t = build_fold_addr_expr (op1);
3613   args = tree_cons (NULL, t, args);
3614   dest = build_fold_addr_expr (op0);
3615   args = tree_cons (NULL, dest, args);
3616   t = implicit_built_in_decls[BUILT_IN_MEMCMP];
3617   t = build_function_call_expr (t, args);
3618   *expr_p
3619     = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
3620
3621   return GS_OK;
3622 }
3623
3624 /*  Gimplify a comparison between two aggregate objects of integral scalar
3625     mode as a comparison between the bitwise equivalent scalar values.  */
3626
3627 static enum gimplify_status
3628 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
3629 {
3630   tree op0 = TREE_OPERAND (*expr_p, 0);
3631   tree op1 = TREE_OPERAND (*expr_p, 1);
3632
3633   tree type = TREE_TYPE (op0);
3634   tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
3635
3636   op0 = fold_build1 (VIEW_CONVERT_EXPR, scalar_type, op0);
3637   op1 = fold_build1 (VIEW_CONVERT_EXPR, scalar_type, op1);
3638
3639   *expr_p
3640     = fold_build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
3641
3642   return GS_OK;
3643 }
3644
3645 /*  Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions.  EXPR_P
3646     points to the expression to gimplify.
3647
3648     Expressions of the form 'a && b' are gimplified to:
3649
3650         a && b ? true : false
3651
3652     gimplify_cond_expr will do the rest.
3653
3654     PRE_P points to the list where side effects that must happen before
3655         *EXPR_P should be stored.  */
3656
3657 static enum gimplify_status
3658 gimplify_boolean_expr (tree *expr_p)
3659 {
3660   /* Preserve the original type of the expression.  */
3661   tree type = TREE_TYPE (*expr_p);
3662
3663   *expr_p = build3 (COND_EXPR, type, *expr_p,
3664                     fold_convert (type, boolean_true_node),
3665                     fold_convert (type, boolean_false_node));
3666
3667   return GS_OK;
3668 }
3669
3670 /* Gimplifies an expression sequence.  This function gimplifies each
3671    expression and re-writes the original expression with the last
3672    expression of the sequence in GIMPLE form.
3673
3674    PRE_P points to the list where the side effects for all the
3675        expressions in the sequence will be emitted.
3676
3677    WANT_VALUE is true when the result of the last COMPOUND_EXPR is used.  */
3678 /* ??? Should rearrange to share the pre-queue with all the indirect
3679    invocations of gimplify_expr.  Would probably save on creations
3680    of statement_list nodes.  */
3681
3682 static enum gimplify_status
3683 gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
3684 {
3685   tree t = *expr_p;
3686
3687   do
3688     {
3689       tree *sub_p = &TREE_OPERAND (t, 0);
3690
3691       if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
3692         gimplify_compound_expr (sub_p, pre_p, false);
3693       else
3694         gimplify_stmt (sub_p);
3695       append_to_statement_list (*sub_p, pre_p);
3696
3697       t = TREE_OPERAND (t, 1);
3698     }
3699   while (TREE_CODE (t) == COMPOUND_EXPR);
3700
3701   *expr_p = t;
3702   if (want_value)
3703     return GS_OK;
3704   else
3705     {
3706       gimplify_stmt (expr_p);
3707       return GS_ALL_DONE;
3708     }
3709 }
3710
3711 /* Gimplifies a statement list.  These may be created either by an
3712    enlightened front-end, or by shortcut_cond_expr.  */
3713
3714 static enum gimplify_status
3715 gimplify_statement_list (tree *expr_p, tree *pre_p)
3716 {
3717   tree temp = voidify_wrapper_expr (*expr_p, NULL);
3718
3719   tree_stmt_iterator i = tsi_start (*expr_p);
3720
3721   while (!tsi_end_p (i))
3722     {
3723       tree t;
3724
3725       gimplify_stmt (tsi_stmt_ptr (i));
3726
3727       t = tsi_stmt (i);
3728       if (t == NULL)
3729         tsi_delink (&i);
3730       else if (TREE_CODE (t) == STATEMENT_LIST)
3731         {
3732           tsi_link_before (&i, t, TSI_SAME_STMT);
3733           tsi_delink (&i);
3734         }
3735       else
3736         tsi_next (&i);
3737     }
3738
3739   if (temp)
3740     {
3741       append_to_statement_list (*expr_p, pre_p);
3742       *expr_p = temp;
3743       return GS_OK;
3744     }
3745
3746   return GS_ALL_DONE;
3747 }
3748
3749 /*  Gimplify a SAVE_EXPR node.  EXPR_P points to the expression to
3750     gimplify.  After gimplification, EXPR_P will point to a new temporary
3751     that holds the original value of the SAVE_EXPR node.
3752
3753     PRE_P points to the list where side effects that must happen before
3754         *EXPR_P should be stored.  */
3755
3756 static enum gimplify_status
3757 gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
3758 {
3759   enum gimplify_status ret = GS_ALL_DONE;
3760   tree val;
3761
3762   gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
3763   val = TREE_OPERAND (*expr_p, 0);
3764
3765   /* If the SAVE_EXPR has not been resolved, then evaluate it once.  */
3766   if (!SAVE_EXPR_RESOLVED_P (*expr_p))
3767     {
3768       /* The operand may be a void-valued expression such as SAVE_EXPRs
3769          generated by the Java frontend for class initialization.  It is
3770          being executed only for its side-effects.  */
3771       if (TREE_TYPE (val) == void_type_node)
3772         {
3773           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3774                                is_gimple_stmt, fb_none);
3775           append_to_statement_list (TREE_OPERAND (*expr_p, 0), pre_p);
3776           val = NULL;
3777         }
3778       else
3779         val = get_initialized_tmp_var (val, pre_p, post_p);
3780
3781       TREE_OPERAND (*expr_p, 0) = val;
3782       SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
3783     }
3784
3785   *expr_p = val;
3786
3787   return ret;
3788 }
3789
3790 /*  Re-write the ADDR_EXPR node pointed to by EXPR_P
3791
3792       unary_expr
3793               : ...
3794               | '&' varname
3795               ...
3796
3797     PRE_P points to the list where side effects that must happen before
3798         *EXPR_P should be stored.
3799
3800     POST_P points to the list where side effects that must happen after
3801         *EXPR_P should be stored.  */
3802
3803 static enum gimplify_status
3804 gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
3805 {
3806   tree expr = *expr_p;
3807   tree op0 = TREE_OPERAND (expr, 0);
3808   enum gimplify_status ret;
3809
3810   switch (TREE_CODE (op0))
3811     {
3812     case INDIRECT_REF:
3813     case MISALIGNED_INDIRECT_REF:
3814     do_indirect_ref:
3815       /* Check if we are dealing with an expression of the form '&*ptr'.
3816          While the front end folds away '&*ptr' into 'ptr', these
3817          expressions may be generated internally by the compiler (e.g.,
3818          builtins like __builtin_va_end).  */
3819       /* Caution: the silent array decomposition semantics we allow for
3820          ADDR_EXPR means we can't always discard the pair.  */
3821       /* Gimplification of the ADDR_EXPR operand may drop
3822          cv-qualification conversions, so make sure we add them if
3823          needed.  */
3824       {
3825         tree op00 = TREE_OPERAND (op0, 0);
3826         tree t_expr = TREE_TYPE (expr);
3827         tree t_op00 = TREE_TYPE (op00);
3828
3829         if (!lang_hooks.types_compatible_p (t_expr, t_op00))
3830           {
3831 #ifdef ENABLE_CHECKING
3832             tree t_op0 = TREE_TYPE (op0);
3833             gcc_assert (POINTER_TYPE_P (t_expr)
3834                         && cpt_same_type (TREE_CODE (t_op0) == ARRAY_TYPE
3835                                           ? TREE_TYPE (t_op0) : t_op0,
3836                                           TREE_TYPE (t_expr))
3837                         && POINTER_TYPE_P (t_op00)
3838                         && cpt_same_type (t_op0, TREE_TYPE (t_op00)));
3839 #endif
3840             op00 = fold_convert (TREE_TYPE (expr), op00);
3841           }
3842         *expr_p = op00;
3843         ret = GS_OK;
3844       }
3845       break;
3846
3847     case VIEW_CONVERT_EXPR:
3848       /* Take the address of our operand and then convert it to the type of
3849          this ADDR_EXPR.
3850
3851          ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3852          all clear.  The impact of this transformation is even less clear.  */
3853
3854       /* If the operand is a useless conversion, look through it.  Doing so
3855          guarantees that the ADDR_EXPR and its operand will remain of the
3856          same type.  */
3857       if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
3858         op0 = TREE_OPERAND (op0, 0);
3859
3860       *expr_p = fold_convert (TREE_TYPE (expr),
3861                               build_fold_addr_expr (TREE_OPERAND (op0, 0)));
3862       ret = GS_OK;
3863       break;
3864
3865     default:
3866       /* We use fb_either here because the C frontend sometimes takes
3867          the address of a call that returns a struct; see
3868          gcc.dg/c99-array-lval-1.c.  The gimplifier will correctly make
3869          the implied temporary explicit.  */
3870       ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
3871                            is_gimple_addressable, fb_either);
3872       if (ret != GS_ERROR)
3873         {
3874           op0 = TREE_OPERAND (expr, 0);
3875
3876           /* For various reasons, the gimplification of the expression
3877              may have made a new INDIRECT_REF.  */
3878           if (TREE_CODE (op0) == INDIRECT_REF)
3879             goto do_indirect_ref;
3880
3881           /* Make sure TREE_INVARIANT, TREE_CONSTANT, and TREE_SIDE_EFFECTS
3882              is set properly.  */
3883           recompute_tree_invariant_for_addr_expr (expr);
3884
3885           /* Mark the RHS addressable.  */
3886           lang_hooks.mark_addressable (TREE_OPERAND (expr, 0));
3887         }
3888       break;
3889     }
3890
3891   return ret;
3892 }
3893
3894 /* Gimplify the operands of an ASM_EXPR.  Input operands should be a gimple
3895    value; output operands should be a gimple lvalue.  */
3896
3897 static enum gimplify_status
3898 gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
3899 {
3900   tree expr = *expr_p;
3901   int noutputs = list_length (ASM_OUTPUTS (expr));
3902   const char **oconstraints
3903     = (const char **) alloca ((noutputs) * sizeof (const char *));
3904   int i;
3905   tree link;
3906   const char *constraint;
3907   bool allows_mem, allows_reg, is_inout;
3908   enum gimplify_status ret, tret;
3909
3910   ret = GS_ALL_DONE;
3911   for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3912     {
3913       size_t constraint_len;
3914       oconstraints[i] = constraint
3915         = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3916       constraint_len = strlen (constraint);
3917       if (constraint_len == 0)
3918         continue;
3919
3920       parse_output_constraint (&constraint, i, 0, 0,
3921                                &allows_mem, &allows_reg, &is_inout);
3922
3923       if (!allows_reg && allows_mem)
3924         lang_hooks.mark_addressable (TREE_VALUE (link));
3925
3926       tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3927                             is_inout ? is_gimple_min_lval : is_gimple_lvalue,
3928                             fb_lvalue | fb_mayfail);
3929       if (tret == GS_ERROR)
3930         {
3931           error ("invalid lvalue in asm output %d", i);
3932           ret = tret;
3933         }
3934
3935       if (is_inout)
3936         {
3937           /* An input/output operand.  To give the optimizers more
3938              flexibility, split it into separate input and output
3939              operands.  */
3940           tree input;
3941           char buf[10];
3942
3943           /* Turn the in/out constraint into an output constraint.  */
3944           char *p = xstrdup (constraint);
3945           p[0] = '=';
3946           TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
3947
3948           /* And add a matching input constraint.  */
3949           if (allows_reg)
3950             {
3951               sprintf (buf, "%d", i);
3952
3953               /* If there are multiple alternatives in the constraint,
3954                  handle each of them individually.  Those that allow register
3955                  will be replaced with operand number, the others will stay
3956                  unchanged.  */
3957               if (strchr (p, ',') != NULL)
3958                 {
3959                   size_t len = 0, buflen = strlen (buf);
3960                   char *beg, *end, *str, *dst;
3961
3962                   for (beg = p + 1;;)
3963                     {
3964                       end = strchr (beg, ',');
3965                       if (end == NULL)
3966                         end = strchr (beg, '\0');
3967                       if ((size_t) (end - beg) < buflen)
3968                         len += buflen + 1;
3969                       else
3970                         len += end - beg + 1;
3971                       if (*end)
3972                         beg = end + 1;
3973                       else
3974                         break;
3975                     }
3976
3977                   str = (char *) alloca (len);
3978                   for (beg = p + 1, dst = str;;)
3979                     {
3980                       const char *tem;
3981                       bool mem_p, reg_p, inout_p;
3982
3983                       end = strchr (beg, ',');
3984                       if (end)
3985                         *end = '\0';
3986                       beg[-1] = '=';
3987                       tem = beg - 1;
3988                       parse_output_constraint (&tem, i, 0, 0,
3989                                                &mem_p, &reg_p, &inout_p);
3990                       if (dst != str)
3991                         *dst++ = ',';
3992                       if (reg_p)
3993                         {
3994                           memcpy (dst, buf, buflen);
3995                           dst += buflen;
3996                         }
3997                       else
3998                         {
3999                           if (end)
4000                             len = end - beg;
4001                           else
4002                             len = strlen (beg);
4003                           memcpy (dst, beg, len);
4004                           dst += len;
4005                         }
4006                       if (end)
4007                         beg = end + 1;
4008                       else
4009                         break;
4010                     }
4011                   *dst = '\0';
4012                   input = build_string (dst - str, str);
4013                 }
4014               else
4015                 input = build_string (strlen (buf), buf);
4016             }
4017           else
4018             input = build_string (constraint_len - 1, constraint + 1);
4019
4020           free (p);
4021
4022           input = build_tree_list (build_tree_list (NULL_TREE, input),
4023                                    unshare_expr (TREE_VALUE (link)));
4024           ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
4025         }
4026     }
4027
4028   for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
4029     {
4030       constraint
4031         = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4032       parse_input_constraint (&constraint, 0, 0, noutputs, 0,
4033                               oconstraints, &allows_mem, &allows_reg);
4034
4035       /* If the operand is a memory input, it should be an lvalue.  */
4036       if (!allows_reg && allows_mem)
4037         {
4038           tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4039                                 is_gimple_lvalue, fb_lvalue | fb_mayfail);
4040           lang_hooks.mark_addressable (TREE_VALUE (link));
4041           if (tret == GS_ERROR)
4042             {
4043               error ("memory input %d is not directly addressable", i);
4044               ret = tret;
4045             }
4046         }
4047       else
4048         {
4049           tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4050                                 is_gimple_asm_val, fb_rvalue);
4051           if (tret == GS_ERROR)
4052             ret = tret;
4053         }
4054     }
4055
4056   return ret;
4057 }
4058
4059 /* Gimplify a CLEANUP_POINT_EXPR.  Currently this works by adding
4060    WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
4061    gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
4062    return to this function.
4063
4064    FIXME should we complexify the prequeue handling instead?  Or use flags
4065    for all the cleanups and let the optimizer tighten them up?  The current
4066    code seems pretty fragile; it will break on a cleanup within any
4067    non-conditional nesting.  But any such nesting would be broken, anyway;
4068    we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
4069    and continues out of it.  We can do that at the RTL level, though, so
4070    having an optimizer to tighten up try/finally regions would be a Good
4071    Thing.  */
4072
4073 static enum gimplify_status
4074 gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
4075 {
4076   tree_stmt_iterator iter;
4077   tree body;
4078
4079   tree temp = voidify_wrapper_expr (*expr_p, NULL);
4080
4081   /* We only care about the number of conditions between the innermost
4082      CLEANUP_POINT_EXPR and the cleanup.  So save and reset the count and
4083      any cleanups collected outside the CLEANUP_POINT_EXPR.  */
4084   int old_conds = gimplify_ctxp->conditions;
4085   tree old_cleanups = gimplify_ctxp->conditional_cleanups;
4086   gimplify_ctxp->conditions = 0;
4087   gimplify_ctxp->conditional_cleanups = NULL_TREE;
4088
4089   body = TREE_OPERAND (*expr_p, 0);
4090   gimplify_to_stmt_list (&body);
4091
4092   gimplify_ctxp->conditions = old_conds;
4093   gimplify_ctxp->conditional_cleanups = old_cleanups;
4094
4095   for (iter = tsi_start (body); !tsi_end_p (iter); )
4096     {
4097       tree *wce_p = tsi_stmt_ptr (iter);
4098       tree wce = *wce_p;
4099
4100       if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
4101         {
4102           if (tsi_one_before_end_p (iter))
4103             {
4104               tsi_link_before (&iter, TREE_OPERAND (wce, 0), TSI_SAME_STMT);
4105               tsi_delink (&iter);
4106               break;
4107             }
4108           else
4109             {
4110               tree sl, tfe;
4111               enum tree_code code;
4112
4113               if (CLEANUP_EH_ONLY (wce))
4114                 code = TRY_CATCH_EXPR;
4115               else
4116                 code = TRY_FINALLY_EXPR;
4117
4118               sl = tsi_split_statement_list_after (&iter);
4119               tfe = build2 (code, void_type_node, sl, NULL_TREE);
4120               append_to_statement_list (TREE_OPERAND (wce, 0),
4121                                         &TREE_OPERAND (tfe, 1));
4122               *wce_p = tfe;
4123               iter = tsi_start (sl);
4124             }
4125         }
4126       else
4127         tsi_next (&iter);
4128     }
4129
4130   if (temp)
4131     {
4132       *expr_p = temp;
4133       append_to_statement_list (body, pre_p);
4134       return GS_OK;
4135     }
4136   else
4137     {
4138       *expr_p = body;
4139       return GS_ALL_DONE;
4140     }
4141 }
4142
4143 /* Insert a cleanup marker for gimplify_cleanup_point_expr.  CLEANUP
4144    is the cleanup action required.  */
4145
4146 static void
4147 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, tree *pre_p)
4148 {
4149   tree wce;
4150
4151   /* Errors can result in improperly nested cleanups.  Which results in
4152      confusion when trying to resolve the WITH_CLEANUP_EXPR.  */
4153   if (errorcount || sorrycount)
4154     return;
4155
4156   if (gimple_conditional_context ())
4157     {
4158       /* If we're in a conditional context, this is more complex.  We only
4159          want to run the cleanup if we actually ran the initialization that
4160          necessitates it, but we want to run it after the end of the
4161          conditional context.  So we wrap the try/finally around the
4162          condition and use a flag to determine whether or not to actually
4163          run the destructor.  Thus
4164
4165            test ? f(A()) : 0
4166
4167          becomes (approximately)
4168
4169            flag = 0;
4170            try {
4171              if (test) { A::A(temp); flag = 1; val = f(temp); }
4172              else { val = 0; }
4173            } finally {
4174              if (flag) A::~A(temp);
4175            }
4176            val
4177       */
4178
4179       tree flag = create_tmp_var (boolean_type_node, "cleanup");
4180       tree ffalse = build2 (MODIFY_EXPR, void_type_node, flag,
4181                             boolean_false_node);
4182       tree ftrue = build2 (MODIFY_EXPR, void_type_node, flag,
4183                            boolean_true_node);
4184       cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
4185       wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4186       append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
4187       append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
4188       append_to_statement_list (ftrue, pre_p);
4189
4190       /* Because of this manipulation, and the EH edges that jump
4191          threading cannot redirect, the temporary (VAR) will appear
4192          to be used uninitialized.  Don't warn.  */
4193       TREE_NO_WARNING (var) = 1;
4194     }
4195   else
4196     {
4197       wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4198       CLEANUP_EH_ONLY (wce) = eh_only;
4199       append_to_statement_list (wce, pre_p);
4200     }
4201
4202   gimplify_stmt (&TREE_OPERAND (wce, 0));
4203 }
4204
4205 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR.  */
4206
4207 static enum gimplify_status
4208 gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
4209 {
4210   tree targ = *expr_p;
4211   tree temp = TARGET_EXPR_SLOT (targ);
4212   tree init = TARGET_EXPR_INITIAL (targ);
4213   enum gimplify_status ret;
4214
4215   if (init)
4216     {
4217       /* TARGET_EXPR temps aren't part of the enclosing block, so add it
4218          to the temps list.  */
4219       gimple_add_tmp_var (temp);
4220
4221       /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
4222          expression is supposed to initialize the slot.  */
4223       if (VOID_TYPE_P (TREE_TYPE (init)))
4224         ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
4225       else
4226         {
4227           init = build2 (INIT_EXPR, void_type_node, temp, init);
4228           ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
4229                                fb_none);
4230         }
4231       if (ret == GS_ERROR)
4232         return GS_ERROR;
4233       append_to_statement_list (init, pre_p);
4234
4235       /* If needed, push the cleanup for the temp.  */
4236       if (TARGET_EXPR_CLEANUP (targ))
4237         {
4238           gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
4239           gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
4240                                CLEANUP_EH_ONLY (targ), pre_p);
4241         }
4242
4243       /* Only expand this once.  */
4244       TREE_OPERAND (targ, 3) = init;
4245       TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4246     }
4247   else
4248     /* We should have expanded this before.  */
4249     gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
4250
4251   *expr_p = temp;
4252   return GS_OK;
4253 }
4254
4255 /* Gimplification of expression trees.  */
4256
4257 /* Gimplify an expression which appears at statement context; usually, this
4258    means replacing it with a suitably gimple STATEMENT_LIST.  */
4259
4260 void
4261 gimplify_stmt (tree *stmt_p)
4262 {
4263   gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
4264 }
4265
4266 /* Similarly, but force the result to be a STATEMENT_LIST.  */
4267
4268 void
4269 gimplify_to_stmt_list (tree *stmt_p)
4270 {
4271   gimplify_stmt (stmt_p);
4272   if (!*stmt_p)
4273     *stmt_p = alloc_stmt_list ();
4274   else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
4275     {
4276       tree t = *stmt_p;
4277       *stmt_p = alloc_stmt_list ();
4278       append_to_statement_list (t, stmt_p);
4279     }
4280 }
4281
4282
4283 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
4284    to CTX.  If entries already exist, force them to be some flavor of private.
4285    If there is no enclosing parallel, do nothing.  */
4286
4287 void
4288 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
4289 {
4290   splay_tree_node n;
4291
4292   if (decl == NULL || !DECL_P (decl))
4293     return;
4294
4295   do
4296     {
4297       n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4298       if (n != NULL)
4299         {
4300           if (n->value & GOVD_SHARED)
4301             n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
4302           else
4303             return;
4304         }
4305       else if (ctx->is_parallel)
4306         omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
4307
4308       ctx = ctx->outer_context;
4309     }
4310   while (ctx);
4311 }
4312
4313 /* Similarly for each of the type sizes of TYPE.  */
4314
4315 static void
4316 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
4317 {
4318   if (type == NULL || type == error_mark_node)
4319     return;
4320   type = TYPE_MAIN_VARIANT (type);
4321
4322   if (pointer_set_insert (ctx->privatized_types, type))
4323     return;
4324
4325   switch (TREE_CODE (type))
4326     {
4327     case INTEGER_TYPE:
4328     case ENUMERAL_TYPE:
4329     case BOOLEAN_TYPE:
4330     case REAL_TYPE:
4331       omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
4332       omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
4333       break;
4334
4335     case ARRAY_TYPE:
4336       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4337       omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
4338       break;
4339
4340     case RECORD_TYPE:
4341     case UNION_TYPE:
4342     case QUAL_UNION_TYPE:
4343       {
4344         tree field;
4345         for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4346           if (TREE_CODE (field) == FIELD_DECL)
4347             {
4348               omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
4349               omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
4350             }
4351       }
4352       break;
4353
4354     case POINTER_TYPE:
4355     case REFERENCE_TYPE:
4356       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4357       break;
4358
4359     default:
4360       break;
4361     }
4362
4363   omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
4364   omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
4365   lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
4366 }
4367
4368 /* Add an entry for DECL in the OpenMP context CTX with FLAGS.  */
4369
4370 static void
4371 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
4372 {
4373   splay_tree_node n;
4374   unsigned int nflags;
4375   tree t;
4376
4377   if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4378     return;
4379
4380   /* Never elide decls whose type has TREE_ADDRESSABLE set.  This means
4381      there are constructors involved somewhere.  */
4382   if (TREE_ADDRESSABLE (TREE_TYPE (decl))
4383       || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
4384     flags |= GOVD_SEEN;
4385
4386   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4387   if (n != NULL)
4388     {
4389       /* We shouldn't be re-adding the decl with the same data
4390          sharing class.  */
4391       gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
4392       /* The only combination of data sharing classes we should see is
4393          FIRSTPRIVATE and LASTPRIVATE.  */
4394       nflags = n->value | flags;
4395       gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
4396                   == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
4397       n->value = nflags;
4398       return;
4399     }
4400
4401   /* When adding a variable-sized variable, we have to handle all sorts
4402      of additional bits of data: the pointer replacement variable, and 
4403      the parameters of the type.  */
4404   if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
4405     {
4406       /* Add the pointer replacement variable as PRIVATE if the variable
4407          replacement is private, else FIRSTPRIVATE since we'll need the
4408          address of the original variable either for SHARED, or for the
4409          copy into or out of the context.  */
4410       if (!(flags & GOVD_LOCAL))
4411         {
4412           nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
4413           nflags |= flags & GOVD_SEEN;
4414           t = DECL_VALUE_EXPR (decl);
4415           gcc_assert (TREE_CODE (t) == INDIRECT_REF);
4416           t = TREE_OPERAND (t, 0);
4417           gcc_assert (DECL_P (t));
4418           omp_add_variable (ctx, t, nflags);
4419         }
4420
4421       /* Add all of the variable and type parameters (which should have
4422          been gimplified to a formal temporary) as FIRSTPRIVATE.  */
4423       omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
4424       omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
4425       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4426
4427       /* The variable-sized variable itself is never SHARED, only some form
4428          of PRIVATE.  The sharing would take place via the pointer variable
4429          which we remapped above.  */
4430       if (flags & GOVD_SHARED)
4431         flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
4432                 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
4433
4434       /* We're going to make use of the TYPE_SIZE_UNIT at least in the 
4435          alloca statement we generate for the variable, so make sure it
4436          is available.  This isn't automatically needed for the SHARED
4437          case, since we won't be allocating local storage then.  */
4438       else
4439         omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
4440     }
4441   else if (lang_hooks.decls.omp_privatize_by_reference (decl))
4442     {
4443       gcc_assert ((flags & GOVD_LOCAL) == 0);
4444       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4445
4446       /* Similar to the direct variable sized case above, we'll need the
4447          size of references being privatized.  */
4448       if ((flags & GOVD_SHARED) == 0)
4449         {
4450           t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
4451           if (TREE_CODE (t) != INTEGER_CST)
4452             omp_notice_variable (ctx, t, true);
4453         }
4454     }
4455
4456   splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
4457 }
4458
4459 /* Record the fact that DECL was used within the OpenMP context CTX.
4460    IN_CODE is true when real code uses DECL, and false when we should
4461    merely emit default(none) errors.  Return true if DECL is going to
4462    be remapped and thus DECL shouldn't be gimplified into its
4463    DECL_VALUE_EXPR (if any).  */
4464
4465 static bool
4466 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
4467 {
4468   splay_tree_node n;
4469   unsigned flags = in_code ? GOVD_SEEN : 0;
4470   bool ret = false, shared;
4471
4472   if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4473     return false;
4474
4475   /* Threadprivate variables are predetermined.  */
4476   if (is_global_var (decl))
4477     {
4478       if (DECL_THREAD_LOCAL_P (decl))
4479         return false;
4480
4481       if (DECL_HAS_VALUE_EXPR_P (decl))
4482         {
4483           tree value = get_base_address (DECL_VALUE_EXPR (decl));
4484
4485           if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
4486             return false;
4487         }
4488     }
4489
4490   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4491   if (n == NULL)
4492     {
4493       enum omp_clause_default_kind default_kind, kind;
4494
4495       if (!ctx->is_parallel)
4496         goto do_outer;
4497
4498       /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
4499          remapped firstprivate instead of shared.  To some extent this is
4500          addressed in omp_firstprivatize_type_sizes, but not effectively.  */
4501       default_kind = ctx->default_kind;
4502       kind = lang_hooks.decls.omp_predetermined_sharing (decl);
4503       if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
4504         default_kind = kind;
4505
4506       switch (default_kind)
4507         {
4508         case OMP_CLAUSE_DEFAULT_NONE:
4509           error ("%qs not specified in enclosing parallel",
4510                  IDENTIFIER_POINTER (DECL_NAME (decl)));
4511           error ("%Henclosing parallel", &ctx->location);
4512           /* FALLTHRU */
4513         case OMP_CLAUSE_DEFAULT_SHARED:
4514           flags |= GOVD_SHARED;
4515           break;
4516         case OMP_CLAUSE_DEFAULT_PRIVATE:
4517           flags |= GOVD_PRIVATE;
4518           break;
4519         default:
4520           gcc_unreachable ();
4521         }
4522
4523       omp_add_variable (ctx, decl, flags);
4524
4525       shared = (flags & GOVD_SHARED) != 0;
4526       ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4527       goto do_outer;
4528     }
4529
4530   shared = ((flags | n->value) & GOVD_SHARED) != 0;
4531   ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4532
4533   /* If nothing changed, there's nothing left to do.  */
4534   if ((n->value & flags) == flags)
4535     return ret;
4536   flags |= n->value;
4537   n->value = flags;
4538
4539  do_outer:
4540   /* If the variable is private in the current context, then we don't
4541      need to propagate anything to an outer context.  */
4542   if (flags & GOVD_PRIVATE)
4543     return ret;
4544   if (ctx->outer_context
4545       && omp_notice_variable (ctx->outer_context, decl, in_code))
4546     return true;
4547   return ret;
4548 }
4549
4550 /* Verify that DECL is private within CTX.  If there's specific information
4551    to the contrary in the innermost scope, generate an error.  */
4552
4553 static bool
4554 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
4555 {
4556   splay_tree_node n;
4557
4558   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4559   if (n != NULL)
4560     {
4561       if (n->value & GOVD_SHARED)
4562         {
4563           if (ctx == gimplify_omp_ctxp)
4564             {
4565               error ("iteration variable %qs should be private",
4566                      IDENTIFIER_POINTER (DECL_NAME (decl)));
4567               n->value = GOVD_PRIVATE;
4568               return true;
4569             }
4570           else
4571             return false;
4572         }
4573       else if ((n->value & GOVD_EXPLICIT) != 0
4574                && (ctx == gimplify_omp_ctxp
4575                    || (ctx->is_combined_parallel
4576                        && gimplify_omp_ctxp->outer_context == ctx)))
4577         {
4578           if ((n->value & GOVD_FIRSTPRIVATE) != 0)
4579             error ("iteration variable %qs should not be firstprivate",
4580                    IDENTIFIER_POINTER (DECL_NAME (decl)));
4581           else if ((n->value & GOVD_REDUCTION) != 0)
4582             error ("iteration variable %qs should not be reduction",
4583                    IDENTIFIER_POINTER (DECL_NAME (decl)));
4584         }
4585       return true;
4586     }
4587
4588   if (ctx->is_parallel)
4589     return false;
4590   else if (ctx->outer_context)
4591     return omp_is_private (ctx->outer_context, decl);
4592   else
4593     return !is_global_var (decl);
4594 }
4595
4596 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
4597    and previous omp contexts.  */
4598
4599 static void
4600 gimplify_scan_omp_clauses (tree *list_p, tree *pre_p, bool in_parallel,
4601                            bool in_combined_parallel)
4602 {
4603   struct gimplify_omp_ctx *ctx, *outer_ctx;
4604   tree c;
4605
4606   ctx = new_omp_context (in_parallel, in_combined_parallel);
4607   outer_ctx = ctx->outer_context;
4608
4609   while ((c = *list_p) != NULL)
4610     {
4611       enum gimplify_status gs;
4612       bool remove = false;
4613       bool notice_outer = true;
4614       unsigned int flags;
4615       tree decl;
4616
4617       switch (OMP_CLAUSE_CODE (c))
4618         {
4619         case OMP_CLAUSE_PRIVATE:
4620           flags = GOVD_PRIVATE | GOVD_EXPLICIT;
4621           notice_outer = false;
4622           goto do_add;
4623         case OMP_CLAUSE_SHARED:
4624           flags = GOVD_SHARED | GOVD_EXPLICIT;
4625           goto do_add;
4626         case OMP_CLAUSE_FIRSTPRIVATE:
4627           flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
4628           goto do_add;
4629         case OMP_CLAUSE_LASTPRIVATE:
4630           flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
4631           goto do_add;
4632         case OMP_CLAUSE_REDUCTION:
4633           flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
4634           goto do_add;
4635
4636         do_add:
4637           decl = OMP_CLAUSE_DECL (c);
4638           if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4639             {
4640               remove = true;
4641               break;
4642             }
4643           /* Handle NRV results passed by reference.  */
4644           if (TREE_CODE (decl) == INDIRECT_REF
4645               && TREE_CODE (TREE_OPERAND (decl, 0)) == RESULT_DECL
4646               && DECL_BY_REFERENCE (TREE_OPERAND (decl, 0)))
4647             OMP_CLAUSE_DECL (c) = decl = TREE_OPERAND (decl, 0);
4648           omp_add_variable (ctx, decl, flags);
4649           if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
4650               && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
4651             {
4652               omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
4653                                 GOVD_LOCAL | GOVD_SEEN);
4654               gimplify_omp_ctxp = ctx;
4655               push_gimplify_context ();
4656               gimplify_stmt (&OMP_CLAUSE_REDUCTION_INIT (c));
4657               pop_gimplify_context (OMP_CLAUSE_REDUCTION_INIT (c));
4658               push_gimplify_context ();
4659               gimplify_stmt (&OMP_CLAUSE_REDUCTION_MERGE (c));
4660               pop_gimplify_context (OMP_CLAUSE_REDUCTION_MERGE (c));
4661               gimplify_omp_ctxp = outer_ctx;
4662             }
4663           if (notice_outer)
4664             goto do_notice;
4665           break;
4666
4667         case OMP_CLAUSE_COPYIN:
4668         case OMP_CLAUSE_COPYPRIVATE:
4669           decl = OMP_CLAUSE_DECL (c);
4670           if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4671             {
4672               remove = true;
4673               break;
4674             }
4675           /* Handle NRV results passed by reference.  */
4676           if (TREE_CODE (decl) == INDIRECT_REF
4677               && TREE_CODE (TREE_OPERAND (decl, 0)) == RESULT_DECL
4678               && DECL_BY_REFERENCE (TREE_OPERAND (decl, 0)))
4679             OMP_CLAUSE_DECL (c) = decl = TREE_OPERAND (decl, 0);
4680         do_notice:
4681           if (outer_ctx)
4682             omp_notice_variable (outer_ctx, decl, true);
4683           break;
4684
4685         case OMP_CLAUSE_IF:
4686           OMP_CLAUSE_OPERAND (c, 0)
4687             = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
4688           /* Fall through.  */
4689
4690         case OMP_CLAUSE_SCHEDULE:
4691         case OMP_CLAUSE_NUM_THREADS:
4692           gs = gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
4693                               is_gimple_val, fb_rvalue);
4694           if (gs == GS_ERROR)
4695             remove = true;
4696           break;
4697
4698         case OMP_CLAUSE_NOWAIT:
4699         case OMP_CLAUSE_ORDERED:
4700           break;
4701
4702         case OMP_CLAUSE_DEFAULT:
4703           ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
4704           break;
4705
4706         default:
4707           gcc_unreachable ();
4708         }
4709
4710       if (remove)
4711         *list_p = OMP_CLAUSE_CHAIN (c);
4712       else
4713         list_p = &OMP_CLAUSE_CHAIN (c);
4714     }
4715
4716   gimplify_omp_ctxp = ctx;
4717 }
4718
4719 /* For all variables that were not actually used within the context,
4720    remove PRIVATE, SHARED, and FIRSTPRIVATE clauses.  */
4721
4722 static int
4723 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
4724 {
4725   tree *list_p = (tree *) data;
4726   tree decl = (tree) n->key;
4727   unsigned flags = n->value;
4728   enum omp_clause_code code;
4729   tree clause;
4730   bool private_debug;
4731
4732   if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
4733     return 0;
4734   if ((flags & GOVD_SEEN) == 0)
4735     return 0;
4736   if (flags & GOVD_DEBUG_PRIVATE)
4737     {
4738       gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
4739       private_debug = true;
4740     }
4741   else
4742     private_debug
4743       = lang_hooks.decls.omp_private_debug_clause (decl,
4744                                                    !!(flags & GOVD_SHARED));
4745   if (private_debug)
4746     code = OMP_CLAUSE_PRIVATE;
4747   else if (flags & GOVD_SHARED)
4748     {
4749       if (is_global_var (decl))
4750         return 0;
4751       code = OMP_CLAUSE_SHARED;
4752     }
4753   else if (flags & GOVD_PRIVATE)
4754     code = OMP_CLAUSE_PRIVATE;
4755   else if (flags & GOVD_FIRSTPRIVATE)
4756     code = OMP_CLAUSE_FIRSTPRIVATE;
4757   else
4758     gcc_unreachable ();
4759
4760   clause = build_omp_clause (code);
4761   OMP_CLAUSE_DECL (clause) = decl;
4762   OMP_CLAUSE_CHAIN (clause) = *list_p;
4763   if (private_debug)
4764     OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
4765   *list_p = clause;
4766
4767   return 0;
4768 }
4769
4770 static void
4771 gimplify_adjust_omp_clauses (tree *list_p)
4772 {
4773   struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
4774   tree c, decl;
4775
4776   while ((c = *list_p) != NULL)
4777     {
4778       splay_tree_node n;
4779       bool remove = false;
4780
4781       switch (OMP_CLAUSE_CODE (c))
4782         {
4783         case OMP_CLAUSE_PRIVATE:
4784         case OMP_CLAUSE_SHARED:
4785         case OMP_CLAUSE_FIRSTPRIVATE:
4786           decl = OMP_CLAUSE_DECL (c);
4787           n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4788           remove = !(n->value & GOVD_SEEN);
4789           if (! remove)
4790             {
4791               bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
4792               if ((n->value & GOVD_DEBUG_PRIVATE)
4793                   || lang_hooks.decls.omp_private_debug_clause (decl, shared))
4794                 {
4795                   gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
4796                               || ((n->value & GOVD_DATA_SHARE_CLASS)
4797                                   == GOVD_PRIVATE));
4798                   OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
4799                   OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
4800                 }
4801             }
4802           break;
4803
4804         case OMP_CLAUSE_LASTPRIVATE:
4805           /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
4806              accurately reflect the presence of a FIRSTPRIVATE clause.  */
4807           decl = OMP_CLAUSE_DECL (c);
4808           n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4809           OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
4810             = (n->value & GOVD_FIRSTPRIVATE) != 0;
4811           break;
4812           
4813         case OMP_CLAUSE_REDUCTION:
4814         case OMP_CLAUSE_COPYIN:
4815         case OMP_CLAUSE_COPYPRIVATE:
4816         case OMP_CLAUSE_IF:
4817         case OMP_CLAUSE_NUM_THREADS:
4818         case OMP_CLAUSE_SCHEDULE:
4819         case OMP_CLAUSE_NOWAIT:
4820         case OMP_CLAUSE_ORDERED:
4821         case OMP_CLAUSE_DEFAULT:
4822           break;
4823
4824         default:
4825           gcc_unreachable ();
4826         }
4827
4828       if (remove)
4829         *list_p = OMP_CLAUSE_CHAIN (c);
4830       else
4831         list_p = &OMP_CLAUSE_CHAIN (c);
4832     }
4833
4834   /* Add in any implicit data sharing.  */
4835   splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
4836   
4837   gimplify_omp_ctxp = ctx->outer_context;
4838   delete_omp_context (ctx);
4839 }
4840
4841 /* Gimplify the contents of an OMP_PARALLEL statement.  This involves
4842    gimplification of the body, as well as scanning the body for used
4843    variables.  We need to do this scan now, because variable-sized
4844    decls will be decomposed during gimplification.  */
4845
4846 static enum gimplify_status
4847 gimplify_omp_parallel (tree *expr_p, tree *pre_p)
4848 {
4849   tree expr = *expr_p;
4850
4851   gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p, true,
4852                              OMP_PARALLEL_COMBINED (expr));
4853
4854   push_gimplify_context ();
4855
4856   gimplify_stmt (&OMP_PARALLEL_BODY (expr));
4857
4858   if (TREE_CODE (OMP_PARALLEL_BODY (expr)) == BIND_EXPR)
4859     pop_gimplify_context (OMP_PARALLEL_BODY (expr));
4860   else
4861     pop_gimplify_context (NULL_TREE);
4862
4863   gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
4864
4865   return GS_ALL_DONE;
4866 }
4867
4868 /* Gimplify the gross structure of an OMP_FOR statement.  */
4869
4870 static enum gimplify_status
4871 gimplify_omp_for (tree *expr_p, tree *pre_p)
4872 {
4873   tree for_stmt, decl, t;
4874   enum gimplify_status ret = GS_OK;
4875
4876   for_stmt = *expr_p;
4877
4878   gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p, false, false);
4879
4880   t = OMP_FOR_INIT (for_stmt);
4881   gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
4882   decl = TREE_OPERAND (t, 0);
4883   gcc_assert (DECL_P (decl));
4884   gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl)));
4885
4886   /* Make sure the iteration variable is private.  */
4887   if (omp_is_private (gimplify_omp_ctxp, decl))
4888     omp_notice_variable (gimplify_omp_ctxp, decl, true);
4889   else
4890     omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
4891
4892   ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4893                         NULL, is_gimple_val, fb_rvalue);
4894
4895   t = OMP_FOR_COND (for_stmt);
4896   gcc_assert (COMPARISON_CLASS_P (t));
4897   gcc_assert (TREE_OPERAND (t, 0) == decl);
4898
4899   ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4900                         NULL, is_gimple_val, fb_rvalue);
4901
4902   t = OMP_FOR_INCR (for_stmt);
4903   switch (TREE_CODE (t))
4904     {
4905     case PREINCREMENT_EXPR:
4906     case POSTINCREMENT_EXPR:
4907       t = build_int_cst (TREE_TYPE (decl), 1);
4908       goto build_modify;
4909     case PREDECREMENT_EXPR:
4910     case POSTDECREMENT_EXPR:
4911       t = build_int_cst (TREE_TYPE (decl), -1);
4912       goto build_modify;
4913     build_modify:
4914       t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
4915       t = build2 (MODIFY_EXPR, void_type_node, decl, t);
4916       OMP_FOR_INCR (for_stmt) = t;
4917       break;
4918       
4919     case MODIFY_EXPR:
4920       gcc_assert (TREE_OPERAND (t, 0) == decl);
4921       t = TREE_OPERAND (t, 1);
4922       switch (TREE_CODE (t))
4923         {
4924         case PLUS_EXPR:
4925           if (TREE_OPERAND (t, 1) == decl)
4926             {
4927               TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
4928               TREE_OPERAND (t, 0) = decl;
4929               break;
4930             }
4931         case MINUS_EXPR:
4932           gcc_assert (TREE_OPERAND (t, 0) == decl);
4933           break;
4934         default:
4935           gcc_unreachable ();
4936         }
4937
4938       ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4939                             NULL, is_gimple_val, fb_rvalue);
4940       break;
4941
4942     default:
4943       gcc_unreachable ();
4944     }
4945
4946   gimplify_to_stmt_list (&OMP_FOR_BODY (for_stmt));
4947   gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
4948
4949   return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
4950 }
4951
4952 /* Gimplify the gross structure of other OpenMP worksharing constructs.
4953    In particular, OMP_SECTIONS and OMP_SINGLE.  */
4954
4955 static enum gimplify_status
4956 gimplify_omp_workshare (tree *expr_p, tree *pre_p)
4957 {
4958   tree stmt = *expr_p;
4959
4960   gimplify_scan_omp_clauses (&OMP_CLAUSES (stmt), pre_p, false, false);
4961   gimplify_to_stmt_list (&OMP_BODY (stmt));
4962   gimplify_adjust_omp_clauses (&OMP_CLAUSES (stmt));
4963
4964   return GS_ALL_DONE;
4965 }
4966
4967 /* A subroutine of gimplify_omp_atomic.  The front end is supposed to have
4968    stabilized the lhs of the atomic operation as *ADDR.  Return true if 
4969    EXPR is this stabilized form.  */
4970
4971 static bool
4972 goa_lhs_expr_p (tree expr, tree addr)
4973 {
4974   /* Also include casts to other type variants.  The C front end is fond
4975      of adding these for e.g. volatile variables.  This is like 
4976      STRIP_TYPE_NOPS but includes the main variant lookup.  */
4977   while ((TREE_CODE (expr) == NOP_EXPR
4978           || TREE_CODE (expr) == CONVERT_EXPR
4979           || TREE_CODE (expr) == NON_LVALUE_EXPR)
4980          && TREE_OPERAND (expr, 0) != error_mark_node
4981          && (TYPE_MAIN_VARIANT (TREE_TYPE (expr))
4982              == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (expr, 0)))))
4983     expr = TREE_OPERAND (expr, 0);
4984
4985   if (TREE_CODE (expr) == INDIRECT_REF && TREE_OPERAND (expr, 0) == addr)
4986     return true;
4987   if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
4988     return true;
4989   return false;
4990 }
4991
4992 /* A subroutine of gimplify_omp_atomic.  Attempt to implement the atomic
4993    operation as a __sync_fetch_and_op builtin.  INDEX is log2 of the
4994    size of the data type, and thus usable to find the index of the builtin
4995    decl.  Returns GS_UNHANDLED if the expression is not of the proper form.  */
4996
4997 static enum gimplify_status
4998 gimplify_omp_atomic_fetch_op (tree *expr_p, tree addr, tree rhs, int index)
4999 {
5000   enum built_in_function base;
5001   tree decl, args, itype;
5002   enum insn_code *optab;
5003
5004   /* Check for one of the supported fetch-op operations.  */
5005   switch (TREE_CODE (rhs))
5006     {
5007     case PLUS_EXPR:
5008       base = BUILT_IN_FETCH_AND_ADD_N;
5009       optab = sync_add_optab;
5010       break;
5011     case MINUS_EXPR:
5012       base = BUILT_IN_FETCH_AND_SUB_N;
5013       optab = sync_add_optab;
5014       break;
5015     case BIT_AND_EXPR:
5016       base = BUILT_IN_FETCH_AND_AND_N;
5017       optab = sync_and_optab;
5018       break;
5019     case BIT_IOR_EXPR:
5020       base = BUILT_IN_FETCH_AND_OR_N;
5021       optab = sync_ior_optab;
5022       break;
5023     case BIT_XOR_EXPR:
5024       base = BUILT_IN_FETCH_AND_XOR_N;
5025       optab = sync_xor_optab;
5026       break;
5027     default:
5028       return GS_UNHANDLED;
5029     }
5030
5031   /* Make sure the expression is of the proper form.  */
5032   if (goa_lhs_expr_p (TREE_OPERAND (rhs, 0), addr))
5033     rhs = TREE_OPERAND (rhs, 1);
5034   else if (commutative_tree_code (TREE_CODE (rhs))
5035            && goa_lhs_expr_p (TREE_OPERAND (rhs, 1), addr))
5036     rhs = TREE_OPERAND (rhs, 0);
5037   else
5038     return GS_UNHANDLED;
5039
5040   decl = built_in_decls[base + index + 1];
5041   itype = TREE_TYPE (TREE_TYPE (decl));
5042
5043   if (optab[TYPE_MODE (itype)] == CODE_FOR_nothing)
5044     return GS_UNHANDLED;
5045
5046   args = tree_cons (NULL, fold_convert (itype, rhs), NULL);
5047   args = tree_cons (NULL, addr, args);
5048   *expr_p = build_function_call_expr (decl, args);
5049   return GS_OK;
5050 }
5051
5052 /* A subroutine of gimplify_omp_atomic_pipeline.  Walk *EXPR_P and replace
5053    appearances of *LHS_ADDR with LHS_VAR.  If an expression does not involve
5054    the lhs, evaluate it into a temporary.  Return 1 if the lhs appeared as
5055    a subexpression, 0 if it did not, or -1 if an error was encountered.  */
5056
5057 static int
5058 goa_stabilize_expr (tree *expr_p, tree *pre_p, tree lhs_addr, tree lhs_var)
5059 {
5060   tree expr = *expr_p;
5061   int saw_lhs;
5062
5063   if (goa_lhs_expr_p (expr, lhs_addr))
5064     {
5065       *expr_p = lhs_var;
5066       return 1;
5067     }
5068   if (is_gimple_val (expr))
5069     return 0;
5070  
5071   saw_lhs = 0;
5072   switch (TREE_CODE_CLASS (TREE_CODE (expr)))
5073     {
5074     case tcc_binary:
5075       saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
5076                                      lhs_addr, lhs_var);
5077     case tcc_unary:
5078       saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
5079                                      lhs_addr, lhs_var);
5080       break;
5081     default:
5082       break;
5083     }
5084
5085   if (saw_lhs == 0)
5086     {
5087       enum gimplify_status gs;
5088       gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
5089       if (gs != GS_ALL_DONE)
5090         saw_lhs = -1;
5091     }
5092
5093   return saw_lhs;
5094 }
5095
5096 /* A subroutine of gimplify_omp_atomic.  Implement the atomic operation as:
5097
5098         oldval = *addr;
5099       repeat:
5100         newval = rhs;   // with oldval replacing *addr in rhs
5101         oldval = __sync_val_compare_and_swap (addr, oldval, newval);
5102         if (oldval != newval)
5103           goto repeat;
5104
5105    INDEX is log2 of the size of the data type, and thus usable to find the
5106    index of the builtin decl.  */
5107
5108 static enum gimplify_status
5109 gimplify_omp_atomic_pipeline (tree *expr_p, tree *pre_p, tree addr,
5110                               tree rhs, int index)
5111 {
5112   tree oldval, oldival, oldival2, newval, newival, label;
5113   tree type, itype, cmpxchg, args, x, iaddr;
5114
5115   cmpxchg = built_in_decls[BUILT_IN_VAL_COMPARE_AND_SWAP_N + index + 1];
5116   type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5117   itype = TREE_TYPE (TREE_TYPE (cmpxchg));
5118
5119   if (sync_compare_and_swap[TYPE_MODE (itype)] == CODE_FOR_nothing)
5120     return GS_UNHANDLED;
5121
5122   oldval = create_tmp_var (type, NULL);
5123   newval = create_tmp_var (type, NULL);
5124
5125   /* Precompute as much of RHS as possible.  In the same walk, replace
5126      occurrences of the lhs value with our temporary.  */
5127   if (goa_stabilize_expr (&rhs, pre_p, addr, oldval) < 0)
5128     return GS_ERROR;
5129
5130   x = build_fold_indirect_ref (addr);
5131   x = build2 (MODIFY_EXPR, void_type_node, oldval, x);
5132   gimplify_and_add (x, pre_p);
5133
5134   /* For floating-point values, we'll need to view-convert them to integers
5135      so that we can perform the atomic compare and swap.  Simplify the 
5136      following code by always setting up the "i"ntegral variables.  */
5137   if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5138     {
5139       oldival = oldval;
5140       newival = newval;
5141       iaddr = addr;
5142     }
5143   else
5144     {
5145       oldival = create_tmp_var (itype, NULL);
5146       newival = create_tmp_var (itype, NULL);
5147
5148       x = build1 (VIEW_CONVERT_EXPR, itype, oldval);
5149       x = build2 (MODIFY_EXPR, void_type_node, oldival, x);
5150       gimplify_and_add (x, pre_p);
5151       iaddr = fold_convert (build_pointer_type (itype), addr);
5152     }
5153
5154   oldival2 = create_tmp_var (itype, NULL);
5155
5156   label = create_artificial_label ();
5157   x = build1 (LABEL_EXPR, void_type_node, label);
5158   gimplify_and_add (x, pre_p);
5159
5160   x = build2 (MODIFY_EXPR, void_type_node, newval, rhs);
5161   gimplify_and_add (x, pre_p);
5162
5163   if (newval != newival)
5164     {
5165       x = build1 (VIEW_CONVERT_EXPR, itype, newval);
5166       x = build2 (MODIFY_EXPR, void_type_node, newival, x);
5167       gimplify_and_add (x, pre_p);
5168     }
5169
5170   x = build2 (MODIFY_EXPR, void_type_node, oldival2,
5171               fold_convert (itype, oldival));
5172   gimplify_and_add (x, pre_p);
5173
5174   args = tree_cons (NULL, fold_convert (itype, newival), NULL);
5175   args = tree_cons (NULL, fold_convert (itype, oldival), args);
5176   args = tree_cons (NULL, iaddr, args);
5177   x = build_function_call_expr (cmpxchg, args);
5178   if (oldval == oldival)
5179     x = fold_convert (type, x);
5180   x = build2 (MODIFY_EXPR, void_type_node, oldival, x);
5181   gimplify_and_add (x, pre_p);
5182
5183   /* For floating point, be prepared for the loop backedge.  */
5184   if (oldval != oldival)
5185     {
5186       x = build1 (VIEW_CONVERT_EXPR, type, oldival);
5187       x = build2 (MODIFY_EXPR, void_type_node, oldval, x);
5188       gimplify_and_add (x, pre_p);
5189     }
5190
5191   /* Note that we always perform the comparison as an integer, even for
5192      floating point.  This allows the atomic operation to properly 
5193      succeed even with NaNs and -0.0.  */
5194   x = build3 (COND_EXPR, void_type_node,
5195               build2 (NE_EXPR, boolean_type_node, oldival, oldival2),
5196               build1 (GOTO_EXPR, void_type_node, label), NULL);
5197   gimplify_and_add (x, pre_p);
5198
5199   *expr_p = NULL;
5200   return GS_ALL_DONE;
5201 }
5202
5203 /* A subroutine of gimplify_omp_atomic.  Implement the atomic operation as:
5204
5205         GOMP_atomic_start ();
5206         *addr = rhs;
5207         GOMP_atomic_end ();
5208
5209    The result is not globally atomic, but works so long as all parallel
5210    references are within #pragma omp atomic directives.  According to
5211    responses received from omp@openmp.org, appears to be within spec.
5212    Which makes sense, since that's how several other compilers handle
5213    this situation as well.  */
5214
5215 static enum gimplify_status
5216 gimplify_omp_atomic_mutex (tree *expr_p, tree *pre_p, tree addr, tree rhs)
5217 {
5218   tree t;
5219
5220   t = built_in_decls[BUILT_IN_GOMP_ATOMIC_START];
5221   t = build_function_call_expr (t, NULL);
5222   gimplify_and_add (t, pre_p);
5223
5224   t = build_fold_indirect_ref (addr);
5225   t = build2 (MODIFY_EXPR, void_type_node, t, rhs);
5226   gimplify_and_add (t, pre_p);
5227   
5228   t = built_in_decls[BUILT_IN_GOMP_ATOMIC_END];
5229   t = build_function_call_expr (t, NULL);
5230   gimplify_and_add (t, pre_p);
5231
5232   *expr_p = NULL;
5233   return GS_ALL_DONE;
5234 }
5235
5236 /* Gimplify an OMP_ATOMIC statement.  */
5237
5238 static enum gimplify_status
5239 gimplify_omp_atomic (tree *expr_p, tree *pre_p)
5240 {
5241   tree addr = TREE_OPERAND (*expr_p, 0);
5242   tree rhs = TREE_OPERAND (*expr_p, 1);
5243   tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5244   HOST_WIDE_INT index;
5245
5246   /* Make sure the type is one of the supported sizes.  */
5247   index = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5248   index = exact_log2 (index);
5249   if (index >= 0 && index <= 4)
5250     {
5251       enum gimplify_status gs;
5252       unsigned int align;
5253
5254       if (DECL_P (TREE_OPERAND (addr, 0)))
5255         align = DECL_ALIGN_UNIT (TREE_OPERAND (addr, 0));
5256       else if (TREE_CODE (TREE_OPERAND (addr, 0)) == COMPONENT_REF
5257                && TREE_CODE (TREE_OPERAND (TREE_OPERAND (addr, 0), 1))
5258                   == FIELD_DECL)
5259         align = DECL_ALIGN_UNIT (TREE_OPERAND (TREE_OPERAND (addr, 0), 1));
5260       else
5261         align = TYPE_ALIGN_UNIT (type);
5262
5263       /* __sync builtins require strict data alignment.  */
5264       if (exact_log2 (align) >= index)
5265         {
5266           /* When possible, use specialized atomic update functions.  */
5267           if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5268             {
5269               gs = gimplify_omp_atomic_fetch_op (expr_p, addr, rhs, index);
5270               if (gs != GS_UNHANDLED)
5271                 return gs;
5272             }
5273
5274           /* If we don't have specialized __sync builtins, try and implement
5275              as a compare and swap loop.  */
5276           gs = gimplify_omp_atomic_pipeline (expr_p, pre_p, addr, rhs, index);
5277           if (gs != GS_UNHANDLED)
5278             return gs;
5279         }
5280     }
5281
5282   /* The ultimate fallback is wrapping the operation in a mutex.  */
5283   return gimplify_omp_atomic_mutex (expr_p, pre_p, addr, rhs);
5284 }
5285
5286 /*  Gimplifies the expression tree pointed to by EXPR_P.  Return 0 if
5287     gimplification failed.
5288
5289     PRE_P points to the list where side effects that must happen before
5290         EXPR should be stored.
5291
5292     POST_P points to the list where side effects that must happen after
5293         EXPR should be stored, or NULL if there is no suitable list.  In
5294         that case, we copy the result to a temporary, emit the
5295         post-effects, and then return the temporary.
5296
5297     GIMPLE_TEST_F points to a function that takes a tree T and
5298         returns nonzero if T is in the GIMPLE form requested by the
5299         caller.  The GIMPLE predicates are in tree-gimple.c.
5300
5301         This test is used twice.  Before gimplification, the test is
5302         invoked to determine whether *EXPR_P is already gimple enough.  If
5303         that fails, *EXPR_P is gimplified according to its code and
5304         GIMPLE_TEST_F is called again.  If the test still fails, then a new
5305         temporary variable is created and assigned the value of the
5306         gimplified expression.
5307
5308     FALLBACK tells the function what sort of a temporary we want.  If the 1
5309         bit is set, an rvalue is OK.  If the 2 bit is set, an lvalue is OK.
5310         If both are set, either is OK, but an lvalue is preferable.
5311
5312     The return value is either GS_ERROR or GS_ALL_DONE, since this function
5313     iterates until solution.  */
5314
5315 enum gimplify_status
5316 gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
5317                bool (* gimple_test_f) (tree), fallback_t fallback)
5318 {
5319   tree tmp;
5320   tree internal_pre = NULL_TREE;
5321   tree internal_post = NULL_TREE;
5322   tree save_expr;
5323   int is_statement = (pre_p == NULL);
5324   location_t saved_location;
5325   enum gimplify_status ret;
5326
5327   save_expr = *expr_p;
5328   if (save_expr == NULL_TREE)
5329     return GS_ALL_DONE;
5330
5331   /* We used to check the predicate here and return immediately if it
5332      succeeds.  This is wrong; the design is for gimplification to be
5333      idempotent, and for the predicates to only test for valid forms, not
5334      whether they are fully simplified.  */
5335
5336   /* Set up our internal queues if needed.  */
5337   if (pre_p == NULL)
5338     pre_p = &internal_pre;
5339   if (post_p == NULL)
5340     post_p = &internal_post;
5341
5342   saved_location = input_location;
5343   if (save_expr != error_mark_node
5344       && EXPR_HAS_LOCATION (*expr_p))
5345     input_location = EXPR_LOCATION (*expr_p);
5346
5347   /* Loop over the specific gimplifiers until the toplevel node
5348      remains the same.  */
5349   do
5350     {
5351       /* Strip away as many useless type conversions as possible
5352          at the toplevel.  */
5353       STRIP_USELESS_TYPE_CONVERSION (*expr_p);
5354
5355       /* Remember the expr.  */
5356       save_expr = *expr_p;
5357
5358       /* Die, die, die, my darling.  */
5359       if (save_expr == error_mark_node
5360           || (TREE_TYPE (save_expr)
5361               && TREE_TYPE (save_expr) == error_mark_node))
5362         {
5363           ret = GS_ERROR;
5364           break;
5365         }
5366
5367       /* Do any language-specific gimplification.  */
5368       ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
5369       if (ret == GS_OK)
5370         {
5371           if (*expr_p == NULL_TREE)
5372             break;
5373           if (*expr_p != save_expr)
5374             continue;
5375         }
5376       else if (ret != GS_UNHANDLED)
5377         break;
5378
5379       ret = GS_OK;
5380       switch (TREE_CODE (*expr_p))
5381         {
5382           /* First deal with the special cases.  */
5383
5384         case POSTINCREMENT_EXPR:
5385         case POSTDECREMENT_EXPR:
5386         case PREINCREMENT_EXPR:
5387         case PREDECREMENT_EXPR:
5388           ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
5389                                         fallback != fb_none);
5390           break;
5391
5392         case ARRAY_REF:
5393         case ARRAY_RANGE_REF:
5394         case REALPART_EXPR:
5395         case IMAGPART_EXPR:
5396         case COMPONENT_REF:
5397         case VIEW_CONVERT_EXPR:
5398           ret = gimplify_compound_lval (expr_p, pre_p, post_p,
5399                                         fallback ? fallback : fb_rvalue);
5400           break;
5401
5402         case COND_EXPR:
5403           ret = gimplify_cond_expr (expr_p, pre_p, fallback);
5404           /* C99 code may assign to an array in a structure value of a
5405              conditional expression, and this has undefined behavior
5406              only on execution, so create a temporary if an lvalue is
5407              required.  */
5408           if (fallback == fb_lvalue)
5409             {
5410               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5411               lang_hooks.mark_addressable (*expr_p);
5412             }
5413           break;
5414
5415         case CALL_EXPR:
5416           ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
5417           /* C99 code may assign to an array in a structure returned
5418              from a function, and this has undefined behavior only on
5419              execution, so create a temporary if an lvalue is
5420              required.  */
5421           if (fallback == fb_lvalue)
5422             {
5423               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5424               lang_hooks.mark_addressable (*expr_p);
5425             }
5426           break;
5427
5428         case TREE_LIST:
5429           gcc_unreachable ();
5430
5431         case COMPOUND_EXPR:
5432           ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
5433           break;
5434
5435         case MODIFY_EXPR:
5436         case INIT_EXPR:
5437           ret = gimplify_modify_expr (expr_p, pre_p, post_p,
5438                                       fallback != fb_none);
5439
5440           /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer
5441              useful.  */
5442           if (*expr_p && TREE_CODE (*expr_p) == INIT_EXPR)
5443             TREE_SET_CODE (*expr_p, MODIFY_EXPR);
5444           break;
5445
5446         case TRUTH_ANDIF_EXPR:
5447         case TRUTH_ORIF_EXPR:
5448           ret = gimplify_boolean_expr (expr_p);
5449           break;
5450
5451         case TRUTH_NOT_EXPR:
5452           TREE_OPERAND (*expr_p, 0)
5453             = gimple_boolify (TREE_OPERAND (*expr_p, 0));
5454           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5455                                is_gimple_val, fb_rvalue);
5456           recalculate_side_effects (*expr_p);
5457           break;
5458
5459         case ADDR_EXPR:
5460           ret = gimplify_addr_expr (expr_p, pre_p, post_p);
5461           break;
5462
5463         case VA_ARG_EXPR:
5464           ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
5465           break;
5466
5467         case CONVERT_EXPR:
5468         case NOP_EXPR:
5469           if (IS_EMPTY_STMT (*expr_p))
5470             {
5471               ret = GS_ALL_DONE;
5472               break;
5473             }
5474
5475           if (VOID_TYPE_P (TREE_TYPE (*expr_p))
5476               || fallback == fb_none)
5477             {
5478               /* Just strip a conversion to void (or in void context) and
5479                  try again.  */
5480               *expr_p = TREE_OPERAND (*expr_p, 0);
5481               break;
5482             }
5483
5484           ret = gimplify_conversion (expr_p);
5485           if (ret == GS_ERROR)
5486             break;
5487           if (*expr_p != save_expr)
5488             break;
5489           /* FALLTHRU */
5490
5491         case FIX_TRUNC_EXPR:
5492         case FIX_CEIL_EXPR:
5493         case FIX_FLOOR_EXPR:
5494         case FIX_ROUND_EXPR:
5495           /* unary_expr: ... | '(' cast ')' val | ...  */
5496           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5497                                is_gimple_val, fb_rvalue);
5498           recalculate_side_effects (*expr_p);
5499           break;
5500
5501         case INDIRECT_REF:
5502           *expr_p = fold_indirect_ref (*expr_p);
5503           if (*expr_p != save_expr)
5504             break;
5505           /* else fall through.  */
5506         case ALIGN_INDIRECT_REF:
5507         case MISALIGNED_INDIRECT_REF:
5508           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5509                                is_gimple_reg, fb_rvalue);
5510           recalculate_side_effects (*expr_p);
5511           break;
5512
5513           /* Constants need not be gimplified.  */
5514         case INTEGER_CST:
5515         case REAL_CST:
5516         case STRING_CST:
5517         case COMPLEX_CST:
5518         case VECTOR_CST:
5519           ret = GS_ALL_DONE;
5520           break;
5521
5522         case CONST_DECL:
5523           /* If we require an lvalue, such as for ADDR_EXPR, retain the
5524              CONST_DECL node.  Otherwise the decl is replaceable by its
5525              value.  */
5526           /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either.  */
5527           if (fallback & fb_lvalue)
5528             ret = GS_ALL_DONE;
5529           else
5530             *expr_p = DECL_INITIAL (*expr_p);
5531           break;
5532
5533         case DECL_EXPR:
5534           ret = gimplify_decl_expr (expr_p);
5535           break;
5536
5537         case EXC_PTR_EXPR:
5538           /* FIXME make this a decl.  */
5539           ret = GS_ALL_DONE;
5540           break;
5541
5542         case BIND_EXPR:
5543           ret = gimplify_bind_expr (expr_p, pre_p);
5544           break;
5545
5546         case LOOP_EXPR:
5547           ret = gimplify_loop_expr (expr_p, pre_p);
5548           break;
5549
5550         case SWITCH_EXPR:
5551           ret = gimplify_switch_expr (expr_p, pre_p);
5552           break;
5553
5554         case EXIT_EXPR:
5555           ret = gimplify_exit_expr (expr_p);
5556           break;
5557
5558         case GOTO_EXPR:
5559           /* If the target is not LABEL, then it is a computed jump
5560              and the target needs to be gimplified.  */
5561           if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
5562             ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
5563                                  NULL, is_gimple_val, fb_rvalue);
5564           break;
5565
5566         case LABEL_EXPR:
5567           ret = GS_ALL_DONE;
5568           gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
5569                       == current_function_decl);
5570           break;
5571
5572         case CASE_LABEL_EXPR:
5573           ret = gimplify_case_label_expr (expr_p);
5574           break;
5575
5576         case RETURN_EXPR:
5577           ret = gimplify_return_expr (*expr_p, pre_p);
5578           break;
5579
5580         case CONSTRUCTOR:
5581           /* Don't reduce this in place; let gimplify_init_constructor work its
5582              magic.  Buf if we're just elaborating this for side effects, just
5583              gimplify any element that has side-effects.  */
5584           if (fallback == fb_none)
5585             {
5586               unsigned HOST_WIDE_INT ix;
5587               constructor_elt *ce;
5588               tree temp = NULL_TREE;
5589               for (ix = 0;
5590                    VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (*expr_p),
5591                                 ix, ce);
5592                    ix++)
5593                 if (TREE_SIDE_EFFECTS (ce->value))
5594                   append_to_statement_list (ce->value, &temp);
5595
5596               *expr_p = temp;
5597               ret = GS_OK;
5598             }
5599           /* C99 code may assign to an array in a constructed
5600              structure or union, and this has undefined behavior only
5601              on execution, so create a temporary if an lvalue is
5602              required.  */
5603           else if (fallback == fb_lvalue)
5604             {
5605               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5606               lang_hooks.mark_addressable (*expr_p);
5607             }
5608           else
5609             ret = GS_ALL_DONE;
5610           break;
5611
5612           /* The following are special cases that are not handled by the
5613              original GIMPLE grammar.  */
5614
5615           /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
5616              eliminated.  */
5617         case SAVE_EXPR:
5618           ret = gimplify_save_expr (expr_p, pre_p, post_p);
5619           break;
5620
5621         case BIT_FIELD_REF:
5622           {
5623             enum gimplify_status r0, r1, r2;
5624
5625             r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5626                                 is_gimple_lvalue, fb_either);
5627             r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5628                                 is_gimple_val, fb_rvalue);
5629             r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
5630                                 is_gimple_val, fb_rvalue);
5631             recalculate_side_effects (*expr_p);
5632
5633             ret = MIN (r0, MIN (r1, r2));
5634           }
5635           break;
5636
5637         case NON_LVALUE_EXPR:
5638           /* This should have been stripped above.  */
5639           gcc_unreachable ();
5640
5641         case ASM_EXPR:
5642           ret = gimplify_asm_expr (expr_p, pre_p, post_p);
5643           break;
5644
5645         case TRY_FINALLY_EXPR:
5646         case TRY_CATCH_EXPR:
5647           gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
5648           gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
5649           ret = GS_ALL_DONE;
5650           break;
5651
5652         case CLEANUP_POINT_EXPR:
5653           ret = gimplify_cleanup_point_expr (expr_p, pre_p);
5654           break;
5655
5656         case TARGET_EXPR:
5657           ret = gimplify_target_expr (expr_p, pre_p, post_p);
5658           break;
5659
5660         case CATCH_EXPR:
5661           gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
5662           ret = GS_ALL_DONE;
5663           break;
5664
5665         case EH_FILTER_EXPR:
5666           gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
5667           ret = GS_ALL_DONE;
5668           break;
5669
5670         case OBJ_TYPE_REF:
5671           {
5672             enum gimplify_status r0, r1;
5673             r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
5674                                 is_gimple_val, fb_rvalue);
5675             r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
5676                                 is_gimple_val, fb_rvalue);
5677             ret = MIN (r0, r1);
5678           }
5679           break;
5680
5681         case LABEL_DECL:
5682           /* We get here when taking the address of a label.  We mark
5683              the label as "forced"; meaning it can never be removed and
5684              it is a potential target for any computed goto.  */
5685           FORCED_LABEL (*expr_p) = 1;
5686           ret = GS_ALL_DONE;
5687           break;
5688
5689         case STATEMENT_LIST:
5690           ret = gimplify_statement_list (expr_p, pre_p);
5691           break;
5692
5693         case WITH_SIZE_EXPR:
5694           {
5695             gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5696                            post_p == &internal_post ? NULL : post_p,
5697                            gimple_test_f, fallback);
5698             gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5699                            is_gimple_val, fb_rvalue);
5700           }
5701           break;
5702
5703         case VAR_DECL:
5704         case PARM_DECL:
5705           ret = gimplify_var_or_parm_decl (expr_p);
5706           break;
5707
5708         case RESULT_DECL:
5709           /* When within an OpenMP context, notice uses of variables.  */
5710           if (gimplify_omp_ctxp)
5711             omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
5712           ret = GS_ALL_DONE;
5713           break;
5714
5715         case SSA_NAME:
5716           /* Allow callbacks into the gimplifier during optimization.  */
5717           ret = GS_ALL_DONE;
5718           break;
5719
5720         case OMP_PARALLEL:
5721           ret = gimplify_omp_parallel (expr_p, pre_p);
5722           break;
5723
5724         case OMP_FOR:
5725           ret = gimplify_omp_for (expr_p, pre_p);
5726           break;
5727
5728         case OMP_SECTIONS:
5729         case OMP_SINGLE:
5730           ret = gimplify_omp_workshare (expr_p, pre_p);
5731           break;
5732
5733         case OMP_SECTION:
5734         case OMP_MASTER:
5735         case OMP_ORDERED:
5736         case OMP_CRITICAL:
5737           gimplify_to_stmt_list (&OMP_BODY (*expr_p));
5738           break;
5739
5740         case OMP_ATOMIC:
5741           ret = gimplify_omp_atomic (expr_p, pre_p);
5742           break;
5743
5744         case OMP_RETURN:
5745         case OMP_CONTINUE:
5746           ret = GS_ALL_DONE;
5747           break;
5748
5749         default:
5750           switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
5751             {
5752             case tcc_comparison:
5753               /* Handle comparison of objects of non scalar mode aggregates
5754                  with a call to memcmp.  It would be nice to only have to do
5755                  this for variable-sized objects, but then we'd have to allow
5756                  the same nest of reference nodes we allow for MODIFY_EXPR and
5757                  that's too complex.
5758
5759                  Compare scalar mode aggregates as scalar mode values.  Using
5760                  memcmp for them would be very inefficient at best, and is
5761                  plain wrong if bitfields are involved.  */
5762
5763               {
5764                 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
5765
5766                 if (!AGGREGATE_TYPE_P (type))
5767                   goto expr_2;
5768                 else if (TYPE_MODE (type) != BLKmode)
5769                   ret = gimplify_scalar_mode_aggregate_compare (expr_p);
5770                 else
5771                   ret = gimplify_variable_sized_compare (expr_p);
5772
5773                 break;
5774                 }
5775
5776             /* If *EXPR_P does not need to be special-cased, handle it
5777                according to its class.  */
5778             case tcc_unary:
5779               ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5780                                    post_p, is_gimple_val, fb_rvalue);
5781               break;
5782
5783             case tcc_binary:
5784             expr_2:
5785               {
5786                 enum gimplify_status r0, r1;
5787
5788                 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5789                                     post_p, is_gimple_val, fb_rvalue);
5790                 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
5791                                     post_p, is_gimple_val, fb_rvalue);
5792
5793                 ret = MIN (r0, r1);
5794                 break;
5795               }
5796
5797             case tcc_declaration:
5798             case tcc_constant:
5799               ret = GS_ALL_DONE;
5800               goto dont_recalculate;
5801
5802             default:
5803               gcc_assert (TREE_CODE (*expr_p) == TRUTH_AND_EXPR
5804                           || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
5805                           || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR);
5806               goto expr_2;
5807             }
5808
5809           recalculate_side_effects (*expr_p);
5810         dont_recalculate:
5811           break;
5812         }
5813
5814       /* If we replaced *expr_p, gimplify again.  */
5815       if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
5816         ret = GS_ALL_DONE;
5817     }
5818   while (ret == GS_OK);
5819
5820   /* If we encountered an error_mark somewhere nested inside, either
5821      stub out the statement or propagate the error back out.  */
5822   if (ret == GS_ERROR)
5823     {
5824       if (is_statement)
5825         *expr_p = NULL;
5826       goto out;
5827     }
5828
5829   /* This was only valid as a return value from the langhook, which
5830      we handled.  Make sure it doesn't escape from any other context.  */
5831   gcc_assert (ret != GS_UNHANDLED);
5832
5833   if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
5834     {
5835       /* We aren't looking for a value, and we don't have a valid
5836          statement.  If it doesn't have side-effects, throw it away.  */
5837       if (!TREE_SIDE_EFFECTS (*expr_p))
5838         *expr_p = NULL;
5839       else if (!TREE_THIS_VOLATILE (*expr_p))
5840         {
5841           /* This is probably a _REF that contains something nested that
5842              has side effects.  Recurse through the operands to find it.  */
5843           enum tree_code code = TREE_CODE (*expr_p);
5844
5845           switch (code)
5846             {
5847             case COMPONENT_REF:
5848             case REALPART_EXPR:
5849             case IMAGPART_EXPR:
5850             case VIEW_CONVERT_EXPR:
5851               gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5852                              gimple_test_f, fallback);
5853               break;
5854
5855             case ARRAY_REF: case ARRAY_RANGE_REF:
5856               gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5857                              gimple_test_f, fallback);
5858               gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5859                              gimple_test_f, fallback);
5860               break;
5861
5862             default:
5863                /* Anything else with side-effects must be converted to
5864                   a valid statement before we get here.  */
5865               gcc_unreachable ();
5866             }
5867
5868           *expr_p = NULL;
5869         }
5870       else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p)))
5871         {
5872           /* Historically, the compiler has treated a bare
5873              reference to a volatile lvalue as forcing a load.  */
5874           tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
5875           /* Normally, we do not want to create a temporary for a
5876              TREE_ADDRESSABLE type because such a type should not be
5877              copied by bitwise-assignment.  However, we make an
5878              exception here, as all we are doing here is ensuring that
5879              we read the bytes that make up the type.  We use
5880              create_tmp_var_raw because create_tmp_var will abort when
5881              given a TREE_ADDRESSABLE type.  */
5882           tree tmp = create_tmp_var_raw (type, "vol");
5883           gimple_add_tmp_var (tmp);
5884           *expr_p = build2 (MODIFY_EXPR, type, tmp, *expr_p);
5885         }
5886       else
5887         /* We can't do anything useful with a volatile reference to
5888            incomplete type, so just throw it away.  */
5889         *expr_p = NULL;
5890     }
5891
5892   /* If we are gimplifying at the statement level, we're done.  Tack
5893      everything together and replace the original statement with the
5894      gimplified form.  */
5895   if (fallback == fb_none || is_statement)
5896     {
5897       if (internal_pre || internal_post)
5898         {
5899           append_to_statement_list (*expr_p, &internal_pre);
5900           append_to_statement_list (internal_post, &internal_pre);
5901           annotate_all_with_locus (&internal_pre, input_location);
5902           *expr_p = internal_pre;
5903         }
5904       else if (!*expr_p)
5905         ;
5906       else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
5907         annotate_all_with_locus (expr_p, input_location);
5908       else
5909         annotate_one_with_locus (*expr_p, input_location);
5910       goto out;
5911     }
5912
5913   /* Otherwise we're gimplifying a subexpression, so the resulting value is
5914      interesting.  */
5915
5916   /* If it's sufficiently simple already, we're done.  Unless we are
5917      handling some post-effects internally; if that's the case, we need to
5918      copy into a temp before adding the post-effects to the tree.  */
5919   if (!internal_post && (*gimple_test_f) (*expr_p))
5920     goto out;
5921
5922   /* Otherwise, we need to create a new temporary for the gimplified
5923      expression.  */
5924
5925   /* We can't return an lvalue if we have an internal postqueue.  The
5926      object the lvalue refers to would (probably) be modified by the
5927      postqueue; we need to copy the value out first, which means an
5928      rvalue.  */
5929   if ((fallback & fb_lvalue) && !internal_post
5930       && is_gimple_addressable (*expr_p))
5931     {
5932       /* An lvalue will do.  Take the address of the expression, store it
5933          in a temporary, and replace the expression with an INDIRECT_REF of
5934          that temporary.  */
5935       tmp = build_fold_addr_expr (*expr_p);
5936       gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
5937       *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
5938     }
5939   else if ((fallback & fb_rvalue) && is_gimple_formal_tmp_rhs (*expr_p))
5940     {
5941       gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
5942
5943       /* An rvalue will do.  Assign the gimplified expression into a new
5944          temporary TMP and replace the original expression with TMP.  */
5945
5946       if (internal_post || (fallback & fb_lvalue))
5947         /* The postqueue might change the value of the expression between
5948            the initialization and use of the temporary, so we can't use a
5949            formal temp.  FIXME do we care?  */
5950         *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5951       else
5952         *expr_p = get_formal_tmp_var (*expr_p, pre_p);
5953
5954       if (TREE_CODE (*expr_p) != SSA_NAME)
5955         DECL_GIMPLE_FORMAL_TEMP_P (*expr_p) = 1;
5956     }
5957   else
5958     {
5959 #ifdef ENABLE_CHECKING
5960       if (!(fallback & fb_mayfail))
5961         {
5962           fprintf (stderr, "gimplification failed:\n");
5963           print_generic_expr (stderr, *expr_p, 0);
5964           debug_tree (*expr_p);
5965           internal_error ("gimplification failed");
5966         }
5967 #endif
5968       gcc_assert (fallback & fb_mayfail);
5969       /* If this is an asm statement, and the user asked for the
5970          impossible, don't die.  Fail and let gimplify_asm_expr
5971          issue an error.  */
5972       ret = GS_ERROR;
5973       goto out;
5974     }
5975
5976   /* Make sure the temporary matches our predicate.  */
5977   gcc_assert ((*gimple_test_f) (*expr_p));
5978
5979   if (internal_post)
5980     {
5981       annotate_all_with_locus (&internal_post, input_location);
5982       append_to_statement_list (internal_post, pre_p);
5983     }
5984
5985  out:
5986   input_location = saved_location;
5987   return ret;
5988 }
5989
5990 /* Look through TYPE for variable-sized objects and gimplify each such
5991    size that we find.  Add to LIST_P any statements generated.  */
5992
5993 void
5994 gimplify_type_sizes (tree type, tree *list_p)
5995 {
5996   tree field, t;
5997
5998   if (type == NULL || type == error_mark_node)
5999     return;
6000
6001   /* We first do the main variant, then copy into any other variants.  */
6002   type = TYPE_MAIN_VARIANT (type);
6003
6004   /* Avoid infinite recursion.  */
6005   if (TYPE_SIZES_GIMPLIFIED (type))
6006     return;
6007
6008   TYPE_SIZES_GIMPLIFIED (type) = 1;
6009
6010   switch (TREE_CODE (type))
6011     {
6012     case INTEGER_TYPE:
6013     case ENUMERAL_TYPE:
6014     case BOOLEAN_TYPE:
6015     case REAL_TYPE:
6016       gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
6017       gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
6018
6019       for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6020         {
6021           TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
6022           TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
6023         }
6024       break;
6025
6026     case ARRAY_TYPE:
6027       /* These types may not have declarations, so handle them here.  */
6028       gimplify_type_sizes (TREE_TYPE (type), list_p);
6029       gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
6030       break;
6031
6032     case RECORD_TYPE:
6033     case UNION_TYPE:
6034     case QUAL_UNION_TYPE:
6035       for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
6036         if (TREE_CODE (field) == FIELD_DECL)
6037           {
6038             gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
6039             gimplify_type_sizes (TREE_TYPE (field), list_p);
6040           }
6041       break;
6042
6043     case POINTER_TYPE:
6044     case REFERENCE_TYPE:
6045         /* We used to recurse on the pointed-to type here, which turned out to
6046            be incorrect because its definition might refer to variables not
6047            yet initialized at this point if a forward declaration is involved.
6048
6049            It was actually useful for anonymous pointed-to types to ensure
6050            that the sizes evaluation dominates every possible later use of the
6051            values.  Restricting to such types here would be safe since there
6052            is no possible forward declaration around, but would introduce an
6053            undesirable middle-end semantic to anonymity.  We then defer to
6054            front-ends the responsibility of ensuring that the sizes are
6055            evaluated both early and late enough, e.g. by attaching artificial
6056            type declarations to the tree.  */
6057       break;
6058
6059     default:
6060       break;
6061     }
6062
6063   gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
6064   gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
6065
6066   for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6067     {
6068       TYPE_SIZE (t) = TYPE_SIZE (type);
6069       TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
6070       TYPE_SIZES_GIMPLIFIED (t) = 1;
6071     }
6072 }
6073
6074 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
6075    a size or position, has had all of its SAVE_EXPRs evaluated.
6076    We add any required statements to STMT_P.  */
6077
6078 void
6079 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
6080 {
6081   tree type, expr = *expr_p;
6082
6083   /* We don't do anything if the value isn't there, is constant, or contains
6084      A PLACEHOLDER_EXPR.  We also don't want to do anything if it's already
6085      a VAR_DECL.  If it's a VAR_DECL from another function, the gimplifier
6086      will want to replace it with a new variable, but that will cause problems
6087      if this type is from outside the function.  It's OK to have that here.  */
6088   if (expr == NULL_TREE || TREE_CONSTANT (expr)
6089       || TREE_CODE (expr) == VAR_DECL
6090       || CONTAINS_PLACEHOLDER_P (expr))
6091     return;
6092
6093   type = TREE_TYPE (expr);
6094   *expr_p = unshare_expr (expr);
6095
6096   gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
6097   expr = *expr_p;
6098
6099   /* Verify that we've an exact type match with the original expression.
6100      In particular, we do not wish to drop a "sizetype" in favour of a
6101      type of similar dimensions.  We don't want to pollute the generic
6102      type-stripping code with this knowledge because it doesn't matter
6103      for the bulk of GENERIC/GIMPLE.  It only matters that TYPE_SIZE_UNIT
6104      and friends retain their "sizetype-ness".  */
6105   if (TREE_TYPE (expr) != type
6106       && TREE_CODE (type) == INTEGER_TYPE
6107       && TYPE_IS_SIZETYPE (type))
6108     {
6109       tree tmp;
6110
6111       *expr_p = create_tmp_var (type, NULL);
6112       tmp = build1 (NOP_EXPR, type, expr);
6113       tmp = build2 (MODIFY_EXPR, type, *expr_p, tmp);
6114       if (EXPR_HAS_LOCATION (expr))
6115         SET_EXPR_LOCUS (tmp, EXPR_LOCUS (expr));
6116       else
6117         SET_EXPR_LOCATION (tmp, input_location);
6118
6119       gimplify_and_add (tmp, stmt_p);
6120     }
6121 }
6122 \f
6123 #ifdef ENABLE_CHECKING
6124 /* Compare types A and B for a "close enough" match.  */
6125
6126 static bool
6127 cpt_same_type (tree a, tree b)
6128 {
6129   if (lang_hooks.types_compatible_p (a, b))
6130     return true;
6131
6132   /* ??? The C++ FE decomposes METHOD_TYPES to FUNCTION_TYPES and doesn't
6133      link them together.  This routine is intended to catch type errors
6134      that will affect the optimizers, and the optimizers don't add new
6135      dereferences of function pointers, so ignore it.  */
6136   if ((TREE_CODE (a) == FUNCTION_TYPE || TREE_CODE (a) == METHOD_TYPE)
6137       && (TREE_CODE (b) == FUNCTION_TYPE || TREE_CODE (b) == METHOD_TYPE))
6138     return true;
6139
6140   /* ??? The C FE pushes type qualifiers after the fact into the type of
6141      the element from the type of the array.  See build_unary_op's handling
6142      of ADDR_EXPR.  This seems wrong -- if we were going to do this, we
6143      should have done it when creating the variable in the first place.
6144      Alternately, why aren't the two array types made variants?  */
6145   if (TREE_CODE (a) == ARRAY_TYPE && TREE_CODE (b) == ARRAY_TYPE)
6146     return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
6147
6148   /* And because of those, we have to recurse down through pointers.  */
6149   if (POINTER_TYPE_P (a) && POINTER_TYPE_P (b))
6150     return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
6151
6152   return false;
6153 }
6154
6155 /* Check for some cases of the front end missing cast expressions.
6156    The type of a dereference should correspond to the pointer type;
6157    similarly the type of an address should match its object.  */
6158
6159 static tree
6160 check_pointer_types_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
6161                        void *data ATTRIBUTE_UNUSED)
6162 {
6163   tree t = *tp;
6164   tree ptype, otype, dtype;
6165
6166   switch (TREE_CODE (t))
6167     {
6168     case INDIRECT_REF:
6169     case ARRAY_REF:
6170       otype = TREE_TYPE (t);
6171       ptype = TREE_TYPE (TREE_OPERAND (t, 0));
6172       dtype = TREE_TYPE (ptype);
6173       gcc_assert (cpt_same_type (otype, dtype));
6174       break;
6175
6176     case ADDR_EXPR:
6177       ptype = TREE_TYPE (t);
6178       otype = TREE_TYPE (TREE_OPERAND (t, 0));
6179       dtype = TREE_TYPE (ptype);
6180       if (!cpt_same_type (otype, dtype))
6181         {
6182           /* &array is allowed to produce a pointer to the element, rather than
6183              a pointer to the array type.  We must allow this in order to
6184              properly represent assigning the address of an array in C into
6185              pointer to the element type.  */
6186           gcc_assert (TREE_CODE (otype) == ARRAY_TYPE
6187                       && POINTER_TYPE_P (ptype)
6188                       && cpt_same_type (TREE_TYPE (otype), dtype));
6189           break;
6190         }
6191       break;
6192
6193     default:
6194       return NULL_TREE;
6195     }
6196
6197
6198   return NULL_TREE;
6199 }
6200 #endif
6201
6202 /* Gimplify the body of statements pointed to by BODY_P.  FNDECL is the
6203    function decl containing BODY.  */
6204
6205 void
6206 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
6207 {
6208   location_t saved_location = input_location;
6209   tree body, parm_stmts;
6210
6211   timevar_push (TV_TREE_GIMPLIFY);
6212
6213   gcc_assert (gimplify_ctxp == NULL);
6214   push_gimplify_context ();
6215
6216   /* Unshare most shared trees in the body and in that of any nested functions.
6217      It would seem we don't have to do this for nested functions because
6218      they are supposed to be output and then the outer function gimplified
6219      first, but the g++ front end doesn't always do it that way.  */
6220   unshare_body (body_p, fndecl);
6221   unvisit_body (body_p, fndecl);
6222
6223   /* Make sure input_location isn't set to something wierd.  */
6224   input_location = DECL_SOURCE_LOCATION (fndecl);
6225
6226   /* Resolve callee-copies.  This has to be done before processing
6227      the body so that DECL_VALUE_EXPR gets processed correctly.  */
6228   parm_stmts = do_parms ? gimplify_parameters () : NULL;
6229
6230   /* Gimplify the function's body.  */
6231   gimplify_stmt (body_p);
6232   body = *body_p;
6233
6234   if (!body)
6235     body = alloc_stmt_list ();
6236   else if (TREE_CODE (body) == STATEMENT_LIST)
6237     {
6238       tree t = expr_only (*body_p);
6239       if (t)
6240         body = t;
6241     }
6242
6243   /* If there isn't an outer BIND_EXPR, add one.  */
6244   if (TREE_CODE (body) != BIND_EXPR)
6245     {
6246       tree b = build3 (BIND_EXPR, void_type_node, NULL_TREE,
6247                        NULL_TREE, NULL_TREE);
6248       TREE_SIDE_EFFECTS (b) = 1;
6249       append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
6250       body = b;
6251     }
6252
6253   /* If we had callee-copies statements, insert them at the beginning
6254      of the function.  */
6255   if (parm_stmts)
6256     {
6257       append_to_statement_list_force (BIND_EXPR_BODY (body), &parm_stmts);
6258       BIND_EXPR_BODY (body) = parm_stmts;
6259     }
6260
6261   /* Unshare again, in case gimplification was sloppy.  */
6262   unshare_all_trees (body);
6263
6264   *body_p = body;
6265
6266   pop_gimplify_context (body);
6267   gcc_assert (gimplify_ctxp == NULL);
6268
6269 #ifdef ENABLE_CHECKING
6270   walk_tree (body_p, check_pointer_types_r, NULL, NULL);
6271 #endif
6272
6273   timevar_pop (TV_TREE_GIMPLIFY);
6274   input_location = saved_location;
6275 }
6276
6277 /* Entry point to the gimplification pass.  FNDECL is the FUNCTION_DECL
6278    node for the function we want to gimplify.  */
6279
6280 void
6281 gimplify_function_tree (tree fndecl)
6282 {
6283   tree oldfn, parm, ret;
6284
6285   oldfn = current_function_decl;
6286   current_function_decl = fndecl;
6287   cfun = DECL_STRUCT_FUNCTION (fndecl);
6288   if (cfun == NULL)
6289     allocate_struct_function (fndecl);
6290
6291   for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = TREE_CHAIN (parm))
6292     {
6293       /* Preliminarily mark non-addressed complex variables as eligible
6294          for promotion to gimple registers.  We'll transform their uses
6295          as we find them.  */
6296       if (TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
6297           && !TREE_THIS_VOLATILE (parm)
6298           && !needs_to_live_in_memory (parm))
6299         DECL_COMPLEX_GIMPLE_REG_P (parm) = 1;
6300     }
6301
6302   ret = DECL_RESULT (fndecl);
6303   if (TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
6304       && !needs_to_live_in_memory (ret))
6305     DECL_COMPLEX_GIMPLE_REG_P (ret) = 1;
6306
6307   gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
6308
6309   /* If we're instrumenting function entry/exit, then prepend the call to
6310      the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
6311      catch the exit hook.  */
6312   /* ??? Add some way to ignore exceptions for this TFE.  */
6313   if (flag_instrument_function_entry_exit
6314       && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl))
6315     {
6316       tree tf, x, bind;
6317
6318       tf = build2 (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
6319       TREE_SIDE_EFFECTS (tf) = 1;
6320       x = DECL_SAVED_TREE (fndecl);
6321       append_to_statement_list (x, &TREE_OPERAND (tf, 0));
6322       x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
6323       x = build_function_call_expr (x, NULL);
6324       append_to_statement_list (x, &TREE_OPERAND (tf, 1));
6325
6326       bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6327       TREE_SIDE_EFFECTS (bind) = 1;
6328       x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
6329       x = build_function_call_expr (x, NULL);
6330       append_to_statement_list (x, &BIND_EXPR_BODY (bind));
6331       append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
6332
6333       DECL_SAVED_TREE (fndecl) = bind;
6334     }
6335
6336   current_function_decl = oldfn;
6337   cfun = oldfn ? DECL_STRUCT_FUNCTION (oldfn) : NULL;
6338 }
6339
6340 \f
6341 /* Expands EXPR to list of gimple statements STMTS.  If SIMPLE is true,
6342    force the result to be either ssa_name or an invariant, otherwise
6343    just force it to be a rhs expression.  If VAR is not NULL, make the
6344    base variable of the final destination be VAR if suitable.  */
6345
6346 tree
6347 force_gimple_operand (tree expr, tree *stmts, bool simple, tree var)
6348 {
6349   tree t;
6350   enum gimplify_status ret;
6351   gimple_predicate gimple_test_f;
6352
6353   *stmts = NULL_TREE;
6354
6355   if (is_gimple_val (expr))
6356     return expr;
6357
6358   gimple_test_f = simple ? is_gimple_val : is_gimple_reg_rhs;
6359
6360   push_gimplify_context ();
6361   gimplify_ctxp->into_ssa = in_ssa_p;
6362
6363   if (var)
6364     expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
6365
6366   ret = gimplify_expr (&expr, stmts, NULL,
6367                        gimple_test_f, fb_rvalue);
6368   gcc_assert (ret != GS_ERROR);
6369
6370   if (referenced_vars)
6371     {
6372       for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
6373         add_referenced_var (t);
6374     }
6375
6376   pop_gimplify_context (NULL);
6377
6378   return expr;
6379 }
6380
6381 /* Invokes force_gimple_operand for EXPR with parameters SIMPLE_P and VAR.  If
6382    some statements are produced, emits them before BSI.  */
6383
6384 tree
6385 force_gimple_operand_bsi (block_stmt_iterator *bsi, tree expr,
6386                           bool simple_p, tree var)
6387 {
6388   tree stmts;
6389
6390   expr = force_gimple_operand (expr, &stmts, simple_p, var);
6391   if (stmts)
6392     bsi_insert_before (bsi, stmts, BSI_SAME_STMT);
6393
6394   return expr;
6395 }
6396
6397 #include "gt-gimplify.h"