PR c++/14032
[official-gcc.git] / gcc / gimplify.c
blob572a34fa6b3fbc28fa21c0ef498167575433bf1d
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>.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
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.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "rtl.h"
30 #include "varray.h"
31 #include "tree-gimple.h"
32 #include "tree-inline.h"
33 #include "diagnostic.h"
34 #include "langhooks.h"
35 #include "langhooks-def.h"
36 #include "tree-flow.h"
37 #include "cgraph.h"
38 #include "timevar.h"
39 #include "except.h"
40 #include "hashtab.h"
41 #include "flags.h"
42 #include "real.h"
43 #include "function.h"
44 #include "output.h"
45 #include "expr.h"
46 #include "ggc.h"
47 #include "toplev.h"
48 #include "target.h"
49 #include "optabs.h"
50 #include "pointer-set.h"
51 #include "splay-tree.h"
54 enum gimplify_omp_var_data
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)
69 struct gimplify_omp_ctx
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;
80 struct gimplify_ctx
82 struct gimplify_ctx *prev_context;
84 tree current_bind_expr;
85 tree temps;
86 tree conditional_cleanups;
87 tree exit_label;
88 tree return_temp;
90 VEC(tree,heap) *case_labels;
91 /* The formal temporary table. Should this be persistent? */
92 htab_t temp_htab;
94 int conditions;
95 bool save_stack;
96 bool into_ssa;
99 static struct gimplify_ctx *gimplify_ctxp;
100 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
104 /* Formal (expression) temporary table handling: Multiple occurrences of
105 the same scalar expression are evaluated into the same temporary. */
107 typedef struct gimple_temp_hash_elt
109 tree val; /* Key */
110 tree temp; /* Value */
111 } elt_t;
113 /* Forward declarations. */
114 static enum gimplify_status gimplify_compound_expr (tree *, tree *, bool);
116 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
117 form and we don't do any syntax checking. */
118 static void
119 mark_addressable (tree x)
121 while (handled_component_p (x))
122 x = TREE_OPERAND (x, 0);
123 if (TREE_CODE (x) != VAR_DECL && TREE_CODE (x) != PARM_DECL)
124 return ;
125 TREE_ADDRESSABLE (x) = 1;
128 /* Return a hash value for a formal temporary table entry. */
130 static hashval_t
131 gimple_tree_hash (const void *p)
133 tree t = ((const elt_t *) p)->val;
134 return iterative_hash_expr (t, 0);
137 /* Compare two formal temporary table entries. */
139 static int
140 gimple_tree_eq (const void *p1, const void *p2)
142 tree t1 = ((const elt_t *) p1)->val;
143 tree t2 = ((const elt_t *) p2)->val;
144 enum tree_code code = TREE_CODE (t1);
146 if (TREE_CODE (t2) != code
147 || TREE_TYPE (t1) != TREE_TYPE (t2))
148 return 0;
150 if (!operand_equal_p (t1, t2, 0))
151 return 0;
153 /* Only allow them to compare equal if they also hash equal; otherwise
154 results are nondeterminate, and we fail bootstrap comparison. */
155 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
157 return 1;
160 /* Set up a context for the gimplifier. */
162 void
163 push_gimplify_context (void)
165 struct gimplify_ctx *c;
167 c = (struct gimplify_ctx *) xcalloc (1, sizeof (struct gimplify_ctx));
168 c->prev_context = gimplify_ctxp;
169 if (optimize)
170 c->temp_htab = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
172 gimplify_ctxp = c;
175 /* Tear down a context for the gimplifier. If BODY is non-null, then
176 put the temporaries into the outer BIND_EXPR. Otherwise, put them
177 in the unexpanded_var_list. */
179 void
180 pop_gimplify_context (tree body)
182 struct gimplify_ctx *c = gimplify_ctxp;
183 tree t;
185 gcc_assert (c && !c->current_bind_expr);
186 gimplify_ctxp = c->prev_context;
188 for (t = c->temps; t ; t = TREE_CHAIN (t))
189 DECL_GIMPLE_FORMAL_TEMP_P (t) = 0;
191 if (body)
192 declare_vars (c->temps, body, false);
193 else
194 record_vars (c->temps);
196 if (optimize)
197 htab_delete (c->temp_htab);
198 free (c);
201 static void
202 gimple_push_bind_expr (tree bind)
204 TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr;
205 gimplify_ctxp->current_bind_expr = bind;
208 static void
209 gimple_pop_bind_expr (void)
211 gimplify_ctxp->current_bind_expr
212 = TREE_CHAIN (gimplify_ctxp->current_bind_expr);
215 tree
216 gimple_current_bind_expr (void)
218 return gimplify_ctxp->current_bind_expr;
221 /* Returns true iff there is a COND_EXPR between us and the innermost
222 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
224 static bool
225 gimple_conditional_context (void)
227 return gimplify_ctxp->conditions > 0;
230 /* Note that we've entered a COND_EXPR. */
232 static void
233 gimple_push_condition (void)
235 #ifdef ENABLE_CHECKING
236 if (gimplify_ctxp->conditions == 0)
237 gcc_assert (!gimplify_ctxp->conditional_cleanups);
238 #endif
239 ++(gimplify_ctxp->conditions);
242 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
243 now, add any conditional cleanups we've seen to the prequeue. */
245 static void
246 gimple_pop_condition (tree *pre_p)
248 int conds = --(gimplify_ctxp->conditions);
250 gcc_assert (conds >= 0);
251 if (conds == 0)
253 append_to_statement_list (gimplify_ctxp->conditional_cleanups, pre_p);
254 gimplify_ctxp->conditional_cleanups = NULL_TREE;
258 /* A stable comparison routine for use with splay trees and DECLs. */
260 static int
261 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
263 tree a = (tree) xa;
264 tree b = (tree) xb;
266 return DECL_UID (a) - DECL_UID (b);
269 /* Create a new omp construct that deals with variable remapping. */
271 static struct gimplify_omp_ctx *
272 new_omp_context (bool is_parallel, bool is_combined_parallel)
274 struct gimplify_omp_ctx *c;
276 c = XCNEW (struct gimplify_omp_ctx);
277 c->outer_context = gimplify_omp_ctxp;
278 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
279 c->privatized_types = pointer_set_create ();
280 c->location = input_location;
281 c->is_parallel = is_parallel;
282 c->is_combined_parallel = is_combined_parallel;
283 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
285 return c;
288 /* Destroy an omp construct that deals with variable remapping. */
290 static void
291 delete_omp_context (struct gimplify_omp_ctx *c)
293 splay_tree_delete (c->variables);
294 pointer_set_destroy (c->privatized_types);
295 XDELETE (c);
298 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
299 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
301 /* A subroutine of append_to_statement_list{,_force}. T is not NULL. */
303 static void
304 append_to_statement_list_1 (tree t, tree *list_p)
306 tree list = *list_p;
307 tree_stmt_iterator i;
309 if (!list)
311 if (t && TREE_CODE (t) == STATEMENT_LIST)
313 *list_p = t;
314 return;
316 *list_p = list = alloc_stmt_list ();
319 i = tsi_last (list);
320 tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
323 /* Add T to the end of the list container pointed to by LIST_P.
324 If T is an expression with no effects, it is ignored. */
326 void
327 append_to_statement_list (tree t, tree *list_p)
329 if (t && TREE_SIDE_EFFECTS (t))
330 append_to_statement_list_1 (t, list_p);
333 /* Similar, but the statement is always added, regardless of side effects. */
335 void
336 append_to_statement_list_force (tree t, tree *list_p)
338 if (t != NULL_TREE)
339 append_to_statement_list_1 (t, list_p);
342 /* Both gimplify the statement T and append it to LIST_P. */
344 void
345 gimplify_and_add (tree t, tree *list_p)
347 gimplify_stmt (&t);
348 append_to_statement_list (t, list_p);
351 /* Strip off a legitimate source ending from the input string NAME of
352 length LEN. Rather than having to know the names used by all of
353 our front ends, we strip off an ending of a period followed by
354 up to five characters. (Java uses ".class".) */
356 static inline void
357 remove_suffix (char *name, int len)
359 int i;
361 for (i = 2; i < 8 && len > i; i++)
363 if (name[len - i] == '.')
365 name[len - i] = '\0';
366 break;
371 /* Create a nameless artificial label and put it in the current function
372 context. Returns the newly created label. */
374 tree
375 create_artificial_label (void)
377 tree lab = build_decl (LABEL_DECL, NULL_TREE, void_type_node);
379 DECL_ARTIFICIAL (lab) = 1;
380 DECL_IGNORED_P (lab) = 1;
381 DECL_CONTEXT (lab) = current_function_decl;
382 return lab;
385 /* Subroutine for find_single_pointer_decl. */
387 static tree
388 find_single_pointer_decl_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
389 void *data)
391 tree *pdecl = (tree *) data;
393 if (DECL_P (*tp) && POINTER_TYPE_P (TREE_TYPE (*tp)))
395 if (*pdecl)
397 /* We already found a pointer decl; return anything other
398 than NULL_TREE to unwind from walk_tree signalling that
399 we have a duplicate. */
400 return *tp;
402 *pdecl = *tp;
405 return NULL_TREE;
408 /* Find the single DECL of pointer type in the tree T and return it.
409 If there are zero or more than one such DECLs, return NULL. */
411 static tree
412 find_single_pointer_decl (tree t)
414 tree decl = NULL_TREE;
416 if (walk_tree (&t, find_single_pointer_decl_1, &decl, NULL))
418 /* find_single_pointer_decl_1 returns a nonzero value, causing
419 walk_tree to return a nonzero value, to indicate that it
420 found more than one pointer DECL. */
421 return NULL_TREE;
424 return decl;
427 /* Create a new temporary name with PREFIX. Returns an identifier. */
429 static GTY(()) unsigned int tmp_var_id_num;
431 tree
432 create_tmp_var_name (const char *prefix)
434 char *tmp_name;
436 if (prefix)
438 char *preftmp = ASTRDUP (prefix);
440 remove_suffix (preftmp, strlen (preftmp));
441 prefix = preftmp;
444 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
445 return get_identifier (tmp_name);
449 /* Create a new temporary variable declaration of type TYPE.
450 Does NOT push it into the current binding. */
452 tree
453 create_tmp_var_raw (tree type, const char *prefix)
455 tree tmp_var;
456 tree new_type;
458 /* Make the type of the variable writable. */
459 new_type = build_type_variant (type, 0, 0);
460 TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
462 tmp_var = build_decl (VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
463 type);
465 /* The variable was declared by the compiler. */
466 DECL_ARTIFICIAL (tmp_var) = 1;
467 /* And we don't want debug info for it. */
468 DECL_IGNORED_P (tmp_var) = 1;
470 /* Make the variable writable. */
471 TREE_READONLY (tmp_var) = 0;
473 DECL_EXTERNAL (tmp_var) = 0;
474 TREE_STATIC (tmp_var) = 0;
475 TREE_USED (tmp_var) = 1;
477 return tmp_var;
480 /* Create a new temporary variable declaration of type TYPE. DOES push the
481 variable into the current binding. Further, assume that this is called
482 only from gimplification or optimization, at which point the creation of
483 certain types are bugs. */
485 tree
486 create_tmp_var (tree type, const char *prefix)
488 tree tmp_var;
490 /* We don't allow types that are addressable (meaning we can't make copies),
491 or incomplete. We also used to reject every variable size objects here,
492 but now support those for which a constant upper bound can be obtained.
493 The processing for variable sizes is performed in gimple_add_tmp_var,
494 point at which it really matters and possibly reached via paths not going
495 through this function, e.g. after direct calls to create_tmp_var_raw. */
496 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
498 tmp_var = create_tmp_var_raw (type, prefix);
499 gimple_add_tmp_var (tmp_var);
500 return tmp_var;
503 /* Given a tree, try to return a useful variable name that we can use
504 to prefix a temporary that is being assigned the value of the tree.
505 I.E. given <temp> = &A, return A. */
507 const char *
508 get_name (const_tree t)
510 const_tree stripped_decl;
512 stripped_decl = t;
513 STRIP_NOPS (stripped_decl);
514 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
515 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
516 else
518 switch (TREE_CODE (stripped_decl))
520 case ADDR_EXPR:
521 return get_name (TREE_OPERAND (stripped_decl, 0));
522 default:
523 return NULL;
528 /* Create a temporary with a name derived from VAL. Subroutine of
529 lookup_tmp_var; nobody else should call this function. */
531 static inline tree
532 create_tmp_from_val (tree val)
534 return create_tmp_var (TYPE_MAIN_VARIANT (TREE_TYPE (val)), get_name (val));
537 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
538 an existing expression temporary. */
540 static tree
541 lookup_tmp_var (tree val, bool is_formal)
543 tree ret;
545 /* If not optimizing, never really reuse a temporary. local-alloc
546 won't allocate any variable that is used in more than one basic
547 block, which means it will go into memory, causing much extra
548 work in reload and final and poorer code generation, outweighing
549 the extra memory allocation here. */
550 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
551 ret = create_tmp_from_val (val);
552 else
554 elt_t elt, *elt_p;
555 void **slot;
557 elt.val = val;
558 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
559 if (*slot == NULL)
561 elt_p = XNEW (elt_t);
562 elt_p->val = val;
563 elt_p->temp = ret = create_tmp_from_val (val);
564 *slot = (void *) elt_p;
566 else
568 elt_p = (elt_t *) *slot;
569 ret = elt_p->temp;
573 if (is_formal)
574 DECL_GIMPLE_FORMAL_TEMP_P (ret) = 1;
576 return ret;
579 /* Returns a formal temporary variable initialized with VAL. PRE_P is as
580 in gimplify_expr. Only use this function if:
582 1) The value of the unfactored expression represented by VAL will not
583 change between the initialization and use of the temporary, and
584 2) The temporary will not be otherwise modified.
586 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
587 and #2 means it is inappropriate for && temps.
589 For other cases, use get_initialized_tmp_var instead. */
591 static tree
592 internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
594 tree t, mod;
596 gimplify_expr (&val, pre_p, post_p, is_gimple_formal_tmp_rhs, fb_rvalue);
598 t = lookup_tmp_var (val, is_formal);
600 if (is_formal)
602 tree u = find_single_pointer_decl (val);
604 if (u && TREE_CODE (u) == VAR_DECL && DECL_BASED_ON_RESTRICT_P (u))
605 u = DECL_GET_RESTRICT_BASE (u);
606 if (u && TYPE_RESTRICT (TREE_TYPE (u)))
608 if (DECL_BASED_ON_RESTRICT_P (t))
609 gcc_assert (u == DECL_GET_RESTRICT_BASE (t));
610 else
612 DECL_BASED_ON_RESTRICT_P (t) = 1;
613 SET_DECL_RESTRICT_BASE (t, u);
618 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
619 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
620 DECL_GIMPLE_REG_P (t) = 1;
622 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
624 if (EXPR_HAS_LOCATION (val))
625 SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
626 else
627 SET_EXPR_LOCATION (mod, input_location);
629 /* gimplify_modify_expr might want to reduce this further. */
630 gimplify_and_add (mod, pre_p);
632 /* If we're gimplifying into ssa, gimplify_modify_expr will have
633 given our temporary an ssa name. Find and return it. */
634 if (gimplify_ctxp->into_ssa)
635 t = TREE_OPERAND (mod, 0);
637 return t;
640 /* Returns a formal temporary variable initialized with VAL. PRE_P
641 points to a statement list where side-effects needed to compute VAL
642 should be stored. */
644 tree
645 get_formal_tmp_var (tree val, tree *pre_p)
647 return internal_get_tmp_var (val, pre_p, NULL, true);
650 /* Returns a temporary variable initialized with VAL. PRE_P and POST_P
651 are as in gimplify_expr. */
653 tree
654 get_initialized_tmp_var (tree val, tree *pre_p, tree *post_p)
656 return internal_get_tmp_var (val, pre_p, post_p, false);
659 /* Declares all the variables in VARS in SCOPE. If DEBUG_INFO is
660 true, generate debug info for them; otherwise don't. */
662 void
663 declare_vars (tree vars, tree scope, bool debug_info)
665 tree last = vars;
666 if (last)
668 tree temps, block;
670 /* C99 mode puts the default 'return 0;' for main outside the outer
671 braces. So drill down until we find an actual scope. */
672 while (TREE_CODE (scope) == COMPOUND_EXPR)
673 scope = TREE_OPERAND (scope, 0);
675 gcc_assert (TREE_CODE (scope) == BIND_EXPR);
677 temps = nreverse (last);
679 block = BIND_EXPR_BLOCK (scope);
680 if (!block || !debug_info)
682 TREE_CHAIN (last) = BIND_EXPR_VARS (scope);
683 BIND_EXPR_VARS (scope) = temps;
685 else
687 /* We need to attach the nodes both to the BIND_EXPR and to its
688 associated BLOCK for debugging purposes. The key point here
689 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
690 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
691 if (BLOCK_VARS (block))
692 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
693 else
695 BIND_EXPR_VARS (scope) = chainon (BIND_EXPR_VARS (scope), temps);
696 BLOCK_VARS (block) = temps;
702 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
703 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
704 no such upper bound can be obtained. */
706 static void
707 force_constant_size (tree var)
709 /* The only attempt we make is by querying the maximum size of objects
710 of the variable's type. */
712 HOST_WIDE_INT max_size;
714 gcc_assert (TREE_CODE (var) == VAR_DECL);
716 max_size = max_int_size_in_bytes (TREE_TYPE (var));
718 gcc_assert (max_size >= 0);
720 DECL_SIZE_UNIT (var)
721 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
722 DECL_SIZE (var)
723 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
726 void
727 gimple_add_tmp_var (tree tmp)
729 gcc_assert (!TREE_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
731 /* Later processing assumes that the object size is constant, which might
732 not be true at this point. Force the use of a constant upper bound in
733 this case. */
734 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
735 force_constant_size (tmp);
737 DECL_CONTEXT (tmp) = current_function_decl;
738 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
740 if (gimplify_ctxp)
742 TREE_CHAIN (tmp) = gimplify_ctxp->temps;
743 gimplify_ctxp->temps = tmp;
745 /* Mark temporaries local within the nearest enclosing parallel. */
746 if (gimplify_omp_ctxp)
748 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
749 while (ctx && !ctx->is_parallel)
750 ctx = ctx->outer_context;
751 if (ctx)
752 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
755 else if (cfun)
756 record_vars (tmp);
757 else
758 declare_vars (tmp, DECL_SAVED_TREE (current_function_decl), false);
761 /* Determines whether to assign a locus to the statement STMT. */
763 static bool
764 should_carry_locus_p (const_tree stmt)
766 /* Don't emit a line note for a label. We particularly don't want to
767 emit one for the break label, since it doesn't actually correspond
768 to the beginning of the loop/switch. */
769 if (TREE_CODE (stmt) == LABEL_EXPR)
770 return false;
772 /* Do not annotate empty statements, since it confuses gcov. */
773 if (!TREE_SIDE_EFFECTS (stmt))
774 return false;
776 return true;
779 static void
780 annotate_one_with_locus (tree t, location_t locus)
782 if (CAN_HAVE_LOCATION_P (t)
783 && ! EXPR_HAS_LOCATION (t) && should_carry_locus_p (t))
784 SET_EXPR_LOCATION (t, locus);
787 void
788 annotate_all_with_locus (tree *stmt_p, location_t locus)
790 tree_stmt_iterator i;
792 if (!*stmt_p)
793 return;
795 for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
797 tree t = tsi_stmt (i);
799 /* Assuming we've already been gimplified, we shouldn't
800 see nested chaining constructs anymore. */
801 gcc_assert (TREE_CODE (t) != STATEMENT_LIST
802 && TREE_CODE (t) != COMPOUND_EXPR);
804 annotate_one_with_locus (t, locus);
808 /* Similar to copy_tree_r() but do not copy SAVE_EXPR or TARGET_EXPR nodes.
809 These nodes model computations that should only be done once. If we
810 were to unshare something like SAVE_EXPR(i++), the gimplification
811 process would create wrong code. */
813 static tree
814 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
816 enum tree_code code = TREE_CODE (*tp);
817 /* Don't unshare types, decls, constants and SAVE_EXPR nodes. */
818 if (TREE_CODE_CLASS (code) == tcc_type
819 || TREE_CODE_CLASS (code) == tcc_declaration
820 || TREE_CODE_CLASS (code) == tcc_constant
821 || code == SAVE_EXPR || code == TARGET_EXPR
822 /* We can't do anything sensible with a BLOCK used as an expression,
823 but we also can't just die when we see it because of non-expression
824 uses. So just avert our eyes and cross our fingers. Silly Java. */
825 || code == BLOCK)
826 *walk_subtrees = 0;
827 else
829 gcc_assert (code != BIND_EXPR);
830 copy_tree_r (tp, walk_subtrees, data);
833 return NULL_TREE;
836 /* Callback for walk_tree to unshare most of the shared trees rooted at
837 *TP. If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
838 then *TP is deep copied by calling copy_tree_r.
840 This unshares the same trees as copy_tree_r with the exception of
841 SAVE_EXPR nodes. These nodes model computations that should only be
842 done once. If we were to unshare something like SAVE_EXPR(i++), the
843 gimplification process would create wrong code. */
845 static tree
846 copy_if_shared_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
847 void *data ATTRIBUTE_UNUSED)
849 tree t = *tp;
850 enum tree_code code = TREE_CODE (t);
852 /* Skip types, decls, and constants. But we do want to look at their
853 types and the bounds of types. Mark them as visited so we properly
854 unmark their subtrees on the unmark pass. If we've already seen them,
855 don't look down further. */
856 if (TREE_CODE_CLASS (code) == tcc_type
857 || TREE_CODE_CLASS (code) == tcc_declaration
858 || TREE_CODE_CLASS (code) == tcc_constant)
860 if (TREE_VISITED (t))
861 *walk_subtrees = 0;
862 else
863 TREE_VISITED (t) = 1;
866 /* If this node has been visited already, unshare it and don't look
867 any deeper. */
868 else if (TREE_VISITED (t))
870 walk_tree (tp, mostly_copy_tree_r, NULL, NULL);
871 *walk_subtrees = 0;
874 /* Otherwise, mark the tree as visited and keep looking. */
875 else
876 TREE_VISITED (t) = 1;
878 return NULL_TREE;
881 static tree
882 unmark_visited_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
883 void *data ATTRIBUTE_UNUSED)
885 if (TREE_VISITED (*tp))
886 TREE_VISITED (*tp) = 0;
887 else
888 *walk_subtrees = 0;
890 return NULL_TREE;
893 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
894 bodies of any nested functions if we are unsharing the entire body of
895 FNDECL. */
897 static void
898 unshare_body (tree *body_p, tree fndecl)
900 struct cgraph_node *cgn = cgraph_node (fndecl);
902 walk_tree (body_p, copy_if_shared_r, NULL, NULL);
903 if (body_p == &DECL_SAVED_TREE (fndecl))
904 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
905 unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
908 /* Likewise, but mark all trees as not visited. */
910 static void
911 unvisit_body (tree *body_p, tree fndecl)
913 struct cgraph_node *cgn = cgraph_node (fndecl);
915 walk_tree (body_p, unmark_visited_r, NULL, NULL);
916 if (body_p == &DECL_SAVED_TREE (fndecl))
917 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
918 unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
921 /* Unshare T and all the trees reached from T via TREE_CHAIN. */
923 static void
924 unshare_all_trees (tree t)
926 walk_tree (&t, copy_if_shared_r, NULL, NULL);
927 walk_tree (&t, unmark_visited_r, NULL, NULL);
930 /* Unconditionally make an unshared copy of EXPR. This is used when using
931 stored expressions which span multiple functions, such as BINFO_VTABLE,
932 as the normal unsharing process can't tell that they're shared. */
934 tree
935 unshare_expr (tree expr)
937 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
938 return expr;
941 /* A terser interface for building a representation of an exception
942 specification. */
944 tree
945 gimple_build_eh_filter (tree body, tree allowed, tree failure)
947 tree t;
949 /* FIXME should the allowed types go in TREE_TYPE? */
950 t = build2 (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE);
951 append_to_statement_list (failure, &EH_FILTER_FAILURE (t));
953 t = build2 (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t);
954 append_to_statement_list (body, &TREE_OPERAND (t, 0));
956 return t;
960 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
961 contain statements and have a value. Assign its value to a temporary
962 and give it void_type_node. Returns the temporary, or NULL_TREE if
963 WRAPPER was already void. */
965 tree
966 voidify_wrapper_expr (tree wrapper, tree temp)
968 tree type = TREE_TYPE (wrapper);
969 if (type && !VOID_TYPE_P (type))
971 tree *p;
973 /* Set p to point to the body of the wrapper. Loop until we find
974 something that isn't a wrapper. */
975 for (p = &wrapper; p && *p; )
977 switch (TREE_CODE (*p))
979 case BIND_EXPR:
980 TREE_SIDE_EFFECTS (*p) = 1;
981 TREE_TYPE (*p) = void_type_node;
982 /* For a BIND_EXPR, the body is operand 1. */
983 p = &BIND_EXPR_BODY (*p);
984 break;
986 case CLEANUP_POINT_EXPR:
987 case TRY_FINALLY_EXPR:
988 case TRY_CATCH_EXPR:
989 TREE_SIDE_EFFECTS (*p) = 1;
990 TREE_TYPE (*p) = void_type_node;
991 p = &TREE_OPERAND (*p, 0);
992 break;
994 case STATEMENT_LIST:
996 tree_stmt_iterator i = tsi_last (*p);
997 TREE_SIDE_EFFECTS (*p) = 1;
998 TREE_TYPE (*p) = void_type_node;
999 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1001 break;
1003 case COMPOUND_EXPR:
1004 /* Advance to the last statement. Set all container types to void. */
1005 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1007 TREE_SIDE_EFFECTS (*p) = 1;
1008 TREE_TYPE (*p) = void_type_node;
1010 break;
1012 default:
1013 goto out;
1017 out:
1018 if (p == NULL || IS_EMPTY_STMT (*p))
1019 temp = NULL_TREE;
1020 else if (temp)
1022 /* The wrapper is on the RHS of an assignment that we're pushing
1023 down. */
1024 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1025 || TREE_CODE (temp) == GIMPLE_MODIFY_STMT
1026 || TREE_CODE (temp) == MODIFY_EXPR);
1027 GENERIC_TREE_OPERAND (temp, 1) = *p;
1028 *p = temp;
1030 else
1032 temp = create_tmp_var (type, "retval");
1033 *p = build2 (INIT_EXPR, type, temp, *p);
1036 return temp;
1039 return NULL_TREE;
1042 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1043 a temporary through which they communicate. */
1045 static void
1046 build_stack_save_restore (tree *save, tree *restore)
1048 tree save_call, tmp_var;
1050 save_call =
1051 build_call_expr (implicit_built_in_decls[BUILT_IN_STACK_SAVE], 0);
1052 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1054 *save = build_gimple_modify_stmt (tmp_var, save_call);
1055 *restore =
1056 build_call_expr (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
1057 1, tmp_var);
1060 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1062 static enum gimplify_status
1063 gimplify_bind_expr (tree *expr_p, tree *pre_p)
1065 tree bind_expr = *expr_p;
1066 bool old_save_stack = gimplify_ctxp->save_stack;
1067 tree t;
1069 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1071 /* Mark variables seen in this bind expr. */
1072 for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
1074 if (TREE_CODE (t) == VAR_DECL)
1076 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1078 /* Mark variable as local. */
1079 if (ctx && !is_global_var (t)
1080 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1081 || splay_tree_lookup (ctx->variables,
1082 (splay_tree_key) t) == NULL))
1083 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1085 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1088 /* Preliminarily mark non-addressed complex variables as eligible
1089 for promotion to gimple registers. We'll transform their uses
1090 as we find them. */
1091 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1092 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1093 && !TREE_THIS_VOLATILE (t)
1094 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1095 && !needs_to_live_in_memory (t))
1096 DECL_GIMPLE_REG_P (t) = 1;
1099 gimple_push_bind_expr (bind_expr);
1100 gimplify_ctxp->save_stack = false;
1102 gimplify_to_stmt_list (&BIND_EXPR_BODY (bind_expr));
1104 if (gimplify_ctxp->save_stack)
1106 tree stack_save, stack_restore;
1108 /* Save stack on entry and restore it on exit. Add a try_finally
1109 block to achieve this. Note that mudflap depends on the
1110 format of the emitted code: see mx_register_decls(). */
1111 build_stack_save_restore (&stack_save, &stack_restore);
1113 t = build2 (TRY_FINALLY_EXPR, void_type_node,
1114 BIND_EXPR_BODY (bind_expr), NULL_TREE);
1115 append_to_statement_list (stack_restore, &TREE_OPERAND (t, 1));
1117 BIND_EXPR_BODY (bind_expr) = NULL_TREE;
1118 append_to_statement_list (stack_save, &BIND_EXPR_BODY (bind_expr));
1119 append_to_statement_list (t, &BIND_EXPR_BODY (bind_expr));
1122 gimplify_ctxp->save_stack = old_save_stack;
1123 gimple_pop_bind_expr ();
1125 if (temp)
1127 *expr_p = temp;
1128 append_to_statement_list (bind_expr, pre_p);
1129 return GS_OK;
1131 else
1132 return GS_ALL_DONE;
1135 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1136 GIMPLE value, it is assigned to a new temporary and the statement is
1137 re-written to return the temporary.
1139 PRE_P points to the list where side effects that must happen before
1140 STMT should be stored. */
1142 static enum gimplify_status
1143 gimplify_return_expr (tree stmt, tree *pre_p)
1145 tree ret_expr = TREE_OPERAND (stmt, 0);
1146 tree result_decl, result;
1148 if (!ret_expr || TREE_CODE (ret_expr) == RESULT_DECL
1149 || ret_expr == error_mark_node)
1150 return GS_ALL_DONE;
1152 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1153 result_decl = NULL_TREE;
1154 else
1156 result_decl = GENERIC_TREE_OPERAND (ret_expr, 0);
1157 if (TREE_CODE (result_decl) == INDIRECT_REF)
1158 /* See through a return by reference. */
1159 result_decl = TREE_OPERAND (result_decl, 0);
1161 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1162 || TREE_CODE (ret_expr) == GIMPLE_MODIFY_STMT
1163 || TREE_CODE (ret_expr) == INIT_EXPR)
1164 && TREE_CODE (result_decl) == RESULT_DECL);
1167 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1168 Recall that aggregate_value_p is FALSE for any aggregate type that is
1169 returned in registers. If we're returning values in registers, then
1170 we don't want to extend the lifetime of the RESULT_DECL, particularly
1171 across another call. In addition, for those aggregates for which
1172 hard_function_value generates a PARALLEL, we'll die during normal
1173 expansion of structure assignments; there's special code in expand_return
1174 to handle this case that does not exist in expand_expr. */
1175 if (!result_decl
1176 || aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1177 result = result_decl;
1178 else if (gimplify_ctxp->return_temp)
1179 result = gimplify_ctxp->return_temp;
1180 else
1182 result = create_tmp_var (TREE_TYPE (result_decl), NULL);
1183 if (TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
1184 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
1185 DECL_GIMPLE_REG_P (result) = 1;
1187 /* ??? With complex control flow (usually involving abnormal edges),
1188 we can wind up warning about an uninitialized value for this. Due
1189 to how this variable is constructed and initialized, this is never
1190 true. Give up and never warn. */
1191 TREE_NO_WARNING (result) = 1;
1193 gimplify_ctxp->return_temp = result;
1196 /* Smash the lhs of the GIMPLE_MODIFY_STMT to the temporary we plan to use.
1197 Then gimplify the whole thing. */
1198 if (result != result_decl)
1199 GENERIC_TREE_OPERAND (ret_expr, 0) = result;
1201 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1203 /* If we didn't use a temporary, then the result is just the result_decl.
1204 Otherwise we need a simple copy. This should already be gimple. */
1205 if (result == result_decl)
1206 ret_expr = result;
1207 else
1208 ret_expr = build_gimple_modify_stmt (result_decl, result);
1209 TREE_OPERAND (stmt, 0) = ret_expr;
1211 return GS_ALL_DONE;
1214 /* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
1215 and initialization explicit. */
1217 static enum gimplify_status
1218 gimplify_decl_expr (tree *stmt_p)
1220 tree stmt = *stmt_p;
1221 tree decl = DECL_EXPR_DECL (stmt);
1223 *stmt_p = NULL_TREE;
1225 if (TREE_TYPE (decl) == error_mark_node)
1226 return GS_ERROR;
1228 if ((TREE_CODE (decl) == TYPE_DECL
1229 || TREE_CODE (decl) == VAR_DECL)
1230 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1231 gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1233 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1235 tree init = DECL_INITIAL (decl);
1237 if (TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
1239 /* This is a variable-sized decl. Simplify its size and mark it
1240 for deferred expansion. Note that mudflap depends on the format
1241 of the emitted code: see mx_register_decls(). */
1242 tree t, addr, ptr_type;
1244 gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p);
1245 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1247 /* All occurrences of this decl in final gimplified code will be
1248 replaced by indirection. Setting DECL_VALUE_EXPR does two
1249 things: First, it lets the rest of the gimplifier know what
1250 replacement to use. Second, it lets the debug info know
1251 where to find the value. */
1252 ptr_type = build_pointer_type (TREE_TYPE (decl));
1253 addr = create_tmp_var (ptr_type, get_name (decl));
1254 DECL_IGNORED_P (addr) = 0;
1255 t = build_fold_indirect_ref (addr);
1256 SET_DECL_VALUE_EXPR (decl, t);
1257 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1259 t = built_in_decls[BUILT_IN_ALLOCA];
1260 t = build_call_expr (t, 1, DECL_SIZE_UNIT (decl));
1261 t = fold_convert (ptr_type, t);
1262 t = build_gimple_modify_stmt (addr, t);
1264 gimplify_and_add (t, stmt_p);
1266 /* Indicate that we need to restore the stack level when the
1267 enclosing BIND_EXPR is exited. */
1268 gimplify_ctxp->save_stack = true;
1271 if (init && init != error_mark_node)
1273 if (!TREE_STATIC (decl))
1275 DECL_INITIAL (decl) = NULL_TREE;
1276 init = build2 (INIT_EXPR, void_type_node, decl, init);
1277 gimplify_and_add (init, stmt_p);
1279 else
1280 /* We must still examine initializers for static variables
1281 as they may contain a label address. */
1282 walk_tree (&init, force_labels_r, NULL, NULL);
1285 /* Some front ends do not explicitly declare all anonymous
1286 artificial variables. We compensate here by declaring the
1287 variables, though it would be better if the front ends would
1288 explicitly declare them. */
1289 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1290 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1291 gimple_add_tmp_var (decl);
1294 return GS_ALL_DONE;
1297 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1298 and replacing the LOOP_EXPR with goto, but if the loop contains an
1299 EXIT_EXPR, we need to append a label for it to jump to. */
1301 static enum gimplify_status
1302 gimplify_loop_expr (tree *expr_p, tree *pre_p)
1304 tree saved_label = gimplify_ctxp->exit_label;
1305 tree start_label = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
1306 tree jump_stmt = build_and_jump (&LABEL_EXPR_LABEL (start_label));
1308 append_to_statement_list (start_label, pre_p);
1310 gimplify_ctxp->exit_label = NULL_TREE;
1312 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1314 if (gimplify_ctxp->exit_label)
1316 append_to_statement_list (jump_stmt, pre_p);
1317 *expr_p = build1 (LABEL_EXPR, void_type_node, gimplify_ctxp->exit_label);
1319 else
1320 *expr_p = jump_stmt;
1322 gimplify_ctxp->exit_label = saved_label;
1324 return GS_ALL_DONE;
1327 /* Compare two case labels. Because the front end should already have
1328 made sure that case ranges do not overlap, it is enough to only compare
1329 the CASE_LOW values of each case label. */
1331 static int
1332 compare_case_labels (const void *p1, const void *p2)
1334 const_tree const case1 = *(const_tree const*)p1;
1335 const_tree const case2 = *(const_tree const*)p2;
1337 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1340 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1342 void
1343 sort_case_labels (tree label_vec)
1345 size_t len = TREE_VEC_LENGTH (label_vec);
1346 tree default_case = TREE_VEC_ELT (label_vec, len - 1);
1348 if (CASE_LOW (default_case))
1350 size_t i;
1352 /* The last label in the vector should be the default case
1353 but it is not. */
1354 for (i = 0; i < len; ++i)
1356 tree t = TREE_VEC_ELT (label_vec, i);
1357 if (!CASE_LOW (t))
1359 default_case = t;
1360 TREE_VEC_ELT (label_vec, i) = TREE_VEC_ELT (label_vec, len - 1);
1361 TREE_VEC_ELT (label_vec, len - 1) = default_case;
1362 break;
1367 qsort (&TREE_VEC_ELT (label_vec, 0), len - 1, sizeof (tree),
1368 compare_case_labels);
1371 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1372 branch to. */
1374 static enum gimplify_status
1375 gimplify_switch_expr (tree *expr_p, tree *pre_p)
1377 tree switch_expr = *expr_p;
1378 enum gimplify_status ret;
1380 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL,
1381 is_gimple_val, fb_rvalue);
1383 if (SWITCH_BODY (switch_expr))
1385 VEC(tree,heap) *labels, *saved_labels;
1386 tree label_vec, default_case = NULL_TREE;
1387 size_t i, len;
1389 /* If someone can be bothered to fill in the labels, they can
1390 be bothered to null out the body too. */
1391 gcc_assert (!SWITCH_LABELS (switch_expr));
1393 saved_labels = gimplify_ctxp->case_labels;
1394 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1396 gimplify_to_stmt_list (&SWITCH_BODY (switch_expr));
1398 labels = gimplify_ctxp->case_labels;
1399 gimplify_ctxp->case_labels = saved_labels;
1401 i = 0;
1402 while (i < VEC_length (tree, labels))
1404 tree elt = VEC_index (tree, labels, i);
1405 tree low = CASE_LOW (elt);
1406 bool remove_element = FALSE;
1408 if (low)
1410 /* Discard empty ranges. */
1411 tree high = CASE_HIGH (elt);
1412 if (high && INT_CST_LT (high, low))
1413 remove_element = TRUE;
1415 else
1417 /* The default case must be the last label in the list. */
1418 gcc_assert (!default_case);
1419 default_case = elt;
1420 remove_element = TRUE;
1423 if (remove_element)
1424 VEC_ordered_remove (tree, labels, i);
1425 else
1426 i++;
1428 len = i;
1430 label_vec = make_tree_vec (len + 1);
1431 SWITCH_LABELS (*expr_p) = label_vec;
1432 append_to_statement_list (switch_expr, pre_p);
1434 if (! default_case)
1436 /* If the switch has no default label, add one, so that we jump
1437 around the switch body. */
1438 default_case = build3 (CASE_LABEL_EXPR, void_type_node, NULL_TREE,
1439 NULL_TREE, create_artificial_label ());
1440 append_to_statement_list (SWITCH_BODY (switch_expr), pre_p);
1441 *expr_p = build1 (LABEL_EXPR, void_type_node,
1442 CASE_LABEL (default_case));
1444 else
1445 *expr_p = SWITCH_BODY (switch_expr);
1447 for (i = 0; i < len; ++i)
1448 TREE_VEC_ELT (label_vec, i) = VEC_index (tree, labels, i);
1449 TREE_VEC_ELT (label_vec, len) = default_case;
1451 VEC_free (tree, heap, labels);
1453 sort_case_labels (label_vec);
1455 SWITCH_BODY (switch_expr) = NULL;
1457 else
1458 gcc_assert (SWITCH_LABELS (switch_expr));
1460 return ret;
1463 static enum gimplify_status
1464 gimplify_case_label_expr (tree *expr_p)
1466 tree expr = *expr_p;
1467 struct gimplify_ctx *ctxp;
1469 /* Invalid OpenMP programs can play Duff's Device type games with
1470 #pragma omp parallel. At least in the C front end, we don't
1471 detect such invalid branches until after gimplification. */
1472 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1473 if (ctxp->case_labels)
1474 break;
1476 VEC_safe_push (tree, heap, ctxp->case_labels, expr);
1477 *expr_p = build1 (LABEL_EXPR, void_type_node, CASE_LABEL (expr));
1478 return GS_ALL_DONE;
1481 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1482 if necessary. */
1484 tree
1485 build_and_jump (tree *label_p)
1487 if (label_p == NULL)
1488 /* If there's nowhere to jump, just fall through. */
1489 return NULL_TREE;
1491 if (*label_p == NULL_TREE)
1493 tree label = create_artificial_label ();
1494 *label_p = label;
1497 return build1 (GOTO_EXPR, void_type_node, *label_p);
1500 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1501 This also involves building a label to jump to and communicating it to
1502 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1504 static enum gimplify_status
1505 gimplify_exit_expr (tree *expr_p)
1507 tree cond = TREE_OPERAND (*expr_p, 0);
1508 tree expr;
1510 expr = build_and_jump (&gimplify_ctxp->exit_label);
1511 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1512 *expr_p = expr;
1514 return GS_OK;
1517 /* A helper function to be called via walk_tree. Mark all labels under *TP
1518 as being forced. To be called for DECL_INITIAL of static variables. */
1520 tree
1521 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1523 if (TYPE_P (*tp))
1524 *walk_subtrees = 0;
1525 if (TREE_CODE (*tp) == LABEL_DECL)
1526 FORCED_LABEL (*tp) = 1;
1528 return NULL_TREE;
1531 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1532 different from its canonical type, wrap the whole thing inside a
1533 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1534 type.
1536 The canonical type of a COMPONENT_REF is the type of the field being
1537 referenced--unless the field is a bit-field which can be read directly
1538 in a smaller mode, in which case the canonical type is the
1539 sign-appropriate type corresponding to that mode. */
1541 static void
1542 canonicalize_component_ref (tree *expr_p)
1544 tree expr = *expr_p;
1545 tree type;
1547 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1549 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1550 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1551 else
1552 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1554 if (TREE_TYPE (expr) != type)
1556 tree old_type = TREE_TYPE (expr);
1558 /* Set the type of the COMPONENT_REF to the underlying type. */
1559 TREE_TYPE (expr) = type;
1561 /* And wrap the whole thing inside a NOP_EXPR. */
1562 expr = build1 (NOP_EXPR, old_type, expr);
1564 *expr_p = expr;
1568 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1569 to foo, embed that change in the ADDR_EXPR by converting
1570 T array[U];
1571 (T *)&array
1573 &array[L]
1574 where L is the lower bound. For simplicity, only do this for constant
1575 lower bound.
1576 The constraint is that the type of &array[L] is trivially convertible
1577 to T *. */
1579 static void
1580 canonicalize_addr_expr (tree *expr_p)
1582 tree expr = *expr_p;
1583 tree addr_expr = TREE_OPERAND (expr, 0);
1584 tree datype, ddatype, pddatype;
1586 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1587 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1588 || TREE_CODE (addr_expr) != ADDR_EXPR)
1589 return;
1591 /* The addr_expr type should be a pointer to an array. */
1592 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1593 if (TREE_CODE (datype) != ARRAY_TYPE)
1594 return;
1596 /* The pointer to element type shall be trivially convertible to
1597 the expression pointer type. */
1598 ddatype = TREE_TYPE (datype);
1599 pddatype = build_pointer_type (ddatype);
1600 if (!useless_type_conversion_p (pddatype, ddatype))
1601 return;
1603 /* The lower bound and element sizes must be constant. */
1604 if (!TYPE_SIZE_UNIT (ddatype)
1605 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1606 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1607 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1608 return;
1610 /* All checks succeeded. Build a new node to merge the cast. */
1611 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1612 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1613 NULL_TREE, NULL_TREE);
1614 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1617 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1618 underneath as appropriate. */
1620 static enum gimplify_status
1621 gimplify_conversion (tree *expr_p)
1623 tree tem;
1624 gcc_assert (TREE_CODE (*expr_p) == NOP_EXPR
1625 || TREE_CODE (*expr_p) == CONVERT_EXPR);
1627 /* Then strip away all but the outermost conversion. */
1628 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1630 /* And remove the outermost conversion if it's useless. */
1631 if (tree_ssa_useless_type_conversion (*expr_p))
1632 *expr_p = TREE_OPERAND (*expr_p, 0);
1634 /* Attempt to avoid NOP_EXPR by producing reference to a subtype.
1635 For example this fold (subclass *)&A into &A->subclass avoiding
1636 a need for statement. */
1637 if (TREE_CODE (*expr_p) == NOP_EXPR
1638 && POINTER_TYPE_P (TREE_TYPE (*expr_p))
1639 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (*expr_p, 0)))
1640 && (tem = maybe_fold_offset_to_reference
1641 (TREE_OPERAND (*expr_p, 0),
1642 integer_zero_node, TREE_TYPE (TREE_TYPE (*expr_p)))))
1644 tree ptr_type = build_pointer_type (TREE_TYPE (tem));
1645 if (useless_type_conversion_p (TREE_TYPE (*expr_p), ptr_type))
1646 *expr_p = build_fold_addr_expr_with_type (tem, ptr_type);
1649 /* If we still have a conversion at the toplevel,
1650 then canonicalize some constructs. */
1651 if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1653 tree sub = TREE_OPERAND (*expr_p, 0);
1655 /* If a NOP conversion is changing the type of a COMPONENT_REF
1656 expression, then canonicalize its type now in order to expose more
1657 redundant conversions. */
1658 if (TREE_CODE (sub) == COMPONENT_REF)
1659 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1661 /* If a NOP conversion is changing a pointer to array of foo
1662 to a pointer to foo, embed that change in the ADDR_EXPR. */
1663 else if (TREE_CODE (sub) == ADDR_EXPR)
1664 canonicalize_addr_expr (expr_p);
1667 return GS_OK;
1670 /* Gimplify a VAR_DECL or PARM_DECL. Returns GS_OK if we expanded a
1671 DECL_VALUE_EXPR, and it's worth re-examining things. */
1673 static enum gimplify_status
1674 gimplify_var_or_parm_decl (tree *expr_p)
1676 tree decl = *expr_p;
1678 /* ??? If this is a local variable, and it has not been seen in any
1679 outer BIND_EXPR, then it's probably the result of a duplicate
1680 declaration, for which we've already issued an error. It would
1681 be really nice if the front end wouldn't leak these at all.
1682 Currently the only known culprit is C++ destructors, as seen
1683 in g++.old-deja/g++.jason/binding.C. */
1684 if (TREE_CODE (decl) == VAR_DECL
1685 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
1686 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
1687 && decl_function_context (decl) == current_function_decl)
1689 gcc_assert (errorcount || sorrycount);
1690 return GS_ERROR;
1693 /* When within an OpenMP context, notice uses of variables. */
1694 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
1695 return GS_ALL_DONE;
1697 /* If the decl is an alias for another expression, substitute it now. */
1698 if (DECL_HAS_VALUE_EXPR_P (decl))
1700 *expr_p = unshare_expr (DECL_VALUE_EXPR (decl));
1701 return GS_OK;
1704 return GS_ALL_DONE;
1708 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1709 node pointed to by EXPR_P.
1711 compound_lval
1712 : min_lval '[' val ']'
1713 | min_lval '.' ID
1714 | compound_lval '[' val ']'
1715 | compound_lval '.' ID
1717 This is not part of the original SIMPLE definition, which separates
1718 array and member references, but it seems reasonable to handle them
1719 together. Also, this way we don't run into problems with union
1720 aliasing; gcc requires that for accesses through a union to alias, the
1721 union reference must be explicit, which was not always the case when we
1722 were splitting up array and member refs.
1724 PRE_P points to the list where side effects that must happen before
1725 *EXPR_P should be stored.
1727 POST_P points to the list where side effects that must happen after
1728 *EXPR_P should be stored. */
1730 static enum gimplify_status
1731 gimplify_compound_lval (tree *expr_p, tree *pre_p,
1732 tree *post_p, fallback_t fallback)
1734 tree *p;
1735 VEC(tree,heap) *stack;
1736 enum gimplify_status ret = GS_OK, tret;
1737 int i;
1739 /* Create a stack of the subexpressions so later we can walk them in
1740 order from inner to outer. */
1741 stack = VEC_alloc (tree, heap, 10);
1743 /* We can handle anything that get_inner_reference can deal with. */
1744 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
1746 restart:
1747 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
1748 if (TREE_CODE (*p) == INDIRECT_REF)
1749 *p = fold_indirect_ref (*p);
1751 if (handled_component_p (*p))
1753 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
1754 additional COMPONENT_REFs. */
1755 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
1756 && gimplify_var_or_parm_decl (p) == GS_OK)
1757 goto restart;
1758 else
1759 break;
1761 VEC_safe_push (tree, heap, stack, *p);
1764 gcc_assert (VEC_length (tree, stack));
1766 /* Now STACK is a stack of pointers to all the refs we've walked through
1767 and P points to the innermost expression.
1769 Java requires that we elaborated nodes in source order. That
1770 means we must gimplify the inner expression followed by each of
1771 the indices, in order. But we can't gimplify the inner
1772 expression until we deal with any variable bounds, sizes, or
1773 positions in order to deal with PLACEHOLDER_EXPRs.
1775 So we do this in three steps. First we deal with the annotations
1776 for any variables in the components, then we gimplify the base,
1777 then we gimplify any indices, from left to right. */
1778 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
1780 tree t = VEC_index (tree, stack, i);
1782 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1784 /* Gimplify the low bound and element type size and put them into
1785 the ARRAY_REF. If these values are set, they have already been
1786 gimplified. */
1787 if (!TREE_OPERAND (t, 2))
1789 tree low = unshare_expr (array_ref_low_bound (t));
1790 if (!is_gimple_min_invariant (low))
1792 TREE_OPERAND (t, 2) = low;
1793 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1794 is_gimple_formal_tmp_reg, fb_rvalue);
1795 ret = MIN (ret, tret);
1799 if (!TREE_OPERAND (t, 3))
1801 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
1802 tree elmt_size = unshare_expr (array_ref_element_size (t));
1803 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
1805 /* Divide the element size by the alignment of the element
1806 type (above). */
1807 elmt_size = size_binop (EXACT_DIV_EXPR, elmt_size, factor);
1809 if (!is_gimple_min_invariant (elmt_size))
1811 TREE_OPERAND (t, 3) = elmt_size;
1812 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
1813 is_gimple_formal_tmp_reg, fb_rvalue);
1814 ret = MIN (ret, tret);
1818 else if (TREE_CODE (t) == COMPONENT_REF)
1820 /* Set the field offset into T and gimplify it. */
1821 if (!TREE_OPERAND (t, 2))
1823 tree offset = unshare_expr (component_ref_field_offset (t));
1824 tree field = TREE_OPERAND (t, 1);
1825 tree factor
1826 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
1828 /* Divide the offset by its alignment. */
1829 offset = size_binop (EXACT_DIV_EXPR, offset, factor);
1831 if (!is_gimple_min_invariant (offset))
1833 TREE_OPERAND (t, 2) = offset;
1834 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1835 is_gimple_formal_tmp_reg, fb_rvalue);
1836 ret = MIN (ret, tret);
1842 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
1843 so as to match the min_lval predicate. Failure to do so may result
1844 in the creation of large aggregate temporaries. */
1845 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
1846 fallback | fb_lvalue);
1847 ret = MIN (ret, tret);
1849 /* And finally, the indices and operands to BIT_FIELD_REF. During this
1850 loop we also remove any useless conversions. */
1851 for (; VEC_length (tree, stack) > 0; )
1853 tree t = VEC_pop (tree, stack);
1855 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1857 /* Gimplify the dimension.
1858 Temporary fix for gcc.c-torture/execute/20040313-1.c.
1859 Gimplify non-constant array indices into a temporary
1860 variable.
1861 FIXME - The real fix is to gimplify post-modify
1862 expressions into a minimal gimple lvalue. However, that
1863 exposes bugs in alias analysis. The alias analyzer does
1864 not handle &PTR->FIELD very well. Will fix after the
1865 branch is merged into mainline (dnovillo 2004-05-03). */
1866 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
1868 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1869 is_gimple_formal_tmp_reg, fb_rvalue);
1870 ret = MIN (ret, tret);
1873 else if (TREE_CODE (t) == BIT_FIELD_REF)
1875 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1876 is_gimple_val, fb_rvalue);
1877 ret = MIN (ret, tret);
1878 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1879 is_gimple_val, fb_rvalue);
1880 ret = MIN (ret, tret);
1883 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
1885 /* The innermost expression P may have originally had TREE_SIDE_EFFECTS
1886 set which would have caused all the outer expressions in EXPR_P
1887 leading to P to also have had TREE_SIDE_EFFECTS set. */
1888 recalculate_side_effects (t);
1891 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1892 ret = MIN (ret, tret);
1894 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
1895 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
1897 canonicalize_component_ref (expr_p);
1898 ret = MIN (ret, GS_OK);
1901 VEC_free (tree, heap, stack);
1903 return ret;
1906 /* Gimplify the self modifying expression pointed to by EXPR_P
1907 (++, --, +=, -=).
1909 PRE_P points to the list where side effects that must happen before
1910 *EXPR_P should be stored.
1912 POST_P points to the list where side effects that must happen after
1913 *EXPR_P should be stored.
1915 WANT_VALUE is nonzero iff we want to use the value of this expression
1916 in another expression. */
1918 static enum gimplify_status
1919 gimplify_self_mod_expr (tree *expr_p, tree *pre_p, tree *post_p,
1920 bool want_value)
1922 enum tree_code code;
1923 tree lhs, lvalue, rhs, t1, post = NULL, *orig_post_p = post_p;
1924 bool postfix;
1925 enum tree_code arith_code;
1926 enum gimplify_status ret;
1928 code = TREE_CODE (*expr_p);
1930 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
1931 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
1933 /* Prefix or postfix? */
1934 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
1935 /* Faster to treat as prefix if result is not used. */
1936 postfix = want_value;
1937 else
1938 postfix = false;
1940 /* For postfix, make sure the inner expression's post side effects
1941 are executed after side effects from this expression. */
1942 if (postfix)
1943 post_p = &post;
1945 /* Add or subtract? */
1946 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
1947 arith_code = PLUS_EXPR;
1948 else
1949 arith_code = MINUS_EXPR;
1951 /* Gimplify the LHS into a GIMPLE lvalue. */
1952 lvalue = TREE_OPERAND (*expr_p, 0);
1953 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1954 if (ret == GS_ERROR)
1955 return ret;
1957 /* Extract the operands to the arithmetic operation. */
1958 lhs = lvalue;
1959 rhs = TREE_OPERAND (*expr_p, 1);
1961 /* For postfix operator, we evaluate the LHS to an rvalue and then use
1962 that as the result value and in the postqueue operation. */
1963 if (postfix)
1965 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
1966 if (ret == GS_ERROR)
1967 return ret;
1970 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
1971 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
1973 rhs = fold_convert (sizetype, rhs);
1974 if (arith_code == MINUS_EXPR)
1975 rhs = fold_build1 (NEGATE_EXPR, TREE_TYPE (rhs), rhs);
1976 arith_code = POINTER_PLUS_EXPR;
1979 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
1980 t1 = build_gimple_modify_stmt (lvalue, t1);
1982 if (postfix)
1984 gimplify_and_add (t1, orig_post_p);
1985 append_to_statement_list (post, orig_post_p);
1986 *expr_p = lhs;
1987 return GS_ALL_DONE;
1989 else
1991 *expr_p = t1;
1992 return GS_OK;
1996 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
1998 static void
1999 maybe_with_size_expr (tree *expr_p)
2001 tree expr = *expr_p;
2002 tree type = TREE_TYPE (expr);
2003 tree size;
2005 /* If we've already wrapped this or the type is error_mark_node, we can't do
2006 anything. */
2007 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2008 || type == error_mark_node)
2009 return;
2011 /* If the size isn't known or is a constant, we have nothing to do. */
2012 size = TYPE_SIZE_UNIT (type);
2013 if (!size || TREE_CODE (size) == INTEGER_CST)
2014 return;
2016 /* Otherwise, make a WITH_SIZE_EXPR. */
2017 size = unshare_expr (size);
2018 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2019 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2022 /* Subroutine of gimplify_call_expr: Gimplify a single argument. */
2024 static enum gimplify_status
2025 gimplify_arg (tree *expr_p, tree *pre_p)
2027 bool (*test) (tree);
2028 fallback_t fb;
2030 /* In general, we allow lvalues for function arguments to avoid
2031 extra overhead of copying large aggregates out of even larger
2032 aggregates into temporaries only to copy the temporaries to
2033 the argument list. Make optimizers happy by pulling out to
2034 temporaries those types that fit in registers. */
2035 if (is_gimple_reg_type (TREE_TYPE (*expr_p)))
2036 test = is_gimple_val, fb = fb_rvalue;
2037 else
2038 test = is_gimple_lvalue, fb = fb_either;
2040 /* If this is a variable sized type, we must remember the size. */
2041 maybe_with_size_expr (expr_p);
2043 /* There is a sequence point before a function call. Side effects in
2044 the argument list must occur before the actual call. So, when
2045 gimplifying arguments, force gimplify_expr to use an internal
2046 post queue which is then appended to the end of PRE_P. */
2047 return gimplify_expr (expr_p, pre_p, NULL, test, fb);
2050 /* Gimplify the CALL_EXPR node pointed to by EXPR_P. PRE_P points to the
2051 list where side effects that must happen before *EXPR_P should be stored.
2052 WANT_VALUE is true if the result of the call is desired. */
2054 static enum gimplify_status
2055 gimplify_call_expr (tree *expr_p, tree *pre_p, bool want_value)
2057 tree decl, parms, p;
2058 enum gimplify_status ret;
2059 int i, nargs;
2061 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2063 /* For reliable diagnostics during inlining, it is necessary that
2064 every call_expr be annotated with file and line. */
2065 if (! EXPR_HAS_LOCATION (*expr_p))
2066 SET_EXPR_LOCATION (*expr_p, input_location);
2068 /* This may be a call to a builtin function.
2070 Builtin function calls may be transformed into different
2071 (and more efficient) builtin function calls under certain
2072 circumstances. Unfortunately, gimplification can muck things
2073 up enough that the builtin expanders are not aware that certain
2074 transformations are still valid.
2076 So we attempt transformation/gimplification of the call before
2077 we gimplify the CALL_EXPR. At this time we do not manage to
2078 transform all calls in the same manner as the expanders do, but
2079 we do transform most of them. */
2080 decl = get_callee_fndecl (*expr_p);
2081 if (decl && DECL_BUILT_IN (decl))
2083 tree new = fold_call_expr (*expr_p, !want_value);
2085 if (new && new != *expr_p)
2087 /* There was a transformation of this call which computes the
2088 same value, but in a more efficient way. Return and try
2089 again. */
2090 *expr_p = new;
2091 return GS_OK;
2094 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
2095 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_START)
2097 if (call_expr_nargs (*expr_p) < 2)
2099 error ("too few arguments to function %<va_start%>");
2100 *expr_p = build_empty_stmt ();
2101 return GS_OK;
2104 if (fold_builtin_next_arg (*expr_p, true))
2106 *expr_p = build_empty_stmt ();
2107 return GS_OK;
2109 /* Avoid gimplifying the second argument to va_start, which needs
2110 to be the plain PARM_DECL. */
2111 return gimplify_arg (&CALL_EXPR_ARG (*expr_p, 0), pre_p);
2115 /* There is a sequence point before the call, so any side effects in
2116 the calling expression must occur before the actual call. Force
2117 gimplify_expr to use an internal post queue. */
2118 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2119 is_gimple_call_addr, fb_rvalue);
2121 nargs = call_expr_nargs (*expr_p);
2123 /* Get argument types for verification. */
2124 decl = get_callee_fndecl (*expr_p);
2125 parms = NULL_TREE;
2126 if (decl)
2127 parms = TYPE_ARG_TYPES (TREE_TYPE (decl));
2128 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2129 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2131 /* Verify if the type of the argument matches that of the function
2132 declaration. If we cannot verify this or there is a mismatch,
2133 mark the call expression so it doesn't get inlined later. */
2134 if (decl && DECL_ARGUMENTS (decl))
2136 for (i = 0, p = DECL_ARGUMENTS (decl); i < nargs;
2137 i++, p = TREE_CHAIN (p))
2139 /* We cannot distinguish a varargs function from the case
2140 of excess parameters, still deferring the inlining decision
2141 to the callee is possible. */
2142 if (!p)
2143 break;
2144 if (p == error_mark_node
2145 || CALL_EXPR_ARG (*expr_p, i) == error_mark_node
2146 || !fold_convertible_p (DECL_ARG_TYPE (p),
2147 CALL_EXPR_ARG (*expr_p, i)))
2149 CALL_CANNOT_INLINE_P (*expr_p) = 1;
2150 break;
2154 else if (parms)
2156 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
2158 /* If this is a varargs function defer inlining decision
2159 to callee. */
2160 if (!p)
2161 break;
2162 if (TREE_VALUE (p) == error_mark_node
2163 || CALL_EXPR_ARG (*expr_p, i) == error_mark_node
2164 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
2165 || !fold_convertible_p (TREE_VALUE (p),
2166 CALL_EXPR_ARG (*expr_p, i)))
2168 CALL_CANNOT_INLINE_P (*expr_p) = 1;
2169 break;
2173 else if (nargs != 0)
2174 CALL_CANNOT_INLINE_P (*expr_p) = 1;
2176 /* Finally, gimplify the function arguments. */
2177 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2178 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2179 PUSH_ARGS_REVERSED ? i-- : i++)
2181 enum gimplify_status t;
2183 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p);
2185 if (t == GS_ERROR)
2186 ret = GS_ERROR;
2189 /* Try this again in case gimplification exposed something. */
2190 if (ret != GS_ERROR)
2192 tree new = fold_call_expr (*expr_p, !want_value);
2194 if (new && new != *expr_p)
2196 /* There was a transformation of this call which computes the
2197 same value, but in a more efficient way. Return and try
2198 again. */
2199 *expr_p = new;
2200 return GS_OK;
2204 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2205 decl. This allows us to eliminate redundant or useless
2206 calls to "const" functions. */
2207 if (TREE_CODE (*expr_p) == CALL_EXPR
2208 && (call_expr_flags (*expr_p) & (ECF_CONST | ECF_PURE)))
2209 TREE_SIDE_EFFECTS (*expr_p) = 0;
2211 return ret;
2214 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2215 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2217 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2218 condition is true or false, respectively. If null, we should generate
2219 our own to skip over the evaluation of this specific expression.
2221 This function is the tree equivalent of do_jump.
2223 shortcut_cond_r should only be called by shortcut_cond_expr. */
2225 static tree
2226 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p)
2228 tree local_label = NULL_TREE;
2229 tree t, expr = NULL;
2231 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2232 retain the shortcut semantics. Just insert the gotos here;
2233 shortcut_cond_expr will append the real blocks later. */
2234 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2236 /* Turn if (a && b) into
2238 if (a); else goto no;
2239 if (b) goto yes; else goto no;
2240 (no:) */
2242 if (false_label_p == NULL)
2243 false_label_p = &local_label;
2245 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p);
2246 append_to_statement_list (t, &expr);
2248 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2249 false_label_p);
2250 append_to_statement_list (t, &expr);
2252 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2254 /* Turn if (a || b) into
2256 if (a) goto yes;
2257 if (b) goto yes; else goto no;
2258 (yes:) */
2260 if (true_label_p == NULL)
2261 true_label_p = &local_label;
2263 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL);
2264 append_to_statement_list (t, &expr);
2266 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2267 false_label_p);
2268 append_to_statement_list (t, &expr);
2270 else if (TREE_CODE (pred) == COND_EXPR)
2272 /* As long as we're messing with gotos, turn if (a ? b : c) into
2273 if (a)
2274 if (b) goto yes; else goto no;
2275 else
2276 if (c) goto yes; else goto no; */
2277 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2278 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2279 false_label_p),
2280 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2281 false_label_p));
2283 else
2285 expr = build3 (COND_EXPR, void_type_node, pred,
2286 build_and_jump (true_label_p),
2287 build_and_jump (false_label_p));
2290 if (local_label)
2292 t = build1 (LABEL_EXPR, void_type_node, local_label);
2293 append_to_statement_list (t, &expr);
2296 return expr;
2299 static tree
2300 shortcut_cond_expr (tree expr)
2302 tree pred = TREE_OPERAND (expr, 0);
2303 tree then_ = TREE_OPERAND (expr, 1);
2304 tree else_ = TREE_OPERAND (expr, 2);
2305 tree true_label, false_label, end_label, t;
2306 tree *true_label_p;
2307 tree *false_label_p;
2308 bool emit_end, emit_false, jump_over_else;
2309 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2310 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2312 /* First do simple transformations. */
2313 if (!else_se)
2315 /* If there is no 'else', turn (a && b) into if (a) if (b). */
2316 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2318 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2319 then_ = shortcut_cond_expr (expr);
2320 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2321 pred = TREE_OPERAND (pred, 0);
2322 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2325 if (!then_se)
2327 /* If there is no 'then', turn
2328 if (a || b); else d
2329 into
2330 if (a); else if (b); else d. */
2331 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2333 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2334 else_ = shortcut_cond_expr (expr);
2335 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2336 pred = TREE_OPERAND (pred, 0);
2337 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2341 /* If we're done, great. */
2342 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2343 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2344 return expr;
2346 /* Otherwise we need to mess with gotos. Change
2347 if (a) c; else d;
2349 if (a); else goto no;
2350 c; goto end;
2351 no: d; end:
2352 and recursively gimplify the condition. */
2354 true_label = false_label = end_label = NULL_TREE;
2356 /* If our arms just jump somewhere, hijack those labels so we don't
2357 generate jumps to jumps. */
2359 if (then_
2360 && TREE_CODE (then_) == GOTO_EXPR
2361 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2363 true_label = GOTO_DESTINATION (then_);
2364 then_ = NULL;
2365 then_se = false;
2368 if (else_
2369 && TREE_CODE (else_) == GOTO_EXPR
2370 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2372 false_label = GOTO_DESTINATION (else_);
2373 else_ = NULL;
2374 else_se = false;
2377 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2378 if (true_label)
2379 true_label_p = &true_label;
2380 else
2381 true_label_p = NULL;
2383 /* The 'else' branch also needs a label if it contains interesting code. */
2384 if (false_label || else_se)
2385 false_label_p = &false_label;
2386 else
2387 false_label_p = NULL;
2389 /* If there was nothing else in our arms, just forward the label(s). */
2390 if (!then_se && !else_se)
2391 return shortcut_cond_r (pred, true_label_p, false_label_p);
2393 /* If our last subexpression already has a terminal label, reuse it. */
2394 if (else_se)
2395 expr = expr_last (else_);
2396 else if (then_se)
2397 expr = expr_last (then_);
2398 else
2399 expr = NULL;
2400 if (expr && TREE_CODE (expr) == LABEL_EXPR)
2401 end_label = LABEL_EXPR_LABEL (expr);
2403 /* If we don't care about jumping to the 'else' branch, jump to the end
2404 if the condition is false. */
2405 if (!false_label_p)
2406 false_label_p = &end_label;
2408 /* We only want to emit these labels if we aren't hijacking them. */
2409 emit_end = (end_label == NULL_TREE);
2410 emit_false = (false_label == NULL_TREE);
2412 /* We only emit the jump over the else clause if we have to--if the
2413 then clause may fall through. Otherwise we can wind up with a
2414 useless jump and a useless label at the end of gimplified code,
2415 which will cause us to think that this conditional as a whole
2416 falls through even if it doesn't. If we then inline a function
2417 which ends with such a condition, that can cause us to issue an
2418 inappropriate warning about control reaching the end of a
2419 non-void function. */
2420 jump_over_else = block_may_fallthru (then_);
2422 pred = shortcut_cond_r (pred, true_label_p, false_label_p);
2424 expr = NULL;
2425 append_to_statement_list (pred, &expr);
2427 append_to_statement_list (then_, &expr);
2428 if (else_se)
2430 if (jump_over_else)
2432 t = build_and_jump (&end_label);
2433 append_to_statement_list (t, &expr);
2435 if (emit_false)
2437 t = build1 (LABEL_EXPR, void_type_node, false_label);
2438 append_to_statement_list (t, &expr);
2440 append_to_statement_list (else_, &expr);
2442 if (emit_end && end_label)
2444 t = build1 (LABEL_EXPR, void_type_node, end_label);
2445 append_to_statement_list (t, &expr);
2448 return expr;
2451 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2453 tree
2454 gimple_boolify (tree expr)
2456 tree type = TREE_TYPE (expr);
2458 if (TREE_CODE (type) == BOOLEAN_TYPE)
2459 return expr;
2461 switch (TREE_CODE (expr))
2463 case TRUTH_AND_EXPR:
2464 case TRUTH_OR_EXPR:
2465 case TRUTH_XOR_EXPR:
2466 case TRUTH_ANDIF_EXPR:
2467 case TRUTH_ORIF_EXPR:
2468 /* Also boolify the arguments of truth exprs. */
2469 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2470 /* FALLTHRU */
2472 case TRUTH_NOT_EXPR:
2473 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2474 /* FALLTHRU */
2476 case EQ_EXPR: case NE_EXPR:
2477 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2478 /* These expressions always produce boolean results. */
2479 TREE_TYPE (expr) = boolean_type_node;
2480 return expr;
2482 default:
2483 /* Other expressions that get here must have boolean values, but
2484 might need to be converted to the appropriate mode. */
2485 return fold_convert (boolean_type_node, expr);
2489 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
2490 into
2492 if (p) if (p)
2493 t1 = a; a;
2494 else or else
2495 t1 = b; b;
2498 The second form is used when *EXPR_P is of type void.
2500 TARGET is the tree for T1 above.
2502 PRE_P points to the list where side effects that must happen before
2503 *EXPR_P should be stored. */
2505 static enum gimplify_status
2506 gimplify_cond_expr (tree *expr_p, tree *pre_p, fallback_t fallback)
2508 tree expr = *expr_p;
2509 tree tmp, tmp2, type;
2510 enum gimplify_status ret;
2512 type = TREE_TYPE (expr);
2514 /* If this COND_EXPR has a value, copy the values into a temporary within
2515 the arms. */
2516 if (! VOID_TYPE_P (type))
2518 tree result;
2520 if ((fallback & fb_lvalue) == 0)
2522 result = tmp2 = tmp = create_tmp_var (TREE_TYPE (expr), "iftmp");
2523 ret = GS_ALL_DONE;
2525 else
2527 tree type = build_pointer_type (TREE_TYPE (expr));
2529 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2530 TREE_OPERAND (expr, 1) =
2531 build_fold_addr_expr (TREE_OPERAND (expr, 1));
2533 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2534 TREE_OPERAND (expr, 2) =
2535 build_fold_addr_expr (TREE_OPERAND (expr, 2));
2537 tmp2 = tmp = create_tmp_var (type, "iftmp");
2539 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (expr, 0),
2540 TREE_OPERAND (expr, 1), TREE_OPERAND (expr, 2));
2542 result = build_fold_indirect_ref (tmp);
2543 ret = GS_ALL_DONE;
2546 /* Build the then clause, 't1 = a;'. But don't build an assignment
2547 if this branch is void; in C++ it can be, if it's a throw. */
2548 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2549 TREE_OPERAND (expr, 1)
2550 = build_gimple_modify_stmt (tmp, TREE_OPERAND (expr, 1));
2552 /* Build the else clause, 't1 = b;'. */
2553 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2554 TREE_OPERAND (expr, 2)
2555 = build_gimple_modify_stmt (tmp2, TREE_OPERAND (expr, 2));
2557 TREE_TYPE (expr) = void_type_node;
2558 recalculate_side_effects (expr);
2560 /* Move the COND_EXPR to the prequeue. */
2561 gimplify_and_add (expr, pre_p);
2563 *expr_p = result;
2564 return ret;
2567 /* Make sure the condition has BOOLEAN_TYPE. */
2568 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2570 /* Break apart && and || conditions. */
2571 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
2572 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
2574 expr = shortcut_cond_expr (expr);
2576 if (expr != *expr_p)
2578 *expr_p = expr;
2580 /* We can't rely on gimplify_expr to re-gimplify the expanded
2581 form properly, as cleanups might cause the target labels to be
2582 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
2583 set up a conditional context. */
2584 gimple_push_condition ();
2585 gimplify_stmt (expr_p);
2586 gimple_pop_condition (pre_p);
2588 return GS_ALL_DONE;
2592 /* Now do the normal gimplification. */
2593 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2594 is_gimple_condexpr, fb_rvalue);
2596 gimple_push_condition ();
2598 gimplify_to_stmt_list (&TREE_OPERAND (expr, 1));
2599 gimplify_to_stmt_list (&TREE_OPERAND (expr, 2));
2600 recalculate_side_effects (expr);
2602 gimple_pop_condition (pre_p);
2604 if (ret == GS_ERROR)
2606 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2607 ret = GS_ALL_DONE;
2608 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 2)))
2609 /* Rewrite "if (a); else b" to "if (!a) b" */
2611 TREE_OPERAND (expr, 0) = invert_truthvalue (TREE_OPERAND (expr, 0));
2612 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2613 is_gimple_condexpr, fb_rvalue);
2615 tmp = TREE_OPERAND (expr, 1);
2616 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 2);
2617 TREE_OPERAND (expr, 2) = tmp;
2619 else
2620 /* Both arms are empty; replace the COND_EXPR with its predicate. */
2621 expr = TREE_OPERAND (expr, 0);
2623 *expr_p = expr;
2624 return ret;
2627 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2628 a call to __builtin_memcpy. */
2630 static enum gimplify_status
2631 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value)
2633 tree t, to, to_ptr, from, from_ptr;
2635 to = GENERIC_TREE_OPERAND (*expr_p, 0);
2636 from = GENERIC_TREE_OPERAND (*expr_p, 1);
2638 from_ptr = build_fold_addr_expr (from);
2640 to_ptr = build_fold_addr_expr (to);
2641 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
2642 t = build_call_expr (t, 3, to_ptr, from_ptr, size);
2644 if (want_value)
2646 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2647 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2650 *expr_p = t;
2651 return GS_OK;
2654 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2655 a call to __builtin_memset. In this case we know that the RHS is
2656 a CONSTRUCTOR with an empty element list. */
2658 static enum gimplify_status
2659 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value)
2661 tree t, to, to_ptr;
2663 to = GENERIC_TREE_OPERAND (*expr_p, 0);
2665 to_ptr = build_fold_addr_expr (to);
2666 t = implicit_built_in_decls[BUILT_IN_MEMSET];
2667 t = build_call_expr (t, 3, to_ptr, integer_zero_node, size);
2669 if (want_value)
2671 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2672 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2675 *expr_p = t;
2676 return GS_OK;
2679 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
2680 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
2681 assignment. Returns non-null if we detect a potential overlap. */
2683 struct gimplify_init_ctor_preeval_data
2685 /* The base decl of the lhs object. May be NULL, in which case we
2686 have to assume the lhs is indirect. */
2687 tree lhs_base_decl;
2689 /* The alias set of the lhs object. */
2690 alias_set_type lhs_alias_set;
2693 static tree
2694 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
2696 struct gimplify_init_ctor_preeval_data *data
2697 = (struct gimplify_init_ctor_preeval_data *) xdata;
2698 tree t = *tp;
2700 /* If we find the base object, obviously we have overlap. */
2701 if (data->lhs_base_decl == t)
2702 return t;
2704 /* If the constructor component is indirect, determine if we have a
2705 potential overlap with the lhs. The only bits of information we
2706 have to go on at this point are addressability and alias sets. */
2707 if (TREE_CODE (t) == INDIRECT_REF
2708 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2709 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
2710 return t;
2712 /* If the constructor component is a call, determine if it can hide a
2713 potential overlap with the lhs through an INDIRECT_REF like above. */
2714 if (TREE_CODE (t) == CALL_EXPR)
2716 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
2718 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
2719 if (POINTER_TYPE_P (TREE_VALUE (type))
2720 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2721 && alias_sets_conflict_p (data->lhs_alias_set,
2722 get_alias_set
2723 (TREE_TYPE (TREE_VALUE (type)))))
2724 return t;
2727 if (IS_TYPE_OR_DECL_P (t))
2728 *walk_subtrees = 0;
2729 return NULL;
2732 /* A subroutine of gimplify_init_constructor. Pre-evaluate *EXPR_P,
2733 force values that overlap with the lhs (as described by *DATA)
2734 into temporaries. */
2736 static void
2737 gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
2738 struct gimplify_init_ctor_preeval_data *data)
2740 enum gimplify_status one;
2742 /* If the value is invariant, then there's nothing to pre-evaluate.
2743 But ensure it doesn't have any side-effects since a SAVE_EXPR is
2744 invariant but has side effects and might contain a reference to
2745 the object we're initializing. */
2746 if (TREE_INVARIANT (*expr_p) && !TREE_SIDE_EFFECTS (*expr_p))
2747 return;
2749 /* If the type has non-trivial constructors, we can't pre-evaluate. */
2750 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
2751 return;
2753 /* Recurse for nested constructors. */
2754 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
2756 unsigned HOST_WIDE_INT ix;
2757 constructor_elt *ce;
2758 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
2760 for (ix = 0; VEC_iterate (constructor_elt, v, ix, ce); ix++)
2761 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
2762 return;
2765 /* If this is a variable sized type, we must remember the size. */
2766 maybe_with_size_expr (expr_p);
2768 /* Gimplify the constructor element to something appropriate for the rhs
2769 of a MODIFY_EXPR. Given that we know the lhs is an aggregate, we know
2770 the gimplifier will consider this a store to memory. Doing this
2771 gimplification now means that we won't have to deal with complicated
2772 language-specific trees, nor trees like SAVE_EXPR that can induce
2773 exponential search behavior. */
2774 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
2775 if (one == GS_ERROR)
2777 *expr_p = NULL;
2778 return;
2781 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
2782 with the lhs, since "a = { .x=a }" doesn't make sense. This will
2783 always be true for all scalars, since is_gimple_mem_rhs insists on a
2784 temporary variable for them. */
2785 if (DECL_P (*expr_p))
2786 return;
2788 /* If this is of variable size, we have no choice but to assume it doesn't
2789 overlap since we can't make a temporary for it. */
2790 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
2791 return;
2793 /* Otherwise, we must search for overlap ... */
2794 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
2795 return;
2797 /* ... and if found, force the value into a temporary. */
2798 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
2801 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
2802 a RANGE_EXPR in a CONSTRUCTOR for an array.
2804 var = lower;
2805 loop_entry:
2806 object[var] = value;
2807 if (var == upper)
2808 goto loop_exit;
2809 var = var + 1;
2810 goto loop_entry;
2811 loop_exit:
2813 We increment var _after_ the loop exit check because we might otherwise
2814 fail if upper == TYPE_MAX_VALUE (type for upper).
2816 Note that we never have to deal with SAVE_EXPRs here, because this has
2817 already been taken care of for us, in gimplify_init_ctor_preeval(). */
2819 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
2820 tree *, bool);
2822 static void
2823 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
2824 tree value, tree array_elt_type,
2825 tree *pre_p, bool cleared)
2827 tree loop_entry_label, loop_exit_label;
2828 tree var, var_type, cref, tmp;
2830 loop_entry_label = create_artificial_label ();
2831 loop_exit_label = create_artificial_label ();
2833 /* Create and initialize the index variable. */
2834 var_type = TREE_TYPE (upper);
2835 var = create_tmp_var (var_type, NULL);
2836 append_to_statement_list (build_gimple_modify_stmt (var, lower), pre_p);
2838 /* Add the loop entry label. */
2839 append_to_statement_list (build1 (LABEL_EXPR,
2840 void_type_node,
2841 loop_entry_label),
2842 pre_p);
2844 /* Build the reference. */
2845 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2846 var, NULL_TREE, NULL_TREE);
2848 /* If we are a constructor, just call gimplify_init_ctor_eval to do
2849 the store. Otherwise just assign value to the reference. */
2851 if (TREE_CODE (value) == CONSTRUCTOR)
2852 /* NB we might have to call ourself recursively through
2853 gimplify_init_ctor_eval if the value is a constructor. */
2854 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2855 pre_p, cleared);
2856 else
2857 append_to_statement_list (build_gimple_modify_stmt (cref, value), pre_p);
2859 /* We exit the loop when the index var is equal to the upper bound. */
2860 gimplify_and_add (build3 (COND_EXPR, void_type_node,
2861 build2 (EQ_EXPR, boolean_type_node,
2862 var, upper),
2863 build1 (GOTO_EXPR,
2864 void_type_node,
2865 loop_exit_label),
2866 NULL_TREE),
2867 pre_p);
2869 /* Otherwise, increment the index var... */
2870 tmp = build2 (PLUS_EXPR, var_type, var,
2871 fold_convert (var_type, integer_one_node));
2872 append_to_statement_list (build_gimple_modify_stmt (var, tmp), pre_p);
2874 /* ...and jump back to the loop entry. */
2875 append_to_statement_list (build1 (GOTO_EXPR,
2876 void_type_node,
2877 loop_entry_label),
2878 pre_p);
2880 /* Add the loop exit label. */
2881 append_to_statement_list (build1 (LABEL_EXPR,
2882 void_type_node,
2883 loop_exit_label),
2884 pre_p);
2887 /* Return true if FDECL is accessing a field that is zero sized. */
2889 static bool
2890 zero_sized_field_decl (const_tree fdecl)
2892 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
2893 && integer_zerop (DECL_SIZE (fdecl)))
2894 return true;
2895 return false;
2898 /* Return true if TYPE is zero sized. */
2900 static bool
2901 zero_sized_type (const_tree type)
2903 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
2904 && integer_zerop (TYPE_SIZE (type)))
2905 return true;
2906 return false;
2909 /* A subroutine of gimplify_init_constructor. Generate individual
2910 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
2911 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
2912 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
2913 zeroed first. */
2915 static void
2916 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
2917 tree *pre_p, bool cleared)
2919 tree array_elt_type = NULL;
2920 unsigned HOST_WIDE_INT ix;
2921 tree purpose, value;
2923 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
2924 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
2926 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
2928 tree cref, init;
2930 /* NULL values are created above for gimplification errors. */
2931 if (value == NULL)
2932 continue;
2934 if (cleared && initializer_zerop (value))
2935 continue;
2937 /* ??? Here's to hoping the front end fills in all of the indices,
2938 so we don't have to figure out what's missing ourselves. */
2939 gcc_assert (purpose);
2941 /* Skip zero-sized fields, unless value has side-effects. This can
2942 happen with calls to functions returning a zero-sized type, which
2943 we shouldn't discard. As a number of downstream passes don't
2944 expect sets of zero-sized fields, we rely on the gimplification of
2945 the MODIFY_EXPR we make below to drop the assignment statement. */
2946 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
2947 continue;
2949 /* If we have a RANGE_EXPR, we have to build a loop to assign the
2950 whole range. */
2951 if (TREE_CODE (purpose) == RANGE_EXPR)
2953 tree lower = TREE_OPERAND (purpose, 0);
2954 tree upper = TREE_OPERAND (purpose, 1);
2956 /* If the lower bound is equal to upper, just treat it as if
2957 upper was the index. */
2958 if (simple_cst_equal (lower, upper))
2959 purpose = upper;
2960 else
2962 gimplify_init_ctor_eval_range (object, lower, upper, value,
2963 array_elt_type, pre_p, cleared);
2964 continue;
2968 if (array_elt_type)
2970 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2971 purpose, NULL_TREE, NULL_TREE);
2973 else
2975 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
2976 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
2977 unshare_expr (object), purpose, NULL_TREE);
2980 if (TREE_CODE (value) == CONSTRUCTOR
2981 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
2982 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2983 pre_p, cleared);
2984 else
2986 init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
2987 gimplify_and_add (init, pre_p);
2992 /* A subroutine of gimplify_modify_expr. Break out elements of a
2993 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
2995 Note that we still need to clear any elements that don't have explicit
2996 initializers, so if not all elements are initialized we keep the
2997 original MODIFY_EXPR, we just remove all of the constructor elements. */
2999 static enum gimplify_status
3000 gimplify_init_constructor (tree *expr_p, tree *pre_p,
3001 tree *post_p, bool want_value)
3003 tree object;
3004 tree ctor = GENERIC_TREE_OPERAND (*expr_p, 1);
3005 tree type = TREE_TYPE (ctor);
3006 enum gimplify_status ret;
3007 VEC(constructor_elt,gc) *elts;
3009 if (TREE_CODE (ctor) != CONSTRUCTOR)
3010 return GS_UNHANDLED;
3012 ret = gimplify_expr (&GENERIC_TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3013 is_gimple_lvalue, fb_lvalue);
3014 if (ret == GS_ERROR)
3015 return ret;
3016 object = GENERIC_TREE_OPERAND (*expr_p, 0);
3018 elts = CONSTRUCTOR_ELTS (ctor);
3020 ret = GS_ALL_DONE;
3021 switch (TREE_CODE (type))
3023 case RECORD_TYPE:
3024 case UNION_TYPE:
3025 case QUAL_UNION_TYPE:
3026 case ARRAY_TYPE:
3028 struct gimplify_init_ctor_preeval_data preeval_data;
3029 HOST_WIDE_INT num_type_elements, num_ctor_elements;
3030 HOST_WIDE_INT num_nonzero_elements;
3031 bool cleared, valid_const_initializer;
3033 /* Aggregate types must lower constructors to initialization of
3034 individual elements. The exception is that a CONSTRUCTOR node
3035 with no elements indicates zero-initialization of the whole. */
3036 if (VEC_empty (constructor_elt, elts))
3037 break;
3039 /* Fetch information about the constructor to direct later processing.
3040 We might want to make static versions of it in various cases, and
3041 can only do so if it known to be a valid constant initializer. */
3042 valid_const_initializer
3043 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3044 &num_ctor_elements, &cleared);
3046 /* If a const aggregate variable is being initialized, then it
3047 should never be a lose to promote the variable to be static. */
3048 if (valid_const_initializer
3049 && num_nonzero_elements > 1
3050 && TREE_READONLY (object)
3051 && TREE_CODE (object) == VAR_DECL)
3053 DECL_INITIAL (object) = ctor;
3054 TREE_STATIC (object) = 1;
3055 if (!DECL_NAME (object))
3056 DECL_NAME (object) = create_tmp_var_name ("C");
3057 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3059 /* ??? C++ doesn't automatically append a .<number> to the
3060 assembler name, and even when it does, it looks a FE private
3061 data structures to figure out what that number should be,
3062 which are not set for this variable. I suppose this is
3063 important for local statics for inline functions, which aren't
3064 "local" in the object file sense. So in order to get a unique
3065 TU-local symbol, we must invoke the lhd version now. */
3066 lhd_set_decl_assembler_name (object);
3068 *expr_p = NULL_TREE;
3069 break;
3072 /* If there are "lots" of initialized elements, even discounting
3073 those that are not address constants (and thus *must* be
3074 computed at runtime), then partition the constructor into
3075 constant and non-constant parts. Block copy the constant
3076 parts in, then generate code for the non-constant parts. */
3077 /* TODO. There's code in cp/typeck.c to do this. */
3079 num_type_elements = count_type_elements (type, true);
3081 /* If count_type_elements could not determine number of type elements
3082 for a constant-sized object, assume clearing is needed.
3083 Don't do this for variable-sized objects, as store_constructor
3084 will ignore the clearing of variable-sized objects. */
3085 if (num_type_elements < 0 && int_size_in_bytes (type) >= 0)
3086 cleared = true;
3087 /* If there are "lots" of zeros, then block clear the object first. */
3088 else if (num_type_elements - num_nonzero_elements > CLEAR_RATIO
3089 && num_nonzero_elements < num_type_elements/4)
3090 cleared = true;
3091 /* ??? This bit ought not be needed. For any element not present
3092 in the initializer, we should simply set them to zero. Except
3093 we'd need to *find* the elements that are not present, and that
3094 requires trickery to avoid quadratic compile-time behavior in
3095 large cases or excessive memory use in small cases. */
3096 else if (num_ctor_elements < num_type_elements)
3097 cleared = true;
3099 /* If there are "lots" of initialized elements, and all of them
3100 are valid address constants, then the entire initializer can
3101 be dropped to memory, and then memcpy'd out. Don't do this
3102 for sparse arrays, though, as it's more efficient to follow
3103 the standard CONSTRUCTOR behavior of memset followed by
3104 individual element initialization. */
3105 if (valid_const_initializer && !cleared)
3107 HOST_WIDE_INT size = int_size_in_bytes (type);
3108 unsigned int align;
3110 /* ??? We can still get unbounded array types, at least
3111 from the C++ front end. This seems wrong, but attempt
3112 to work around it for now. */
3113 if (size < 0)
3115 size = int_size_in_bytes (TREE_TYPE (object));
3116 if (size >= 0)
3117 TREE_TYPE (ctor) = type = TREE_TYPE (object);
3120 /* Find the maximum alignment we can assume for the object. */
3121 /* ??? Make use of DECL_OFFSET_ALIGN. */
3122 if (DECL_P (object))
3123 align = DECL_ALIGN (object);
3124 else
3125 align = TYPE_ALIGN (type);
3127 if (size > 0 && !can_move_by_pieces (size, align))
3129 tree new = create_tmp_var_raw (type, "C");
3131 gimple_add_tmp_var (new);
3132 TREE_STATIC (new) = 1;
3133 TREE_READONLY (new) = 1;
3134 DECL_INITIAL (new) = ctor;
3135 if (align > DECL_ALIGN (new))
3137 DECL_ALIGN (new) = align;
3138 DECL_USER_ALIGN (new) = 1;
3140 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
3142 GENERIC_TREE_OPERAND (*expr_p, 1) = new;
3144 /* This is no longer an assignment of a CONSTRUCTOR, but
3145 we still may have processing to do on the LHS. So
3146 pretend we didn't do anything here to let that happen. */
3147 return GS_UNHANDLED;
3151 /* If there are nonzero elements, pre-evaluate to capture elements
3152 overlapping with the lhs into temporaries. We must do this before
3153 clearing to fetch the values before they are zeroed-out. */
3154 if (num_nonzero_elements > 0)
3156 preeval_data.lhs_base_decl = get_base_address (object);
3157 if (!DECL_P (preeval_data.lhs_base_decl))
3158 preeval_data.lhs_base_decl = NULL;
3159 preeval_data.lhs_alias_set = get_alias_set (object);
3161 gimplify_init_ctor_preeval (&GENERIC_TREE_OPERAND (*expr_p, 1),
3162 pre_p, post_p, &preeval_data);
3165 if (cleared)
3167 /* Zap the CONSTRUCTOR element list, which simplifies this case.
3168 Note that we still have to gimplify, in order to handle the
3169 case of variable sized types. Avoid shared tree structures. */
3170 CONSTRUCTOR_ELTS (ctor) = NULL;
3171 object = unshare_expr (object);
3172 gimplify_stmt (expr_p);
3173 append_to_statement_list (*expr_p, pre_p);
3176 /* If we have not block cleared the object, or if there are nonzero
3177 elements in the constructor, add assignments to the individual
3178 scalar fields of the object. */
3179 if (!cleared || num_nonzero_elements > 0)
3180 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
3182 *expr_p = NULL_TREE;
3184 break;
3186 case COMPLEX_TYPE:
3188 tree r, i;
3190 /* Extract the real and imaginary parts out of the ctor. */
3191 gcc_assert (VEC_length (constructor_elt, elts) == 2);
3192 r = VEC_index (constructor_elt, elts, 0)->value;
3193 i = VEC_index (constructor_elt, elts, 1)->value;
3194 if (r == NULL || i == NULL)
3196 tree zero = fold_convert (TREE_TYPE (type), integer_zero_node);
3197 if (r == NULL)
3198 r = zero;
3199 if (i == NULL)
3200 i = zero;
3203 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3204 represent creation of a complex value. */
3205 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3207 ctor = build_complex (type, r, i);
3208 TREE_OPERAND (*expr_p, 1) = ctor;
3210 else
3212 ctor = build2 (COMPLEX_EXPR, type, r, i);
3213 TREE_OPERAND (*expr_p, 1) = ctor;
3214 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3215 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
3216 fb_rvalue);
3219 break;
3221 case VECTOR_TYPE:
3223 unsigned HOST_WIDE_INT ix;
3224 constructor_elt *ce;
3226 /* Go ahead and simplify constant constructors to VECTOR_CST. */
3227 if (TREE_CONSTANT (ctor))
3229 bool constant_p = true;
3230 tree value;
3232 /* Even when ctor is constant, it might contain non-*_CST
3233 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
3234 belong into VECTOR_CST nodes. */
3235 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
3236 if (!CONSTANT_CLASS_P (value))
3238 constant_p = false;
3239 break;
3242 if (constant_p)
3244 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
3245 break;
3248 /* Don't reduce a TREE_CONSTANT vector ctor even if we can't
3249 make a VECTOR_CST. It won't do anything for us, and it'll
3250 prevent us from representing it as a single constant. */
3251 break;
3254 /* Vector types use CONSTRUCTOR all the way through gimple
3255 compilation as a general initializer. */
3256 for (ix = 0; VEC_iterate (constructor_elt, elts, ix, ce); ix++)
3258 enum gimplify_status tret;
3259 tret = gimplify_expr (&ce->value, pre_p, post_p,
3260 is_gimple_val, fb_rvalue);
3261 if (tret == GS_ERROR)
3262 ret = GS_ERROR;
3264 if (!is_gimple_reg (GENERIC_TREE_OPERAND (*expr_p, 0)))
3265 GENERIC_TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
3267 break;
3269 default:
3270 /* So how did we get a CONSTRUCTOR for a scalar type? */
3271 gcc_unreachable ();
3274 if (ret == GS_ERROR)
3275 return GS_ERROR;
3276 else if (want_value)
3278 append_to_statement_list (*expr_p, pre_p);
3279 *expr_p = object;
3280 return GS_OK;
3282 else
3283 return GS_ALL_DONE;
3286 /* Given a pointer value OP0, return a simplified version of an
3287 indirection through OP0, or NULL_TREE if no simplification is
3288 possible. This may only be applied to a rhs of an expression.
3289 Note that the resulting type may be different from the type pointed
3290 to in the sense that it is still compatible from the langhooks
3291 point of view. */
3293 static tree
3294 fold_indirect_ref_rhs (tree t)
3296 tree type = TREE_TYPE (TREE_TYPE (t));
3297 tree sub = t;
3298 tree subtype;
3300 STRIP_USELESS_TYPE_CONVERSION (sub);
3301 subtype = TREE_TYPE (sub);
3302 if (!POINTER_TYPE_P (subtype))
3303 return NULL_TREE;
3305 if (TREE_CODE (sub) == ADDR_EXPR)
3307 tree op = TREE_OPERAND (sub, 0);
3308 tree optype = TREE_TYPE (op);
3309 /* *&p => p */
3310 if (useless_type_conversion_p (type, optype))
3311 return op;
3312 /* *(foo *)&fooarray => fooarray[0] */
3313 else if (TREE_CODE (optype) == ARRAY_TYPE
3314 && useless_type_conversion_p (type, TREE_TYPE (optype)))
3316 tree type_domain = TYPE_DOMAIN (optype);
3317 tree min_val = size_zero_node;
3318 if (type_domain && TYPE_MIN_VALUE (type_domain))
3319 min_val = TYPE_MIN_VALUE (type_domain);
3320 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
3324 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3325 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3326 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
3328 tree type_domain;
3329 tree min_val = size_zero_node;
3330 tree osub = sub;
3331 sub = fold_indirect_ref_rhs (sub);
3332 if (! sub)
3333 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
3334 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3335 if (type_domain && TYPE_MIN_VALUE (type_domain))
3336 min_val = TYPE_MIN_VALUE (type_domain);
3337 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
3340 return NULL_TREE;
3343 /* Subroutine of gimplify_modify_expr to do simplifications of MODIFY_EXPRs
3344 based on the code of the RHS. We loop for as long as something changes. */
3346 static enum gimplify_status
3347 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
3348 tree *post_p, bool want_value)
3350 enum gimplify_status ret = GS_OK;
3352 while (ret != GS_UNHANDLED)
3353 switch (TREE_CODE (*from_p))
3355 case INDIRECT_REF:
3357 /* If we have code like
3359 *(const A*)(A*)&x
3361 where the type of "x" is a (possibly cv-qualified variant
3362 of "A"), treat the entire expression as identical to "x".
3363 This kind of code arises in C++ when an object is bound
3364 to a const reference, and if "x" is a TARGET_EXPR we want
3365 to take advantage of the optimization below. */
3366 tree t = fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
3367 if (t)
3369 *from_p = t;
3370 ret = GS_OK;
3372 else
3373 ret = GS_UNHANDLED;
3374 break;
3377 case TARGET_EXPR:
3379 /* If we are initializing something from a TARGET_EXPR, strip the
3380 TARGET_EXPR and initialize it directly, if possible. This can't
3381 be done if the initializer is void, since that implies that the
3382 temporary is set in some non-trivial way.
3384 ??? What about code that pulls out the temp and uses it
3385 elsewhere? I think that such code never uses the TARGET_EXPR as
3386 an initializer. If I'm wrong, we'll die because the temp won't
3387 have any RTL. In that case, I guess we'll need to replace
3388 references somehow. */
3389 tree init = TARGET_EXPR_INITIAL (*from_p);
3391 if (!VOID_TYPE_P (TREE_TYPE (init)))
3393 *from_p = init;
3394 ret = GS_OK;
3396 else
3397 ret = GS_UNHANDLED;
3399 break;
3401 case COMPOUND_EXPR:
3402 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
3403 caught. */
3404 gimplify_compound_expr (from_p, pre_p, true);
3405 ret = GS_OK;
3406 break;
3408 case CONSTRUCTOR:
3409 /* If we're initializing from a CONSTRUCTOR, break this into
3410 individual MODIFY_EXPRs. */
3411 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value);
3413 case COND_EXPR:
3414 /* If we're assigning to a non-register type, push the assignment
3415 down into the branches. This is mandatory for ADDRESSABLE types,
3416 since we cannot generate temporaries for such, but it saves a
3417 copy in other cases as well. */
3418 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
3420 /* This code should mirror the code in gimplify_cond_expr. */
3421 enum tree_code code = TREE_CODE (*expr_p);
3422 tree cond = *from_p;
3423 tree result = *to_p;
3425 ret = gimplify_expr (&result, pre_p, post_p,
3426 is_gimple_min_lval, fb_lvalue);
3427 if (ret != GS_ERROR)
3428 ret = GS_OK;
3430 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
3431 TREE_OPERAND (cond, 1)
3432 = build2 (code, void_type_node, result,
3433 TREE_OPERAND (cond, 1));
3434 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
3435 TREE_OPERAND (cond, 2)
3436 = build2 (code, void_type_node, unshare_expr (result),
3437 TREE_OPERAND (cond, 2));
3439 TREE_TYPE (cond) = void_type_node;
3440 recalculate_side_effects (cond);
3442 if (want_value)
3444 gimplify_and_add (cond, pre_p);
3445 *expr_p = unshare_expr (result);
3447 else
3448 *expr_p = cond;
3449 return ret;
3451 else
3452 ret = GS_UNHANDLED;
3453 break;
3455 case CALL_EXPR:
3456 /* For calls that return in memory, give *to_p as the CALL_EXPR's
3457 return slot so that we don't generate a temporary. */
3458 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
3459 && aggregate_value_p (*from_p, *from_p))
3461 bool use_target;
3463 if (!(rhs_predicate_for (*to_p))(*from_p))
3464 /* If we need a temporary, *to_p isn't accurate. */
3465 use_target = false;
3466 else if (TREE_CODE (*to_p) == RESULT_DECL
3467 && DECL_NAME (*to_p) == NULL_TREE
3468 && needs_to_live_in_memory (*to_p))
3469 /* It's OK to use the return slot directly unless it's an NRV. */
3470 use_target = true;
3471 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
3472 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
3473 /* Don't force regs into memory. */
3474 use_target = false;
3475 else if (TREE_CODE (*to_p) == VAR_DECL
3476 && DECL_GIMPLE_FORMAL_TEMP_P (*to_p))
3477 /* Don't use the original target if it's a formal temp; we
3478 don't want to take their addresses. */
3479 use_target = false;
3480 else if (TREE_CODE (*expr_p) == INIT_EXPR)
3481 /* It's OK to use the target directly if it's being
3482 initialized. */
3483 use_target = true;
3484 else if (!is_gimple_non_addressable (*to_p))
3485 /* Don't use the original target if it's already addressable;
3486 if its address escapes, and the called function uses the
3487 NRV optimization, a conforming program could see *to_p
3488 change before the called function returns; see c++/19317.
3489 When optimizing, the return_slot pass marks more functions
3490 as safe after we have escape info. */
3491 use_target = false;
3492 else
3493 use_target = true;
3495 if (use_target)
3497 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
3498 mark_addressable (*to_p);
3502 ret = GS_UNHANDLED;
3503 break;
3505 /* If we're initializing from a container, push the initialization
3506 inside it. */
3507 case CLEANUP_POINT_EXPR:
3508 case BIND_EXPR:
3509 case STATEMENT_LIST:
3511 tree wrap = *from_p;
3512 tree t;
3514 ret = gimplify_expr (to_p, pre_p, post_p,
3515 is_gimple_min_lval, fb_lvalue);
3516 if (ret != GS_ERROR)
3517 ret = GS_OK;
3519 t = voidify_wrapper_expr (wrap, *expr_p);
3520 gcc_assert (t == *expr_p);
3522 if (want_value)
3524 gimplify_and_add (wrap, pre_p);
3525 *expr_p = unshare_expr (*to_p);
3527 else
3528 *expr_p = wrap;
3529 return GS_OK;
3532 default:
3533 ret = GS_UNHANDLED;
3534 break;
3537 return ret;
3540 /* Destructively convert the TREE pointer in TP into a gimple tuple if
3541 appropriate. */
3543 static void
3544 tree_to_gimple_tuple (tree *tp)
3547 switch (TREE_CODE (*tp))
3549 case GIMPLE_MODIFY_STMT:
3550 return;
3551 case MODIFY_EXPR:
3553 struct gimple_stmt *gs;
3554 tree lhs = TREE_OPERAND (*tp, 0);
3555 bool def_stmt_self_p = false;
3557 if (TREE_CODE (lhs) == SSA_NAME)
3559 if (SSA_NAME_DEF_STMT (lhs) == *tp)
3560 def_stmt_self_p = true;
3563 gs = &make_node (GIMPLE_MODIFY_STMT)->gstmt;
3564 gs->base = (*tp)->base;
3565 /* The set to base above overwrites the CODE. */
3566 TREE_SET_CODE ((tree) gs, GIMPLE_MODIFY_STMT);
3568 gs->locus = EXPR_LOCUS (*tp);
3569 gs->operands[0] = TREE_OPERAND (*tp, 0);
3570 gs->operands[1] = TREE_OPERAND (*tp, 1);
3571 gs->block = TREE_BLOCK (*tp);
3572 *tp = (tree)gs;
3574 /* If we re-gimplify a set to an SSA_NAME, we must change the
3575 SSA name's DEF_STMT link. */
3576 if (def_stmt_self_p)
3577 SSA_NAME_DEF_STMT (GIMPLE_STMT_OPERAND (*tp, 0)) = *tp;
3579 return;
3581 default:
3582 break;
3586 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
3587 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
3588 DECL_GIMPLE_REG_P set. */
3590 static enum gimplify_status
3591 gimplify_modify_expr_complex_part (tree *expr_p, tree *pre_p, bool want_value)
3593 enum tree_code code, ocode;
3594 tree lhs, rhs, new_rhs, other, realpart, imagpart;
3596 lhs = GENERIC_TREE_OPERAND (*expr_p, 0);
3597 rhs = GENERIC_TREE_OPERAND (*expr_p, 1);
3598 code = TREE_CODE (lhs);
3599 lhs = TREE_OPERAND (lhs, 0);
3601 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
3602 other = build1 (ocode, TREE_TYPE (rhs), lhs);
3603 other = get_formal_tmp_var (other, pre_p);
3605 realpart = code == REALPART_EXPR ? rhs : other;
3606 imagpart = code == REALPART_EXPR ? other : rhs;
3608 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
3609 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
3610 else
3611 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
3613 GENERIC_TREE_OPERAND (*expr_p, 0) = lhs;
3614 GENERIC_TREE_OPERAND (*expr_p, 1) = new_rhs;
3616 if (want_value)
3618 tree_to_gimple_tuple (expr_p);
3620 append_to_statement_list (*expr_p, pre_p);
3621 *expr_p = rhs;
3624 return GS_ALL_DONE;
3627 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
3629 modify_expr
3630 : varname '=' rhs
3631 | '*' ID '=' rhs
3633 PRE_P points to the list where side effects that must happen before
3634 *EXPR_P should be stored.
3636 POST_P points to the list where side effects that must happen after
3637 *EXPR_P should be stored.
3639 WANT_VALUE is nonzero iff we want to use the value of this expression
3640 in another expression. */
3642 static enum gimplify_status
3643 gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
3645 tree *from_p = &GENERIC_TREE_OPERAND (*expr_p, 1);
3646 tree *to_p = &GENERIC_TREE_OPERAND (*expr_p, 0);
3647 enum gimplify_status ret = GS_UNHANDLED;
3649 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
3650 || TREE_CODE (*expr_p) == GIMPLE_MODIFY_STMT
3651 || TREE_CODE (*expr_p) == INIT_EXPR);
3653 /* See if any simplifications can be done based on what the RHS is. */
3654 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3655 want_value);
3656 if (ret != GS_UNHANDLED)
3657 return ret;
3659 /* For zero sized types only gimplify the left hand side and right hand
3660 side as statements and throw away the assignment. Do this after
3661 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
3662 types properly. */
3663 if (zero_sized_type (TREE_TYPE (*from_p)))
3665 gimplify_stmt (from_p);
3666 gimplify_stmt (to_p);
3667 append_to_statement_list (*from_p, pre_p);
3668 append_to_statement_list (*to_p, pre_p);
3669 *expr_p = NULL_TREE;
3670 return GS_ALL_DONE;
3673 /* If the value being copied is of variable width, compute the length
3674 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
3675 before gimplifying any of the operands so that we can resolve any
3676 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
3677 the size of the expression to be copied, not of the destination, so
3678 that is what we must here. */
3679 maybe_with_size_expr (from_p);
3681 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
3682 if (ret == GS_ERROR)
3683 return ret;
3685 ret = gimplify_expr (from_p, pre_p, post_p,
3686 rhs_predicate_for (*to_p), fb_rvalue);
3687 if (ret == GS_ERROR)
3688 return ret;
3690 /* Now see if the above changed *from_p to something we handle specially. */
3691 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3692 want_value);
3693 if (ret != GS_UNHANDLED)
3694 return ret;
3696 /* If we've got a variable sized assignment between two lvalues (i.e. does
3697 not involve a call), then we can make things a bit more straightforward
3698 by converting the assignment to memcpy or memset. */
3699 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
3701 tree from = TREE_OPERAND (*from_p, 0);
3702 tree size = TREE_OPERAND (*from_p, 1);
3704 if (TREE_CODE (from) == CONSTRUCTOR)
3705 return gimplify_modify_expr_to_memset (expr_p, size, want_value);
3706 if (is_gimple_addressable (from))
3708 *from_p = from;
3709 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value);
3713 /* Transform partial stores to non-addressable complex variables into
3714 total stores. This allows us to use real instead of virtual operands
3715 for these variables, which improves optimization. */
3716 if ((TREE_CODE (*to_p) == REALPART_EXPR
3717 || TREE_CODE (*to_p) == IMAGPART_EXPR)
3718 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
3719 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
3721 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
3723 /* If we've somehow already got an SSA_NAME on the LHS, then
3724 we're probably modified it twice. Not good. */
3725 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
3726 *to_p = make_ssa_name (*to_p, *expr_p);
3729 /* Try to alleviate the effects of the gimplification creating artificial
3730 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
3731 if (!gimplify_ctxp->into_ssa
3732 && DECL_P (*from_p) && DECL_IGNORED_P (*from_p)
3733 && DECL_P (*to_p) && !DECL_IGNORED_P (*to_p))
3735 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
3736 DECL_NAME (*from_p)
3737 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
3738 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
3739 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
3742 if (want_value)
3744 tree_to_gimple_tuple (expr_p);
3746 append_to_statement_list (*expr_p, pre_p);
3747 *expr_p = *to_p;
3748 return GS_OK;
3751 return GS_ALL_DONE;
3754 /* Gimplify a comparison between two variable-sized objects. Do this
3755 with a call to BUILT_IN_MEMCMP. */
3757 static enum gimplify_status
3758 gimplify_variable_sized_compare (tree *expr_p)
3760 tree op0 = TREE_OPERAND (*expr_p, 0);
3761 tree op1 = TREE_OPERAND (*expr_p, 1);
3762 tree t, arg, dest, src;
3764 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
3765 arg = unshare_expr (arg);
3766 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
3767 src = build_fold_addr_expr (op1);
3768 dest = build_fold_addr_expr (op0);
3769 t = implicit_built_in_decls[BUILT_IN_MEMCMP];
3770 t = build_call_expr (t, 3, dest, src, arg);
3771 *expr_p
3772 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
3774 return GS_OK;
3777 /* Gimplify a comparison between two aggregate objects of integral scalar
3778 mode as a comparison between the bitwise equivalent scalar values. */
3780 static enum gimplify_status
3781 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
3783 tree op0 = TREE_OPERAND (*expr_p, 0);
3784 tree op1 = TREE_OPERAND (*expr_p, 1);
3786 tree type = TREE_TYPE (op0);
3787 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
3789 op0 = fold_build1 (VIEW_CONVERT_EXPR, scalar_type, op0);
3790 op1 = fold_build1 (VIEW_CONVERT_EXPR, scalar_type, op1);
3792 *expr_p
3793 = fold_build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
3795 return GS_OK;
3798 /* Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions. EXPR_P
3799 points to the expression to gimplify.
3801 Expressions of the form 'a && b' are gimplified to:
3803 a && b ? true : false
3805 gimplify_cond_expr will do the rest.
3807 PRE_P points to the list where side effects that must happen before
3808 *EXPR_P should be stored. */
3810 static enum gimplify_status
3811 gimplify_boolean_expr (tree *expr_p)
3813 /* Preserve the original type of the expression. */
3814 tree type = TREE_TYPE (*expr_p);
3816 *expr_p = build3 (COND_EXPR, type, *expr_p,
3817 fold_convert (type, boolean_true_node),
3818 fold_convert (type, boolean_false_node));
3820 return GS_OK;
3823 /* Gimplifies an expression sequence. This function gimplifies each
3824 expression and re-writes the original expression with the last
3825 expression of the sequence in GIMPLE form.
3827 PRE_P points to the list where the side effects for all the
3828 expressions in the sequence will be emitted.
3830 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
3831 /* ??? Should rearrange to share the pre-queue with all the indirect
3832 invocations of gimplify_expr. Would probably save on creations
3833 of statement_list nodes. */
3835 static enum gimplify_status
3836 gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
3838 tree t = *expr_p;
3842 tree *sub_p = &TREE_OPERAND (t, 0);
3844 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
3845 gimplify_compound_expr (sub_p, pre_p, false);
3846 else
3847 gimplify_stmt (sub_p);
3848 append_to_statement_list (*sub_p, pre_p);
3850 t = TREE_OPERAND (t, 1);
3852 while (TREE_CODE (t) == COMPOUND_EXPR);
3854 *expr_p = t;
3855 if (want_value)
3856 return GS_OK;
3857 else
3859 gimplify_stmt (expr_p);
3860 return GS_ALL_DONE;
3864 /* Gimplifies a statement list. These may be created either by an
3865 enlightened front-end, or by shortcut_cond_expr. */
3867 static enum gimplify_status
3868 gimplify_statement_list (tree *expr_p, tree *pre_p)
3870 tree temp = voidify_wrapper_expr (*expr_p, NULL);
3872 tree_stmt_iterator i = tsi_start (*expr_p);
3874 while (!tsi_end_p (i))
3876 tree t;
3878 gimplify_stmt (tsi_stmt_ptr (i));
3880 t = tsi_stmt (i);
3881 if (t == NULL)
3882 tsi_delink (&i);
3883 else if (TREE_CODE (t) == STATEMENT_LIST)
3885 tsi_link_before (&i, t, TSI_SAME_STMT);
3886 tsi_delink (&i);
3888 else
3889 tsi_next (&i);
3892 if (temp)
3894 append_to_statement_list (*expr_p, pre_p);
3895 *expr_p = temp;
3896 return GS_OK;
3899 return GS_ALL_DONE;
3902 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
3903 gimplify. After gimplification, EXPR_P will point to a new temporary
3904 that holds the original value of the SAVE_EXPR node.
3906 PRE_P points to the list where side effects that must happen before
3907 *EXPR_P should be stored. */
3909 static enum gimplify_status
3910 gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
3912 enum gimplify_status ret = GS_ALL_DONE;
3913 tree val;
3915 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
3916 val = TREE_OPERAND (*expr_p, 0);
3918 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
3919 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
3921 /* The operand may be a void-valued expression such as SAVE_EXPRs
3922 generated by the Java frontend for class initialization. It is
3923 being executed only for its side-effects. */
3924 if (TREE_TYPE (val) == void_type_node)
3926 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3927 is_gimple_stmt, fb_none);
3928 append_to_statement_list (TREE_OPERAND (*expr_p, 0), pre_p);
3929 val = NULL;
3931 else
3932 val = get_initialized_tmp_var (val, pre_p, post_p);
3934 TREE_OPERAND (*expr_p, 0) = val;
3935 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
3938 *expr_p = val;
3940 return ret;
3943 /* Re-write the ADDR_EXPR node pointed to by EXPR_P
3945 unary_expr
3946 : ...
3947 | '&' varname
3950 PRE_P points to the list where side effects that must happen before
3951 *EXPR_P should be stored.
3953 POST_P points to the list where side effects that must happen after
3954 *EXPR_P should be stored. */
3956 static enum gimplify_status
3957 gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
3959 tree expr = *expr_p;
3960 tree op0 = TREE_OPERAND (expr, 0);
3961 enum gimplify_status ret;
3963 switch (TREE_CODE (op0))
3965 case INDIRECT_REF:
3966 case MISALIGNED_INDIRECT_REF:
3967 do_indirect_ref:
3968 /* Check if we are dealing with an expression of the form '&*ptr'.
3969 While the front end folds away '&*ptr' into 'ptr', these
3970 expressions may be generated internally by the compiler (e.g.,
3971 builtins like __builtin_va_end). */
3972 /* Caution: the silent array decomposition semantics we allow for
3973 ADDR_EXPR means we can't always discard the pair. */
3974 /* Gimplification of the ADDR_EXPR operand may drop
3975 cv-qualification conversions, so make sure we add them if
3976 needed. */
3978 tree op00 = TREE_OPERAND (op0, 0);
3979 tree t_expr = TREE_TYPE (expr);
3980 tree t_op00 = TREE_TYPE (op00);
3982 if (!useless_type_conversion_p (t_expr, t_op00))
3983 op00 = fold_convert (TREE_TYPE (expr), op00);
3984 *expr_p = op00;
3985 ret = GS_OK;
3987 break;
3989 case VIEW_CONVERT_EXPR:
3990 /* Take the address of our operand and then convert it to the type of
3991 this ADDR_EXPR.
3993 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3994 all clear. The impact of this transformation is even less clear. */
3996 /* If the operand is a useless conversion, look through it. Doing so
3997 guarantees that the ADDR_EXPR and its operand will remain of the
3998 same type. */
3999 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
4000 op0 = TREE_OPERAND (op0, 0);
4002 *expr_p = fold_convert (TREE_TYPE (expr),
4003 build_fold_addr_expr (TREE_OPERAND (op0, 0)));
4004 ret = GS_OK;
4005 break;
4007 default:
4008 /* We use fb_either here because the C frontend sometimes takes
4009 the address of a call that returns a struct; see
4010 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
4011 the implied temporary explicit. */
4013 /* Mark the RHS addressable. */
4014 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
4015 is_gimple_addressable, fb_either);
4016 if (ret != GS_ERROR)
4018 op0 = TREE_OPERAND (expr, 0);
4020 /* For various reasons, the gimplification of the expression
4021 may have made a new INDIRECT_REF. */
4022 if (TREE_CODE (op0) == INDIRECT_REF)
4023 goto do_indirect_ref;
4025 /* Make sure TREE_INVARIANT, TREE_CONSTANT, and TREE_SIDE_EFFECTS
4026 is set properly. */
4027 recompute_tree_invariant_for_addr_expr (expr);
4029 mark_addressable (TREE_OPERAND (expr, 0));
4031 break;
4034 return ret;
4037 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
4038 value; output operands should be a gimple lvalue. */
4040 static enum gimplify_status
4041 gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
4043 tree expr = *expr_p;
4044 int noutputs = list_length (ASM_OUTPUTS (expr));
4045 const char **oconstraints
4046 = (const char **) alloca ((noutputs) * sizeof (const char *));
4047 int i;
4048 tree link;
4049 const char *constraint;
4050 bool allows_mem, allows_reg, is_inout;
4051 enum gimplify_status ret, tret;
4053 ret = GS_ALL_DONE;
4054 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
4056 size_t constraint_len;
4057 oconstraints[i] = constraint
4058 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4059 constraint_len = strlen (constraint);
4060 if (constraint_len == 0)
4061 continue;
4063 parse_output_constraint (&constraint, i, 0, 0,
4064 &allows_mem, &allows_reg, &is_inout);
4066 if (!allows_reg && allows_mem)
4067 mark_addressable (TREE_VALUE (link));
4069 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4070 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
4071 fb_lvalue | fb_mayfail);
4072 if (tret == GS_ERROR)
4074 error ("invalid lvalue in asm output %d", i);
4075 ret = tret;
4078 if (is_inout)
4080 /* An input/output operand. To give the optimizers more
4081 flexibility, split it into separate input and output
4082 operands. */
4083 tree input;
4084 char buf[10];
4086 /* Turn the in/out constraint into an output constraint. */
4087 char *p = xstrdup (constraint);
4088 p[0] = '=';
4089 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
4091 /* And add a matching input constraint. */
4092 if (allows_reg)
4094 sprintf (buf, "%d", i);
4096 /* If there are multiple alternatives in the constraint,
4097 handle each of them individually. Those that allow register
4098 will be replaced with operand number, the others will stay
4099 unchanged. */
4100 if (strchr (p, ',') != NULL)
4102 size_t len = 0, buflen = strlen (buf);
4103 char *beg, *end, *str, *dst;
4105 for (beg = p + 1;;)
4107 end = strchr (beg, ',');
4108 if (end == NULL)
4109 end = strchr (beg, '\0');
4110 if ((size_t) (end - beg) < buflen)
4111 len += buflen + 1;
4112 else
4113 len += end - beg + 1;
4114 if (*end)
4115 beg = end + 1;
4116 else
4117 break;
4120 str = (char *) alloca (len);
4121 for (beg = p + 1, dst = str;;)
4123 const char *tem;
4124 bool mem_p, reg_p, inout_p;
4126 end = strchr (beg, ',');
4127 if (end)
4128 *end = '\0';
4129 beg[-1] = '=';
4130 tem = beg - 1;
4131 parse_output_constraint (&tem, i, 0, 0,
4132 &mem_p, &reg_p, &inout_p);
4133 if (dst != str)
4134 *dst++ = ',';
4135 if (reg_p)
4137 memcpy (dst, buf, buflen);
4138 dst += buflen;
4140 else
4142 if (end)
4143 len = end - beg;
4144 else
4145 len = strlen (beg);
4146 memcpy (dst, beg, len);
4147 dst += len;
4149 if (end)
4150 beg = end + 1;
4151 else
4152 break;
4154 *dst = '\0';
4155 input = build_string (dst - str, str);
4157 else
4158 input = build_string (strlen (buf), buf);
4160 else
4161 input = build_string (constraint_len - 1, constraint + 1);
4163 free (p);
4165 input = build_tree_list (build_tree_list (NULL_TREE, input),
4166 unshare_expr (TREE_VALUE (link)));
4167 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
4171 for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
4173 constraint
4174 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4175 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
4176 oconstraints, &allows_mem, &allows_reg);
4178 /* If we can't make copies, we can only accept memory. */
4179 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
4181 if (allows_mem)
4182 allows_reg = 0;
4183 else
4185 error ("impossible constraint in %<asm%>");
4186 error ("non-memory input %d must stay in memory", i);
4187 return GS_ERROR;
4191 /* If the operand is a memory input, it should be an lvalue. */
4192 if (!allows_reg && allows_mem)
4194 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4195 is_gimple_lvalue, fb_lvalue | fb_mayfail);
4196 mark_addressable (TREE_VALUE (link));
4197 if (tret == GS_ERROR)
4199 error ("memory input %d is not directly addressable", i);
4200 ret = tret;
4203 else
4205 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4206 is_gimple_asm_val, fb_rvalue);
4207 if (tret == GS_ERROR)
4208 ret = tret;
4212 return ret;
4215 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
4216 WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
4217 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
4218 return to this function.
4220 FIXME should we complexify the prequeue handling instead? Or use flags
4221 for all the cleanups and let the optimizer tighten them up? The current
4222 code seems pretty fragile; it will break on a cleanup within any
4223 non-conditional nesting. But any such nesting would be broken, anyway;
4224 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
4225 and continues out of it. We can do that at the RTL level, though, so
4226 having an optimizer to tighten up try/finally regions would be a Good
4227 Thing. */
4229 static enum gimplify_status
4230 gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
4232 tree_stmt_iterator iter;
4233 tree body;
4235 tree temp = voidify_wrapper_expr (*expr_p, NULL);
4237 /* We only care about the number of conditions between the innermost
4238 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
4239 any cleanups collected outside the CLEANUP_POINT_EXPR. */
4240 int old_conds = gimplify_ctxp->conditions;
4241 tree old_cleanups = gimplify_ctxp->conditional_cleanups;
4242 gimplify_ctxp->conditions = 0;
4243 gimplify_ctxp->conditional_cleanups = NULL_TREE;
4245 body = TREE_OPERAND (*expr_p, 0);
4246 gimplify_to_stmt_list (&body);
4248 gimplify_ctxp->conditions = old_conds;
4249 gimplify_ctxp->conditional_cleanups = old_cleanups;
4251 for (iter = tsi_start (body); !tsi_end_p (iter); )
4253 tree *wce_p = tsi_stmt_ptr (iter);
4254 tree wce = *wce_p;
4256 if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
4258 if (tsi_one_before_end_p (iter))
4260 tsi_link_before (&iter, TREE_OPERAND (wce, 0), TSI_SAME_STMT);
4261 tsi_delink (&iter);
4262 break;
4264 else
4266 tree sl, tfe;
4267 enum tree_code code;
4269 if (CLEANUP_EH_ONLY (wce))
4270 code = TRY_CATCH_EXPR;
4271 else
4272 code = TRY_FINALLY_EXPR;
4274 sl = tsi_split_statement_list_after (&iter);
4275 tfe = build2 (code, void_type_node, sl, NULL_TREE);
4276 append_to_statement_list (TREE_OPERAND (wce, 0),
4277 &TREE_OPERAND (tfe, 1));
4278 *wce_p = tfe;
4279 iter = tsi_start (sl);
4282 else
4283 tsi_next (&iter);
4286 if (temp)
4288 *expr_p = temp;
4289 append_to_statement_list (body, pre_p);
4290 return GS_OK;
4292 else
4294 *expr_p = body;
4295 return GS_ALL_DONE;
4299 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
4300 is the cleanup action required. */
4302 static void
4303 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, tree *pre_p)
4305 tree wce;
4307 /* Errors can result in improperly nested cleanups. Which results in
4308 confusion when trying to resolve the WITH_CLEANUP_EXPR. */
4309 if (errorcount || sorrycount)
4310 return;
4312 if (gimple_conditional_context ())
4314 /* If we're in a conditional context, this is more complex. We only
4315 want to run the cleanup if we actually ran the initialization that
4316 necessitates it, but we want to run it after the end of the
4317 conditional context. So we wrap the try/finally around the
4318 condition and use a flag to determine whether or not to actually
4319 run the destructor. Thus
4321 test ? f(A()) : 0
4323 becomes (approximately)
4325 flag = 0;
4326 try {
4327 if (test) { A::A(temp); flag = 1; val = f(temp); }
4328 else { val = 0; }
4329 } finally {
4330 if (flag) A::~A(temp);
4335 tree flag = create_tmp_var (boolean_type_node, "cleanup");
4336 tree ffalse = build_gimple_modify_stmt (flag, boolean_false_node);
4337 tree ftrue = build_gimple_modify_stmt (flag, boolean_true_node);
4338 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
4339 wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4340 append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
4341 append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
4342 append_to_statement_list (ftrue, pre_p);
4344 /* Because of this manipulation, and the EH edges that jump
4345 threading cannot redirect, the temporary (VAR) will appear
4346 to be used uninitialized. Don't warn. */
4347 TREE_NO_WARNING (var) = 1;
4349 else
4351 wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4352 CLEANUP_EH_ONLY (wce) = eh_only;
4353 append_to_statement_list (wce, pre_p);
4356 gimplify_stmt (&TREE_OPERAND (wce, 0));
4359 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
4361 static enum gimplify_status
4362 gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
4364 tree targ = *expr_p;
4365 tree temp = TARGET_EXPR_SLOT (targ);
4366 tree init = TARGET_EXPR_INITIAL (targ);
4367 enum gimplify_status ret;
4369 if (init)
4371 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
4372 to the temps list. */
4373 gimple_add_tmp_var (temp);
4375 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
4376 expression is supposed to initialize the slot. */
4377 if (VOID_TYPE_P (TREE_TYPE (init)))
4378 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
4379 else
4381 init = build2 (INIT_EXPR, void_type_node, temp, init);
4382 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
4383 fb_none);
4385 if (ret == GS_ERROR)
4387 /* PR c++/28266 Make sure this is expanded only once. */
4388 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4389 return GS_ERROR;
4391 append_to_statement_list (init, pre_p);
4393 /* If needed, push the cleanup for the temp. */
4394 if (TARGET_EXPR_CLEANUP (targ))
4396 gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
4397 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
4398 CLEANUP_EH_ONLY (targ), pre_p);
4401 /* Only expand this once. */
4402 TREE_OPERAND (targ, 3) = init;
4403 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4405 else
4406 /* We should have expanded this before. */
4407 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
4409 *expr_p = temp;
4410 return GS_OK;
4413 /* Gimplification of expression trees. */
4415 /* Gimplify an expression which appears at statement context; usually, this
4416 means replacing it with a suitably gimple STATEMENT_LIST. */
4418 void
4419 gimplify_stmt (tree *stmt_p)
4421 gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
4424 /* Similarly, but force the result to be a STATEMENT_LIST. */
4426 void
4427 gimplify_to_stmt_list (tree *stmt_p)
4429 gimplify_stmt (stmt_p);
4430 if (!*stmt_p)
4431 *stmt_p = alloc_stmt_list ();
4432 else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
4434 tree t = *stmt_p;
4435 *stmt_p = alloc_stmt_list ();
4436 append_to_statement_list (t, stmt_p);
4441 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
4442 to CTX. If entries already exist, force them to be some flavor of private.
4443 If there is no enclosing parallel, do nothing. */
4445 void
4446 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
4448 splay_tree_node n;
4450 if (decl == NULL || !DECL_P (decl))
4451 return;
4455 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4456 if (n != NULL)
4458 if (n->value & GOVD_SHARED)
4459 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
4460 else
4461 return;
4463 else if (ctx->is_parallel)
4464 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
4466 ctx = ctx->outer_context;
4468 while (ctx);
4471 /* Similarly for each of the type sizes of TYPE. */
4473 static void
4474 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
4476 if (type == NULL || type == error_mark_node)
4477 return;
4478 type = TYPE_MAIN_VARIANT (type);
4480 if (pointer_set_insert (ctx->privatized_types, type))
4481 return;
4483 switch (TREE_CODE (type))
4485 case INTEGER_TYPE:
4486 case ENUMERAL_TYPE:
4487 case BOOLEAN_TYPE:
4488 case REAL_TYPE:
4489 case FIXED_POINT_TYPE:
4490 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
4491 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
4492 break;
4494 case ARRAY_TYPE:
4495 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4496 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
4497 break;
4499 case RECORD_TYPE:
4500 case UNION_TYPE:
4501 case QUAL_UNION_TYPE:
4503 tree field;
4504 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4505 if (TREE_CODE (field) == FIELD_DECL)
4507 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
4508 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
4511 break;
4513 case POINTER_TYPE:
4514 case REFERENCE_TYPE:
4515 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4516 break;
4518 default:
4519 break;
4522 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
4523 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
4524 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
4527 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
4529 static void
4530 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
4532 splay_tree_node n;
4533 unsigned int nflags;
4534 tree t;
4536 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4537 return;
4539 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
4540 there are constructors involved somewhere. */
4541 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
4542 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
4543 flags |= GOVD_SEEN;
4545 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4546 if (n != NULL)
4548 /* We shouldn't be re-adding the decl with the same data
4549 sharing class. */
4550 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
4551 /* The only combination of data sharing classes we should see is
4552 FIRSTPRIVATE and LASTPRIVATE. */
4553 nflags = n->value | flags;
4554 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
4555 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
4556 n->value = nflags;
4557 return;
4560 /* When adding a variable-sized variable, we have to handle all sorts
4561 of additional bits of data: the pointer replacement variable, and
4562 the parameters of the type. */
4563 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
4565 /* Add the pointer replacement variable as PRIVATE if the variable
4566 replacement is private, else FIRSTPRIVATE since we'll need the
4567 address of the original variable either for SHARED, or for the
4568 copy into or out of the context. */
4569 if (!(flags & GOVD_LOCAL))
4571 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
4572 nflags |= flags & GOVD_SEEN;
4573 t = DECL_VALUE_EXPR (decl);
4574 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
4575 t = TREE_OPERAND (t, 0);
4576 gcc_assert (DECL_P (t));
4577 omp_add_variable (ctx, t, nflags);
4580 /* Add all of the variable and type parameters (which should have
4581 been gimplified to a formal temporary) as FIRSTPRIVATE. */
4582 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
4583 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
4584 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4586 /* The variable-sized variable itself is never SHARED, only some form
4587 of PRIVATE. The sharing would take place via the pointer variable
4588 which we remapped above. */
4589 if (flags & GOVD_SHARED)
4590 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
4591 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
4593 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
4594 alloca statement we generate for the variable, so make sure it
4595 is available. This isn't automatically needed for the SHARED
4596 case, since we won't be allocating local storage then.
4597 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
4598 in this case omp_notice_variable will be called later
4599 on when it is gimplified. */
4600 else if (! (flags & GOVD_LOCAL))
4601 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
4603 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
4605 gcc_assert ((flags & GOVD_LOCAL) == 0);
4606 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4608 /* Similar to the direct variable sized case above, we'll need the
4609 size of references being privatized. */
4610 if ((flags & GOVD_SHARED) == 0)
4612 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
4613 if (TREE_CODE (t) != INTEGER_CST)
4614 omp_notice_variable (ctx, t, true);
4618 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
4621 /* Record the fact that DECL was used within the OpenMP context CTX.
4622 IN_CODE is true when real code uses DECL, and false when we should
4623 merely emit default(none) errors. Return true if DECL is going to
4624 be remapped and thus DECL shouldn't be gimplified into its
4625 DECL_VALUE_EXPR (if any). */
4627 static bool
4628 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
4630 splay_tree_node n;
4631 unsigned flags = in_code ? GOVD_SEEN : 0;
4632 bool ret = false, shared;
4634 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4635 return false;
4637 /* Threadprivate variables are predetermined. */
4638 if (is_global_var (decl))
4640 if (DECL_THREAD_LOCAL_P (decl))
4641 return false;
4643 if (DECL_HAS_VALUE_EXPR_P (decl))
4645 tree value = get_base_address (DECL_VALUE_EXPR (decl));
4647 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
4648 return false;
4652 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4653 if (n == NULL)
4655 enum omp_clause_default_kind default_kind, kind;
4657 if (!ctx->is_parallel)
4658 goto do_outer;
4660 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
4661 remapped firstprivate instead of shared. To some extent this is
4662 addressed in omp_firstprivatize_type_sizes, but not effectively. */
4663 default_kind = ctx->default_kind;
4664 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
4665 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
4666 default_kind = kind;
4668 switch (default_kind)
4670 case OMP_CLAUSE_DEFAULT_NONE:
4671 error ("%qs not specified in enclosing parallel",
4672 IDENTIFIER_POINTER (DECL_NAME (decl)));
4673 error ("%Henclosing parallel", &ctx->location);
4674 /* FALLTHRU */
4675 case OMP_CLAUSE_DEFAULT_SHARED:
4676 flags |= GOVD_SHARED;
4677 break;
4678 case OMP_CLAUSE_DEFAULT_PRIVATE:
4679 flags |= GOVD_PRIVATE;
4680 break;
4681 default:
4682 gcc_unreachable ();
4685 omp_add_variable (ctx, decl, flags);
4687 shared = (flags & GOVD_SHARED) != 0;
4688 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4689 goto do_outer;
4692 shared = ((flags | n->value) & GOVD_SHARED) != 0;
4693 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4695 /* If nothing changed, there's nothing left to do. */
4696 if ((n->value & flags) == flags)
4697 return ret;
4698 flags |= n->value;
4699 n->value = flags;
4701 do_outer:
4702 /* If the variable is private in the current context, then we don't
4703 need to propagate anything to an outer context. */
4704 if (flags & GOVD_PRIVATE)
4705 return ret;
4706 if (ctx->outer_context
4707 && omp_notice_variable (ctx->outer_context, decl, in_code))
4708 return true;
4709 return ret;
4712 /* Verify that DECL is private within CTX. If there's specific information
4713 to the contrary in the innermost scope, generate an error. */
4715 static bool
4716 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
4718 splay_tree_node n;
4720 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4721 if (n != NULL)
4723 if (n->value & GOVD_SHARED)
4725 if (ctx == gimplify_omp_ctxp)
4727 error ("iteration variable %qs should be private",
4728 IDENTIFIER_POINTER (DECL_NAME (decl)));
4729 n->value = GOVD_PRIVATE;
4730 return true;
4732 else
4733 return false;
4735 else if ((n->value & GOVD_EXPLICIT) != 0
4736 && (ctx == gimplify_omp_ctxp
4737 || (ctx->is_combined_parallel
4738 && gimplify_omp_ctxp->outer_context == ctx)))
4740 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
4741 error ("iteration variable %qs should not be firstprivate",
4742 IDENTIFIER_POINTER (DECL_NAME (decl)));
4743 else if ((n->value & GOVD_REDUCTION) != 0)
4744 error ("iteration variable %qs should not be reduction",
4745 IDENTIFIER_POINTER (DECL_NAME (decl)));
4747 return true;
4750 if (ctx->is_parallel)
4751 return false;
4752 else if (ctx->outer_context)
4753 return omp_is_private (ctx->outer_context, decl);
4754 else
4755 return !is_global_var (decl);
4758 /* Return true if DECL is private within a parallel region
4759 that binds to the current construct's context or in parallel
4760 region's REDUCTION clause. */
4762 static bool
4763 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
4765 splay_tree_node n;
4769 ctx = ctx->outer_context;
4770 if (ctx == NULL)
4771 return !(is_global_var (decl)
4772 /* References might be private, but might be shared too. */
4773 || lang_hooks.decls.omp_privatize_by_reference (decl));
4775 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4776 if (n != NULL)
4777 return (n->value & GOVD_SHARED) == 0;
4779 while (!ctx->is_parallel);
4780 return false;
4783 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
4784 and previous omp contexts. */
4786 static void
4787 gimplify_scan_omp_clauses (tree *list_p, tree *pre_p, bool in_parallel,
4788 bool in_combined_parallel)
4790 struct gimplify_omp_ctx *ctx, *outer_ctx;
4791 tree c;
4793 ctx = new_omp_context (in_parallel, in_combined_parallel);
4794 outer_ctx = ctx->outer_context;
4796 while ((c = *list_p) != NULL)
4798 enum gimplify_status gs;
4799 bool remove = false;
4800 bool notice_outer = true;
4801 const char *check_non_private = NULL;
4802 unsigned int flags;
4803 tree decl;
4805 switch (OMP_CLAUSE_CODE (c))
4807 case OMP_CLAUSE_PRIVATE:
4808 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
4809 notice_outer = false;
4810 goto do_add;
4811 case OMP_CLAUSE_SHARED:
4812 flags = GOVD_SHARED | GOVD_EXPLICIT;
4813 goto do_add;
4814 case OMP_CLAUSE_FIRSTPRIVATE:
4815 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
4816 check_non_private = "firstprivate";
4817 goto do_add;
4818 case OMP_CLAUSE_LASTPRIVATE:
4819 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
4820 check_non_private = "lastprivate";
4821 goto do_add;
4822 case OMP_CLAUSE_REDUCTION:
4823 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
4824 check_non_private = "reduction";
4825 goto do_add;
4827 do_add:
4828 decl = OMP_CLAUSE_DECL (c);
4829 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4831 remove = true;
4832 break;
4834 omp_add_variable (ctx, decl, flags);
4835 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
4836 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
4838 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
4839 GOVD_LOCAL | GOVD_SEEN);
4840 gimplify_omp_ctxp = ctx;
4841 push_gimplify_context ();
4842 gimplify_stmt (&OMP_CLAUSE_REDUCTION_INIT (c));
4843 pop_gimplify_context (OMP_CLAUSE_REDUCTION_INIT (c));
4844 push_gimplify_context ();
4845 gimplify_stmt (&OMP_CLAUSE_REDUCTION_MERGE (c));
4846 pop_gimplify_context (OMP_CLAUSE_REDUCTION_MERGE (c));
4847 gimplify_omp_ctxp = outer_ctx;
4849 if (notice_outer)
4850 goto do_notice;
4851 break;
4853 case OMP_CLAUSE_COPYIN:
4854 case OMP_CLAUSE_COPYPRIVATE:
4855 decl = OMP_CLAUSE_DECL (c);
4856 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4858 remove = true;
4859 break;
4861 do_notice:
4862 if (outer_ctx)
4863 omp_notice_variable (outer_ctx, decl, true);
4864 if (check_non_private
4865 && !in_parallel
4866 && omp_check_private (ctx, decl))
4868 error ("%s variable %qs is private in outer context",
4869 check_non_private, IDENTIFIER_POINTER (DECL_NAME (decl)));
4870 remove = true;
4872 break;
4874 case OMP_CLAUSE_IF:
4875 OMP_CLAUSE_OPERAND (c, 0)
4876 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
4877 /* Fall through. */
4879 case OMP_CLAUSE_SCHEDULE:
4880 case OMP_CLAUSE_NUM_THREADS:
4881 gs = gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
4882 is_gimple_val, fb_rvalue);
4883 if (gs == GS_ERROR)
4884 remove = true;
4885 break;
4887 case OMP_CLAUSE_NOWAIT:
4888 case OMP_CLAUSE_ORDERED:
4889 break;
4891 case OMP_CLAUSE_DEFAULT:
4892 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
4893 break;
4895 default:
4896 gcc_unreachable ();
4899 if (remove)
4900 *list_p = OMP_CLAUSE_CHAIN (c);
4901 else
4902 list_p = &OMP_CLAUSE_CHAIN (c);
4905 gimplify_omp_ctxp = ctx;
4908 /* For all variables that were not actually used within the context,
4909 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
4911 static int
4912 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
4914 tree *list_p = (tree *) data;
4915 tree decl = (tree) n->key;
4916 unsigned flags = n->value;
4917 enum omp_clause_code code;
4918 tree clause;
4919 bool private_debug;
4921 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
4922 return 0;
4923 if ((flags & GOVD_SEEN) == 0)
4924 return 0;
4925 if (flags & GOVD_DEBUG_PRIVATE)
4927 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
4928 private_debug = true;
4930 else
4931 private_debug
4932 = lang_hooks.decls.omp_private_debug_clause (decl,
4933 !!(flags & GOVD_SHARED));
4934 if (private_debug)
4935 code = OMP_CLAUSE_PRIVATE;
4936 else if (flags & GOVD_SHARED)
4938 if (is_global_var (decl))
4940 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
4941 while (ctx != NULL)
4943 splay_tree_node on
4944 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4945 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
4946 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
4947 break;
4948 ctx = ctx->outer_context;
4950 if (ctx == NULL)
4951 return 0;
4953 code = OMP_CLAUSE_SHARED;
4955 else if (flags & GOVD_PRIVATE)
4956 code = OMP_CLAUSE_PRIVATE;
4957 else if (flags & GOVD_FIRSTPRIVATE)
4958 code = OMP_CLAUSE_FIRSTPRIVATE;
4959 else
4960 gcc_unreachable ();
4962 clause = build_omp_clause (code);
4963 OMP_CLAUSE_DECL (clause) = decl;
4964 OMP_CLAUSE_CHAIN (clause) = *list_p;
4965 if (private_debug)
4966 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
4967 *list_p = clause;
4969 return 0;
4972 static void
4973 gimplify_adjust_omp_clauses (tree *list_p)
4975 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
4976 tree c, decl;
4978 while ((c = *list_p) != NULL)
4980 splay_tree_node n;
4981 bool remove = false;
4983 switch (OMP_CLAUSE_CODE (c))
4985 case OMP_CLAUSE_PRIVATE:
4986 case OMP_CLAUSE_SHARED:
4987 case OMP_CLAUSE_FIRSTPRIVATE:
4988 decl = OMP_CLAUSE_DECL (c);
4989 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4990 remove = !(n->value & GOVD_SEEN);
4991 if (! remove)
4993 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
4994 if ((n->value & GOVD_DEBUG_PRIVATE)
4995 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
4997 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
4998 || ((n->value & GOVD_DATA_SHARE_CLASS)
4999 == GOVD_PRIVATE));
5000 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
5001 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
5004 break;
5006 case OMP_CLAUSE_LASTPRIVATE:
5007 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
5008 accurately reflect the presence of a FIRSTPRIVATE clause. */
5009 decl = OMP_CLAUSE_DECL (c);
5010 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5011 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
5012 = (n->value & GOVD_FIRSTPRIVATE) != 0;
5013 break;
5015 case OMP_CLAUSE_REDUCTION:
5016 case OMP_CLAUSE_COPYIN:
5017 case OMP_CLAUSE_COPYPRIVATE:
5018 case OMP_CLAUSE_IF:
5019 case OMP_CLAUSE_NUM_THREADS:
5020 case OMP_CLAUSE_SCHEDULE:
5021 case OMP_CLAUSE_NOWAIT:
5022 case OMP_CLAUSE_ORDERED:
5023 case OMP_CLAUSE_DEFAULT:
5024 break;
5026 default:
5027 gcc_unreachable ();
5030 if (remove)
5031 *list_p = OMP_CLAUSE_CHAIN (c);
5032 else
5033 list_p = &OMP_CLAUSE_CHAIN (c);
5036 /* Add in any implicit data sharing. */
5037 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
5039 gimplify_omp_ctxp = ctx->outer_context;
5040 delete_omp_context (ctx);
5043 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
5044 gimplification of the body, as well as scanning the body for used
5045 variables. We need to do this scan now, because variable-sized
5046 decls will be decomposed during gimplification. */
5048 static enum gimplify_status
5049 gimplify_omp_parallel (tree *expr_p, tree *pre_p)
5051 tree expr = *expr_p;
5053 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p, true,
5054 OMP_PARALLEL_COMBINED (expr));
5056 push_gimplify_context ();
5058 gimplify_stmt (&OMP_PARALLEL_BODY (expr));
5060 if (TREE_CODE (OMP_PARALLEL_BODY (expr)) == BIND_EXPR)
5061 pop_gimplify_context (OMP_PARALLEL_BODY (expr));
5062 else
5063 pop_gimplify_context (NULL_TREE);
5065 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
5067 return GS_ALL_DONE;
5070 /* Gimplify the gross structure of an OMP_FOR statement. */
5072 static enum gimplify_status
5073 gimplify_omp_for (tree *expr_p, tree *pre_p)
5075 tree for_stmt, decl, t;
5076 enum gimplify_status ret = GS_OK;
5078 for_stmt = *expr_p;
5080 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p, false, false);
5082 t = OMP_FOR_INIT (for_stmt);
5083 gcc_assert (TREE_CODE (t) == MODIFY_EXPR
5084 || TREE_CODE (t) == GIMPLE_MODIFY_STMT);
5085 decl = GENERIC_TREE_OPERAND (t, 0);
5086 gcc_assert (DECL_P (decl));
5087 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl)));
5089 /* Make sure the iteration variable is private. */
5090 if (omp_is_private (gimplify_omp_ctxp, decl))
5091 omp_notice_variable (gimplify_omp_ctxp, decl, true);
5092 else
5093 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
5095 ret |= gimplify_expr (&GENERIC_TREE_OPERAND (t, 1),
5096 &OMP_FOR_PRE_BODY (for_stmt),
5097 NULL, is_gimple_val, fb_rvalue);
5099 tree_to_gimple_tuple (&OMP_FOR_INIT (for_stmt));
5101 t = OMP_FOR_COND (for_stmt);
5102 gcc_assert (COMPARISON_CLASS_P (t));
5103 gcc_assert (GENERIC_TREE_OPERAND (t, 0) == decl);
5105 ret |= gimplify_expr (&GENERIC_TREE_OPERAND (t, 1),
5106 &OMP_FOR_PRE_BODY (for_stmt),
5107 NULL, is_gimple_val, fb_rvalue);
5109 tree_to_gimple_tuple (&OMP_FOR_INCR (for_stmt));
5110 t = OMP_FOR_INCR (for_stmt);
5111 switch (TREE_CODE (t))
5113 case PREINCREMENT_EXPR:
5114 case POSTINCREMENT_EXPR:
5115 t = build_int_cst (TREE_TYPE (decl), 1);
5116 t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
5117 t = build_gimple_modify_stmt (decl, t);
5118 OMP_FOR_INCR (for_stmt) = t;
5119 break;
5121 case PREDECREMENT_EXPR:
5122 case POSTDECREMENT_EXPR:
5123 t = build_int_cst (TREE_TYPE (decl), -1);
5124 t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
5125 t = build_gimple_modify_stmt (decl, t);
5126 OMP_FOR_INCR (for_stmt) = t;
5127 break;
5129 case GIMPLE_MODIFY_STMT:
5130 gcc_assert (GIMPLE_STMT_OPERAND (t, 0) == decl);
5131 t = GIMPLE_STMT_OPERAND (t, 1);
5132 switch (TREE_CODE (t))
5134 case PLUS_EXPR:
5135 if (TREE_OPERAND (t, 1) == decl)
5137 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
5138 TREE_OPERAND (t, 0) = decl;
5139 break;
5141 case MINUS_EXPR:
5142 gcc_assert (TREE_OPERAND (t, 0) == decl);
5143 break;
5144 default:
5145 gcc_unreachable ();
5148 ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
5149 NULL, is_gimple_val, fb_rvalue);
5150 break;
5152 default:
5153 gcc_unreachable ();
5156 gimplify_to_stmt_list (&OMP_FOR_BODY (for_stmt));
5157 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
5159 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
5162 /* Gimplify the gross structure of other OpenMP worksharing constructs.
5163 In particular, OMP_SECTIONS and OMP_SINGLE. */
5165 static enum gimplify_status
5166 gimplify_omp_workshare (tree *expr_p, tree *pre_p)
5168 tree stmt = *expr_p;
5170 gimplify_scan_omp_clauses (&OMP_CLAUSES (stmt), pre_p, false, false);
5171 gimplify_to_stmt_list (&OMP_BODY (stmt));
5172 gimplify_adjust_omp_clauses (&OMP_CLAUSES (stmt));
5174 return GS_ALL_DONE;
5177 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
5178 stabilized the lhs of the atomic operation as *ADDR. Return true if
5179 EXPR is this stabilized form. */
5181 static bool
5182 goa_lhs_expr_p (const_tree expr, const_tree addr)
5184 /* Also include casts to other type variants. The C front end is fond
5185 of adding these for e.g. volatile variables. This is like
5186 STRIP_TYPE_NOPS but includes the main variant lookup. */
5187 while ((TREE_CODE (expr) == NOP_EXPR
5188 || TREE_CODE (expr) == CONVERT_EXPR
5189 || TREE_CODE (expr) == NON_LVALUE_EXPR)
5190 && TREE_OPERAND (expr, 0) != error_mark_node
5191 && (TYPE_MAIN_VARIANT (TREE_TYPE (expr))
5192 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (expr, 0)))))
5193 expr = TREE_OPERAND (expr, 0);
5195 if (TREE_CODE (expr) == INDIRECT_REF && TREE_OPERAND (expr, 0) == addr)
5196 return true;
5197 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
5198 return true;
5199 return false;
5202 /* A subroutine of gimplify_omp_atomic. Attempt to implement the atomic
5203 operation as a __sync_fetch_and_op builtin. INDEX is log2 of the
5204 size of the data type, and thus usable to find the index of the builtin
5205 decl. Returns GS_UNHANDLED if the expression is not of the proper form. */
5207 static enum gimplify_status
5208 gimplify_omp_atomic_fetch_op (tree *expr_p, tree addr, tree rhs, int index)
5210 enum built_in_function base;
5211 tree decl, itype;
5212 enum insn_code *optab;
5214 /* Check for one of the supported fetch-op operations. */
5215 switch (TREE_CODE (rhs))
5217 case POINTER_PLUS_EXPR:
5218 case PLUS_EXPR:
5219 base = BUILT_IN_FETCH_AND_ADD_N;
5220 optab = sync_add_optab;
5221 break;
5222 case MINUS_EXPR:
5223 base = BUILT_IN_FETCH_AND_SUB_N;
5224 optab = sync_add_optab;
5225 break;
5226 case BIT_AND_EXPR:
5227 base = BUILT_IN_FETCH_AND_AND_N;
5228 optab = sync_and_optab;
5229 break;
5230 case BIT_IOR_EXPR:
5231 base = BUILT_IN_FETCH_AND_OR_N;
5232 optab = sync_ior_optab;
5233 break;
5234 case BIT_XOR_EXPR:
5235 base = BUILT_IN_FETCH_AND_XOR_N;
5236 optab = sync_xor_optab;
5237 break;
5238 default:
5239 return GS_UNHANDLED;
5242 /* Make sure the expression is of the proper form. */
5243 if (goa_lhs_expr_p (TREE_OPERAND (rhs, 0), addr))
5244 rhs = TREE_OPERAND (rhs, 1);
5245 else if (commutative_tree_code (TREE_CODE (rhs))
5246 && goa_lhs_expr_p (TREE_OPERAND (rhs, 1), addr))
5247 rhs = TREE_OPERAND (rhs, 0);
5248 else
5249 return GS_UNHANDLED;
5251 decl = built_in_decls[base + index + 1];
5252 itype = TREE_TYPE (TREE_TYPE (decl));
5254 if (optab[TYPE_MODE (itype)] == CODE_FOR_nothing)
5255 return GS_UNHANDLED;
5257 *expr_p = build_call_expr (decl, 2, addr, fold_convert (itype, rhs));
5258 return GS_OK;
5261 /* A subroutine of gimplify_omp_atomic_pipeline. Walk *EXPR_P and replace
5262 appearances of *LHS_ADDR with LHS_VAR. If an expression does not involve
5263 the lhs, evaluate it into a temporary. Return 1 if the lhs appeared as
5264 a subexpression, 0 if it did not, or -1 if an error was encountered. */
5266 static int
5267 goa_stabilize_expr (tree *expr_p, tree *pre_p, tree lhs_addr, tree lhs_var)
5269 tree expr = *expr_p;
5270 int saw_lhs;
5272 if (goa_lhs_expr_p (expr, lhs_addr))
5274 *expr_p = lhs_var;
5275 return 1;
5277 if (is_gimple_val (expr))
5278 return 0;
5280 saw_lhs = 0;
5281 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
5283 case tcc_binary:
5284 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
5285 lhs_addr, lhs_var);
5286 case tcc_unary:
5287 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
5288 lhs_addr, lhs_var);
5289 break;
5290 default:
5291 break;
5294 if (saw_lhs == 0)
5296 enum gimplify_status gs;
5297 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
5298 if (gs != GS_ALL_DONE)
5299 saw_lhs = -1;
5302 return saw_lhs;
5305 /* A subroutine of gimplify_omp_atomic. Implement the atomic operation as:
5307 oldval = *addr;
5308 repeat:
5309 newval = rhs; // with oldval replacing *addr in rhs
5310 oldval = __sync_val_compare_and_swap (addr, oldval, newval);
5311 if (oldval != newval)
5312 goto repeat;
5314 INDEX is log2 of the size of the data type, and thus usable to find the
5315 index of the builtin decl. */
5317 static enum gimplify_status
5318 gimplify_omp_atomic_pipeline (tree *expr_p, tree *pre_p, tree addr,
5319 tree rhs, int index)
5321 tree oldval, oldival, oldival2, newval, newival, label;
5322 tree type, itype, cmpxchg, x, iaddr;
5324 cmpxchg = built_in_decls[BUILT_IN_VAL_COMPARE_AND_SWAP_N + index + 1];
5325 type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5326 itype = TREE_TYPE (TREE_TYPE (cmpxchg));
5328 if (sync_compare_and_swap[TYPE_MODE (itype)] == CODE_FOR_nothing)
5329 return GS_UNHANDLED;
5331 oldval = create_tmp_var (type, NULL);
5332 newval = create_tmp_var (type, NULL);
5334 /* Precompute as much of RHS as possible. In the same walk, replace
5335 occurrences of the lhs value with our temporary. */
5336 if (goa_stabilize_expr (&rhs, pre_p, addr, oldval) < 0)
5337 return GS_ERROR;
5339 x = build_fold_indirect_ref (addr);
5340 x = build_gimple_modify_stmt (oldval, x);
5341 gimplify_and_add (x, pre_p);
5343 /* For floating-point values, we'll need to view-convert them to integers
5344 so that we can perform the atomic compare and swap. Simplify the
5345 following code by always setting up the "i"ntegral variables. */
5346 if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5348 oldival = oldval;
5349 newival = newval;
5350 iaddr = addr;
5352 else
5354 oldival = create_tmp_var (itype, NULL);
5355 newival = create_tmp_var (itype, NULL);
5357 x = build1 (VIEW_CONVERT_EXPR, itype, oldval);
5358 x = build_gimple_modify_stmt (oldival, x);
5359 gimplify_and_add (x, pre_p);
5360 iaddr = fold_convert (build_pointer_type (itype), addr);
5363 oldival2 = create_tmp_var (itype, NULL);
5365 label = create_artificial_label ();
5366 x = build1 (LABEL_EXPR, void_type_node, label);
5367 gimplify_and_add (x, pre_p);
5369 x = build_gimple_modify_stmt (newval, rhs);
5370 gimplify_and_add (x, pre_p);
5372 if (newval != newival)
5374 x = build1 (VIEW_CONVERT_EXPR, itype, newval);
5375 x = build_gimple_modify_stmt (newival, x);
5376 gimplify_and_add (x, pre_p);
5379 x = build_gimple_modify_stmt (oldival2, fold_convert (itype, oldival));
5380 gimplify_and_add (x, pre_p);
5382 x = build_call_expr (cmpxchg, 3, iaddr, fold_convert (itype, oldival),
5383 fold_convert (itype, newival));
5384 if (oldval == oldival)
5385 x = fold_convert (type, x);
5386 x = build_gimple_modify_stmt (oldival, x);
5387 gimplify_and_add (x, pre_p);
5389 /* For floating point, be prepared for the loop backedge. */
5390 if (oldval != oldival)
5392 x = build1 (VIEW_CONVERT_EXPR, type, oldival);
5393 x = build_gimple_modify_stmt (oldval, x);
5394 gimplify_and_add (x, pre_p);
5397 /* Note that we always perform the comparison as an integer, even for
5398 floating point. This allows the atomic operation to properly
5399 succeed even with NaNs and -0.0. */
5400 x = build3 (COND_EXPR, void_type_node,
5401 build2 (NE_EXPR, boolean_type_node,
5402 fold_convert (itype, oldival), oldival2),
5403 build1 (GOTO_EXPR, void_type_node, label), NULL);
5404 gimplify_and_add (x, pre_p);
5406 *expr_p = NULL;
5407 return GS_ALL_DONE;
5410 /* A subroutine of gimplify_omp_atomic. Implement the atomic operation as:
5412 GOMP_atomic_start ();
5413 *addr = rhs;
5414 GOMP_atomic_end ();
5416 The result is not globally atomic, but works so long as all parallel
5417 references are within #pragma omp atomic directives. According to
5418 responses received from omp@openmp.org, appears to be within spec.
5419 Which makes sense, since that's how several other compilers handle
5420 this situation as well. */
5422 static enum gimplify_status
5423 gimplify_omp_atomic_mutex (tree *expr_p, tree *pre_p, tree addr, tree rhs)
5425 tree t;
5427 t = built_in_decls[BUILT_IN_GOMP_ATOMIC_START];
5428 t = build_call_expr (t, 0);
5429 gimplify_and_add (t, pre_p);
5431 t = build_fold_indirect_ref (addr);
5432 t = build_gimple_modify_stmt (t, rhs);
5433 gimplify_and_add (t, pre_p);
5435 t = built_in_decls[BUILT_IN_GOMP_ATOMIC_END];
5436 t = build_call_expr (t, 0);
5437 gimplify_and_add (t, pre_p);
5439 *expr_p = NULL;
5440 return GS_ALL_DONE;
5443 /* Gimplify an OMP_ATOMIC statement. */
5445 static enum gimplify_status
5446 gimplify_omp_atomic (tree *expr_p, tree *pre_p)
5448 tree addr = TREE_OPERAND (*expr_p, 0);
5449 tree rhs = TREE_OPERAND (*expr_p, 1);
5450 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5451 HOST_WIDE_INT index;
5453 /* Make sure the type is one of the supported sizes. */
5454 index = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5455 index = exact_log2 (index);
5456 if (index >= 0 && index <= 4)
5458 enum gimplify_status gs;
5459 unsigned int align;
5461 if (DECL_P (TREE_OPERAND (addr, 0)))
5462 align = DECL_ALIGN_UNIT (TREE_OPERAND (addr, 0));
5463 else if (TREE_CODE (TREE_OPERAND (addr, 0)) == COMPONENT_REF
5464 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (addr, 0), 1))
5465 == FIELD_DECL)
5466 align = DECL_ALIGN_UNIT (TREE_OPERAND (TREE_OPERAND (addr, 0), 1));
5467 else
5468 align = TYPE_ALIGN_UNIT (type);
5470 /* __sync builtins require strict data alignment. */
5471 if (exact_log2 (align) >= index)
5473 /* When possible, use specialized atomic update functions. */
5474 if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5476 gs = gimplify_omp_atomic_fetch_op (expr_p, addr, rhs, index);
5477 if (gs != GS_UNHANDLED)
5478 return gs;
5481 /* If we don't have specialized __sync builtins, try and implement
5482 as a compare and swap loop. */
5483 gs = gimplify_omp_atomic_pipeline (expr_p, pre_p, addr, rhs, index);
5484 if (gs != GS_UNHANDLED)
5485 return gs;
5489 /* The ultimate fallback is wrapping the operation in a mutex. */
5490 return gimplify_omp_atomic_mutex (expr_p, pre_p, addr, rhs);
5493 /* Gimplifies the expression tree pointed to by EXPR_P. Return 0 if
5494 gimplification failed.
5496 PRE_P points to the list where side effects that must happen before
5497 EXPR should be stored.
5499 POST_P points to the list where side effects that must happen after
5500 EXPR should be stored, or NULL if there is no suitable list. In
5501 that case, we copy the result to a temporary, emit the
5502 post-effects, and then return the temporary.
5504 GIMPLE_TEST_F points to a function that takes a tree T and
5505 returns nonzero if T is in the GIMPLE form requested by the
5506 caller. The GIMPLE predicates are in tree-gimple.c.
5508 This test is used twice. Before gimplification, the test is
5509 invoked to determine whether *EXPR_P is already gimple enough. If
5510 that fails, *EXPR_P is gimplified according to its code and
5511 GIMPLE_TEST_F is called again. If the test still fails, then a new
5512 temporary variable is created and assigned the value of the
5513 gimplified expression.
5515 FALLBACK tells the function what sort of a temporary we want. If the 1
5516 bit is set, an rvalue is OK. If the 2 bit is set, an lvalue is OK.
5517 If both are set, either is OK, but an lvalue is preferable.
5519 The return value is either GS_ERROR or GS_ALL_DONE, since this function
5520 iterates until solution. */
5522 enum gimplify_status
5523 gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
5524 bool (* gimple_test_f) (tree), fallback_t fallback)
5526 tree tmp;
5527 tree internal_pre = NULL_TREE;
5528 tree internal_post = NULL_TREE;
5529 tree save_expr;
5530 int is_statement = (pre_p == NULL);
5531 location_t saved_location;
5532 enum gimplify_status ret;
5534 save_expr = *expr_p;
5535 if (save_expr == NULL_TREE)
5536 return GS_ALL_DONE;
5538 /* We used to check the predicate here and return immediately if it
5539 succeeds. This is wrong; the design is for gimplification to be
5540 idempotent, and for the predicates to only test for valid forms, not
5541 whether they are fully simplified. */
5543 /* Set up our internal queues if needed. */
5544 if (pre_p == NULL)
5545 pre_p = &internal_pre;
5546 if (post_p == NULL)
5547 post_p = &internal_post;
5549 saved_location = input_location;
5550 if (save_expr != error_mark_node
5551 && EXPR_HAS_LOCATION (*expr_p))
5552 input_location = EXPR_LOCATION (*expr_p);
5554 /* Loop over the specific gimplifiers until the toplevel node
5555 remains the same. */
5558 /* Strip away as many useless type conversions as possible
5559 at the toplevel. */
5560 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
5562 /* Remember the expr. */
5563 save_expr = *expr_p;
5565 /* Die, die, die, my darling. */
5566 if (save_expr == error_mark_node
5567 || (!GIMPLE_STMT_P (save_expr)
5568 && TREE_TYPE (save_expr)
5569 && TREE_TYPE (save_expr) == error_mark_node))
5571 ret = GS_ERROR;
5572 break;
5575 /* Do any language-specific gimplification. */
5576 ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
5577 if (ret == GS_OK)
5579 if (*expr_p == NULL_TREE)
5580 break;
5581 if (*expr_p != save_expr)
5582 continue;
5584 else if (ret != GS_UNHANDLED)
5585 break;
5587 ret = GS_OK;
5588 switch (TREE_CODE (*expr_p))
5590 /* First deal with the special cases. */
5592 case POSTINCREMENT_EXPR:
5593 case POSTDECREMENT_EXPR:
5594 case PREINCREMENT_EXPR:
5595 case PREDECREMENT_EXPR:
5596 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
5597 fallback != fb_none);
5598 break;
5600 case ARRAY_REF:
5601 case ARRAY_RANGE_REF:
5602 case REALPART_EXPR:
5603 case IMAGPART_EXPR:
5604 case COMPONENT_REF:
5605 case VIEW_CONVERT_EXPR:
5606 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
5607 fallback ? fallback : fb_rvalue);
5608 break;
5610 case COND_EXPR:
5611 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
5612 /* C99 code may assign to an array in a structure value of a
5613 conditional expression, and this has undefined behavior
5614 only on execution, so create a temporary if an lvalue is
5615 required. */
5616 if (fallback == fb_lvalue)
5618 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5619 mark_addressable (*expr_p);
5621 break;
5623 case CALL_EXPR:
5624 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
5625 /* C99 code may assign to an array in a structure returned
5626 from a function, and this has undefined behavior only on
5627 execution, so create a temporary if an lvalue is
5628 required. */
5629 if (fallback == fb_lvalue)
5631 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5632 mark_addressable (*expr_p);
5634 break;
5636 case TREE_LIST:
5637 gcc_unreachable ();
5639 case COMPOUND_EXPR:
5640 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
5641 break;
5643 case MODIFY_EXPR:
5644 case GIMPLE_MODIFY_STMT:
5645 case INIT_EXPR:
5646 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
5647 fallback != fb_none);
5649 if (*expr_p)
5651 /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer
5652 useful. */
5653 if (TREE_CODE (*expr_p) == INIT_EXPR)
5654 TREE_SET_CODE (*expr_p, MODIFY_EXPR);
5656 /* Convert MODIFY_EXPR to GIMPLE_MODIFY_STMT. */
5657 if (TREE_CODE (*expr_p) == MODIFY_EXPR)
5658 tree_to_gimple_tuple (expr_p);
5661 break;
5663 case TRUTH_ANDIF_EXPR:
5664 case TRUTH_ORIF_EXPR:
5665 ret = gimplify_boolean_expr (expr_p);
5666 break;
5668 case TRUTH_NOT_EXPR:
5669 TREE_OPERAND (*expr_p, 0)
5670 = gimple_boolify (TREE_OPERAND (*expr_p, 0));
5671 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5672 is_gimple_val, fb_rvalue);
5673 recalculate_side_effects (*expr_p);
5674 break;
5676 case ADDR_EXPR:
5677 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
5678 break;
5680 case VA_ARG_EXPR:
5681 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
5682 break;
5684 case CONVERT_EXPR:
5685 case NOP_EXPR:
5686 if (IS_EMPTY_STMT (*expr_p))
5688 ret = GS_ALL_DONE;
5689 break;
5692 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
5693 || fallback == fb_none)
5695 /* Just strip a conversion to void (or in void context) and
5696 try again. */
5697 *expr_p = TREE_OPERAND (*expr_p, 0);
5698 break;
5701 ret = gimplify_conversion (expr_p);
5702 if (ret == GS_ERROR)
5703 break;
5704 if (*expr_p != save_expr)
5705 break;
5706 /* FALLTHRU */
5708 case FIX_TRUNC_EXPR:
5709 /* unary_expr: ... | '(' cast ')' val | ... */
5710 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5711 is_gimple_val, fb_rvalue);
5712 recalculate_side_effects (*expr_p);
5713 break;
5715 case INDIRECT_REF:
5716 *expr_p = fold_indirect_ref (*expr_p);
5717 if (*expr_p != save_expr)
5718 break;
5719 /* else fall through. */
5720 case ALIGN_INDIRECT_REF:
5721 case MISALIGNED_INDIRECT_REF:
5722 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5723 is_gimple_reg, fb_rvalue);
5724 recalculate_side_effects (*expr_p);
5725 break;
5727 /* Constants need not be gimplified. */
5728 case INTEGER_CST:
5729 case REAL_CST:
5730 case FIXED_CST:
5731 case STRING_CST:
5732 case COMPLEX_CST:
5733 case VECTOR_CST:
5734 ret = GS_ALL_DONE;
5735 break;
5737 case CONST_DECL:
5738 /* If we require an lvalue, such as for ADDR_EXPR, retain the
5739 CONST_DECL node. Otherwise the decl is replaceable by its
5740 value. */
5741 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
5742 if (fallback & fb_lvalue)
5743 ret = GS_ALL_DONE;
5744 else
5745 *expr_p = DECL_INITIAL (*expr_p);
5746 break;
5748 case DECL_EXPR:
5749 ret = gimplify_decl_expr (expr_p);
5750 break;
5752 case EXC_PTR_EXPR:
5753 /* FIXME make this a decl. */
5754 ret = GS_ALL_DONE;
5755 break;
5757 case BIND_EXPR:
5758 ret = gimplify_bind_expr (expr_p, pre_p);
5759 break;
5761 case LOOP_EXPR:
5762 ret = gimplify_loop_expr (expr_p, pre_p);
5763 break;
5765 case SWITCH_EXPR:
5766 ret = gimplify_switch_expr (expr_p, pre_p);
5767 break;
5769 case EXIT_EXPR:
5770 ret = gimplify_exit_expr (expr_p);
5771 break;
5773 case GOTO_EXPR:
5774 /* If the target is not LABEL, then it is a computed jump
5775 and the target needs to be gimplified. */
5776 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
5777 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
5778 NULL, is_gimple_val, fb_rvalue);
5779 break;
5781 case LABEL_EXPR:
5782 ret = GS_ALL_DONE;
5783 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
5784 == current_function_decl);
5785 break;
5787 case CASE_LABEL_EXPR:
5788 ret = gimplify_case_label_expr (expr_p);
5789 break;
5791 case RETURN_EXPR:
5792 ret = gimplify_return_expr (*expr_p, pre_p);
5793 break;
5795 case CONSTRUCTOR:
5796 /* Don't reduce this in place; let gimplify_init_constructor work its
5797 magic. Buf if we're just elaborating this for side effects, just
5798 gimplify any element that has side-effects. */
5799 if (fallback == fb_none)
5801 unsigned HOST_WIDE_INT ix;
5802 constructor_elt *ce;
5803 tree temp = NULL_TREE;
5804 for (ix = 0;
5805 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (*expr_p),
5806 ix, ce);
5807 ix++)
5808 if (TREE_SIDE_EFFECTS (ce->value))
5809 append_to_statement_list (ce->value, &temp);
5811 *expr_p = temp;
5812 ret = GS_OK;
5814 /* C99 code may assign to an array in a constructed
5815 structure or union, and this has undefined behavior only
5816 on execution, so create a temporary if an lvalue is
5817 required. */
5818 else if (fallback == fb_lvalue)
5820 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5821 mark_addressable (*expr_p);
5823 else
5824 ret = GS_ALL_DONE;
5825 break;
5827 /* The following are special cases that are not handled by the
5828 original GIMPLE grammar. */
5830 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
5831 eliminated. */
5832 case SAVE_EXPR:
5833 ret = gimplify_save_expr (expr_p, pre_p, post_p);
5834 break;
5836 case BIT_FIELD_REF:
5838 enum gimplify_status r0, r1, r2;
5840 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5841 is_gimple_lvalue, fb_either);
5842 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5843 is_gimple_val, fb_rvalue);
5844 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
5845 is_gimple_val, fb_rvalue);
5846 recalculate_side_effects (*expr_p);
5848 ret = MIN (r0, MIN (r1, r2));
5850 break;
5852 case NON_LVALUE_EXPR:
5853 /* This should have been stripped above. */
5854 gcc_unreachable ();
5856 case ASM_EXPR:
5857 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
5858 break;
5860 case TRY_FINALLY_EXPR:
5861 case TRY_CATCH_EXPR:
5862 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
5863 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
5864 ret = GS_ALL_DONE;
5865 break;
5867 case CLEANUP_POINT_EXPR:
5868 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
5869 break;
5871 case TARGET_EXPR:
5872 ret = gimplify_target_expr (expr_p, pre_p, post_p);
5873 break;
5875 case CATCH_EXPR:
5876 gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
5877 ret = GS_ALL_DONE;
5878 break;
5880 case EH_FILTER_EXPR:
5881 gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
5882 ret = GS_ALL_DONE;
5883 break;
5885 case CHANGE_DYNAMIC_TYPE_EXPR:
5886 ret = gimplify_expr (&CHANGE_DYNAMIC_TYPE_LOCATION (*expr_p),
5887 pre_p, post_p, is_gimple_reg, fb_lvalue);
5888 break;
5890 case OBJ_TYPE_REF:
5892 enum gimplify_status r0, r1;
5893 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
5894 is_gimple_val, fb_rvalue);
5895 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
5896 is_gimple_val, fb_rvalue);
5897 ret = MIN (r0, r1);
5899 break;
5901 case LABEL_DECL:
5902 /* We get here when taking the address of a label. We mark
5903 the label as "forced"; meaning it can never be removed and
5904 it is a potential target for any computed goto. */
5905 FORCED_LABEL (*expr_p) = 1;
5906 ret = GS_ALL_DONE;
5907 break;
5909 case STATEMENT_LIST:
5910 ret = gimplify_statement_list (expr_p, pre_p);
5911 break;
5913 case WITH_SIZE_EXPR:
5915 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5916 post_p == &internal_post ? NULL : post_p,
5917 gimple_test_f, fallback);
5918 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5919 is_gimple_val, fb_rvalue);
5921 break;
5923 case VAR_DECL:
5924 case PARM_DECL:
5925 ret = gimplify_var_or_parm_decl (expr_p);
5926 break;
5928 case RESULT_DECL:
5929 /* When within an OpenMP context, notice uses of variables. */
5930 if (gimplify_omp_ctxp)
5931 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
5932 ret = GS_ALL_DONE;
5933 break;
5935 case SSA_NAME:
5936 /* Allow callbacks into the gimplifier during optimization. */
5937 ret = GS_ALL_DONE;
5938 break;
5940 case OMP_PARALLEL:
5941 ret = gimplify_omp_parallel (expr_p, pre_p);
5942 break;
5944 case OMP_FOR:
5945 ret = gimplify_omp_for (expr_p, pre_p);
5946 break;
5948 case OMP_SECTIONS:
5949 case OMP_SINGLE:
5950 ret = gimplify_omp_workshare (expr_p, pre_p);
5951 break;
5953 case OMP_SECTION:
5954 case OMP_MASTER:
5955 case OMP_ORDERED:
5956 case OMP_CRITICAL:
5957 gimplify_to_stmt_list (&OMP_BODY (*expr_p));
5958 break;
5960 case OMP_ATOMIC:
5961 ret = gimplify_omp_atomic (expr_p, pre_p);
5962 break;
5964 case OMP_RETURN:
5965 case OMP_CONTINUE:
5966 ret = GS_ALL_DONE;
5967 break;
5969 case POINTER_PLUS_EXPR:
5970 /* Convert ((type *)A)+offset into &A->field_of_type_and_offset.
5971 The second is gimple immediate saving a need for extra statement.
5973 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
5974 && (tmp = maybe_fold_offset_to_reference
5975 (TREE_OPERAND (*expr_p, 0), TREE_OPERAND (*expr_p, 1),
5976 TREE_TYPE (TREE_TYPE (*expr_p)))))
5978 tree ptr_type = build_pointer_type (TREE_TYPE (tmp));
5979 if (useless_type_conversion_p (TREE_TYPE (*expr_p), ptr_type))
5981 *expr_p = build_fold_addr_expr_with_type (tmp, ptr_type);
5982 break;
5985 /* Convert (void *)&a + 4 into (void *)&a[1]. */
5986 if (TREE_CODE (TREE_OPERAND (*expr_p, 0)) == NOP_EXPR
5987 && TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
5988 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (*expr_p,
5989 0),0)))
5990 && (tmp = maybe_fold_offset_to_reference
5991 (TREE_OPERAND (TREE_OPERAND (*expr_p, 0), 0),
5992 TREE_OPERAND (*expr_p, 1),
5993 TREE_TYPE (TREE_TYPE
5994 (TREE_OPERAND (TREE_OPERAND (*expr_p, 0),
5995 0))))))
5997 tmp = build_fold_addr_expr (tmp);
5998 *expr_p = fold_convert (TREE_TYPE (*expr_p), tmp);
5999 break;
6001 /* FALLTHRU */
6002 default:
6003 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
6005 case tcc_comparison:
6006 /* Handle comparison of objects of non scalar mode aggregates
6007 with a call to memcmp. It would be nice to only have to do
6008 this for variable-sized objects, but then we'd have to allow
6009 the same nest of reference nodes we allow for MODIFY_EXPR and
6010 that's too complex.
6012 Compare scalar mode aggregates as scalar mode values. Using
6013 memcmp for them would be very inefficient at best, and is
6014 plain wrong if bitfields are involved. */
6017 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
6019 if (!AGGREGATE_TYPE_P (type))
6020 goto expr_2;
6021 else if (TYPE_MODE (type) != BLKmode)
6022 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
6023 else
6024 ret = gimplify_variable_sized_compare (expr_p);
6026 break;
6029 /* If *EXPR_P does not need to be special-cased, handle it
6030 according to its class. */
6031 case tcc_unary:
6032 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
6033 post_p, is_gimple_val, fb_rvalue);
6034 break;
6036 case tcc_binary:
6037 expr_2:
6039 enum gimplify_status r0, r1;
6041 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
6042 post_p, is_gimple_val, fb_rvalue);
6043 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
6044 post_p, is_gimple_val, fb_rvalue);
6046 ret = MIN (r0, r1);
6047 break;
6050 case tcc_declaration:
6051 case tcc_constant:
6052 ret = GS_ALL_DONE;
6053 goto dont_recalculate;
6055 default:
6056 gcc_assert (TREE_CODE (*expr_p) == TRUTH_AND_EXPR
6057 || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
6058 || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR);
6059 goto expr_2;
6062 recalculate_side_effects (*expr_p);
6063 dont_recalculate:
6064 break;
6067 /* If we replaced *expr_p, gimplify again. */
6068 if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
6069 ret = GS_ALL_DONE;
6071 while (ret == GS_OK);
6073 /* If we encountered an error_mark somewhere nested inside, either
6074 stub out the statement or propagate the error back out. */
6075 if (ret == GS_ERROR)
6077 if (is_statement)
6078 *expr_p = NULL;
6079 goto out;
6082 /* This was only valid as a return value from the langhook, which
6083 we handled. Make sure it doesn't escape from any other context. */
6084 gcc_assert (ret != GS_UNHANDLED);
6086 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
6088 /* We aren't looking for a value, and we don't have a valid
6089 statement. If it doesn't have side-effects, throw it away. */
6090 if (!TREE_SIDE_EFFECTS (*expr_p))
6091 *expr_p = NULL;
6092 else if (!TREE_THIS_VOLATILE (*expr_p))
6094 /* This is probably a _REF that contains something nested that
6095 has side effects. Recurse through the operands to find it. */
6096 enum tree_code code = TREE_CODE (*expr_p);
6098 switch (code)
6100 case COMPONENT_REF:
6101 case REALPART_EXPR:
6102 case IMAGPART_EXPR:
6103 case VIEW_CONVERT_EXPR:
6104 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6105 gimple_test_f, fallback);
6106 break;
6108 case ARRAY_REF:
6109 case ARRAY_RANGE_REF:
6110 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6111 gimple_test_f, fallback);
6112 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
6113 gimple_test_f, fallback);
6114 break;
6116 default:
6117 /* Anything else with side-effects must be converted to
6118 a valid statement before we get here. */
6119 gcc_unreachable ();
6122 *expr_p = NULL;
6124 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
6125 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
6127 /* Historically, the compiler has treated a bare reference
6128 to a non-BLKmode volatile lvalue as forcing a load. */
6129 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
6130 /* Normally, we do not want to create a temporary for a
6131 TREE_ADDRESSABLE type because such a type should not be
6132 copied by bitwise-assignment. However, we make an
6133 exception here, as all we are doing here is ensuring that
6134 we read the bytes that make up the type. We use
6135 create_tmp_var_raw because create_tmp_var will abort when
6136 given a TREE_ADDRESSABLE type. */
6137 tree tmp = create_tmp_var_raw (type, "vol");
6138 gimple_add_tmp_var (tmp);
6139 *expr_p = build_gimple_modify_stmt (tmp, *expr_p);
6141 else
6142 /* We can't do anything useful with a volatile reference to
6143 an incomplete type, so just throw it away. Likewise for
6144 a BLKmode type, since any implicit inner load should
6145 already have been turned into an explicit one by the
6146 gimplification process. */
6147 *expr_p = NULL;
6150 /* If we are gimplifying at the statement level, we're done. Tack
6151 everything together and replace the original statement with the
6152 gimplified form. */
6153 if (fallback == fb_none || is_statement)
6155 if (internal_pre || internal_post)
6157 append_to_statement_list (*expr_p, &internal_pre);
6158 append_to_statement_list (internal_post, &internal_pre);
6159 annotate_all_with_locus (&internal_pre, input_location);
6160 *expr_p = internal_pre;
6162 else if (!*expr_p)
6164 else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
6165 annotate_all_with_locus (expr_p, input_location);
6166 else
6167 annotate_one_with_locus (*expr_p, input_location);
6168 goto out;
6171 /* Otherwise we're gimplifying a subexpression, so the resulting value is
6172 interesting. */
6174 /* If it's sufficiently simple already, we're done. Unless we are
6175 handling some post-effects internally; if that's the case, we need to
6176 copy into a temp before adding the post-effects to the tree. */
6177 if (!internal_post && (*gimple_test_f) (*expr_p))
6178 goto out;
6180 /* Otherwise, we need to create a new temporary for the gimplified
6181 expression. */
6183 /* We can't return an lvalue if we have an internal postqueue. The
6184 object the lvalue refers to would (probably) be modified by the
6185 postqueue; we need to copy the value out first, which means an
6186 rvalue. */
6187 if ((fallback & fb_lvalue) && !internal_post
6188 && is_gimple_addressable (*expr_p))
6190 /* An lvalue will do. Take the address of the expression, store it
6191 in a temporary, and replace the expression with an INDIRECT_REF of
6192 that temporary. */
6193 tmp = build_fold_addr_expr (*expr_p);
6194 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
6195 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
6197 else if ((fallback & fb_rvalue) && is_gimple_formal_tmp_rhs (*expr_p))
6199 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
6201 /* An rvalue will do. Assign the gimplified expression into a new
6202 temporary TMP and replace the original expression with TMP. */
6204 if (internal_post || (fallback & fb_lvalue))
6205 /* The postqueue might change the value of the expression between
6206 the initialization and use of the temporary, so we can't use a
6207 formal temp. FIXME do we care? */
6208 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6209 else
6210 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
6212 if (TREE_CODE (*expr_p) != SSA_NAME)
6213 DECL_GIMPLE_FORMAL_TEMP_P (*expr_p) = 1;
6215 else
6217 #ifdef ENABLE_CHECKING
6218 if (!(fallback & fb_mayfail))
6220 fprintf (stderr, "gimplification failed:\n");
6221 print_generic_expr (stderr, *expr_p, 0);
6222 debug_tree (*expr_p);
6223 internal_error ("gimplification failed");
6225 #endif
6226 gcc_assert (fallback & fb_mayfail);
6227 /* If this is an asm statement, and the user asked for the
6228 impossible, don't die. Fail and let gimplify_asm_expr
6229 issue an error. */
6230 ret = GS_ERROR;
6231 goto out;
6234 /* Make sure the temporary matches our predicate. */
6235 gcc_assert ((*gimple_test_f) (*expr_p));
6237 if (internal_post)
6239 annotate_all_with_locus (&internal_post, input_location);
6240 append_to_statement_list (internal_post, pre_p);
6243 out:
6244 input_location = saved_location;
6245 return ret;
6248 /* Look through TYPE for variable-sized objects and gimplify each such
6249 size that we find. Add to LIST_P any statements generated. */
6251 void
6252 gimplify_type_sizes (tree type, tree *list_p)
6254 tree field, t;
6256 if (type == NULL || type == error_mark_node)
6257 return;
6259 /* We first do the main variant, then copy into any other variants. */
6260 type = TYPE_MAIN_VARIANT (type);
6262 /* Avoid infinite recursion. */
6263 if (TYPE_SIZES_GIMPLIFIED (type))
6264 return;
6266 TYPE_SIZES_GIMPLIFIED (type) = 1;
6268 switch (TREE_CODE (type))
6270 case INTEGER_TYPE:
6271 case ENUMERAL_TYPE:
6272 case BOOLEAN_TYPE:
6273 case REAL_TYPE:
6274 case FIXED_POINT_TYPE:
6275 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
6276 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
6278 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6280 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
6281 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
6283 break;
6285 case ARRAY_TYPE:
6286 /* These types may not have declarations, so handle them here. */
6287 gimplify_type_sizes (TREE_TYPE (type), list_p);
6288 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
6289 break;
6291 case RECORD_TYPE:
6292 case UNION_TYPE:
6293 case QUAL_UNION_TYPE:
6294 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
6295 if (TREE_CODE (field) == FIELD_DECL)
6297 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
6298 gimplify_type_sizes (TREE_TYPE (field), list_p);
6300 break;
6302 case POINTER_TYPE:
6303 case REFERENCE_TYPE:
6304 /* We used to recurse on the pointed-to type here, which turned out to
6305 be incorrect because its definition might refer to variables not
6306 yet initialized at this point if a forward declaration is involved.
6308 It was actually useful for anonymous pointed-to types to ensure
6309 that the sizes evaluation dominates every possible later use of the
6310 values. Restricting to such types here would be safe since there
6311 is no possible forward declaration around, but would introduce an
6312 undesirable middle-end semantic to anonymity. We then defer to
6313 front-ends the responsibility of ensuring that the sizes are
6314 evaluated both early and late enough, e.g. by attaching artificial
6315 type declarations to the tree. */
6316 break;
6318 default:
6319 break;
6322 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
6323 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
6325 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
6327 TYPE_SIZE (t) = TYPE_SIZE (type);
6328 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
6329 TYPE_SIZES_GIMPLIFIED (t) = 1;
6333 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
6334 a size or position, has had all of its SAVE_EXPRs evaluated.
6335 We add any required statements to STMT_P. */
6337 void
6338 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
6340 tree type, expr = *expr_p;
6342 /* We don't do anything if the value isn't there, is constant, or contains
6343 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
6344 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
6345 will want to replace it with a new variable, but that will cause problems
6346 if this type is from outside the function. It's OK to have that here. */
6347 if (expr == NULL_TREE || TREE_CONSTANT (expr)
6348 || TREE_CODE (expr) == VAR_DECL
6349 || CONTAINS_PLACEHOLDER_P (expr))
6350 return;
6352 type = TREE_TYPE (expr);
6353 *expr_p = unshare_expr (expr);
6355 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
6356 expr = *expr_p;
6358 /* Verify that we've an exact type match with the original expression.
6359 In particular, we do not wish to drop a "sizetype" in favour of a
6360 type of similar dimensions. We don't want to pollute the generic
6361 type-stripping code with this knowledge because it doesn't matter
6362 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
6363 and friends retain their "sizetype-ness". */
6364 if (TREE_TYPE (expr) != type
6365 && TREE_CODE (type) == INTEGER_TYPE
6366 && TYPE_IS_SIZETYPE (type))
6368 tree tmp;
6370 *expr_p = create_tmp_var (type, NULL);
6371 tmp = build1 (NOP_EXPR, type, expr);
6372 tmp = build_gimple_modify_stmt (*expr_p, tmp);
6373 if (EXPR_HAS_LOCATION (expr))
6374 SET_EXPR_LOCUS (tmp, EXPR_LOCUS (expr));
6375 else
6376 SET_EXPR_LOCATION (tmp, input_location);
6378 gimplify_and_add (tmp, stmt_p);
6383 /* Gimplify the body of statements pointed to by BODY_P. FNDECL is the
6384 function decl containing BODY. */
6386 void
6387 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
6389 location_t saved_location = input_location;
6390 tree body, parm_stmts;
6392 timevar_push (TV_TREE_GIMPLIFY);
6394 gcc_assert (gimplify_ctxp == NULL);
6395 push_gimplify_context ();
6397 /* Unshare most shared trees in the body and in that of any nested functions.
6398 It would seem we don't have to do this for nested functions because
6399 they are supposed to be output and then the outer function gimplified
6400 first, but the g++ front end doesn't always do it that way. */
6401 unshare_body (body_p, fndecl);
6402 unvisit_body (body_p, fndecl);
6404 /* Make sure input_location isn't set to something wierd. */
6405 input_location = DECL_SOURCE_LOCATION (fndecl);
6407 /* Resolve callee-copies. This has to be done before processing
6408 the body so that DECL_VALUE_EXPR gets processed correctly. */
6409 parm_stmts = do_parms ? gimplify_parameters () : NULL;
6411 /* Gimplify the function's body. */
6412 gimplify_stmt (body_p);
6413 body = *body_p;
6415 if (!body)
6416 body = alloc_stmt_list ();
6417 else if (TREE_CODE (body) == STATEMENT_LIST)
6419 tree t = expr_only (*body_p);
6420 if (t)
6421 body = t;
6424 /* If there isn't an outer BIND_EXPR, add one. */
6425 if (TREE_CODE (body) != BIND_EXPR)
6427 tree b = build3 (BIND_EXPR, void_type_node, NULL_TREE,
6428 NULL_TREE, NULL_TREE);
6429 TREE_SIDE_EFFECTS (b) = 1;
6430 append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
6431 body = b;
6434 /* If we had callee-copies statements, insert them at the beginning
6435 of the function. */
6436 if (parm_stmts)
6438 append_to_statement_list_force (BIND_EXPR_BODY (body), &parm_stmts);
6439 BIND_EXPR_BODY (body) = parm_stmts;
6442 /* Unshare again, in case gimplification was sloppy. */
6443 unshare_all_trees (body);
6445 *body_p = body;
6447 pop_gimplify_context (body);
6448 gcc_assert (gimplify_ctxp == NULL);
6450 #ifdef ENABLE_TYPES_CHECKING
6451 if (!errorcount && !sorrycount)
6452 verify_gimple_1 (BIND_EXPR_BODY (*body_p));
6453 #endif
6455 timevar_pop (TV_TREE_GIMPLIFY);
6456 input_location = saved_location;
6459 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
6460 node for the function we want to gimplify. */
6462 void
6463 gimplify_function_tree (tree fndecl)
6465 tree oldfn, parm, ret;
6467 oldfn = current_function_decl;
6468 current_function_decl = fndecl;
6469 cfun = DECL_STRUCT_FUNCTION (fndecl);
6470 if (cfun == NULL)
6471 allocate_struct_function (fndecl);
6473 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = TREE_CHAIN (parm))
6475 /* Preliminarily mark non-addressed complex variables as eligible
6476 for promotion to gimple registers. We'll transform their uses
6477 as we find them. */
6478 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
6479 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
6480 && !TREE_THIS_VOLATILE (parm)
6481 && !needs_to_live_in_memory (parm))
6482 DECL_GIMPLE_REG_P (parm) = 1;
6485 ret = DECL_RESULT (fndecl);
6486 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
6487 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
6488 && !needs_to_live_in_memory (ret))
6489 DECL_GIMPLE_REG_P (ret) = 1;
6491 gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
6493 /* If we're instrumenting function entry/exit, then prepend the call to
6494 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
6495 catch the exit hook. */
6496 /* ??? Add some way to ignore exceptions for this TFE. */
6497 if (flag_instrument_function_entry_exit
6498 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
6499 && !flag_instrument_functions_exclude_p (fndecl))
6501 tree tf, x, bind;
6503 tf = build2 (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
6504 TREE_SIDE_EFFECTS (tf) = 1;
6505 x = DECL_SAVED_TREE (fndecl);
6506 append_to_statement_list (x, &TREE_OPERAND (tf, 0));
6507 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
6508 x = build_call_expr (x, 0);
6509 append_to_statement_list (x, &TREE_OPERAND (tf, 1));
6511 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6512 TREE_SIDE_EFFECTS (bind) = 1;
6513 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
6514 x = build_call_expr (x, 0);
6515 append_to_statement_list (x, &BIND_EXPR_BODY (bind));
6516 append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
6518 DECL_SAVED_TREE (fndecl) = bind;
6521 cfun->gimplified = true;
6522 current_function_decl = oldfn;
6523 cfun = oldfn ? DECL_STRUCT_FUNCTION (oldfn) : NULL;
6526 /* Expands EXPR to list of gimple statements STMTS. If SIMPLE is true,
6527 force the result to be either ssa_name or an invariant, otherwise
6528 just force it to be a rhs expression. If VAR is not NULL, make the
6529 base variable of the final destination be VAR if suitable. */
6531 tree
6532 force_gimple_operand (tree expr, tree *stmts, bool simple, tree var)
6534 tree t;
6535 enum gimplify_status ret;
6536 gimple_predicate gimple_test_f;
6538 *stmts = NULL_TREE;
6540 if (is_gimple_val (expr))
6541 return expr;
6543 gimple_test_f = simple ? is_gimple_val : is_gimple_reg_rhs;
6545 push_gimplify_context ();
6546 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
6548 if (var)
6549 expr = build_gimple_modify_stmt (var, expr);
6551 ret = gimplify_expr (&expr, stmts, NULL,
6552 gimple_test_f, fb_rvalue);
6553 gcc_assert (ret != GS_ERROR);
6555 if (gimple_referenced_vars (cfun))
6557 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
6558 add_referenced_var (t);
6561 pop_gimplify_context (NULL);
6563 return expr;
6566 /* Invokes force_gimple_operand for EXPR with parameters SIMPLE_P and VAR. If
6567 some statements are produced, emits them at BSI. If BEFORE is true.
6568 the statements are appended before BSI, otherwise they are appended after
6569 it. M specifies the way BSI moves after insertion (BSI_SAME_STMT or
6570 BSI_CONTINUE_LINKING are the usual values). */
6572 tree
6573 force_gimple_operand_bsi (block_stmt_iterator *bsi, tree expr,
6574 bool simple_p, tree var, bool before,
6575 enum bsi_iterator_update m)
6577 tree stmts;
6579 expr = force_gimple_operand (expr, &stmts, simple_p, var);
6580 if (stmts)
6582 if (gimple_in_ssa_p (cfun))
6584 tree_stmt_iterator tsi;
6586 for (tsi = tsi_start (stmts); !tsi_end_p (tsi); tsi_next (&tsi))
6587 mark_symbols_for_renaming (tsi_stmt (tsi));
6590 if (before)
6591 bsi_insert_before (bsi, stmts, m);
6592 else
6593 bsi_insert_after (bsi, stmts, m);
6596 return expr;
6599 #include "gt-gimplify.h"