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