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