OSDN Git Service

2008-06-22 Laurynas Biveinis <laurynas.biveinis@gmail.com>
[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, to, to_ptr;
2813
2814   to = GENERIC_TREE_OPERAND (*expr_p, 0);
2815
2816   to_ptr = build_fold_addr_expr (to);
2817   t = implicit_built_in_decls[BUILT_IN_MEMSET];
2818   t = build_call_expr (t, 3, to_ptr, integer_zero_node, size);
2819
2820   if (want_value)
2821     {
2822       t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2823       t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2824     }
2825
2826   *expr_p = t;
2827   return GS_OK;
2828 }
2829
2830 /* A subroutine of gimplify_init_ctor_preeval.  Called via walk_tree,
2831    determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
2832    assignment.  Returns non-null if we detect a potential overlap.  */
2833
2834 struct gimplify_init_ctor_preeval_data
2835 {
2836   /* The base decl of the lhs object.  May be NULL, in which case we
2837      have to assume the lhs is indirect.  */
2838   tree lhs_base_decl;
2839
2840   /* The alias set of the lhs object.  */
2841   alias_set_type lhs_alias_set;
2842 };
2843
2844 static tree
2845 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
2846 {
2847   struct gimplify_init_ctor_preeval_data *data
2848     = (struct gimplify_init_ctor_preeval_data *) xdata;
2849   tree t = *tp;
2850
2851   /* If we find the base object, obviously we have overlap.  */
2852   if (data->lhs_base_decl == t)
2853     return t;
2854
2855   /* If the constructor component is indirect, determine if we have a
2856      potential overlap with the lhs.  The only bits of information we
2857      have to go on at this point are addressability and alias sets.  */
2858   if (TREE_CODE (t) == INDIRECT_REF
2859       && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2860       && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
2861     return t;
2862
2863   /* If the constructor component is a call, determine if it can hide a
2864      potential overlap with the lhs through an INDIRECT_REF like above.  */
2865   if (TREE_CODE (t) == CALL_EXPR)
2866     {
2867       tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
2868
2869       for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
2870         if (POINTER_TYPE_P (TREE_VALUE (type))
2871             && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2872             && alias_sets_conflict_p (data->lhs_alias_set,
2873                                       get_alias_set
2874                                         (TREE_TYPE (TREE_VALUE (type)))))
2875           return t;
2876     }
2877
2878   if (IS_TYPE_OR_DECL_P (t))
2879     *walk_subtrees = 0;
2880   return NULL;
2881 }
2882
2883 /* A subroutine of gimplify_init_constructor.  Pre-evaluate *EXPR_P,
2884    force values that overlap with the lhs (as described by *DATA)
2885    into temporaries.  */
2886
2887 static void
2888 gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
2889                             struct gimplify_init_ctor_preeval_data *data)
2890 {
2891   enum gimplify_status one;
2892
2893   /* If the value is constant, then there's nothing to pre-evaluate.  */
2894   if (TREE_CONSTANT (*expr_p))
2895     {
2896       /* Ensure it does not have side effects, it might contain a reference to
2897          the object we're initializing.  */
2898       gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
2899       return;
2900     }
2901
2902   /* If the type has non-trivial constructors, we can't pre-evaluate.  */
2903   if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
2904     return;
2905
2906   /* Recurse for nested constructors.  */
2907   if (TREE_CODE (*expr_p) == CONSTRUCTOR)
2908     {
2909       unsigned HOST_WIDE_INT ix;
2910       constructor_elt *ce;
2911       VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
2912
2913       for (ix = 0; VEC_iterate (constructor_elt, v, ix, ce); ix++)
2914         gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
2915       return;
2916     }
2917
2918   /* If this is a variable sized type, we must remember the size.  */
2919   maybe_with_size_expr (expr_p);
2920
2921   /* Gimplify the constructor element to something appropriate for the rhs
2922      of a MODIFY_EXPR.  Given that we know the lhs is an aggregate, we know
2923      the gimplifier will consider this a store to memory.  Doing this
2924      gimplification now means that we won't have to deal with complicated
2925      language-specific trees, nor trees like SAVE_EXPR that can induce
2926      exponential search behavior.  */
2927   one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
2928   if (one == GS_ERROR)
2929     {
2930       *expr_p = NULL;
2931       return;
2932     }
2933
2934   /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
2935      with the lhs, since "a = { .x=a }" doesn't make sense.  This will
2936      always be true for all scalars, since is_gimple_mem_rhs insists on a
2937      temporary variable for them.  */
2938   if (DECL_P (*expr_p))
2939     return;
2940
2941   /* If this is of variable size, we have no choice but to assume it doesn't
2942      overlap since we can't make a temporary for it.  */
2943   if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
2944     return;
2945
2946   /* Otherwise, we must search for overlap ...  */
2947   if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
2948     return;
2949
2950   /* ... and if found, force the value into a temporary.  */
2951   *expr_p = get_formal_tmp_var (*expr_p, pre_p);
2952 }
2953
2954 /* A subroutine of gimplify_init_ctor_eval.  Create a loop for
2955    a RANGE_EXPR in a CONSTRUCTOR for an array.
2956
2957       var = lower;
2958     loop_entry:
2959       object[var] = value;
2960       if (var == upper)
2961         goto loop_exit;
2962       var = var + 1;
2963       goto loop_entry;
2964     loop_exit:
2965
2966    We increment var _after_ the loop exit check because we might otherwise
2967    fail if upper == TYPE_MAX_VALUE (type for upper).
2968
2969    Note that we never have to deal with SAVE_EXPRs here, because this has
2970    already been taken care of for us, in gimplify_init_ctor_preeval().  */
2971
2972 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
2973                                      tree *, bool);
2974
2975 static void
2976 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
2977                                tree value, tree array_elt_type,
2978                                tree *pre_p, bool cleared)
2979 {
2980   tree loop_entry_label, loop_exit_label;
2981   tree var, var_type, cref, tmp;
2982
2983   loop_entry_label = create_artificial_label ();
2984   loop_exit_label = create_artificial_label ();
2985
2986   /* Create and initialize the index variable.  */
2987   var_type = TREE_TYPE (upper);
2988   var = create_tmp_var (var_type, NULL);
2989   append_to_statement_list (build_gimple_modify_stmt (var, lower), pre_p);
2990
2991   /* Add the loop entry label.  */
2992   append_to_statement_list (build1 (LABEL_EXPR,
2993                                     void_type_node,
2994                                     loop_entry_label),
2995                             pre_p);
2996
2997   /* Build the reference.  */
2998   cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2999                  var, NULL_TREE, NULL_TREE);
3000
3001   /* If we are a constructor, just call gimplify_init_ctor_eval to do
3002      the store.  Otherwise just assign value to the reference.  */
3003
3004   if (TREE_CODE (value) == CONSTRUCTOR)
3005     /* NB we might have to call ourself recursively through
3006        gimplify_init_ctor_eval if the value is a constructor.  */
3007     gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3008                              pre_p, cleared);
3009   else
3010     append_to_statement_list (build_gimple_modify_stmt (cref, value), pre_p);
3011
3012   /* We exit the loop when the index var is equal to the upper bound.  */
3013   gimplify_and_add (build3 (COND_EXPR, void_type_node,
3014                             build2 (EQ_EXPR, boolean_type_node,
3015                                     var, upper),
3016                             build1 (GOTO_EXPR,
3017                                     void_type_node,
3018                                     loop_exit_label),
3019                             NULL_TREE),
3020                     pre_p);
3021
3022   /* Otherwise, increment the index var...  */
3023   tmp = build2 (PLUS_EXPR, var_type, var,
3024                 fold_convert (var_type, integer_one_node));
3025   append_to_statement_list (build_gimple_modify_stmt (var, tmp), pre_p);
3026
3027   /* ...and jump back to the loop entry.  */
3028   append_to_statement_list (build1 (GOTO_EXPR,
3029                                     void_type_node,
3030                                     loop_entry_label),
3031                             pre_p);
3032
3033   /* Add the loop exit label.  */
3034   append_to_statement_list (build1 (LABEL_EXPR,
3035                                     void_type_node,
3036                                     loop_exit_label),
3037                             pre_p);
3038 }
3039
3040 /* Return true if FDECL is accessing a field that is zero sized.  */
3041    
3042 static bool
3043 zero_sized_field_decl (const_tree fdecl)
3044 {
3045   if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl) 
3046       && integer_zerop (DECL_SIZE (fdecl)))
3047     return true;
3048   return false;
3049 }
3050
3051 /* Return true if TYPE is zero sized.  */
3052    
3053 static bool
3054 zero_sized_type (const_tree type)
3055 {
3056   if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3057       && integer_zerop (TYPE_SIZE (type)))
3058     return true;
3059   return false;
3060 }
3061
3062 /* A subroutine of gimplify_init_constructor.  Generate individual
3063    MODIFY_EXPRs for a CONSTRUCTOR.  OBJECT is the LHS against which the
3064    assignments should happen.  ELTS is the CONSTRUCTOR_ELTS of the
3065    CONSTRUCTOR.  CLEARED is true if the entire LHS object has been
3066    zeroed first.  */
3067
3068 static void
3069 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
3070                          tree *pre_p, bool cleared)
3071 {
3072   tree array_elt_type = NULL;
3073   unsigned HOST_WIDE_INT ix;
3074   tree purpose, value;
3075
3076   if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3077     array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3078
3079   FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3080     {
3081       tree cref, init;
3082
3083       /* NULL values are created above for gimplification errors.  */
3084       if (value == NULL)
3085         continue;
3086
3087       if (cleared && initializer_zerop (value))
3088         continue;
3089
3090       /* ??? Here's to hoping the front end fills in all of the indices,
3091          so we don't have to figure out what's missing ourselves.  */
3092       gcc_assert (purpose);
3093
3094       /* Skip zero-sized fields, unless value has side-effects.  This can
3095          happen with calls to functions returning a zero-sized type, which
3096          we shouldn't discard.  As a number of downstream passes don't
3097          expect sets of zero-sized fields, we rely on the gimplification of
3098          the MODIFY_EXPR we make below to drop the assignment statement.  */
3099       if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3100         continue;
3101
3102       /* If we have a RANGE_EXPR, we have to build a loop to assign the
3103          whole range.  */
3104       if (TREE_CODE (purpose) == RANGE_EXPR)
3105         {
3106           tree lower = TREE_OPERAND (purpose, 0);
3107           tree upper = TREE_OPERAND (purpose, 1);
3108
3109           /* If the lower bound is equal to upper, just treat it as if
3110              upper was the index.  */
3111           if (simple_cst_equal (lower, upper))
3112             purpose = upper;
3113           else
3114             {
3115               gimplify_init_ctor_eval_range (object, lower, upper, value,
3116                                              array_elt_type, pre_p, cleared);
3117               continue;
3118             }
3119         }
3120
3121       if (array_elt_type)
3122         {
3123           /* Do not use bitsizetype for ARRAY_REF indices.  */
3124           if (TYPE_DOMAIN (TREE_TYPE (object)))
3125             purpose = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3126                                     purpose);
3127           cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3128                          purpose, NULL_TREE, NULL_TREE);
3129         }
3130       else
3131         {
3132           gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3133           cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3134                          unshare_expr (object), purpose, NULL_TREE);
3135         }
3136
3137       if (TREE_CODE (value) == CONSTRUCTOR
3138           && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3139         gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3140                                  pre_p, cleared);
3141       else
3142         {
3143           init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3144           gimplify_and_add (init, pre_p);
3145         }
3146     }
3147 }
3148
3149 /* A subroutine of gimplify_modify_expr.  Break out elements of a
3150    CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3151
3152    Note that we still need to clear any elements that don't have explicit
3153    initializers, so if not all elements are initialized we keep the
3154    original MODIFY_EXPR, we just remove all of the constructor elements.
3155
3156    If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3157    GS_ERROR if we would have to create a temporary when gimplifying
3158    this constructor.  Otherwise, return GS_OK.
3159
3160    If NOTIFY_TEMP_CREATION is false, just do the gimplification.  */
3161
3162 static enum gimplify_status
3163 gimplify_init_constructor (tree *expr_p, tree *pre_p,
3164                            tree *post_p, bool want_value,
3165                            bool notify_temp_creation)
3166 {
3167   tree object;
3168   tree ctor = GENERIC_TREE_OPERAND (*expr_p, 1);
3169   tree type = TREE_TYPE (ctor);
3170   enum gimplify_status ret;
3171   VEC(constructor_elt,gc) *elts;
3172
3173   if (TREE_CODE (ctor) != CONSTRUCTOR)
3174     return GS_UNHANDLED;
3175
3176   if (!notify_temp_creation)
3177     {
3178       ret = gimplify_expr (&GENERIC_TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3179                            is_gimple_lvalue, fb_lvalue);
3180       if (ret == GS_ERROR)
3181         return ret;
3182     }
3183   object = GENERIC_TREE_OPERAND (*expr_p, 0);
3184
3185   elts = CONSTRUCTOR_ELTS (ctor);
3186
3187   ret = GS_ALL_DONE;
3188   switch (TREE_CODE (type))
3189     {
3190     case RECORD_TYPE:
3191     case UNION_TYPE:
3192     case QUAL_UNION_TYPE:
3193     case ARRAY_TYPE:
3194       {
3195         struct gimplify_init_ctor_preeval_data preeval_data;
3196         HOST_WIDE_INT num_type_elements, num_ctor_elements;
3197         HOST_WIDE_INT num_nonzero_elements;
3198         bool cleared, valid_const_initializer;
3199
3200         /* Aggregate types must lower constructors to initialization of
3201            individual elements.  The exception is that a CONSTRUCTOR node
3202            with no elements indicates zero-initialization of the whole.  */
3203         if (VEC_empty (constructor_elt, elts))
3204           {
3205             if (notify_temp_creation)
3206               return GS_OK;
3207             break;
3208           }
3209
3210         /* Fetch information about the constructor to direct later processing.
3211            We might want to make static versions of it in various cases, and
3212            can only do so if it known to be a valid constant initializer.  */
3213         valid_const_initializer
3214           = categorize_ctor_elements (ctor, &num_nonzero_elements,
3215                                       &num_ctor_elements, &cleared);
3216
3217         /* If a const aggregate variable is being initialized, then it
3218            should never be a lose to promote the variable to be static.  */
3219         if (valid_const_initializer
3220             && num_nonzero_elements > 1
3221             && TREE_READONLY (object)
3222             && TREE_CODE (object) == VAR_DECL)
3223           {
3224             if (notify_temp_creation)
3225               return GS_ERROR;
3226             DECL_INITIAL (object) = ctor;
3227             TREE_STATIC (object) = 1;
3228             if (!DECL_NAME (object))
3229               DECL_NAME (object) = create_tmp_var_name ("C");
3230             walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3231
3232             /* ??? C++ doesn't automatically append a .<number> to the
3233                assembler name, and even when it does, it looks a FE private
3234                data structures to figure out what that number should be,
3235                which are not set for this variable.  I suppose this is
3236                important for local statics for inline functions, which aren't
3237                "local" in the object file sense.  So in order to get a unique
3238                TU-local symbol, we must invoke the lhd version now.  */
3239             lhd_set_decl_assembler_name (object);
3240
3241             *expr_p = NULL_TREE;
3242             break;
3243           }
3244
3245         /* If there are "lots" of initialized elements, even discounting
3246            those that are not address constants (and thus *must* be
3247            computed at runtime), then partition the constructor into
3248            constant and non-constant parts.  Block copy the constant
3249            parts in, then generate code for the non-constant parts.  */
3250         /* TODO.  There's code in cp/typeck.c to do this.  */
3251
3252         num_type_elements = count_type_elements (type, true);
3253
3254         /* If count_type_elements could not determine number of type elements
3255            for a constant-sized object, assume clearing is needed.
3256            Don't do this for variable-sized objects, as store_constructor
3257            will ignore the clearing of variable-sized objects.  */
3258         if (num_type_elements < 0 && int_size_in_bytes (type) >= 0)
3259           cleared = true;
3260         /* If there are "lots" of zeros, then block clear the object first.  */
3261         else if (num_type_elements - num_nonzero_elements > CLEAR_RATIO
3262                  && num_nonzero_elements < num_type_elements/4)
3263           cleared = true;
3264         /* ??? This bit ought not be needed.  For any element not present
3265            in the initializer, we should simply set them to zero.  Except
3266            we'd need to *find* the elements that are not present, and that
3267            requires trickery to avoid quadratic compile-time behavior in
3268            large cases or excessive memory use in small cases.  */
3269         else if (num_ctor_elements < num_type_elements)
3270           cleared = true;
3271
3272         /* If there are "lots" of initialized elements, and all of them
3273            are valid address constants, then the entire initializer can
3274            be dropped to memory, and then memcpy'd out.  Don't do this
3275            for sparse arrays, though, as it's more efficient to follow
3276            the standard CONSTRUCTOR behavior of memset followed by
3277            individual element initialization.  */
3278         if (valid_const_initializer && !cleared)
3279           {
3280             HOST_WIDE_INT size = int_size_in_bytes (type);
3281             unsigned int align;
3282
3283             /* ??? We can still get unbounded array types, at least
3284                from the C++ front end.  This seems wrong, but attempt
3285                to work around it for now.  */
3286             if (size < 0)
3287               {
3288                 size = int_size_in_bytes (TREE_TYPE (object));
3289                 if (size >= 0)
3290                   TREE_TYPE (ctor) = type = TREE_TYPE (object);
3291               }
3292
3293             /* Find the maximum alignment we can assume for the object.  */
3294             /* ??? Make use of DECL_OFFSET_ALIGN.  */
3295             if (DECL_P (object))
3296               align = DECL_ALIGN (object);
3297             else
3298               align = TYPE_ALIGN (type);
3299
3300             if (size > 0 && !can_move_by_pieces (size, align))
3301               {
3302                 tree new;
3303
3304                 if (notify_temp_creation)
3305                   return GS_ERROR;
3306
3307                 new = create_tmp_var_raw (type, "C");
3308
3309                 gimple_add_tmp_var (new);
3310                 TREE_STATIC (new) = 1;
3311                 TREE_READONLY (new) = 1;
3312                 DECL_INITIAL (new) = ctor;
3313                 if (align > DECL_ALIGN (new))
3314                   {
3315                     DECL_ALIGN (new) = align;
3316                     DECL_USER_ALIGN (new) = 1;
3317                   }
3318                 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
3319
3320                 GENERIC_TREE_OPERAND (*expr_p, 1) = new;
3321
3322                 /* This is no longer an assignment of a CONSTRUCTOR, but
3323                    we still may have processing to do on the LHS.  So
3324                    pretend we didn't do anything here to let that happen.  */
3325                 return GS_UNHANDLED;
3326               }
3327           }
3328
3329         if (notify_temp_creation)
3330           return GS_OK;
3331
3332         /* If there are nonzero elements, pre-evaluate to capture elements
3333            overlapping with the lhs into temporaries.  We must do this before
3334            clearing to fetch the values before they are zeroed-out.  */
3335         if (num_nonzero_elements > 0)
3336           {
3337             preeval_data.lhs_base_decl = get_base_address (object);
3338             if (!DECL_P (preeval_data.lhs_base_decl))
3339               preeval_data.lhs_base_decl = NULL;
3340             preeval_data.lhs_alias_set = get_alias_set (object);
3341
3342             gimplify_init_ctor_preeval (&GENERIC_TREE_OPERAND (*expr_p, 1),
3343                                         pre_p, post_p, &preeval_data);
3344           }
3345
3346         if (cleared)
3347           {
3348             /* Zap the CONSTRUCTOR element list, which simplifies this case.
3349                Note that we still have to gimplify, in order to handle the
3350                case of variable sized types.  Avoid shared tree structures.  */
3351             CONSTRUCTOR_ELTS (ctor) = NULL;
3352             object = unshare_expr (object);
3353             gimplify_stmt (expr_p);
3354             append_to_statement_list (*expr_p, pre_p);
3355           }
3356
3357         /* If we have not block cleared the object, or if there are nonzero
3358            elements in the constructor, add assignments to the individual
3359            scalar fields of the object.  */
3360         if (!cleared || num_nonzero_elements > 0)
3361           gimplify_init_ctor_eval (object, elts, pre_p, cleared);
3362
3363         *expr_p = NULL_TREE;
3364       }
3365       break;
3366
3367     case COMPLEX_TYPE:
3368       {
3369         tree r, i;
3370
3371         if (notify_temp_creation)
3372           return GS_OK;
3373
3374         /* Extract the real and imaginary parts out of the ctor.  */
3375         gcc_assert (VEC_length (constructor_elt, elts) == 2);
3376         r = VEC_index (constructor_elt, elts, 0)->value;
3377         i = VEC_index (constructor_elt, elts, 1)->value;
3378         if (r == NULL || i == NULL)
3379           {
3380             tree zero = fold_convert (TREE_TYPE (type), integer_zero_node);
3381             if (r == NULL)
3382               r = zero;
3383             if (i == NULL)
3384               i = zero;
3385           }
3386
3387         /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3388            represent creation of a complex value.  */
3389         if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3390           {
3391             ctor = build_complex (type, r, i);
3392             TREE_OPERAND (*expr_p, 1) = ctor;
3393           }
3394         else
3395           {
3396             ctor = build2 (COMPLEX_EXPR, type, r, i);
3397             TREE_OPERAND (*expr_p, 1) = ctor;
3398             ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3399                                  rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
3400                                  fb_rvalue);
3401           }
3402       }
3403       break;
3404
3405     case VECTOR_TYPE:
3406       {
3407         unsigned HOST_WIDE_INT ix;
3408         constructor_elt *ce;
3409
3410         if (notify_temp_creation)
3411           return GS_OK;
3412
3413         /* Go ahead and simplify constant constructors to VECTOR_CST.  */
3414         if (TREE_CONSTANT (ctor))
3415           {
3416             bool constant_p = true;
3417             tree value;
3418
3419             /* Even when ctor is constant, it might contain non-*_CST
3420                elements, such as addresses or trapping values like
3421                1.0/0.0 - 1.0/0.0.  Such expressions don't belong
3422                in VECTOR_CST nodes.  */
3423             FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
3424               if (!CONSTANT_CLASS_P (value))
3425                 {
3426                   constant_p = false;
3427                   break;
3428                 }
3429
3430             if (constant_p)
3431               {
3432                 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
3433                 break;
3434               }
3435
3436             /* Don't reduce an initializer constant even if we can't
3437                make a VECTOR_CST.  It won't do anything for us, and it'll
3438                prevent us from representing it as a single constant.  */
3439             if (initializer_constant_valid_p (ctor, type))
3440               break;
3441
3442             TREE_CONSTANT (ctor) = 0;
3443           }
3444
3445         /* Vector types use CONSTRUCTOR all the way through gimple
3446           compilation as a general initializer.  */
3447         for (ix = 0; VEC_iterate (constructor_elt, elts, ix, ce); ix++)
3448           {
3449             enum gimplify_status tret;
3450             tret = gimplify_expr (&ce->value, pre_p, post_p,
3451                                   is_gimple_val, fb_rvalue);
3452             if (tret == GS_ERROR)
3453               ret = GS_ERROR;
3454           }
3455         if (!is_gimple_reg (GENERIC_TREE_OPERAND (*expr_p, 0)))
3456           GENERIC_TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
3457       }
3458       break;
3459
3460     default:
3461       /* So how did we get a CONSTRUCTOR for a scalar type?  */
3462       gcc_unreachable ();
3463     }
3464
3465   if (ret == GS_ERROR)
3466     return GS_ERROR;
3467   else if (want_value)
3468     {
3469       append_to_statement_list (*expr_p, pre_p);
3470       *expr_p = object;
3471       return GS_OK;
3472     }
3473   else
3474     return GS_ALL_DONE;
3475 }
3476
3477 /* Given a pointer value OP0, return a simplified version of an
3478    indirection through OP0, or NULL_TREE if no simplification is
3479    possible.  Note that the resulting type may be different from
3480    the type pointed to in the sense that it is still compatible
3481    from the langhooks point of view. */
3482
3483 tree
3484 gimple_fold_indirect_ref (tree t)
3485 {
3486   tree type = TREE_TYPE (TREE_TYPE (t));
3487   tree sub = t;
3488   tree subtype;
3489
3490   STRIP_USELESS_TYPE_CONVERSION (sub);
3491   subtype = TREE_TYPE (sub);
3492   if (!POINTER_TYPE_P (subtype))
3493     return NULL_TREE;
3494
3495   if (TREE_CODE (sub) == ADDR_EXPR)
3496     {
3497       tree op = TREE_OPERAND (sub, 0);
3498       tree optype = TREE_TYPE (op);
3499       /* *&p => p */
3500       if (useless_type_conversion_p (type, optype))
3501         return op;
3502
3503       /* *(foo *)&fooarray => fooarray[0] */
3504       if (TREE_CODE (optype) == ARRAY_TYPE
3505           && useless_type_conversion_p (type, TREE_TYPE (optype)))
3506        {
3507          tree type_domain = TYPE_DOMAIN (optype);
3508          tree min_val = size_zero_node;
3509          if (type_domain && TYPE_MIN_VALUE (type_domain))
3510            min_val = TYPE_MIN_VALUE (type_domain);
3511          return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
3512        }
3513     }
3514
3515   /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3516   if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3517       && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
3518     {
3519       tree type_domain;
3520       tree min_val = size_zero_node;
3521       tree osub = sub;
3522       sub = gimple_fold_indirect_ref (sub);
3523       if (! sub)
3524         sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
3525       type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3526       if (type_domain && TYPE_MIN_VALUE (type_domain))
3527         min_val = TYPE_MIN_VALUE (type_domain);
3528       return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
3529     }
3530
3531   return NULL_TREE;
3532 }
3533
3534 /* Given a pointer value OP0, return a simplified version of an
3535    indirection through OP0, or NULL_TREE if no simplification is
3536    possible.  This may only be applied to a rhs of an expression.
3537    Note that the resulting type may be different from the type pointed
3538    to in the sense that it is still compatible from the langhooks
3539    point of view. */
3540
3541 static tree
3542 gimple_fold_indirect_ref_rhs (tree t)
3543 {
3544   return gimple_fold_indirect_ref (t);
3545 }
3546
3547 /* Subroutine of gimplify_modify_expr to do simplifications of
3548    MODIFY_EXPRs based on the code of the RHS.  We loop for as long as
3549    something changes.  */
3550
3551 static enum gimplify_status
3552 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
3553                           tree *post_p, bool want_value)
3554 {
3555   enum gimplify_status ret = GS_OK;
3556
3557   while (ret != GS_UNHANDLED)
3558     switch (TREE_CODE (*from_p))
3559       {
3560       case VAR_DECL:
3561         /* If we're assigning from a constant constructor, move the
3562            constructor expression to the RHS of the MODIFY_EXPR.  */
3563         if (DECL_INITIAL (*from_p)
3564             && TYPE_READONLY (TREE_TYPE (*from_p))
3565             && !TREE_THIS_VOLATILE (*from_p)
3566             && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
3567           {
3568             tree old_from = *from_p;
3569
3570             /* Move the constructor into the RHS.  */
3571             *from_p = unshare_expr (DECL_INITIAL (*from_p));
3572
3573             /* Let's see if gimplify_init_constructor will need to put
3574                it in memory.  If so, revert the change.  */
3575             ret = gimplify_init_constructor (expr_p, NULL, NULL, false, true);
3576             if (ret == GS_ERROR)
3577               {
3578                 *from_p = old_from;
3579                 /* Fall through.  */
3580               }
3581             else
3582               {
3583                 ret = GS_OK;
3584                 break;
3585               }
3586           }
3587         ret = GS_UNHANDLED;
3588         break;
3589       case INDIRECT_REF:
3590         {
3591           /* If we have code like 
3592
3593                 *(const A*)(A*)&x
3594
3595              where the type of "x" is a (possibly cv-qualified variant
3596              of "A"), treat the entire expression as identical to "x".
3597              This kind of code arises in C++ when an object is bound
3598              to a const reference, and if "x" is a TARGET_EXPR we want
3599              to take advantage of the optimization below.  */
3600           tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
3601           if (t)
3602             {
3603               *from_p = t;
3604               ret = GS_OK;
3605             }
3606           else
3607             ret = GS_UNHANDLED;
3608           break;
3609         }
3610
3611       case TARGET_EXPR:
3612         {
3613           /* If we are initializing something from a TARGET_EXPR, strip the
3614              TARGET_EXPR and initialize it directly, if possible.  This can't
3615              be done if the initializer is void, since that implies that the
3616              temporary is set in some non-trivial way.
3617
3618              ??? What about code that pulls out the temp and uses it
3619              elsewhere? I think that such code never uses the TARGET_EXPR as
3620              an initializer.  If I'm wrong, we'll die because the temp won't
3621              have any RTL.  In that case, I guess we'll need to replace
3622              references somehow.  */
3623           tree init = TARGET_EXPR_INITIAL (*from_p);
3624
3625           if (init
3626               && !VOID_TYPE_P (TREE_TYPE (init)))
3627             {
3628               *from_p = init;
3629               ret = GS_OK;
3630             }
3631           else
3632             ret = GS_UNHANDLED;
3633         }
3634         break;
3635
3636       case COMPOUND_EXPR:
3637         /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
3638            caught.  */
3639         gimplify_compound_expr (from_p, pre_p, true);
3640         ret = GS_OK;
3641         break;
3642
3643       case CONSTRUCTOR:
3644         /* If we're initializing from a CONSTRUCTOR, break this into
3645            individual MODIFY_EXPRs.  */
3646         return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
3647                                           false);
3648
3649       case COND_EXPR:
3650         /* If we're assigning to a non-register type, push the assignment
3651            down into the branches.  This is mandatory for ADDRESSABLE types,
3652            since we cannot generate temporaries for such, but it saves a
3653            copy in other cases as well.  */
3654         if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
3655           {
3656             /* This code should mirror the code in gimplify_cond_expr. */
3657             enum tree_code code = TREE_CODE (*expr_p);
3658             tree cond = *from_p;
3659             tree result = *to_p;
3660
3661             ret = gimplify_expr (&result, pre_p, post_p,
3662                                  is_gimple_lvalue, fb_lvalue);
3663             if (ret != GS_ERROR)
3664               ret = GS_OK;
3665
3666             if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
3667               TREE_OPERAND (cond, 1)
3668                 = build2 (code, void_type_node, result,
3669                           TREE_OPERAND (cond, 1));
3670             if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
3671               TREE_OPERAND (cond, 2)
3672                 = build2 (code, void_type_node, unshare_expr (result),
3673                           TREE_OPERAND (cond, 2));
3674
3675             TREE_TYPE (cond) = void_type_node;
3676             recalculate_side_effects (cond);
3677
3678             if (want_value)
3679               {
3680                 gimplify_and_add (cond, pre_p);
3681                 *expr_p = unshare_expr (result);
3682               }
3683             else
3684               *expr_p = cond;
3685             return ret;
3686           }
3687         else
3688           ret = GS_UNHANDLED;
3689         break;
3690
3691       case CALL_EXPR:
3692         /* For calls that return in memory, give *to_p as the CALL_EXPR's
3693            return slot so that we don't generate a temporary.  */
3694         if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
3695             && aggregate_value_p (*from_p, *from_p))
3696           {
3697             bool use_target;
3698
3699             if (!(rhs_predicate_for (*to_p))(*from_p))
3700               /* If we need a temporary, *to_p isn't accurate.  */
3701               use_target = false;
3702             else if (TREE_CODE (*to_p) == RESULT_DECL
3703                      && DECL_NAME (*to_p) == NULL_TREE
3704                      && needs_to_live_in_memory (*to_p))
3705               /* It's OK to use the return slot directly unless it's an NRV. */
3706               use_target = true;
3707             else if (is_gimple_reg_type (TREE_TYPE (*to_p))
3708                      || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
3709               /* Don't force regs into memory.  */
3710               use_target = false;
3711             else if (TREE_CODE (*to_p) == VAR_DECL
3712                      && DECL_GIMPLE_FORMAL_TEMP_P (*to_p))
3713               /* Don't use the original target if it's a formal temp; we
3714                  don't want to take their addresses.  */
3715               use_target = false;
3716             else if (TREE_CODE (*expr_p) == INIT_EXPR)
3717               /* It's OK to use the target directly if it's being
3718                  initialized. */
3719               use_target = true;
3720             else if (!is_gimple_non_addressable (*to_p))
3721               /* Don't use the original target if it's already addressable;
3722                  if its address escapes, and the called function uses the
3723                  NRV optimization, a conforming program could see *to_p
3724                  change before the called function returns; see c++/19317.
3725                  When optimizing, the return_slot pass marks more functions
3726                  as safe after we have escape info.  */
3727               use_target = false;
3728             else
3729               use_target = true;
3730
3731             if (use_target)
3732               {
3733                 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
3734                 mark_addressable (*to_p);
3735               }
3736           }
3737
3738         ret = GS_UNHANDLED;
3739         break;
3740
3741         /* If we're initializing from a container, push the initialization
3742            inside it.  */
3743       case CLEANUP_POINT_EXPR:
3744       case BIND_EXPR:
3745       case STATEMENT_LIST:
3746         {
3747           tree wrap = *from_p;
3748           tree t;
3749
3750           ret = gimplify_expr (to_p, pre_p, post_p,
3751                                is_gimple_min_lval, fb_lvalue);
3752           if (ret != GS_ERROR)
3753             ret = GS_OK;
3754
3755           t = voidify_wrapper_expr (wrap, *expr_p);
3756           gcc_assert (t == *expr_p);
3757
3758           if (want_value)
3759             {
3760               gimplify_and_add (wrap, pre_p);
3761               *expr_p = unshare_expr (*to_p);
3762             }
3763           else
3764             *expr_p = wrap;
3765           return GS_OK;
3766         }
3767         
3768       default:
3769         ret = GS_UNHANDLED;
3770         break;
3771       }
3772
3773   return ret;
3774 }
3775
3776 /* Destructively convert the TREE pointer in TP into a gimple tuple if
3777    appropriate.  */
3778
3779 static void
3780 tree_to_gimple_tuple (tree *tp)
3781 {
3782
3783   switch (TREE_CODE (*tp))
3784     {
3785     case GIMPLE_MODIFY_STMT:
3786       return;
3787     case MODIFY_EXPR:
3788       {
3789         struct gimple_stmt *gs;
3790         tree lhs = TREE_OPERAND (*tp, 0);
3791         bool def_stmt_self_p = false;
3792
3793         if (TREE_CODE (lhs) == SSA_NAME)
3794           {
3795             if (SSA_NAME_DEF_STMT (lhs) == *tp)
3796               def_stmt_self_p = true;
3797           }
3798
3799         gs = &make_node (GIMPLE_MODIFY_STMT)->gstmt;
3800         gs->base = (*tp)->base;
3801         /* The set to base above overwrites the CODE.  */
3802         TREE_SET_CODE ((tree) gs, GIMPLE_MODIFY_STMT);
3803
3804         SET_EXPR_LOCUS ((tree) gs, EXPR_LOCUS (*tp));
3805         gs->operands[0] = TREE_OPERAND (*tp, 0);
3806         gs->operands[1] = TREE_OPERAND (*tp, 1);
3807         gs->block = TREE_BLOCK (*tp);
3808         *tp = (tree)gs;
3809
3810         /* If we re-gimplify a set to an SSA_NAME, we must change the
3811            SSA name's DEF_STMT link.  */
3812         if (def_stmt_self_p)
3813           SSA_NAME_DEF_STMT (GIMPLE_STMT_OPERAND (*tp, 0)) = *tp;
3814
3815         return;
3816       }
3817     default:
3818       break;
3819     }
3820 }
3821
3822 /* Promote partial stores to COMPLEX variables to total stores.  *EXPR_P is
3823    a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
3824    DECL_GIMPLE_REG_P set.
3825
3826    IMPORTANT NOTE: This promotion is performed by introducing a load of the
3827    other, unmodified part of the complex object just before the total store.
3828    As a consequence, if the object is still uninitialized, an undefined value
3829    will be loaded into a register, which may result in a spurious exception
3830    if the register is floating-point and the value happens to be a signaling
3831    NaN for example.  Then the fully-fledged complex operations lowering pass
3832    followed by a DCE pass are necessary in order to fix things up.  */
3833
3834 static enum gimplify_status
3835 gimplify_modify_expr_complex_part (tree *expr_p, tree *pre_p, bool want_value)
3836 {
3837   enum tree_code code, ocode;
3838   tree lhs, rhs, new_rhs, other, realpart, imagpart;
3839
3840   lhs = GENERIC_TREE_OPERAND (*expr_p, 0);
3841   rhs = GENERIC_TREE_OPERAND (*expr_p, 1);
3842   code = TREE_CODE (lhs);
3843   lhs = TREE_OPERAND (lhs, 0);
3844
3845   ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
3846   other = build1 (ocode, TREE_TYPE (rhs), lhs);
3847   other = get_formal_tmp_var (other, pre_p);
3848
3849   realpart = code == REALPART_EXPR ? rhs : other;
3850   imagpart = code == REALPART_EXPR ? other : rhs;
3851
3852   if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
3853     new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
3854   else
3855     new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
3856
3857   GENERIC_TREE_OPERAND (*expr_p, 0) = lhs;
3858   GENERIC_TREE_OPERAND (*expr_p, 1) = new_rhs;
3859
3860   if (want_value)
3861     {
3862       tree_to_gimple_tuple (expr_p);
3863
3864       append_to_statement_list (*expr_p, pre_p);
3865       *expr_p = rhs;
3866     }
3867
3868   return GS_ALL_DONE;
3869 }
3870
3871 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
3872
3873       modify_expr
3874               : varname '=' rhs
3875               | '*' ID '=' rhs
3876
3877     PRE_P points to the list where side effects that must happen before
3878         *EXPR_P should be stored.
3879
3880     POST_P points to the list where side effects that must happen after
3881         *EXPR_P should be stored.
3882
3883     WANT_VALUE is nonzero iff we want to use the value of this expression
3884         in another expression.  */
3885
3886 static enum gimplify_status
3887 gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
3888 {
3889   tree *from_p = &GENERIC_TREE_OPERAND (*expr_p, 1);
3890   tree *to_p = &GENERIC_TREE_OPERAND (*expr_p, 0);
3891   enum gimplify_status ret = GS_UNHANDLED;
3892
3893   gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
3894               || TREE_CODE (*expr_p) == GIMPLE_MODIFY_STMT
3895               || TREE_CODE (*expr_p) == INIT_EXPR);
3896
3897   /* Insert pointer conversions required by the middle-end that are not
3898      required by the frontend.  This fixes middle-end type checking for
3899      for example gcc.dg/redecl-6.c.  */
3900   if (POINTER_TYPE_P (TREE_TYPE (*to_p))
3901       && lang_hooks.types_compatible_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
3902     {
3903       STRIP_USELESS_TYPE_CONVERSION (*from_p);
3904       if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
3905         *from_p = fold_convert (TREE_TYPE (*to_p), *from_p);
3906     }
3907
3908   /* See if any simplifications can be done based on what the RHS is.  */
3909   ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3910                                   want_value);
3911   if (ret != GS_UNHANDLED)
3912     return ret;
3913
3914   /* For zero sized types only gimplify the left hand side and right hand
3915      side as statements and throw away the assignment.  Do this after
3916      gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
3917      types properly.  */
3918   if (zero_sized_type (TREE_TYPE (*from_p)))
3919     {
3920       gimplify_stmt (from_p);
3921       gimplify_stmt (to_p);
3922       append_to_statement_list (*from_p, pre_p);
3923       append_to_statement_list (*to_p, pre_p);
3924       *expr_p = NULL_TREE;
3925       return GS_ALL_DONE;
3926     }
3927
3928   /* If the value being copied is of variable width, compute the length
3929      of the copy into a WITH_SIZE_EXPR.   Note that we need to do this
3930      before gimplifying any of the operands so that we can resolve any
3931      PLACEHOLDER_EXPRs in the size.  Also note that the RTL expander uses
3932      the size of the expression to be copied, not of the destination, so
3933      that is what we must here.  */
3934   maybe_with_size_expr (from_p);
3935
3936   ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
3937   if (ret == GS_ERROR)
3938     return ret;
3939
3940   ret = gimplify_expr (from_p, pre_p, post_p,
3941                        rhs_predicate_for (*to_p), fb_rvalue);
3942   if (ret == GS_ERROR)
3943     return ret;
3944
3945   /* Now see if the above changed *from_p to something we handle specially.  */
3946   ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3947                                   want_value);
3948   if (ret != GS_UNHANDLED)
3949     return ret;
3950
3951   /* If we've got a variable sized assignment between two lvalues (i.e. does
3952      not involve a call), then we can make things a bit more straightforward
3953      by converting the assignment to memcpy or memset.  */
3954   if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
3955     {
3956       tree from = TREE_OPERAND (*from_p, 0);
3957       tree size = TREE_OPERAND (*from_p, 1);
3958
3959       if (TREE_CODE (from) == CONSTRUCTOR)
3960         return gimplify_modify_expr_to_memset (expr_p, size, want_value);
3961       if (is_gimple_addressable (from))
3962         {
3963           *from_p = from;
3964           return gimplify_modify_expr_to_memcpy (expr_p, size, want_value);
3965         }
3966     }
3967
3968   /* Transform partial stores to non-addressable complex variables into
3969      total stores.  This allows us to use real instead of virtual operands
3970      for these variables, which improves optimization.  */
3971   if ((TREE_CODE (*to_p) == REALPART_EXPR
3972        || TREE_CODE (*to_p) == IMAGPART_EXPR)
3973       && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
3974     return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
3975
3976   if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
3977     {
3978       /* If we've somehow already got an SSA_NAME on the LHS, then
3979          we're probably modified it twice.  Not good.  */
3980       gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
3981       *to_p = make_ssa_name (*to_p, *expr_p);
3982     }
3983
3984   /* Try to alleviate the effects of the gimplification creating artificial
3985      temporaries (see for example is_gimple_reg_rhs) on the debug info.  */
3986   if (!gimplify_ctxp->into_ssa
3987       && DECL_P (*from_p) && DECL_IGNORED_P (*from_p)
3988       && DECL_P (*to_p) && !DECL_IGNORED_P (*to_p))
3989     {
3990       if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
3991         DECL_NAME (*from_p)
3992           = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
3993       DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
3994       SET_DECL_DEBUG_EXPR (*from_p, *to_p);
3995     }
3996
3997   if (want_value)
3998     {
3999       tree_to_gimple_tuple (expr_p);
4000
4001       append_to_statement_list (*expr_p, pre_p);
4002       *expr_p = *to_p;
4003       return GS_OK;
4004     }
4005
4006   return GS_ALL_DONE;
4007 }
4008
4009 /*  Gimplify a comparison between two variable-sized objects.  Do this
4010     with a call to BUILT_IN_MEMCMP.  */
4011
4012 static enum gimplify_status
4013 gimplify_variable_sized_compare (tree *expr_p)
4014 {
4015   tree op0 = TREE_OPERAND (*expr_p, 0);
4016   tree op1 = TREE_OPERAND (*expr_p, 1);
4017   tree t, arg, dest, src;
4018
4019   arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4020   arg = unshare_expr (arg);
4021   arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4022   src = build_fold_addr_expr (op1);
4023   dest = build_fold_addr_expr (op0);
4024   t = implicit_built_in_decls[BUILT_IN_MEMCMP];
4025   t = build_call_expr (t, 3, dest, src, arg);
4026   *expr_p
4027     = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4028
4029   return GS_OK;
4030 }
4031
4032 /*  Gimplify a comparison between two aggregate objects of integral scalar
4033     mode as a comparison between the bitwise equivalent scalar values.  */
4034
4035 static enum gimplify_status
4036 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4037 {
4038   tree op0 = TREE_OPERAND (*expr_p, 0);
4039   tree op1 = TREE_OPERAND (*expr_p, 1);
4040
4041   tree type = TREE_TYPE (op0);
4042   tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
4043
4044   op0 = fold_build1 (VIEW_CONVERT_EXPR, scalar_type, op0);
4045   op1 = fold_build1 (VIEW_CONVERT_EXPR, scalar_type, op1);
4046
4047   *expr_p
4048     = fold_build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
4049
4050   return GS_OK;
4051 }
4052
4053 /*  Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions.  EXPR_P
4054     points to the expression to gimplify.
4055
4056     Expressions of the form 'a && b' are gimplified to:
4057
4058         a && b ? true : false
4059
4060     gimplify_cond_expr will do the rest.
4061
4062     PRE_P points to the list where side effects that must happen before
4063         *EXPR_P should be stored.  */
4064
4065 static enum gimplify_status
4066 gimplify_boolean_expr (tree *expr_p)
4067 {
4068   /* Preserve the original type of the expression.  */
4069   tree type = TREE_TYPE (*expr_p);
4070
4071   *expr_p = build3 (COND_EXPR, type, *expr_p,
4072                     fold_convert (type, boolean_true_node),
4073                     fold_convert (type, boolean_false_node));
4074
4075   return GS_OK;
4076 }
4077
4078 /* Gimplifies an expression sequence.  This function gimplifies each
4079    expression and re-writes the original expression with the last
4080    expression of the sequence in GIMPLE form.
4081
4082    PRE_P points to the list where the side effects for all the
4083        expressions in the sequence will be emitted.
4084
4085    WANT_VALUE is true when the result of the last COMPOUND_EXPR is used.  */
4086 /* ??? Should rearrange to share the pre-queue with all the indirect
4087    invocations of gimplify_expr.  Would probably save on creations
4088    of statement_list nodes.  */
4089
4090 static enum gimplify_status
4091 gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
4092 {
4093   tree t = *expr_p;
4094
4095   do
4096     {
4097       tree *sub_p = &TREE_OPERAND (t, 0);
4098
4099       if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
4100         gimplify_compound_expr (sub_p, pre_p, false);
4101       else
4102         gimplify_stmt (sub_p);
4103       append_to_statement_list (*sub_p, pre_p);
4104
4105       t = TREE_OPERAND (t, 1);
4106     }
4107   while (TREE_CODE (t) == COMPOUND_EXPR);
4108
4109   *expr_p = t;
4110   if (want_value)
4111     return GS_OK;
4112   else
4113     {
4114       gimplify_stmt (expr_p);
4115       return GS_ALL_DONE;
4116     }
4117 }
4118
4119 /* Gimplifies a statement list.  These may be created either by an
4120    enlightened front-end, or by shortcut_cond_expr.  */
4121
4122 static enum gimplify_status
4123 gimplify_statement_list (tree *expr_p, tree *pre_p)
4124 {
4125   tree temp = voidify_wrapper_expr (*expr_p, NULL);
4126
4127   tree_stmt_iterator i = tsi_start (*expr_p);
4128
4129   while (!tsi_end_p (i))
4130     {
4131       tree t;
4132
4133       gimplify_stmt (tsi_stmt_ptr (i));
4134
4135       t = tsi_stmt (i);
4136       if (t == NULL)
4137         tsi_delink (&i);
4138       else if (TREE_CODE (t) == STATEMENT_LIST)
4139         {
4140           tsi_link_before (&i, t, TSI_SAME_STMT);
4141           tsi_delink (&i);
4142         }
4143       else
4144         tsi_next (&i);
4145     }
4146
4147   if (temp)
4148     {
4149       append_to_statement_list (*expr_p, pre_p);
4150       *expr_p = temp;
4151       return GS_OK;
4152     }
4153
4154   return GS_ALL_DONE;
4155 }
4156
4157 /*  Gimplify a SAVE_EXPR node.  EXPR_P points to the expression to
4158     gimplify.  After gimplification, EXPR_P will point to a new temporary
4159     that holds the original value of the SAVE_EXPR node.
4160
4161     PRE_P points to the list where side effects that must happen before
4162         *EXPR_P should be stored.  */
4163
4164 static enum gimplify_status
4165 gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
4166 {
4167   enum gimplify_status ret = GS_ALL_DONE;
4168   tree val;
4169
4170   gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
4171   val = TREE_OPERAND (*expr_p, 0);
4172
4173   /* If the SAVE_EXPR has not been resolved, then evaluate it once.  */
4174   if (!SAVE_EXPR_RESOLVED_P (*expr_p))
4175     {
4176       /* The operand may be a void-valued expression such as SAVE_EXPRs
4177          generated by the Java frontend for class initialization.  It is
4178          being executed only for its side-effects.  */
4179       if (TREE_TYPE (val) == void_type_node)
4180         {
4181           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4182                                is_gimple_stmt, fb_none);
4183           append_to_statement_list (TREE_OPERAND (*expr_p, 0), pre_p);
4184           val = NULL;
4185         }
4186       else
4187         val = get_initialized_tmp_var (val, pre_p, post_p);
4188
4189       TREE_OPERAND (*expr_p, 0) = val;
4190       SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
4191     }
4192
4193   *expr_p = val;
4194
4195   return ret;
4196 }
4197
4198 /*  Re-write the ADDR_EXPR node pointed to by EXPR_P
4199
4200       unary_expr
4201               : ...
4202               | '&' varname
4203               ...
4204
4205     PRE_P points to the list where side effects that must happen before
4206         *EXPR_P should be stored.
4207
4208     POST_P points to the list where side effects that must happen after
4209         *EXPR_P should be stored.  */
4210
4211 static enum gimplify_status
4212 gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
4213 {
4214   tree expr = *expr_p;
4215   tree op0 = TREE_OPERAND (expr, 0);
4216   enum gimplify_status ret;
4217
4218   switch (TREE_CODE (op0))
4219     {
4220     case INDIRECT_REF:
4221     case MISALIGNED_INDIRECT_REF:
4222     do_indirect_ref:
4223       /* Check if we are dealing with an expression of the form '&*ptr'.
4224          While the front end folds away '&*ptr' into 'ptr', these
4225          expressions may be generated internally by the compiler (e.g.,
4226          builtins like __builtin_va_end).  */
4227       /* Caution: the silent array decomposition semantics we allow for
4228          ADDR_EXPR means we can't always discard the pair.  */
4229       /* Gimplification of the ADDR_EXPR operand may drop
4230          cv-qualification conversions, so make sure we add them if
4231          needed.  */
4232       {
4233         tree op00 = TREE_OPERAND (op0, 0);
4234         tree t_expr = TREE_TYPE (expr);
4235         tree t_op00 = TREE_TYPE (op00);
4236
4237         if (!useless_type_conversion_p (t_expr, t_op00))
4238           op00 = fold_convert (TREE_TYPE (expr), op00);
4239         *expr_p = op00;
4240         ret = GS_OK;
4241       }
4242       break;
4243
4244     case VIEW_CONVERT_EXPR:
4245       /* Take the address of our operand and then convert it to the type of
4246          this ADDR_EXPR.
4247
4248          ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
4249          all clear.  The impact of this transformation is even less clear.  */
4250
4251       /* If the operand is a useless conversion, look through it.  Doing so
4252          guarantees that the ADDR_EXPR and its operand will remain of the
4253          same type.  */
4254       if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
4255         op0 = TREE_OPERAND (op0, 0);
4256
4257       *expr_p = fold_convert (TREE_TYPE (expr),
4258                               build_fold_addr_expr (TREE_OPERAND (op0, 0)));
4259       ret = GS_OK;
4260       break;
4261
4262     default:
4263       /* We use fb_either here because the C frontend sometimes takes
4264          the address of a call that returns a struct; see
4265          gcc.dg/c99-array-lval-1.c.  The gimplifier will correctly make
4266          the implied temporary explicit.  */
4267
4268       /* Mark the RHS addressable.  */
4269       ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
4270                            is_gimple_addressable, fb_either);
4271       if (ret != GS_ERROR)
4272         {
4273           op0 = TREE_OPERAND (expr, 0);
4274
4275           /* For various reasons, the gimplification of the expression
4276              may have made a new INDIRECT_REF.  */
4277           if (TREE_CODE (op0) == INDIRECT_REF)
4278             goto do_indirect_ref;
4279
4280           /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly.  */
4281           recompute_tree_invariant_for_addr_expr (expr);
4282
4283           mark_addressable (TREE_OPERAND (expr, 0));
4284         }
4285       break;
4286     }
4287
4288   return ret;
4289 }
4290
4291 /* Gimplify the operands of an ASM_EXPR.  Input operands should be a gimple
4292    value; output operands should be a gimple lvalue.  */
4293
4294 static enum gimplify_status
4295 gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
4296 {
4297   tree expr = *expr_p;
4298   int noutputs = list_length (ASM_OUTPUTS (expr));
4299   const char **oconstraints
4300     = (const char **) alloca ((noutputs) * sizeof (const char *));
4301   int i;
4302   tree link;
4303   const char *constraint;
4304   bool allows_mem, allows_reg, is_inout;
4305   enum gimplify_status ret, tret;
4306
4307   ret = GS_ALL_DONE;
4308   for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
4309     {
4310       size_t constraint_len;
4311       bool ok;
4312       oconstraints[i] = constraint
4313         = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4314       constraint_len = strlen (constraint);
4315       if (constraint_len == 0)
4316         continue;
4317
4318       ok = parse_output_constraint (&constraint, i, 0, 0,
4319                                     &allows_mem, &allows_reg, &is_inout);
4320       if (!ok)
4321         {
4322           ret = GS_ERROR;
4323           is_inout = false;
4324         }
4325
4326       if (!allows_reg && allows_mem)
4327         mark_addressable (TREE_VALUE (link));
4328
4329       tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4330                             is_inout ? is_gimple_min_lval : is_gimple_lvalue,
4331                             fb_lvalue | fb_mayfail);
4332       if (tret == GS_ERROR)
4333         {
4334           error ("invalid lvalue in asm output %d", i);
4335           ret = tret;
4336         }
4337
4338       if (is_inout)
4339         {
4340           /* An input/output operand.  To give the optimizers more
4341              flexibility, split it into separate input and output
4342              operands.  */
4343           tree input;
4344           char buf[10];
4345
4346           /* Turn the in/out constraint into an output constraint.  */
4347           char *p = xstrdup (constraint);
4348           p[0] = '=';
4349           TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
4350
4351           /* And add a matching input constraint.  */
4352           if (allows_reg)
4353             {
4354               sprintf (buf, "%d", i);
4355
4356               /* If there are multiple alternatives in the constraint,
4357                  handle each of them individually.  Those that allow register
4358                  will be replaced with operand number, the others will stay
4359                  unchanged.  */
4360               if (strchr (p, ',') != NULL)
4361                 {
4362                   size_t len = 0, buflen = strlen (buf);
4363                   char *beg, *end, *str, *dst;
4364
4365                   for (beg = p + 1;;)
4366                     {
4367                       end = strchr (beg, ',');
4368                       if (end == NULL)
4369                         end = strchr (beg, '\0');
4370                       if ((size_t) (end - beg) < buflen)
4371                         len += buflen + 1;
4372                       else
4373                         len += end - beg + 1;
4374                       if (*end)
4375                         beg = end + 1;
4376                       else
4377                         break;
4378                     }
4379
4380                   str = (char *) alloca (len);
4381                   for (beg = p + 1, dst = str;;)
4382                     {
4383                       const char *tem;
4384                       bool mem_p, reg_p, inout_p;
4385
4386                       end = strchr (beg, ',');
4387                       if (end)
4388                         *end = '\0';
4389                       beg[-1] = '=';
4390                       tem = beg - 1;
4391                       parse_output_constraint (&tem, i, 0, 0,
4392                                                &mem_p, &reg_p, &inout_p);
4393                       if (dst != str)
4394                         *dst++ = ',';
4395                       if (reg_p)
4396                         {
4397                           memcpy (dst, buf, buflen);
4398                           dst += buflen;
4399                         }
4400                       else
4401                         {
4402                           if (end)
4403                             len = end - beg;
4404                           else
4405                             len = strlen (beg);
4406                           memcpy (dst, beg, len);
4407                           dst += len;
4408                         }
4409                       if (end)
4410                         beg = end + 1;
4411                       else
4412                         break;
4413                     }
4414                   *dst = '\0';
4415                   input = build_string (dst - str, str);
4416                 }
4417               else
4418                 input = build_string (strlen (buf), buf);
4419             }
4420           else
4421             input = build_string (constraint_len - 1, constraint + 1);
4422
4423           free (p);
4424
4425           input = build_tree_list (build_tree_list (NULL_TREE, input),
4426                                    unshare_expr (TREE_VALUE (link)));
4427           ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
4428         }
4429     }
4430
4431   for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
4432     {
4433       constraint
4434         = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4435       parse_input_constraint (&constraint, 0, 0, noutputs, 0,
4436                               oconstraints, &allows_mem, &allows_reg);
4437
4438       /* If we can't make copies, we can only accept memory.  */
4439       if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
4440         {
4441           if (allows_mem)
4442             allows_reg = 0;
4443           else
4444             {
4445               error ("impossible constraint in %<asm%>");
4446               error ("non-memory input %d must stay in memory", i);
4447               return GS_ERROR;
4448             }
4449         }
4450
4451       /* If the operand is a memory input, it should be an lvalue.  */
4452       if (!allows_reg && allows_mem)
4453         {
4454           tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4455                                 is_gimple_lvalue, fb_lvalue | fb_mayfail);
4456           mark_addressable (TREE_VALUE (link));
4457           if (tret == GS_ERROR)
4458             {
4459               error ("memory input %d is not directly addressable", i);
4460               ret = tret;
4461             }
4462         }
4463       else
4464         {
4465           tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4466                                 is_gimple_asm_val, fb_rvalue);
4467           if (tret == GS_ERROR)
4468             ret = tret;
4469         }
4470     }
4471
4472   return ret;
4473 }
4474
4475 /* Gimplify a CLEANUP_POINT_EXPR.  Currently this works by adding
4476    WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
4477    gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
4478    return to this function.
4479
4480    FIXME should we complexify the prequeue handling instead?  Or use flags
4481    for all the cleanups and let the optimizer tighten them up?  The current
4482    code seems pretty fragile; it will break on a cleanup within any
4483    non-conditional nesting.  But any such nesting would be broken, anyway;
4484    we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
4485    and continues out of it.  We can do that at the RTL level, though, so
4486    having an optimizer to tighten up try/finally regions would be a Good
4487    Thing.  */
4488
4489 static enum gimplify_status
4490 gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
4491 {
4492   tree_stmt_iterator iter;
4493   tree body;
4494
4495   tree temp = voidify_wrapper_expr (*expr_p, NULL);
4496
4497   /* We only care about the number of conditions between the innermost
4498      CLEANUP_POINT_EXPR and the cleanup.  So save and reset the count and
4499      any cleanups collected outside the CLEANUP_POINT_EXPR.  */
4500   int old_conds = gimplify_ctxp->conditions;
4501   tree old_cleanups = gimplify_ctxp->conditional_cleanups;
4502   gimplify_ctxp->conditions = 0;
4503   gimplify_ctxp->conditional_cleanups = NULL_TREE;
4504
4505   body = TREE_OPERAND (*expr_p, 0);
4506   gimplify_to_stmt_list (&body);
4507
4508   gimplify_ctxp->conditions = old_conds;
4509   gimplify_ctxp->conditional_cleanups = old_cleanups;
4510
4511   for (iter = tsi_start (body); !tsi_end_p (iter); )
4512     {
4513       tree *wce_p = tsi_stmt_ptr (iter);
4514       tree wce = *wce_p;
4515
4516       if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
4517         {
4518           if (tsi_one_before_end_p (iter))
4519             {
4520               tsi_link_before (&iter, TREE_OPERAND (wce, 0), TSI_SAME_STMT);
4521               tsi_delink (&iter);
4522               break;
4523             }
4524           else
4525             {
4526               tree sl, tfe;
4527               enum tree_code code;
4528
4529               if (CLEANUP_EH_ONLY (wce))
4530                 code = TRY_CATCH_EXPR;
4531               else
4532                 code = TRY_FINALLY_EXPR;
4533
4534               sl = tsi_split_statement_list_after (&iter);
4535               tfe = build2 (code, void_type_node, sl, NULL_TREE);
4536               append_to_statement_list (TREE_OPERAND (wce, 0),
4537                                         &TREE_OPERAND (tfe, 1));
4538               *wce_p = tfe;
4539               iter = tsi_start (sl);
4540             }
4541         }
4542       else
4543         tsi_next (&iter);
4544     }
4545
4546   if (temp)
4547     {
4548       *expr_p = temp;
4549       append_to_statement_list (body, pre_p);
4550       return GS_OK;
4551     }
4552   else
4553     {
4554       *expr_p = body;
4555       return GS_ALL_DONE;
4556     }
4557 }
4558
4559 /* Insert a cleanup marker for gimplify_cleanup_point_expr.  CLEANUP
4560    is the cleanup action required.  */
4561
4562 static void
4563 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, tree *pre_p)
4564 {
4565   tree wce;
4566
4567   /* Errors can result in improperly nested cleanups.  Which results in
4568      confusion when trying to resolve the WITH_CLEANUP_EXPR.  */
4569   if (errorcount || sorrycount)
4570     return;
4571
4572   if (gimple_conditional_context ())
4573     {
4574       /* If we're in a conditional context, this is more complex.  We only
4575          want to run the cleanup if we actually ran the initialization that
4576          necessitates it, but we want to run it after the end of the
4577          conditional context.  So we wrap the try/finally around the
4578          condition and use a flag to determine whether or not to actually
4579          run the destructor.  Thus
4580
4581            test ? f(A()) : 0
4582
4583          becomes (approximately)
4584
4585            flag = 0;
4586            try {
4587              if (test) { A::A(temp); flag = 1; val = f(temp); }
4588              else { val = 0; }
4589            } finally {
4590              if (flag) A::~A(temp);
4591            }
4592            val
4593       */
4594
4595       tree flag = create_tmp_var (boolean_type_node, "cleanup");
4596       tree ffalse = build_gimple_modify_stmt (flag, boolean_false_node);
4597       tree ftrue = build_gimple_modify_stmt (flag, boolean_true_node);
4598       cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
4599       wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4600       append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
4601       append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
4602       append_to_statement_list (ftrue, pre_p);
4603
4604       /* Because of this manipulation, and the EH edges that jump
4605          threading cannot redirect, the temporary (VAR) will appear
4606          to be used uninitialized.  Don't warn.  */
4607       TREE_NO_WARNING (var) = 1;
4608     }
4609   else
4610     {
4611       wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4612       CLEANUP_EH_ONLY (wce) = eh_only;
4613       append_to_statement_list (wce, pre_p);
4614     }
4615
4616   gimplify_stmt (&TREE_OPERAND (wce, 0));
4617 }
4618
4619 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR.  */
4620
4621 static enum gimplify_status
4622 gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
4623 {
4624   tree targ = *expr_p;
4625   tree temp = TARGET_EXPR_SLOT (targ);
4626   tree init = TARGET_EXPR_INITIAL (targ);
4627   enum gimplify_status ret;
4628
4629   if (init)
4630     {
4631       /* TARGET_EXPR temps aren't part of the enclosing block, so add it
4632          to the temps list.  Handle also variable length TARGET_EXPRs.  */
4633       if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
4634         {
4635           if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
4636             gimplify_type_sizes (TREE_TYPE (temp), pre_p);
4637           gimplify_vla_decl (temp, pre_p);
4638         }
4639       else
4640         gimple_add_tmp_var (temp);
4641
4642       /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
4643          expression is supposed to initialize the slot.  */
4644       if (VOID_TYPE_P (TREE_TYPE (init)))
4645         ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
4646       else
4647         {
4648           init = build2 (INIT_EXPR, void_type_node, temp, init);
4649           ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
4650                                fb_none);
4651         }
4652       if (ret == GS_ERROR)
4653         {
4654           /* PR c++/28266 Make sure this is expanded only once. */
4655           TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4656           return GS_ERROR;
4657         }
4658       append_to_statement_list (init, pre_p);
4659
4660       /* If needed, push the cleanup for the temp.  */
4661       if (TARGET_EXPR_CLEANUP (targ))
4662         {
4663           gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
4664           gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
4665                                CLEANUP_EH_ONLY (targ), pre_p);
4666         }
4667
4668       /* Only expand this once.  */
4669       TREE_OPERAND (targ, 3) = init;
4670       TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4671     }
4672   else
4673     /* We should have expanded this before.  */
4674     gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
4675
4676   *expr_p = temp;
4677   return GS_OK;
4678 }
4679
4680 /* Gimplification of expression trees.  */
4681
4682 /* Gimplify an expression which appears at statement context; usually, this
4683    means replacing it with a suitably gimple STATEMENT_LIST.  */
4684
4685 void
4686 gimplify_stmt (tree *stmt_p)
4687 {
4688   gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
4689 }
4690
4691 /* Similarly, but force the result to be a STATEMENT_LIST.  */
4692
4693 void
4694 gimplify_to_stmt_list (tree *stmt_p)
4695 {
4696   gimplify_stmt (stmt_p);
4697   if (!*stmt_p)
4698     *stmt_p = alloc_stmt_list ();
4699   else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
4700     {
4701       tree t = *stmt_p;
4702       *stmt_p = alloc_stmt_list ();
4703       append_to_statement_list (t, stmt_p);
4704     }
4705 }
4706
4707
4708 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
4709    to CTX.  If entries already exist, force them to be some flavor of private.
4710    If there is no enclosing parallel, do nothing.  */
4711
4712 void
4713 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
4714 {
4715   splay_tree_node n;
4716
4717   if (decl == NULL || !DECL_P (decl))
4718     return;
4719
4720   do
4721     {
4722       n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4723       if (n != NULL)
4724         {
4725           if (n->value & GOVD_SHARED)
4726             n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
4727           else
4728             return;
4729         }
4730       else if (ctx->region_type != ORT_WORKSHARE)
4731         omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
4732
4733       ctx = ctx->outer_context;
4734     }
4735   while (ctx);
4736 }
4737
4738 /* Similarly for each of the type sizes of TYPE.  */
4739
4740 static void
4741 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
4742 {
4743   if (type == NULL || type == error_mark_node)
4744     return;
4745   type = TYPE_MAIN_VARIANT (type);
4746
4747   if (pointer_set_insert (ctx->privatized_types, type))
4748     return;
4749
4750   switch (TREE_CODE (type))
4751     {
4752     case INTEGER_TYPE:
4753     case ENUMERAL_TYPE:
4754     case BOOLEAN_TYPE:
4755     case REAL_TYPE:
4756     case FIXED_POINT_TYPE:
4757       omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
4758       omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
4759       break;
4760
4761     case ARRAY_TYPE:
4762       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4763       omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
4764       break;
4765
4766     case RECORD_TYPE:
4767     case UNION_TYPE:
4768     case QUAL_UNION_TYPE:
4769       {
4770         tree field;
4771         for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4772           if (TREE_CODE (field) == FIELD_DECL)
4773             {
4774               omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
4775               omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
4776             }
4777       }
4778       break;
4779
4780     case POINTER_TYPE:
4781     case REFERENCE_TYPE:
4782       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4783       break;
4784
4785     default:
4786       break;
4787     }
4788
4789   omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
4790   omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
4791   lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
4792 }
4793
4794 /* Add an entry for DECL in the OpenMP context CTX with FLAGS.  */
4795
4796 static void
4797 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
4798 {
4799   splay_tree_node n;
4800   unsigned int nflags;
4801   tree t;
4802
4803   if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4804     return;
4805
4806   /* Never elide decls whose type has TREE_ADDRESSABLE set.  This means
4807      there are constructors involved somewhere.  */
4808   if (TREE_ADDRESSABLE (TREE_TYPE (decl))
4809       || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
4810     flags |= GOVD_SEEN;
4811
4812   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4813   if (n != NULL)
4814     {
4815       /* We shouldn't be re-adding the decl with the same data
4816          sharing class.  */
4817       gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
4818       /* The only combination of data sharing classes we should see is
4819          FIRSTPRIVATE and LASTPRIVATE.  */
4820       nflags = n->value | flags;
4821       gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
4822                   == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
4823       n->value = nflags;
4824       return;
4825     }
4826
4827   /* When adding a variable-sized variable, we have to handle all sorts
4828      of additional bits of data: the pointer replacement variable, and 
4829      the parameters of the type.  */
4830   if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
4831     {
4832       /* Add the pointer replacement variable as PRIVATE if the variable
4833          replacement is private, else FIRSTPRIVATE since we'll need the
4834          address of the original variable either for SHARED, or for the
4835          copy into or out of the context.  */
4836       if (!(flags & GOVD_LOCAL))
4837         {
4838           nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
4839           nflags |= flags & GOVD_SEEN;
4840           t = DECL_VALUE_EXPR (decl);
4841           gcc_assert (TREE_CODE (t) == INDIRECT_REF);
4842           t = TREE_OPERAND (t, 0);
4843           gcc_assert (DECL_P (t));
4844           omp_add_variable (ctx, t, nflags);
4845         }
4846
4847       /* Add all of the variable and type parameters (which should have
4848          been gimplified to a formal temporary) as FIRSTPRIVATE.  */
4849       omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
4850       omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
4851       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4852
4853       /* The variable-sized variable itself is never SHARED, only some form
4854          of PRIVATE.  The sharing would take place via the pointer variable
4855          which we remapped above.  */
4856       if (flags & GOVD_SHARED)
4857         flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
4858                 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
4859
4860       /* We're going to make use of the TYPE_SIZE_UNIT at least in the 
4861          alloca statement we generate for the variable, so make sure it
4862          is available.  This isn't automatically needed for the SHARED
4863          case, since we won't be allocating local storage then.
4864          For local variables TYPE_SIZE_UNIT might not be gimplified yet,
4865          in this case omp_notice_variable will be called later
4866          on when it is gimplified.  */
4867       else if (! (flags & GOVD_LOCAL))
4868         omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
4869     }
4870   else if (lang_hooks.decls.omp_privatize_by_reference (decl))
4871     {
4872       gcc_assert ((flags & GOVD_LOCAL) == 0);
4873       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4874
4875       /* Similar to the direct variable sized case above, we'll need the
4876          size of references being privatized.  */
4877       if ((flags & GOVD_SHARED) == 0)
4878         {
4879           t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
4880           if (TREE_CODE (t) != INTEGER_CST)
4881             omp_notice_variable (ctx, t, true);
4882         }
4883     }
4884
4885   splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
4886 }
4887
4888 /* Record the fact that DECL was used within the OpenMP context CTX.
4889    IN_CODE is true when real code uses DECL, and false when we should
4890    merely emit default(none) errors.  Return true if DECL is going to
4891    be remapped and thus DECL shouldn't be gimplified into its
4892    DECL_VALUE_EXPR (if any).  */
4893
4894 static bool
4895 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
4896 {
4897   splay_tree_node n;
4898   unsigned flags = in_code ? GOVD_SEEN : 0;
4899   bool ret = false, shared;
4900
4901   if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4902     return false;
4903
4904   /* Threadprivate variables are predetermined.  */
4905   if (is_global_var (decl))
4906     {
4907       if (DECL_THREAD_LOCAL_P (decl))
4908         return false;
4909
4910       if (DECL_HAS_VALUE_EXPR_P (decl))
4911         {
4912           tree value = get_base_address (DECL_VALUE_EXPR (decl));
4913
4914           if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
4915             return false;
4916         }
4917     }
4918
4919   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4920   if (n == NULL)
4921     {
4922       enum omp_clause_default_kind default_kind, kind;
4923       struct gimplify_omp_ctx *octx;
4924
4925       if (ctx->region_type == ORT_WORKSHARE)
4926         goto do_outer;
4927
4928       /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
4929          remapped firstprivate instead of shared.  To some extent this is
4930          addressed in omp_firstprivatize_type_sizes, but not effectively.  */
4931       default_kind = ctx->default_kind;
4932       kind = lang_hooks.decls.omp_predetermined_sharing (decl);
4933       if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
4934         default_kind = kind;
4935
4936       switch (default_kind)
4937         {
4938         case OMP_CLAUSE_DEFAULT_NONE:
4939           error ("%qs not specified in enclosing parallel",
4940                  IDENTIFIER_POINTER (DECL_NAME (decl)));
4941           error ("%Henclosing parallel", &ctx->location);
4942           /* FALLTHRU */
4943         case OMP_CLAUSE_DEFAULT_SHARED:
4944           flags |= GOVD_SHARED;
4945           break;
4946         case OMP_CLAUSE_DEFAULT_PRIVATE:
4947           flags |= GOVD_PRIVATE;
4948           break;
4949         case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
4950           flags |= GOVD_FIRSTPRIVATE;
4951           break;
4952         case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
4953           /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED.  */
4954           gcc_assert (ctx->region_type == ORT_TASK);
4955           if (ctx->outer_context)
4956             omp_notice_variable (ctx->outer_context, decl, in_code);
4957           for (octx = ctx->outer_context; octx; octx = octx->outer_context)
4958             {
4959               splay_tree_node n2;
4960
4961               n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
4962               if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
4963                 {
4964                   flags |= GOVD_FIRSTPRIVATE;
4965                   break;
4966                 }
4967               if ((octx->region_type & ORT_PARALLEL) != 0)
4968                 break;
4969             }
4970           if (flags & GOVD_FIRSTPRIVATE)
4971             break;
4972           if (octx == NULL
4973               && (TREE_CODE (decl) == PARM_DECL
4974                   || (!is_global_var (decl)
4975                       && DECL_CONTEXT (decl) == current_function_decl)))
4976             {
4977               flags |= GOVD_FIRSTPRIVATE;
4978               break;
4979             }
4980           flags |= GOVD_SHARED;
4981           break;
4982         default:
4983           gcc_unreachable ();
4984         }
4985
4986       if ((flags & GOVD_PRIVATE)
4987           && lang_hooks.decls.omp_private_outer_ref (decl))
4988         flags |= GOVD_PRIVATE_OUTER_REF;
4989
4990       omp_add_variable (ctx, decl, flags);
4991
4992       shared = (flags & GOVD_SHARED) != 0;
4993       ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4994       goto do_outer;
4995     }
4996
4997   shared = ((flags | n->value) & GOVD_SHARED) != 0;
4998   ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4999
5000   /* If nothing changed, there's nothing left to do.  */
5001   if ((n->value & flags) == flags)
5002     return ret;
5003   flags |= n->value;
5004   n->value = flags;
5005
5006  do_outer:
5007   /* If the variable is private in the current context, then we don't
5008      need to propagate anything to an outer context.  */
5009   if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
5010     return ret;
5011   if (ctx->outer_context
5012       && omp_notice_variable (ctx->outer_context, decl, in_code))
5013     return true;
5014   return ret;
5015 }
5016
5017 /* Verify that DECL is private within CTX.  If there's specific information
5018    to the contrary in the innermost scope, generate an error.  */
5019
5020 static bool
5021 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
5022 {
5023   splay_tree_node n;
5024
5025   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5026   if (n != NULL)
5027     {
5028       if (n->value & GOVD_SHARED)
5029         {
5030           if (ctx == gimplify_omp_ctxp)
5031             {
5032               error ("iteration variable %qs should be private",
5033                      IDENTIFIER_POINTER (DECL_NAME (decl)));
5034               n->value = GOVD_PRIVATE;
5035               return true;
5036             }
5037           else
5038             return false;
5039         }
5040       else if ((n->value & GOVD_EXPLICIT) != 0
5041                && (ctx == gimplify_omp_ctxp
5042                    || (ctx->region_type == ORT_COMBINED_PARALLEL
5043                        && gimplify_omp_ctxp->outer_context == ctx)))
5044         {
5045           if ((n->value & GOVD_FIRSTPRIVATE) != 0)
5046             error ("iteration variable %qs should not be firstprivate",
5047                    IDENTIFIER_POINTER (DECL_NAME (decl)));
5048           else if ((n->value & GOVD_REDUCTION) != 0)
5049             error ("iteration variable %qs should not be reduction",
5050                    IDENTIFIER_POINTER (DECL_NAME (decl)));
5051         }
5052       return true;
5053     }
5054
5055   if (ctx->region_type != ORT_WORKSHARE)
5056     return false;
5057   else if (ctx->outer_context)
5058     return omp_is_private (ctx->outer_context, decl);
5059   else
5060     return !is_global_var (decl);
5061 }
5062
5063 /* Return true if DECL is private within a parallel region
5064    that binds to the current construct's context or in parallel
5065    region's REDUCTION clause.  */
5066
5067 static bool
5068 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
5069 {
5070   splay_tree_node n;
5071
5072   do
5073     {
5074       ctx = ctx->outer_context;
5075       if (ctx == NULL)
5076         return !(is_global_var (decl)
5077                  /* References might be private, but might be shared too.  */
5078                  || lang_hooks.decls.omp_privatize_by_reference (decl));
5079
5080       n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5081       if (n != NULL)
5082         return (n->value & GOVD_SHARED) == 0;
5083     }
5084   while (ctx->region_type == ORT_WORKSHARE);
5085   return false;
5086 }
5087
5088 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
5089    and previous omp contexts.  */
5090
5091 static void
5092 gimplify_scan_omp_clauses (tree *list_p, tree *pre_p,
5093                            enum omp_region_type region_type)
5094 {
5095   struct gimplify_omp_ctx *ctx, *outer_ctx;
5096   tree c;
5097
5098   ctx = new_omp_context (region_type);
5099   outer_ctx = ctx->outer_context;
5100
5101   while ((c = *list_p) != NULL)
5102     {
5103       enum gimplify_status gs;
5104       bool remove = false;
5105       bool notice_outer = true;
5106       const char *check_non_private = NULL;
5107       unsigned int flags;
5108       tree decl;
5109
5110       switch (OMP_CLAUSE_CODE (c))
5111         {
5112         case OMP_CLAUSE_PRIVATE:
5113           flags = GOVD_PRIVATE | GOVD_EXPLICIT;
5114           if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
5115             {
5116               flags |= GOVD_PRIVATE_OUTER_REF;
5117               OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
5118             }
5119           else
5120             notice_outer = false;
5121           goto do_add;
5122         case OMP_CLAUSE_SHARED:
5123           flags = GOVD_SHARED | GOVD_EXPLICIT;
5124           goto do_add;
5125         case OMP_CLAUSE_FIRSTPRIVATE:
5126           flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
5127           check_non_private = "firstprivate";
5128           goto do_add;
5129         case OMP_CLAUSE_LASTPRIVATE:
5130           flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
5131           check_non_private = "lastprivate";
5132           goto do_add;
5133         case OMP_CLAUSE_REDUCTION:
5134           flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
5135           check_non_private = "reduction";
5136           goto do_add;
5137
5138         do_add:
5139           decl = OMP_CLAUSE_DECL (c);
5140           if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
5141             {
5142               remove = true;
5143               break;
5144             }
5145           omp_add_variable (ctx, decl, flags);
5146           if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5147               && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5148             {
5149               omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
5150                                 GOVD_LOCAL | GOVD_SEEN);
5151               gimplify_omp_ctxp = ctx;
5152               push_gimplify_context ();
5153               gimplify_stmt (&OMP_CLAUSE_REDUCTION_INIT (c));
5154               pop_gimplify_context (OMP_CLAUSE_REDUCTION_INIT (c));
5155               push_gimplify_context ();
5156               gimplify_stmt (&OMP_CLAUSE_REDUCTION_MERGE (c));
5157               pop_gimplify_context (OMP_CLAUSE_REDUCTION_MERGE (c));
5158               gimplify_omp_ctxp = outer_ctx;
5159             }
5160           else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5161                    && OMP_CLAUSE_LASTPRIVATE_STMT (c))
5162             {
5163               gimplify_omp_ctxp = ctx;
5164               push_gimplify_context ();
5165               if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
5166                 {
5167                   tree bind = build3 (BIND_EXPR, void_type_node, NULL,
5168                                       NULL, NULL);
5169                   TREE_SIDE_EFFECTS (bind) = 1;
5170                   BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
5171                   OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
5172                 }
5173               gimplify_stmt (&OMP_CLAUSE_LASTPRIVATE_STMT (c));
5174               pop_gimplify_context (OMP_CLAUSE_LASTPRIVATE_STMT (c));
5175               gimplify_omp_ctxp = outer_ctx;
5176             }
5177           if (notice_outer)
5178             goto do_notice;
5179           break;
5180
5181         case OMP_CLAUSE_COPYIN:
5182         case OMP_CLAUSE_COPYPRIVATE:
5183           decl = OMP_CLAUSE_DECL (c);
5184           if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
5185             {
5186               remove = true;
5187               break;
5188             }
5189         do_notice:
5190           if (outer_ctx)
5191             omp_notice_variable (outer_ctx, decl, true);
5192           if (check_non_private
5193               && region_type == ORT_WORKSHARE
5194               && omp_check_private (ctx, decl))
5195             {
5196               error ("%s variable %qs is private in outer context",
5197                      check_non_private, IDENTIFIER_POINTER (DECL_NAME (decl)));
5198               remove = true;
5199             }
5200           break;
5201
5202         case OMP_CLAUSE_IF:
5203           OMP_CLAUSE_OPERAND (c, 0)
5204             = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
5205           /* Fall through.  */
5206
5207         case OMP_CLAUSE_SCHEDULE:
5208         case OMP_CLAUSE_NUM_THREADS:
5209           gs = gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
5210                               is_gimple_val, fb_rvalue);
5211           if (gs == GS_ERROR)
5212             remove = true;
5213           break;
5214
5215         case OMP_CLAUSE_NOWAIT:
5216         case OMP_CLAUSE_ORDERED:
5217         case OMP_CLAUSE_UNTIED:
5218         case OMP_CLAUSE_COLLAPSE:
5219           break;
5220
5221         case OMP_CLAUSE_DEFAULT:
5222           ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
5223           break;
5224
5225         default:
5226           gcc_unreachable ();
5227         }
5228
5229       if (remove)
5230         *list_p = OMP_CLAUSE_CHAIN (c);
5231       else
5232         list_p = &OMP_CLAUSE_CHAIN (c);
5233     }
5234
5235   gimplify_omp_ctxp = ctx;
5236 }
5237
5238 /* For all variables that were not actually used within the context,
5239    remove PRIVATE, SHARED, and FIRSTPRIVATE clauses.  */
5240
5241 static int
5242 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
5243 {
5244   tree *list_p = (tree *) data;
5245   tree decl = (tree) n->key;
5246   unsigned flags = n->value;
5247   enum omp_clause_code code;
5248   tree clause;
5249   bool private_debug;
5250
5251   if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
5252     return 0;
5253   if ((flags & GOVD_SEEN) == 0)
5254     return 0;
5255   if (flags & GOVD_DEBUG_PRIVATE)
5256     {
5257       gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
5258       private_debug = true;
5259     }
5260   else
5261     private_debug
5262       = lang_hooks.decls.omp_private_debug_clause (decl,
5263                                                    !!(flags & GOVD_SHARED));
5264   if (private_debug)
5265     code = OMP_CLAUSE_PRIVATE;
5266   else if (flags & GOVD_SHARED)
5267     {
5268       if (is_global_var (decl))
5269         {
5270           struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
5271           while (ctx != NULL)
5272             {
5273               splay_tree_node on
5274                 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5275               if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
5276                                       | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
5277                 break;
5278               ctx = ctx->outer_context;
5279             }
5280           if (ctx == NULL)
5281             return 0;
5282         }
5283       code = OMP_CLAUSE_SHARED;
5284     }
5285   else if (flags & GOVD_PRIVATE)
5286     code = OMP_CLAUSE_PRIVATE;
5287   else if (flags & GOVD_FIRSTPRIVATE)
5288     code = OMP_CLAUSE_FIRSTPRIVATE;
5289   else
5290     gcc_unreachable ();
5291
5292   clause = build_omp_clause (code);
5293   OMP_CLAUSE_DECL (clause) = decl;
5294   OMP_CLAUSE_CHAIN (clause) = *list_p;
5295   if (private_debug)
5296     OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
5297   else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
5298     OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
5299   *list_p = clause;
5300   lang_hooks.decls.omp_finish_clause (clause);
5301
5302   return 0;
5303 }
5304
5305 static void
5306 gimplify_adjust_omp_clauses (tree *list_p)
5307 {
5308   struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
5309   tree c, decl;
5310
5311   while ((c = *list_p) != NULL)
5312     {
5313       splay_tree_node n;
5314       bool remove = false;
5315
5316       switch (OMP_CLAUSE_CODE (c))
5317         {
5318         case OMP_CLAUSE_PRIVATE:
5319         case OMP_CLAUSE_SHARED:
5320         case OMP_CLAUSE_FIRSTPRIVATE:
5321           decl = OMP_CLAUSE_DECL (c);
5322           n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5323           remove = !(n->value & GOVD_SEEN);
5324           if (! remove)
5325             {
5326               bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
5327               if ((n->value & GOVD_DEBUG_PRIVATE)
5328                   || lang_hooks.decls.omp_private_debug_clause (decl, shared))
5329                 {
5330                   gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
5331                               || ((n->value & GOVD_DATA_SHARE_CLASS)
5332                                   == GOVD_PRIVATE));
5333                   OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
5334                   OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
5335                 }
5336             }
5337           break;
5338
5339         case OMP_CLAUSE_LASTPRIVATE:
5340           /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
5341              accurately reflect the presence of a FIRSTPRIVATE clause.  */
5342           decl = OMP_CLAUSE_DECL (c);
5343           n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5344           OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
5345             = (n->value & GOVD_FIRSTPRIVATE) != 0;
5346           break;
5347           
5348         case OMP_CLAUSE_REDUCTION:
5349         case OMP_CLAUSE_COPYIN:
5350         case OMP_CLAUSE_COPYPRIVATE:
5351         case OMP_CLAUSE_IF:
5352         case OMP_CLAUSE_NUM_THREADS:
5353         case OMP_CLAUSE_SCHEDULE:
5354         case OMP_CLAUSE_NOWAIT:
5355         case OMP_CLAUSE_ORDERED:
5356         case OMP_CLAUSE_DEFAULT:
5357         case OMP_CLAUSE_UNTIED:
5358         case OMP_CLAUSE_COLLAPSE:
5359           break;
5360
5361         default:
5362           gcc_unreachable ();
5363         }
5364
5365       if (remove)
5366         *list_p = OMP_CLAUSE_CHAIN (c);
5367       else
5368         list_p = &OMP_CLAUSE_CHAIN (c);
5369     }
5370
5371   /* Add in any implicit data sharing.  */
5372   splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
5373   
5374   gimplify_omp_ctxp = ctx->outer_context;
5375   delete_omp_context (ctx);
5376 }
5377
5378 /* Gimplify the contents of an OMP_PARALLEL statement.  This involves
5379    gimplification of the body, as well as scanning the body for used
5380    variables.  We need to do this scan now, because variable-sized
5381    decls will be decomposed during gimplification.  */
5382
5383 static enum gimplify_status
5384 gimplify_omp_parallel (tree *expr_p, tree *pre_p)
5385 {
5386   tree expr = *expr_p;
5387
5388   gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
5389                              OMP_PARALLEL_COMBINED (expr)
5390                              ? ORT_COMBINED_PARALLEL
5391                              : ORT_PARALLEL);
5392
5393   push_gimplify_context ();
5394
5395   gimplify_stmt (&OMP_PARALLEL_BODY (expr));
5396
5397   if (TREE_CODE (OMP_PARALLEL_BODY (expr)) == BIND_EXPR)
5398     pop_gimplify_context (OMP_PARALLEL_BODY (expr));
5399   else
5400     pop_gimplify_context (NULL_TREE);
5401
5402   gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
5403
5404   return GS_ALL_DONE;
5405 }
5406
5407 /* Gimplify the contents of an OMP_TASK statement.  This involves
5408    gimplification of the body, as well as scanning the body for used
5409    variables.  We need to do this scan now, because variable-sized
5410    decls will be decomposed during gimplification.  */
5411
5412 static enum gimplify_status
5413 gimplify_omp_task (tree *expr_p, tree *pre_p)
5414 {
5415   tree expr = *expr_p;
5416
5417   gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p, ORT_TASK);
5418
5419   push_gimplify_context ();
5420
5421   gimplify_stmt (&OMP_TASK_BODY (expr));
5422
5423   if (TREE_CODE (OMP_TASK_BODY (expr)) == BIND_EXPR)
5424     pop_gimplify_context (OMP_TASK_BODY (expr));
5425   else
5426     pop_gimplify_context (NULL_TREE);
5427
5428   gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
5429
5430   return GS_ALL_DONE;
5431 }
5432
5433 /* Gimplify the gross structure of an OMP_FOR statement.  */
5434
5435 static enum gimplify_status
5436 gimplify_omp_for (tree *expr_p, tree *pre_p)
5437 {
5438   tree for_stmt, decl, var, t, bodylist;
5439   enum gimplify_status ret = GS_OK;
5440   tree body, init_decl = NULL_TREE;
5441   int i;
5442
5443   for_stmt = *expr_p;
5444
5445   gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
5446                              ORT_WORKSHARE);
5447
5448   /* If OMP_FOR is re-gimplified, ensure all variables in pre-body
5449      are noticed.  */
5450   gimplify_stmt (&OMP_FOR_PRE_BODY (for_stmt));
5451
5452   bodylist = alloc_stmt_list ();
5453
5454   gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
5455               == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
5456   gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
5457               == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
5458   for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
5459     {
5460       t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
5461       gcc_assert (TREE_CODE (t) == MODIFY_EXPR
5462                   || TREE_CODE (t) == GIMPLE_MODIFY_STMT);
5463       decl = GENERIC_TREE_OPERAND (t, 0);
5464       gcc_assert (DECL_P (decl));
5465       gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
5466                   || POINTER_TYPE_P (TREE_TYPE (decl)));
5467
5468       /* Make sure the iteration variable is private.  */
5469       if (omp_is_private (gimplify_omp_ctxp, decl))
5470         omp_notice_variable (gimplify_omp_ctxp, decl, true);
5471       else
5472         omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
5473
5474       /* If DECL is not a gimple register, create a temporary variable to act
5475          as an iteration counter.  This is valid, since DECL cannot be
5476          modified in the body of the loop.  */
5477       if (!is_gimple_reg (decl))
5478         {
5479           var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
5480           GENERIC_TREE_OPERAND (t, 0) = var;
5481
5482           init_decl = build_gimple_modify_stmt (decl, var);
5483           omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
5484         }
5485       else
5486         var = decl;
5487
5488       ret |= gimplify_expr (&GENERIC_TREE_OPERAND (t, 1),
5489                             &OMP_FOR_PRE_BODY (for_stmt),
5490                             NULL, is_gimple_val, fb_rvalue);
5491
5492       tree_to_gimple_tuple (&TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i));
5493
5494       t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
5495       gcc_assert (COMPARISON_CLASS_P (t));
5496       gcc_assert (GENERIC_TREE_OPERAND (t, 0) == decl);
5497       TREE_OPERAND (t, 0) = var;
5498
5499       ret |= gimplify_expr (&GENERIC_TREE_OPERAND (t, 1),
5500                             &OMP_FOR_PRE_BODY (for_stmt),
5501                             NULL, is_gimple_val, fb_rvalue);
5502
5503       tree_to_gimple_tuple (&TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i));
5504       t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
5505       switch (TREE_CODE (t))
5506         {
5507         case PREINCREMENT_EXPR:
5508         case POSTINCREMENT_EXPR:
5509           t = build_int_cst (TREE_TYPE (decl), 1);
5510           t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
5511           t = build_gimple_modify_stmt (var, t);
5512           TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
5513           break;
5514
5515         case PREDECREMENT_EXPR:
5516         case POSTDECREMENT_EXPR:
5517           t = build_int_cst (TREE_TYPE (decl), -1);
5518           t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
5519           t = build_gimple_modify_stmt (var, t);
5520           TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
5521           break;
5522
5523         case GIMPLE_MODIFY_STMT:
5524           gcc_assert (GIMPLE_STMT_OPERAND (t, 0) == decl);
5525           GIMPLE_STMT_OPERAND (t, 0) = var;
5526
5527           t = GIMPLE_STMT_OPERAND (t, 1);
5528           switch (TREE_CODE (t))
5529             {
5530             case PLUS_EXPR:
5531               if (TREE_OPERAND (t, 1) == decl)
5532                 {
5533                   TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
5534                   TREE_OPERAND (t, 0) = var;
5535                   break;
5536                 }
5537
5538               /* Fallthru.  */
5539             case MINUS_EXPR:
5540             case POINTER_PLUS_EXPR:
5541               gcc_assert (TREE_OPERAND (t, 0) == decl);
5542               TREE_OPERAND (t, 0) = var;
5543               break;
5544             default:
5545               gcc_unreachable ();
5546             }
5547
5548           ret |= gimplify_expr (&TREE_OPERAND (t, 1),
5549                                 &OMP_FOR_PRE_BODY (for_stmt),
5550                                 NULL, is_gimple_val, fb_rvalue);
5551           break;
5552
5553         default:
5554           gcc_unreachable ();
5555         }
5556
5557       if (init_decl)
5558         append_to_statement_list (init_decl, &bodylist);
5559
5560       if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
5561         {
5562           tree c;
5563           for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
5564           if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5565               && OMP_CLAUSE_DECL (c) == decl
5566               && OMP_CLAUSE_LASTPRIVATE_STMT (c) == NULL)
5567             {
5568               t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
5569               gcc_assert (TREE_CODE (t) == GIMPLE_MODIFY_STMT);
5570               gcc_assert (GIMPLE_STMT_OPERAND (t, 0) == var);
5571               t = GIMPLE_STMT_OPERAND (t, 1);
5572               gcc_assert (TREE_CODE (t) == PLUS_EXPR
5573                           || TREE_CODE (t) == MINUS_EXPR
5574                           || TREE_CODE (t) == POINTER_PLUS_EXPR);
5575               gcc_assert (TREE_OPERAND (t, 0) == var);
5576               t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
5577                           TREE_OPERAND (t, 1));
5578               OMP_CLAUSE_LASTPRIVATE_STMT (c)
5579                 = build_gimple_modify_stmt (decl, t);
5580             }
5581         }
5582     }
5583
5584   body = OMP_FOR_BODY (for_stmt);
5585   gimplify_to_stmt_list (&body);
5586   append_to_statement_list (body, &bodylist);
5587   OMP_FOR_BODY (for_stmt) = bodylist;
5588   gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
5589
5590   return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
5591 }
5592
5593 /* Gimplify the gross structure of other OpenMP worksharing constructs.
5594    In particular, OMP_SECTIONS and OMP_SINGLE.  */
5595
5596 static enum gimplify_status
5597 gimplify_omp_workshare (tree *expr_p, tree *pre_p)
5598 {
5599   tree stmt = *expr_p;
5600
5601   gimplify_scan_omp_clauses (&OMP_CLAUSES (stmt), pre_p, ORT_WORKSHARE);
5602   gimplify_to_stmt_list (&OMP_BODY (stmt));
5603   gimplify_adjust_omp_clauses (&OMP_CLAUSES (stmt));
5604
5605   return GS_ALL_DONE;
5606 }
5607
5608 /* A subroutine of gimplify_omp_atomic.  The front end is supposed to have
5609    stabilized the lhs of the atomic operation as *ADDR.  Return true if 
5610    EXPR is this stabilized form.  */
5611
5612 static bool
5613 goa_lhs_expr_p (tree expr, tree addr)
5614 {
5615   /* Also include casts to other type variants.  The C front end is fond
5616      of adding these for e.g. volatile variables.  This is like 
5617      STRIP_TYPE_NOPS but includes the main variant lookup.  */
5618   while ((CONVERT_EXPR_P (expr)
5619           || TREE_CODE (expr) == NON_LVALUE_EXPR)
5620          && TREE_OPERAND (expr, 0) != error_mark_node
5621          && (TYPE_MAIN_VARIANT (TREE_TYPE (expr))
5622              == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (expr, 0)))))
5623     expr = TREE_OPERAND (expr, 0);
5624
5625   if (TREE_CODE (expr) == INDIRECT_REF)
5626     {
5627       expr = TREE_OPERAND (expr, 0);
5628       while (expr != addr
5629              && (CONVERT_EXPR_P (expr)
5630                  || TREE_CODE (expr) == NON_LVALUE_EXPR)
5631              && TREE_CODE (expr) == TREE_CODE (addr)
5632              && TYPE_MAIN_VARIANT (TREE_TYPE (expr))
5633                 == TYPE_MAIN_VARIANT (TREE_TYPE (addr)))
5634         {
5635           expr = TREE_OPERAND (expr, 0);
5636           addr = TREE_OPERAND (addr, 0);
5637         }
5638       if (expr == addr)
5639         return true;
5640       return (TREE_CODE (addr) == ADDR_EXPR
5641               && TREE_CODE (expr) == ADDR_EXPR
5642               && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
5643     }
5644   if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
5645     return true;
5646   return false;
5647 }
5648
5649 /* Walk *EXPR_P and replace
5650    appearances of *LHS_ADDR with LHS_VAR.  If an expression does not involve
5651    the lhs, evaluate it into a temporary.  Return 1 if the lhs appeared as
5652    a subexpression, 0 if it did not, or -1 if an error was encountered.  */
5653
5654 static int
5655 goa_stabilize_expr (tree *expr_p, tree *pre_p, tree lhs_addr, tree lhs_var)
5656 {
5657   tree expr = *expr_p;
5658   int saw_lhs;
5659
5660   if (goa_lhs_expr_p (expr, lhs_addr))
5661     {
5662       *expr_p = lhs_var;
5663       return 1;
5664     }
5665   if (is_gimple_val (expr))
5666     return 0;
5667  
5668   saw_lhs = 0;
5669   switch (TREE_CODE_CLASS (TREE_CODE (expr)))
5670     {
5671     case tcc_binary:
5672       saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
5673                                      lhs_addr, lhs_var);
5674     case tcc_unary:
5675       saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
5676                                      lhs_addr, lhs_var);
5677       break;
5678     default:
5679       break;
5680     }
5681
5682   if (saw_lhs == 0)
5683     {
5684       enum gimplify_status gs;
5685       gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
5686       if (gs != GS_ALL_DONE)
5687         saw_lhs = -1;
5688     }
5689
5690   return saw_lhs;
5691 }
5692
5693 /* Gimplify an OMP_ATOMIC statement.  */
5694
5695 static enum gimplify_status
5696 gimplify_omp_atomic (tree *expr_p, tree *pre_p)
5697 {
5698   tree addr = TREE_OPERAND (*expr_p, 0);
5699   tree rhs = TREE_OPERAND (*expr_p, 1);
5700   tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5701   tree tmp_load, load, store;
5702
5703    tmp_load = create_tmp_var (type, NULL);
5704    if (goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
5705      return GS_ERROR;
5706
5707    if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
5708        != GS_ALL_DONE)
5709      return GS_ERROR;
5710
5711    load = build2 (OMP_ATOMIC_LOAD, void_type_node, tmp_load, addr);
5712    append_to_statement_list (load, pre_p);
5713    if (gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
5714        != GS_ALL_DONE)
5715      return GS_ERROR;
5716    store = build1 (OMP_ATOMIC_STORE, void_type_node, rhs);
5717    *expr_p = store;
5718
5719    return GS_ALL_DONE;
5720
5721 }
5722
5723 /*  Gimplifies the expression tree pointed to by EXPR_P.  Return 0 if
5724     gimplification failed.
5725
5726     PRE_P points to the list where side effects that must happen before
5727         EXPR should be stored.
5728
5729     POST_P points to the list where side effects that must happen after
5730         EXPR should be stored, or NULL if there is no suitable list.  In
5731         that case, we copy the result to a temporary, emit the
5732         post-effects, and then return the temporary.
5733
5734     GIMPLE_TEST_F points to a function that takes a tree T and
5735         returns nonzero if T is in the GIMPLE form requested by the
5736         caller.  The GIMPLE predicates are in tree-gimple.c.
5737
5738         This test is used twice.  Before gimplification, the test is
5739         invoked to determine whether *EXPR_P is already gimple enough.  If
5740         that fails, *EXPR_P is gimplified according to its code and
5741         GIMPLE_TEST_F is called again.  If the test still fails, then a new
5742         temporary variable is created and assigned the value of the
5743         gimplified expression.
5744
5745     FALLBACK tells the function what sort of a temporary we want.  If the 1
5746         bit is set, an rvalue is OK.  If the 2 bit is set, an lvalue is OK.
5747         If both are set, either is OK, but an lvalue is preferable.
5748
5749     The return value is either GS_ERROR or GS_ALL_DONE, since this function
5750     iterates until solution.  */
5751
5752 enum gimplify_status
5753 gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
5754                bool (* gimple_test_f) (tree), fallback_t fallback)
5755 {
5756   tree tmp;
5757   tree internal_pre = NULL_TREE;
5758   tree internal_post = NULL_TREE;
5759   tree save_expr;
5760   int is_statement = (pre_p == NULL);
5761   location_t saved_location;
5762   enum gimplify_status ret;
5763
5764   save_expr = *expr_p;
5765   if (save_expr == NULL_TREE)
5766     return GS_ALL_DONE;
5767
5768   /* We used to check the predicate here and return immediately if it
5769      succeeds.  This is wrong; the design is for gimplification to be
5770      idempotent, and for the predicates to only test for valid forms, not
5771      whether they are fully simplified.  */
5772
5773   /* Set up our internal queues if needed.  */
5774   if (pre_p == NULL)
5775     pre_p = &internal_pre;
5776   if (post_p == NULL)
5777     post_p = &internal_post;
5778
5779   saved_location = input_location;
5780   if (save_expr != error_mark_node
5781       && EXPR_HAS_LOCATION (*expr_p))
5782     input_location = EXPR_LOCATION (*expr_p);
5783
5784   /* Loop over the specific gimplifiers until the toplevel node
5785      remains the same.  */
5786   do
5787     {
5788       /* Strip away as many useless type conversions as possible
5789          at the toplevel.  */
5790       STRIP_USELESS_TYPE_CONVERSION (*expr_p);
5791
5792       /* Remember the expr.  */
5793       save_expr = *expr_p;
5794
5795       /* Die, die, die, my darling.  */
5796       if (save_expr == error_mark_node
5797           || (!GIMPLE_STMT_P (save_expr)
5798               && TREE_TYPE (save_expr)
5799               && TREE_TYPE (save_expr) == error_mark_node))
5800         {
5801           ret = GS_ERROR;
5802           break;
5803         }
5804
5805       /* Do any language-specific gimplification.  */
5806       ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
5807       if (ret == GS_OK)
5808         {
5809           if (*expr_p == NULL_TREE)
5810             break;
5811           if (*expr_p != save_expr)
5812             continue;
5813         }
5814       else if (ret != GS_UNHANDLED)
5815         break;
5816
5817       ret = GS_OK;
5818       switch (TREE_CODE (*expr_p))
5819         {
5820           /* First deal with the special cases.  */
5821
5822         case POSTINCREMENT_EXPR:
5823         case POSTDECREMENT_EXPR:
5824         case PREINCREMENT_EXPR:
5825         case PREDECREMENT_EXPR:
5826           ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
5827                                         fallback != fb_none);
5828           break;
5829
5830         case ARRAY_REF:
5831         case ARRAY_RANGE_REF:
5832         case REALPART_EXPR:
5833         case IMAGPART_EXPR:
5834         case COMPONENT_REF:
5835         case VIEW_CONVERT_EXPR:
5836           ret = gimplify_compound_lval (expr_p, pre_p, post_p,
5837                                         fallback ? fallback : fb_rvalue);
5838           break;
5839
5840         case COND_EXPR:
5841           ret = gimplify_cond_expr (expr_p, pre_p, fallback);
5842           /* C99 code may assign to an array in a structure value of a
5843              conditional expression, and this has undefined behavior
5844              only on execution, so create a temporary if an lvalue is
5845              required.  */
5846           if (fallback == fb_lvalue)
5847             {
5848               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5849               mark_addressable (*expr_p);
5850             }
5851           break;
5852
5853         case CALL_EXPR:
5854           ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
5855           /* C99 code may assign to an array in a structure returned
5856              from a function, and this has undefined behavior only on
5857              execution, so create a temporary if an lvalue is
5858              required.  */
5859           if (fallback == fb_lvalue)
5860             {
5861               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5862               mark_addressable (*expr_p);
5863             }
5864           break;
5865
5866         case TREE_LIST:
5867           gcc_unreachable ();
5868
5869         case COMPOUND_EXPR:
5870           ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
5871           break;
5872
5873         case MODIFY_EXPR:
5874         case GIMPLE_MODIFY_STMT:
5875         case INIT_EXPR:
5876           ret = gimplify_modify_expr (expr_p, pre_p, post_p,
5877                                       fallback != fb_none);
5878
5879           if (*expr_p)
5880             {
5881               /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer
5882                  useful.  */
5883               if (TREE_CODE (*expr_p) == INIT_EXPR)
5884                 TREE_SET_CODE (*expr_p, MODIFY_EXPR);
5885
5886               /* Convert MODIFY_EXPR to GIMPLE_MODIFY_STMT.  */
5887               if (TREE_CODE (*expr_p) == MODIFY_EXPR)
5888                 tree_to_gimple_tuple (expr_p);
5889             }
5890
5891           break;
5892
5893         case TRUTH_ANDIF_EXPR:
5894         case TRUTH_ORIF_EXPR:
5895           ret = gimplify_boolean_expr (expr_p);
5896           break;
5897
5898         case TRUTH_NOT_EXPR:
5899           if (TREE_CODE (TREE_TYPE (*expr_p)) != BOOLEAN_TYPE)
5900             {
5901               tree type = TREE_TYPE (*expr_p);
5902               *expr_p = fold_convert (type, gimple_boolify (*expr_p));
5903               ret = GS_OK;
5904               break;
5905             }
5906
5907           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5908                                is_gimple_val, fb_rvalue);
5909           recalculate_side_effects (*expr_p);
5910           break;
5911
5912         case ADDR_EXPR:
5913           ret = gimplify_addr_expr (expr_p, pre_p, post_p);
5914           break;
5915
5916         case VA_ARG_EXPR:
5917           ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
5918           break;
5919
5920         CASE_CONVERT:
5921           if (IS_EMPTY_STMT (*expr_p))
5922             {
5923               ret = GS_ALL_DONE;
5924               break;
5925             }
5926
5927           if (VOID_TYPE_P (TREE_TYPE (*expr_p))
5928               || fallback == fb_none)
5929             {
5930               /* Just strip a conversion to void (or in void context) and
5931                  try again.  */
5932               *expr_p = TREE_OPERAND (*expr_p, 0);
5933               break;
5934             }
5935
5936           ret = gimplify_conversion (expr_p);
5937           if (ret == GS_ERROR)
5938             break;
5939           if (*expr_p != save_expr)
5940             break;
5941           /* FALLTHRU */
5942
5943         case FIX_TRUNC_EXPR:
5944           /* unary_expr: ... | '(' cast ')' val | ...  */
5945           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5946                                is_gimple_val, fb_rvalue);
5947           recalculate_side_effects (*expr_p);
5948           break;
5949
5950         case INDIRECT_REF:
5951           *expr_p = fold_indirect_ref (*expr_p);
5952           if (*expr_p != save_expr)
5953             break;
5954           /* else fall through.  */
5955         case ALIGN_INDIRECT_REF:
5956         case MISALIGNED_INDIRECT_REF:
5957           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5958                                is_gimple_reg, fb_rvalue);
5959           recalculate_side_effects (*expr_p);
5960           break;
5961
5962           /* Constants need not be gimplified.  */
5963         case INTEGER_CST:
5964         case REAL_CST:
5965         case FIXED_CST:
5966         case STRING_CST:
5967         case COMPLEX_CST:
5968         case VECTOR_CST:
5969           ret = GS_ALL_DONE;
5970           break;
5971
5972         case CONST_DECL:
5973           /* If we require an lvalue, such as for ADDR_EXPR, retain the
5974              CONST_DECL node.  Otherwise the decl is replaceable by its
5975              value.  */
5976           /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either.  */
5977           if (fallback & fb_lvalue)
5978             ret = GS_ALL_DONE;
5979           else
5980             *expr_p = DECL_INITIAL (*expr_p);
5981           break;
5982
5983         case DECL_EXPR:
5984           ret = gimplify_decl_expr (expr_p);
5985           break;
5986
5987         case EXC_PTR_EXPR:
5988           /* FIXME make this a decl.  */
5989           ret = GS_ALL_DONE;
5990           break;
5991
5992         case BIND_EXPR:
5993           ret = gimplify_bind_expr (expr_p, pre_p);
5994           break;
5995
5996         case LOOP_EXPR:
5997           ret = gimplify_loop_expr (expr_p, pre_p);
5998           break;
5999
6000         case SWITCH_EXPR:
6001           ret = gimplify_switch_expr (expr_p, pre_p);
6002           break;
6003
6004         case EXIT_EXPR:
6005           ret = gimplify_exit_expr (expr_p);
6006           break;
6007
6008         case GOTO_EXPR:
6009           /* If the target is not LABEL, then it is a computed jump
6010              and the target needs to be gimplified.  */
6011           if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
6012             ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
6013                                  NULL, is_gimple_val, fb_rvalue);
6014           break;
6015
6016           /* Predictions are always gimplified.  */
6017         case PREDICT_EXPR:
6018           goto out;
6019
6020         case LABEL_EXPR:
6021           ret = GS_ALL_DONE;
6022           gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
6023                       == current_function_decl);
6024           break;
6025
6026         case CASE_LABEL_EXPR:
6027           ret = gimplify_case_label_expr (expr_p);
6028           break;
6029
6030         case RETURN_EXPR:
6031           ret = gimplify_return_expr (*expr_p, pre_p);
6032           break;
6033
6034         case CONSTRUCTOR:
6035           /* Don't reduce this in place; let gimplify_init_constructor work its
6036              magic.  Buf if we're just elaborating this for side effects, just
6037              gimplify any element that has side-effects.  */
6038           if (fallback == fb_none)
6039             {
6040               unsigned HOST_WIDE_INT ix;
6041               constructor_elt *ce;
6042               tree temp = NULL_TREE;
6043               for (ix = 0;
6044                    VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (*expr_p),
6045                                 ix, ce);
6046                    ix++)
6047                 if (TREE_SIDE_EFFECTS (ce->value))
6048                   append_to_statement_list (ce->value, &temp);
6049
6050               *expr_p = temp;
6051               ret = GS_OK;
6052             }
6053           /* C99 code may assign to an array in a constructed
6054              structure or union, and this has undefined behavior only
6055              on execution, so create a temporary if an lvalue is
6056              required.  */
6057           else if (fallback == fb_lvalue)
6058             {
6059               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6060               mark_addressable (*expr_p);
6061             }
6062           else
6063             ret = GS_ALL_DONE;
6064           break;
6065
6066           /* The following are special cases that are not handled by the
6067              original GIMPLE grammar.  */
6068
6069           /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
6070              eliminated.  */
6071         case SAVE_EXPR:
6072           ret = gimplify_save_expr (expr_p, pre_p, post_p);
6073           break;
6074
6075         case BIT_FIELD_REF:
6076           {
6077             enum gimplify_status r0, r1, r2;
6078
6079             r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6080                                 is_gimple_lvalue, fb_either);
6081             r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
6082                                 is_gimple_val, fb_rvalue);
6083             r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
6084                                 is_gimple_val, fb_rvalue);
6085             recalculate_side_effects (*expr_p);
6086
6087             ret = MIN (r0, MIN (r1, r2));
6088           }
6089           break;
6090
6091         case NON_LVALUE_EXPR:
6092           /* This should have been stripped above.  */
6093           gcc_unreachable ();
6094
6095         case ASM_EXPR:
6096           ret = gimplify_asm_expr (expr_p, pre_p, post_p);
6097           break;
6098
6099         case TRY_FINALLY_EXPR:
6100         case TRY_CATCH_EXPR:
6101           gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
6102           gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
6103           ret = GS_ALL_DONE;
6104           break;
6105
6106         case CLEANUP_POINT_EXPR:
6107           ret = gimplify_cleanup_point_expr (expr_p, pre_p);
6108           break;
6109
6110         case TARGET_EXPR:
6111           ret = gimplify_target_expr (expr_p, pre_p, post_p);
6112           break;
6113
6114         case CATCH_EXPR:
6115           gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
6116           ret = GS_ALL_DONE;
6117           break;
6118
6119         case EH_FILTER_EXPR:
6120           gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
6121           ret = GS_ALL_DONE;
6122           break;
6123
6124         case CHANGE_DYNAMIC_TYPE_EXPR:
6125           ret = gimplify_expr (&CHANGE_DYNAMIC_TYPE_LOCATION (*expr_p),
6126                                pre_p, post_p, is_gimple_reg, fb_lvalue);
6127           break;
6128
6129         case OBJ_TYPE_REF:
6130           {
6131             enum gimplify_status r0, r1;
6132             r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
6133                                 is_gimple_val, fb_rvalue);
6134             r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
6135                                 is_gimple_val, fb_rvalue);
6136             ret = MIN (r0, r1);
6137           }
6138           break;
6139
6140         case LABEL_DECL:
6141           /* We get here when taking the address of a label.  We mark
6142              the label as "forced"; meaning it can never be removed and
6143              it is a potential target for any computed goto.  */
6144           FORCED_LABEL (*expr_p) = 1;
6145           ret = GS_ALL_DONE;
6146           break;
6147
6148         case STATEMENT_LIST:
6149           ret = gimplify_statement_list (expr_p, pre_p);
6150           break;
6151
6152         case WITH_SIZE_EXPR:
6153           {
6154             gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
6155                            post_p == &internal_post ? NULL : post_p,
6156                            gimple_test_f, fallback);
6157             gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
6158                            is_gimple_val, fb_rvalue);
6159           }
6160           break;
6161
6162         case VAR_DECL:
6163         case PARM_DECL:
6164           ret = gimplify_var_or_parm_decl (expr_p);
6165           break;
6166
6167         case RESULT_DECL:
6168           /* When within an OpenMP context, notice uses of variables.  */
6169           if (gimplify_omp_ctxp)
6170             omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
6171           ret = GS_ALL_DONE;
6172           break;
6173
6174         case SSA_NAME:
6175           /* Allow callbacks into the gimplifier during optimization.  */
6176           ret = GS_ALL_DONE;
6177           break;
6178
6179         case OMP_PARALLEL:
6180           ret = gimplify_omp_parallel (expr_p, pre_p);
6181           break;
6182
6183         case OMP_TASK:
6184           ret = gimplify_omp_task (expr_p, pre_p);
6185           break;
6186
6187         case OMP_FOR:
6188           ret = gimplify_omp_for (expr_p, pre_p);
6189           break;
6190
6191         case OMP_SECTIONS:
6192         case OMP_SINGLE:
6193           ret = gimplify_omp_workshare (expr_p, pre_p);
6194           break;
6195
6196         case OMP_SECTION:
6197         case OMP_MASTER:
6198         case OMP_ORDERED:
6199         case OMP_CRITICAL:
6200           gimplify_to_stmt_list (&OMP_BODY (*expr_p));
6201           break;
6202
6203         case OMP_ATOMIC:
6204           ret = gimplify_omp_atomic (expr_p, pre_p);
6205           break;
6206
6207         case OMP_RETURN:
6208         case OMP_CONTINUE:
6209         case OMP_ATOMIC_STORE:
6210         case OMP_SECTIONS_SWITCH:
6211           ret = GS_ALL_DONE;
6212           break;
6213
6214         case OMP_ATOMIC_LOAD:
6215           if (gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, NULL,
6216               is_gimple_val, fb_rvalue) != GS_ALL_DONE)
6217             ret = GS_ERROR;
6218           else
6219             ret = GS_ALL_DONE;
6220           break;
6221
6222         case POINTER_PLUS_EXPR:
6223           /* Convert ((type *)A)+offset into &A->field_of_type_and_offset.
6224              The second is gimple immediate saving a need for extra statement.
6225            */
6226           if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
6227               && (tmp = maybe_fold_offset_to_reference
6228                          (TREE_OPERAND (*expr_p, 0), TREE_OPERAND (*expr_p, 1),
6229                           TREE_TYPE (TREE_TYPE (*expr_p)))))
6230              {
6231                tree ptr_type = build_pointer_type (TREE_TYPE (tmp));
6232                if (useless_type_conversion_p (TREE_TYPE (*expr_p), ptr_type))
6233                  {
6234                    *expr_p = build_fold_addr_expr_with_type (tmp, ptr_type);
6235                    break;
6236                  }
6237              }
6238           /* Convert (void *)&a + 4 into (void *)&a[1].  */
6239           if (TREE_CODE (TREE_OPERAND (*expr_p, 0)) == NOP_EXPR
6240               && TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
6241               && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (*expr_p,
6242                                                                         0),0)))
6243               && (tmp = maybe_fold_offset_to_reference
6244                          (TREE_OPERAND (TREE_OPERAND (*expr_p, 0), 0),
6245                           TREE_OPERAND (*expr_p, 1),
6246                           TREE_TYPE (TREE_TYPE
6247                                   (TREE_OPERAND (TREE_OPERAND (*expr_p, 0),
6248                                                  0))))))
6249              {
6250                tmp = build_fold_addr_expr (tmp);
6251                *expr_p = fold_convert (TREE_TYPE (*expr_p), tmp);
6252                break;
6253              }
6254           /* FALLTHRU */
6255         default:
6256           switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
6257             {
6258             case tcc_comparison:
6259               /* Handle comparison of objects of non scalar mode aggregates
6260                  with a call to memcmp.  It would be nice to only have to do
6261                  this for variable-sized objects, but then we'd have to allow
6262                  the same nest of reference nodes we allow for MODIFY_EXPR and
6263                  that's too complex.
6264
6265                  Compare scalar mode aggregates as scalar mode values.  Using
6266                  memcmp for them would be very inefficient at best, and is
6267                  plain wrong if bitfields are involved.  */
6268
6269               {
6270                 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
6271
6272                 if (!AGGREGATE_TYPE_P (type))
6273                   goto expr_2;
6274                 else if (TYPE_MODE (type) != BLKmode)
6275                   ret = gimplify_scalar_mode_aggregate_compare (expr_p);
6276                 else
6277                   ret = gimplify_variable_sized_compare (expr_p);
6278
6279                 break;
6280                 }
6281
6282             /* If *EXPR_P does not need to be special-cased, handle it
6283                according to its class.  */
6284             case tcc_unary:
6285               ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
6286                                    post_p, is_gimple_val, fb_rvalue);
6287               break;
6288
6289             case tcc_binary:
6290             expr_2:
6291               {
6292                 enum gimplify_status r0, r1;
6293
6294                 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
6295                                     post_p, is_gimple_val, fb_rvalue);
6296                 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
6297                                     post_p, is_gimple_val, fb_rvalue);
6298
6299                 ret = MIN (r0, r1);
6300                 break;
6301               }
6302
6303             case tcc_declaration:
6304             case tcc_constant:
6305               ret = GS_ALL_DONE;
6306               goto dont_recalculate;
6307
6308             default:
6309               gcc_assert (TREE_CODE (*expr_p) == TRUTH_AND_EXPR
6310                           || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
6311                           || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR);
6312               goto expr_2;
6313             }
6314
6315           recalculate_side_effects (*expr_p);
6316         dont_recalculate:
6317           break;
6318         }
6319
6320       /* If we replaced *expr_p, gimplify again.  */
6321       if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
6322         ret = GS_ALL_DONE;
6323     }
6324   while (ret == GS_OK);
6325
6326   /* If we encountered an error_mark somewhere nested inside, either
6327      stub out the statement or propagate the error back out.  */
6328   if (ret == GS_ERROR)
6329     {
6330       if (is_statement)
6331         *expr_p = NULL;
6332       goto out;
6333     }
6334
6335   /* This was only valid as a return value from the langhook, which
6336      we handled.  Make sure it doesn't escape from any other context.  */
6337   gcc_assert (ret != GS_UNHANDLED);
6338
6339   if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
6340     {
6341       /* We aren't looking for a value, and we don't have a valid
6342          statement.  If it doesn't have side-effects, throw it away.  */
6343       if (!TREE_SIDE_EFFECTS (*expr_p))
6344         *expr_p = NULL;
6345       else if (!TREE_THIS_VOLATILE (*expr_p))
6346         {
6347           /* This is probably a _REF that contains something nested that
6348              has side effects.  Recurse through the operands to find it.  */
6349           enum tree_code code = TREE_CODE (*expr_p);
6350
6351           switch (code)
6352             {
6353             case COMPONENT_REF:
6354             case REALPART_EXPR:
6355             case IMAGPART_EXPR:
6356             case VIEW_CONVERT_EXPR:
6357               gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6358                              gimple_test_f, fallback);
6359               break;
6360
6361             case ARRAY_REF:
6362             case ARRAY_RANGE_REF:
6363               gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6364                              gimple_test_f, fallback);
6365               gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
6366                              gimple_test_f, fallback);
6367               break;
6368
6369             default:
6370                /* Anything else with side-effects must be converted to
6371                   a valid statement before we get here.  */
6372               gcc_unreachable ();
6373             }
6374
6375           *expr_p = NULL;
6376         }
6377       else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
6378                && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
6379         {
6380           /* Historically, the compiler has treated a bare reference
6381              to a non-BLKmode volatile lvalue as forcing a load.  */
6382           tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
6383           /* Normally, we do not want to create a temporary for a
6384              TREE_ADDRESSABLE type because such a type should not be
6385              copied by bitwise-assignment.  However, we make an
6386              exception here, as all we are doing here is ensuring that
6387              we read the bytes that make up the type.  We use
6388              create_tmp_var_raw because create_tmp_var will abort when
6389              given a TREE_ADDRESSABLE type.  */
6390           tree tmp = create_tmp_var_raw (type, "vol");
6391           gimple_add_tmp_var (tmp);
6392           *expr_p = build_gimple_modify_stmt (tmp, *expr_p);
6393         }
6394       else
6395         /* We can't do anything useful with a volatile reference to
6396            an incomplete type, so just throw it away.  Likewise for
6397            a BLKmode type, since any implicit inner load should
6398            already have been turned into an explicit one by the
6399            gimplification process.  */
6400         *expr_p = NULL;
6401     }
6402
6403   /* If we are gimplifying at the statement level, we're done.  Tack
6404      everything together and replace the original statement with the
6405      gimplified form.  */
6406   if (fallback == fb_none || is_statement)
6407     {
6408       if (internal_pre || internal_post)
6409         {
6410           append_to_statement_list (*expr_p, &internal_pre);
6411           append_to_statement_list (internal_post, &internal_pre);
6412           annotate_all_with_locus (&internal_pre, input_location);
6413           *expr_p = internal_pre;
6414         }
6415       else if (!*expr_p)
6416         ;
6417       else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
6418         annotate_all_with_locus (expr_p, input_location);
6419       else
6420         annotate_one_with_locus (*expr_p, input_location);
6421       goto out;
6422     }
6423
6424   /* Otherwise we're gimplifying a subexpression, so the resulting value is
6425      interesting.  */
6426
6427   /* If it's sufficiently simple already, we're done.  Unless we are
6428      handling some post-effects internally; if that's the case, we need to
6429      copy into a temp before adding the post-effects to the tree.  */
6430   if (!internal_post && (*gimple_test_f) (*expr_p))
6431     goto out;
6432
6433   /* Otherwise, we need to create a new temporary for the gimplified
6434      expression.  */
6435
6436   /* We can't return an lvalue if we have an internal postqueue.  The
6437      object the lvalue refers to would (probably) be modified by the
6438      postqueue; we need to copy the value out first, which means an
6439      rvalue.  */
6440   if ((fallback & fb_lvalue) && !internal_post
6441       && is_gimple_addressable (*expr_p))
6442     {
6443       /* An lvalue will do.  Take the address of the expression, store it
6444          in a temporary, and replace the expression with an INDIRECT_REF of
6445          that temporary.  */
6446       tmp = build_fold_addr_expr (*expr_p);
6447       gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
6448       *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
6449     }
6450   else if ((fallback & fb_rvalue) && is_gimple_formal_tmp_rhs (*expr_p))
6451     {
6452       gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
6453
6454       /* An rvalue will do.  Assign the gimplified expression into a new
6455          temporary TMP and replace the original expression with TMP.  */
6456
6457       if (internal_post || (fallback & fb_lvalue))
6458         /* The postqueue might change the value of the expression between
6459            the initialization and use of the temporary, so we can't use a
6460            formal temp.  FIXME do we care?  */
6461         *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6462       else
6463         *expr_p = get_formal_tmp_var (*expr_p, pre_p);
6464
6465       if (TREE_CODE (*expr_p) != SSA_NAME)
6466         DECL_GIMPLE_FORMAL_TEMP_P (*expr_p) = 1;
6467     }
6468   else
6469     {
6470 #ifdef ENABLE_CHECKING
6471       if (!(fallback & fb_mayfail))
6472         {
6473           fprintf (stderr, "gimplification failed:\n");
6474           print_generic_expr (stderr, *expr_p, 0);
6475           debug_tree (*expr_p);
6476           internal_error ("gimplification failed");
6477         }
6478 #endif
6479       gcc_assert (fallback & fb_mayfail);
6480       /* If this is an asm statement, and the user asked for the
6481          impossible, don't die.  Fail and let gimplify_asm_expr
6482          issue an error.  */
6483       ret = GS_ERROR;
6484       goto out;
6485     }
6486
6487   /* Make sure the temporary matches our predicate.  */
6488   gcc_assert ((*gimple_test_f) (*expr_p));
6489
6490   if (internal_post)
6491     {
6492       annotate_all_with_locus (&internal_post, input_location);
6493       append_to_statement_list (internal_post, pre_p);
6494     }
6495
6496  out:
6497   input_location = saved_location;
6498   return ret;
6499 }
6500
6501 /* Look through TYPE for variable-sized objects and gimplify each such
6502    size that we find.  Add to LIST_P any statements generated.  */
6503
6504 void
6505 gimplify_type_sizes (tree type, tree *list_p)
6506 {
6507   tree field, t;
6508
6509   if (type == NULL || type == error_mark_node)
6510     return;
6511
6512   /* We first do the main variant, then copy into any other variants.  */
6513   type = TYPE_MAIN_VARIANT (type);
6514
6515   /* Avoid infinite recursion.  */
6516   if (TYPE_SIZES_GIMPLIFIED (type))
6517     return;
6518
6519   TYPE_SIZES_GIMPLIFIED (type) = 1;
6520
6521   switch (TREE_CODE (type))
6522     {
6523     case INTEGER_TYPE:
6524     case ENUMERAL_TYPE:
6525     case BOOLEAN_TYPE:
6526     case REAL_TYPE:
6527     case FIXED_POINT_TYPE:
6528       gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
6529       gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
6530
6531       for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6532         {
6533           TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
6534           TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
6535         }
6536       break;
6537
6538     case ARRAY_TYPE:
6539       /* These types may not have declarations, so handle them here.  */
6540       gimplify_type_sizes (TREE_TYPE (type), list_p);
6541       gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
6542       break;
6543
6544     case RECORD_TYPE:
6545     case UNION_TYPE:
6546     case QUAL_UNION_TYPE:
6547       for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
6548         if (TREE_CODE (field) == FIELD_DECL)
6549           {
6550             gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
6551             gimplify_type_sizes (TREE_TYPE (field), list_p);
6552           }
6553       break;
6554
6555     case POINTER_TYPE:
6556     case REFERENCE_TYPE:
6557         /* We used to recurse on the pointed-to type here, which turned out to
6558            be incorrect because its definition might refer to variables not
6559            yet initialized at this point if a forward declaration is involved.
6560
6561            It was actually useful for anonymous pointed-to types to ensure
6562            that the sizes evaluation dominates every possible later use of the
6563            values.  Restricting to such types here would be safe since there
6564            is no possible forward declaration around, but would introduce an
6565            undesirable middle-end semantic to anonymity.  We then defer to
6566            front-ends the responsibility of ensuring that the sizes are
6567            evaluated both early and late enough, e.g. by attaching artificial
6568            type declarations to the tree.  */
6569       break;
6570
6571     default:
6572       break;
6573     }
6574
6575   gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
6576   gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
6577
6578   for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6579     {
6580       TYPE_SIZE (t) = TYPE_SIZE (type);
6581       TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
6582       TYPE_SIZES_GIMPLIFIED (t) = 1;
6583     }
6584 }
6585
6586 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
6587    a size or position, has had all of its SAVE_EXPRs evaluated.
6588    We add any required statements to STMT_P.  */
6589
6590 void
6591 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
6592 {
6593   tree type, expr = *expr_p;
6594
6595   /* We don't do anything if the value isn't there, is constant, or contains
6596      A PLACEHOLDER_EXPR.  We also don't want to do anything if it's already
6597      a VAR_DECL.  If it's a VAR_DECL from another function, the gimplifier
6598      will want to replace it with a new variable, but that will cause problems
6599      if this type is from outside the function.  It's OK to have that here.  */
6600   if (expr == NULL_TREE || TREE_CONSTANT (expr)
6601       || TREE_CODE (expr) == VAR_DECL
6602       || CONTAINS_PLACEHOLDER_P (expr))
6603     return;
6604
6605   type = TREE_TYPE (expr);
6606   *expr_p = unshare_expr (expr);
6607
6608   gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
6609   expr = *expr_p;
6610
6611   /* Verify that we've an exact type match with the original expression.
6612      In particular, we do not wish to drop a "sizetype" in favour of a
6613      type of similar dimensions.  We don't want to pollute the generic
6614      type-stripping code with this knowledge because it doesn't matter
6615      for the bulk of GENERIC/GIMPLE.  It only matters that TYPE_SIZE_UNIT
6616      and friends retain their "sizetype-ness".  */
6617   if (TREE_TYPE (expr) != type
6618       && TREE_CODE (type) == INTEGER_TYPE
6619       && TYPE_IS_SIZETYPE (type))
6620     {
6621       tree tmp;
6622
6623       *expr_p = create_tmp_var (type, NULL);
6624       tmp = build1 (NOP_EXPR, type, expr);
6625       tmp = build_gimple_modify_stmt (*expr_p, tmp);
6626       if (EXPR_HAS_LOCATION (expr))
6627         SET_EXPR_LOCUS (tmp, EXPR_LOCUS (expr));
6628       else
6629         SET_EXPR_LOCATION (tmp, input_location);
6630
6631       gimplify_and_add (tmp, stmt_p);
6632     }
6633 }
6634 \f
6635
6636 /* Gimplify the body of statements pointed to by BODY_P.  FNDECL is the
6637    function decl containing BODY.  */
6638
6639 void
6640 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
6641 {
6642   location_t saved_location = input_location;
6643   tree body, parm_stmts;
6644
6645   timevar_push (TV_TREE_GIMPLIFY);
6646
6647   gcc_assert (gimplify_ctxp == NULL);
6648   push_gimplify_context ();
6649
6650   /* Unshare most shared trees in the body and in that of any nested functions.
6651      It would seem we don't have to do this for nested functions because
6652      they are supposed to be output and then the outer function gimplified
6653      first, but the g++ front end doesn't always do it that way.  */
6654   unshare_body (body_p, fndecl);
6655   unvisit_body (body_p, fndecl);
6656
6657   /* Make sure input_location isn't set to something weird.  */
6658   input_location = DECL_SOURCE_LOCATION (fndecl);
6659
6660   /* Resolve callee-copies.  This has to be done before processing
6661      the body so that DECL_VALUE_EXPR gets processed correctly.  */
6662   parm_stmts = do_parms ? gimplify_parameters () : NULL;
6663
6664   /* Gimplify the function's body.  */
6665   gimplify_stmt (body_p);
6666   body = *body_p;
6667
6668   if (!body)
6669     body = alloc_stmt_list ();
6670   else if (TREE_CODE (body) == STATEMENT_LIST)
6671     {
6672       tree t = expr_only (*body_p);
6673       if (t)
6674         body = t;
6675     }
6676
6677   /* If there isn't an outer BIND_EXPR, add one.  */
6678   if (TREE_CODE (body) != BIND_EXPR)
6679     {
6680       tree b = build3 (BIND_EXPR, void_type_node, NULL_TREE,
6681                        NULL_TREE, NULL_TREE);
6682       TREE_SIDE_EFFECTS (b) = 1;
6683       append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
6684       body = b;
6685     }
6686
6687   /* If we had callee-copies statements, insert them at the beginning
6688      of the function.  */
6689   if (parm_stmts)
6690     {
6691       append_to_statement_list_force (BIND_EXPR_BODY (body), &parm_stmts);
6692       BIND_EXPR_BODY (body) = parm_stmts;
6693     }
6694
6695   /* Unshare again, in case gimplification was sloppy.  */
6696   unshare_all_trees (body);
6697
6698   *body_p = body;
6699
6700   pop_gimplify_context (body);
6701   gcc_assert (gimplify_ctxp == NULL);
6702
6703 #ifdef ENABLE_TYPES_CHECKING
6704   if (!errorcount && !sorrycount)
6705     verify_gimple_1 (BIND_EXPR_BODY (*body_p));
6706 #endif
6707
6708   timevar_pop (TV_TREE_GIMPLIFY);
6709   input_location = saved_location;
6710 }
6711
6712 /* Entry point to the gimplification pass.  FNDECL is the FUNCTION_DECL
6713    node for the function we want to gimplify.  */
6714
6715 void
6716 gimplify_function_tree (tree fndecl)
6717 {
6718   tree oldfn, parm, ret;
6719
6720   oldfn = current_function_decl;
6721   current_function_decl = fndecl;
6722   if (DECL_STRUCT_FUNCTION (fndecl))
6723     push_cfun (DECL_STRUCT_FUNCTION (fndecl));
6724   else
6725     push_struct_function (fndecl);
6726
6727   for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = TREE_CHAIN (parm))
6728     {
6729       /* Preliminarily mark non-addressed complex variables as eligible
6730          for promotion to gimple registers.  We'll transform their uses
6731          as we find them.  */
6732       if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
6733            || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
6734           && !TREE_THIS_VOLATILE (parm)
6735           && !needs_to_live_in_memory (parm))
6736         DECL_GIMPLE_REG_P (parm) = 1;
6737     }
6738
6739   ret = DECL_RESULT (fndecl);
6740   if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
6741        || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
6742       && !needs_to_live_in_memory (ret))
6743     DECL_GIMPLE_REG_P (ret) = 1;
6744
6745   gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
6746
6747   /* If we're instrumenting function entry/exit, then prepend the call to
6748      the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
6749      catch the exit hook.  */
6750   /* ??? Add some way to ignore exceptions for this TFE.  */
6751   if (flag_instrument_function_entry_exit
6752       && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
6753       && !flag_instrument_functions_exclude_p (fndecl))
6754     {
6755       tree tf, x, bind;
6756
6757       tf = build2 (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
6758       TREE_SIDE_EFFECTS (tf) = 1;
6759       x = DECL_SAVED_TREE (fndecl);
6760       append_to_statement_list (x, &TREE_OPERAND (tf, 0));
6761       x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
6762       x = build_call_expr (x, 0);
6763       append_to_statement_list (x, &TREE_OPERAND (tf, 1));
6764
6765       bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6766       TREE_SIDE_EFFECTS (bind) = 1;
6767       x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
6768       x = build_call_expr (x, 0);
6769       append_to_statement_list (x, &BIND_EXPR_BODY (bind));
6770       append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
6771
6772       DECL_SAVED_TREE (fndecl) = bind;
6773     }
6774
6775   current_function_decl = oldfn;
6776   pop_cfun ();
6777 }
6778 \f
6779 /* Expands EXPR to list of gimple statements STMTS.  If SIMPLE is true,
6780    force the result to be either ssa_name or an invariant, otherwise
6781    just force it to be a rhs expression.  If VAR is not NULL, make the
6782    base variable of the final destination be VAR if suitable.  */
6783
6784 tree
6785 force_gimple_operand (tree expr, tree *stmts, bool simple, tree var)
6786 {
6787   tree t;
6788   enum gimplify_status ret;
6789   gimple_predicate gimple_test_f;
6790
6791   *stmts = NULL_TREE;
6792
6793   if (is_gimple_val (expr))
6794     return expr;
6795
6796   gimple_test_f = simple ? is_gimple_val : is_gimple_reg_rhs;
6797
6798   push_gimplify_context ();
6799   gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
6800   gimplify_ctxp->allow_rhs_cond_expr = true;
6801
6802   if (var)
6803     expr = build_gimple_modify_stmt (var, expr);
6804
6805   if (TREE_CODE (expr) != GIMPLE_MODIFY_STMT
6806       && TREE_TYPE (expr) == void_type_node)
6807     {
6808       gimplify_and_add (expr, stmts);
6809       expr = NULL_TREE;
6810     }
6811   else
6812     {
6813       ret = gimplify_expr (&expr, stmts, NULL,
6814                            gimple_test_f, fb_rvalue);
6815       gcc_assert (ret != GS_ERROR);
6816     }
6817
6818   if (gimple_referenced_vars (cfun))
6819     {
6820       for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
6821         add_referenced_var (t);
6822     }
6823
6824   pop_gimplify_context (NULL);
6825
6826   return expr;
6827 }
6828
6829 /* Invokes force_gimple_operand for EXPR with parameters SIMPLE_P and VAR.  If
6830    some statements are produced, emits them at BSI.  If BEFORE is true.
6831    the statements are appended before BSI, otherwise they are appended after
6832    it.  M specifies the way BSI moves after insertion (BSI_SAME_STMT or
6833    BSI_CONTINUE_LINKING are the usual values).  */
6834
6835 tree
6836 force_gimple_operand_bsi (block_stmt_iterator *bsi, tree expr,
6837                           bool simple_p, tree var, bool before,
6838                           enum bsi_iterator_update m)
6839 {
6840   tree stmts;
6841
6842   expr = force_gimple_operand (expr, &stmts, simple_p, var);
6843   if (stmts)
6844     {
6845       if (gimple_in_ssa_p (cfun))
6846         {
6847           tree_stmt_iterator tsi;
6848
6849           for (tsi = tsi_start (stmts); !tsi_end_p (tsi); tsi_next (&tsi))
6850             mark_symbols_for_renaming (tsi_stmt (tsi));
6851         }
6852
6853       if (before)
6854         bsi_insert_before (bsi, stmts, m);
6855       else
6856         bsi_insert_after (bsi, stmts, m);
6857     }
6858
6859   return expr;
6860 }
6861
6862 #include "gt-gimplify.h"