OSDN Git Service

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