OSDN Git Service

* objc.dg/objc-fast-4.m: Skip for ppc64.
[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 Free Software Foundation, Inc.
4    Major work done by Sebastian Pop <s.pop@laposte.net>,
5    Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING.  If not, write to the Free
21 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 02110-1301, USA.  */
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "rtl.h"
30 #include "varray.h"
31 #include "tree-gimple.h"
32 #include "tree-inline.h"
33 #include "diagnostic.h"
34 #include "langhooks.h"
35 #include "langhooks-def.h"
36 #include "tree-flow.h"
37 #include "cgraph.h"
38 #include "timevar.h"
39 #include "except.h"
40 #include "hashtab.h"
41 #include "flags.h"
42 #include "real.h"
43 #include "function.h"
44 #include "output.h"
45 #include "expr.h"
46 #include "ggc.h"
47 #include "toplev.h"
48 #include "target.h"
49 #include "optabs.h"
50 #include "pointer-set.h"
51
52
53 enum gimplify_omp_var_data
54 {
55   GOVD_SEEN = 1,
56   GOVD_EXPLICIT = 2,
57   GOVD_SHARED = 4,
58   GOVD_PRIVATE = 8,
59   GOVD_FIRSTPRIVATE = 16,
60   GOVD_LASTPRIVATE = 32,
61   GOVD_REDUCTION = 64,
62   GOVD_LOCAL = 128,
63   GOVD_DEBUG_PRIVATE = 256,
64   GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
65                            | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
66 };
67
68 struct gimplify_omp_ctx
69 {
70   struct gimplify_omp_ctx *outer_context;
71   splay_tree variables;
72   struct pointer_set_t *privatized_types;
73   location_t location;
74   enum omp_clause_default_kind default_kind;
75   bool is_parallel;
76   bool is_combined_parallel;
77 };
78
79 struct gimplify_ctx
80 {
81   struct gimplify_ctx *prev_context;
82
83   tree current_bind_expr;
84   tree temps;
85   tree conditional_cleanups;
86   tree exit_label;
87   tree return_temp;
88   
89   VEC(tree,heap) *case_labels;
90   /* The formal temporary table.  Should this be persistent?  */
91   htab_t temp_htab;
92
93   int conditions;
94   bool save_stack;
95   bool into_ssa;
96 };
97
98 static struct gimplify_ctx *gimplify_ctxp;
99 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
100
101
102
103 /* Formal (expression) temporary table handling: Multiple occurrences of
104    the same scalar expression are evaluated into the same temporary.  */
105
106 typedef struct gimple_temp_hash_elt
107 {
108   tree val;   /* Key */
109   tree temp;  /* Value */
110 } elt_t;
111
112 /* Forward declarations.  */
113 static enum gimplify_status gimplify_compound_expr (tree *, tree *, bool);
114 #ifdef ENABLE_CHECKING
115 static bool cpt_same_type (tree a, tree b);
116 #endif
117
118
119 /* Return a hash value for a formal temporary table entry.  */
120
121 static hashval_t
122 gimple_tree_hash (const void *p)
123 {
124   tree t = ((const elt_t *) p)->val;
125   return iterative_hash_expr (t, 0);
126 }
127
128 /* Compare two formal temporary table entries.  */
129
130 static int
131 gimple_tree_eq (const void *p1, const void *p2)
132 {
133   tree t1 = ((const elt_t *) p1)->val;
134   tree t2 = ((const elt_t *) p2)->val;
135   enum tree_code code = TREE_CODE (t1);
136
137   if (TREE_CODE (t2) != code
138       || TREE_TYPE (t1) != TREE_TYPE (t2))
139     return 0;
140
141   if (!operand_equal_p (t1, t2, 0))
142     return 0;
143
144   /* Only allow them to compare equal if they also hash equal; otherwise
145      results are nondeterminate, and we fail bootstrap comparison.  */
146   gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
147
148   return 1;
149 }
150
151 /* Set up a context for the gimplifier.  */
152
153 void
154 push_gimplify_context (void)
155 {
156   struct gimplify_ctx *c;
157
158   c = (struct gimplify_ctx *) xcalloc (1, sizeof (struct gimplify_ctx));
159   c->prev_context = gimplify_ctxp;
160   if (optimize)
161     c->temp_htab = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
162
163   gimplify_ctxp = c;
164 }
165
166 /* Tear down a context for the gimplifier.  If BODY is non-null, then
167    put the temporaries into the outer BIND_EXPR.  Otherwise, put them
168    in the unexpanded_var_list.  */
169
170 void
171 pop_gimplify_context (tree body)
172 {
173   struct gimplify_ctx *c = gimplify_ctxp;
174   tree t;
175
176   gcc_assert (c && !c->current_bind_expr);
177   gimplify_ctxp = c->prev_context;
178
179   for (t = c->temps; t ; t = TREE_CHAIN (t))
180     DECL_GIMPLE_FORMAL_TEMP_P (t) = 0;
181
182   if (body)
183     declare_tmp_vars (c->temps, body);
184   else
185     record_vars (c->temps);
186
187   if (optimize)
188     htab_delete (c->temp_htab);
189   free (c);
190 }
191
192 static void
193 gimple_push_bind_expr (tree bind)
194 {
195   TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr;
196   gimplify_ctxp->current_bind_expr = bind;
197 }
198
199 static void
200 gimple_pop_bind_expr (void)
201 {
202   gimplify_ctxp->current_bind_expr
203     = TREE_CHAIN (gimplify_ctxp->current_bind_expr);
204 }
205
206 tree
207 gimple_current_bind_expr (void)
208 {
209   return gimplify_ctxp->current_bind_expr;
210 }
211
212 /* Returns true iff there is a COND_EXPR between us and the innermost
213    CLEANUP_POINT_EXPR.  This info is used by gimple_push_cleanup.  */
214
215 static bool
216 gimple_conditional_context (void)
217 {
218   return gimplify_ctxp->conditions > 0;
219 }
220
221 /* Note that we've entered a COND_EXPR.  */
222
223 static void
224 gimple_push_condition (void)
225 {
226 #ifdef ENABLE_CHECKING
227   if (gimplify_ctxp->conditions == 0)
228     gcc_assert (!gimplify_ctxp->conditional_cleanups);
229 #endif
230   ++(gimplify_ctxp->conditions);
231 }
232
233 /* Note that we've left a COND_EXPR.  If we're back at unconditional scope
234    now, add any conditional cleanups we've seen to the prequeue.  */
235
236 static void
237 gimple_pop_condition (tree *pre_p)
238 {
239   int conds = --(gimplify_ctxp->conditions);
240
241   gcc_assert (conds >= 0);
242   if (conds == 0)
243     {
244       append_to_statement_list (gimplify_ctxp->conditional_cleanups, pre_p);
245       gimplify_ctxp->conditional_cleanups = NULL_TREE;
246     }
247 }
248
249 /* A stable comparison routine for use with splay trees and DECLs.  */
250
251 static int
252 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
253 {
254   tree a = (tree) xa;
255   tree b = (tree) xb;
256
257   return DECL_UID (a) - DECL_UID (b);
258 }
259
260 /* Create a new omp construct that deals with variable remapping.  */
261
262 static struct gimplify_omp_ctx *
263 new_omp_context (bool is_parallel, bool is_combined_parallel)
264 {
265   struct gimplify_omp_ctx *c;
266
267   c = XCNEW (struct gimplify_omp_ctx);
268   c->outer_context = gimplify_omp_ctxp;
269   c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
270   c->privatized_types = pointer_set_create ();
271   c->location = input_location;
272   c->is_parallel = is_parallel;
273   c->is_combined_parallel = is_combined_parallel;
274   c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
275
276   return c;
277 }
278
279 /* Destroy an omp construct that deals with variable remapping.  */
280
281 static void
282 delete_omp_context (struct gimplify_omp_ctx *c)
283 {
284   splay_tree_delete (c->variables);
285   pointer_set_destroy (c->privatized_types);
286   XDELETE (c);
287 }
288
289 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
290 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
291
292 /* A subroutine of append_to_statement_list{,_force}.  T is not NULL.  */
293
294 static void
295 append_to_statement_list_1 (tree t, tree *list_p)
296 {
297   tree list = *list_p;
298   tree_stmt_iterator i;
299
300   if (!list)
301     {
302       if (t && TREE_CODE (t) == STATEMENT_LIST)
303         {
304           *list_p = t;
305           return;
306         }
307       *list_p = list = alloc_stmt_list ();
308     }
309
310   i = tsi_last (list);
311   tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
312 }
313
314 /* Add T to the end of the list container pointed to by LIST_P.
315    If T is an expression with no effects, it is ignored.  */
316
317 void
318 append_to_statement_list (tree t, tree *list_p)
319 {
320   if (t && TREE_SIDE_EFFECTS (t))
321     append_to_statement_list_1 (t, list_p);
322 }
323
324 /* Similar, but the statement is always added, regardless of side effects.  */
325
326 void
327 append_to_statement_list_force (tree t, tree *list_p)
328 {
329   if (t != NULL_TREE)
330     append_to_statement_list_1 (t, list_p);
331 }
332
333 /* Both gimplify the statement T and append it to LIST_P.  */
334
335 void
336 gimplify_and_add (tree t, tree *list_p)
337 {
338   gimplify_stmt (&t);
339   append_to_statement_list (t, list_p);
340 }
341
342 /* Strip off a legitimate source ending from the input string NAME of
343    length LEN.  Rather than having to know the names used by all of
344    our front ends, we strip off an ending of a period followed by
345    up to five characters.  (Java uses ".class".)  */
346
347 static inline void
348 remove_suffix (char *name, int len)
349 {
350   int i;
351
352   for (i = 2;  i < 8 && len > i;  i++)
353     {
354       if (name[len - i] == '.')
355         {
356           name[len - i] = '\0';
357           break;
358         }
359     }
360 }
361
362 /* Create a nameless artificial label and put it in the current function
363    context.  Returns the newly created label.  */
364
365 tree
366 create_artificial_label (void)
367 {
368   tree lab = build_decl (LABEL_DECL, NULL_TREE, void_type_node);
369
370   DECL_ARTIFICIAL (lab) = 1;
371   DECL_IGNORED_P (lab) = 1;
372   DECL_CONTEXT (lab) = current_function_decl;
373   return lab;
374 }
375
376 /* Subroutine for find_single_pointer_decl.  */
377
378 static tree
379 find_single_pointer_decl_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
380                             void *data)
381 {
382   tree *pdecl = (tree *) data;
383
384   if (DECL_P (*tp) && POINTER_TYPE_P (TREE_TYPE (*tp)))
385     {
386       if (*pdecl)
387         {
388           /* We already found a pointer decl; return anything other
389              than NULL_TREE to unwind from walk_tree signalling that
390              we have a duplicate.  */
391           return *tp;
392         }
393       *pdecl = *tp;
394     }
395
396   return NULL_TREE;
397 }
398
399 /* Find the single DECL of pointer type in the tree T and return it.
400    If there are zero or more than one such DECLs, return NULL.  */
401
402 static tree
403 find_single_pointer_decl (tree t)
404 {
405   tree decl = NULL_TREE;
406
407   if (walk_tree (&t, find_single_pointer_decl_1, &decl, NULL))
408     {
409       /* find_single_pointer_decl_1 returns a nonzero value, causing
410          walk_tree to return a nonzero value, to indicate that it
411          found more than one pointer DECL.  */
412       return NULL_TREE;
413     }
414
415   return decl;
416 }
417
418 /* Create a new temporary name with PREFIX.  Returns an identifier.  */
419
420 static GTY(()) unsigned int tmp_var_id_num;
421
422 tree
423 create_tmp_var_name (const char *prefix)
424 {
425   char *tmp_name;
426
427   if (prefix)
428     {
429       char *preftmp = ASTRDUP (prefix);
430
431       remove_suffix (preftmp, strlen (preftmp));
432       prefix = preftmp;
433     }
434
435   ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
436   return get_identifier (tmp_name);
437 }
438
439
440 /* Create a new temporary variable declaration of type TYPE.
441    Does NOT push it into the current binding.  */
442
443 tree
444 create_tmp_var_raw (tree type, const char *prefix)
445 {
446   tree tmp_var;
447   tree new_type;
448
449   /* Make the type of the variable writable.  */
450   new_type = build_type_variant (type, 0, 0);
451   TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
452
453   tmp_var = build_decl (VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
454                         type);
455
456   /* The variable was declared by the compiler.  */
457   DECL_ARTIFICIAL (tmp_var) = 1;
458   /* And we don't want debug info for it.  */
459   DECL_IGNORED_P (tmp_var) = 1;
460
461   /* Make the variable writable.  */
462   TREE_READONLY (tmp_var) = 0;
463
464   DECL_EXTERNAL (tmp_var) = 0;
465   TREE_STATIC (tmp_var) = 0;
466   TREE_USED (tmp_var) = 1;
467
468   return tmp_var;
469 }
470
471 /* Create a new temporary variable declaration of type TYPE.  DOES push the
472    variable into the current binding.  Further, assume that this is called
473    only from gimplification or optimization, at which point the creation of
474    certain types are bugs.  */
475
476 tree
477 create_tmp_var (tree type, const char *prefix)
478 {
479   tree tmp_var;
480
481   /* We don't allow types that are addressable (meaning we can't make copies),
482      incomplete, or of variable size.  */
483   gcc_assert (!TREE_ADDRESSABLE (type)
484               && COMPLETE_TYPE_P (type)
485               && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST);
486
487   tmp_var = create_tmp_var_raw (type, prefix);
488   gimple_add_tmp_var (tmp_var);
489   return tmp_var;
490 }
491
492 /*  Given a tree, try to return a useful variable name that we can use
493     to prefix a temporary that is being assigned the value of the tree.
494     I.E. given  <temp> = &A, return A.  */
495
496 const char *
497 get_name (tree t)
498 {
499   tree stripped_decl;
500
501   stripped_decl = t;
502   STRIP_NOPS (stripped_decl);
503   if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
504     return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
505   else
506     {
507       switch (TREE_CODE (stripped_decl))
508         {
509         case ADDR_EXPR:
510           return get_name (TREE_OPERAND (stripped_decl, 0));
511           break;
512         default:
513           return NULL;
514         }
515     }
516 }
517
518 /* Create a temporary with a name derived from VAL.  Subroutine of
519    lookup_tmp_var; nobody else should call this function.  */
520
521 static inline tree
522 create_tmp_from_val (tree val)
523 {
524   return create_tmp_var (TYPE_MAIN_VARIANT (TREE_TYPE (val)), get_name (val));
525 }
526
527 /* Create a temporary to hold the value of VAL.  If IS_FORMAL, try to reuse
528    an existing expression temporary.  */
529
530 static tree
531 lookup_tmp_var (tree val, bool is_formal)
532 {
533   tree ret;
534
535   /* If not optimizing, never really reuse a temporary.  local-alloc
536      won't allocate any variable that is used in more than one basic
537      block, which means it will go into memory, causing much extra
538      work in reload and final and poorer code generation, outweighing
539      the extra memory allocation here.  */
540   if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
541     ret = create_tmp_from_val (val);
542   else
543     {
544       elt_t elt, *elt_p;
545       void **slot;
546
547       elt.val = val;
548       slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
549       if (*slot == NULL)
550         {
551           elt_p = XNEW (elt_t);
552           elt_p->val = val;
553           elt_p->temp = ret = create_tmp_from_val (val);
554           *slot = (void *) elt_p;
555         }
556       else
557         {
558           elt_p = (elt_t *) *slot;
559           ret = elt_p->temp;
560         }
561     }
562
563   if (is_formal)
564     DECL_GIMPLE_FORMAL_TEMP_P (ret) = 1;
565
566   return ret;
567 }
568
569 /* Returns a formal temporary variable initialized with VAL.  PRE_P is as
570    in gimplify_expr.  Only use this function if:
571
572    1) The value of the unfactored expression represented by VAL will not
573       change between the initialization and use of the temporary, and
574    2) The temporary will not be otherwise modified.
575
576    For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
577    and #2 means it is inappropriate for && temps.
578
579    For other cases, use get_initialized_tmp_var instead.  */
580
581 static tree
582 internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
583 {
584   tree t, mod;
585
586   gimplify_expr (&val, pre_p, post_p, is_gimple_formal_tmp_rhs, fb_rvalue);
587
588   t = lookup_tmp_var (val, is_formal);
589
590   if (is_formal)
591     {
592       tree u = find_single_pointer_decl (val);
593
594       if (u && TREE_CODE (u) == VAR_DECL && DECL_BASED_ON_RESTRICT_P (u))
595         u = DECL_GET_RESTRICT_BASE (u);
596       if (u && TYPE_RESTRICT (TREE_TYPE (u)))
597         {
598           if (DECL_BASED_ON_RESTRICT_P (t))
599             gcc_assert (u == DECL_GET_RESTRICT_BASE (t));
600           else
601             {
602               DECL_BASED_ON_RESTRICT_P (t) = 1;
603               SET_DECL_RESTRICT_BASE (t, u);
604             }
605         }
606     }
607
608   if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE)
609     DECL_COMPLEX_GIMPLE_REG_P (t) = 1;
610
611   mod = build2 (INIT_EXPR, TREE_TYPE (t), t, val);
612
613   if (EXPR_HAS_LOCATION (val))
614     SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
615   else
616     SET_EXPR_LOCATION (mod, input_location);
617
618   /* gimplify_modify_expr might want to reduce this further.  */
619   gimplify_and_add (mod, pre_p);
620
621   /* If we're gimplifying into ssa, gimplify_modify_expr will have
622      given our temporary an ssa name.  Find and return it.  */
623   if (gimplify_ctxp->into_ssa)
624     t = TREE_OPERAND (mod, 0);
625
626   return t;
627 }
628
629 /* Returns a formal temporary variable initialized with VAL.  PRE_P
630    points to a statement list where side-effects needed to compute VAL
631    should be stored.  */
632
633 tree
634 get_formal_tmp_var (tree val, tree *pre_p)
635 {
636   return internal_get_tmp_var (val, pre_p, NULL, true);
637 }
638
639 /* Returns a temporary variable initialized with VAL.  PRE_P and POST_P
640    are as in gimplify_expr.  */
641
642 tree
643 get_initialized_tmp_var (tree val, tree *pre_p, tree *post_p)
644 {
645   return internal_get_tmp_var (val, pre_p, post_p, false);
646 }
647
648 /* Declares all the variables in VARS in SCOPE.  */
649
650 void
651 declare_tmp_vars (tree vars, tree scope)
652 {
653   tree last = vars;
654   if (last)
655     {
656       tree temps;
657
658       /* C99 mode puts the default 'return 0;' for main outside the outer
659          braces.  So drill down until we find an actual scope.  */
660       while (TREE_CODE (scope) == COMPOUND_EXPR)
661         scope = TREE_OPERAND (scope, 0);
662
663       gcc_assert (TREE_CODE (scope) == BIND_EXPR);
664
665       temps = nreverse (last);
666       TREE_CHAIN (last) = BIND_EXPR_VARS (scope);
667       BIND_EXPR_VARS (scope) = temps;
668     }
669 }
670
671 void
672 gimple_add_tmp_var (tree tmp)
673 {
674   gcc_assert (!TREE_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
675
676   DECL_CONTEXT (tmp) = current_function_decl;
677   DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
678
679   if (gimplify_ctxp)
680     {
681       TREE_CHAIN (tmp) = gimplify_ctxp->temps;
682       gimplify_ctxp->temps = tmp;
683
684       /* Mark temporaries local within the nearest enclosing parallel.  */
685       if (gimplify_omp_ctxp)
686         {
687           struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
688           while (ctx && !ctx->is_parallel)
689             ctx = ctx->outer_context;
690           if (ctx)
691             omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
692         }
693     }
694   else if (cfun)
695     record_vars (tmp);
696   else
697     declare_tmp_vars (tmp, DECL_SAVED_TREE (current_function_decl));
698 }
699
700 /* Determines whether to assign a locus to the statement STMT.  */
701
702 static bool
703 should_carry_locus_p (tree stmt)
704 {
705   /* Don't emit a line note for a label.  We particularly don't want to
706      emit one for the break label, since it doesn't actually correspond
707      to the beginning of the loop/switch.  */
708   if (TREE_CODE (stmt) == LABEL_EXPR)
709     return false;
710
711   /* Do not annotate empty statements, since it confuses gcov.  */
712   if (!TREE_SIDE_EFFECTS (stmt))
713     return false;
714
715   return true;
716 }
717
718 static void
719 annotate_one_with_locus (tree t, location_t locus)
720 {
721   if (EXPR_P (t) && ! EXPR_HAS_LOCATION (t) && should_carry_locus_p (t))
722     SET_EXPR_LOCATION (t, locus);
723 }
724
725 void
726 annotate_all_with_locus (tree *stmt_p, location_t locus)
727 {
728   tree_stmt_iterator i;
729
730   if (!*stmt_p)
731     return;
732
733   for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
734     {
735       tree t = tsi_stmt (i);
736
737       /* Assuming we've already been gimplified, we shouldn't
738           see nested chaining constructs anymore.  */
739       gcc_assert (TREE_CODE (t) != STATEMENT_LIST
740                   && TREE_CODE (t) != COMPOUND_EXPR);
741
742       annotate_one_with_locus (t, locus);
743     }
744 }
745
746 /* Similar to copy_tree_r() but do not copy SAVE_EXPR or TARGET_EXPR nodes.
747    These nodes model computations that should only be done once.  If we
748    were to unshare something like SAVE_EXPR(i++), the gimplification
749    process would create wrong code.  */
750
751 static tree
752 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
753 {
754   enum tree_code code = TREE_CODE (*tp);
755   /* Don't unshare types, decls, constants and SAVE_EXPR nodes.  */
756   if (TREE_CODE_CLASS (code) == tcc_type
757       || TREE_CODE_CLASS (code) == tcc_declaration
758       || TREE_CODE_CLASS (code) == tcc_constant
759       || code == SAVE_EXPR || code == TARGET_EXPR
760       /* We can't do anything sensible with a BLOCK used as an expression,
761          but we also can't just die when we see it because of non-expression
762          uses.  So just avert our eyes and cross our fingers.  Silly Java.  */
763       || code == BLOCK)
764     *walk_subtrees = 0;
765   else
766     {
767       gcc_assert (code != BIND_EXPR);
768       copy_tree_r (tp, walk_subtrees, data);
769     }
770
771   return NULL_TREE;
772 }
773
774 /* Callback for walk_tree to unshare most of the shared trees rooted at
775    *TP.  If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
776    then *TP is deep copied by calling copy_tree_r.
777
778    This unshares the same trees as copy_tree_r with the exception of
779    SAVE_EXPR nodes.  These nodes model computations that should only be
780    done once.  If we were to unshare something like SAVE_EXPR(i++), the
781    gimplification process would create wrong code.  */
782
783 static tree
784 copy_if_shared_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
785                   void *data ATTRIBUTE_UNUSED)
786 {
787   tree t = *tp;
788   enum tree_code code = TREE_CODE (t);
789
790   /* Skip types, decls, and constants.  But we do want to look at their
791      types and the bounds of types.  Mark them as visited so we properly
792      unmark their subtrees on the unmark pass.  If we've already seen them,
793      don't look down further.  */
794   if (TREE_CODE_CLASS (code) == tcc_type
795       || TREE_CODE_CLASS (code) == tcc_declaration
796       || TREE_CODE_CLASS (code) == tcc_constant)
797     {
798       if (TREE_VISITED (t))
799         *walk_subtrees = 0;
800       else
801         TREE_VISITED (t) = 1;
802     }
803
804   /* If this node has been visited already, unshare it and don't look
805      any deeper.  */
806   else if (TREE_VISITED (t))
807     {
808       walk_tree (tp, mostly_copy_tree_r, NULL, NULL);
809       *walk_subtrees = 0;
810     }
811
812   /* Otherwise, mark the tree as visited and keep looking.  */
813   else
814     TREE_VISITED (t) = 1;
815
816   return NULL_TREE;
817 }
818
819 static tree
820 unmark_visited_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
821                   void *data ATTRIBUTE_UNUSED)
822 {
823   if (TREE_VISITED (*tp))
824     TREE_VISITED (*tp) = 0;
825   else
826     *walk_subtrees = 0;
827
828   return NULL_TREE;
829 }
830
831 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
832    bodies of any nested functions if we are unsharing the entire body of
833    FNDECL.  */
834
835 static void
836 unshare_body (tree *body_p, tree fndecl)
837 {
838   struct cgraph_node *cgn = cgraph_node (fndecl);
839
840   walk_tree (body_p, copy_if_shared_r, NULL, NULL);
841   if (body_p == &DECL_SAVED_TREE (fndecl))
842     for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
843       unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
844 }
845
846 /* Likewise, but mark all trees as not visited.  */
847
848 static void
849 unvisit_body (tree *body_p, tree fndecl)
850 {
851   struct cgraph_node *cgn = cgraph_node (fndecl);
852
853   walk_tree (body_p, unmark_visited_r, NULL, NULL);
854   if (body_p == &DECL_SAVED_TREE (fndecl))
855     for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
856       unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
857 }
858
859 /* Unshare T and all the trees reached from T via TREE_CHAIN.  */
860
861 static void
862 unshare_all_trees (tree t)
863 {
864   walk_tree (&t, copy_if_shared_r, NULL, NULL);
865   walk_tree (&t, unmark_visited_r, NULL, NULL);
866 }
867
868 /* Unconditionally make an unshared copy of EXPR.  This is used when using
869    stored expressions which span multiple functions, such as BINFO_VTABLE,
870    as the normal unsharing process can't tell that they're shared.  */
871
872 tree
873 unshare_expr (tree expr)
874 {
875   walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
876   return expr;
877 }
878
879 /* A terser interface for building a representation of an exception
880    specification.  */
881
882 tree
883 gimple_build_eh_filter (tree body, tree allowed, tree failure)
884 {
885   tree t;
886
887   /* FIXME should the allowed types go in TREE_TYPE?  */
888   t = build2 (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE);
889   append_to_statement_list (failure, &EH_FILTER_FAILURE (t));
890
891   t = build2 (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t);
892   append_to_statement_list (body, &TREE_OPERAND (t, 0));
893
894   return t;
895 }
896
897 \f
898 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
899    contain statements and have a value.  Assign its value to a temporary
900    and give it void_type_node.  Returns the temporary, or NULL_TREE if
901    WRAPPER was already void.  */
902
903 tree
904 voidify_wrapper_expr (tree wrapper, tree temp)
905 {
906   if (!VOID_TYPE_P (TREE_TYPE (wrapper)))
907     {
908       tree *p, sub = wrapper;
909
910     restart:
911       /* Set p to point to the body of the wrapper.  */
912       switch (TREE_CODE (sub))
913         {
914         case BIND_EXPR:
915           /* For a BIND_EXPR, the body is operand 1.  */
916           p = &BIND_EXPR_BODY (sub);
917           break;
918
919         default:
920           p = &TREE_OPERAND (sub, 0);
921           break;
922         }
923
924       /* Advance to the last statement.  Set all container types to void.  */
925       if (TREE_CODE (*p) == STATEMENT_LIST)
926         {
927           tree_stmt_iterator i = tsi_last (*p);
928           p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
929         }
930       else
931         {
932           for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
933             {
934               TREE_SIDE_EFFECTS (*p) = 1;
935               TREE_TYPE (*p) = void_type_node;
936             }
937         }
938
939       if (p == NULL || IS_EMPTY_STMT (*p))
940         ;
941       /* Look through exception handling.  */
942       else if (TREE_CODE (*p) == TRY_FINALLY_EXPR
943                || TREE_CODE (*p) == TRY_CATCH_EXPR)
944         {
945           sub = *p;
946           goto restart;
947         }
948       /* The C++ frontend already did this for us.  */
949       else if (TREE_CODE (*p) == INIT_EXPR
950                || TREE_CODE (*p) == TARGET_EXPR)
951         temp = TREE_OPERAND (*p, 0);
952       /* If we're returning a dereference, move the dereference
953          outside the wrapper.  */
954       else if (TREE_CODE (*p) == INDIRECT_REF)
955         {
956           tree ptr = TREE_OPERAND (*p, 0);
957           temp = create_tmp_var (TREE_TYPE (ptr), "retval");
958           *p = build2 (MODIFY_EXPR, TREE_TYPE (ptr), temp, ptr);
959           temp = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (temp)), temp);
960           /* If this is a BIND_EXPR for a const inline function, it might not
961              have TREE_SIDE_EFFECTS set.  That is no longer accurate.  */
962           TREE_SIDE_EFFECTS (wrapper) = 1;
963         }
964       else
965         {
966           if (!temp)
967             temp = create_tmp_var (TREE_TYPE (wrapper), "retval");
968           *p = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, *p);
969           TREE_SIDE_EFFECTS (wrapper) = 1;
970         }
971
972       TREE_TYPE (wrapper) = void_type_node;
973       return temp;
974     }
975
976   return NULL_TREE;
977 }
978
979 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
980    a temporary through which they communicate.  */
981
982 static void
983 build_stack_save_restore (tree *save, tree *restore)
984 {
985   tree save_call, tmp_var;
986
987   save_call =
988       build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_SAVE],
989                                 NULL_TREE);
990   tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
991
992   *save = build2 (MODIFY_EXPR, ptr_type_node, tmp_var, save_call);
993   *restore =
994     build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
995                               tree_cons (NULL_TREE, tmp_var, NULL_TREE));
996 }
997
998 /* Gimplify a BIND_EXPR.  Just voidify and recurse.  */
999
1000 static enum gimplify_status
1001 gimplify_bind_expr (tree *expr_p, tree temp, tree *pre_p)
1002 {
1003   tree bind_expr = *expr_p;
1004   bool old_save_stack = gimplify_ctxp->save_stack;
1005   tree t;
1006
1007   temp = voidify_wrapper_expr (bind_expr, temp);
1008
1009   /* Mark variables seen in this bind expr.  */
1010   for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
1011     {
1012       if (TREE_CODE (t) == VAR_DECL)
1013         {
1014           struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1015
1016           /* Mark variable as local.  */
1017           if (ctx && !is_global_var (t)
1018               && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1019                   || splay_tree_lookup (ctx->variables,
1020                                         (splay_tree_key) t) == NULL))
1021             omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1022
1023           DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1024         }
1025
1026       /* Preliminarily mark non-addressed complex variables as eligible
1027          for promotion to gimple registers.  We'll transform their uses
1028          as we find them.  */
1029       if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1030           && !TREE_THIS_VOLATILE (t)
1031           && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1032           && !needs_to_live_in_memory (t))
1033         DECL_COMPLEX_GIMPLE_REG_P (t) = 1;
1034     }
1035
1036   gimple_push_bind_expr (bind_expr);
1037   gimplify_ctxp->save_stack = false;
1038
1039   gimplify_to_stmt_list (&BIND_EXPR_BODY (bind_expr));
1040
1041   if (gimplify_ctxp->save_stack)
1042     {
1043       tree stack_save, stack_restore;
1044
1045       /* Save stack on entry and restore it on exit.  Add a try_finally
1046          block to achieve this.  Note that mudflap depends on the
1047          format of the emitted code: see mx_register_decls().  */
1048       build_stack_save_restore (&stack_save, &stack_restore);
1049
1050       t = build2 (TRY_FINALLY_EXPR, void_type_node,
1051                   BIND_EXPR_BODY (bind_expr), NULL_TREE);
1052       append_to_statement_list (stack_restore, &TREE_OPERAND (t, 1));
1053
1054       BIND_EXPR_BODY (bind_expr) = NULL_TREE;
1055       append_to_statement_list (stack_save, &BIND_EXPR_BODY (bind_expr));
1056       append_to_statement_list (t, &BIND_EXPR_BODY (bind_expr));
1057     }
1058
1059   gimplify_ctxp->save_stack = old_save_stack;
1060   gimple_pop_bind_expr ();
1061
1062   if (temp)
1063     {
1064       *expr_p = temp;
1065       append_to_statement_list (bind_expr, pre_p);
1066       return GS_OK;
1067     }
1068   else
1069     return GS_ALL_DONE;
1070 }
1071
1072 /* Gimplify a RETURN_EXPR.  If the expression to be returned is not a
1073    GIMPLE value, it is assigned to a new temporary and the statement is
1074    re-written to return the temporary.
1075
1076    PRE_P points to the list where side effects that must happen before
1077    STMT should be stored.  */
1078
1079 static enum gimplify_status
1080 gimplify_return_expr (tree stmt, tree *pre_p)
1081 {
1082   tree ret_expr = TREE_OPERAND (stmt, 0);
1083   tree result_decl, result;
1084
1085   if (!ret_expr || TREE_CODE (ret_expr) == RESULT_DECL
1086       || ret_expr == error_mark_node)
1087     return GS_ALL_DONE;
1088
1089   if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1090     result_decl = NULL_TREE;
1091   else
1092     {
1093       result_decl = TREE_OPERAND (ret_expr, 0);
1094       if (TREE_CODE (result_decl) == INDIRECT_REF)
1095         /* See through a return by reference.  */
1096         result_decl = TREE_OPERAND (result_decl, 0);
1097
1098       gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1099                    || TREE_CODE (ret_expr) == INIT_EXPR)
1100                   && TREE_CODE (result_decl) == RESULT_DECL);
1101     }
1102
1103   /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1104      Recall that aggregate_value_p is FALSE for any aggregate type that is
1105      returned in registers.  If we're returning values in registers, then
1106      we don't want to extend the lifetime of the RESULT_DECL, particularly
1107      across another call.  In addition, for those aggregates for which
1108      hard_function_value generates a PARALLEL, we'll die during normal
1109      expansion of structure assignments; there's special code in expand_return
1110      to handle this case that does not exist in expand_expr.  */
1111   if (!result_decl
1112       || aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1113     result = result_decl;
1114   else if (gimplify_ctxp->return_temp)
1115     result = gimplify_ctxp->return_temp;
1116   else
1117     {
1118       result = create_tmp_var (TREE_TYPE (result_decl), NULL);
1119
1120       /* ??? With complex control flow (usually involving abnormal edges),
1121          we can wind up warning about an uninitialized value for this.  Due
1122          to how this variable is constructed and initialized, this is never
1123          true.  Give up and never warn.  */
1124       TREE_NO_WARNING (result) = 1;
1125
1126       gimplify_ctxp->return_temp = result;
1127     }
1128
1129   /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1130      Then gimplify the whole thing.  */
1131   if (result != result_decl)
1132     TREE_OPERAND (ret_expr, 0) = result;
1133
1134   gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1135
1136   /* If we didn't use a temporary, then the result is just the result_decl.
1137      Otherwise we need a simple copy.  This should already be gimple.  */
1138   if (result == result_decl)
1139     ret_expr = result;
1140   else
1141     ret_expr = build2 (MODIFY_EXPR, TREE_TYPE (result), result_decl, result);
1142   TREE_OPERAND (stmt, 0) = ret_expr;
1143
1144   return GS_ALL_DONE;
1145 }
1146
1147 /* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
1148    and initialization explicit.  */
1149
1150 static enum gimplify_status
1151 gimplify_decl_expr (tree *stmt_p)
1152 {
1153   tree stmt = *stmt_p;
1154   tree decl = DECL_EXPR_DECL (stmt);
1155
1156   *stmt_p = NULL_TREE;
1157
1158   if (TREE_TYPE (decl) == error_mark_node)
1159     return GS_ERROR;
1160
1161   if ((TREE_CODE (decl) == TYPE_DECL
1162        || TREE_CODE (decl) == VAR_DECL)
1163       && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1164     gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1165
1166   if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1167     {
1168       tree init = DECL_INITIAL (decl);
1169
1170       if (!TREE_CONSTANT (DECL_SIZE (decl)))
1171         {
1172           /* This is a variable-sized decl.  Simplify its size and mark it
1173              for deferred expansion.  Note that mudflap depends on the format
1174              of the emitted code: see mx_register_decls().  */
1175           tree t, args, addr, ptr_type;
1176
1177           gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p);
1178           gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1179
1180           /* All occurrences of this decl in final gimplified code will be
1181              replaced by indirection.  Setting DECL_VALUE_EXPR does two
1182              things: First, it lets the rest of the gimplifier know what
1183              replacement to use.  Second, it lets the debug info know
1184              where to find the value.  */
1185           ptr_type = build_pointer_type (TREE_TYPE (decl));
1186           addr = create_tmp_var (ptr_type, get_name (decl));
1187           DECL_IGNORED_P (addr) = 0;
1188           t = build_fold_indirect_ref (addr);
1189           SET_DECL_VALUE_EXPR (decl, t);
1190           DECL_HAS_VALUE_EXPR_P (decl) = 1;
1191
1192           args = tree_cons (NULL, DECL_SIZE_UNIT (decl), NULL);
1193           t = built_in_decls[BUILT_IN_ALLOCA];
1194           t = build_function_call_expr (t, args);
1195           t = fold_convert (ptr_type, t);
1196           t = build2 (MODIFY_EXPR, void_type_node, addr, t);
1197
1198           gimplify_and_add (t, stmt_p);
1199
1200           /* Indicate that we need to restore the stack level when the
1201              enclosing BIND_EXPR is exited.  */
1202           gimplify_ctxp->save_stack = true;
1203         }
1204
1205       if (init && init != error_mark_node)
1206         {
1207           if (!TREE_STATIC (decl))
1208             {
1209               DECL_INITIAL (decl) = NULL_TREE;
1210               init = build2 (INIT_EXPR, void_type_node, decl, init);
1211               gimplify_and_add (init, stmt_p);
1212             }
1213           else
1214             /* We must still examine initializers for static variables
1215                as they may contain a label address.  */
1216             walk_tree (&init, force_labels_r, NULL, NULL);
1217         }
1218
1219       /* Some front ends do not explicitly declare all anonymous
1220          artificial variables.  We compensate here by declaring the
1221          variables, though it would be better if the front ends would
1222          explicitly declare them.  */
1223       if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1224           && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1225         gimple_add_tmp_var (decl);
1226     }
1227
1228   return GS_ALL_DONE;
1229 }
1230
1231 /* Gimplify a LOOP_EXPR.  Normally this just involves gimplifying the body
1232    and replacing the LOOP_EXPR with goto, but if the loop contains an
1233    EXIT_EXPR, we need to append a label for it to jump to.  */
1234
1235 static enum gimplify_status
1236 gimplify_loop_expr (tree *expr_p, tree *pre_p)
1237 {
1238   tree saved_label = gimplify_ctxp->exit_label;
1239   tree start_label = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
1240   tree jump_stmt = build_and_jump (&LABEL_EXPR_LABEL (start_label));
1241
1242   append_to_statement_list (start_label, pre_p);
1243
1244   gimplify_ctxp->exit_label = NULL_TREE;
1245
1246   gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1247
1248   if (gimplify_ctxp->exit_label)
1249     {
1250       append_to_statement_list (jump_stmt, pre_p);
1251       *expr_p = build1 (LABEL_EXPR, void_type_node, gimplify_ctxp->exit_label);
1252     }
1253   else
1254     *expr_p = jump_stmt;
1255
1256   gimplify_ctxp->exit_label = saved_label;
1257
1258   return GS_ALL_DONE;
1259 }
1260
1261 /* Compare two case labels.  Because the front end should already have
1262    made sure that case ranges do not overlap, it is enough to only compare
1263    the CASE_LOW values of each case label.  */
1264
1265 static int
1266 compare_case_labels (const void *p1, const void *p2)
1267 {
1268   tree case1 = *(tree *)p1;
1269   tree case2 = *(tree *)p2;
1270
1271   return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1272 }
1273
1274 /* Sort the case labels in LABEL_VEC in place in ascending order.  */
1275
1276 void
1277 sort_case_labels (tree label_vec)
1278 {
1279   size_t len = TREE_VEC_LENGTH (label_vec);
1280   tree default_case = TREE_VEC_ELT (label_vec, len - 1);
1281
1282   if (CASE_LOW (default_case))
1283     {
1284       size_t i;
1285
1286       /* The last label in the vector should be the default case
1287          but it is not.  */
1288       for (i = 0; i < len; ++i)
1289         {
1290           tree t = TREE_VEC_ELT (label_vec, i);
1291           if (!CASE_LOW (t))
1292             {
1293               default_case = t;
1294               TREE_VEC_ELT (label_vec, i) = TREE_VEC_ELT (label_vec, len - 1);
1295               TREE_VEC_ELT (label_vec, len - 1) = default_case;
1296               break;
1297             }
1298         }
1299     }
1300
1301   qsort (&TREE_VEC_ELT (label_vec, 0), len - 1, sizeof (tree),
1302          compare_case_labels);
1303 }
1304
1305 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1306    branch to.  */
1307
1308 static enum gimplify_status
1309 gimplify_switch_expr (tree *expr_p, tree *pre_p)
1310 {
1311   tree switch_expr = *expr_p;
1312   enum gimplify_status ret;
1313
1314   ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL,
1315                        is_gimple_val, fb_rvalue);
1316
1317   if (SWITCH_BODY (switch_expr))
1318     {
1319       VEC(tree,heap) *labels, *saved_labels;
1320       tree label_vec, default_case = NULL_TREE;
1321       size_t i, len;
1322
1323       /* If someone can be bothered to fill in the labels, they can
1324          be bothered to null out the body too.  */
1325       gcc_assert (!SWITCH_LABELS (switch_expr));
1326
1327       saved_labels = gimplify_ctxp->case_labels;
1328       gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1329
1330       gimplify_to_stmt_list (&SWITCH_BODY (switch_expr));
1331
1332       labels = gimplify_ctxp->case_labels;
1333       gimplify_ctxp->case_labels = saved_labels;
1334
1335       i = 0;
1336       while (i < VEC_length (tree, labels))
1337         {
1338           tree elt = VEC_index (tree, labels, i);
1339           tree low = CASE_LOW (elt);
1340           bool remove_element = FALSE;
1341
1342           if (low)
1343             {
1344               /* Discard empty ranges.  */
1345               tree high = CASE_HIGH (elt);
1346               if (high && INT_CST_LT (high, low))
1347                 remove_element = TRUE;
1348             }
1349           else
1350             {
1351               /* The default case must be the last label in the list.  */
1352               gcc_assert (!default_case);
1353               default_case = elt;
1354               remove_element = TRUE;
1355             }
1356
1357           if (remove_element)
1358             VEC_ordered_remove (tree, labels, i);
1359           else
1360             i++;
1361         }
1362       len = i;
1363
1364       label_vec = make_tree_vec (len + 1);
1365       SWITCH_LABELS (*expr_p) = label_vec;
1366       append_to_statement_list (switch_expr, pre_p);
1367
1368       if (! default_case)
1369         {
1370           /* If the switch has no default label, add one, so that we jump
1371              around the switch body.  */
1372           default_case = build3 (CASE_LABEL_EXPR, void_type_node, NULL_TREE,
1373                                  NULL_TREE, create_artificial_label ());
1374           append_to_statement_list (SWITCH_BODY (switch_expr), pre_p);
1375           *expr_p = build1 (LABEL_EXPR, void_type_node,
1376                             CASE_LABEL (default_case));
1377         }
1378       else
1379         *expr_p = SWITCH_BODY (switch_expr);
1380
1381       for (i = 0; i < len; ++i)
1382         TREE_VEC_ELT (label_vec, i) = VEC_index (tree, labels, i);
1383       TREE_VEC_ELT (label_vec, len) = default_case;
1384
1385       VEC_free (tree, heap, labels);
1386
1387       sort_case_labels (label_vec);
1388
1389       SWITCH_BODY (switch_expr) = NULL;
1390     }
1391   else
1392     gcc_assert (SWITCH_LABELS (switch_expr));
1393
1394   return ret;
1395 }
1396
1397 static enum gimplify_status
1398 gimplify_case_label_expr (tree *expr_p)
1399 {
1400   tree expr = *expr_p;
1401   struct gimplify_ctx *ctxp;
1402
1403   /* Invalid OpenMP programs can play Duff's Device type games with
1404      #pragma omp parallel.  At least in the C front end, we don't
1405      detect such invalid branches until after gimplification.  */
1406   for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1407     if (ctxp->case_labels)
1408       break;
1409
1410   VEC_safe_push (tree, heap, ctxp->case_labels, expr);
1411   *expr_p = build1 (LABEL_EXPR, void_type_node, CASE_LABEL (expr));
1412   return GS_ALL_DONE;
1413 }
1414
1415 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1416    if necessary.  */
1417
1418 tree
1419 build_and_jump (tree *label_p)
1420 {
1421   if (label_p == NULL)
1422     /* If there's nowhere to jump, just fall through.  */
1423     return NULL_TREE;
1424
1425   if (*label_p == NULL_TREE)
1426     {
1427       tree label = create_artificial_label ();
1428       *label_p = label;
1429     }
1430
1431   return build1 (GOTO_EXPR, void_type_node, *label_p);
1432 }
1433
1434 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1435    This also involves building a label to jump to and communicating it to
1436    gimplify_loop_expr through gimplify_ctxp->exit_label.  */
1437
1438 static enum gimplify_status
1439 gimplify_exit_expr (tree *expr_p)
1440 {
1441   tree cond = TREE_OPERAND (*expr_p, 0);
1442   tree expr;
1443
1444   expr = build_and_jump (&gimplify_ctxp->exit_label);
1445   expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1446   *expr_p = expr;
1447
1448   return GS_OK;
1449 }
1450
1451 /* A helper function to be called via walk_tree.  Mark all labels under *TP
1452    as being forced.  To be called for DECL_INITIAL of static variables.  */
1453
1454 tree
1455 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1456 {
1457   if (TYPE_P (*tp))
1458     *walk_subtrees = 0;
1459   if (TREE_CODE (*tp) == LABEL_DECL)
1460     FORCED_LABEL (*tp) = 1;
1461
1462   return NULL_TREE;
1463 }
1464
1465 /* *EXPR_P is a COMPONENT_REF being used as an rvalue.  If its type is
1466    different from its canonical type, wrap the whole thing inside a
1467    NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1468    type.
1469
1470    The canonical type of a COMPONENT_REF is the type of the field being
1471    referenced--unless the field is a bit-field which can be read directly
1472    in a smaller mode, in which case the canonical type is the
1473    sign-appropriate type corresponding to that mode.  */
1474
1475 static void
1476 canonicalize_component_ref (tree *expr_p)
1477 {
1478   tree expr = *expr_p;
1479   tree type;
1480
1481   gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1482
1483   if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1484     type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1485   else
1486     type = TREE_TYPE (TREE_OPERAND (expr, 1));
1487
1488   if (TREE_TYPE (expr) != type)
1489     {
1490       tree old_type = TREE_TYPE (expr);
1491
1492       /* Set the type of the COMPONENT_REF to the underlying type.  */
1493       TREE_TYPE (expr) = type;
1494
1495       /* And wrap the whole thing inside a NOP_EXPR.  */
1496       expr = build1 (NOP_EXPR, old_type, expr);
1497
1498       *expr_p = expr;
1499     }
1500 }
1501
1502 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1503    to foo, embed that change in the ADDR_EXPR by converting
1504       T array[U];
1505       (T *)&array
1506    ==>
1507       &array[L]
1508    where L is the lower bound.  For simplicity, only do this for constant
1509    lower bound.  */
1510
1511 static void
1512 canonicalize_addr_expr (tree *expr_p)
1513 {
1514   tree expr = *expr_p;
1515   tree ctype = TREE_TYPE (expr);
1516   tree addr_expr = TREE_OPERAND (expr, 0);
1517   tree atype = TREE_TYPE (addr_expr);
1518   tree dctype, datype, ddatype, otype, obj_expr;
1519
1520   /* Both cast and addr_expr types should be pointers.  */
1521   if (!POINTER_TYPE_P (ctype) || !POINTER_TYPE_P (atype))
1522     return;
1523
1524   /* The addr_expr type should be a pointer to an array.  */
1525   datype = TREE_TYPE (atype);
1526   if (TREE_CODE (datype) != ARRAY_TYPE)
1527     return;
1528
1529   /* Both cast and addr_expr types should address the same object type.  */
1530   dctype = TREE_TYPE (ctype);
1531   ddatype = TREE_TYPE (datype);
1532   if (!lang_hooks.types_compatible_p (ddatype, dctype))
1533     return;
1534
1535   /* The addr_expr and the object type should match.  */
1536   obj_expr = TREE_OPERAND (addr_expr, 0);
1537   otype = TREE_TYPE (obj_expr);
1538   if (!lang_hooks.types_compatible_p (otype, datype))
1539     return;
1540
1541   /* The lower bound and element sizes must be constant.  */
1542   if (!TYPE_SIZE_UNIT (dctype)
1543       || TREE_CODE (TYPE_SIZE_UNIT (dctype)) != INTEGER_CST
1544       || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1545       || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1546     return;
1547
1548   /* All checks succeeded.  Build a new node to merge the cast.  */
1549   *expr_p = build4 (ARRAY_REF, dctype, obj_expr,
1550                     TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1551                     TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1552                     size_binop (EXACT_DIV_EXPR, TYPE_SIZE_UNIT (dctype),
1553                                 size_int (TYPE_ALIGN_UNIT (dctype))));
1554   *expr_p = build1 (ADDR_EXPR, ctype, *expr_p);
1555 }
1556
1557 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR.  Remove it and/or other conversions
1558    underneath as appropriate.  */
1559
1560 static enum gimplify_status
1561 gimplify_conversion (tree *expr_p)
1562 {
1563   gcc_assert (TREE_CODE (*expr_p) == NOP_EXPR
1564               || TREE_CODE (*expr_p) == CONVERT_EXPR);
1565   
1566   /* Then strip away all but the outermost conversion.  */
1567   STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1568
1569   /* And remove the outermost conversion if it's useless.  */
1570   if (tree_ssa_useless_type_conversion (*expr_p))
1571     *expr_p = TREE_OPERAND (*expr_p, 0);
1572
1573   /* If we still have a conversion at the toplevel,
1574      then canonicalize some constructs.  */
1575   if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1576     {
1577       tree sub = TREE_OPERAND (*expr_p, 0);
1578
1579       /* If a NOP conversion is changing the type of a COMPONENT_REF
1580          expression, then canonicalize its type now in order to expose more
1581          redundant conversions.  */
1582       if (TREE_CODE (sub) == COMPONENT_REF)
1583         canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1584
1585       /* If a NOP conversion is changing a pointer to array of foo
1586          to a pointer to foo, embed that change in the ADDR_EXPR.  */
1587       else if (TREE_CODE (sub) == ADDR_EXPR)
1588         canonicalize_addr_expr (expr_p);
1589     }
1590
1591   return GS_OK;
1592 }
1593
1594 /* Gimplify a VAR_DECL or PARM_DECL.  Returns GS_OK if we expanded a 
1595    DECL_VALUE_EXPR, and it's worth re-examining things.  */
1596
1597 static enum gimplify_status
1598 gimplify_var_or_parm_decl (tree *expr_p)
1599 {
1600   tree decl = *expr_p;
1601
1602   /* ??? If this is a local variable, and it has not been seen in any
1603      outer BIND_EXPR, then it's probably the result of a duplicate
1604      declaration, for which we've already issued an error.  It would
1605      be really nice if the front end wouldn't leak these at all.
1606      Currently the only known culprit is C++ destructors, as seen
1607      in g++.old-deja/g++.jason/binding.C.  */
1608   if (TREE_CODE (decl) == VAR_DECL
1609       && !DECL_SEEN_IN_BIND_EXPR_P (decl)
1610       && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
1611       && decl_function_context (decl) == current_function_decl)
1612     {
1613       gcc_assert (errorcount || sorrycount);
1614       return GS_ERROR;
1615     }
1616
1617   /* When within an OpenMP context, notice uses of variables.  */
1618   if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
1619     return GS_ALL_DONE;
1620
1621   /* If the decl is an alias for another expression, substitute it now.  */
1622   if (DECL_HAS_VALUE_EXPR_P (decl))
1623     {
1624       *expr_p = unshare_expr (DECL_VALUE_EXPR (decl));
1625       return GS_OK;
1626     }
1627
1628   return GS_ALL_DONE;
1629 }
1630
1631
1632 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1633    node pointed to by EXPR_P.
1634
1635       compound_lval
1636               : min_lval '[' val ']'
1637               | min_lval '.' ID
1638               | compound_lval '[' val ']'
1639               | compound_lval '.' ID
1640
1641    This is not part of the original SIMPLE definition, which separates
1642    array and member references, but it seems reasonable to handle them
1643    together.  Also, this way we don't run into problems with union
1644    aliasing; gcc requires that for accesses through a union to alias, the
1645    union reference must be explicit, which was not always the case when we
1646    were splitting up array and member refs.
1647
1648    PRE_P points to the list where side effects that must happen before
1649      *EXPR_P should be stored.
1650
1651    POST_P points to the list where side effects that must happen after
1652      *EXPR_P should be stored.  */
1653
1654 static enum gimplify_status
1655 gimplify_compound_lval (tree *expr_p, tree *pre_p,
1656                         tree *post_p, fallback_t fallback)
1657 {
1658   tree *p;
1659   VEC(tree,heap) *stack;
1660   enum gimplify_status ret = GS_OK, tret;
1661   int i;
1662
1663   /* Create a stack of the subexpressions so later we can walk them in
1664      order from inner to outer.  */
1665   stack = VEC_alloc (tree, heap, 10);
1666
1667   /* We can handle anything that get_inner_reference can deal with.  */
1668   for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
1669     {
1670     restart:
1671       /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs.  */
1672       if (TREE_CODE (*p) == INDIRECT_REF)
1673         *p = fold_indirect_ref (*p);
1674
1675       if (handled_component_p (*p))
1676         ;
1677       /* Expand DECL_VALUE_EXPR now.  In some cases that may expose
1678          additional COMPONENT_REFs.  */
1679       else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
1680                && gimplify_var_or_parm_decl (p) == GS_OK)
1681         goto restart;
1682       else
1683         break;
1684                
1685       VEC_safe_push (tree, heap, stack, *p);
1686     }
1687
1688   gcc_assert (VEC_length (tree, stack));
1689
1690   /* Now STACK is a stack of pointers to all the refs we've walked through
1691      and P points to the innermost expression.
1692
1693      Java requires that we elaborated nodes in source order.  That
1694      means we must gimplify the inner expression followed by each of
1695      the indices, in order.  But we can't gimplify the inner
1696      expression until we deal with any variable bounds, sizes, or
1697      positions in order to deal with PLACEHOLDER_EXPRs.
1698
1699      So we do this in three steps.  First we deal with the annotations
1700      for any variables in the components, then we gimplify the base,
1701      then we gimplify any indices, from left to right.  */
1702   for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
1703     {
1704       tree t = VEC_index (tree, stack, i);
1705
1706       if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1707         {
1708           /* Gimplify the low bound and element type size and put them into
1709              the ARRAY_REF.  If these values are set, they have already been
1710              gimplified.  */
1711           if (!TREE_OPERAND (t, 2))
1712             {
1713               tree low = unshare_expr (array_ref_low_bound (t));
1714               if (!is_gimple_min_invariant (low))
1715                 {
1716                   TREE_OPERAND (t, 2) = low;
1717                   tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1718                                         is_gimple_formal_tmp_reg, fb_rvalue);
1719                   ret = MIN (ret, tret);
1720                 }
1721             }
1722
1723           if (!TREE_OPERAND (t, 3))
1724             {
1725               tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
1726               tree elmt_size = unshare_expr (array_ref_element_size (t));
1727               tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
1728
1729               /* Divide the element size by the alignment of the element
1730                  type (above).  */
1731               elmt_size = size_binop (EXACT_DIV_EXPR, elmt_size, factor);
1732
1733               if (!is_gimple_min_invariant (elmt_size))
1734                 {
1735                   TREE_OPERAND (t, 3) = elmt_size;
1736                   tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
1737                                         is_gimple_formal_tmp_reg, fb_rvalue);
1738                   ret = MIN (ret, tret);
1739                 }
1740             }
1741         }
1742       else if (TREE_CODE (t) == COMPONENT_REF)
1743         {
1744           /* Set the field offset into T and gimplify it.  */
1745           if (!TREE_OPERAND (t, 2))
1746             {
1747               tree offset = unshare_expr (component_ref_field_offset (t));
1748               tree field = TREE_OPERAND (t, 1);
1749               tree factor
1750                 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
1751
1752               /* Divide the offset by its alignment.  */
1753               offset = size_binop (EXACT_DIV_EXPR, offset, factor);
1754
1755               if (!is_gimple_min_invariant (offset))
1756                 {
1757                   TREE_OPERAND (t, 2) = offset;
1758                   tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1759                                         is_gimple_formal_tmp_reg, fb_rvalue);
1760                   ret = MIN (ret, tret);
1761                 }
1762             }
1763         }
1764     }
1765
1766   /* Step 2 is to gimplify the base expression.  Make sure lvalue is set
1767      so as to match the min_lval predicate.  Failure to do so may result
1768      in the creation of large aggregate temporaries.  */
1769   tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
1770                         fallback | fb_lvalue);
1771   ret = MIN (ret, tret);
1772
1773   /* And finally, the indices and operands to BIT_FIELD_REF.  During this
1774      loop we also remove any useless conversions.  */
1775   for (; VEC_length (tree, stack) > 0; )
1776     {
1777       tree t = VEC_pop (tree, stack);
1778
1779       if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1780         {
1781           /* Gimplify the dimension.
1782              Temporary fix for gcc.c-torture/execute/20040313-1.c.
1783              Gimplify non-constant array indices into a temporary
1784              variable.
1785              FIXME - The real fix is to gimplify post-modify
1786              expressions into a minimal gimple lvalue.  However, that
1787              exposes bugs in alias analysis.  The alias analyzer does
1788              not handle &PTR->FIELD very well.  Will fix after the
1789              branch is merged into mainline (dnovillo 2004-05-03).  */
1790           if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
1791             {
1792               tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1793                                     is_gimple_formal_tmp_reg, fb_rvalue);
1794               ret = MIN (ret, tret);
1795             }
1796         }
1797       else if (TREE_CODE (t) == BIT_FIELD_REF)
1798         {
1799           tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1800                                 is_gimple_val, fb_rvalue);
1801           ret = MIN (ret, tret);
1802           tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1803                                 is_gimple_val, fb_rvalue);
1804           ret = MIN (ret, tret);
1805         }
1806
1807       STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
1808
1809       /* The innermost expression P may have originally had TREE_SIDE_EFFECTS
1810          set which would have caused all the outer expressions in EXPR_P
1811          leading to P to also have had TREE_SIDE_EFFECTS set.  */
1812       recalculate_side_effects (t);
1813     }
1814
1815   tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1816   ret = MIN (ret, tret);
1817
1818   /* If the outermost expression is a COMPONENT_REF, canonicalize its type.  */
1819   if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
1820     {
1821       canonicalize_component_ref (expr_p);
1822       ret = MIN (ret, GS_OK);
1823     }
1824
1825   VEC_free (tree, heap, stack);
1826
1827   return ret;
1828 }
1829
1830 /*  Gimplify the self modifying expression pointed to by EXPR_P
1831     (++, --, +=, -=).
1832
1833     PRE_P points to the list where side effects that must happen before
1834         *EXPR_P should be stored.
1835
1836     POST_P points to the list where side effects that must happen after
1837         *EXPR_P should be stored.
1838
1839     WANT_VALUE is nonzero iff we want to use the value of this expression
1840         in another expression.  */
1841
1842 static enum gimplify_status
1843 gimplify_self_mod_expr (tree *expr_p, tree *pre_p, tree *post_p,
1844                         bool want_value)
1845 {
1846   enum tree_code code;
1847   tree lhs, lvalue, rhs, t1;
1848   bool postfix;
1849   enum tree_code arith_code;
1850   enum gimplify_status ret;
1851
1852   code = TREE_CODE (*expr_p);
1853
1854   gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
1855               || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
1856
1857   /* Prefix or postfix?  */
1858   if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
1859     /* Faster to treat as prefix if result is not used.  */
1860     postfix = want_value;
1861   else
1862     postfix = false;
1863
1864   /* Add or subtract?  */
1865   if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
1866     arith_code = PLUS_EXPR;
1867   else
1868     arith_code = MINUS_EXPR;
1869
1870   /* Gimplify the LHS into a GIMPLE lvalue.  */
1871   lvalue = TREE_OPERAND (*expr_p, 0);
1872   ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1873   if (ret == GS_ERROR)
1874     return ret;
1875
1876   /* Extract the operands to the arithmetic operation.  */
1877   lhs = lvalue;
1878   rhs = TREE_OPERAND (*expr_p, 1);
1879
1880   /* For postfix operator, we evaluate the LHS to an rvalue and then use
1881      that as the result value and in the postqueue operation.  */
1882   if (postfix)
1883     {
1884       ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
1885       if (ret == GS_ERROR)
1886         return ret;
1887     }
1888
1889   t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
1890   t1 = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
1891
1892   if (postfix)
1893     {
1894       gimplify_and_add (t1, post_p);
1895       *expr_p = lhs;
1896       return GS_ALL_DONE;
1897     }
1898   else
1899     {
1900       *expr_p = t1;
1901       return GS_OK;
1902     }
1903 }
1904
1905 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR.  */
1906
1907 static void
1908 maybe_with_size_expr (tree *expr_p)
1909 {
1910   tree expr = *expr_p;
1911   tree type = TREE_TYPE (expr);
1912   tree size;
1913
1914   /* If we've already wrapped this or the type is error_mark_node, we can't do
1915      anything.  */
1916   if (TREE_CODE (expr) == WITH_SIZE_EXPR
1917       || type == error_mark_node)
1918     return;
1919
1920   /* If the size isn't known or is a constant, we have nothing to do.  */
1921   size = TYPE_SIZE_UNIT (type);
1922   if (!size || TREE_CODE (size) == INTEGER_CST)
1923     return;
1924
1925   /* Otherwise, make a WITH_SIZE_EXPR.  */
1926   size = unshare_expr (size);
1927   size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
1928   *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
1929 }
1930
1931 /* Subroutine of gimplify_call_expr:  Gimplify a single argument.  */
1932
1933 static enum gimplify_status
1934 gimplify_arg (tree *expr_p, tree *pre_p)
1935 {
1936   bool (*test) (tree);
1937   fallback_t fb;
1938
1939   /* In general, we allow lvalues for function arguments to avoid
1940      extra overhead of copying large aggregates out of even larger
1941      aggregates into temporaries only to copy the temporaries to
1942      the argument list.  Make optimizers happy by pulling out to
1943      temporaries those types that fit in registers.  */
1944   if (is_gimple_reg_type (TREE_TYPE (*expr_p)))
1945     test = is_gimple_val, fb = fb_rvalue;
1946   else
1947     test = is_gimple_lvalue, fb = fb_either;
1948
1949   /* If this is a variable sized type, we must remember the size.  */
1950   maybe_with_size_expr (expr_p);
1951
1952   /* There is a sequence point before a function call.  Side effects in
1953      the argument list must occur before the actual call. So, when
1954      gimplifying arguments, force gimplify_expr to use an internal
1955      post queue which is then appended to the end of PRE_P.  */
1956   return gimplify_expr (expr_p, pre_p, NULL, test, fb);
1957 }
1958
1959 /* Gimplify the CALL_EXPR node pointed to by EXPR_P.  PRE_P points to the
1960    list where side effects that must happen before *EXPR_P should be stored.
1961    WANT_VALUE is true if the result of the call is desired.  */
1962
1963 static enum gimplify_status
1964 gimplify_call_expr (tree *expr_p, tree *pre_p, bool want_value)
1965 {
1966   tree decl;
1967   tree arglist;
1968   enum gimplify_status ret;
1969
1970   gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
1971
1972   /* For reliable diagnostics during inlining, it is necessary that
1973      every call_expr be annotated with file and line.  */
1974   if (! EXPR_HAS_LOCATION (*expr_p))
1975     SET_EXPR_LOCATION (*expr_p, input_location);
1976
1977   /* This may be a call to a builtin function.
1978
1979      Builtin function calls may be transformed into different
1980      (and more efficient) builtin function calls under certain
1981      circumstances.  Unfortunately, gimplification can muck things
1982      up enough that the builtin expanders are not aware that certain
1983      transformations are still valid.
1984
1985      So we attempt transformation/gimplification of the call before
1986      we gimplify the CALL_EXPR.  At this time we do not manage to
1987      transform all calls in the same manner as the expanders do, but
1988      we do transform most of them.  */
1989   decl = get_callee_fndecl (*expr_p);
1990   if (decl && DECL_BUILT_IN (decl))
1991     {
1992       tree arglist = TREE_OPERAND (*expr_p, 1);
1993       tree new = fold_builtin (decl, arglist, !want_value);
1994
1995       if (new && new != *expr_p)
1996         {
1997           /* There was a transformation of this call which computes the
1998              same value, but in a more efficient way.  Return and try
1999              again.  */
2000           *expr_p = new;
2001           return GS_OK;
2002         }
2003
2004       if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2005           && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_START)
2006         {
2007           if (!arglist || !TREE_CHAIN (arglist))
2008             {
2009               error ("too few arguments to function %<va_start%>");
2010               *expr_p = build_empty_stmt ();
2011               return GS_OK;
2012             }
2013           
2014           if (fold_builtin_next_arg (TREE_CHAIN (arglist)))
2015             {
2016               *expr_p = build_empty_stmt ();
2017               return GS_OK;
2018             }
2019           /* Avoid gimplifying the second argument to va_start, which needs
2020              to be the plain PARM_DECL.  */
2021           return gimplify_arg (&TREE_VALUE (TREE_OPERAND (*expr_p, 1)), pre_p);
2022         }
2023     }
2024
2025   /* There is a sequence point before the call, so any side effects in
2026      the calling expression must occur before the actual call.  Force
2027      gimplify_expr to use an internal post queue.  */
2028   ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, NULL,
2029                        is_gimple_call_addr, fb_rvalue);
2030
2031   if (PUSH_ARGS_REVERSED)
2032     TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
2033   for (arglist = TREE_OPERAND (*expr_p, 1); arglist;
2034        arglist = TREE_CHAIN (arglist))
2035     {
2036       enum gimplify_status t;
2037
2038       t = gimplify_arg (&TREE_VALUE (arglist), pre_p);
2039
2040       if (t == GS_ERROR)
2041         ret = GS_ERROR;
2042     }
2043   if (PUSH_ARGS_REVERSED)
2044     TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
2045
2046   /* Try this again in case gimplification exposed something.  */
2047   if (ret != GS_ERROR)
2048     {
2049       decl = get_callee_fndecl (*expr_p);
2050       if (decl && DECL_BUILT_IN (decl))
2051         {
2052           tree arglist = TREE_OPERAND (*expr_p, 1);
2053           tree new = fold_builtin (decl, arglist, !want_value);
2054
2055           if (new && new != *expr_p)
2056             {
2057               /* There was a transformation of this call which computes the
2058                  same value, but in a more efficient way.  Return and try
2059                  again.  */
2060               *expr_p = new;
2061               return GS_OK;
2062             }
2063         }
2064     }
2065
2066   /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2067      decl.  This allows us to eliminate redundant or useless
2068      calls to "const" functions.  */
2069   if (TREE_CODE (*expr_p) == CALL_EXPR
2070       && (call_expr_flags (*expr_p) & (ECF_CONST | ECF_PURE)))
2071     TREE_SIDE_EFFECTS (*expr_p) = 0;
2072
2073   return ret;
2074 }
2075
2076 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2077    rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2078
2079    TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2080    condition is true or false, respectively.  If null, we should generate
2081    our own to skip over the evaluation of this specific expression.
2082
2083    This function is the tree equivalent of do_jump.
2084
2085    shortcut_cond_r should only be called by shortcut_cond_expr.  */
2086
2087 static tree
2088 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p)
2089 {
2090   tree local_label = NULL_TREE;
2091   tree t, expr = NULL;
2092
2093   /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2094      retain the shortcut semantics.  Just insert the gotos here;
2095      shortcut_cond_expr will append the real blocks later.  */
2096   if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2097     {
2098       /* Turn if (a && b) into
2099
2100          if (a); else goto no;
2101          if (b) goto yes; else goto no;
2102          (no:) */
2103
2104       if (false_label_p == NULL)
2105         false_label_p = &local_label;
2106
2107       t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p);
2108       append_to_statement_list (t, &expr);
2109
2110       t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2111                            false_label_p);
2112       append_to_statement_list (t, &expr);
2113     }
2114   else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2115     {
2116       /* Turn if (a || b) into
2117
2118          if (a) goto yes;
2119          if (b) goto yes; else goto no;
2120          (yes:) */
2121
2122       if (true_label_p == NULL)
2123         true_label_p = &local_label;
2124
2125       t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL);
2126       append_to_statement_list (t, &expr);
2127
2128       t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2129                            false_label_p);
2130       append_to_statement_list (t, &expr);
2131     }
2132   else if (TREE_CODE (pred) == COND_EXPR)
2133     {
2134       /* As long as we're messing with gotos, turn if (a ? b : c) into
2135          if (a)
2136            if (b) goto yes; else goto no;
2137          else
2138            if (c) goto yes; else goto no;  */
2139       expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2140                      shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2141                                       false_label_p),
2142                      shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2143                                       false_label_p));
2144     }
2145   else
2146     {
2147       expr = build3 (COND_EXPR, void_type_node, pred,
2148                      build_and_jump (true_label_p),
2149                      build_and_jump (false_label_p));
2150     }
2151
2152   if (local_label)
2153     {
2154       t = build1 (LABEL_EXPR, void_type_node, local_label);
2155       append_to_statement_list (t, &expr);
2156     }
2157
2158   return expr;
2159 }
2160
2161 static tree
2162 shortcut_cond_expr (tree expr)
2163 {
2164   tree pred = TREE_OPERAND (expr, 0);
2165   tree then_ = TREE_OPERAND (expr, 1);
2166   tree else_ = TREE_OPERAND (expr, 2);
2167   tree true_label, false_label, end_label, t;
2168   tree *true_label_p;
2169   tree *false_label_p;
2170   bool emit_end, emit_false, jump_over_else;
2171   bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2172   bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2173
2174   /* First do simple transformations.  */
2175   if (!else_se)
2176     {
2177       /* If there is no 'else', turn (a && b) into if (a) if (b).  */
2178       while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2179         {
2180           TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2181           then_ = shortcut_cond_expr (expr);
2182           then_se = then_ && TREE_SIDE_EFFECTS (then_);
2183           pred = TREE_OPERAND (pred, 0);
2184           expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2185         }
2186     }
2187   if (!then_se)
2188     {
2189       /* If there is no 'then', turn
2190            if (a || b); else d
2191          into
2192            if (a); else if (b); else d.  */
2193       while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2194         {
2195           TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2196           else_ = shortcut_cond_expr (expr);
2197           else_se = else_ && TREE_SIDE_EFFECTS (else_);
2198           pred = TREE_OPERAND (pred, 0);
2199           expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2200         }
2201     }
2202
2203   /* If we're done, great.  */
2204   if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2205       && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2206     return expr;
2207
2208   /* Otherwise we need to mess with gotos.  Change
2209        if (a) c; else d;
2210      to
2211        if (a); else goto no;
2212        c; goto end;
2213        no: d; end:
2214      and recursively gimplify the condition.  */
2215
2216   true_label = false_label = end_label = NULL_TREE;
2217
2218   /* If our arms just jump somewhere, hijack those labels so we don't
2219      generate jumps to jumps.  */
2220
2221   if (then_
2222       && TREE_CODE (then_) == GOTO_EXPR
2223       && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2224     {
2225       true_label = GOTO_DESTINATION (then_);
2226       then_ = NULL;
2227       then_se = false;
2228     }
2229
2230   if (else_
2231       && TREE_CODE (else_) == GOTO_EXPR
2232       && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2233     {
2234       false_label = GOTO_DESTINATION (else_);
2235       else_ = NULL;
2236       else_se = false;
2237     }
2238
2239   /* If we aren't hijacking a label for the 'then' branch, it falls through.  */
2240   if (true_label)
2241     true_label_p = &true_label;
2242   else
2243     true_label_p = NULL;
2244
2245   /* The 'else' branch also needs a label if it contains interesting code.  */
2246   if (false_label || else_se)
2247     false_label_p = &false_label;
2248   else
2249     false_label_p = NULL;
2250
2251   /* If there was nothing else in our arms, just forward the label(s).  */
2252   if (!then_se && !else_se)
2253     return shortcut_cond_r (pred, true_label_p, false_label_p);
2254
2255   /* If our last subexpression already has a terminal label, reuse it.  */
2256   if (else_se)
2257     expr = expr_last (else_);
2258   else if (then_se)
2259     expr = expr_last (then_);
2260   else
2261     expr = NULL;
2262   if (expr && TREE_CODE (expr) == LABEL_EXPR)
2263     end_label = LABEL_EXPR_LABEL (expr);
2264
2265   /* If we don't care about jumping to the 'else' branch, jump to the end
2266      if the condition is false.  */
2267   if (!false_label_p)
2268     false_label_p = &end_label;
2269
2270   /* We only want to emit these labels if we aren't hijacking them.  */
2271   emit_end = (end_label == NULL_TREE);
2272   emit_false = (false_label == NULL_TREE);
2273
2274   /* We only emit the jump over the else clause if we have to--if the
2275      then clause may fall through.  Otherwise we can wind up with a
2276      useless jump and a useless label at the end of gimplified code,
2277      which will cause us to think that this conditional as a whole
2278      falls through even if it doesn't.  If we then inline a function
2279      which ends with such a condition, that can cause us to issue an
2280      inappropriate warning about control reaching the end of a
2281      non-void function.  */
2282   jump_over_else = block_may_fallthru (then_);
2283
2284   pred = shortcut_cond_r (pred, true_label_p, false_label_p);
2285
2286   expr = NULL;
2287   append_to_statement_list (pred, &expr);
2288
2289   append_to_statement_list (then_, &expr);
2290   if (else_se)
2291     {
2292       if (jump_over_else)
2293         {
2294           t = build_and_jump (&end_label);
2295           append_to_statement_list (t, &expr);
2296         }
2297       if (emit_false)
2298         {
2299           t = build1 (LABEL_EXPR, void_type_node, false_label);
2300           append_to_statement_list (t, &expr);
2301         }
2302       append_to_statement_list (else_, &expr);
2303     }
2304   if (emit_end && end_label)
2305     {
2306       t = build1 (LABEL_EXPR, void_type_node, end_label);
2307       append_to_statement_list (t, &expr);
2308     }
2309
2310   return expr;
2311 }
2312
2313 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE.  */
2314
2315 tree
2316 gimple_boolify (tree expr)
2317 {
2318   tree type = TREE_TYPE (expr);
2319
2320   if (TREE_CODE (type) == BOOLEAN_TYPE)
2321     return expr;
2322
2323   switch (TREE_CODE (expr))
2324     {
2325     case TRUTH_AND_EXPR:
2326     case TRUTH_OR_EXPR:
2327     case TRUTH_XOR_EXPR:
2328     case TRUTH_ANDIF_EXPR:
2329     case TRUTH_ORIF_EXPR:
2330       /* Also boolify the arguments of truth exprs.  */
2331       TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2332       /* FALLTHRU */
2333
2334     case TRUTH_NOT_EXPR:
2335       TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2336       /* FALLTHRU */
2337
2338     case EQ_EXPR: case NE_EXPR:
2339     case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2340       /* These expressions always produce boolean results.  */
2341       TREE_TYPE (expr) = boolean_type_node;
2342       return expr;
2343
2344     default:
2345       /* Other expressions that get here must have boolean values, but
2346          might need to be converted to the appropriate mode.  */
2347       return fold_convert (boolean_type_node, expr);
2348     }
2349 }
2350
2351 /*  Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
2352     into
2353
2354     if (p)                      if (p)
2355       t1 = a;                     a;
2356     else                or      else
2357       t1 = b;                     b;
2358     t1;
2359
2360     The second form is used when *EXPR_P is of type void.
2361
2362     TARGET is the tree for T1 above.
2363
2364     PRE_P points to the list where side effects that must happen before
2365       *EXPR_P should be stored.  */
2366
2367 static enum gimplify_status
2368 gimplify_cond_expr (tree *expr_p, tree *pre_p, fallback_t fallback)
2369 {
2370   tree expr = *expr_p;
2371   tree tmp, tmp2, type;
2372   enum gimplify_status ret;
2373
2374   type = TREE_TYPE (expr);
2375
2376   /* If this COND_EXPR has a value, copy the values into a temporary within
2377      the arms.  */
2378   if (! VOID_TYPE_P (type))
2379     {
2380       tree result;
2381
2382       if ((fallback & fb_lvalue) == 0)
2383         {
2384           result = tmp2 = tmp = create_tmp_var (TREE_TYPE (expr), "iftmp");
2385           ret = GS_ALL_DONE;
2386         }
2387       else
2388         {
2389           tree type = build_pointer_type (TREE_TYPE (expr));
2390
2391           if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2392             TREE_OPERAND (expr, 1) =
2393               build_fold_addr_expr (TREE_OPERAND (expr, 1));
2394
2395           if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2396             TREE_OPERAND (expr, 2) =
2397               build_fold_addr_expr (TREE_OPERAND (expr, 2));
2398           
2399           tmp2 = tmp = create_tmp_var (type, "iftmp");
2400
2401           expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (expr, 0),
2402                          TREE_OPERAND (expr, 1), TREE_OPERAND (expr, 2));
2403
2404           result = build_fold_indirect_ref (tmp);
2405           ret = GS_ALL_DONE;
2406         }
2407
2408       /* Build the then clause, 't1 = a;'.  But don't build an assignment
2409          if this branch is void; in C++ it can be, if it's a throw.  */
2410       if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2411         TREE_OPERAND (expr, 1)
2412           = build2 (MODIFY_EXPR, void_type_node, tmp, TREE_OPERAND (expr, 1));
2413
2414       /* Build the else clause, 't1 = b;'.  */
2415       if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2416         TREE_OPERAND (expr, 2)
2417           = build2 (MODIFY_EXPR, void_type_node, tmp2, TREE_OPERAND (expr, 2));
2418
2419       TREE_TYPE (expr) = void_type_node;
2420       recalculate_side_effects (expr);
2421
2422       /* Move the COND_EXPR to the prequeue.  */
2423       gimplify_and_add (expr, pre_p);
2424
2425       *expr_p = result;
2426       return ret;
2427     }
2428
2429   /* Make sure the condition has BOOLEAN_TYPE.  */
2430   TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2431
2432   /* Break apart && and || conditions.  */
2433   if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
2434       || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
2435     {
2436       expr = shortcut_cond_expr (expr);
2437
2438       if (expr != *expr_p)
2439         {
2440           *expr_p = expr;
2441
2442           /* We can't rely on gimplify_expr to re-gimplify the expanded
2443              form properly, as cleanups might cause the target labels to be
2444              wrapped in a TRY_FINALLY_EXPR.  To prevent that, we need to
2445              set up a conditional context.  */
2446           gimple_push_condition ();
2447           gimplify_stmt (expr_p);
2448           gimple_pop_condition (pre_p);
2449
2450           return GS_ALL_DONE;
2451         }
2452     }
2453
2454   /* Now do the normal gimplification.  */
2455   ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2456                        is_gimple_condexpr, fb_rvalue);
2457
2458   gimple_push_condition ();
2459
2460   gimplify_to_stmt_list (&TREE_OPERAND (expr, 1));
2461   gimplify_to_stmt_list (&TREE_OPERAND (expr, 2));
2462   recalculate_side_effects (expr);
2463
2464   gimple_pop_condition (pre_p);
2465
2466   if (ret == GS_ERROR)
2467     ;
2468   else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2469     ret = GS_ALL_DONE;
2470   else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 2)))
2471     /* Rewrite "if (a); else b" to "if (!a) b"  */
2472     {
2473       TREE_OPERAND (expr, 0) = invert_truthvalue (TREE_OPERAND (expr, 0));
2474       ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2475                            is_gimple_condexpr, fb_rvalue);
2476
2477       tmp = TREE_OPERAND (expr, 1);
2478       TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 2);
2479       TREE_OPERAND (expr, 2) = tmp;
2480     }
2481   else
2482     /* Both arms are empty; replace the COND_EXPR with its predicate.  */
2483     expr = TREE_OPERAND (expr, 0);
2484
2485   *expr_p = expr;
2486   return ret;
2487 }
2488
2489 /* A subroutine of gimplify_modify_expr.  Replace a MODIFY_EXPR with
2490    a call to __builtin_memcpy.  */
2491
2492 static enum gimplify_status
2493 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value)
2494 {
2495   tree args, t, to, to_ptr, from;
2496
2497   to = TREE_OPERAND (*expr_p, 0);
2498   from = TREE_OPERAND (*expr_p, 1);
2499
2500   args = tree_cons (NULL, size, NULL);
2501
2502   t = build_fold_addr_expr (from);
2503   args = tree_cons (NULL, t, args);
2504
2505   to_ptr = build_fold_addr_expr (to);
2506   args = tree_cons (NULL, to_ptr, args);
2507   t = implicit_built_in_decls[BUILT_IN_MEMCPY];
2508   t = build_function_call_expr (t, args);
2509
2510   if (want_value)
2511     {
2512       t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2513       t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2514     }
2515
2516   *expr_p = t;
2517   return GS_OK;
2518 }
2519
2520 /* A subroutine of gimplify_modify_expr.  Replace a MODIFY_EXPR with
2521    a call to __builtin_memset.  In this case we know that the RHS is
2522    a CONSTRUCTOR with an empty element list.  */
2523
2524 static enum gimplify_status
2525 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value)
2526 {
2527   tree args, t, to, to_ptr;
2528
2529   to = TREE_OPERAND (*expr_p, 0);
2530
2531   args = tree_cons (NULL, size, NULL);
2532
2533   args = tree_cons (NULL, integer_zero_node, args);
2534
2535   to_ptr = build_fold_addr_expr (to);
2536   args = tree_cons (NULL, to_ptr, args);
2537   t = implicit_built_in_decls[BUILT_IN_MEMSET];
2538   t = build_function_call_expr (t, args);
2539
2540   if (want_value)
2541     {
2542       t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2543       t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2544     }
2545
2546   *expr_p = t;
2547   return GS_OK;
2548 }
2549
2550 /* A subroutine of gimplify_init_ctor_preeval.  Called via walk_tree,
2551    determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
2552    assignment.  Returns non-null if we detect a potential overlap.  */
2553
2554 struct gimplify_init_ctor_preeval_data
2555 {
2556   /* The base decl of the lhs object.  May be NULL, in which case we
2557      have to assume the lhs is indirect.  */
2558   tree lhs_base_decl;
2559
2560   /* The alias set of the lhs object.  */
2561   int lhs_alias_set;
2562 };
2563
2564 static tree
2565 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
2566 {
2567   struct gimplify_init_ctor_preeval_data *data
2568     = (struct gimplify_init_ctor_preeval_data *) xdata;
2569   tree t = *tp;
2570
2571   /* If we find the base object, obviously we have overlap.  */
2572   if (data->lhs_base_decl == t)
2573     return t;
2574
2575   /* If the constructor component is indirect, determine if we have a
2576      potential overlap with the lhs.  The only bits of information we
2577      have to go on at this point are addressability and alias sets.  */
2578   if (TREE_CODE (t) == INDIRECT_REF
2579       && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2580       && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
2581     return t;
2582
2583   if (IS_TYPE_OR_DECL_P (t))
2584     *walk_subtrees = 0;
2585   return NULL;
2586 }
2587
2588 /* A subroutine of gimplify_init_constructor.  Pre-evaluate *EXPR_P,
2589    force values that overlap with the lhs (as described by *DATA)
2590    into temporaries.  */
2591
2592 static void
2593 gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
2594                             struct gimplify_init_ctor_preeval_data *data)
2595 {
2596   enum gimplify_status one;
2597
2598   /* If the value is invariant, then there's nothing to pre-evaluate.
2599      But ensure it doesn't have any side-effects since a SAVE_EXPR is
2600      invariant but has side effects and might contain a reference to
2601      the object we're initializing.  */
2602   if (TREE_INVARIANT (*expr_p) && !TREE_SIDE_EFFECTS (*expr_p))
2603     return;
2604
2605   /* If the type has non-trivial constructors, we can't pre-evaluate.  */
2606   if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
2607     return;
2608
2609   /* Recurse for nested constructors.  */
2610   if (TREE_CODE (*expr_p) == CONSTRUCTOR)
2611     {
2612       unsigned HOST_WIDE_INT ix;
2613       constructor_elt *ce;
2614       VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
2615
2616       for (ix = 0; VEC_iterate (constructor_elt, v, ix, ce); ix++)
2617         gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
2618       return;
2619     }
2620
2621   /* We can't preevaluate if the type contains a placeholder.  */
2622   if (type_contains_placeholder_p (TREE_TYPE (*expr_p)))
2623     return;
2624
2625   /* Gimplify the constructor element to something appropriate for the rhs
2626      of a MODIFY_EXPR.  Given that we know the lhs is an aggregate, we know
2627      the gimplifier will consider this a store to memory.  Doing this
2628      gimplification now means that we won't have to deal with complicated
2629      language-specific trees, nor trees like SAVE_EXPR that can induce
2630      exponential search behavior.  */
2631   one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
2632   if (one == GS_ERROR)
2633     {
2634       *expr_p = NULL;
2635       return;
2636     }
2637
2638   /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
2639      with the lhs, since "a = { .x=a }" doesn't make sense.  This will
2640      always be true for all scalars, since is_gimple_mem_rhs insists on a
2641      temporary variable for them.  */
2642   if (DECL_P (*expr_p))
2643     return;
2644
2645   /* If this is of variable size, we have no choice but to assume it doesn't
2646      overlap since we can't make a temporary for it.  */
2647   if (!TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (*expr_p))))
2648     return;
2649
2650   /* Otherwise, we must search for overlap ...  */
2651   if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
2652     return;
2653
2654   /* ... and if found, force the value into a temporary.  */
2655   *expr_p = get_formal_tmp_var (*expr_p, pre_p);
2656 }
2657
2658 /* A subroutine of gimplify_init_ctor_eval.  Create a loop for
2659    a RANGE_EXPR in a CONSTRUCTOR for an array.
2660
2661       var = lower;
2662     loop_entry:
2663       object[var] = value;
2664       if (var == upper)
2665         goto loop_exit;
2666       var = var + 1;
2667       goto loop_entry;
2668     loop_exit:
2669
2670    We increment var _after_ the loop exit check because we might otherwise
2671    fail if upper == TYPE_MAX_VALUE (type for upper).
2672
2673    Note that we never have to deal with SAVE_EXPRs here, because this has
2674    already been taken care of for us, in gimplify_init_ctor_preeval().  */
2675
2676 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
2677                                      tree *, bool);
2678
2679 static void
2680 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
2681                                tree value, tree array_elt_type,
2682                                tree *pre_p, bool cleared)
2683 {
2684   tree loop_entry_label, loop_exit_label;
2685   tree var, var_type, cref;
2686
2687   loop_entry_label = create_artificial_label ();
2688   loop_exit_label = create_artificial_label ();
2689
2690   /* Create and initialize the index variable.  */
2691   var_type = TREE_TYPE (upper);
2692   var = create_tmp_var (var_type, NULL);
2693   append_to_statement_list (build2 (MODIFY_EXPR, var_type, var, lower), pre_p);
2694
2695   /* Add the loop entry label.  */
2696   append_to_statement_list (build1 (LABEL_EXPR,
2697                                     void_type_node,
2698                                     loop_entry_label),
2699                             pre_p);
2700
2701   /* Build the reference.  */
2702   cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2703                  var, NULL_TREE, NULL_TREE);
2704
2705   /* If we are a constructor, just call gimplify_init_ctor_eval to do
2706      the store.  Otherwise just assign value to the reference.  */
2707
2708   if (TREE_CODE (value) == CONSTRUCTOR)
2709     /* NB we might have to call ourself recursively through
2710        gimplify_init_ctor_eval if the value is a constructor.  */
2711     gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2712                              pre_p, cleared);
2713   else
2714     append_to_statement_list (build2 (MODIFY_EXPR, TREE_TYPE (cref),
2715                                       cref, value),
2716                               pre_p);
2717
2718   /* We exit the loop when the index var is equal to the upper bound.  */
2719   gimplify_and_add (build3 (COND_EXPR, void_type_node,
2720                             build2 (EQ_EXPR, boolean_type_node,
2721                                     var, upper),
2722                             build1 (GOTO_EXPR,
2723                                     void_type_node,
2724                                     loop_exit_label),
2725                             NULL_TREE),
2726                     pre_p);
2727
2728   /* Otherwise, increment the index var...  */
2729   append_to_statement_list (build2 (MODIFY_EXPR, var_type, var,
2730                                     build2 (PLUS_EXPR, var_type, var,
2731                                             fold_convert (var_type,
2732                                                           integer_one_node))),
2733                             pre_p);
2734
2735   /* ...and jump back to the loop entry.  */
2736   append_to_statement_list (build1 (GOTO_EXPR,
2737                                     void_type_node,
2738                                     loop_entry_label),
2739                             pre_p);
2740
2741   /* Add the loop exit label.  */
2742   append_to_statement_list (build1 (LABEL_EXPR,
2743                                     void_type_node,
2744                                     loop_exit_label),
2745                             pre_p);
2746 }
2747
2748 /* Return true if FDECL is accessing a field that is zero sized.  */
2749    
2750 static bool
2751 zero_sized_field_decl (tree fdecl)
2752 {
2753   if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl) 
2754       && integer_zerop (DECL_SIZE (fdecl)))
2755     return true;
2756   return false;
2757 }
2758
2759 /* Return true if TYPE is zero sized.  */
2760    
2761 static bool
2762 zero_sized_type (tree type)
2763 {
2764   if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
2765       && integer_zerop (TYPE_SIZE (type)))
2766     return true;
2767   return false;
2768 }
2769
2770 /* A subroutine of gimplify_init_constructor.  Generate individual
2771    MODIFY_EXPRs for a CONSTRUCTOR.  OBJECT is the LHS against which the
2772    assignments should happen.  ELTS is the CONSTRUCTOR_ELTS of the
2773    CONSTRUCTOR.  CLEARED is true if the entire LHS object has been
2774    zeroed first.  */
2775
2776 static void
2777 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
2778                          tree *pre_p, bool cleared)
2779 {
2780   tree array_elt_type = NULL;
2781   unsigned HOST_WIDE_INT ix;
2782   tree purpose, value;
2783
2784   if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
2785     array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
2786
2787   FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
2788     {
2789       tree cref, init;
2790
2791       /* NULL values are created above for gimplification errors.  */
2792       if (value == NULL)
2793         continue;
2794
2795       if (cleared && initializer_zerop (value))
2796         continue;
2797
2798       /* ??? Here's to hoping the front end fills in all of the indices,
2799          so we don't have to figure out what's missing ourselves.  */
2800       gcc_assert (purpose);
2801
2802       /* Skip zero-sized fields, unless value has side-effects.  This can
2803          happen with calls to functions returning a zero-sized type, which
2804          we shouldn't discard.  As a number of downstream passes don't
2805          expect sets of zero-sized fields, we rely on the gimplification of
2806          the MODIFY_EXPR we make below to drop the assignment statement.  */
2807       if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
2808         continue;
2809
2810       /* If we have a RANGE_EXPR, we have to build a loop to assign the
2811          whole range.  */
2812       if (TREE_CODE (purpose) == RANGE_EXPR)
2813         {
2814           tree lower = TREE_OPERAND (purpose, 0);
2815           tree upper = TREE_OPERAND (purpose, 1);
2816
2817           /* If the lower bound is equal to upper, just treat it as if
2818              upper was the index.  */
2819           if (simple_cst_equal (lower, upper))
2820             purpose = upper;
2821           else
2822             {
2823               gimplify_init_ctor_eval_range (object, lower, upper, value,
2824                                              array_elt_type, pre_p, cleared);
2825               continue;
2826             }
2827         }
2828
2829       if (array_elt_type)
2830         {
2831           cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2832                          purpose, NULL_TREE, NULL_TREE);
2833         }
2834       else
2835         {
2836           gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
2837           cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
2838                          unshare_expr (object), purpose, NULL_TREE);
2839         }
2840
2841       if (TREE_CODE (value) == CONSTRUCTOR
2842           && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
2843         gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2844                                  pre_p, cleared);
2845       else
2846         {
2847           init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
2848           gimplify_and_add (init, pre_p);
2849         }
2850     }
2851 }
2852
2853 /* A subroutine of gimplify_modify_expr.  Break out elements of a
2854    CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
2855
2856    Note that we still need to clear any elements that don't have explicit
2857    initializers, so if not all elements are initialized we keep the
2858    original MODIFY_EXPR, we just remove all of the constructor elements.  */
2859
2860 static enum gimplify_status
2861 gimplify_init_constructor (tree *expr_p, tree *pre_p,
2862                            tree *post_p, bool want_value)
2863 {
2864   tree object;
2865   tree ctor = TREE_OPERAND (*expr_p, 1);
2866   tree type = TREE_TYPE (ctor);
2867   enum gimplify_status ret;
2868   VEC(constructor_elt,gc) *elts;
2869
2870   if (TREE_CODE (ctor) != CONSTRUCTOR)
2871     return GS_UNHANDLED;
2872
2873   ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
2874                        is_gimple_lvalue, fb_lvalue);
2875   if (ret == GS_ERROR)
2876     return ret;
2877   object = TREE_OPERAND (*expr_p, 0);
2878
2879   elts = CONSTRUCTOR_ELTS (ctor);
2880
2881   ret = GS_ALL_DONE;
2882   switch (TREE_CODE (type))
2883     {
2884     case RECORD_TYPE:
2885     case UNION_TYPE:
2886     case QUAL_UNION_TYPE:
2887     case ARRAY_TYPE:
2888       {
2889         struct gimplify_init_ctor_preeval_data preeval_data;
2890         HOST_WIDE_INT num_type_elements, num_ctor_elements;
2891         HOST_WIDE_INT num_nonzero_elements, num_nonconstant_elements;
2892         bool cleared;
2893
2894         /* Aggregate types must lower constructors to initialization of
2895            individual elements.  The exception is that a CONSTRUCTOR node
2896            with no elements indicates zero-initialization of the whole.  */
2897         if (VEC_empty (constructor_elt, elts))
2898           break;
2899
2900         categorize_ctor_elements (ctor, &num_nonzero_elements,
2901                                   &num_nonconstant_elements,
2902                                   &num_ctor_elements, &cleared);
2903
2904         /* If a const aggregate variable is being initialized, then it
2905            should never be a lose to promote the variable to be static.  */
2906         if (num_nonconstant_elements == 0
2907             && num_nonzero_elements > 1
2908             && TREE_READONLY (object)
2909             && TREE_CODE (object) == VAR_DECL)
2910           {
2911             DECL_INITIAL (object) = ctor;
2912             TREE_STATIC (object) = 1;
2913             if (!DECL_NAME (object))
2914               DECL_NAME (object) = create_tmp_var_name ("C");
2915             walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
2916
2917             /* ??? C++ doesn't automatically append a .<number> to the
2918                assembler name, and even when it does, it looks a FE private
2919                data structures to figure out what that number should be,
2920                which are not set for this variable.  I suppose this is
2921                important for local statics for inline functions, which aren't
2922                "local" in the object file sense.  So in order to get a unique
2923                TU-local symbol, we must invoke the lhd version now.  */
2924             lhd_set_decl_assembler_name (object);
2925
2926             *expr_p = NULL_TREE;
2927             break;
2928           }
2929
2930         /* If there are "lots" of initialized elements, even discounting
2931            those that are not address constants (and thus *must* be
2932            computed at runtime), then partition the constructor into
2933            constant and non-constant parts.  Block copy the constant
2934            parts in, then generate code for the non-constant parts.  */
2935         /* TODO.  There's code in cp/typeck.c to do this.  */
2936
2937         num_type_elements = count_type_elements (type, true);
2938
2939         /* If count_type_elements could not determine number of type elements
2940            for a constant-sized object, assume clearing is needed.
2941            Don't do this for variable-sized objects, as store_constructor
2942            will ignore the clearing of variable-sized objects.  */
2943         if (num_type_elements < 0 && int_size_in_bytes (type) >= 0)
2944           cleared = true;
2945         /* If there are "lots" of zeros, then block clear the object first.  */
2946         else if (num_type_elements - num_nonzero_elements > CLEAR_RATIO
2947                  && num_nonzero_elements < num_type_elements/4)
2948           cleared = true;
2949         /* ??? This bit ought not be needed.  For any element not present
2950            in the initializer, we should simply set them to zero.  Except
2951            we'd need to *find* the elements that are not present, and that
2952            requires trickery to avoid quadratic compile-time behavior in
2953            large cases or excessive memory use in small cases.  */
2954         else if (num_ctor_elements < num_type_elements)
2955           cleared = true;
2956
2957         /* If there are "lots" of initialized elements, and all of them
2958            are valid address constants, then the entire initializer can
2959            be dropped to memory, and then memcpy'd out.  Don't do this
2960            for sparse arrays, though, as it's more efficient to follow
2961            the standard CONSTRUCTOR behavior of memset followed by
2962            individual element initialization.  */
2963         if (num_nonconstant_elements == 0 && !cleared)
2964           {
2965             HOST_WIDE_INT size = int_size_in_bytes (type);
2966             unsigned int align;
2967
2968             /* ??? We can still get unbounded array types, at least
2969                from the C++ front end.  This seems wrong, but attempt
2970                to work around it for now.  */
2971             if (size < 0)
2972               {
2973                 size = int_size_in_bytes (TREE_TYPE (object));
2974                 if (size >= 0)
2975                   TREE_TYPE (ctor) = type = TREE_TYPE (object);
2976               }
2977
2978             /* Find the maximum alignment we can assume for the object.  */
2979             /* ??? Make use of DECL_OFFSET_ALIGN.  */
2980             if (DECL_P (object))
2981               align = DECL_ALIGN (object);
2982             else
2983               align = TYPE_ALIGN (type);
2984
2985             if (size > 0 && !can_move_by_pieces (size, align))
2986               {
2987                 tree new = create_tmp_var_raw (type, "C");
2988
2989                 gimple_add_tmp_var (new);
2990                 TREE_STATIC (new) = 1;
2991                 TREE_READONLY (new) = 1;
2992                 DECL_INITIAL (new) = ctor;
2993                 if (align > DECL_ALIGN (new))
2994                   {
2995                     DECL_ALIGN (new) = align;
2996                     DECL_USER_ALIGN (new) = 1;
2997                   }
2998                 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
2999
3000                 TREE_OPERAND (*expr_p, 1) = new;
3001
3002                 /* This is no longer an assignment of a CONSTRUCTOR, but
3003                    we still may have processing to do on the LHS.  So
3004                    pretend we didn't do anything here to let that happen.  */
3005                 return GS_UNHANDLED;
3006               }
3007           }
3008
3009         if (cleared)
3010           {
3011             /* Zap the CONSTRUCTOR element list, which simplifies this case.
3012                Note that we still have to gimplify, in order to handle the
3013                case of variable sized types.  Avoid shared tree structures.  */
3014             CONSTRUCTOR_ELTS (ctor) = NULL;
3015             object = unshare_expr (object);
3016             gimplify_stmt (expr_p);
3017             append_to_statement_list (*expr_p, pre_p);
3018           }
3019
3020         /* If we have not block cleared the object, or if there are nonzero
3021            elements in the constructor, add assignments to the individual
3022            scalar fields of the object.  */
3023         if (!cleared || num_nonzero_elements > 0)
3024           {
3025             preeval_data.lhs_base_decl = get_base_address (object);
3026             if (!DECL_P (preeval_data.lhs_base_decl))
3027               preeval_data.lhs_base_decl = NULL;
3028             preeval_data.lhs_alias_set = get_alias_set (object);
3029
3030             gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
3031                                         pre_p, post_p, &preeval_data);
3032             gimplify_init_ctor_eval (object, elts, pre_p, cleared);
3033           }
3034
3035         *expr_p = NULL_TREE;
3036       }
3037       break;
3038
3039     case COMPLEX_TYPE:
3040       {
3041         tree r, i;
3042
3043         /* Extract the real and imaginary parts out of the ctor.  */
3044         gcc_assert (VEC_length (constructor_elt, elts) == 2);
3045         r = VEC_index (constructor_elt, elts, 0)->value;
3046         i = VEC_index (constructor_elt, elts, 1)->value;
3047         if (r == NULL || i == NULL)
3048           {
3049             tree zero = fold_convert (TREE_TYPE (type), integer_zero_node);
3050             if (r == NULL)
3051               r = zero;
3052             if (i == NULL)
3053               i = zero;
3054           }
3055
3056         /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3057            represent creation of a complex value.  */
3058         if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3059           {
3060             ctor = build_complex (type, r, i);
3061             TREE_OPERAND (*expr_p, 1) = ctor;
3062           }
3063         else
3064           {
3065             ctor = build2 (COMPLEX_EXPR, type, r, i);
3066             TREE_OPERAND (*expr_p, 1) = ctor;
3067             ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3068                                  rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
3069                                  fb_rvalue);
3070           }
3071       }
3072       break;
3073
3074     case VECTOR_TYPE:
3075       {
3076         unsigned HOST_WIDE_INT ix;
3077         constructor_elt *ce;
3078
3079         /* Go ahead and simplify constant constructors to VECTOR_CST.  */
3080         if (TREE_CONSTANT (ctor))
3081           {
3082             bool constant_p = true;
3083             tree value;
3084
3085             /* Even when ctor is constant, it might contain non-*_CST
3086               elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
3087               belong into VECTOR_CST nodes.  */
3088             FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
3089               if (!CONSTANT_CLASS_P (value))
3090                 {
3091                   constant_p = false;
3092                   break;
3093                 }
3094
3095             if (constant_p)
3096               {
3097                 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
3098                 break;
3099               }
3100           }
3101
3102         /* Vector types use CONSTRUCTOR all the way through gimple
3103           compilation as a general initializer.  */
3104         for (ix = 0; VEC_iterate (constructor_elt, elts, ix, ce); ix++)
3105           {
3106             enum gimplify_status tret;
3107             tret = gimplify_expr (&ce->value, pre_p, post_p,
3108                                   is_gimple_val, fb_rvalue);
3109             if (tret == GS_ERROR)
3110               ret = GS_ERROR;
3111           }
3112       }
3113       break;
3114
3115     default:
3116       /* So how did we get a CONSTRUCTOR for a scalar type?  */
3117       gcc_unreachable ();
3118     }
3119
3120   if (ret == GS_ERROR)
3121     return GS_ERROR;
3122   else if (want_value)
3123     {
3124       append_to_statement_list (*expr_p, pre_p);
3125       *expr_p = object;
3126       return GS_OK;
3127     }
3128   else
3129     return GS_ALL_DONE;
3130 }
3131
3132 /* Given a pointer value OP0, return a simplified version of an
3133    indirection through OP0, or NULL_TREE if no simplification is
3134    possible.  This may only be applied to a rhs of an expression.
3135    Note that the resulting type may be different from the type pointed
3136    to in the sense that it is still compatible from the langhooks
3137    point of view. */
3138
3139 static tree
3140 fold_indirect_ref_rhs (tree t)
3141 {
3142   tree type = TREE_TYPE (TREE_TYPE (t));
3143   tree sub = t;
3144   tree subtype;
3145
3146   STRIP_NOPS (sub);
3147   subtype = TREE_TYPE (sub);
3148   if (!POINTER_TYPE_P (subtype))
3149     return NULL_TREE;
3150
3151   if (TREE_CODE (sub) == ADDR_EXPR)
3152     {
3153       tree op = TREE_OPERAND (sub, 0);
3154       tree optype = TREE_TYPE (op);
3155       /* *&p => p */
3156       if (lang_hooks.types_compatible_p (type, optype))
3157         return op;
3158       /* *(foo *)&fooarray => fooarray[0] */
3159       else if (TREE_CODE (optype) == ARRAY_TYPE
3160                && lang_hooks.types_compatible_p (type, TREE_TYPE (optype)))
3161        {
3162          tree type_domain = TYPE_DOMAIN (optype);
3163          tree min_val = size_zero_node;
3164          if (type_domain && TYPE_MIN_VALUE (type_domain))
3165            min_val = TYPE_MIN_VALUE (type_domain);
3166          return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
3167        }
3168     }
3169
3170   /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3171   if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3172       && lang_hooks.types_compatible_p (type, TREE_TYPE (TREE_TYPE (subtype))))
3173     {
3174       tree type_domain;
3175       tree min_val = size_zero_node;
3176       tree osub = sub;
3177       sub = fold_indirect_ref_rhs (sub);
3178       if (! sub)
3179         sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
3180       type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3181       if (type_domain && TYPE_MIN_VALUE (type_domain))
3182         min_val = TYPE_MIN_VALUE (type_domain);
3183       return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
3184     }
3185
3186   return NULL_TREE;
3187 }
3188
3189 /* Subroutine of gimplify_modify_expr to do simplifications of MODIFY_EXPRs
3190    based on the code of the RHS.  We loop for as long as something changes.  */
3191
3192 static enum gimplify_status
3193 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
3194                           tree *post_p, bool want_value)
3195 {
3196   enum gimplify_status ret = GS_OK;
3197
3198   while (ret != GS_UNHANDLED)
3199     switch (TREE_CODE (*from_p))
3200       {
3201       case INDIRECT_REF:
3202         {
3203           /* If we have code like 
3204
3205                 *(const A*)(A*)&x
3206
3207              where the type of "x" is a (possibly cv-qualified variant
3208              of "A"), treat the entire expression as identical to "x".
3209              This kind of code arises in C++ when an object is bound
3210              to a const reference, and if "x" is a TARGET_EXPR we want
3211              to take advantage of the optimization below.  */
3212           tree t = fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
3213           if (t)
3214             {
3215               *from_p = t;
3216               ret = GS_OK;
3217             }
3218           else
3219             ret = GS_UNHANDLED;
3220           break;
3221         }
3222
3223       case TARGET_EXPR:
3224         {
3225           /* If we are initializing something from a TARGET_EXPR, strip the
3226              TARGET_EXPR and initialize it directly, if possible.  This can't
3227              be done if the initializer is void, since that implies that the
3228              temporary is set in some non-trivial way.
3229
3230              ??? What about code that pulls out the temp and uses it
3231              elsewhere? I think that such code never uses the TARGET_EXPR as
3232              an initializer.  If I'm wrong, we'll die because the temp won't
3233              have any RTL.  In that case, I guess we'll need to replace
3234              references somehow.  */
3235           tree init = TARGET_EXPR_INITIAL (*from_p);
3236
3237           if (!VOID_TYPE_P (TREE_TYPE (init)))
3238             {
3239               *from_p = init;
3240               ret = GS_OK;
3241             }
3242           else
3243             ret = GS_UNHANDLED;
3244         }
3245         break;
3246
3247       case COMPOUND_EXPR:
3248         /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
3249            caught.  */
3250         gimplify_compound_expr (from_p, pre_p, true);
3251         ret = GS_OK;
3252         break;
3253
3254       case CONSTRUCTOR:
3255         /* If we're initializing from a CONSTRUCTOR, break this into
3256            individual MODIFY_EXPRs.  */
3257         return gimplify_init_constructor (expr_p, pre_p, post_p, want_value);
3258
3259       case COND_EXPR:
3260         /* If we're assigning to a non-register type, push the assignment
3261            down into the branches.  This is mandatory for ADDRESSABLE types,
3262            since we cannot generate temporaries for such, but it saves a
3263            copy in other cases as well.  */
3264         if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
3265           {
3266             /* This code should mirror the code in gimplify_cond_expr. */
3267             enum tree_code code = TREE_CODE (*expr_p);
3268             tree cond = *from_p;
3269             tree result = *to_p;
3270
3271             ret = gimplify_expr (&result, pre_p, post_p,
3272                                  is_gimple_min_lval, fb_lvalue);
3273             if (ret != GS_ERROR)
3274               ret = GS_OK;
3275
3276             if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
3277               TREE_OPERAND (cond, 1)
3278                 = build2 (code, void_type_node, result,
3279                           TREE_OPERAND (cond, 1));
3280             if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
3281               TREE_OPERAND (cond, 2)
3282                 = build2 (code, void_type_node, unshare_expr (result),
3283                           TREE_OPERAND (cond, 2));
3284
3285             TREE_TYPE (cond) = void_type_node;
3286             recalculate_side_effects (cond);
3287
3288             if (want_value)
3289               {
3290                 gimplify_and_add (cond, pre_p);
3291                 *expr_p = unshare_expr (result);
3292               }
3293             else
3294               *expr_p = cond;
3295             return ret;
3296           }
3297         else
3298           ret = GS_UNHANDLED;
3299         break;
3300
3301       case CALL_EXPR:
3302         /* For calls that return in memory, give *to_p as the CALL_EXPR's
3303            return slot so that we don't generate a temporary.  */
3304         if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
3305             && aggregate_value_p (*from_p, *from_p))
3306           {
3307             bool use_target;
3308
3309             if (!(rhs_predicate_for (*to_p))(*from_p))
3310               /* If we need a temporary, *to_p isn't accurate.  */
3311               use_target = false;
3312             else if (TREE_CODE (*to_p) == RESULT_DECL
3313                      && DECL_NAME (*to_p) == NULL_TREE
3314                      && needs_to_live_in_memory (*to_p))
3315               /* It's OK to use the return slot directly unless it's an NRV. */
3316               use_target = true;
3317             else if (is_gimple_reg_type (TREE_TYPE (*to_p))
3318                      || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
3319               /* Don't force regs into memory.  */
3320               use_target = false;
3321             else if (TREE_CODE (*to_p) == VAR_DECL
3322                      && DECL_GIMPLE_FORMAL_TEMP_P (*to_p))
3323               /* Don't use the original target if it's a formal temp; we
3324                  don't want to take their addresses.  */
3325               use_target = false;
3326             else if (TREE_CODE (*expr_p) == INIT_EXPR)
3327               /* It's OK to use the target directly if it's being
3328                  initialized. */
3329               use_target = true;
3330             else if (!is_gimple_non_addressable (*to_p))
3331               /* Don't use the original target if it's already addressable;
3332                  if its address escapes, and the called function uses the
3333                  NRV optimization, a conforming program could see *to_p
3334                  change before the called function returns; see c++/19317.
3335                  When optimizing, the return_slot pass marks more functions
3336                  as safe after we have escape info.  */
3337               use_target = false;
3338             else
3339               use_target = true;
3340
3341             if (use_target)
3342               {
3343                 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
3344                 lang_hooks.mark_addressable (*to_p);
3345               }
3346           }
3347
3348         ret = GS_UNHANDLED;
3349         break;
3350
3351       default:
3352         ret = GS_UNHANDLED;
3353         break;
3354       }
3355
3356   return ret;
3357 }
3358
3359 /* Promote partial stores to COMPLEX variables to total stores.  *EXPR_P is
3360    a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
3361    DECL_COMPLEX_GIMPLE_REG_P set.  */
3362
3363 static enum gimplify_status
3364 gimplify_modify_expr_complex_part (tree *expr_p, tree *pre_p, bool want_value)
3365 {
3366   enum tree_code code, ocode;
3367   tree lhs, rhs, new_rhs, other, realpart, imagpart;
3368
3369   lhs = TREE_OPERAND (*expr_p, 0);
3370   rhs = TREE_OPERAND (*expr_p, 1);
3371   code = TREE_CODE (lhs);
3372   lhs = TREE_OPERAND (lhs, 0);
3373
3374   ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
3375   other = build1 (ocode, TREE_TYPE (rhs), lhs);
3376   other = get_formal_tmp_var (other, pre_p);
3377
3378   realpart = code == REALPART_EXPR ? rhs : other;
3379   imagpart = code == REALPART_EXPR ? other : rhs;
3380
3381   if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
3382     new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
3383   else
3384     new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
3385
3386   TREE_OPERAND (*expr_p, 0) = lhs;
3387   TREE_OPERAND (*expr_p, 1) = new_rhs;
3388
3389   if (want_value)
3390     {
3391       append_to_statement_list (*expr_p, pre_p);
3392       *expr_p = rhs;
3393     }
3394
3395   return GS_ALL_DONE;
3396 }
3397
3398 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
3399
3400       modify_expr
3401               : varname '=' rhs
3402               | '*' ID '=' rhs
3403
3404     PRE_P points to the list where side effects that must happen before
3405         *EXPR_P should be stored.
3406
3407     POST_P points to the list where side effects that must happen after
3408         *EXPR_P should be stored.
3409
3410     WANT_VALUE is nonzero iff we want to use the value of this expression
3411         in another expression.  */
3412
3413 static enum gimplify_status
3414 gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
3415 {
3416   tree *from_p = &TREE_OPERAND (*expr_p, 1);
3417   tree *to_p = &TREE_OPERAND (*expr_p, 0);
3418   enum gimplify_status ret = GS_UNHANDLED;
3419
3420   gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
3421               || TREE_CODE (*expr_p) == INIT_EXPR);
3422
3423   /* For zero sized types only gimplify the left hand side and right hand side
3424      as statements and throw away the assignment.  */
3425   if (zero_sized_type (TREE_TYPE (*from_p)))
3426     {
3427       gimplify_stmt (from_p);
3428       gimplify_stmt (to_p);
3429       append_to_statement_list (*from_p, pre_p);
3430       append_to_statement_list (*to_p, pre_p);
3431       *expr_p = NULL_TREE;
3432       return GS_ALL_DONE;
3433     }
3434
3435   /* See if any simplifications can be done based on what the RHS is.  */
3436   ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3437                                   want_value);
3438   if (ret != GS_UNHANDLED)
3439     return ret;
3440
3441   /* If the value being copied is of variable width, compute the length
3442      of the copy into a WITH_SIZE_EXPR.   Note that we need to do this
3443      before gimplifying any of the operands so that we can resolve any
3444      PLACEHOLDER_EXPRs in the size.  Also note that the RTL expander uses
3445      the size of the expression to be copied, not of the destination, so
3446      that is what we must here.  */
3447   maybe_with_size_expr (from_p);
3448
3449   ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
3450   if (ret == GS_ERROR)
3451     return ret;
3452
3453   ret = gimplify_expr (from_p, pre_p, post_p,
3454                        rhs_predicate_for (*to_p), fb_rvalue);
3455   if (ret == GS_ERROR)
3456     return ret;
3457
3458   /* Now see if the above changed *from_p to something we handle specially.  */
3459   ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3460                                   want_value);
3461   if (ret != GS_UNHANDLED)
3462     return ret;
3463
3464   /* If we've got a variable sized assignment between two lvalues (i.e. does
3465      not involve a call), then we can make things a bit more straightforward
3466      by converting the assignment to memcpy or memset.  */
3467   if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
3468     {
3469       tree from = TREE_OPERAND (*from_p, 0);
3470       tree size = TREE_OPERAND (*from_p, 1);
3471
3472       if (TREE_CODE (from) == CONSTRUCTOR)
3473         return gimplify_modify_expr_to_memset (expr_p, size, want_value);
3474       if (is_gimple_addressable (from))
3475         {
3476           *from_p = from;
3477           return gimplify_modify_expr_to_memcpy (expr_p, size, want_value);
3478         }
3479     }
3480
3481   /* Transform partial stores to non-addressable complex variables into
3482      total stores.  This allows us to use real instead of virtual operands
3483      for these variables, which improves optimization.  */
3484   if ((TREE_CODE (*to_p) == REALPART_EXPR
3485        || TREE_CODE (*to_p) == IMAGPART_EXPR)
3486       && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
3487     return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
3488
3489   if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
3490     {
3491       /* If we've somehow already got an SSA_NAME on the LHS, then
3492          we're probably modified it twice.  Not good.  */
3493       gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
3494       *to_p = make_ssa_name (*to_p, *expr_p);
3495     }
3496
3497   if (want_value)
3498     {
3499       append_to_statement_list (*expr_p, pre_p);
3500       *expr_p = *to_p;
3501       return GS_OK;
3502     }
3503
3504   return GS_ALL_DONE;
3505 }
3506
3507 /*  Gimplify a comparison between two variable-sized objects.  Do this
3508     with a call to BUILT_IN_MEMCMP.  */
3509
3510 static enum gimplify_status
3511 gimplify_variable_sized_compare (tree *expr_p)
3512 {
3513   tree op0 = TREE_OPERAND (*expr_p, 0);
3514   tree op1 = TREE_OPERAND (*expr_p, 1);
3515   tree args, t, dest;
3516
3517   t = TYPE_SIZE_UNIT (TREE_TYPE (op0));
3518   t = unshare_expr (t);
3519   t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, op0);
3520   args = tree_cons (NULL, t, NULL);
3521   t = build_fold_addr_expr (op1);
3522   args = tree_cons (NULL, t, args);
3523   dest = build_fold_addr_expr (op0);
3524   args = tree_cons (NULL, dest, args);
3525   t = implicit_built_in_decls[BUILT_IN_MEMCMP];
3526   t = build_function_call_expr (t, args);
3527   *expr_p
3528     = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
3529
3530   return GS_OK;
3531 }
3532
3533 /*  Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions.  EXPR_P
3534     points to the expression to gimplify.
3535
3536     Expressions of the form 'a && b' are gimplified to:
3537
3538         a && b ? true : false
3539
3540     gimplify_cond_expr will do the rest.
3541
3542     PRE_P points to the list where side effects that must happen before
3543         *EXPR_P should be stored.  */
3544
3545 static enum gimplify_status
3546 gimplify_boolean_expr (tree *expr_p)
3547 {
3548   /* Preserve the original type of the expression.  */
3549   tree type = TREE_TYPE (*expr_p);
3550
3551   *expr_p = build3 (COND_EXPR, type, *expr_p,
3552                     fold_convert (type, boolean_true_node),
3553                     fold_convert (type, boolean_false_node));
3554
3555   return GS_OK;
3556 }
3557
3558 /* Gimplifies an expression sequence.  This function gimplifies each
3559    expression and re-writes the original expression with the last
3560    expression of the sequence in GIMPLE form.
3561
3562    PRE_P points to the list where the side effects for all the
3563        expressions in the sequence will be emitted.
3564
3565    WANT_VALUE is true when the result of the last COMPOUND_EXPR is used.  */
3566 /* ??? Should rearrange to share the pre-queue with all the indirect
3567    invocations of gimplify_expr.  Would probably save on creations
3568    of statement_list nodes.  */
3569
3570 static enum gimplify_status
3571 gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
3572 {
3573   tree t = *expr_p;
3574
3575   do
3576     {
3577       tree *sub_p = &TREE_OPERAND (t, 0);
3578
3579       if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
3580         gimplify_compound_expr (sub_p, pre_p, false);
3581       else
3582         gimplify_stmt (sub_p);
3583       append_to_statement_list (*sub_p, pre_p);
3584
3585       t = TREE_OPERAND (t, 1);
3586     }
3587   while (TREE_CODE (t) == COMPOUND_EXPR);
3588
3589   *expr_p = t;
3590   if (want_value)
3591     return GS_OK;
3592   else
3593     {
3594       gimplify_stmt (expr_p);
3595       return GS_ALL_DONE;
3596     }
3597 }
3598
3599 /* Gimplifies a statement list.  These may be created either by an
3600    enlightened front-end, or by shortcut_cond_expr.  */
3601
3602 static enum gimplify_status
3603 gimplify_statement_list (tree *expr_p)
3604 {
3605   tree_stmt_iterator i = tsi_start (*expr_p);
3606
3607   while (!tsi_end_p (i))
3608     {
3609       tree t;
3610
3611       gimplify_stmt (tsi_stmt_ptr (i));
3612
3613       t = tsi_stmt (i);
3614       if (t == NULL)
3615         tsi_delink (&i);
3616       else if (TREE_CODE (t) == STATEMENT_LIST)
3617         {
3618           tsi_link_before (&i, t, TSI_SAME_STMT);
3619           tsi_delink (&i);
3620         }
3621       else
3622         tsi_next (&i);
3623     }
3624
3625   return GS_ALL_DONE;
3626 }
3627
3628 /*  Gimplify a SAVE_EXPR node.  EXPR_P points to the expression to
3629     gimplify.  After gimplification, EXPR_P will point to a new temporary
3630     that holds the original value of the SAVE_EXPR node.
3631
3632     PRE_P points to the list where side effects that must happen before
3633         *EXPR_P should be stored.  */
3634
3635 static enum gimplify_status
3636 gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
3637 {
3638   enum gimplify_status ret = GS_ALL_DONE;
3639   tree val;
3640
3641   gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
3642   val = TREE_OPERAND (*expr_p, 0);
3643
3644   /* If the SAVE_EXPR has not been resolved, then evaluate it once.  */
3645   if (!SAVE_EXPR_RESOLVED_P (*expr_p))
3646     {
3647       /* The operand may be a void-valued expression such as SAVE_EXPRs
3648          generated by the Java frontend for class initialization.  It is
3649          being executed only for its side-effects.  */
3650       if (TREE_TYPE (val) == void_type_node)
3651         {
3652           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3653                                is_gimple_stmt, fb_none);
3654           append_to_statement_list (TREE_OPERAND (*expr_p, 0), pre_p);
3655           val = NULL;
3656         }
3657       else
3658         val = get_initialized_tmp_var (val, pre_p, post_p);
3659
3660       TREE_OPERAND (*expr_p, 0) = val;
3661       SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
3662     }
3663
3664   *expr_p = val;
3665
3666   return ret;
3667 }
3668
3669 /*  Re-write the ADDR_EXPR node pointed to by EXPR_P
3670
3671       unary_expr
3672               : ...
3673               | '&' varname
3674               ...
3675
3676     PRE_P points to the list where side effects that must happen before
3677         *EXPR_P should be stored.
3678
3679     POST_P points to the list where side effects that must happen after
3680         *EXPR_P should be stored.  */
3681
3682 static enum gimplify_status
3683 gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
3684 {
3685   tree expr = *expr_p;
3686   tree op0 = TREE_OPERAND (expr, 0);
3687   enum gimplify_status ret;
3688
3689   switch (TREE_CODE (op0))
3690     {
3691     case INDIRECT_REF:
3692     case MISALIGNED_INDIRECT_REF:
3693     do_indirect_ref:
3694       /* Check if we are dealing with an expression of the form '&*ptr'.
3695          While the front end folds away '&*ptr' into 'ptr', these
3696          expressions may be generated internally by the compiler (e.g.,
3697          builtins like __builtin_va_end).  */
3698       /* Caution: the silent array decomposition semantics we allow for
3699          ADDR_EXPR means we can't always discard the pair.  */
3700       /* Gimplification of the ADDR_EXPR operand may drop
3701          cv-qualification conversions, so make sure we add them if
3702          needed.  */
3703       {
3704         tree op00 = TREE_OPERAND (op0, 0);
3705         tree t_expr = TREE_TYPE (expr);
3706         tree t_op00 = TREE_TYPE (op00);
3707
3708         if (!lang_hooks.types_compatible_p (t_expr, t_op00))
3709           {
3710 #ifdef ENABLE_CHECKING
3711             tree t_op0 = TREE_TYPE (op0);
3712             gcc_assert (POINTER_TYPE_P (t_expr)
3713                         && cpt_same_type (TREE_CODE (t_op0) == ARRAY_TYPE
3714                                           ? TREE_TYPE (t_op0) : t_op0,
3715                                           TREE_TYPE (t_expr))
3716                         && POINTER_TYPE_P (t_op00)
3717                         && cpt_same_type (t_op0, TREE_TYPE (t_op00)));
3718 #endif
3719             op00 = fold_convert (TREE_TYPE (expr), op00);
3720           }
3721         *expr_p = op00;
3722         ret = GS_OK;
3723       }
3724       break;
3725
3726     case VIEW_CONVERT_EXPR:
3727       /* Take the address of our operand and then convert it to the type of
3728          this ADDR_EXPR.
3729
3730          ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3731          all clear.  The impact of this transformation is even less clear.  */
3732
3733       /* If the operand is a useless conversion, look through it.  Doing so
3734          guarantees that the ADDR_EXPR and its operand will remain of the
3735          same type.  */
3736       if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
3737         op0 = TREE_OPERAND (op0, 0);
3738
3739       *expr_p = fold_convert (TREE_TYPE (expr),
3740                               build_fold_addr_expr (TREE_OPERAND (op0, 0)));
3741       ret = GS_OK;
3742       break;
3743
3744     default:
3745       /* We use fb_either here because the C frontend sometimes takes
3746          the address of a call that returns a struct; see
3747          gcc.dg/c99-array-lval-1.c.  The gimplifier will correctly make
3748          the implied temporary explicit.  */
3749       ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
3750                            is_gimple_addressable, fb_either);
3751       if (ret != GS_ERROR)
3752         {
3753           op0 = TREE_OPERAND (expr, 0);
3754
3755           /* For various reasons, the gimplification of the expression
3756              may have made a new INDIRECT_REF.  */
3757           if (TREE_CODE (op0) == INDIRECT_REF)
3758             goto do_indirect_ref;
3759
3760           /* Make sure TREE_INVARIANT, TREE_CONSTANT, and TREE_SIDE_EFFECTS
3761              is set properly.  */
3762           recompute_tree_invariant_for_addr_expr (expr);
3763
3764           /* Mark the RHS addressable.  */
3765           lang_hooks.mark_addressable (TREE_OPERAND (expr, 0));
3766         }
3767       break;
3768     }
3769
3770   return ret;
3771 }
3772
3773 /* Gimplify the operands of an ASM_EXPR.  Input operands should be a gimple
3774    value; output operands should be a gimple lvalue.  */
3775
3776 static enum gimplify_status
3777 gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
3778 {
3779   tree expr = *expr_p;
3780   int noutputs = list_length (ASM_OUTPUTS (expr));
3781   const char **oconstraints
3782     = (const char **) alloca ((noutputs) * sizeof (const char *));
3783   int i;
3784   tree link;
3785   const char *constraint;
3786   bool allows_mem, allows_reg, is_inout;
3787   enum gimplify_status ret, tret;
3788
3789   ret = GS_ALL_DONE;
3790   for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3791     {
3792       size_t constraint_len;
3793       oconstraints[i] = constraint
3794         = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3795       constraint_len = strlen (constraint);
3796       if (constraint_len == 0)
3797         continue;
3798
3799       parse_output_constraint (&constraint, i, 0, 0,
3800                                &allows_mem, &allows_reg, &is_inout);
3801
3802       if (!allows_reg && allows_mem)
3803         lang_hooks.mark_addressable (TREE_VALUE (link));
3804
3805       tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3806                             is_inout ? is_gimple_min_lval : is_gimple_lvalue,
3807                             fb_lvalue | fb_mayfail);
3808       if (tret == GS_ERROR)
3809         {
3810           error ("invalid lvalue in asm output %d", i);
3811           ret = tret;
3812         }
3813
3814       if (is_inout)
3815         {
3816           /* An input/output operand.  To give the optimizers more
3817              flexibility, split it into separate input and output
3818              operands.  */
3819           tree input;
3820           char buf[10];
3821
3822           /* Turn the in/out constraint into an output constraint.  */
3823           char *p = xstrdup (constraint);
3824           p[0] = '=';
3825           TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
3826
3827           /* And add a matching input constraint.  */
3828           if (allows_reg)
3829             {
3830               sprintf (buf, "%d", i);
3831
3832               /* If there are multiple alternatives in the constraint,
3833                  handle each of them individually.  Those that allow register
3834                  will be replaced with operand number, the others will stay
3835                  unchanged.  */
3836               if (strchr (p, ',') != NULL)
3837                 {
3838                   size_t len = 0, buflen = strlen (buf);
3839                   char *beg, *end, *str, *dst;
3840
3841                   for (beg = p + 1;;)
3842                     {
3843                       end = strchr (beg, ',');
3844                       if (end == NULL)
3845                         end = strchr (beg, '\0');
3846                       if ((size_t) (end - beg) < buflen)
3847                         len += buflen + 1;
3848                       else
3849                         len += end - beg + 1;
3850                       if (*end)
3851                         beg = end + 1;
3852                       else
3853                         break;
3854                     }
3855
3856                   str = (char *) alloca (len);
3857                   for (beg = p + 1, dst = str;;)
3858                     {
3859                       const char *tem;
3860                       bool mem_p, reg_p, inout_p;
3861
3862                       end = strchr (beg, ',');
3863                       if (end)
3864                         *end = '\0';
3865                       beg[-1] = '=';
3866                       tem = beg - 1;
3867                       parse_output_constraint (&tem, i, 0, 0,
3868                                                &mem_p, &reg_p, &inout_p);
3869                       if (dst != str)
3870                         *dst++ = ',';
3871                       if (reg_p)
3872                         {
3873                           memcpy (dst, buf, buflen);
3874                           dst += buflen;
3875                         }
3876                       else
3877                         {
3878                           if (end)
3879                             len = end - beg;
3880                           else
3881                             len = strlen (beg);
3882                           memcpy (dst, beg, len);
3883                           dst += len;
3884                         }
3885                       if (end)
3886                         beg = end + 1;
3887                       else
3888                         break;
3889                     }
3890                   *dst = '\0';
3891                   input = build_string (dst - str, str);
3892                 }
3893               else
3894                 input = build_string (strlen (buf), buf);
3895             }
3896           else
3897             input = build_string (constraint_len - 1, constraint + 1);
3898
3899           free (p);
3900
3901           input = build_tree_list (build_tree_list (NULL_TREE, input),
3902                                    unshare_expr (TREE_VALUE (link)));
3903           ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
3904         }
3905     }
3906
3907   for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3908     {
3909       constraint
3910         = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3911       parse_input_constraint (&constraint, 0, 0, noutputs, 0,
3912                               oconstraints, &allows_mem, &allows_reg);
3913
3914       /* If the operand is a memory input, it should be an lvalue.  */
3915       if (!allows_reg && allows_mem)
3916         {
3917           lang_hooks.mark_addressable (TREE_VALUE (link));
3918           tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3919                                 is_gimple_lvalue, fb_lvalue | fb_mayfail);
3920           if (tret == GS_ERROR)
3921             {
3922               error ("memory input %d is not directly addressable", i);
3923               ret = tret;
3924             }
3925         }
3926       else
3927         {
3928           tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3929                                 is_gimple_asm_val, fb_rvalue);
3930           if (tret == GS_ERROR)
3931             ret = tret;
3932         }
3933     }
3934
3935   return ret;
3936 }
3937
3938 /* Gimplify a CLEANUP_POINT_EXPR.  Currently this works by adding
3939    WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
3940    gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
3941    return to this function.
3942
3943    FIXME should we complexify the prequeue handling instead?  Or use flags
3944    for all the cleanups and let the optimizer tighten them up?  The current
3945    code seems pretty fragile; it will break on a cleanup within any
3946    non-conditional nesting.  But any such nesting would be broken, anyway;
3947    we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
3948    and continues out of it.  We can do that at the RTL level, though, so
3949    having an optimizer to tighten up try/finally regions would be a Good
3950    Thing.  */
3951
3952 static enum gimplify_status
3953 gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
3954 {
3955   tree_stmt_iterator iter;
3956   tree body;
3957
3958   tree temp = voidify_wrapper_expr (*expr_p, NULL);
3959
3960   /* We only care about the number of conditions between the innermost
3961      CLEANUP_POINT_EXPR and the cleanup.  So save and reset the count and
3962      any cleanups collected outside the CLEANUP_POINT_EXPR.  */
3963   int old_conds = gimplify_ctxp->conditions;
3964   tree old_cleanups = gimplify_ctxp->conditional_cleanups;
3965   gimplify_ctxp->conditions = 0;
3966   gimplify_ctxp->conditional_cleanups = NULL_TREE;
3967
3968   body = TREE_OPERAND (*expr_p, 0);
3969   gimplify_to_stmt_list (&body);
3970
3971   gimplify_ctxp->conditions = old_conds;
3972   gimplify_ctxp->conditional_cleanups = old_cleanups;
3973
3974   for (iter = tsi_start (body); !tsi_end_p (iter); )
3975     {
3976       tree *wce_p = tsi_stmt_ptr (iter);
3977       tree wce = *wce_p;
3978
3979       if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
3980         {
3981           if (tsi_one_before_end_p (iter))
3982             {
3983               tsi_link_before (&iter, TREE_OPERAND (wce, 0), TSI_SAME_STMT);
3984               tsi_delink (&iter);
3985               break;
3986             }
3987           else
3988             {
3989               tree sl, tfe;
3990               enum tree_code code;
3991
3992               if (CLEANUP_EH_ONLY (wce))
3993                 code = TRY_CATCH_EXPR;
3994               else
3995                 code = TRY_FINALLY_EXPR;
3996
3997               sl = tsi_split_statement_list_after (&iter);
3998               tfe = build2 (code, void_type_node, sl, NULL_TREE);
3999               append_to_statement_list (TREE_OPERAND (wce, 0),
4000                                         &TREE_OPERAND (tfe, 1));
4001               *wce_p = tfe;
4002               iter = tsi_start (sl);
4003             }
4004         }
4005       else
4006         tsi_next (&iter);
4007     }
4008
4009   if (temp)
4010     {
4011       *expr_p = temp;
4012       append_to_statement_list (body, pre_p);
4013       return GS_OK;
4014     }
4015   else
4016     {
4017       *expr_p = body;
4018       return GS_ALL_DONE;
4019     }
4020 }
4021
4022 /* Insert a cleanup marker for gimplify_cleanup_point_expr.  CLEANUP
4023    is the cleanup action required.  */
4024
4025 static void
4026 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, tree *pre_p)
4027 {
4028   tree wce;
4029
4030   /* Errors can result in improperly nested cleanups.  Which results in
4031      confusion when trying to resolve the WITH_CLEANUP_EXPR.  */
4032   if (errorcount || sorrycount)
4033     return;
4034
4035   if (gimple_conditional_context ())
4036     {
4037       /* If we're in a conditional context, this is more complex.  We only
4038          want to run the cleanup if we actually ran the initialization that
4039          necessitates it, but we want to run it after the end of the
4040          conditional context.  So we wrap the try/finally around the
4041          condition and use a flag to determine whether or not to actually
4042          run the destructor.  Thus
4043
4044            test ? f(A()) : 0
4045
4046          becomes (approximately)
4047
4048            flag = 0;
4049            try {
4050              if (test) { A::A(temp); flag = 1; val = f(temp); }
4051              else { val = 0; }
4052            } finally {
4053              if (flag) A::~A(temp);
4054            }
4055            val
4056       */
4057
4058       tree flag = create_tmp_var (boolean_type_node, "cleanup");
4059       tree ffalse = build2 (MODIFY_EXPR, void_type_node, flag,
4060                             boolean_false_node);
4061       tree ftrue = build2 (MODIFY_EXPR, void_type_node, flag,
4062                            boolean_true_node);
4063       cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
4064       wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4065       append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
4066       append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
4067       append_to_statement_list (ftrue, pre_p);
4068
4069       /* Because of this manipulation, and the EH edges that jump
4070          threading cannot redirect, the temporary (VAR) will appear
4071          to be used uninitialized.  Don't warn.  */
4072       TREE_NO_WARNING (var) = 1;
4073     }
4074   else
4075     {
4076       wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4077       CLEANUP_EH_ONLY (wce) = eh_only;
4078       append_to_statement_list (wce, pre_p);
4079     }
4080
4081   gimplify_stmt (&TREE_OPERAND (wce, 0));
4082 }
4083
4084 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR.  */
4085
4086 static enum gimplify_status
4087 gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
4088 {
4089   tree targ = *expr_p;
4090   tree temp = TARGET_EXPR_SLOT (targ);
4091   tree init = TARGET_EXPR_INITIAL (targ);
4092   enum gimplify_status ret;
4093
4094   if (init)
4095     {
4096       /* TARGET_EXPR temps aren't part of the enclosing block, so add it
4097          to the temps list.  */
4098       gimple_add_tmp_var (temp);
4099
4100       /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
4101          expression is supposed to initialize the slot.  */
4102       if (VOID_TYPE_P (TREE_TYPE (init)))
4103         ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
4104       else
4105         {
4106           /* Special handling for BIND_EXPR can result in fewer temps.  */
4107           ret = GS_OK;
4108           if (TREE_CODE (init) == BIND_EXPR)
4109             gimplify_bind_expr (&init, temp, pre_p);
4110           if (init != temp)
4111             {
4112               init = build2 (INIT_EXPR, void_type_node, temp, init);
4113               ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
4114                                    fb_none);
4115             }
4116         }
4117       if (ret == GS_ERROR)
4118         return GS_ERROR;
4119       append_to_statement_list (init, pre_p);
4120
4121       /* If needed, push the cleanup for the temp.  */
4122       if (TARGET_EXPR_CLEANUP (targ))
4123         {
4124           gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
4125           gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
4126                                CLEANUP_EH_ONLY (targ), pre_p);
4127         }
4128
4129       /* Only expand this once.  */
4130       TREE_OPERAND (targ, 3) = init;
4131       TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4132     }
4133   else
4134     /* We should have expanded this before.  */
4135     gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
4136
4137   *expr_p = temp;
4138   return GS_OK;
4139 }
4140
4141 /* Gimplification of expression trees.  */
4142
4143 /* Gimplify an expression which appears at statement context; usually, this
4144    means replacing it with a suitably gimple STATEMENT_LIST.  */
4145
4146 void
4147 gimplify_stmt (tree *stmt_p)
4148 {
4149   gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
4150 }
4151
4152 /* Similarly, but force the result to be a STATEMENT_LIST.  */
4153
4154 void
4155 gimplify_to_stmt_list (tree *stmt_p)
4156 {
4157   gimplify_stmt (stmt_p);
4158   if (!*stmt_p)
4159     *stmt_p = alloc_stmt_list ();
4160   else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
4161     {
4162       tree t = *stmt_p;
4163       *stmt_p = alloc_stmt_list ();
4164       append_to_statement_list (t, stmt_p);
4165     }
4166 }
4167
4168
4169 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
4170    to CTX.  If entries already exist, force them to be some flavor of private.
4171    If there is no enclosing parallel, do nothing.  */
4172
4173 void
4174 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
4175 {
4176   splay_tree_node n;
4177
4178   if (decl == NULL || !DECL_P (decl))
4179     return;
4180
4181   do
4182     {
4183       n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4184       if (n != NULL)
4185         {
4186           if (n->value & GOVD_SHARED)
4187             n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
4188           else
4189             return;
4190         }
4191       else if (ctx->is_parallel)
4192         omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
4193
4194       ctx = ctx->outer_context;
4195     }
4196   while (ctx);
4197 }
4198
4199 /* Similarly for each of the type sizes of TYPE.  */
4200
4201 static void
4202 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
4203 {
4204   if (type == NULL || type == error_mark_node)
4205     return;
4206   type = TYPE_MAIN_VARIANT (type);
4207
4208   if (pointer_set_insert (ctx->privatized_types, type))
4209     return;
4210
4211   switch (TREE_CODE (type))
4212     {
4213     case INTEGER_TYPE:
4214     case ENUMERAL_TYPE:
4215     case BOOLEAN_TYPE:
4216     case REAL_TYPE:
4217       omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
4218       omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
4219       break;
4220
4221     case ARRAY_TYPE:
4222       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4223       omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
4224       break;
4225
4226     case RECORD_TYPE:
4227     case UNION_TYPE:
4228     case QUAL_UNION_TYPE:
4229       {
4230         tree field;
4231         for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4232           if (TREE_CODE (field) == FIELD_DECL)
4233             {
4234               omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
4235               omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
4236             }
4237       }
4238       break;
4239
4240     case POINTER_TYPE:
4241     case REFERENCE_TYPE:
4242       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4243       break;
4244
4245     default:
4246       break;
4247     }
4248
4249   omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
4250   omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
4251   lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
4252 }
4253
4254 /* Add an entry for DECL in the OpenMP context CTX with FLAGS.  */
4255
4256 static void
4257 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
4258 {
4259   splay_tree_node n;
4260   unsigned int nflags;
4261   tree t;
4262
4263   if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4264     return;
4265
4266   /* Never elide decls whose type has TREE_ADDRESSABLE set.  This means
4267      there are constructors involved somewhere.  */
4268   if (TREE_ADDRESSABLE (TREE_TYPE (decl))
4269       || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
4270     flags |= GOVD_SEEN;
4271
4272   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4273   if (n != NULL)
4274     {
4275       /* We shouldn't be re-adding the decl with the same data
4276          sharing class.  */
4277       gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
4278       /* The only combination of data sharing classes we should see is
4279          FIRSTPRIVATE and LASTPRIVATE.  */
4280       nflags = n->value | flags;
4281       gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
4282                   == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
4283       n->value = nflags;
4284       return;
4285     }
4286
4287   /* When adding a variable-sized variable, we have to handle all sorts
4288      of additional bits of data: the pointer replacement variable, and 
4289      the parameters of the type.  */
4290   if (DECL_SIZE (decl) && !TREE_CONSTANT (DECL_SIZE (decl)))
4291     {
4292       /* Add the pointer replacement variable as PRIVATE if the variable
4293          replacement is private, else FIRSTPRIVATE since we'll need the
4294          address of the original variable either for SHARED, or for the
4295          copy into or out of the context.  */
4296       if (!(flags & GOVD_LOCAL))
4297         {
4298           nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
4299           nflags |= flags & GOVD_SEEN;
4300           t = DECL_VALUE_EXPR (decl);
4301           gcc_assert (TREE_CODE (t) == INDIRECT_REF);
4302           t = TREE_OPERAND (t, 0);
4303           gcc_assert (DECL_P (t));
4304           omp_add_variable (ctx, t, nflags);
4305         }
4306
4307       /* Add all of the variable and type parameters (which should have
4308          been gimplified to a formal temporary) as FIRSTPRIVATE.  */
4309       omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
4310       omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
4311       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4312
4313       /* The variable-sized variable itself is never SHARED, only some form
4314          of PRIVATE.  The sharing would take place via the pointer variable
4315          which we remapped above.  */
4316       if (flags & GOVD_SHARED)
4317         flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
4318                 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
4319
4320       /* We're going to make use of the TYPE_SIZE_UNIT at least in the 
4321          alloca statement we generate for the variable, so make sure it
4322          is available.  This isn't automatically needed for the SHARED
4323          case, since we won't be allocating local storage then.  */
4324       else
4325         omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
4326     }
4327   else if (lang_hooks.decls.omp_privatize_by_reference (decl))
4328     {
4329       gcc_assert ((flags & GOVD_LOCAL) == 0);
4330       omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4331
4332       /* Similar to the direct variable sized case above, we'll need the
4333          size of references being privatized.  */
4334       if ((flags & GOVD_SHARED) == 0)
4335         {
4336           t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
4337           if (!TREE_CONSTANT (t))
4338             omp_notice_variable (ctx, t, true);
4339         }
4340     }
4341
4342   splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
4343 }
4344
4345 /* Record the fact that DECL was used within the OpenMP context CTX.
4346    IN_CODE is true when real code uses DECL, and false when we should
4347    merely emit default(none) errors.  Return true if DECL is going to
4348    be remapped and thus DECL shouldn't be gimplified into its
4349    DECL_VALUE_EXPR (if any).  */
4350
4351 static bool
4352 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
4353 {
4354   splay_tree_node n;
4355   unsigned flags = in_code ? GOVD_SEEN : 0;
4356   bool ret = false, shared;
4357
4358   if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4359     return false;
4360
4361   /* Threadprivate variables are predetermined.  */
4362   if (is_global_var (decl))
4363     {
4364       if (DECL_THREAD_LOCAL_P (decl))
4365         return false;
4366
4367       if (DECL_HAS_VALUE_EXPR_P (decl))
4368         {
4369           tree value = get_base_address (DECL_VALUE_EXPR (decl));
4370
4371           if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
4372             return false;
4373         }
4374     }
4375
4376   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4377   if (n == NULL)
4378     {
4379       enum omp_clause_default_kind default_kind, kind;
4380
4381       if (!ctx->is_parallel)
4382         goto do_outer;
4383
4384       /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
4385          remapped firstprivate instead of shared.  To some extent this is
4386          addressed in omp_firstprivatize_type_sizes, but not effectively.  */
4387       default_kind = ctx->default_kind;
4388       kind = lang_hooks.decls.omp_predetermined_sharing (decl);
4389       if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
4390         default_kind = kind;
4391
4392       switch (default_kind)
4393         {
4394         case OMP_CLAUSE_DEFAULT_NONE:
4395           error ("%qs not specified in enclosing parallel",
4396                  IDENTIFIER_POINTER (DECL_NAME (decl)));
4397           error ("%Henclosing parallel", &ctx->location);
4398           /* FALLTHRU */
4399         case OMP_CLAUSE_DEFAULT_SHARED:
4400           flags |= GOVD_SHARED;
4401           break;
4402         case OMP_CLAUSE_DEFAULT_PRIVATE:
4403           flags |= GOVD_PRIVATE;
4404           break;
4405         default:
4406           gcc_unreachable ();
4407         }
4408
4409       omp_add_variable (ctx, decl, flags);
4410
4411       shared = (flags & GOVD_SHARED) != 0;
4412       ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4413       goto do_outer;
4414     }
4415
4416   shared = ((flags | n->value) & GOVD_SHARED) != 0;
4417   ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4418
4419   /* If nothing changed, there's nothing left to do.  */
4420   if ((n->value & flags) == flags)
4421     return ret;
4422   flags |= n->value;
4423   n->value = flags;
4424
4425  do_outer:
4426   /* If the variable is private in the current context, then we don't
4427      need to propagate anything to an outer context.  */
4428   if (flags & GOVD_PRIVATE)
4429     return ret;
4430   if (ctx->outer_context
4431       && omp_notice_variable (ctx->outer_context, decl, in_code))
4432     return true;
4433   return ret;
4434 }
4435
4436 /* Verify that DECL is private within CTX.  If there's specific information
4437    to the contrary in the innermost scope, generate an error.  */
4438
4439 static bool
4440 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
4441 {
4442   splay_tree_node n;
4443
4444   n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4445   if (n != NULL)
4446     {
4447       if (n->value & GOVD_SHARED)
4448         {
4449           if (ctx == gimplify_omp_ctxp)
4450             {
4451               error ("iteration variable %qs should be private",
4452                      IDENTIFIER_POINTER (DECL_NAME (decl)));
4453               n->value = GOVD_PRIVATE;
4454               return true;
4455             }
4456           else
4457             return false;
4458         }
4459       else if ((n->value & GOVD_EXPLICIT) != 0
4460                && (ctx == gimplify_omp_ctxp
4461                    || (ctx->is_combined_parallel
4462                        && gimplify_omp_ctxp->outer_context == ctx)))
4463         {
4464           if ((n->value & GOVD_FIRSTPRIVATE) != 0)
4465             error ("iteration variable %qs should not be firstprivate",
4466                    IDENTIFIER_POINTER (DECL_NAME (decl)));
4467           else if ((n->value & GOVD_REDUCTION) != 0)
4468             error ("iteration variable %qs should not be reduction",
4469                    IDENTIFIER_POINTER (DECL_NAME (decl)));
4470         }
4471       return true;
4472     }
4473
4474   if (ctx->is_parallel)
4475     return false;
4476   else if (ctx->outer_context)
4477     return omp_is_private (ctx->outer_context, decl);
4478   else
4479     return !is_global_var (decl);
4480 }
4481
4482 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
4483    and previous omp contexts.  */
4484
4485 static void
4486 gimplify_scan_omp_clauses (tree *list_p, tree *pre_p, bool in_parallel,
4487                            bool in_combined_parallel)
4488 {
4489   struct gimplify_omp_ctx *ctx, *outer_ctx;
4490   tree c;
4491
4492   ctx = new_omp_context (in_parallel, in_combined_parallel);
4493   outer_ctx = ctx->outer_context;
4494
4495   while ((c = *list_p) != NULL)
4496     {
4497       enum gimplify_status gs;
4498       bool remove = false;
4499       bool notice_outer = true;
4500       unsigned int flags;
4501       tree decl;
4502
4503       switch (OMP_CLAUSE_CODE (c))
4504         {
4505         case OMP_CLAUSE_PRIVATE:
4506           flags = GOVD_PRIVATE | GOVD_EXPLICIT;
4507           notice_outer = false;
4508           goto do_add;
4509         case OMP_CLAUSE_SHARED:
4510           flags = GOVD_SHARED | GOVD_EXPLICIT;
4511           goto do_add;
4512         case OMP_CLAUSE_FIRSTPRIVATE:
4513           flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
4514           goto do_add;
4515         case OMP_CLAUSE_LASTPRIVATE:
4516           flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
4517           goto do_add;
4518         case OMP_CLAUSE_REDUCTION:
4519           flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
4520           goto do_add;
4521
4522         do_add:
4523           decl = OMP_CLAUSE_DECL (c);
4524           if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4525             {
4526               remove = true;
4527               break;
4528             }
4529           /* Handle NRV results passed by reference.  */
4530           if (TREE_CODE (decl) == INDIRECT_REF
4531               && TREE_CODE (TREE_OPERAND (decl, 0)) == RESULT_DECL
4532               && DECL_BY_REFERENCE (TREE_OPERAND (decl, 0)))
4533             OMP_CLAUSE_DECL (c) = decl = TREE_OPERAND (decl, 0);
4534           omp_add_variable (ctx, decl, flags);
4535           if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
4536               && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
4537             {
4538               omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
4539                                 GOVD_LOCAL | GOVD_SEEN);
4540               gimplify_omp_ctxp = ctx;
4541               push_gimplify_context ();
4542               gimplify_stmt (&OMP_CLAUSE_REDUCTION_INIT (c));
4543               pop_gimplify_context (OMP_CLAUSE_REDUCTION_INIT (c));
4544               push_gimplify_context ();
4545               gimplify_stmt (&OMP_CLAUSE_REDUCTION_MERGE (c));
4546               pop_gimplify_context (OMP_CLAUSE_REDUCTION_MERGE (c));
4547               gimplify_omp_ctxp = outer_ctx;
4548             }
4549           if (notice_outer)
4550             goto do_notice;
4551           break;
4552
4553         case OMP_CLAUSE_COPYIN:
4554         case OMP_CLAUSE_COPYPRIVATE:
4555           decl = OMP_CLAUSE_DECL (c);
4556           if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4557             {
4558               remove = true;
4559               break;
4560             }
4561           /* Handle NRV results passed by reference.  */
4562           if (TREE_CODE (decl) == INDIRECT_REF
4563               && TREE_CODE (TREE_OPERAND (decl, 0)) == RESULT_DECL
4564               && DECL_BY_REFERENCE (TREE_OPERAND (decl, 0)))
4565             OMP_CLAUSE_DECL (c) = decl = TREE_OPERAND (decl, 0);
4566         do_notice:
4567           if (outer_ctx)
4568             omp_notice_variable (outer_ctx, decl, true);
4569           break;
4570
4571         case OMP_CLAUSE_IF:
4572           OMP_CLAUSE_OPERAND (c, 0)
4573             = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
4574           /* Fall through.  */
4575
4576         case OMP_CLAUSE_SCHEDULE:
4577         case OMP_CLAUSE_NUM_THREADS:
4578           gs = gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
4579                               is_gimple_val, fb_rvalue);
4580           if (gs == GS_ERROR)
4581             remove = true;
4582           break;
4583
4584         case OMP_CLAUSE_NOWAIT:
4585         case OMP_CLAUSE_ORDERED:
4586           break;
4587
4588         case OMP_CLAUSE_DEFAULT:
4589           ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
4590           break;
4591
4592         default:
4593           gcc_unreachable ();
4594         }
4595
4596       if (remove)
4597         *list_p = OMP_CLAUSE_CHAIN (c);
4598       else
4599         list_p = &OMP_CLAUSE_CHAIN (c);
4600     }
4601
4602   gimplify_omp_ctxp = ctx;
4603 }
4604
4605 /* For all variables that were not actually used within the context,
4606    remove PRIVATE, SHARED, and FIRSTPRIVATE clauses.  */
4607
4608 static int
4609 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
4610 {
4611   tree *list_p = (tree *) data;
4612   tree decl = (tree) n->key;
4613   unsigned flags = n->value;
4614   enum omp_clause_code code;
4615   tree clause;
4616   bool private_debug;
4617
4618   if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
4619     return 0;
4620   if ((flags & GOVD_SEEN) == 0)
4621     return 0;
4622   if (flags & GOVD_DEBUG_PRIVATE)
4623     {
4624       gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
4625       private_debug = true;
4626     }
4627   else
4628     private_debug
4629       = lang_hooks.decls.omp_private_debug_clause (decl,
4630                                                    !!(flags & GOVD_SHARED));
4631   if (private_debug)
4632     code = OMP_CLAUSE_PRIVATE;
4633   else if (flags & GOVD_SHARED)
4634     {
4635       if (is_global_var (decl))
4636         return 0;
4637       code = OMP_CLAUSE_SHARED;
4638     }
4639   else if (flags & GOVD_PRIVATE)
4640     code = OMP_CLAUSE_PRIVATE;
4641   else if (flags & GOVD_FIRSTPRIVATE)
4642     code = OMP_CLAUSE_FIRSTPRIVATE;
4643   else
4644     gcc_unreachable ();
4645
4646   clause = build_omp_clause (code);
4647   OMP_CLAUSE_DECL (clause) = decl;
4648   OMP_CLAUSE_CHAIN (clause) = *list_p;
4649   if (private_debug)
4650     OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
4651   *list_p = clause;
4652
4653   return 0;
4654 }
4655
4656 static void
4657 gimplify_adjust_omp_clauses (tree *list_p)
4658 {
4659   struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
4660   tree c, decl;
4661
4662   while ((c = *list_p) != NULL)
4663     {
4664       splay_tree_node n;
4665       bool remove = false;
4666
4667       switch (OMP_CLAUSE_CODE (c))
4668         {
4669         case OMP_CLAUSE_PRIVATE:
4670         case OMP_CLAUSE_SHARED:
4671         case OMP_CLAUSE_FIRSTPRIVATE:
4672           decl = OMP_CLAUSE_DECL (c);
4673           n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4674           remove = !(n->value & GOVD_SEEN);
4675           if (! remove)
4676             {
4677               bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
4678               if ((n->value & GOVD_DEBUG_PRIVATE)
4679                   || lang_hooks.decls.omp_private_debug_clause (decl, shared))
4680                 {
4681                   gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
4682                               || ((n->value & GOVD_DATA_SHARE_CLASS)
4683                                   == GOVD_PRIVATE));
4684                   OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
4685                   OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
4686                 }
4687             }
4688           break;
4689
4690         case OMP_CLAUSE_LASTPRIVATE:
4691           /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
4692              accurately reflect the presence of a FIRSTPRIVATE clause.  */
4693           decl = OMP_CLAUSE_DECL (c);
4694           n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4695           OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
4696             = (n->value & GOVD_FIRSTPRIVATE) != 0;
4697           break;
4698           
4699         case OMP_CLAUSE_REDUCTION:
4700         case OMP_CLAUSE_COPYIN:
4701         case OMP_CLAUSE_COPYPRIVATE:
4702         case OMP_CLAUSE_IF:
4703         case OMP_CLAUSE_NUM_THREADS:
4704         case OMP_CLAUSE_SCHEDULE:
4705         case OMP_CLAUSE_NOWAIT:
4706         case OMP_CLAUSE_ORDERED:
4707         case OMP_CLAUSE_DEFAULT:
4708           break;
4709
4710         default:
4711           gcc_unreachable ();
4712         }
4713
4714       if (remove)
4715         *list_p = OMP_CLAUSE_CHAIN (c);
4716       else
4717         list_p = &OMP_CLAUSE_CHAIN (c);
4718     }
4719
4720   /* Add in any implicit data sharing.  */
4721   splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
4722   
4723   gimplify_omp_ctxp = ctx->outer_context;
4724   delete_omp_context (ctx);
4725 }
4726
4727 /* Gimplify the contents of an OMP_PARALLEL statement.  This involves
4728    gimplification of the body, as well as scanning the body for used
4729    variables.  We need to do this scan now, because variable-sized
4730    decls will be decomposed during gimplification.  */
4731
4732 static enum gimplify_status
4733 gimplify_omp_parallel (tree *expr_p, tree *pre_p)
4734 {
4735   tree expr = *expr_p;
4736
4737   gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p, true,
4738                              OMP_PARALLEL_COMBINED (expr));
4739
4740   push_gimplify_context ();
4741
4742   gimplify_stmt (&OMP_PARALLEL_BODY (expr));
4743
4744   if (TREE_CODE (OMP_PARALLEL_BODY (expr)) == BIND_EXPR)
4745     pop_gimplify_context (OMP_PARALLEL_BODY (expr));
4746   else
4747     pop_gimplify_context (NULL_TREE);
4748
4749   gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
4750
4751   return GS_ALL_DONE;
4752 }
4753
4754 /* Gimplify the gross structure of an OMP_FOR statement.  */
4755
4756 static enum gimplify_status
4757 gimplify_omp_for (tree *expr_p, tree *pre_p)
4758 {
4759   tree for_stmt, decl, t;
4760   enum gimplify_status ret = 0;
4761
4762   for_stmt = *expr_p;
4763
4764   gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p, false, false);
4765
4766   t = OMP_FOR_INIT (for_stmt);
4767   gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
4768   decl = TREE_OPERAND (t, 0);
4769   gcc_assert (DECL_P (decl));
4770   gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl)));
4771
4772   /* Make sure the iteration variable is private.  */
4773   if (omp_is_private (gimplify_omp_ctxp, decl))
4774     omp_notice_variable (gimplify_omp_ctxp, decl, true);
4775   else
4776     omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
4777
4778   ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4779                         NULL, is_gimple_val, fb_rvalue);
4780
4781   t = OMP_FOR_COND (for_stmt);
4782   gcc_assert (COMPARISON_CLASS_P (t));
4783   gcc_assert (TREE_OPERAND (t, 0) == decl);
4784
4785   ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4786                         NULL, is_gimple_val, fb_rvalue);
4787
4788   t = OMP_FOR_INCR (for_stmt);
4789   switch (TREE_CODE (t))
4790     {
4791     case PREINCREMENT_EXPR:
4792     case POSTINCREMENT_EXPR:
4793       t = build_int_cst (TREE_TYPE (decl), 1);
4794       goto build_modify;
4795     case PREDECREMENT_EXPR:
4796     case POSTDECREMENT_EXPR:
4797       t = build_int_cst (TREE_TYPE (decl), -1);
4798       goto build_modify;
4799     build_modify:
4800       t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
4801       t = build2 (MODIFY_EXPR, void_type_node, decl, t);
4802       OMP_FOR_INCR (for_stmt) = t;
4803       break;
4804       
4805     case MODIFY_EXPR:
4806       gcc_assert (TREE_OPERAND (t, 0) == decl);
4807       t = TREE_OPERAND (t, 1);
4808       switch (TREE_CODE (t))
4809         {
4810         case PLUS_EXPR:
4811           if (TREE_OPERAND (t, 1) == decl)
4812             {
4813               TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
4814               TREE_OPERAND (t, 0) = decl;
4815               break;
4816             }
4817         case MINUS_EXPR:
4818           gcc_assert (TREE_OPERAND (t, 0) == decl);
4819           break;
4820         default:
4821           gcc_unreachable ();
4822         }
4823
4824       ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4825                             NULL, is_gimple_val, fb_rvalue);
4826       break;
4827
4828     default:
4829       gcc_unreachable ();
4830     }
4831
4832   gimplify_to_stmt_list (&OMP_FOR_BODY (for_stmt));
4833   gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
4834
4835   return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
4836 }
4837
4838 /* Gimplify the gross structure of other OpenMP worksharing constructs.
4839    In particular, OMP_SECTIONS and OMP_SINGLE.  */
4840
4841 static enum gimplify_status
4842 gimplify_omp_workshare (tree *expr_p, tree *pre_p)
4843 {
4844   tree stmt = *expr_p;
4845
4846   gimplify_scan_omp_clauses (&OMP_CLAUSES (stmt), pre_p, false, false);
4847   gimplify_to_stmt_list (&OMP_BODY (stmt));
4848   gimplify_adjust_omp_clauses (&OMP_CLAUSES (stmt));
4849
4850   return GS_ALL_DONE;
4851 }
4852
4853 /* A subroutine of gimplify_omp_atomic.  The front end is supposed to have
4854    stabilized the lhs of the atomic operation as *ADDR.  Return true if 
4855    EXPR is this stabilized form.  */
4856
4857 static bool
4858 goa_lhs_expr_p (tree expr, tree addr)
4859 {
4860   /* Also include casts to other type variants.  The C front end is fond
4861      of adding these for e.g. volatile variables.  This is like 
4862      STRIP_TYPE_NOPS but includes the main variant lookup.  */
4863   while ((TREE_CODE (expr) == NOP_EXPR
4864           || TREE_CODE (expr) == CONVERT_EXPR
4865           || TREE_CODE (expr) == NON_LVALUE_EXPR)
4866          && TREE_OPERAND (expr, 0) != error_mark_node
4867          && (TYPE_MAIN_VARIANT (TREE_TYPE (expr))
4868              == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (expr, 0)))))
4869     expr = TREE_OPERAND (expr, 0);
4870
4871   if (TREE_CODE (expr) == INDIRECT_REF && TREE_OPERAND (expr, 0) == addr)
4872     return true;
4873   if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
4874     return true;
4875   return false;
4876 }
4877
4878 /* A subroutine of gimplify_omp_atomic.  Attempt to implement the atomic
4879    operation as a __sync_fetch_and_op builtin.  INDEX is log2 of the
4880    size of the data type, and thus usable to find the index of the builtin
4881    decl.  Returns GS_UNHANDLED if the expression is not of the proper form.  */
4882
4883 static enum gimplify_status
4884 gimplify_omp_atomic_fetch_op (tree *expr_p, tree addr, tree rhs, int index)
4885 {
4886   enum built_in_function base;
4887   tree decl, args, itype;
4888   enum insn_code *optab;
4889
4890   /* Check for one of the supported fetch-op operations.  */
4891   switch (TREE_CODE (rhs))
4892     {
4893     case PLUS_EXPR:
4894       base = BUILT_IN_FETCH_AND_ADD_N;
4895       optab = sync_add_optab;
4896       break;
4897     case MINUS_EXPR:
4898       base = BUILT_IN_FETCH_AND_SUB_N;
4899       optab = sync_add_optab;
4900       break;
4901     case BIT_AND_EXPR:
4902       base = BUILT_IN_FETCH_AND_AND_N;
4903       optab = sync_and_optab;
4904       break;
4905     case BIT_IOR_EXPR:
4906       base = BUILT_IN_FETCH_AND_OR_N;
4907       optab = sync_ior_optab;
4908       break;
4909     case BIT_XOR_EXPR:
4910       base = BUILT_IN_FETCH_AND_XOR_N;
4911       optab = sync_xor_optab;
4912       break;
4913     default:
4914       return GS_UNHANDLED;
4915     }
4916
4917   /* Make sure the expression is of the proper form.  */
4918   if (goa_lhs_expr_p (TREE_OPERAND (rhs, 0), addr))
4919     rhs = TREE_OPERAND (rhs, 1);
4920   else if (commutative_tree_code (TREE_CODE (rhs))
4921            && goa_lhs_expr_p (TREE_OPERAND (rhs, 1), addr))
4922     rhs = TREE_OPERAND (rhs, 0);
4923   else
4924     return GS_UNHANDLED;
4925
4926   decl = built_in_decls[base + index + 1];
4927   itype = TREE_TYPE (TREE_TYPE (decl));
4928
4929   if (optab[TYPE_MODE (itype)] == CODE_FOR_nothing)
4930     return GS_UNHANDLED;
4931
4932   args = tree_cons (NULL, fold_convert (itype, rhs), NULL);
4933   args = tree_cons (NULL, addr, args);
4934   *expr_p = build_function_call_expr (decl, args);
4935   return GS_OK;
4936 }
4937
4938 /* A subroutine of gimplify_omp_atomic_pipeline.  Walk *EXPR_P and replace
4939    appearances of *LHS_ADDR with LHS_VAR.  If an expression does not involve
4940    the lhs, evaluate it into a temporary.  Return 1 if the lhs appeared as
4941    a subexpression, 0 if it did not, or -1 if an error was encountered.  */
4942
4943 static int
4944 goa_stabilize_expr (tree *expr_p, tree *pre_p, tree lhs_addr, tree lhs_var)
4945 {
4946   tree expr = *expr_p;
4947   int saw_lhs;
4948
4949   if (goa_lhs_expr_p (expr, lhs_addr))
4950     {
4951       *expr_p = lhs_var;
4952       return 1;
4953     }
4954   if (is_gimple_val (expr))
4955     return 0;
4956  
4957   saw_lhs = 0;
4958   switch (TREE_CODE_CLASS (TREE_CODE (expr)))
4959     {
4960     case tcc_binary:
4961       saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
4962                                      lhs_addr, lhs_var);
4963     case tcc_unary:
4964       saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
4965                                      lhs_addr, lhs_var);
4966       break;
4967     default:
4968       break;
4969     }
4970
4971   if (saw_lhs == 0)
4972     {
4973       enum gimplify_status gs;
4974       gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
4975       if (gs != GS_ALL_DONE)
4976         saw_lhs = -1;
4977     }
4978
4979   return saw_lhs;
4980 }
4981
4982 /* A subroutine of gimplify_omp_atomic.  Implement the atomic operation as:
4983
4984         oldval = *addr;
4985       repeat:
4986         newval = rhs;   // with oldval replacing *addr in rhs
4987         oldval = __sync_val_compare_and_swap (addr, oldval, newval);
4988         if (oldval != newval)
4989           goto repeat;
4990
4991    INDEX is log2 of the size of the data type, and thus usable to find the
4992    index of the builtin decl.  */
4993
4994 static enum gimplify_status
4995 gimplify_omp_atomic_pipeline (tree *expr_p, tree *pre_p, tree addr,
4996                               tree rhs, int index)
4997 {
4998   tree oldval, oldival, oldival2, newval, newival, label;
4999   tree type, itype, cmpxchg, args, x, iaddr;
5000
5001   cmpxchg = built_in_decls[BUILT_IN_VAL_COMPARE_AND_SWAP_N + index + 1];
5002   type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5003   itype = TREE_TYPE (TREE_TYPE (cmpxchg));
5004
5005   if (sync_compare_and_swap[TYPE_MODE (itype)] == CODE_FOR_nothing)
5006     return GS_UNHANDLED;
5007
5008   oldval = create_tmp_var (type, NULL);
5009   newval = create_tmp_var (type, NULL);
5010
5011   /* Precompute as much of RHS as possible.  In the same walk, replace
5012      occurrences of the lhs value with our temporary.  */
5013   if (goa_stabilize_expr (&rhs, pre_p, addr, oldval) < 0)
5014     return GS_ERROR;
5015
5016   x = build_fold_indirect_ref (addr);
5017   x = build2 (MODIFY_EXPR, void_type_node, oldval, x);
5018   gimplify_and_add (x, pre_p);
5019
5020   /* For floating-point values, we'll need to view-convert them to integers
5021      so that we can perform the atomic compare and swap.  Simplify the 
5022      following code by always setting up the "i"ntegral variables.  */
5023   if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5024     {
5025       oldival = oldval;
5026       newival = newval;
5027       iaddr = addr;
5028     }
5029   else
5030     {
5031       oldival = create_tmp_var (itype, NULL);
5032       newival = create_tmp_var (itype, NULL);
5033
5034       x = build1 (VIEW_CONVERT_EXPR, itype, oldval);
5035       x = build2 (MODIFY_EXPR, void_type_node, oldival, x);
5036       gimplify_and_add (x, pre_p);
5037       iaddr = fold_convert (build_pointer_type (itype), addr);
5038     }
5039
5040   oldival2 = create_tmp_var (itype, NULL);
5041
5042   label = create_artificial_label ();
5043   x = build1 (LABEL_EXPR, void_type_node, label);
5044   gimplify_and_add (x, pre_p);
5045
5046   x = build2 (MODIFY_EXPR, void_type_node, newval, rhs);
5047   gimplify_and_add (x, pre_p);
5048
5049   if (newval != newival)
5050     {
5051       x = build1 (VIEW_CONVERT_EXPR, itype, newval);
5052       x = build2 (MODIFY_EXPR, void_type_node, newival, x);
5053       gimplify_and_add (x, pre_p);
5054     }
5055
5056   x = build2 (MODIFY_EXPR, void_type_node, oldival2, oldival);
5057   gimplify_and_add (x, pre_p);
5058
5059   args = tree_cons (NULL, fold_convert (itype, newival), NULL);
5060   args = tree_cons (NULL, fold_convert (itype, oldival), args);
5061   args = tree_cons (NULL, iaddr, args);
5062   x = build_function_call_expr (cmpxchg, args);
5063   if (oldval == oldival)
5064     x = fold_convert (type, x);
5065   x = build2 (MODIFY_EXPR, void_type_node, oldival, x);
5066   gimplify_and_add (x, pre_p);
5067
5068   /* For floating point, be prepared for the loop backedge.  */
5069   if (oldval != oldival)
5070     {
5071       x = build1 (VIEW_CONVERT_EXPR, type, oldival);
5072       x = build2 (MODIFY_EXPR, void_type_node, oldval, x);
5073       gimplify_and_add (x, pre_p);
5074     }
5075
5076   /* Note that we always perform the comparison as an integer, even for
5077      floating point.  This allows the atomic operation to properly 
5078      succeed even with NaNs and -0.0.  */
5079   x = build3 (COND_EXPR, void_type_node,
5080               build2 (NE_EXPR, boolean_type_node, oldival, oldival2),
5081               build1 (GOTO_EXPR, void_type_node, label), NULL);
5082   gimplify_and_add (x, pre_p);
5083
5084   *expr_p = NULL;
5085   return GS_ALL_DONE;
5086 }
5087
5088 /* A subroutine of gimplify_omp_atomic.  Implement the atomic operation as:
5089
5090         GOMP_atomic_start ();
5091         *addr = rhs;
5092         GOMP_atomic_end ();
5093
5094    The result is not globally atomic, but works so long as all parallel
5095    references are within #pragma omp atomic directives.  According to
5096    responses received from omp@openmp.org, appears to be within spec.
5097    Which makes sense, since that's how several other compilers handle
5098    this situation as well.  */
5099
5100 static enum gimplify_status
5101 gimplify_omp_atomic_mutex (tree *expr_p, tree *pre_p, tree addr, tree rhs)
5102 {
5103   tree t;
5104
5105   t = built_in_decls[BUILT_IN_GOMP_ATOMIC_START];
5106   t = build_function_call_expr (t, NULL);
5107   gimplify_and_add (t, pre_p);
5108
5109   t = build_fold_indirect_ref (addr);
5110   t = build2 (MODIFY_EXPR, void_type_node, t, rhs);
5111   gimplify_and_add (t, pre_p);
5112   
5113   t = built_in_decls[BUILT_IN_GOMP_ATOMIC_END];
5114   t = build_function_call_expr (t, NULL);
5115   gimplify_and_add (t, pre_p);
5116
5117   *expr_p = NULL;
5118   return GS_ALL_DONE;
5119 }
5120
5121 /* Gimplify an OMP_ATOMIC statement.  */
5122
5123 static enum gimplify_status
5124 gimplify_omp_atomic (tree *expr_p, tree *pre_p)
5125 {
5126   tree addr = TREE_OPERAND (*expr_p, 0);
5127   tree rhs = TREE_OPERAND (*expr_p, 1);
5128   tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5129   HOST_WIDE_INT index;
5130
5131   /* Make sure the type is one of the supported sizes.  */
5132   index = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5133   index = exact_log2 (index);
5134   if (index >= 0 && index <= 4)
5135     {
5136       enum gimplify_status gs;
5137       unsigned int align;
5138
5139       if (DECL_P (TREE_OPERAND (addr, 0)))
5140         align = DECL_ALIGN_UNIT (TREE_OPERAND (addr, 0));
5141       else if (TREE_CODE (TREE_OPERAND (addr, 0)) == COMPONENT_REF
5142                && TREE_CODE (TREE_OPERAND (TREE_OPERAND (addr, 0), 1))
5143                   == FIELD_DECL)
5144         align = DECL_ALIGN_UNIT (TREE_OPERAND (TREE_OPERAND (addr, 0), 1));
5145       else
5146         align = TYPE_ALIGN_UNIT (type);
5147
5148       /* __sync builtins require strict data alignment.  */
5149       if (exact_log2 (align) >= index)
5150         {
5151           /* When possible, use specialized atomic update functions.  */
5152           if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5153             {
5154               gs = gimplify_omp_atomic_fetch_op (expr_p, addr, rhs, index);
5155               if (gs != GS_UNHANDLED)
5156                 return gs;
5157             }
5158
5159           /* If we don't have specialized __sync builtins, try and implement
5160              as a compare and swap loop.  */
5161           gs = gimplify_omp_atomic_pipeline (expr_p, pre_p, addr, rhs, index);
5162           if (gs != GS_UNHANDLED)
5163             return gs;
5164         }
5165     }
5166
5167   /* The ultimate fallback is wrapping the operation in a mutex.  */
5168   return gimplify_omp_atomic_mutex (expr_p, pre_p, addr, rhs);
5169 }
5170
5171 /*  Gimplifies the expression tree pointed to by EXPR_P.  Return 0 if
5172     gimplification failed.
5173
5174     PRE_P points to the list where side effects that must happen before
5175         EXPR should be stored.
5176
5177     POST_P points to the list where side effects that must happen after
5178         EXPR should be stored, or NULL if there is no suitable list.  In
5179         that case, we copy the result to a temporary, emit the
5180         post-effects, and then return the temporary.
5181
5182     GIMPLE_TEST_F points to a function that takes a tree T and
5183         returns nonzero if T is in the GIMPLE form requested by the
5184         caller.  The GIMPLE predicates are in tree-gimple.c.
5185
5186         This test is used twice.  Before gimplification, the test is
5187         invoked to determine whether *EXPR_P is already gimple enough.  If
5188         that fails, *EXPR_P is gimplified according to its code and
5189         GIMPLE_TEST_F is called again.  If the test still fails, then a new
5190         temporary variable is created and assigned the value of the
5191         gimplified expression.
5192
5193     FALLBACK tells the function what sort of a temporary we want.  If the 1
5194         bit is set, an rvalue is OK.  If the 2 bit is set, an lvalue is OK.
5195         If both are set, either is OK, but an lvalue is preferable.
5196
5197     The return value is either GS_ERROR or GS_ALL_DONE, since this function
5198     iterates until solution.  */
5199
5200 enum gimplify_status
5201 gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
5202                bool (* gimple_test_f) (tree), fallback_t fallback)
5203 {
5204   tree tmp;
5205   tree internal_pre = NULL_TREE;
5206   tree internal_post = NULL_TREE;
5207   tree save_expr;
5208   int is_statement = (pre_p == NULL);
5209   location_t saved_location;
5210   enum gimplify_status ret;
5211
5212   save_expr = *expr_p;
5213   if (save_expr == NULL_TREE)
5214     return GS_ALL_DONE;
5215
5216   /* We used to check the predicate here and return immediately if it
5217      succeeds.  This is wrong; the design is for gimplification to be
5218      idempotent, and for the predicates to only test for valid forms, not
5219      whether they are fully simplified.  */
5220
5221   /* Set up our internal queues if needed.  */
5222   if (pre_p == NULL)
5223     pre_p = &internal_pre;
5224   if (post_p == NULL)
5225     post_p = &internal_post;
5226
5227   saved_location = input_location;
5228   if (save_expr != error_mark_node
5229       && EXPR_HAS_LOCATION (*expr_p))
5230     input_location = EXPR_LOCATION (*expr_p);
5231
5232   /* Loop over the specific gimplifiers until the toplevel node
5233      remains the same.  */
5234   do
5235     {
5236       /* Strip away as many useless type conversions as possible
5237          at the toplevel.  */
5238       STRIP_USELESS_TYPE_CONVERSION (*expr_p);
5239
5240       /* Remember the expr.  */
5241       save_expr = *expr_p;
5242
5243       /* Die, die, die, my darling.  */
5244       if (save_expr == error_mark_node
5245           || (TREE_TYPE (save_expr)
5246               && TREE_TYPE (save_expr) == error_mark_node))
5247         {
5248           ret = GS_ERROR;
5249           break;
5250         }
5251
5252       /* Do any language-specific gimplification.  */
5253       ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
5254       if (ret == GS_OK)
5255         {
5256           if (*expr_p == NULL_TREE)
5257             break;
5258           if (*expr_p != save_expr)
5259             continue;
5260         }
5261       else if (ret != GS_UNHANDLED)
5262         break;
5263
5264       ret = GS_OK;
5265       switch (TREE_CODE (*expr_p))
5266         {
5267           /* First deal with the special cases.  */
5268
5269         case POSTINCREMENT_EXPR:
5270         case POSTDECREMENT_EXPR:
5271         case PREINCREMENT_EXPR:
5272         case PREDECREMENT_EXPR:
5273           ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
5274                                         fallback != fb_none);
5275           break;
5276
5277         case ARRAY_REF:
5278         case ARRAY_RANGE_REF:
5279         case REALPART_EXPR:
5280         case IMAGPART_EXPR:
5281         case COMPONENT_REF:
5282         case VIEW_CONVERT_EXPR:
5283           ret = gimplify_compound_lval (expr_p, pre_p, post_p,
5284                                         fallback ? fallback : fb_rvalue);
5285           break;
5286
5287         case COND_EXPR:
5288           ret = gimplify_cond_expr (expr_p, pre_p, fallback);
5289           /* C99 code may assign to an array in a structure value of a
5290              conditional expression, and this has undefined behavior
5291              only on execution, so create a temporary if an lvalue is
5292              required.  */
5293           if (fallback == fb_lvalue)
5294             {
5295               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5296               lang_hooks.mark_addressable (*expr_p);
5297             }
5298           break;
5299
5300         case CALL_EXPR:
5301           ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
5302           /* C99 code may assign to an array in a structure returned
5303              from a function, and this has undefined behavior only on
5304              execution, so create a temporary if an lvalue is
5305              required.  */
5306           if (fallback == fb_lvalue)
5307             {
5308               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5309               lang_hooks.mark_addressable (*expr_p);
5310             }
5311           break;
5312
5313         case TREE_LIST:
5314           gcc_unreachable ();
5315
5316         case COMPOUND_EXPR:
5317           ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
5318           break;
5319
5320         case MODIFY_EXPR:
5321         case INIT_EXPR:
5322           ret = gimplify_modify_expr (expr_p, pre_p, post_p,
5323                                       fallback != fb_none);
5324
5325           /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer
5326              useful.  */
5327           if (*expr_p && TREE_CODE (*expr_p) == INIT_EXPR)
5328             TREE_SET_CODE (*expr_p, MODIFY_EXPR);
5329           break;
5330
5331         case TRUTH_ANDIF_EXPR:
5332         case TRUTH_ORIF_EXPR:
5333           ret = gimplify_boolean_expr (expr_p);
5334           break;
5335
5336         case TRUTH_NOT_EXPR:
5337           TREE_OPERAND (*expr_p, 0)
5338             = gimple_boolify (TREE_OPERAND (*expr_p, 0));
5339           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5340                                is_gimple_val, fb_rvalue);
5341           recalculate_side_effects (*expr_p);
5342           break;
5343
5344         case ADDR_EXPR:
5345           ret = gimplify_addr_expr (expr_p, pre_p, post_p);
5346           break;
5347
5348         case VA_ARG_EXPR:
5349           ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
5350           break;
5351
5352         case CONVERT_EXPR:
5353         case NOP_EXPR:
5354           if (IS_EMPTY_STMT (*expr_p))
5355             {
5356               ret = GS_ALL_DONE;
5357               break;
5358             }
5359
5360           if (VOID_TYPE_P (TREE_TYPE (*expr_p))
5361               || fallback == fb_none)
5362             {
5363               /* Just strip a conversion to void (or in void context) and
5364                  try again.  */
5365               *expr_p = TREE_OPERAND (*expr_p, 0);
5366               break;
5367             }
5368
5369           ret = gimplify_conversion (expr_p);
5370           if (ret == GS_ERROR)
5371             break;
5372           if (*expr_p != save_expr)
5373             break;
5374           /* FALLTHRU */
5375
5376         case FIX_TRUNC_EXPR:
5377         case FIX_CEIL_EXPR:
5378         case FIX_FLOOR_EXPR:
5379         case FIX_ROUND_EXPR:
5380           /* unary_expr: ... | '(' cast ')' val | ...  */
5381           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5382                                is_gimple_val, fb_rvalue);
5383           recalculate_side_effects (*expr_p);
5384           break;
5385
5386         case INDIRECT_REF:
5387           *expr_p = fold_indirect_ref (*expr_p);
5388           if (*expr_p != save_expr)
5389             break;
5390           /* else fall through.  */
5391         case ALIGN_INDIRECT_REF:
5392         case MISALIGNED_INDIRECT_REF:
5393           ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5394                                is_gimple_reg, fb_rvalue);
5395           recalculate_side_effects (*expr_p);
5396           break;
5397
5398           /* Constants need not be gimplified.  */
5399         case INTEGER_CST:
5400         case REAL_CST:
5401         case STRING_CST:
5402         case COMPLEX_CST:
5403         case VECTOR_CST:
5404           ret = GS_ALL_DONE;
5405           break;
5406
5407         case CONST_DECL:
5408           /* If we require an lvalue, such as for ADDR_EXPR, retain the
5409              CONST_DECL node.  Otherwise the decl is replaceable by its
5410              value.  */
5411           /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either.  */
5412           if (fallback & fb_lvalue)
5413             ret = GS_ALL_DONE;
5414           else
5415             *expr_p = DECL_INITIAL (*expr_p);
5416           break;
5417
5418         case DECL_EXPR:
5419           ret = gimplify_decl_expr (expr_p);
5420           break;
5421
5422         case EXC_PTR_EXPR:
5423           /* FIXME make this a decl.  */
5424           ret = GS_ALL_DONE;
5425           break;
5426
5427         case BIND_EXPR:
5428           ret = gimplify_bind_expr (expr_p, NULL, pre_p);
5429           break;
5430
5431         case LOOP_EXPR:
5432           ret = gimplify_loop_expr (expr_p, pre_p);
5433           break;
5434
5435         case SWITCH_EXPR:
5436           ret = gimplify_switch_expr (expr_p, pre_p);
5437           break;
5438
5439         case EXIT_EXPR:
5440           ret = gimplify_exit_expr (expr_p);
5441           break;
5442
5443         case GOTO_EXPR:
5444           /* If the target is not LABEL, then it is a computed jump
5445              and the target needs to be gimplified.  */
5446           if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
5447             ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
5448                                  NULL, is_gimple_val, fb_rvalue);
5449           break;
5450
5451         case LABEL_EXPR:
5452           ret = GS_ALL_DONE;
5453           gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
5454                       == current_function_decl);
5455           break;
5456
5457         case CASE_LABEL_EXPR:
5458           ret = gimplify_case_label_expr (expr_p);
5459           break;
5460
5461         case RETURN_EXPR:
5462           ret = gimplify_return_expr (*expr_p, pre_p);
5463           break;
5464
5465         case CONSTRUCTOR:
5466           /* Don't reduce this in place; let gimplify_init_constructor work its
5467              magic.  Buf if we're just elaborating this for side effects, just
5468              gimplify any element that has side-effects.  */
5469           if (fallback == fb_none)
5470             {
5471               unsigned HOST_WIDE_INT ix;
5472               constructor_elt *ce;
5473               tree temp = NULL_TREE;
5474               for (ix = 0;
5475                    VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (*expr_p),
5476                                 ix, ce);
5477                    ix++)
5478                 if (TREE_SIDE_EFFECTS (ce->value))
5479                   append_to_statement_list (ce->value, &temp);
5480
5481               *expr_p = temp;
5482               ret = GS_OK;
5483             }
5484           /* C99 code may assign to an array in a constructed
5485              structure or union, and this has undefined behavior only
5486              on execution, so create a temporary if an lvalue is
5487              required.  */
5488           else if (fallback == fb_lvalue)
5489             {
5490               *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5491               lang_hooks.mark_addressable (*expr_p);
5492             }
5493           else
5494             ret = GS_ALL_DONE;
5495           break;
5496
5497           /* The following are special cases that are not handled by the
5498              original GIMPLE grammar.  */
5499
5500           /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
5501              eliminated.  */
5502         case SAVE_EXPR:
5503           ret = gimplify_save_expr (expr_p, pre_p, post_p);
5504           break;
5505
5506         case BIT_FIELD_REF:
5507           {
5508             enum gimplify_status r0, r1, r2;
5509
5510             r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5511                                 is_gimple_lvalue, fb_either);
5512             r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5513                                 is_gimple_val, fb_rvalue);
5514             r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
5515                                 is_gimple_val, fb_rvalue);
5516             recalculate_side_effects (*expr_p);
5517
5518             ret = MIN (r0, MIN (r1, r2));
5519           }
5520           break;
5521
5522         case NON_LVALUE_EXPR:
5523           /* This should have been stripped above.  */
5524           gcc_unreachable ();
5525
5526         case ASM_EXPR:
5527           ret = gimplify_asm_expr (expr_p, pre_p, post_p);
5528           break;
5529
5530         case TRY_FINALLY_EXPR:
5531         case TRY_CATCH_EXPR:
5532           gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
5533           gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
5534           ret = GS_ALL_DONE;
5535           break;
5536
5537         case CLEANUP_POINT_EXPR:
5538           ret = gimplify_cleanup_point_expr (expr_p, pre_p);
5539           break;
5540
5541         case TARGET_EXPR:
5542           ret = gimplify_target_expr (expr_p, pre_p, post_p);
5543           break;
5544
5545         case CATCH_EXPR:
5546           gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
5547           ret = GS_ALL_DONE;
5548           break;
5549
5550         case EH_FILTER_EXPR:
5551           gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
5552           ret = GS_ALL_DONE;
5553           break;
5554
5555         case OBJ_TYPE_REF:
5556           {
5557             enum gimplify_status r0, r1;
5558             r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
5559                                 is_gimple_val, fb_rvalue);
5560             r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
5561                                 is_gimple_val, fb_rvalue);
5562             ret = MIN (r0, r1);
5563           }
5564           break;
5565
5566         case LABEL_DECL:
5567           /* We get here when taking the address of a label.  We mark
5568              the label as "forced"; meaning it can never be removed and
5569              it is a potential target for any computed goto.  */
5570           FORCED_LABEL (*expr_p) = 1;
5571           ret = GS_ALL_DONE;
5572           break;
5573
5574         case STATEMENT_LIST:
5575           ret = gimplify_statement_list (expr_p);
5576           break;
5577
5578         case WITH_SIZE_EXPR:
5579           {
5580             gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5581                            post_p == &internal_post ? NULL : post_p,
5582                            gimple_test_f, fallback);
5583             gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5584                            is_gimple_val, fb_rvalue);
5585           }
5586           break;
5587
5588         case VAR_DECL:
5589         case PARM_DECL:
5590           ret = gimplify_var_or_parm_decl (expr_p);
5591           break;
5592
5593         case RESULT_DECL:
5594           /* When within an OpenMP context, notice uses of variables.  */
5595           if (gimplify_omp_ctxp)
5596             omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
5597           ret = GS_ALL_DONE;
5598           break;
5599
5600         case SSA_NAME:
5601           /* Allow callbacks into the gimplifier during optimization.  */
5602           ret = GS_ALL_DONE;
5603           break;
5604
5605         case OMP_PARALLEL:
5606           ret = gimplify_omp_parallel (expr_p, pre_p);
5607           break;
5608
5609         case OMP_FOR:
5610           ret = gimplify_omp_for (expr_p, pre_p);
5611           break;
5612
5613         case OMP_SECTIONS:
5614         case OMP_SINGLE:
5615           ret = gimplify_omp_workshare (expr_p, pre_p);
5616           break;
5617
5618         case OMP_SECTION:
5619         case OMP_MASTER:
5620         case OMP_ORDERED:
5621         case OMP_CRITICAL:
5622           gimplify_to_stmt_list (&OMP_BODY (*expr_p));
5623           break;
5624
5625         case OMP_ATOMIC:
5626           ret = gimplify_omp_atomic (expr_p, pre_p);
5627           break;
5628
5629         case OMP_RETURN:
5630         case OMP_CONTINUE:
5631           ret = GS_ALL_DONE;
5632           break;
5633
5634         default:
5635           switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
5636             {
5637             case tcc_comparison:
5638               /* If this is a comparison of objects of aggregate type,
5639                  handle it specially (by converting to a call to
5640                  memcmp).  It would be nice to only have to do this
5641                  for variable-sized objects, but then we'd have to
5642                  allow the same nest of reference nodes we allow for
5643                  MODIFY_EXPR and that's too complex.  */
5644               if (!AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (*expr_p, 1))))
5645                 goto expr_2;
5646               ret = gimplify_variable_sized_compare (expr_p);
5647               break;
5648
5649             /* If *EXPR_P does not need to be special-cased, handle it
5650                according to its class.  */
5651             case tcc_unary:
5652               ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5653                                    post_p, is_gimple_val, fb_rvalue);
5654               break;
5655
5656             case tcc_binary:
5657             expr_2:
5658               {
5659                 enum gimplify_status r0, r1;
5660
5661                 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5662                                     post_p, is_gimple_val, fb_rvalue);
5663                 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
5664                                     post_p, is_gimple_val, fb_rvalue);
5665
5666                 ret = MIN (r0, r1);
5667                 break;
5668               }
5669
5670             case tcc_declaration:
5671             case tcc_constant:
5672               ret = GS_ALL_DONE;
5673               goto dont_recalculate;
5674
5675             default:
5676               gcc_assert (TREE_CODE (*expr_p) == TRUTH_AND_EXPR
5677                           || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
5678                           || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR);
5679               goto expr_2;
5680             }
5681
5682           recalculate_side_effects (*expr_p);
5683         dont_recalculate:
5684           break;
5685         }
5686
5687       /* If we replaced *expr_p, gimplify again.  */
5688       if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
5689         ret = GS_ALL_DONE;
5690     }
5691   while (ret == GS_OK);
5692
5693   /* If we encountered an error_mark somewhere nested inside, either
5694      stub out the statement or propagate the error back out.  */
5695   if (ret == GS_ERROR)
5696     {
5697       if (is_statement)
5698         *expr_p = NULL;
5699       goto out;
5700     }
5701
5702   /* This was only valid as a return value from the langhook, which
5703      we handled.  Make sure it doesn't escape from any other context.  */
5704   gcc_assert (ret != GS_UNHANDLED);
5705
5706   if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
5707     {
5708       /* We aren't looking for a value, and we don't have a valid
5709          statement.  If it doesn't have side-effects, throw it away.  */
5710       if (!TREE_SIDE_EFFECTS (*expr_p))
5711         *expr_p = NULL;
5712       else if (!TREE_THIS_VOLATILE (*expr_p))
5713         {
5714           /* This is probably a _REF that contains something nested that
5715              has side effects.  Recurse through the operands to find it.  */
5716           enum tree_code code = TREE_CODE (*expr_p);
5717
5718           switch (code)
5719             {
5720             case COMPONENT_REF:
5721             case REALPART_EXPR: case IMAGPART_EXPR:
5722               gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5723                              gimple_test_f, fallback);
5724               break;
5725
5726             case ARRAY_REF: case ARRAY_RANGE_REF:
5727               gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5728                              gimple_test_f, fallback);
5729               gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5730                              gimple_test_f, fallback);
5731               break;
5732
5733             default:
5734                /* Anything else with side-effects must be converted to
5735                   a valid statement before we get here.  */
5736               gcc_unreachable ();
5737             }
5738
5739           *expr_p = NULL;
5740         }
5741       else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p)))
5742         {
5743           /* Historically, the compiler has treated a bare
5744              reference to a volatile lvalue as forcing a load.  */
5745           tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
5746           /* Normally, we do not want to create a temporary for a
5747              TREE_ADDRESSABLE type because such a type should not be
5748              copied by bitwise-assignment.  However, we make an
5749              exception here, as all we are doing here is ensuring that
5750              we read the bytes that make up the type.  We use
5751              create_tmp_var_raw because create_tmp_var will abort when
5752              given a TREE_ADDRESSABLE type.  */
5753           tree tmp = create_tmp_var_raw (type, "vol");
5754           gimple_add_tmp_var (tmp);
5755           *expr_p = build2 (MODIFY_EXPR, type, tmp, *expr_p);
5756         }
5757       else
5758         /* We can't do anything useful with a volatile reference to
5759            incomplete type, so just throw it away.  */
5760         *expr_p = NULL;
5761     }
5762
5763   /* If we are gimplifying at the statement level, we're done.  Tack
5764      everything together and replace the original statement with the
5765      gimplified form.  */
5766   if (fallback == fb_none || is_statement)
5767     {
5768       if (internal_pre || internal_post)
5769         {
5770           append_to_statement_list (*expr_p, &internal_pre);
5771           append_to_statement_list (internal_post, &internal_pre);
5772           annotate_all_with_locus (&internal_pre, input_location);
5773           *expr_p = internal_pre;
5774         }
5775       else if (!*expr_p)
5776         ;
5777       else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
5778         annotate_all_with_locus (expr_p, input_location);
5779       else
5780         annotate_one_with_locus (*expr_p, input_location);
5781       goto out;
5782     }
5783
5784   /* Otherwise we're gimplifying a subexpression, so the resulting value is
5785      interesting.  */
5786
5787   /* If it's sufficiently simple already, we're done.  Unless we are
5788      handling some post-effects internally; if that's the case, we need to
5789      copy into a temp before adding the post-effects to the tree.  */
5790   if (!internal_post && (*gimple_test_f) (*expr_p))
5791     goto out;
5792
5793   /* Otherwise, we need to create a new temporary for the gimplified
5794      expression.  */
5795
5796   /* We can't return an lvalue if we have an internal postqueue.  The
5797      object the lvalue refers to would (probably) be modified by the
5798      postqueue; we need to copy the value out first, which means an
5799      rvalue.  */
5800   if ((fallback & fb_lvalue) && !internal_post
5801       && is_gimple_addressable (*expr_p))
5802     {
5803       /* An lvalue will do.  Take the address of the expression, store it
5804          in a temporary, and replace the expression with an INDIRECT_REF of
5805          that temporary.  */
5806       tmp = build_fold_addr_expr (*expr_p);
5807       gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
5808       *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
5809     }
5810   else if ((fallback & fb_rvalue) && is_gimple_formal_tmp_rhs (*expr_p))
5811     {
5812       gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
5813
5814       /* An rvalue will do.  Assign the gimplified expression into a new
5815          temporary TMP and replace the original expression with TMP.  */
5816
5817       if (internal_post || (fallback & fb_lvalue))
5818         /* The postqueue might change the value of the expression between
5819            the initialization and use of the temporary, so we can't use a
5820            formal temp.  FIXME do we care?  */
5821         *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5822       else
5823         *expr_p = get_formal_tmp_var (*expr_p, pre_p);
5824
5825       if (TREE_CODE (*expr_p) != SSA_NAME)
5826         DECL_GIMPLE_FORMAL_TEMP_P (*expr_p) = 1;
5827     }
5828   else
5829     {
5830 #ifdef ENABLE_CHECKING
5831       if (!(fallback & fb_mayfail))
5832         {
5833           fprintf (stderr, "gimplification failed:\n");
5834           print_generic_expr (stderr, *expr_p, 0);
5835           debug_tree (*expr_p);
5836           internal_error ("gimplification failed");
5837         }
5838 #endif
5839       gcc_assert (fallback & fb_mayfail);
5840       /* If this is an asm statement, and the user asked for the
5841          impossible, don't die.  Fail and let gimplify_asm_expr
5842          issue an error.  */
5843       ret = GS_ERROR;
5844       goto out;
5845     }
5846
5847   /* Make sure the temporary matches our predicate.  */
5848   gcc_assert ((*gimple_test_f) (*expr_p));
5849
5850   if (internal_post)
5851     {
5852       annotate_all_with_locus (&internal_post, input_location);
5853       append_to_statement_list (internal_post, pre_p);
5854     }
5855
5856  out:
5857   input_location = saved_location;
5858   return ret;
5859 }
5860
5861 /* Look through TYPE for variable-sized objects and gimplify each such
5862    size that we find.  Add to LIST_P any statements generated.  */
5863
5864 void
5865 gimplify_type_sizes (tree type, tree *list_p)
5866 {
5867   tree field, t;
5868
5869   if (type == NULL || type == error_mark_node)
5870     return;
5871
5872   /* We first do the main variant, then copy into any other variants.  */
5873   type = TYPE_MAIN_VARIANT (type);
5874
5875   /* Avoid infinite recursion.  */
5876   if (TYPE_SIZES_GIMPLIFIED (type))
5877     return;
5878
5879   TYPE_SIZES_GIMPLIFIED (type) = 1;
5880
5881   switch (TREE_CODE (type))
5882     {
5883     case INTEGER_TYPE:
5884     case ENUMERAL_TYPE:
5885     case BOOLEAN_TYPE:
5886     case REAL_TYPE:
5887       gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
5888       gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
5889
5890       for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5891         {
5892           TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
5893           TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
5894         }
5895       break;
5896
5897     case ARRAY_TYPE:
5898       /* These types may not have declarations, so handle them here.  */
5899       gimplify_type_sizes (TREE_TYPE (type), list_p);
5900       gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
5901       break;
5902
5903     case RECORD_TYPE:
5904     case UNION_TYPE:
5905     case QUAL_UNION_TYPE:
5906       for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
5907         if (TREE_CODE (field) == FIELD_DECL)
5908           {
5909             gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
5910             gimplify_type_sizes (TREE_TYPE (field), list_p);
5911           }
5912       break;
5913
5914     case POINTER_TYPE:
5915     case REFERENCE_TYPE:
5916       gimplify_type_sizes (TREE_TYPE (type), list_p);
5917       break;
5918
5919     default:
5920       break;
5921     }
5922
5923   gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
5924   gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
5925
5926   for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5927     {
5928       TYPE_SIZE (t) = TYPE_SIZE (type);
5929       TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
5930       TYPE_SIZES_GIMPLIFIED (t) = 1;
5931     }
5932 }
5933
5934 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
5935    a size or position, has had all of its SAVE_EXPRs evaluated.
5936    We add any required statements to STMT_P.  */
5937
5938 void
5939 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
5940 {
5941   tree type, expr = *expr_p;
5942
5943   /* We don't do anything if the value isn't there, is constant, or contains
5944      A PLACEHOLDER_EXPR.  We also don't want to do anything if it's already
5945      a VAR_DECL.  If it's a VAR_DECL from another function, the gimplifier
5946      will want to replace it with a new variable, but that will cause problems
5947      if this type is from outside the function.  It's OK to have that here.  */
5948   if (expr == NULL_TREE || TREE_CONSTANT (expr)
5949       || TREE_CODE (expr) == VAR_DECL
5950       || CONTAINS_PLACEHOLDER_P (expr))
5951     return;
5952
5953   type = TREE_TYPE (expr);
5954   *expr_p = unshare_expr (expr);
5955
5956   gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
5957   expr = *expr_p;
5958
5959   /* Verify that we've an exact type match with the original expression.
5960      In particular, we do not wish to drop a "sizetype" in favour of a
5961      type of similar dimensions.  We don't want to pollute the generic
5962      type-stripping code with this knowledge because it doesn't matter
5963      for the bulk of GENERIC/GIMPLE.  It only matters that TYPE_SIZE_UNIT
5964      and friends retain their "sizetype-ness".  */
5965   if (TREE_TYPE (expr) != type
5966       && TREE_CODE (type) == INTEGER_TYPE
5967       && TYPE_IS_SIZETYPE (type))
5968     {
5969       tree tmp;
5970
5971       *expr_p = create_tmp_var (type, NULL);
5972       tmp = build1 (NOP_EXPR, type, expr);
5973       tmp = build2 (MODIFY_EXPR, type, *expr_p, tmp);
5974       if (EXPR_HAS_LOCATION (expr))
5975         SET_EXPR_LOCUS (tmp, EXPR_LOCUS (expr));
5976       else
5977         SET_EXPR_LOCATION (tmp, input_location);
5978
5979       gimplify_and_add (tmp, stmt_p);
5980     }
5981 }
5982 \f
5983 #ifdef ENABLE_CHECKING
5984 /* Compare types A and B for a "close enough" match.  */
5985
5986 static bool
5987 cpt_same_type (tree a, tree b)
5988 {
5989   if (lang_hooks.types_compatible_p (a, b))
5990     return true;
5991
5992   /* ??? The C++ FE decomposes METHOD_TYPES to FUNCTION_TYPES and doesn't
5993      link them together.  This routine is intended to catch type errors
5994      that will affect the optimizers, and the optimizers don't add new
5995      dereferences of function pointers, so ignore it.  */
5996   if ((TREE_CODE (a) == FUNCTION_TYPE || TREE_CODE (a) == METHOD_TYPE)
5997       && (TREE_CODE (b) == FUNCTION_TYPE || TREE_CODE (b) == METHOD_TYPE))
5998     return true;
5999
6000   /* ??? The C FE pushes type qualifiers after the fact into the type of
6001      the element from the type of the array.  See build_unary_op's handling
6002      of ADDR_EXPR.  This seems wrong -- if we were going to do this, we
6003      should have done it when creating the variable in the first place.
6004      Alternately, why aren't the two array types made variants?  */
6005   if (TREE_CODE (a) == ARRAY_TYPE && TREE_CODE (b) == ARRAY_TYPE)
6006     return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
6007
6008   /* And because of those, we have to recurse down through pointers.  */
6009   if (POINTER_TYPE_P (a) && POINTER_TYPE_P (b))
6010     return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
6011
6012   return false;
6013 }
6014
6015 /* Check for some cases of the front end missing cast expressions.
6016    The type of a dereference should correspond to the pointer type;
6017    similarly the type of an address should match its object.  */
6018
6019 static tree
6020 check_pointer_types_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
6021                        void *data ATTRIBUTE_UNUSED)
6022 {
6023   tree t = *tp;
6024   tree ptype, otype, dtype;
6025
6026   switch (TREE_CODE (t))
6027     {
6028     case INDIRECT_REF:
6029     case ARRAY_REF:
6030       otype = TREE_TYPE (t);
6031       ptype = TREE_TYPE (TREE_OPERAND (t, 0));
6032       dtype = TREE_TYPE (ptype);
6033       gcc_assert (cpt_same_type (otype, dtype));
6034       break;
6035
6036     case ADDR_EXPR:
6037       ptype = TREE_TYPE (t);
6038       otype = TREE_TYPE (TREE_OPERAND (t, 0));
6039       dtype = TREE_TYPE (ptype);
6040       if (!cpt_same_type (otype, dtype))
6041         {
6042           /* &array is allowed to produce a pointer to the element, rather than
6043              a pointer to the array type.  We must allow this in order to
6044              properly represent assigning the address of an array in C into
6045              pointer to the element type.  */
6046           gcc_assert (TREE_CODE (otype) == ARRAY_TYPE
6047                       && POINTER_TYPE_P (ptype)
6048                       && cpt_same_type (TREE_TYPE (otype), dtype));
6049           break;
6050         }
6051       break;
6052
6053     default:
6054       return NULL_TREE;
6055     }
6056
6057
6058   return NULL_TREE;
6059 }
6060 #endif
6061
6062 /* Gimplify the body of statements pointed to by BODY_P.  FNDECL is the
6063    function decl containing BODY.  */
6064
6065 void
6066 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
6067 {
6068   location_t saved_location = input_location;
6069   tree body, parm_stmts;
6070
6071   timevar_push (TV_TREE_GIMPLIFY);
6072
6073   gcc_assert (gimplify_ctxp == NULL);
6074   push_gimplify_context ();
6075
6076   /* Unshare most shared trees in the body and in that of any nested functions.
6077      It would seem we don't have to do this for nested functions because
6078      they are supposed to be output and then the outer function gimplified
6079      first, but the g++ front end doesn't always do it that way.  */
6080   unshare_body (body_p, fndecl);
6081   unvisit_body (body_p, fndecl);
6082
6083   /* Make sure input_location isn't set to something wierd.  */
6084   input_location = DECL_SOURCE_LOCATION (fndecl);
6085
6086   /* Resolve callee-copies.  This has to be done before processing
6087      the body so that DECL_VALUE_EXPR gets processed correctly.  */
6088   parm_stmts = do_parms ? gimplify_parameters () : NULL;
6089
6090   /* Gimplify the function's body.  */
6091   gimplify_stmt (body_p);
6092   body = *body_p;
6093
6094   if (!body)
6095     body = alloc_stmt_list ();
6096   else if (TREE_CODE (body) == STATEMENT_LIST)
6097     {
6098       tree t = expr_only (*body_p);
6099       if (t)
6100         body = t;
6101     }
6102
6103   /* If there isn't an outer BIND_EXPR, add one.  */
6104   if (TREE_CODE (body) != BIND_EXPR)
6105     {
6106       tree b = build3 (BIND_EXPR, void_type_node, NULL_TREE,
6107                        NULL_TREE, NULL_TREE);
6108       TREE_SIDE_EFFECTS (b) = 1;
6109       append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
6110       body = b;
6111     }
6112
6113   /* If we had callee-copies statements, insert them at the beginning
6114      of the function.  */
6115   if (parm_stmts)
6116     {
6117       append_to_statement_list_force (BIND_EXPR_BODY (body), &parm_stmts);
6118       BIND_EXPR_BODY (body) = parm_stmts;
6119     }
6120
6121   /* Unshare again, in case gimplification was sloppy.  */
6122   unshare_all_trees (body);
6123
6124   *body_p = body;
6125
6126   pop_gimplify_context (body);
6127   gcc_assert (gimplify_ctxp == NULL);
6128
6129 #ifdef ENABLE_CHECKING
6130   walk_tree (body_p, check_pointer_types_r, NULL, NULL);
6131 #endif
6132
6133   timevar_pop (TV_TREE_GIMPLIFY);
6134   input_location = saved_location;
6135 }
6136
6137 /* Entry point to the gimplification pass.  FNDECL is the FUNCTION_DECL
6138    node for the function we want to gimplify.  */
6139
6140 void
6141 gimplify_function_tree (tree fndecl)
6142 {
6143   tree oldfn, parm, ret;
6144
6145   oldfn = current_function_decl;
6146   current_function_decl = fndecl;
6147   cfun = DECL_STRUCT_FUNCTION (fndecl);
6148   if (cfun == NULL)
6149     allocate_struct_function (fndecl);
6150
6151   for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = TREE_CHAIN (parm))
6152     {
6153       /* Preliminarily mark non-addressed complex variables as eligible
6154          for promotion to gimple registers.  We'll transform their uses
6155          as we find them.  */
6156       if (TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
6157           && !TREE_THIS_VOLATILE (parm)
6158           && !needs_to_live_in_memory (parm))
6159         DECL_COMPLEX_GIMPLE_REG_P (parm) = 1;
6160     }
6161
6162   ret = DECL_RESULT (fndecl);
6163   if (TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
6164       && !needs_to_live_in_memory (ret))
6165     DECL_COMPLEX_GIMPLE_REG_P (ret) = 1;
6166
6167   gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
6168
6169   /* If we're instrumenting function entry/exit, then prepend the call to
6170      the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
6171      catch the exit hook.  */
6172   /* ??? Add some way to ignore exceptions for this TFE.  */
6173   if (flag_instrument_function_entry_exit
6174       && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl))
6175     {
6176       tree tf, x, bind;
6177
6178       tf = build2 (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
6179       TREE_SIDE_EFFECTS (tf) = 1;
6180       x = DECL_SAVED_TREE (fndecl);
6181       append_to_statement_list (x, &TREE_OPERAND (tf, 0));
6182       x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
6183       x = build_function_call_expr (x, NULL);
6184       append_to_statement_list (x, &TREE_OPERAND (tf, 1));
6185
6186       bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6187       TREE_SIDE_EFFECTS (bind) = 1;
6188       x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
6189       x = build_function_call_expr (x, NULL);
6190       append_to_statement_list (x, &BIND_EXPR_BODY (bind));
6191       append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
6192
6193       DECL_SAVED_TREE (fndecl) = bind;
6194     }
6195
6196   current_function_decl = oldfn;
6197   cfun = oldfn ? DECL_STRUCT_FUNCTION (oldfn) : NULL;
6198 }
6199
6200 \f
6201 /* Expands EXPR to list of gimple statements STMTS.  If SIMPLE is true,
6202    force the result to be either ssa_name or an invariant, otherwise
6203    just force it to be a rhs expression.  If VAR is not NULL, make the
6204    base variable of the final destination be VAR if suitable.  */
6205
6206 tree
6207 force_gimple_operand (tree expr, tree *stmts, bool simple, tree var)
6208 {
6209   tree t;
6210   enum gimplify_status ret;
6211   gimple_predicate gimple_test_f;
6212
6213   *stmts = NULL_TREE;
6214
6215   if (is_gimple_val (expr))
6216     return expr;
6217
6218   gimple_test_f = simple ? is_gimple_val : is_gimple_reg_rhs;
6219
6220   push_gimplify_context ();
6221   gimplify_ctxp->into_ssa = in_ssa_p;
6222
6223   if (var)
6224     expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
6225
6226   ret = gimplify_expr (&expr, stmts, NULL,
6227                        gimple_test_f, fb_rvalue);
6228   gcc_assert (ret != GS_ERROR);
6229
6230   if (referenced_vars)
6231     {
6232       for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
6233         add_referenced_var (t);
6234     }
6235
6236   pop_gimplify_context (NULL);
6237
6238   return expr;
6239 }
6240
6241 /* Invokes force_gimple_operand for EXPR with parameters SIMPLE_P and VAR.  If
6242    some statements are produced, emits them before BSI.  */
6243
6244 tree
6245 force_gimple_operand_bsi (block_stmt_iterator *bsi, tree expr,
6246                           bool simple_p, tree var)
6247 {
6248   tree stmts;
6249
6250   expr = force_gimple_operand (expr, &stmts, simple_p, var);
6251   if (stmts)
6252     bsi_insert_before (bsi, stmts, BSI_SAME_STMT);
6253
6254   return expr;
6255 }
6256
6257 #include "gt-gimplify.h"