OSDN Git Service

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