OSDN Git Service

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