OSDN Git Service

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