OSDN Git Service

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