OSDN Git Service

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