c-common.h (flag_const_strings): Don't declare.
[official-gcc.git] / gcc / gimplify.c
blob710569888ec32e50ff31adb4683fb4ee1f2a152f
1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 Major work done by Sebastian Pop <s.pop@laposte.net>,
5 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to the Free
21 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 02110-1301, USA. */
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"
53 enum gimplify_omp_var_data
55 GOVD_SEEN = 1,
56 GOVD_EXPLICIT = 2,
57 GOVD_SHARED = 4,
58 GOVD_PRIVATE = 8,
59 GOVD_FIRSTPRIVATE = 16,
60 GOVD_LASTPRIVATE = 32,
61 GOVD_REDUCTION = 64,
62 GOVD_LOCAL = 128,
63 GOVD_DEBUG_PRIVATE = 256,
64 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
65 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
68 struct gimplify_omp_ctx
70 struct gimplify_omp_ctx *outer_context;
71 splay_tree variables;
72 struct pointer_set_t *privatized_types;
73 location_t location;
74 enum omp_clause_default_kind default_kind;
75 bool is_parallel;
78 struct gimplify_ctx
80 struct gimplify_ctx *prev_context;
82 tree current_bind_expr;
83 tree temps;
84 tree conditional_cleanups;
85 tree exit_label;
86 tree return_temp;
88 VEC(tree,heap) *case_labels;
89 /* The formal temporary table. Should this be persistent? */
90 htab_t temp_htab;
92 int conditions;
93 bool save_stack;
94 bool into_ssa;
97 static struct gimplify_ctx *gimplify_ctxp;
98 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
102 /* Formal (expression) temporary table handling: Multiple occurrences of
103 the same scalar expression are evaluated into the same temporary. */
105 typedef struct gimple_temp_hash_elt
107 tree val; /* Key */
108 tree temp; /* Value */
109 } elt_t;
111 /* Forward declarations. */
112 static enum gimplify_status gimplify_compound_expr (tree *, tree *, bool);
113 #ifdef ENABLE_CHECKING
114 static bool cpt_same_type (tree a, tree b);
115 #endif
118 /* Return a hash value for a formal temporary table entry. */
120 static hashval_t
121 gimple_tree_hash (const void *p)
123 tree t = ((const elt_t *) p)->val;
124 return iterative_hash_expr (t, 0);
127 /* Compare two formal temporary table entries. */
129 static int
130 gimple_tree_eq (const void *p1, const void *p2)
132 tree t1 = ((const elt_t *) p1)->val;
133 tree t2 = ((const elt_t *) p2)->val;
134 enum tree_code code = TREE_CODE (t1);
136 if (TREE_CODE (t2) != code
137 || TREE_TYPE (t1) != TREE_TYPE (t2))
138 return 0;
140 if (!operand_equal_p (t1, t2, 0))
141 return 0;
143 /* Only allow them to compare equal if they also hash equal; otherwise
144 results are nondeterminate, and we fail bootstrap comparison. */
145 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
147 return 1;
150 /* Set up a context for the gimplifier. */
152 void
153 push_gimplify_context (void)
155 struct gimplify_ctx *c;
157 c = (struct gimplify_ctx *) xcalloc (1, sizeof (struct gimplify_ctx));
158 c->prev_context = gimplify_ctxp;
159 if (optimize)
160 c->temp_htab = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
162 gimplify_ctxp = c;
165 /* Tear down a context for the gimplifier. If BODY is non-null, then
166 put the temporaries into the outer BIND_EXPR. Otherwise, put them
167 in the unexpanded_var_list. */
169 void
170 pop_gimplify_context (tree body)
172 struct gimplify_ctx *c = gimplify_ctxp;
173 tree t;
175 gcc_assert (c && !c->current_bind_expr);
176 gimplify_ctxp = c->prev_context;
178 for (t = c->temps; t ; t = TREE_CHAIN (t))
179 DECL_GIMPLE_FORMAL_TEMP_P (t) = 0;
181 if (body)
182 declare_tmp_vars (c->temps, body);
183 else
184 record_vars (c->temps);
186 if (optimize)
187 htab_delete (c->temp_htab);
188 free (c);
191 static void
192 gimple_push_bind_expr (tree bind)
194 TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr;
195 gimplify_ctxp->current_bind_expr = bind;
198 static void
199 gimple_pop_bind_expr (void)
201 gimplify_ctxp->current_bind_expr
202 = TREE_CHAIN (gimplify_ctxp->current_bind_expr);
205 tree
206 gimple_current_bind_expr (void)
208 return gimplify_ctxp->current_bind_expr;
211 /* Returns true iff there is a COND_EXPR between us and the innermost
212 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
214 static bool
215 gimple_conditional_context (void)
217 return gimplify_ctxp->conditions > 0;
220 /* Note that we've entered a COND_EXPR. */
222 static void
223 gimple_push_condition (void)
225 #ifdef ENABLE_CHECKING
226 if (gimplify_ctxp->conditions == 0)
227 gcc_assert (!gimplify_ctxp->conditional_cleanups);
228 #endif
229 ++(gimplify_ctxp->conditions);
232 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
233 now, add any conditional cleanups we've seen to the prequeue. */
235 static void
236 gimple_pop_condition (tree *pre_p)
238 int conds = --(gimplify_ctxp->conditions);
240 gcc_assert (conds >= 0);
241 if (conds == 0)
243 append_to_statement_list (gimplify_ctxp->conditional_cleanups, pre_p);
244 gimplify_ctxp->conditional_cleanups = NULL_TREE;
248 /* A stable comparison routine for use with splay trees and DECLs. */
250 static int
251 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
253 tree a = (tree) xa;
254 tree b = (tree) xb;
256 return DECL_UID (a) - DECL_UID (b);
259 /* Create a new omp construct that deals with variable remapping. */
261 static struct gimplify_omp_ctx *
262 new_omp_context (bool is_parallel)
264 struct gimplify_omp_ctx *c;
266 c = XCNEW (struct gimplify_omp_ctx);
267 c->outer_context = gimplify_omp_ctxp;
268 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
269 c->privatized_types = pointer_set_create ();
270 c->location = input_location;
271 c->is_parallel = is_parallel;
272 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
274 return c;
277 /* Destroy an omp construct that deals with variable remapping. */
279 static void
280 delete_omp_context (struct gimplify_omp_ctx *c)
282 splay_tree_delete (c->variables);
283 pointer_set_destroy (c->privatized_types);
284 XDELETE (c);
287 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
288 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
290 /* A subroutine of append_to_statement_list{,_force}. T is not NULL. */
292 static void
293 append_to_statement_list_1 (tree t, tree *list_p)
295 tree list = *list_p;
296 tree_stmt_iterator i;
298 if (!list)
300 if (t && TREE_CODE (t) == STATEMENT_LIST)
302 *list_p = t;
303 return;
305 *list_p = list = alloc_stmt_list ();
308 i = tsi_last (list);
309 tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
312 /* Add T to the end of the list container pointed to by LIST_P.
313 If T is an expression with no effects, it is ignored. */
315 void
316 append_to_statement_list (tree t, tree *list_p)
318 if (t && TREE_SIDE_EFFECTS (t))
319 append_to_statement_list_1 (t, list_p);
322 /* Similar, but the statement is always added, regardless of side effects. */
324 void
325 append_to_statement_list_force (tree t, tree *list_p)
327 if (t != NULL_TREE)
328 append_to_statement_list_1 (t, list_p);
331 /* Both gimplify the statement T and append it to LIST_P. */
333 void
334 gimplify_and_add (tree t, tree *list_p)
336 gimplify_stmt (&t);
337 append_to_statement_list (t, list_p);
340 /* Strip off a legitimate source ending from the input string NAME of
341 length LEN. Rather than having to know the names used by all of
342 our front ends, we strip off an ending of a period followed by
343 up to five characters. (Java uses ".class".) */
345 static inline void
346 remove_suffix (char *name, int len)
348 int i;
350 for (i = 2; i < 8 && len > i; i++)
352 if (name[len - i] == '.')
354 name[len - i] = '\0';
355 break;
360 /* Create a nameless artificial label and put it in the current function
361 context. Returns the newly created label. */
363 tree
364 create_artificial_label (void)
366 tree lab = build_decl (LABEL_DECL, NULL_TREE, void_type_node);
368 DECL_ARTIFICIAL (lab) = 1;
369 DECL_IGNORED_P (lab) = 1;
370 DECL_CONTEXT (lab) = current_function_decl;
371 return lab;
374 /* Subroutine for find_single_pointer_decl. */
376 static tree
377 find_single_pointer_decl_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
378 void *data)
380 tree *pdecl = (tree *) data;
382 if (DECL_P (*tp) && POINTER_TYPE_P (TREE_TYPE (*tp)))
384 if (*pdecl)
386 /* We already found a pointer decl; return anything other
387 than NULL_TREE to unwind from walk_tree signalling that
388 we have a duplicate. */
389 return *tp;
391 *pdecl = *tp;
394 return NULL_TREE;
397 /* Find the single DECL of pointer type in the tree T and return it.
398 If there are zero or more than one such DECLs, return NULL. */
400 static tree
401 find_single_pointer_decl (tree t)
403 tree decl = NULL_TREE;
405 if (walk_tree (&t, find_single_pointer_decl_1, &decl, NULL))
407 /* find_single_pointer_decl_1 returns a non-zero value, causing
408 walk_tree to return a non-zero value, to indicate that it
409 found more than one pointer DECL. */
410 return NULL_TREE;
413 return decl;
416 /* Create a new temporary name with PREFIX. Returns an identifier. */
418 static GTY(()) unsigned int tmp_var_id_num;
420 tree
421 create_tmp_var_name (const char *prefix)
423 char *tmp_name;
425 if (prefix)
427 char *preftmp = ASTRDUP (prefix);
429 remove_suffix (preftmp, strlen (preftmp));
430 prefix = preftmp;
433 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
434 return get_identifier (tmp_name);
438 /* Create a new temporary variable declaration of type TYPE.
439 Does NOT push it into the current binding. */
441 tree
442 create_tmp_var_raw (tree type, const char *prefix)
444 tree tmp_var;
445 tree new_type;
447 /* Make the type of the variable writable. */
448 new_type = build_type_variant (type, 0, 0);
449 TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
451 tmp_var = build_decl (VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
452 type);
454 /* The variable was declared by the compiler. */
455 DECL_ARTIFICIAL (tmp_var) = 1;
456 /* And we don't want debug info for it. */
457 DECL_IGNORED_P (tmp_var) = 1;
459 /* Make the variable writable. */
460 TREE_READONLY (tmp_var) = 0;
462 DECL_EXTERNAL (tmp_var) = 0;
463 TREE_STATIC (tmp_var) = 0;
464 TREE_USED (tmp_var) = 1;
466 return tmp_var;
469 /* Create a new temporary variable declaration of type TYPE. DOES push the
470 variable into the current binding. Further, assume that this is called
471 only from gimplification or optimization, at which point the creation of
472 certain types are bugs. */
474 tree
475 create_tmp_var (tree type, const char *prefix)
477 tree tmp_var;
479 /* We don't allow types that are addressable (meaning we can't make copies),
480 incomplete, or of variable size. */
481 gcc_assert (!TREE_ADDRESSABLE (type)
482 && COMPLETE_TYPE_P (type)
483 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST);
485 tmp_var = create_tmp_var_raw (type, prefix);
486 gimple_add_tmp_var (tmp_var);
487 return tmp_var;
490 /* Given a tree, try to return a useful variable name that we can use
491 to prefix a temporary that is being assigned the value of the tree.
492 I.E. given <temp> = &A, return A. */
494 const char *
495 get_name (tree t)
497 tree stripped_decl;
499 stripped_decl = t;
500 STRIP_NOPS (stripped_decl);
501 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
502 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
503 else
505 switch (TREE_CODE (stripped_decl))
507 case ADDR_EXPR:
508 return get_name (TREE_OPERAND (stripped_decl, 0));
509 break;
510 default:
511 return NULL;
516 /* Create a temporary with a name derived from VAL. Subroutine of
517 lookup_tmp_var; nobody else should call this function. */
519 static inline tree
520 create_tmp_from_val (tree val)
522 return create_tmp_var (TYPE_MAIN_VARIANT (TREE_TYPE (val)), get_name (val));
525 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
526 an existing expression temporary. */
528 static tree
529 lookup_tmp_var (tree val, bool is_formal)
531 tree ret;
533 /* If not optimizing, never really reuse a temporary. local-alloc
534 won't allocate any variable that is used in more than one basic
535 block, which means it will go into memory, causing much extra
536 work in reload and final and poorer code generation, outweighing
537 the extra memory allocation here. */
538 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
539 ret = create_tmp_from_val (val);
540 else
542 elt_t elt, *elt_p;
543 void **slot;
545 elt.val = val;
546 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
547 if (*slot == NULL)
549 elt_p = XNEW (elt_t);
550 elt_p->val = val;
551 elt_p->temp = ret = create_tmp_from_val (val);
552 *slot = (void *) elt_p;
554 else
556 elt_p = (elt_t *) *slot;
557 ret = elt_p->temp;
561 if (is_formal)
562 DECL_GIMPLE_FORMAL_TEMP_P (ret) = 1;
564 return ret;
567 /* Returns a formal temporary variable initialized with VAL. PRE_P is as
568 in gimplify_expr. Only use this function if:
570 1) The value of the unfactored expression represented by VAL will not
571 change between the initialization and use of the temporary, and
572 2) The temporary will not be otherwise modified.
574 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
575 and #2 means it is inappropriate for && temps.
577 For other cases, use get_initialized_tmp_var instead. */
579 static tree
580 internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
582 tree t, mod;
584 gimplify_expr (&val, pre_p, post_p, is_gimple_formal_tmp_rhs, fb_rvalue);
586 t = lookup_tmp_var (val, is_formal);
588 if (is_formal)
590 tree u = find_single_pointer_decl (val);
592 if (u && TREE_CODE (u) == VAR_DECL && DECL_BASED_ON_RESTRICT_P (u))
593 u = DECL_GET_RESTRICT_BASE (u);
594 if (u && TYPE_RESTRICT (TREE_TYPE (u)))
596 if (DECL_BASED_ON_RESTRICT_P (t))
597 gcc_assert (u == DECL_GET_RESTRICT_BASE (t));
598 else
600 DECL_BASED_ON_RESTRICT_P (t) = 1;
601 SET_DECL_RESTRICT_BASE (t, u);
606 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE)
607 DECL_COMPLEX_GIMPLE_REG_P (t) = 1;
609 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, val);
611 if (EXPR_HAS_LOCATION (val))
612 SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
613 else
614 SET_EXPR_LOCATION (mod, input_location);
616 /* gimplify_modify_expr might want to reduce this further. */
617 gimplify_and_add (mod, pre_p);
619 /* If we're gimplifying into ssa, gimplify_modify_expr will have
620 given our temporary an ssa name. Find and return it. */
621 if (gimplify_ctxp->into_ssa)
622 t = TREE_OPERAND (mod, 0);
624 return t;
627 /* Returns a formal temporary variable initialized with VAL. PRE_P
628 points to a statement list where side-effects needed to compute VAL
629 should be stored. */
631 tree
632 get_formal_tmp_var (tree val, tree *pre_p)
634 return internal_get_tmp_var (val, pre_p, NULL, true);
637 /* Returns a temporary variable initialized with VAL. PRE_P and POST_P
638 are as in gimplify_expr. */
640 tree
641 get_initialized_tmp_var (tree val, tree *pre_p, tree *post_p)
643 return internal_get_tmp_var (val, pre_p, post_p, false);
646 /* Declares all the variables in VARS in SCOPE. */
648 void
649 declare_tmp_vars (tree vars, tree scope)
651 tree last = vars;
652 if (last)
654 tree temps;
656 /* C99 mode puts the default 'return 0;' for main outside the outer
657 braces. So drill down until we find an actual scope. */
658 while (TREE_CODE (scope) == COMPOUND_EXPR)
659 scope = TREE_OPERAND (scope, 0);
661 gcc_assert (TREE_CODE (scope) == BIND_EXPR);
663 temps = nreverse (last);
664 TREE_CHAIN (last) = BIND_EXPR_VARS (scope);
665 BIND_EXPR_VARS (scope) = temps;
669 void
670 gimple_add_tmp_var (tree tmp)
672 gcc_assert (!TREE_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
674 DECL_CONTEXT (tmp) = current_function_decl;
675 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
677 if (gimplify_ctxp)
679 TREE_CHAIN (tmp) = gimplify_ctxp->temps;
680 gimplify_ctxp->temps = tmp;
682 /* Mark temporaries local within the nearest enclosing parallel. */
683 if (gimplify_omp_ctxp)
685 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
686 while (ctx && !ctx->is_parallel)
687 ctx = ctx->outer_context;
688 if (ctx)
689 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
692 else if (cfun)
693 record_vars (tmp);
694 else
695 declare_tmp_vars (tmp, DECL_SAVED_TREE (current_function_decl));
698 /* Determines whether to assign a locus to the statement STMT. */
700 static bool
701 should_carry_locus_p (tree stmt)
703 /* Don't emit a line note for a label. We particularly don't want to
704 emit one for the break label, since it doesn't actually correspond
705 to the beginning of the loop/switch. */
706 if (TREE_CODE (stmt) == LABEL_EXPR)
707 return false;
709 /* Do not annotate empty statements, since it confuses gcov. */
710 if (!TREE_SIDE_EFFECTS (stmt))
711 return false;
713 return true;
716 static void
717 annotate_one_with_locus (tree t, location_t locus)
719 if (EXPR_P (t) && ! EXPR_HAS_LOCATION (t) && should_carry_locus_p (t))
720 SET_EXPR_LOCATION (t, locus);
723 void
724 annotate_all_with_locus (tree *stmt_p, location_t locus)
726 tree_stmt_iterator i;
728 if (!*stmt_p)
729 return;
731 for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
733 tree t = tsi_stmt (i);
735 /* Assuming we've already been gimplified, we shouldn't
736 see nested chaining constructs anymore. */
737 gcc_assert (TREE_CODE (t) != STATEMENT_LIST
738 && TREE_CODE (t) != COMPOUND_EXPR);
740 annotate_one_with_locus (t, locus);
744 /* Similar to copy_tree_r() but do not copy SAVE_EXPR or TARGET_EXPR nodes.
745 These nodes model computations that should only be done once. If we
746 were to unshare something like SAVE_EXPR(i++), the gimplification
747 process would create wrong code. */
749 static tree
750 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
752 enum tree_code code = TREE_CODE (*tp);
753 /* Don't unshare types, decls, constants and SAVE_EXPR nodes. */
754 if (TREE_CODE_CLASS (code) == tcc_type
755 || TREE_CODE_CLASS (code) == tcc_declaration
756 || TREE_CODE_CLASS (code) == tcc_constant
757 || code == SAVE_EXPR || code == TARGET_EXPR
758 /* We can't do anything sensible with a BLOCK used as an expression,
759 but we also can't just die when we see it because of non-expression
760 uses. So just avert our eyes and cross our fingers. Silly Java. */
761 || code == BLOCK)
762 *walk_subtrees = 0;
763 else
765 gcc_assert (code != BIND_EXPR);
766 copy_tree_r (tp, walk_subtrees, data);
769 return NULL_TREE;
772 /* Callback for walk_tree to unshare most of the shared trees rooted at
773 *TP. If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
774 then *TP is deep copied by calling copy_tree_r.
776 This unshares the same trees as copy_tree_r with the exception of
777 SAVE_EXPR nodes. These nodes model computations that should only be
778 done once. If we were to unshare something like SAVE_EXPR(i++), the
779 gimplification process would create wrong code. */
781 static tree
782 copy_if_shared_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
783 void *data ATTRIBUTE_UNUSED)
785 tree t = *tp;
786 enum tree_code code = TREE_CODE (t);
788 /* Skip types, decls, and constants. But we do want to look at their
789 types and the bounds of types. Mark them as visited so we properly
790 unmark their subtrees on the unmark pass. If we've already seen them,
791 don't look down further. */
792 if (TREE_CODE_CLASS (code) == tcc_type
793 || TREE_CODE_CLASS (code) == tcc_declaration
794 || TREE_CODE_CLASS (code) == tcc_constant)
796 if (TREE_VISITED (t))
797 *walk_subtrees = 0;
798 else
799 TREE_VISITED (t) = 1;
802 /* If this node has been visited already, unshare it and don't look
803 any deeper. */
804 else if (TREE_VISITED (t))
806 walk_tree (tp, mostly_copy_tree_r, NULL, NULL);
807 *walk_subtrees = 0;
810 /* Otherwise, mark the tree as visited and keep looking. */
811 else
812 TREE_VISITED (t) = 1;
814 return NULL_TREE;
817 static tree
818 unmark_visited_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
819 void *data ATTRIBUTE_UNUSED)
821 if (TREE_VISITED (*tp))
822 TREE_VISITED (*tp) = 0;
823 else
824 *walk_subtrees = 0;
826 return NULL_TREE;
829 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
830 bodies of any nested functions if we are unsharing the entire body of
831 FNDECL. */
833 static void
834 unshare_body (tree *body_p, tree fndecl)
836 struct cgraph_node *cgn = cgraph_node (fndecl);
838 walk_tree (body_p, copy_if_shared_r, NULL, NULL);
839 if (body_p == &DECL_SAVED_TREE (fndecl))
840 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
841 unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
844 /* Likewise, but mark all trees as not visited. */
846 static void
847 unvisit_body (tree *body_p, tree fndecl)
849 struct cgraph_node *cgn = cgraph_node (fndecl);
851 walk_tree (body_p, unmark_visited_r, NULL, NULL);
852 if (body_p == &DECL_SAVED_TREE (fndecl))
853 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
854 unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
857 /* Unshare T and all the trees reached from T via TREE_CHAIN. */
859 static void
860 unshare_all_trees (tree t)
862 walk_tree (&t, copy_if_shared_r, NULL, NULL);
863 walk_tree (&t, unmark_visited_r, NULL, NULL);
866 /* Unconditionally make an unshared copy of EXPR. This is used when using
867 stored expressions which span multiple functions, such as BINFO_VTABLE,
868 as the normal unsharing process can't tell that they're shared. */
870 tree
871 unshare_expr (tree expr)
873 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
874 return expr;
877 /* A terser interface for building a representation of an exception
878 specification. */
880 tree
881 gimple_build_eh_filter (tree body, tree allowed, tree failure)
883 tree t;
885 /* FIXME should the allowed types go in TREE_TYPE? */
886 t = build2 (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE);
887 append_to_statement_list (failure, &EH_FILTER_FAILURE (t));
889 t = build2 (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t);
890 append_to_statement_list (body, &TREE_OPERAND (t, 0));
892 return t;
896 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
897 contain statements and have a value. Assign its value to a temporary
898 and give it void_type_node. Returns the temporary, or NULL_TREE if
899 WRAPPER was already void. */
901 tree
902 voidify_wrapper_expr (tree wrapper, tree temp)
904 if (!VOID_TYPE_P (TREE_TYPE (wrapper)))
906 tree *p, sub = wrapper;
908 restart:
909 /* Set p to point to the body of the wrapper. */
910 switch (TREE_CODE (sub))
912 case BIND_EXPR:
913 /* For a BIND_EXPR, the body is operand 1. */
914 p = &BIND_EXPR_BODY (sub);
915 break;
917 default:
918 p = &TREE_OPERAND (sub, 0);
919 break;
922 /* Advance to the last statement. Set all container types to void. */
923 if (TREE_CODE (*p) == STATEMENT_LIST)
925 tree_stmt_iterator i = tsi_last (*p);
926 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
928 else
930 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
932 TREE_SIDE_EFFECTS (*p) = 1;
933 TREE_TYPE (*p) = void_type_node;
937 if (p == NULL || IS_EMPTY_STMT (*p))
939 /* Look through exception handling. */
940 else if (TREE_CODE (*p) == TRY_FINALLY_EXPR
941 || TREE_CODE (*p) == TRY_CATCH_EXPR)
943 sub = *p;
944 goto restart;
946 /* The C++ frontend already did this for us. */
947 else if (TREE_CODE (*p) == INIT_EXPR
948 || TREE_CODE (*p) == TARGET_EXPR)
949 temp = TREE_OPERAND (*p, 0);
950 /* If we're returning a dereference, move the dereference
951 outside the wrapper. */
952 else if (TREE_CODE (*p) == INDIRECT_REF)
954 tree ptr = TREE_OPERAND (*p, 0);
955 temp = create_tmp_var (TREE_TYPE (ptr), "retval");
956 *p = build2 (MODIFY_EXPR, TREE_TYPE (ptr), temp, ptr);
957 temp = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (temp)), temp);
958 /* If this is a BIND_EXPR for a const inline function, it might not
959 have TREE_SIDE_EFFECTS set. That is no longer accurate. */
960 TREE_SIDE_EFFECTS (wrapper) = 1;
962 else
964 if (!temp)
965 temp = create_tmp_var (TREE_TYPE (wrapper), "retval");
966 *p = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, *p);
967 TREE_SIDE_EFFECTS (wrapper) = 1;
970 TREE_TYPE (wrapper) = void_type_node;
971 return temp;
974 return NULL_TREE;
977 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
978 a temporary through which they communicate. */
980 static void
981 build_stack_save_restore (tree *save, tree *restore)
983 tree save_call, tmp_var;
985 save_call =
986 build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_SAVE],
987 NULL_TREE);
988 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
990 *save = build2 (MODIFY_EXPR, ptr_type_node, tmp_var, save_call);
991 *restore =
992 build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
993 tree_cons (NULL_TREE, tmp_var, NULL_TREE));
996 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
998 static enum gimplify_status
999 gimplify_bind_expr (tree *expr_p, tree temp, tree *pre_p)
1001 tree bind_expr = *expr_p;
1002 bool old_save_stack = gimplify_ctxp->save_stack;
1003 tree t;
1005 temp = voidify_wrapper_expr (bind_expr, temp);
1007 /* Mark variables seen in this bind expr. */
1008 for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
1010 if (TREE_CODE (t) == VAR_DECL)
1011 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1013 /* Preliminarily mark non-addressed complex variables as eligible
1014 for promotion to gimple registers. We'll transform their uses
1015 as we find them. */
1016 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1017 && !TREE_THIS_VOLATILE (t)
1018 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1019 && !needs_to_live_in_memory (t))
1020 DECL_COMPLEX_GIMPLE_REG_P (t) = 1;
1023 /* Mark variables seen in this bind expr as locals. */
1024 if (gimplify_omp_ctxp)
1026 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1028 for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
1029 if (TREE_CODE (t) == VAR_DECL && !is_global_var (t))
1030 omp_add_variable (ctx, t, GOVD_LOCAL | GOVD_SEEN);
1033 gimple_push_bind_expr (bind_expr);
1034 gimplify_ctxp->save_stack = false;
1036 gimplify_to_stmt_list (&BIND_EXPR_BODY (bind_expr));
1038 if (gimplify_ctxp->save_stack)
1040 tree stack_save, stack_restore;
1042 /* Save stack on entry and restore it on exit. Add a try_finally
1043 block to achieve this. Note that mudflap depends on the
1044 format of the emitted code: see mx_register_decls(). */
1045 build_stack_save_restore (&stack_save, &stack_restore);
1047 t = build2 (TRY_FINALLY_EXPR, void_type_node,
1048 BIND_EXPR_BODY (bind_expr), NULL_TREE);
1049 append_to_statement_list (stack_restore, &TREE_OPERAND (t, 1));
1051 BIND_EXPR_BODY (bind_expr) = NULL_TREE;
1052 append_to_statement_list (stack_save, &BIND_EXPR_BODY (bind_expr));
1053 append_to_statement_list (t, &BIND_EXPR_BODY (bind_expr));
1056 gimplify_ctxp->save_stack = old_save_stack;
1057 gimple_pop_bind_expr ();
1059 if (temp)
1061 *expr_p = temp;
1062 append_to_statement_list (bind_expr, pre_p);
1063 return GS_OK;
1065 else
1066 return GS_ALL_DONE;
1069 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1070 GIMPLE value, it is assigned to a new temporary and the statement is
1071 re-written to return the temporary.
1073 PRE_P points to the list where side effects that must happen before
1074 STMT should be stored. */
1076 static enum gimplify_status
1077 gimplify_return_expr (tree stmt, tree *pre_p)
1079 tree ret_expr = TREE_OPERAND (stmt, 0);
1080 tree result_decl, result;
1082 if (!ret_expr || TREE_CODE (ret_expr) == RESULT_DECL
1083 || ret_expr == error_mark_node)
1084 return GS_ALL_DONE;
1086 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1087 result_decl = NULL_TREE;
1088 else
1090 result_decl = TREE_OPERAND (ret_expr, 0);
1091 if (TREE_CODE (result_decl) == INDIRECT_REF)
1092 /* See through a return by reference. */
1093 result_decl = TREE_OPERAND (result_decl, 0);
1095 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1096 || TREE_CODE (ret_expr) == INIT_EXPR)
1097 && TREE_CODE (result_decl) == RESULT_DECL);
1100 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1101 Recall that aggregate_value_p is FALSE for any aggregate type that is
1102 returned in registers. If we're returning values in registers, then
1103 we don't want to extend the lifetime of the RESULT_DECL, particularly
1104 across another call. In addition, for those aggregates for which
1105 hard_function_value generates a PARALLEL, we'll die during normal
1106 expansion of structure assignments; there's special code in expand_return
1107 to handle this case that does not exist in expand_expr. */
1108 if (!result_decl
1109 || aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1110 result = result_decl;
1111 else if (gimplify_ctxp->return_temp)
1112 result = gimplify_ctxp->return_temp;
1113 else
1115 result = create_tmp_var (TREE_TYPE (result_decl), NULL);
1117 /* ??? With complex control flow (usually involving abnormal edges),
1118 we can wind up warning about an uninitialized value for this. Due
1119 to how this variable is constructed and initialized, this is never
1120 true. Give up and never warn. */
1121 TREE_NO_WARNING (result) = 1;
1123 gimplify_ctxp->return_temp = result;
1126 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1127 Then gimplify the whole thing. */
1128 if (result != result_decl)
1129 TREE_OPERAND (ret_expr, 0) = result;
1131 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1133 /* If we didn't use a temporary, then the result is just the result_decl.
1134 Otherwise we need a simple copy. This should already be gimple. */
1135 if (result == result_decl)
1136 ret_expr = result;
1137 else
1138 ret_expr = build2 (MODIFY_EXPR, TREE_TYPE (result), result_decl, result);
1139 TREE_OPERAND (stmt, 0) = ret_expr;
1141 return GS_ALL_DONE;
1144 /* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
1145 and initialization explicit. */
1147 static enum gimplify_status
1148 gimplify_decl_expr (tree *stmt_p)
1150 tree stmt = *stmt_p;
1151 tree decl = DECL_EXPR_DECL (stmt);
1153 *stmt_p = NULL_TREE;
1155 if (TREE_TYPE (decl) == error_mark_node)
1156 return GS_ERROR;
1158 if ((TREE_CODE (decl) == TYPE_DECL
1159 || TREE_CODE (decl) == VAR_DECL)
1160 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1161 gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1163 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1165 tree init = DECL_INITIAL (decl);
1167 if (!TREE_CONSTANT (DECL_SIZE (decl)))
1169 /* This is a variable-sized decl. Simplify its size and mark it
1170 for deferred expansion. Note that mudflap depends on the format
1171 of the emitted code: see mx_register_decls(). */
1172 tree t, args, addr, ptr_type;
1174 gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p);
1175 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1177 /* All occurrences of this decl in final gimplified code will be
1178 replaced by indirection. Setting DECL_VALUE_EXPR does two
1179 things: First, it lets the rest of the gimplifier know what
1180 replacement to use. Second, it lets the debug info know
1181 where to find the value. */
1182 ptr_type = build_pointer_type (TREE_TYPE (decl));
1183 addr = create_tmp_var (ptr_type, get_name (decl));
1184 DECL_IGNORED_P (addr) = 0;
1185 t = build_fold_indirect_ref (addr);
1186 SET_DECL_VALUE_EXPR (decl, t);
1187 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1189 args = tree_cons (NULL, DECL_SIZE_UNIT (decl), NULL);
1190 t = built_in_decls[BUILT_IN_ALLOCA];
1191 t = build_function_call_expr (t, args);
1192 t = fold_convert (ptr_type, t);
1193 t = build2 (MODIFY_EXPR, void_type_node, addr, t);
1195 gimplify_and_add (t, stmt_p);
1197 /* Indicate that we need to restore the stack level when the
1198 enclosing BIND_EXPR is exited. */
1199 gimplify_ctxp->save_stack = true;
1202 if (init && init != error_mark_node)
1204 if (!TREE_STATIC (decl))
1206 DECL_INITIAL (decl) = NULL_TREE;
1207 init = build2 (INIT_EXPR, void_type_node, decl, init);
1208 gimplify_and_add (init, stmt_p);
1210 else
1211 /* We must still examine initializers for static variables
1212 as they may contain a label address. */
1213 walk_tree (&init, force_labels_r, NULL, NULL);
1216 /* This decl isn't mentioned in the enclosing block, so add it to the
1217 list of temps. FIXME it seems a bit of a kludge to say that
1218 anonymous artificial vars aren't pushed, but everything else is. */
1219 if (DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1220 gimple_add_tmp_var (decl);
1223 return GS_ALL_DONE;
1226 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1227 and replacing the LOOP_EXPR with goto, but if the loop contains an
1228 EXIT_EXPR, we need to append a label for it to jump to. */
1230 static enum gimplify_status
1231 gimplify_loop_expr (tree *expr_p, tree *pre_p)
1233 tree saved_label = gimplify_ctxp->exit_label;
1234 tree start_label = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
1235 tree jump_stmt = build_and_jump (&LABEL_EXPR_LABEL (start_label));
1237 append_to_statement_list (start_label, pre_p);
1239 gimplify_ctxp->exit_label = NULL_TREE;
1241 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1243 if (gimplify_ctxp->exit_label)
1245 append_to_statement_list (jump_stmt, pre_p);
1246 *expr_p = build1 (LABEL_EXPR, void_type_node, gimplify_ctxp->exit_label);
1248 else
1249 *expr_p = jump_stmt;
1251 gimplify_ctxp->exit_label = saved_label;
1253 return GS_ALL_DONE;
1256 /* Compare two case labels. Because the front end should already have
1257 made sure that case ranges do not overlap, it is enough to only compare
1258 the CASE_LOW values of each case label. */
1260 static int
1261 compare_case_labels (const void *p1, const void *p2)
1263 tree case1 = *(tree *)p1;
1264 tree case2 = *(tree *)p2;
1266 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1269 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1271 void
1272 sort_case_labels (tree label_vec)
1274 size_t len = TREE_VEC_LENGTH (label_vec);
1275 tree default_case = TREE_VEC_ELT (label_vec, len - 1);
1277 if (CASE_LOW (default_case))
1279 size_t i;
1281 /* The last label in the vector should be the default case
1282 but it is not. */
1283 for (i = 0; i < len; ++i)
1285 tree t = TREE_VEC_ELT (label_vec, i);
1286 if (!CASE_LOW (t))
1288 default_case = t;
1289 TREE_VEC_ELT (label_vec, i) = TREE_VEC_ELT (label_vec, len - 1);
1290 TREE_VEC_ELT (label_vec, len - 1) = default_case;
1291 break;
1296 qsort (&TREE_VEC_ELT (label_vec, 0), len - 1, sizeof (tree),
1297 compare_case_labels);
1300 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1301 branch to. */
1303 static enum gimplify_status
1304 gimplify_switch_expr (tree *expr_p, tree *pre_p)
1306 tree switch_expr = *expr_p;
1307 enum gimplify_status ret;
1309 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL,
1310 is_gimple_val, fb_rvalue);
1312 if (SWITCH_BODY (switch_expr))
1314 VEC(tree,heap) *labels, *saved_labels;
1315 tree label_vec, default_case = NULL_TREE;
1316 size_t i, len;
1318 /* If someone can be bothered to fill in the labels, they can
1319 be bothered to null out the body too. */
1320 gcc_assert (!SWITCH_LABELS (switch_expr));
1322 saved_labels = gimplify_ctxp->case_labels;
1323 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1325 gimplify_to_stmt_list (&SWITCH_BODY (switch_expr));
1327 labels = gimplify_ctxp->case_labels;
1328 gimplify_ctxp->case_labels = saved_labels;
1330 len = VEC_length (tree, labels);
1332 for (i = 0; i < len; ++i)
1334 tree t = VEC_index (tree, labels, i);
1335 if (!CASE_LOW (t))
1337 /* The default case must be the last label in the list. */
1338 default_case = t;
1339 VEC_replace (tree, labels, i, VEC_index (tree, labels, len - 1));
1340 len--;
1341 break;
1345 label_vec = make_tree_vec (len + 1);
1346 SWITCH_LABELS (*expr_p) = label_vec;
1347 append_to_statement_list (switch_expr, pre_p);
1349 if (! default_case)
1351 /* If the switch has no default label, add one, so that we jump
1352 around the switch body. */
1353 default_case = build3 (CASE_LABEL_EXPR, void_type_node, NULL_TREE,
1354 NULL_TREE, create_artificial_label ());
1355 append_to_statement_list (SWITCH_BODY (switch_expr), pre_p);
1356 *expr_p = build1 (LABEL_EXPR, void_type_node,
1357 CASE_LABEL (default_case));
1359 else
1360 *expr_p = SWITCH_BODY (switch_expr);
1362 for (i = 0; i < len; ++i)
1363 TREE_VEC_ELT (label_vec, i) = VEC_index (tree, labels, i);
1364 TREE_VEC_ELT (label_vec, len) = default_case;
1366 VEC_free (tree, heap, labels);
1368 sort_case_labels (label_vec);
1370 SWITCH_BODY (switch_expr) = NULL;
1372 else
1373 gcc_assert (SWITCH_LABELS (switch_expr));
1375 return ret;
1378 static enum gimplify_status
1379 gimplify_case_label_expr (tree *expr_p)
1381 tree expr = *expr_p;
1382 struct gimplify_ctx *ctxp;
1384 /* Invalid OpenMP programs can play Duff's Device type games with
1385 #pragma omp parallel. At least in the C front end, we don't
1386 detect such invalid branches until after gimplification. */
1387 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1388 if (ctxp->case_labels)
1389 break;
1391 VEC_safe_push (tree, heap, ctxp->case_labels, expr);
1392 *expr_p = build1 (LABEL_EXPR, void_type_node, CASE_LABEL (expr));
1393 return GS_ALL_DONE;
1396 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1397 if necessary. */
1399 tree
1400 build_and_jump (tree *label_p)
1402 if (label_p == NULL)
1403 /* If there's nowhere to jump, just fall through. */
1404 return NULL_TREE;
1406 if (*label_p == NULL_TREE)
1408 tree label = create_artificial_label ();
1409 *label_p = label;
1412 return build1 (GOTO_EXPR, void_type_node, *label_p);
1415 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1416 This also involves building a label to jump to and communicating it to
1417 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1419 static enum gimplify_status
1420 gimplify_exit_expr (tree *expr_p)
1422 tree cond = TREE_OPERAND (*expr_p, 0);
1423 tree expr;
1425 expr = build_and_jump (&gimplify_ctxp->exit_label);
1426 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1427 *expr_p = expr;
1429 return GS_OK;
1432 /* A helper function to be called via walk_tree. Mark all labels under *TP
1433 as being forced. To be called for DECL_INITIAL of static variables. */
1435 tree
1436 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1438 if (TYPE_P (*tp))
1439 *walk_subtrees = 0;
1440 if (TREE_CODE (*tp) == LABEL_DECL)
1441 FORCED_LABEL (*tp) = 1;
1443 return NULL_TREE;
1446 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1447 different from its canonical type, wrap the whole thing inside a
1448 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1449 type.
1451 The canonical type of a COMPONENT_REF is the type of the field being
1452 referenced--unless the field is a bit-field which can be read directly
1453 in a smaller mode, in which case the canonical type is the
1454 sign-appropriate type corresponding to that mode. */
1456 static void
1457 canonicalize_component_ref (tree *expr_p)
1459 tree expr = *expr_p;
1460 tree type;
1462 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1464 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1465 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1466 else
1467 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1469 if (TREE_TYPE (expr) != type)
1471 tree old_type = TREE_TYPE (expr);
1473 /* Set the type of the COMPONENT_REF to the underlying type. */
1474 TREE_TYPE (expr) = type;
1476 /* And wrap the whole thing inside a NOP_EXPR. */
1477 expr = build1 (NOP_EXPR, old_type, expr);
1479 *expr_p = expr;
1483 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1484 to foo, embed that change in the ADDR_EXPR by converting
1485 T array[U];
1486 (T *)&array
1488 &array[L]
1489 where L is the lower bound. For simplicity, only do this for constant
1490 lower bound. */
1492 static void
1493 canonicalize_addr_expr (tree *expr_p)
1495 tree expr = *expr_p;
1496 tree ctype = TREE_TYPE (expr);
1497 tree addr_expr = TREE_OPERAND (expr, 0);
1498 tree atype = TREE_TYPE (addr_expr);
1499 tree dctype, datype, ddatype, otype, obj_expr;
1501 /* Both cast and addr_expr types should be pointers. */
1502 if (!POINTER_TYPE_P (ctype) || !POINTER_TYPE_P (atype))
1503 return;
1505 /* The addr_expr type should be a pointer to an array. */
1506 datype = TREE_TYPE (atype);
1507 if (TREE_CODE (datype) != ARRAY_TYPE)
1508 return;
1510 /* Both cast and addr_expr types should address the same object type. */
1511 dctype = TREE_TYPE (ctype);
1512 ddatype = TREE_TYPE (datype);
1513 if (!lang_hooks.types_compatible_p (ddatype, dctype))
1514 return;
1516 /* The addr_expr and the object type should match. */
1517 obj_expr = TREE_OPERAND (addr_expr, 0);
1518 otype = TREE_TYPE (obj_expr);
1519 if (!lang_hooks.types_compatible_p (otype, datype))
1520 return;
1522 /* The lower bound and element sizes must be constant. */
1523 if (!TYPE_SIZE_UNIT (dctype)
1524 || TREE_CODE (TYPE_SIZE_UNIT (dctype)) != INTEGER_CST
1525 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1526 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1527 return;
1529 /* All checks succeeded. Build a new node to merge the cast. */
1530 *expr_p = build4 (ARRAY_REF, dctype, obj_expr,
1531 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1532 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1533 size_binop (EXACT_DIV_EXPR, TYPE_SIZE_UNIT (dctype),
1534 size_int (TYPE_ALIGN_UNIT (dctype))));
1535 *expr_p = build1 (ADDR_EXPR, ctype, *expr_p);
1538 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1539 underneath as appropriate. */
1541 static enum gimplify_status
1542 gimplify_conversion (tree *expr_p)
1544 gcc_assert (TREE_CODE (*expr_p) == NOP_EXPR
1545 || TREE_CODE (*expr_p) == CONVERT_EXPR);
1547 /* Then strip away all but the outermost conversion. */
1548 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1550 /* And remove the outermost conversion if it's useless. */
1551 if (tree_ssa_useless_type_conversion (*expr_p))
1552 *expr_p = TREE_OPERAND (*expr_p, 0);
1554 /* If we still have a conversion at the toplevel,
1555 then canonicalize some constructs. */
1556 if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1558 tree sub = TREE_OPERAND (*expr_p, 0);
1560 /* If a NOP conversion is changing the type of a COMPONENT_REF
1561 expression, then canonicalize its type now in order to expose more
1562 redundant conversions. */
1563 if (TREE_CODE (sub) == COMPONENT_REF)
1564 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1566 /* If a NOP conversion is changing a pointer to array of foo
1567 to a pointer to foo, embed that change in the ADDR_EXPR. */
1568 else if (TREE_CODE (sub) == ADDR_EXPR)
1569 canonicalize_addr_expr (expr_p);
1572 return GS_OK;
1575 /* Gimplify a VAR_DECL or PARM_DECL. Returns GS_OK if we expanded a
1576 DECL_VALUE_EXPR, and it's worth re-examining things. */
1578 static enum gimplify_status
1579 gimplify_var_or_parm_decl (tree *expr_p)
1581 tree decl = *expr_p;
1583 /* ??? If this is a local variable, and it has not been seen in any
1584 outer BIND_EXPR, then it's probably the result of a duplicate
1585 declaration, for which we've already issued an error. It would
1586 be really nice if the front end wouldn't leak these at all.
1587 Currently the only known culprit is C++ destructors, as seen
1588 in g++.old-deja/g++.jason/binding.C. */
1589 if (TREE_CODE (decl) == VAR_DECL
1590 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
1591 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
1592 && decl_function_context (decl) == current_function_decl)
1594 gcc_assert (errorcount || sorrycount);
1595 return GS_ERROR;
1598 /* When within an OpenMP context, notice uses of variables. */
1599 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
1600 return GS_ALL_DONE;
1602 /* If the decl is an alias for another expression, substitute it now. */
1603 if (DECL_HAS_VALUE_EXPR_P (decl))
1605 *expr_p = unshare_expr (DECL_VALUE_EXPR (decl));
1606 return GS_OK;
1609 return GS_ALL_DONE;
1613 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1614 node pointed to by EXPR_P.
1616 compound_lval
1617 : min_lval '[' val ']'
1618 | min_lval '.' ID
1619 | compound_lval '[' val ']'
1620 | compound_lval '.' ID
1622 This is not part of the original SIMPLE definition, which separates
1623 array and member references, but it seems reasonable to handle them
1624 together. Also, this way we don't run into problems with union
1625 aliasing; gcc requires that for accesses through a union to alias, the
1626 union reference must be explicit, which was not always the case when we
1627 were splitting up array and member refs.
1629 PRE_P points to the list where side effects that must happen before
1630 *EXPR_P should be stored.
1632 POST_P points to the list where side effects that must happen after
1633 *EXPR_P should be stored. */
1635 static enum gimplify_status
1636 gimplify_compound_lval (tree *expr_p, tree *pre_p,
1637 tree *post_p, fallback_t fallback)
1639 tree *p;
1640 VEC(tree,heap) *stack;
1641 enum gimplify_status ret = GS_OK, tret;
1642 int i;
1644 /* Create a stack of the subexpressions so later we can walk them in
1645 order from inner to outer. */
1646 stack = VEC_alloc (tree, heap, 10);
1648 /* We can handle anything that get_inner_reference can deal with. */
1649 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
1651 restart:
1652 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
1653 if (TREE_CODE (*p) == INDIRECT_REF)
1654 *p = fold_indirect_ref (*p);
1656 if (handled_component_p (*p))
1658 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
1659 additional COMPONENT_REFs. */
1660 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
1661 && gimplify_var_or_parm_decl (p) == GS_OK)
1662 goto restart;
1663 else
1664 break;
1666 VEC_safe_push (tree, heap, stack, *p);
1669 gcc_assert (VEC_length (tree, stack));
1671 /* Now STACK is a stack of pointers to all the refs we've walked through
1672 and P points to the innermost expression.
1674 Java requires that we elaborated nodes in source order. That
1675 means we must gimplify the inner expression followed by each of
1676 the indices, in order. But we can't gimplify the inner
1677 expression until we deal with any variable bounds, sizes, or
1678 positions in order to deal with PLACEHOLDER_EXPRs.
1680 So we do this in three steps. First we deal with the annotations
1681 for any variables in the components, then we gimplify the base,
1682 then we gimplify any indices, from left to right. */
1683 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
1685 tree t = VEC_index (tree, stack, i);
1687 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1689 /* Gimplify the low bound and element type size and put them into
1690 the ARRAY_REF. If these values are set, they have already been
1691 gimplified. */
1692 if (!TREE_OPERAND (t, 2))
1694 tree low = unshare_expr (array_ref_low_bound (t));
1695 if (!is_gimple_min_invariant (low))
1697 TREE_OPERAND (t, 2) = low;
1698 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1699 is_gimple_formal_tmp_reg, fb_rvalue);
1700 ret = MIN (ret, tret);
1704 if (!TREE_OPERAND (t, 3))
1706 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
1707 tree elmt_size = unshare_expr (array_ref_element_size (t));
1708 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
1710 /* Divide the element size by the alignment of the element
1711 type (above). */
1712 elmt_size = size_binop (EXACT_DIV_EXPR, elmt_size, factor);
1714 if (!is_gimple_min_invariant (elmt_size))
1716 TREE_OPERAND (t, 3) = elmt_size;
1717 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
1718 is_gimple_formal_tmp_reg, fb_rvalue);
1719 ret = MIN (ret, tret);
1723 else if (TREE_CODE (t) == COMPONENT_REF)
1725 /* Set the field offset into T and gimplify it. */
1726 if (!TREE_OPERAND (t, 2))
1728 tree offset = unshare_expr (component_ref_field_offset (t));
1729 tree field = TREE_OPERAND (t, 1);
1730 tree factor
1731 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
1733 /* Divide the offset by its alignment. */
1734 offset = size_binop (EXACT_DIV_EXPR, offset, factor);
1736 if (!is_gimple_min_invariant (offset))
1738 TREE_OPERAND (t, 2) = offset;
1739 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1740 is_gimple_formal_tmp_reg, fb_rvalue);
1741 ret = MIN (ret, tret);
1747 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
1748 so as to match the min_lval predicate. Failure to do so may result
1749 in the creation of large aggregate temporaries. */
1750 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
1751 fallback | fb_lvalue);
1752 ret = MIN (ret, tret);
1754 /* And finally, the indices and operands to BIT_FIELD_REF. During this
1755 loop we also remove any useless conversions. */
1756 for (; VEC_length (tree, stack) > 0; )
1758 tree t = VEC_pop (tree, stack);
1760 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1762 /* Gimplify the dimension.
1763 Temporary fix for gcc.c-torture/execute/20040313-1.c.
1764 Gimplify non-constant array indices into a temporary
1765 variable.
1766 FIXME - The real fix is to gimplify post-modify
1767 expressions into a minimal gimple lvalue. However, that
1768 exposes bugs in alias analysis. The alias analyzer does
1769 not handle &PTR->FIELD very well. Will fix after the
1770 branch is merged into mainline (dnovillo 2004-05-03). */
1771 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
1773 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1774 is_gimple_formal_tmp_reg, fb_rvalue);
1775 ret = MIN (ret, tret);
1778 else if (TREE_CODE (t) == BIT_FIELD_REF)
1780 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1781 is_gimple_val, fb_rvalue);
1782 ret = MIN (ret, tret);
1783 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1784 is_gimple_val, fb_rvalue);
1785 ret = MIN (ret, tret);
1788 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
1790 /* The innermost expression P may have originally had TREE_SIDE_EFFECTS
1791 set which would have caused all the outer expressions in EXPR_P
1792 leading to P to also have had TREE_SIDE_EFFECTS set. */
1793 recalculate_side_effects (t);
1796 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1797 ret = MIN (ret, tret);
1799 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
1800 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
1802 canonicalize_component_ref (expr_p);
1803 ret = MIN (ret, GS_OK);
1806 VEC_free (tree, heap, stack);
1808 return ret;
1811 /* Gimplify the self modifying expression pointed to by EXPR_P
1812 (++, --, +=, -=).
1814 PRE_P points to the list where side effects that must happen before
1815 *EXPR_P should be stored.
1817 POST_P points to the list where side effects that must happen after
1818 *EXPR_P should be stored.
1820 WANT_VALUE is nonzero iff we want to use the value of this expression
1821 in another expression. */
1823 static enum gimplify_status
1824 gimplify_self_mod_expr (tree *expr_p, tree *pre_p, tree *post_p,
1825 bool want_value)
1827 enum tree_code code;
1828 tree lhs, lvalue, rhs, t1;
1829 bool postfix;
1830 enum tree_code arith_code;
1831 enum gimplify_status ret;
1833 code = TREE_CODE (*expr_p);
1835 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
1836 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
1838 /* Prefix or postfix? */
1839 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
1840 /* Faster to treat as prefix if result is not used. */
1841 postfix = want_value;
1842 else
1843 postfix = false;
1845 /* Add or subtract? */
1846 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
1847 arith_code = PLUS_EXPR;
1848 else
1849 arith_code = MINUS_EXPR;
1851 /* Gimplify the LHS into a GIMPLE lvalue. */
1852 lvalue = TREE_OPERAND (*expr_p, 0);
1853 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1854 if (ret == GS_ERROR)
1855 return ret;
1857 /* Extract the operands to the arithmetic operation. */
1858 lhs = lvalue;
1859 rhs = TREE_OPERAND (*expr_p, 1);
1861 /* For postfix operator, we evaluate the LHS to an rvalue and then use
1862 that as the result value and in the postqueue operation. */
1863 if (postfix)
1865 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
1866 if (ret == GS_ERROR)
1867 return ret;
1870 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
1871 t1 = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
1873 if (postfix)
1875 gimplify_and_add (t1, post_p);
1876 *expr_p = lhs;
1877 return GS_ALL_DONE;
1879 else
1881 *expr_p = t1;
1882 return GS_OK;
1886 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
1888 static void
1889 maybe_with_size_expr (tree *expr_p)
1891 tree expr = *expr_p;
1892 tree type = TREE_TYPE (expr);
1893 tree size;
1895 /* If we've already wrapped this or the type is error_mark_node, we can't do
1896 anything. */
1897 if (TREE_CODE (expr) == WITH_SIZE_EXPR
1898 || type == error_mark_node)
1899 return;
1901 /* If the size isn't known or is a constant, we have nothing to do. */
1902 size = TYPE_SIZE_UNIT (type);
1903 if (!size || TREE_CODE (size) == INTEGER_CST)
1904 return;
1906 /* Otherwise, make a WITH_SIZE_EXPR. */
1907 size = unshare_expr (size);
1908 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
1909 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
1912 /* Subroutine of gimplify_call_expr: Gimplify a single argument. */
1914 static enum gimplify_status
1915 gimplify_arg (tree *expr_p, tree *pre_p)
1917 bool (*test) (tree);
1918 fallback_t fb;
1920 /* In general, we allow lvalues for function arguments to avoid
1921 extra overhead of copying large aggregates out of even larger
1922 aggregates into temporaries only to copy the temporaries to
1923 the argument list. Make optimizers happy by pulling out to
1924 temporaries those types that fit in registers. */
1925 if (is_gimple_reg_type (TREE_TYPE (*expr_p)))
1926 test = is_gimple_val, fb = fb_rvalue;
1927 else
1928 test = is_gimple_lvalue, fb = fb_either;
1930 /* If this is a variable sized type, we must remember the size. */
1931 maybe_with_size_expr (expr_p);
1933 /* There is a sequence point before a function call. Side effects in
1934 the argument list must occur before the actual call. So, when
1935 gimplifying arguments, force gimplify_expr to use an internal
1936 post queue which is then appended to the end of PRE_P. */
1937 return gimplify_expr (expr_p, pre_p, NULL, test, fb);
1940 /* Gimplify the CALL_EXPR node pointed to by EXPR_P. PRE_P points to the
1941 list where side effects that must happen before *EXPR_P should be stored.
1942 WANT_VALUE is true if the result of the call is desired. */
1944 static enum gimplify_status
1945 gimplify_call_expr (tree *expr_p, tree *pre_p, bool want_value)
1947 tree decl;
1948 tree arglist;
1949 enum gimplify_status ret;
1951 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
1953 /* For reliable diagnostics during inlining, it is necessary that
1954 every call_expr be annotated with file and line. */
1955 if (! EXPR_HAS_LOCATION (*expr_p))
1956 SET_EXPR_LOCATION (*expr_p, input_location);
1958 /* This may be a call to a builtin function.
1960 Builtin function calls may be transformed into different
1961 (and more efficient) builtin function calls under certain
1962 circumstances. Unfortunately, gimplification can muck things
1963 up enough that the builtin expanders are not aware that certain
1964 transformations are still valid.
1966 So we attempt transformation/gimplification of the call before
1967 we gimplify the CALL_EXPR. At this time we do not manage to
1968 transform all calls in the same manner as the expanders do, but
1969 we do transform most of them. */
1970 decl = get_callee_fndecl (*expr_p);
1971 if (decl && DECL_BUILT_IN (decl))
1973 tree fndecl = get_callee_fndecl (*expr_p);
1974 tree arglist = TREE_OPERAND (*expr_p, 1);
1975 tree new = fold_builtin (fndecl, arglist, !want_value);
1977 if (new && new != *expr_p)
1979 /* There was a transformation of this call which computes the
1980 same value, but in a more efficient way. Return and try
1981 again. */
1982 *expr_p = new;
1983 return GS_OK;
1986 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1987 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_START)
1989 if (!arglist || !TREE_CHAIN (arglist))
1991 error ("too few arguments to function %<va_start%>");
1992 *expr_p = build_empty_stmt ();
1993 return GS_OK;
1996 if (fold_builtin_next_arg (TREE_CHAIN (arglist)))
1998 *expr_p = build_empty_stmt ();
1999 return GS_OK;
2001 /* Avoid gimplifying the second argument to va_start, which needs
2002 to be the plain PARM_DECL. */
2003 return gimplify_arg (&TREE_VALUE (TREE_OPERAND (*expr_p, 1)), pre_p);
2007 /* There is a sequence point before the call, so any side effects in
2008 the calling expression must occur before the actual call. Force
2009 gimplify_expr to use an internal post queue. */
2010 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, NULL,
2011 is_gimple_call_addr, fb_rvalue);
2013 if (PUSH_ARGS_REVERSED)
2014 TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
2015 for (arglist = TREE_OPERAND (*expr_p, 1); arglist;
2016 arglist = TREE_CHAIN (arglist))
2018 enum gimplify_status t;
2020 t = gimplify_arg (&TREE_VALUE (arglist), pre_p);
2022 if (t == GS_ERROR)
2023 ret = GS_ERROR;
2025 if (PUSH_ARGS_REVERSED)
2026 TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
2028 /* Try this again in case gimplification exposed something. */
2029 if (ret != GS_ERROR && decl && DECL_BUILT_IN (decl))
2031 tree fndecl = get_callee_fndecl (*expr_p);
2032 tree arglist = TREE_OPERAND (*expr_p, 1);
2033 tree new = fold_builtin (fndecl, arglist, !want_value);
2035 if (new && new != *expr_p)
2037 /* There was a transformation of this call which computes the
2038 same value, but in a more efficient way. Return and try
2039 again. */
2040 *expr_p = new;
2041 return GS_OK;
2045 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2046 decl. This allows us to eliminate redundant or useless
2047 calls to "const" functions. */
2048 if (TREE_CODE (*expr_p) == CALL_EXPR
2049 && (call_expr_flags (*expr_p) & (ECF_CONST | ECF_PURE)))
2050 TREE_SIDE_EFFECTS (*expr_p) = 0;
2052 return ret;
2055 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2056 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2058 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2059 condition is true or false, respectively. If null, we should generate
2060 our own to skip over the evaluation of this specific expression.
2062 This function is the tree equivalent of do_jump.
2064 shortcut_cond_r should only be called by shortcut_cond_expr. */
2066 static tree
2067 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p)
2069 tree local_label = NULL_TREE;
2070 tree t, expr = NULL;
2072 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2073 retain the shortcut semantics. Just insert the gotos here;
2074 shortcut_cond_expr will append the real blocks later. */
2075 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2077 /* Turn if (a && b) into
2079 if (a); else goto no;
2080 if (b) goto yes; else goto no;
2081 (no:) */
2083 if (false_label_p == NULL)
2084 false_label_p = &local_label;
2086 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p);
2087 append_to_statement_list (t, &expr);
2089 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2090 false_label_p);
2091 append_to_statement_list (t, &expr);
2093 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2095 /* Turn if (a || b) into
2097 if (a) goto yes;
2098 if (b) goto yes; else goto no;
2099 (yes:) */
2101 if (true_label_p == NULL)
2102 true_label_p = &local_label;
2104 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL);
2105 append_to_statement_list (t, &expr);
2107 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2108 false_label_p);
2109 append_to_statement_list (t, &expr);
2111 else if (TREE_CODE (pred) == COND_EXPR)
2113 /* As long as we're messing with gotos, turn if (a ? b : c) into
2114 if (a)
2115 if (b) goto yes; else goto no;
2116 else
2117 if (c) goto yes; else goto no; */
2118 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2119 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2120 false_label_p),
2121 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2122 false_label_p));
2124 else
2126 expr = build3 (COND_EXPR, void_type_node, pred,
2127 build_and_jump (true_label_p),
2128 build_and_jump (false_label_p));
2131 if (local_label)
2133 t = build1 (LABEL_EXPR, void_type_node, local_label);
2134 append_to_statement_list (t, &expr);
2137 return expr;
2140 static tree
2141 shortcut_cond_expr (tree expr)
2143 tree pred = TREE_OPERAND (expr, 0);
2144 tree then_ = TREE_OPERAND (expr, 1);
2145 tree else_ = TREE_OPERAND (expr, 2);
2146 tree true_label, false_label, end_label, t;
2147 tree *true_label_p;
2148 tree *false_label_p;
2149 bool emit_end, emit_false, jump_over_else;
2150 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2151 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2153 /* First do simple transformations. */
2154 if (!else_se)
2156 /* If there is no 'else', turn (a && b) into if (a) if (b). */
2157 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2159 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2160 then_ = shortcut_cond_expr (expr);
2161 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2162 pred = TREE_OPERAND (pred, 0);
2163 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2166 if (!then_se)
2168 /* If there is no 'then', turn
2169 if (a || b); else d
2170 into
2171 if (a); else if (b); else d. */
2172 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2174 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2175 else_ = shortcut_cond_expr (expr);
2176 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2177 pred = TREE_OPERAND (pred, 0);
2178 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2182 /* If we're done, great. */
2183 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2184 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2185 return expr;
2187 /* Otherwise we need to mess with gotos. Change
2188 if (a) c; else d;
2190 if (a); else goto no;
2191 c; goto end;
2192 no: d; end:
2193 and recursively gimplify the condition. */
2195 true_label = false_label = end_label = NULL_TREE;
2197 /* If our arms just jump somewhere, hijack those labels so we don't
2198 generate jumps to jumps. */
2200 if (then_
2201 && TREE_CODE (then_) == GOTO_EXPR
2202 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2204 true_label = GOTO_DESTINATION (then_);
2205 then_ = NULL;
2206 then_se = false;
2209 if (else_
2210 && TREE_CODE (else_) == GOTO_EXPR
2211 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2213 false_label = GOTO_DESTINATION (else_);
2214 else_ = NULL;
2215 else_se = false;
2218 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2219 if (true_label)
2220 true_label_p = &true_label;
2221 else
2222 true_label_p = NULL;
2224 /* The 'else' branch also needs a label if it contains interesting code. */
2225 if (false_label || else_se)
2226 false_label_p = &false_label;
2227 else
2228 false_label_p = NULL;
2230 /* If there was nothing else in our arms, just forward the label(s). */
2231 if (!then_se && !else_se)
2232 return shortcut_cond_r (pred, true_label_p, false_label_p);
2234 /* If our last subexpression already has a terminal label, reuse it. */
2235 if (else_se)
2236 expr = expr_last (else_);
2237 else if (then_se)
2238 expr = expr_last (then_);
2239 else
2240 expr = NULL;
2241 if (expr && TREE_CODE (expr) == LABEL_EXPR)
2242 end_label = LABEL_EXPR_LABEL (expr);
2244 /* If we don't care about jumping to the 'else' branch, jump to the end
2245 if the condition is false. */
2246 if (!false_label_p)
2247 false_label_p = &end_label;
2249 /* We only want to emit these labels if we aren't hijacking them. */
2250 emit_end = (end_label == NULL_TREE);
2251 emit_false = (false_label == NULL_TREE);
2253 /* We only emit the jump over the else clause if we have to--if the
2254 then clause may fall through. Otherwise we can wind up with a
2255 useless jump and a useless label at the end of gimplified code,
2256 which will cause us to think that this conditional as a whole
2257 falls through even if it doesn't. If we then inline a function
2258 which ends with such a condition, that can cause us to issue an
2259 inappropriate warning about control reaching the end of a
2260 non-void function. */
2261 jump_over_else = block_may_fallthru (then_);
2263 pred = shortcut_cond_r (pred, true_label_p, false_label_p);
2265 expr = NULL;
2266 append_to_statement_list (pred, &expr);
2268 append_to_statement_list (then_, &expr);
2269 if (else_se)
2271 if (jump_over_else)
2273 t = build_and_jump (&end_label);
2274 append_to_statement_list (t, &expr);
2276 if (emit_false)
2278 t = build1 (LABEL_EXPR, void_type_node, false_label);
2279 append_to_statement_list (t, &expr);
2281 append_to_statement_list (else_, &expr);
2283 if (emit_end && end_label)
2285 t = build1 (LABEL_EXPR, void_type_node, end_label);
2286 append_to_statement_list (t, &expr);
2289 return expr;
2292 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2294 tree
2295 gimple_boolify (tree expr)
2297 tree type = TREE_TYPE (expr);
2299 if (TREE_CODE (type) == BOOLEAN_TYPE)
2300 return expr;
2302 switch (TREE_CODE (expr))
2304 case TRUTH_AND_EXPR:
2305 case TRUTH_OR_EXPR:
2306 case TRUTH_XOR_EXPR:
2307 case TRUTH_ANDIF_EXPR:
2308 case TRUTH_ORIF_EXPR:
2309 /* Also boolify the arguments of truth exprs. */
2310 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2311 /* FALLTHRU */
2313 case TRUTH_NOT_EXPR:
2314 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2315 /* FALLTHRU */
2317 case EQ_EXPR: case NE_EXPR:
2318 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2319 /* These expressions always produce boolean results. */
2320 TREE_TYPE (expr) = boolean_type_node;
2321 return expr;
2323 default:
2324 /* Other expressions that get here must have boolean values, but
2325 might need to be converted to the appropriate mode. */
2326 return convert (boolean_type_node, expr);
2330 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
2331 into
2333 if (p) if (p)
2334 t1 = a; a;
2335 else or else
2336 t1 = b; b;
2339 The second form is used when *EXPR_P is of type void.
2341 TARGET is the tree for T1 above.
2343 PRE_P points to the list where side effects that must happen before
2344 *EXPR_P should be stored. */
2346 static enum gimplify_status
2347 gimplify_cond_expr (tree *expr_p, tree *pre_p, fallback_t fallback)
2349 tree expr = *expr_p;
2350 tree tmp, tmp2, type;
2351 enum gimplify_status ret;
2353 type = TREE_TYPE (expr);
2355 /* If this COND_EXPR has a value, copy the values into a temporary within
2356 the arms. */
2357 if (! VOID_TYPE_P (type))
2359 tree result;
2361 if ((fallback & fb_lvalue) == 0)
2363 result = tmp2 = tmp = create_tmp_var (TREE_TYPE (expr), "iftmp");
2364 ret = GS_ALL_DONE;
2366 else
2368 tree type = build_pointer_type (TREE_TYPE (expr));
2370 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2371 TREE_OPERAND (expr, 1) =
2372 build_fold_addr_expr (TREE_OPERAND (expr, 1));
2374 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2375 TREE_OPERAND (expr, 2) =
2376 build_fold_addr_expr (TREE_OPERAND (expr, 2));
2378 tmp2 = tmp = create_tmp_var (type, "iftmp");
2380 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (expr, 0),
2381 TREE_OPERAND (expr, 1), TREE_OPERAND (expr, 2));
2383 result = build_fold_indirect_ref (tmp);
2384 ret = GS_ALL_DONE;
2387 /* Build the then clause, 't1 = a;'. But don't build an assignment
2388 if this branch is void; in C++ it can be, if it's a throw. */
2389 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2390 TREE_OPERAND (expr, 1)
2391 = build2 (MODIFY_EXPR, void_type_node, tmp, TREE_OPERAND (expr, 1));
2393 /* Build the else clause, 't1 = b;'. */
2394 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2395 TREE_OPERAND (expr, 2)
2396 = build2 (MODIFY_EXPR, void_type_node, tmp2, TREE_OPERAND (expr, 2));
2398 TREE_TYPE (expr) = void_type_node;
2399 recalculate_side_effects (expr);
2401 /* Move the COND_EXPR to the prequeue. */
2402 gimplify_and_add (expr, pre_p);
2404 *expr_p = result;
2405 return ret;
2408 /* Make sure the condition has BOOLEAN_TYPE. */
2409 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2411 /* Break apart && and || conditions. */
2412 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
2413 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
2415 expr = shortcut_cond_expr (expr);
2417 if (expr != *expr_p)
2419 *expr_p = expr;
2421 /* We can't rely on gimplify_expr to re-gimplify the expanded
2422 form properly, as cleanups might cause the target labels to be
2423 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
2424 set up a conditional context. */
2425 gimple_push_condition ();
2426 gimplify_stmt (expr_p);
2427 gimple_pop_condition (pre_p);
2429 return GS_ALL_DONE;
2433 /* Now do the normal gimplification. */
2434 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2435 is_gimple_condexpr, fb_rvalue);
2437 gimple_push_condition ();
2439 gimplify_to_stmt_list (&TREE_OPERAND (expr, 1));
2440 gimplify_to_stmt_list (&TREE_OPERAND (expr, 2));
2441 recalculate_side_effects (expr);
2443 gimple_pop_condition (pre_p);
2445 if (ret == GS_ERROR)
2447 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2448 ret = GS_ALL_DONE;
2449 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 2)))
2450 /* Rewrite "if (a); else b" to "if (!a) b" */
2452 TREE_OPERAND (expr, 0) = invert_truthvalue (TREE_OPERAND (expr, 0));
2453 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2454 is_gimple_condexpr, fb_rvalue);
2456 tmp = TREE_OPERAND (expr, 1);
2457 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 2);
2458 TREE_OPERAND (expr, 2) = tmp;
2460 else
2461 /* Both arms are empty; replace the COND_EXPR with its predicate. */
2462 expr = TREE_OPERAND (expr, 0);
2464 *expr_p = expr;
2465 return ret;
2468 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2469 a call to __builtin_memcpy. */
2471 static enum gimplify_status
2472 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value)
2474 tree args, t, to, to_ptr, from;
2476 to = TREE_OPERAND (*expr_p, 0);
2477 from = TREE_OPERAND (*expr_p, 1);
2479 args = tree_cons (NULL, size, NULL);
2481 t = build_fold_addr_expr (from);
2482 args = tree_cons (NULL, t, args);
2484 to_ptr = build_fold_addr_expr (to);
2485 args = tree_cons (NULL, to_ptr, args);
2486 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
2487 t = build_function_call_expr (t, args);
2489 if (want_value)
2491 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2492 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2495 *expr_p = t;
2496 return GS_OK;
2499 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2500 a call to __builtin_memset. In this case we know that the RHS is
2501 a CONSTRUCTOR with an empty element list. */
2503 static enum gimplify_status
2504 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value)
2506 tree args, t, to, to_ptr;
2508 to = TREE_OPERAND (*expr_p, 0);
2510 args = tree_cons (NULL, size, NULL);
2512 args = tree_cons (NULL, integer_zero_node, args);
2514 to_ptr = build_fold_addr_expr (to);
2515 args = tree_cons (NULL, to_ptr, args);
2516 t = implicit_built_in_decls[BUILT_IN_MEMSET];
2517 t = build_function_call_expr (t, args);
2519 if (want_value)
2521 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2522 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2525 *expr_p = t;
2526 return GS_OK;
2529 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
2530 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
2531 assignment. Returns non-null if we detect a potential overlap. */
2533 struct gimplify_init_ctor_preeval_data
2535 /* The base decl of the lhs object. May be NULL, in which case we
2536 have to assume the lhs is indirect. */
2537 tree lhs_base_decl;
2539 /* The alias set of the lhs object. */
2540 int lhs_alias_set;
2543 static tree
2544 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
2546 struct gimplify_init_ctor_preeval_data *data
2547 = (struct gimplify_init_ctor_preeval_data *) xdata;
2548 tree t = *tp;
2550 /* If we find the base object, obviously we have overlap. */
2551 if (data->lhs_base_decl == t)
2552 return t;
2554 /* If the constructor component is indirect, determine if we have a
2555 potential overlap with the lhs. The only bits of information we
2556 have to go on at this point are addressability and alias sets. */
2557 if (TREE_CODE (t) == INDIRECT_REF
2558 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2559 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
2560 return t;
2562 if (IS_TYPE_OR_DECL_P (t))
2563 *walk_subtrees = 0;
2564 return NULL;
2567 /* A subroutine of gimplify_init_constructor. Pre-evaluate *EXPR_P,
2568 force values that overlap with the lhs (as described by *DATA)
2569 into temporaries. */
2571 static void
2572 gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
2573 struct gimplify_init_ctor_preeval_data *data)
2575 enum gimplify_status one;
2577 /* If the value is invariant, then there's nothing to pre-evaluate.
2578 But ensure it doesn't have any side-effects since a SAVE_EXPR is
2579 invariant but has side effects and might contain a reference to
2580 the object we're initializing. */
2581 if (TREE_INVARIANT (*expr_p) && !TREE_SIDE_EFFECTS (*expr_p))
2582 return;
2584 /* If the type has non-trivial constructors, we can't pre-evaluate. */
2585 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
2586 return;
2588 /* Recurse for nested constructors. */
2589 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
2591 unsigned HOST_WIDE_INT ix;
2592 constructor_elt *ce;
2593 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
2595 for (ix = 0; VEC_iterate (constructor_elt, v, ix, ce); ix++)
2596 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
2597 return;
2600 /* We can't preevaluate if the type contains a placeholder. */
2601 if (type_contains_placeholder_p (TREE_TYPE (*expr_p)))
2602 return;
2604 /* Gimplify the constructor element to something appropriate for the rhs
2605 of a MODIFY_EXPR. Given that we know the lhs is an aggregate, we know
2606 the gimplifier will consider this a store to memory. Doing this
2607 gimplification now means that we won't have to deal with complicated
2608 language-specific trees, nor trees like SAVE_EXPR that can induce
2609 exponential search behavior. */
2610 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
2611 if (one == GS_ERROR)
2613 *expr_p = NULL;
2614 return;
2617 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
2618 with the lhs, since "a = { .x=a }" doesn't make sense. This will
2619 always be true for all scalars, since is_gimple_mem_rhs insists on a
2620 temporary variable for them. */
2621 if (DECL_P (*expr_p))
2622 return;
2624 /* If this is of variable size, we have no choice but to assume it doesn't
2625 overlap since we can't make a temporary for it. */
2626 if (!TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (*expr_p))))
2627 return;
2629 /* Otherwise, we must search for overlap ... */
2630 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
2631 return;
2633 /* ... and if found, force the value into a temporary. */
2634 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
2637 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
2638 a RANGE_EXPR in a CONSTRUCTOR for an array.
2640 var = lower;
2641 loop_entry:
2642 object[var] = value;
2643 if (var == upper)
2644 goto loop_exit;
2645 var = var + 1;
2646 goto loop_entry;
2647 loop_exit:
2649 We increment var _after_ the loop exit check because we might otherwise
2650 fail if upper == TYPE_MAX_VALUE (type for upper).
2652 Note that we never have to deal with SAVE_EXPRs here, because this has
2653 already been taken care of for us, in gimplify_init_ctor_preeval(). */
2655 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
2656 tree *, bool);
2658 static void
2659 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
2660 tree value, tree array_elt_type,
2661 tree *pre_p, bool cleared)
2663 tree loop_entry_label, loop_exit_label;
2664 tree var, var_type, cref;
2666 loop_entry_label = create_artificial_label ();
2667 loop_exit_label = create_artificial_label ();
2669 /* Create and initialize the index variable. */
2670 var_type = TREE_TYPE (upper);
2671 var = create_tmp_var (var_type, NULL);
2672 append_to_statement_list (build2 (MODIFY_EXPR, var_type, var, lower), pre_p);
2674 /* Add the loop entry label. */
2675 append_to_statement_list (build1 (LABEL_EXPR,
2676 void_type_node,
2677 loop_entry_label),
2678 pre_p);
2680 /* Build the reference. */
2681 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2682 var, NULL_TREE, NULL_TREE);
2684 /* If we are a constructor, just call gimplify_init_ctor_eval to do
2685 the store. Otherwise just assign value to the reference. */
2687 if (TREE_CODE (value) == CONSTRUCTOR)
2688 /* NB we might have to call ourself recursively through
2689 gimplify_init_ctor_eval if the value is a constructor. */
2690 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2691 pre_p, cleared);
2692 else
2693 append_to_statement_list (build2 (MODIFY_EXPR, TREE_TYPE (cref),
2694 cref, value),
2695 pre_p);
2697 /* We exit the loop when the index var is equal to the upper bound. */
2698 gimplify_and_add (build3 (COND_EXPR, void_type_node,
2699 build2 (EQ_EXPR, boolean_type_node,
2700 var, upper),
2701 build1 (GOTO_EXPR,
2702 void_type_node,
2703 loop_exit_label),
2704 NULL_TREE),
2705 pre_p);
2707 /* Otherwise, increment the index var... */
2708 append_to_statement_list (build2 (MODIFY_EXPR, var_type, var,
2709 build2 (PLUS_EXPR, var_type, var,
2710 fold_convert (var_type,
2711 integer_one_node))),
2712 pre_p);
2714 /* ...and jump back to the loop entry. */
2715 append_to_statement_list (build1 (GOTO_EXPR,
2716 void_type_node,
2717 loop_entry_label),
2718 pre_p);
2720 /* Add the loop exit label. */
2721 append_to_statement_list (build1 (LABEL_EXPR,
2722 void_type_node,
2723 loop_exit_label),
2724 pre_p);
2727 /* Return true if FDECL is accessing a field that is zero sized. */
2729 static bool
2730 zero_sized_field_decl (tree fdecl)
2732 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
2733 && integer_zerop (DECL_SIZE (fdecl)))
2734 return true;
2735 return false;
2738 /* Return true if TYPE is zero sized. */
2740 static bool
2741 zero_sized_type (tree type)
2743 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
2744 && integer_zerop (TYPE_SIZE (type)))
2745 return true;
2746 return false;
2749 /* A subroutine of gimplify_init_constructor. Generate individual
2750 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
2751 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
2752 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
2753 zeroed first. */
2755 static void
2756 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
2757 tree *pre_p, bool cleared)
2759 tree array_elt_type = NULL;
2760 unsigned HOST_WIDE_INT ix;
2761 tree purpose, value;
2763 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
2764 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
2766 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
2768 tree cref, init;
2770 /* NULL values are created above for gimplification errors. */
2771 if (value == NULL)
2772 continue;
2774 if (cleared && initializer_zerop (value))
2775 continue;
2777 /* ??? Here's to hoping the front end fills in all of the indices,
2778 so we don't have to figure out what's missing ourselves. */
2779 gcc_assert (purpose);
2781 /* Skip zero-sized fields, unless value has side-effects. This can
2782 happen with calls to functions returning a zero-sized type, which
2783 we shouldn't discard. As a number of downstream passes don't
2784 expect sets of zero-sized fields, we rely on the gimplification of
2785 the MODIFY_EXPR we make below to drop the assignment statement. */
2786 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
2787 continue;
2789 /* If we have a RANGE_EXPR, we have to build a loop to assign the
2790 whole range. */
2791 if (TREE_CODE (purpose) == RANGE_EXPR)
2793 tree lower = TREE_OPERAND (purpose, 0);
2794 tree upper = TREE_OPERAND (purpose, 1);
2796 /* If the lower bound is equal to upper, just treat it as if
2797 upper was the index. */
2798 if (simple_cst_equal (lower, upper))
2799 purpose = upper;
2800 else
2802 gimplify_init_ctor_eval_range (object, lower, upper, value,
2803 array_elt_type, pre_p, cleared);
2804 continue;
2808 if (array_elt_type)
2810 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2811 purpose, NULL_TREE, NULL_TREE);
2813 else
2815 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
2816 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
2817 unshare_expr (object), purpose, NULL_TREE);
2820 if (TREE_CODE (value) == CONSTRUCTOR
2821 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
2822 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2823 pre_p, cleared);
2824 else
2826 init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
2827 gimplify_and_add (init, pre_p);
2832 /* A subroutine of gimplify_modify_expr. Break out elements of a
2833 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
2835 Note that we still need to clear any elements that don't have explicit
2836 initializers, so if not all elements are initialized we keep the
2837 original MODIFY_EXPR, we just remove all of the constructor elements. */
2839 static enum gimplify_status
2840 gimplify_init_constructor (tree *expr_p, tree *pre_p,
2841 tree *post_p, bool want_value)
2843 tree object;
2844 tree ctor = TREE_OPERAND (*expr_p, 1);
2845 tree type = TREE_TYPE (ctor);
2846 enum gimplify_status ret;
2847 VEC(constructor_elt,gc) *elts;
2849 if (TREE_CODE (ctor) != CONSTRUCTOR)
2850 return GS_UNHANDLED;
2852 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
2853 is_gimple_lvalue, fb_lvalue);
2854 if (ret == GS_ERROR)
2855 return ret;
2856 object = TREE_OPERAND (*expr_p, 0);
2858 elts = CONSTRUCTOR_ELTS (ctor);
2860 ret = GS_ALL_DONE;
2861 switch (TREE_CODE (type))
2863 case RECORD_TYPE:
2864 case UNION_TYPE:
2865 case QUAL_UNION_TYPE:
2866 case ARRAY_TYPE:
2868 struct gimplify_init_ctor_preeval_data preeval_data;
2869 HOST_WIDE_INT num_type_elements, num_ctor_elements;
2870 HOST_WIDE_INT num_nonzero_elements, num_nonconstant_elements;
2871 bool cleared;
2873 /* Aggregate types must lower constructors to initialization of
2874 individual elements. The exception is that a CONSTRUCTOR node
2875 with no elements indicates zero-initialization of the whole. */
2876 if (VEC_empty (constructor_elt, elts))
2877 break;
2879 categorize_ctor_elements (ctor, &num_nonzero_elements,
2880 &num_nonconstant_elements,
2881 &num_ctor_elements, &cleared);
2883 /* If a const aggregate variable is being initialized, then it
2884 should never be a lose to promote the variable to be static. */
2885 if (num_nonconstant_elements == 0
2886 && num_nonzero_elements > 1
2887 && TREE_READONLY (object)
2888 && TREE_CODE (object) == VAR_DECL)
2890 DECL_INITIAL (object) = ctor;
2891 TREE_STATIC (object) = 1;
2892 if (!DECL_NAME (object))
2893 DECL_NAME (object) = create_tmp_var_name ("C");
2894 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
2896 /* ??? C++ doesn't automatically append a .<number> to the
2897 assembler name, and even when it does, it looks a FE private
2898 data structures to figure out what that number should be,
2899 which are not set for this variable. I suppose this is
2900 important for local statics for inline functions, which aren't
2901 "local" in the object file sense. So in order to get a unique
2902 TU-local symbol, we must invoke the lhd version now. */
2903 lhd_set_decl_assembler_name (object);
2905 *expr_p = NULL_TREE;
2906 break;
2909 /* If there are "lots" of initialized elements, even discounting
2910 those that are not address constants (and thus *must* be
2911 computed at runtime), then partition the constructor into
2912 constant and non-constant parts. Block copy the constant
2913 parts in, then generate code for the non-constant parts. */
2914 /* TODO. There's code in cp/typeck.c to do this. */
2916 num_type_elements = count_type_elements (type, true);
2918 /* If count_type_elements could not determine number of type elements
2919 for a constant-sized object, assume clearing is needed.
2920 Don't do this for variable-sized objects, as store_constructor
2921 will ignore the clearing of variable-sized objects. */
2922 if (num_type_elements < 0 && int_size_in_bytes (type) >= 0)
2923 cleared = true;
2924 /* If there are "lots" of zeros, then block clear the object first. */
2925 else if (num_type_elements - num_nonzero_elements > CLEAR_RATIO
2926 && num_nonzero_elements < num_type_elements/4)
2927 cleared = true;
2928 /* ??? This bit ought not be needed. For any element not present
2929 in the initializer, we should simply set them to zero. Except
2930 we'd need to *find* the elements that are not present, and that
2931 requires trickery to avoid quadratic compile-time behavior in
2932 large cases or excessive memory use in small cases. */
2933 else if (num_ctor_elements < num_type_elements)
2934 cleared = true;
2936 /* If there are "lots" of initialized elements, and all of them
2937 are valid address constants, then the entire initializer can
2938 be dropped to memory, and then memcpy'd out. Don't do this
2939 for sparse arrays, though, as it's more efficient to follow
2940 the standard CONSTRUCTOR behavior of memset followed by
2941 individual element initialization. */
2942 if (num_nonconstant_elements == 0 && !cleared)
2944 HOST_WIDE_INT size = int_size_in_bytes (type);
2945 unsigned int align;
2947 /* ??? We can still get unbounded array types, at least
2948 from the C++ front end. This seems wrong, but attempt
2949 to work around it for now. */
2950 if (size < 0)
2952 size = int_size_in_bytes (TREE_TYPE (object));
2953 if (size >= 0)
2954 TREE_TYPE (ctor) = type = TREE_TYPE (object);
2957 /* Find the maximum alignment we can assume for the object. */
2958 /* ??? Make use of DECL_OFFSET_ALIGN. */
2959 if (DECL_P (object))
2960 align = DECL_ALIGN (object);
2961 else
2962 align = TYPE_ALIGN (type);
2964 if (size > 0 && !can_move_by_pieces (size, align))
2966 tree new = create_tmp_var_raw (type, "C");
2968 gimple_add_tmp_var (new);
2969 TREE_STATIC (new) = 1;
2970 TREE_READONLY (new) = 1;
2971 DECL_INITIAL (new) = ctor;
2972 if (align > DECL_ALIGN (new))
2974 DECL_ALIGN (new) = align;
2975 DECL_USER_ALIGN (new) = 1;
2977 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
2979 TREE_OPERAND (*expr_p, 1) = new;
2981 /* This is no longer an assignment of a CONSTRUCTOR, but
2982 we still may have processing to do on the LHS. So
2983 pretend we didn't do anything here to let that happen. */
2984 return GS_UNHANDLED;
2988 if (cleared)
2990 /* Zap the CONSTRUCTOR element list, which simplifies this case.
2991 Note that we still have to gimplify, in order to handle the
2992 case of variable sized types. Avoid shared tree structures. */
2993 CONSTRUCTOR_ELTS (ctor) = NULL;
2994 object = unshare_expr (object);
2995 gimplify_stmt (expr_p);
2996 append_to_statement_list (*expr_p, pre_p);
2999 /* If we have not block cleared the object, or if there are nonzero
3000 elements in the constructor, add assignments to the individual
3001 scalar fields of the object. */
3002 if (!cleared || num_nonzero_elements > 0)
3004 preeval_data.lhs_base_decl = get_base_address (object);
3005 if (!DECL_P (preeval_data.lhs_base_decl))
3006 preeval_data.lhs_base_decl = NULL;
3007 preeval_data.lhs_alias_set = get_alias_set (object);
3009 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
3010 pre_p, post_p, &preeval_data);
3011 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
3014 *expr_p = NULL_TREE;
3016 break;
3018 case COMPLEX_TYPE:
3020 tree r, i;
3022 /* Extract the real and imaginary parts out of the ctor. */
3023 gcc_assert (VEC_length (constructor_elt, elts) == 2);
3024 r = VEC_index (constructor_elt, elts, 0)->value;
3025 i = VEC_index (constructor_elt, elts, 1)->value;
3026 if (r == NULL || i == NULL)
3028 tree zero = convert (TREE_TYPE (type), integer_zero_node);
3029 if (r == NULL)
3030 r = zero;
3031 if (i == NULL)
3032 i = zero;
3035 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3036 represent creation of a complex value. */
3037 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3039 ctor = build_complex (type, r, i);
3040 TREE_OPERAND (*expr_p, 1) = ctor;
3042 else
3044 ctor = build2 (COMPLEX_EXPR, type, r, i);
3045 TREE_OPERAND (*expr_p, 1) = ctor;
3046 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3047 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
3048 fb_rvalue);
3051 break;
3053 case VECTOR_TYPE:
3055 unsigned HOST_WIDE_INT ix;
3056 constructor_elt *ce;
3058 /* Go ahead and simplify constant constructors to VECTOR_CST. */
3059 if (TREE_CONSTANT (ctor))
3061 bool constant_p = true;
3062 tree value;
3064 /* Even when ctor is constant, it might contain non-*_CST
3065 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
3066 belong into VECTOR_CST nodes. */
3067 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
3068 if (!CONSTANT_CLASS_P (value))
3070 constant_p = false;
3071 break;
3074 if (constant_p)
3076 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
3077 break;
3081 /* Vector types use CONSTRUCTOR all the way through gimple
3082 compilation as a general initializer. */
3083 for (ix = 0; VEC_iterate (constructor_elt, elts, ix, ce); ix++)
3085 enum gimplify_status tret;
3086 tret = gimplify_expr (&ce->value, pre_p, post_p,
3087 is_gimple_val, fb_rvalue);
3088 if (tret == GS_ERROR)
3089 ret = GS_ERROR;
3092 break;
3094 default:
3095 /* So how did we get a CONSTRUCTOR for a scalar type? */
3096 gcc_unreachable ();
3099 if (ret == GS_ERROR)
3100 return GS_ERROR;
3101 else if (want_value)
3103 append_to_statement_list (*expr_p, pre_p);
3104 *expr_p = object;
3105 return GS_OK;
3107 else
3108 return GS_ALL_DONE;
3111 /* Given a pointer value OP0, return a simplified version of an
3112 indirection through OP0, or NULL_TREE if no simplification is
3113 possible. This may only be applied to a rhs of an expression.
3114 Note that the resulting type may be different from the type pointed
3115 to in the sense that it is still compatible from the langhooks
3116 point of view. */
3118 static tree
3119 fold_indirect_ref_rhs (tree t)
3121 tree type = TREE_TYPE (TREE_TYPE (t));
3122 tree sub = t;
3123 tree subtype;
3125 STRIP_NOPS (sub);
3126 subtype = TREE_TYPE (sub);
3127 if (!POINTER_TYPE_P (subtype))
3128 return NULL_TREE;
3130 if (TREE_CODE (sub) == ADDR_EXPR)
3132 tree op = TREE_OPERAND (sub, 0);
3133 tree optype = TREE_TYPE (op);
3134 /* *&p => p */
3135 if (lang_hooks.types_compatible_p (type, optype))
3136 return op;
3137 /* *(foo *)&fooarray => fooarray[0] */
3138 else if (TREE_CODE (optype) == ARRAY_TYPE
3139 && lang_hooks.types_compatible_p (type, TREE_TYPE (optype)))
3141 tree type_domain = TYPE_DOMAIN (optype);
3142 tree min_val = size_zero_node;
3143 if (type_domain && TYPE_MIN_VALUE (type_domain))
3144 min_val = TYPE_MIN_VALUE (type_domain);
3145 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
3149 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3150 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3151 && lang_hooks.types_compatible_p (type, TREE_TYPE (TREE_TYPE (subtype))))
3153 tree type_domain;
3154 tree min_val = size_zero_node;
3155 tree osub = sub;
3156 sub = fold_indirect_ref_rhs (sub);
3157 if (! sub)
3158 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
3159 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3160 if (type_domain && TYPE_MIN_VALUE (type_domain))
3161 min_val = TYPE_MIN_VALUE (type_domain);
3162 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
3165 return NULL_TREE;
3168 /* Subroutine of gimplify_modify_expr to do simplifications of MODIFY_EXPRs
3169 based on the code of the RHS. We loop for as long as something changes. */
3171 static enum gimplify_status
3172 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
3173 tree *post_p, bool want_value)
3175 enum gimplify_status ret = GS_OK;
3177 while (ret != GS_UNHANDLED)
3178 switch (TREE_CODE (*from_p))
3180 case INDIRECT_REF:
3182 /* If we have code like
3184 *(const A*)(A*)&x
3186 where the type of "x" is a (possibly cv-qualified variant
3187 of "A"), treat the entire expression as identical to "x".
3188 This kind of code arises in C++ when an object is bound
3189 to a const reference, and if "x" is a TARGET_EXPR we want
3190 to take advantage of the optimization below. */
3191 tree t = fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
3192 if (t)
3194 *from_p = t;
3195 ret = GS_OK;
3197 else
3198 ret = GS_UNHANDLED;
3199 break;
3202 case TARGET_EXPR:
3204 /* If we are initializing something from a TARGET_EXPR, strip the
3205 TARGET_EXPR and initialize it directly, if possible. This can't
3206 be done if the initializer is void, since that implies that the
3207 temporary is set in some non-trivial way.
3209 ??? What about code that pulls out the temp and uses it
3210 elsewhere? I think that such code never uses the TARGET_EXPR as
3211 an initializer. If I'm wrong, we'll die because the temp won't
3212 have any RTL. In that case, I guess we'll need to replace
3213 references somehow. */
3214 tree init = TARGET_EXPR_INITIAL (*from_p);
3216 if (!VOID_TYPE_P (TREE_TYPE (init)))
3218 *from_p = init;
3219 ret = GS_OK;
3221 else
3222 ret = GS_UNHANDLED;
3224 break;
3226 case COMPOUND_EXPR:
3227 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
3228 caught. */
3229 gimplify_compound_expr (from_p, pre_p, true);
3230 ret = GS_OK;
3231 break;
3233 case CONSTRUCTOR:
3234 /* If we're initializing from a CONSTRUCTOR, break this into
3235 individual MODIFY_EXPRs. */
3236 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value);
3238 case COND_EXPR:
3239 /* If we're assigning to a non-register type, push the assignment
3240 down into the branches. This is mandatory for ADDRESSABLE types,
3241 since we cannot generate temporaries for such, but it saves a
3242 copy in other cases as well. */
3243 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
3245 /* This code should mirror the code in gimplify_cond_expr. */
3246 enum tree_code code = TREE_CODE (*expr_p);
3247 tree cond = *from_p;
3248 tree result = *to_p;
3250 ret = gimplify_expr (&result, pre_p, post_p,
3251 is_gimple_min_lval, fb_lvalue);
3252 if (ret != GS_ERROR)
3253 ret = GS_OK;
3255 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
3256 TREE_OPERAND (cond, 1)
3257 = build2 (code, void_type_node, result,
3258 TREE_OPERAND (cond, 1));
3259 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
3260 TREE_OPERAND (cond, 2)
3261 = build2 (code, void_type_node, unshare_expr (result),
3262 TREE_OPERAND (cond, 2));
3264 TREE_TYPE (cond) = void_type_node;
3265 recalculate_side_effects (cond);
3267 if (want_value)
3269 gimplify_and_add (cond, pre_p);
3270 *expr_p = unshare_expr (result);
3272 else
3273 *expr_p = cond;
3274 return ret;
3276 else
3277 ret = GS_UNHANDLED;
3278 break;
3280 case CALL_EXPR:
3281 /* For calls that return in memory, give *to_p as the CALL_EXPR's
3282 return slot so that we don't generate a temporary. */
3283 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
3284 && aggregate_value_p (*from_p, *from_p))
3286 bool use_target;
3288 if (!(rhs_predicate_for (*to_p))(*from_p))
3289 /* If we need a temporary, *to_p isn't accurate. */
3290 use_target = false;
3291 else if (TREE_CODE (*to_p) == RESULT_DECL
3292 && DECL_NAME (*to_p) == NULL_TREE
3293 && needs_to_live_in_memory (*to_p))
3294 /* It's OK to use the return slot directly unless it's an NRV. */
3295 use_target = true;
3296 else if (is_gimple_reg_type (TREE_TYPE (*to_p)))
3297 /* Don't force regs into memory. */
3298 use_target = false;
3299 else if (TREE_CODE (*to_p) == VAR_DECL
3300 && DECL_GIMPLE_FORMAL_TEMP_P (*to_p))
3301 /* Don't use the original target if it's a formal temp; we
3302 don't want to take their addresses. */
3303 use_target = false;
3304 else if (TREE_CODE (*expr_p) == INIT_EXPR)
3305 /* It's OK to use the target directly if it's being
3306 initialized. */
3307 use_target = true;
3308 else if (!is_gimple_non_addressable (*to_p))
3309 /* Don't use the original target if it's already addressable;
3310 if its address escapes, and the called function uses the
3311 NRV optimization, a conforming program could see *to_p
3312 change before the called function returns; see c++/19317.
3313 When optimizing, the return_slot pass marks more functions
3314 as safe after we have escape info. */
3315 use_target = false;
3316 else
3317 use_target = true;
3319 if (use_target)
3321 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
3322 lang_hooks.mark_addressable (*to_p);
3326 ret = GS_UNHANDLED;
3327 break;
3329 default:
3330 ret = GS_UNHANDLED;
3331 break;
3334 return ret;
3337 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
3338 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
3339 DECL_COMPLEX_GIMPLE_REG_P set. */
3341 static enum gimplify_status
3342 gimplify_modify_expr_complex_part (tree *expr_p, tree *pre_p, bool want_value)
3344 enum tree_code code, ocode;
3345 tree lhs, rhs, new_rhs, other, realpart, imagpart;
3347 lhs = TREE_OPERAND (*expr_p, 0);
3348 rhs = TREE_OPERAND (*expr_p, 1);
3349 code = TREE_CODE (lhs);
3350 lhs = TREE_OPERAND (lhs, 0);
3352 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
3353 other = build1 (ocode, TREE_TYPE (rhs), lhs);
3354 other = get_formal_tmp_var (other, pre_p);
3356 realpart = code == REALPART_EXPR ? rhs : other;
3357 imagpart = code == REALPART_EXPR ? other : rhs;
3359 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
3360 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
3361 else
3362 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
3364 TREE_OPERAND (*expr_p, 0) = lhs;
3365 TREE_OPERAND (*expr_p, 1) = new_rhs;
3367 if (want_value)
3369 append_to_statement_list (*expr_p, pre_p);
3370 *expr_p = rhs;
3373 return GS_ALL_DONE;
3376 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
3378 modify_expr
3379 : varname '=' rhs
3380 | '*' ID '=' rhs
3382 PRE_P points to the list where side effects that must happen before
3383 *EXPR_P should be stored.
3385 POST_P points to the list where side effects that must happen after
3386 *EXPR_P should be stored.
3388 WANT_VALUE is nonzero iff we want to use the value of this expression
3389 in another expression. */
3391 static enum gimplify_status
3392 gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
3394 tree *from_p = &TREE_OPERAND (*expr_p, 1);
3395 tree *to_p = &TREE_OPERAND (*expr_p, 0);
3396 enum gimplify_status ret = GS_UNHANDLED;
3398 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
3399 || TREE_CODE (*expr_p) == INIT_EXPR);
3401 /* For zero sized types only gimplify the left hand side and right hand side
3402 as statements and throw away the assignment. */
3403 if (zero_sized_type (TREE_TYPE (*from_p)))
3405 gimplify_stmt (from_p);
3406 gimplify_stmt (to_p);
3407 append_to_statement_list (*from_p, pre_p);
3408 append_to_statement_list (*to_p, pre_p);
3409 *expr_p = NULL_TREE;
3410 return GS_ALL_DONE;
3413 /* See if any simplifications can be done based on what the RHS is. */
3414 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3415 want_value);
3416 if (ret != GS_UNHANDLED)
3417 return ret;
3419 /* If the value being copied is of variable width, compute the length
3420 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
3421 before gimplifying any of the operands so that we can resolve any
3422 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
3423 the size of the expression to be copied, not of the destination, so
3424 that is what we must here. */
3425 maybe_with_size_expr (from_p);
3427 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
3428 if (ret == GS_ERROR)
3429 return ret;
3431 ret = gimplify_expr (from_p, pre_p, post_p,
3432 rhs_predicate_for (*to_p), fb_rvalue);
3433 if (ret == GS_ERROR)
3434 return ret;
3436 /* Now see if the above changed *from_p to something we handle specially. */
3437 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3438 want_value);
3439 if (ret != GS_UNHANDLED)
3440 return ret;
3442 /* If we've got a variable sized assignment between two lvalues (i.e. does
3443 not involve a call), then we can make things a bit more straightforward
3444 by converting the assignment to memcpy or memset. */
3445 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
3447 tree from = TREE_OPERAND (*from_p, 0);
3448 tree size = TREE_OPERAND (*from_p, 1);
3450 if (TREE_CODE (from) == CONSTRUCTOR)
3451 return gimplify_modify_expr_to_memset (expr_p, size, want_value);
3452 if (is_gimple_addressable (from))
3454 *from_p = from;
3455 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value);
3459 /* Transform partial stores to non-addressable complex variables into
3460 total stores. This allows us to use real instead of virtual operands
3461 for these variables, which improves optimization. */
3462 if ((TREE_CODE (*to_p) == REALPART_EXPR
3463 || TREE_CODE (*to_p) == IMAGPART_EXPR)
3464 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
3465 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
3467 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
3469 /* If we've somehow already got an SSA_NAME on the LHS, then
3470 we're probably modified it twice. Not good. */
3471 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
3472 *to_p = make_ssa_name (*to_p, *expr_p);
3475 if (want_value)
3477 append_to_statement_list (*expr_p, pre_p);
3478 *expr_p = *to_p;
3479 return GS_OK;
3482 return GS_ALL_DONE;
3485 /* Gimplify a comparison between two variable-sized objects. Do this
3486 with a call to BUILT_IN_MEMCMP. */
3488 static enum gimplify_status
3489 gimplify_variable_sized_compare (tree *expr_p)
3491 tree op0 = TREE_OPERAND (*expr_p, 0);
3492 tree op1 = TREE_OPERAND (*expr_p, 1);
3493 tree args, t, dest;
3495 t = TYPE_SIZE_UNIT (TREE_TYPE (op0));
3496 t = unshare_expr (t);
3497 t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, op0);
3498 args = tree_cons (NULL, t, NULL);
3499 t = build_fold_addr_expr (op1);
3500 args = tree_cons (NULL, t, args);
3501 dest = build_fold_addr_expr (op0);
3502 args = tree_cons (NULL, dest, args);
3503 t = implicit_built_in_decls[BUILT_IN_MEMCMP];
3504 t = build_function_call_expr (t, args);
3505 *expr_p
3506 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
3508 return GS_OK;
3511 /* Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions. EXPR_P
3512 points to the expression to gimplify.
3514 Expressions of the form 'a && b' are gimplified to:
3516 a && b ? true : false
3518 gimplify_cond_expr will do the rest.
3520 PRE_P points to the list where side effects that must happen before
3521 *EXPR_P should be stored. */
3523 static enum gimplify_status
3524 gimplify_boolean_expr (tree *expr_p)
3526 /* Preserve the original type of the expression. */
3527 tree type = TREE_TYPE (*expr_p);
3529 *expr_p = build3 (COND_EXPR, type, *expr_p,
3530 convert (type, boolean_true_node),
3531 convert (type, boolean_false_node));
3533 return GS_OK;
3536 /* Gimplifies an expression sequence. This function gimplifies each
3537 expression and re-writes the original expression with the last
3538 expression of the sequence in GIMPLE form.
3540 PRE_P points to the list where the side effects for all the
3541 expressions in the sequence will be emitted.
3543 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
3544 /* ??? Should rearrange to share the pre-queue with all the indirect
3545 invocations of gimplify_expr. Would probably save on creations
3546 of statement_list nodes. */
3548 static enum gimplify_status
3549 gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
3551 tree t = *expr_p;
3555 tree *sub_p = &TREE_OPERAND (t, 0);
3557 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
3558 gimplify_compound_expr (sub_p, pre_p, false);
3559 else
3560 gimplify_stmt (sub_p);
3561 append_to_statement_list (*sub_p, pre_p);
3563 t = TREE_OPERAND (t, 1);
3565 while (TREE_CODE (t) == COMPOUND_EXPR);
3567 *expr_p = t;
3568 if (want_value)
3569 return GS_OK;
3570 else
3572 gimplify_stmt (expr_p);
3573 return GS_ALL_DONE;
3577 /* Gimplifies a statement list. These may be created either by an
3578 enlightened front-end, or by shortcut_cond_expr. */
3580 static enum gimplify_status
3581 gimplify_statement_list (tree *expr_p)
3583 tree_stmt_iterator i = tsi_start (*expr_p);
3585 while (!tsi_end_p (i))
3587 tree t;
3589 gimplify_stmt (tsi_stmt_ptr (i));
3591 t = tsi_stmt (i);
3592 if (t == NULL)
3593 tsi_delink (&i);
3594 else if (TREE_CODE (t) == STATEMENT_LIST)
3596 tsi_link_before (&i, t, TSI_SAME_STMT);
3597 tsi_delink (&i);
3599 else
3600 tsi_next (&i);
3603 return GS_ALL_DONE;
3606 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
3607 gimplify. After gimplification, EXPR_P will point to a new temporary
3608 that holds the original value of the SAVE_EXPR node.
3610 PRE_P points to the list where side effects that must happen before
3611 *EXPR_P should be stored. */
3613 static enum gimplify_status
3614 gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
3616 enum gimplify_status ret = GS_ALL_DONE;
3617 tree val;
3619 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
3620 val = TREE_OPERAND (*expr_p, 0);
3622 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
3623 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
3625 /* The operand may be a void-valued expression such as SAVE_EXPRs
3626 generated by the Java frontend for class initialization. It is
3627 being executed only for its side-effects. */
3628 if (TREE_TYPE (val) == void_type_node)
3630 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3631 is_gimple_stmt, fb_none);
3632 append_to_statement_list (TREE_OPERAND (*expr_p, 0), pre_p);
3633 val = NULL;
3635 else
3636 val = get_initialized_tmp_var (val, pre_p, post_p);
3638 TREE_OPERAND (*expr_p, 0) = val;
3639 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
3642 *expr_p = val;
3644 return ret;
3647 /* Re-write the ADDR_EXPR node pointed to by EXPR_P
3649 unary_expr
3650 : ...
3651 | '&' varname
3654 PRE_P points to the list where side effects that must happen before
3655 *EXPR_P should be stored.
3657 POST_P points to the list where side effects that must happen after
3658 *EXPR_P should be stored. */
3660 static enum gimplify_status
3661 gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
3663 tree expr = *expr_p;
3664 tree op0 = TREE_OPERAND (expr, 0);
3665 enum gimplify_status ret;
3667 switch (TREE_CODE (op0))
3669 case INDIRECT_REF:
3670 case MISALIGNED_INDIRECT_REF:
3671 do_indirect_ref:
3672 /* Check if we are dealing with an expression of the form '&*ptr'.
3673 While the front end folds away '&*ptr' into 'ptr', these
3674 expressions may be generated internally by the compiler (e.g.,
3675 builtins like __builtin_va_end). */
3676 /* Caution: the silent array decomposition semantics we allow for
3677 ADDR_EXPR means we can't always discard the pair. */
3678 /* Gimplification of the ADDR_EXPR operand may drop
3679 cv-qualification conversions, so make sure we add them if
3680 needed. */
3682 tree op00 = TREE_OPERAND (op0, 0);
3683 tree t_expr = TREE_TYPE (expr);
3684 tree t_op00 = TREE_TYPE (op00);
3686 if (!lang_hooks.types_compatible_p (t_expr, t_op00))
3688 #ifdef ENABLE_CHECKING
3689 tree t_op0 = TREE_TYPE (op0);
3690 gcc_assert (POINTER_TYPE_P (t_expr)
3691 && cpt_same_type (TREE_CODE (t_op0) == ARRAY_TYPE
3692 ? TREE_TYPE (t_op0) : t_op0,
3693 TREE_TYPE (t_expr))
3694 && POINTER_TYPE_P (t_op00)
3695 && cpt_same_type (t_op0, TREE_TYPE (t_op00)));
3696 #endif
3697 op00 = fold_convert (TREE_TYPE (expr), op00);
3699 *expr_p = op00;
3700 ret = GS_OK;
3702 break;
3704 case VIEW_CONVERT_EXPR:
3705 /* Take the address of our operand and then convert it to the type of
3706 this ADDR_EXPR.
3708 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3709 all clear. The impact of this transformation is even less clear. */
3711 /* If the operand is a useless conversion, look through it. Doing so
3712 guarantees that the ADDR_EXPR and its operand will remain of the
3713 same type. */
3714 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
3715 op0 = TREE_OPERAND (op0, 0);
3717 *expr_p = fold_convert (TREE_TYPE (expr),
3718 build_fold_addr_expr (TREE_OPERAND (op0, 0)));
3719 ret = GS_OK;
3720 break;
3722 default:
3723 /* We use fb_either here because the C frontend sometimes takes
3724 the address of a call that returns a struct; see
3725 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
3726 the implied temporary explicit. */
3727 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
3728 is_gimple_addressable, fb_either);
3729 if (ret != GS_ERROR)
3731 op0 = TREE_OPERAND (expr, 0);
3733 /* For various reasons, the gimplification of the expression
3734 may have made a new INDIRECT_REF. */
3735 if (TREE_CODE (op0) == INDIRECT_REF)
3736 goto do_indirect_ref;
3738 /* Make sure TREE_INVARIANT, TREE_CONSTANT, and TREE_SIDE_EFFECTS
3739 is set properly. */
3740 recompute_tree_invariant_for_addr_expr (expr);
3742 /* Mark the RHS addressable. */
3743 lang_hooks.mark_addressable (TREE_OPERAND (expr, 0));
3745 break;
3748 return ret;
3751 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
3752 value; output operands should be a gimple lvalue. */
3754 static enum gimplify_status
3755 gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
3757 tree expr = *expr_p;
3758 int noutputs = list_length (ASM_OUTPUTS (expr));
3759 const char **oconstraints
3760 = (const char **) alloca ((noutputs) * sizeof (const char *));
3761 int i;
3762 tree link;
3763 const char *constraint;
3764 bool allows_mem, allows_reg, is_inout;
3765 enum gimplify_status ret, tret;
3767 ret = GS_ALL_DONE;
3768 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3770 size_t constraint_len;
3771 oconstraints[i] = constraint
3772 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3773 constraint_len = strlen (constraint);
3774 if (constraint_len == 0)
3775 continue;
3777 parse_output_constraint (&constraint, i, 0, 0,
3778 &allows_mem, &allows_reg, &is_inout);
3780 if (!allows_reg && allows_mem)
3781 lang_hooks.mark_addressable (TREE_VALUE (link));
3783 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3784 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
3785 fb_lvalue | fb_mayfail);
3786 if (tret == GS_ERROR)
3788 error ("invalid lvalue in asm output %d", i);
3789 ret = tret;
3792 if (is_inout)
3794 /* An input/output operand. To give the optimizers more
3795 flexibility, split it into separate input and output
3796 operands. */
3797 tree input;
3798 char buf[10];
3800 /* Turn the in/out constraint into an output constraint. */
3801 char *p = xstrdup (constraint);
3802 p[0] = '=';
3803 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
3805 /* And add a matching input constraint. */
3806 if (allows_reg)
3808 sprintf (buf, "%d", i);
3810 /* If there are multiple alternatives in the constraint,
3811 handle each of them individually. Those that allow register
3812 will be replaced with operand number, the others will stay
3813 unchanged. */
3814 if (strchr (p, ',') != NULL)
3816 size_t len = 0, buflen = strlen (buf);
3817 char *beg, *end, *str, *dst;
3819 for (beg = p + 1;;)
3821 end = strchr (beg, ',');
3822 if (end == NULL)
3823 end = strchr (beg, '\0');
3824 if ((size_t) (end - beg) < buflen)
3825 len += buflen + 1;
3826 else
3827 len += end - beg + 1;
3828 if (*end)
3829 beg = end + 1;
3830 else
3831 break;
3834 str = (char *) alloca (len);
3835 for (beg = p + 1, dst = str;;)
3837 const char *tem;
3838 bool mem_p, reg_p, inout_p;
3840 end = strchr (beg, ',');
3841 if (end)
3842 *end = '\0';
3843 beg[-1] = '=';
3844 tem = beg - 1;
3845 parse_output_constraint (&tem, i, 0, 0,
3846 &mem_p, &reg_p, &inout_p);
3847 if (dst != str)
3848 *dst++ = ',';
3849 if (reg_p)
3851 memcpy (dst, buf, buflen);
3852 dst += buflen;
3854 else
3856 if (end)
3857 len = end - beg;
3858 else
3859 len = strlen (beg);
3860 memcpy (dst, beg, len);
3861 dst += len;
3863 if (end)
3864 beg = end + 1;
3865 else
3866 break;
3868 *dst = '\0';
3869 input = build_string (dst - str, str);
3871 else
3872 input = build_string (strlen (buf), buf);
3874 else
3875 input = build_string (constraint_len - 1, constraint + 1);
3877 free (p);
3879 input = build_tree_list (build_tree_list (NULL_TREE, input),
3880 unshare_expr (TREE_VALUE (link)));
3881 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
3885 for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3887 constraint
3888 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3889 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
3890 oconstraints, &allows_mem, &allows_reg);
3892 /* If the operand is a memory input, it should be an lvalue. */
3893 if (!allows_reg && allows_mem)
3895 lang_hooks.mark_addressable (TREE_VALUE (link));
3896 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3897 is_gimple_lvalue, fb_lvalue | fb_mayfail);
3898 if (tret == GS_ERROR)
3900 error ("memory input %d is not directly addressable", i);
3901 ret = tret;
3904 else
3906 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3907 is_gimple_asm_val, fb_rvalue);
3908 if (tret == GS_ERROR)
3909 ret = tret;
3913 return ret;
3916 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
3917 WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
3918 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
3919 return to this function.
3921 FIXME should we complexify the prequeue handling instead? Or use flags
3922 for all the cleanups and let the optimizer tighten them up? The current
3923 code seems pretty fragile; it will break on a cleanup within any
3924 non-conditional nesting. But any such nesting would be broken, anyway;
3925 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
3926 and continues out of it. We can do that at the RTL level, though, so
3927 having an optimizer to tighten up try/finally regions would be a Good
3928 Thing. */
3930 static enum gimplify_status
3931 gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
3933 tree_stmt_iterator iter;
3934 tree body;
3936 tree temp = voidify_wrapper_expr (*expr_p, NULL);
3938 /* We only care about the number of conditions between the innermost
3939 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
3940 any cleanups collected outside the CLEANUP_POINT_EXPR. */
3941 int old_conds = gimplify_ctxp->conditions;
3942 tree old_cleanups = gimplify_ctxp->conditional_cleanups;
3943 gimplify_ctxp->conditions = 0;
3944 gimplify_ctxp->conditional_cleanups = NULL_TREE;
3946 body = TREE_OPERAND (*expr_p, 0);
3947 gimplify_to_stmt_list (&body);
3949 gimplify_ctxp->conditions = old_conds;
3950 gimplify_ctxp->conditional_cleanups = old_cleanups;
3952 for (iter = tsi_start (body); !tsi_end_p (iter); )
3954 tree *wce_p = tsi_stmt_ptr (iter);
3955 tree wce = *wce_p;
3957 if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
3959 if (tsi_one_before_end_p (iter))
3961 tsi_link_before (&iter, TREE_OPERAND (wce, 0), TSI_SAME_STMT);
3962 tsi_delink (&iter);
3963 break;
3965 else
3967 tree sl, tfe;
3968 enum tree_code code;
3970 if (CLEANUP_EH_ONLY (wce))
3971 code = TRY_CATCH_EXPR;
3972 else
3973 code = TRY_FINALLY_EXPR;
3975 sl = tsi_split_statement_list_after (&iter);
3976 tfe = build2 (code, void_type_node, sl, NULL_TREE);
3977 append_to_statement_list (TREE_OPERAND (wce, 0),
3978 &TREE_OPERAND (tfe, 1));
3979 *wce_p = tfe;
3980 iter = tsi_start (sl);
3983 else
3984 tsi_next (&iter);
3987 if (temp)
3989 *expr_p = temp;
3990 append_to_statement_list (body, pre_p);
3991 return GS_OK;
3993 else
3995 *expr_p = body;
3996 return GS_ALL_DONE;
4000 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
4001 is the cleanup action required. */
4003 static void
4004 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, tree *pre_p)
4006 tree wce;
4008 /* Errors can result in improperly nested cleanups. Which results in
4009 confusion when trying to resolve the WITH_CLEANUP_EXPR. */
4010 if (errorcount || sorrycount)
4011 return;
4013 if (gimple_conditional_context ())
4015 /* If we're in a conditional context, this is more complex. We only
4016 want to run the cleanup if we actually ran the initialization that
4017 necessitates it, but we want to run it after the end of the
4018 conditional context. So we wrap the try/finally around the
4019 condition and use a flag to determine whether or not to actually
4020 run the destructor. Thus
4022 test ? f(A()) : 0
4024 becomes (approximately)
4026 flag = 0;
4027 try {
4028 if (test) { A::A(temp); flag = 1; val = f(temp); }
4029 else { val = 0; }
4030 } finally {
4031 if (flag) A::~A(temp);
4036 tree flag = create_tmp_var (boolean_type_node, "cleanup");
4037 tree ffalse = build2 (MODIFY_EXPR, void_type_node, flag,
4038 boolean_false_node);
4039 tree ftrue = build2 (MODIFY_EXPR, void_type_node, flag,
4040 boolean_true_node);
4041 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
4042 wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4043 append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
4044 append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
4045 append_to_statement_list (ftrue, pre_p);
4047 /* Because of this manipulation, and the EH edges that jump
4048 threading cannot redirect, the temporary (VAR) will appear
4049 to be used uninitialized. Don't warn. */
4050 TREE_NO_WARNING (var) = 1;
4052 else
4054 wce = build1 (WITH_CLEANUP_EXPR, void_type_node, cleanup);
4055 CLEANUP_EH_ONLY (wce) = eh_only;
4056 append_to_statement_list (wce, pre_p);
4059 gimplify_stmt (&TREE_OPERAND (wce, 0));
4062 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
4064 static enum gimplify_status
4065 gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
4067 tree targ = *expr_p;
4068 tree temp = TARGET_EXPR_SLOT (targ);
4069 tree init = TARGET_EXPR_INITIAL (targ);
4070 enum gimplify_status ret;
4072 if (init)
4074 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
4075 to the temps list. */
4076 gimple_add_tmp_var (temp);
4078 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
4079 expression is supposed to initialize the slot. */
4080 if (VOID_TYPE_P (TREE_TYPE (init)))
4081 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
4082 else
4084 /* Special handling for BIND_EXPR can result in fewer temps. */
4085 ret = GS_OK;
4086 if (TREE_CODE (init) == BIND_EXPR)
4087 gimplify_bind_expr (&init, temp, pre_p);
4088 if (init != temp)
4090 init = build2 (INIT_EXPR, void_type_node, temp, init);
4091 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
4092 fb_none);
4095 if (ret == GS_ERROR)
4096 return GS_ERROR;
4097 append_to_statement_list (init, pre_p);
4099 /* If needed, push the cleanup for the temp. */
4100 if (TARGET_EXPR_CLEANUP (targ))
4102 gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
4103 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
4104 CLEANUP_EH_ONLY (targ), pre_p);
4107 /* Only expand this once. */
4108 TREE_OPERAND (targ, 3) = init;
4109 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
4111 else
4112 /* We should have expanded this before. */
4113 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
4115 *expr_p = temp;
4116 return GS_OK;
4119 /* Gimplification of expression trees. */
4121 /* Gimplify an expression which appears at statement context; usually, this
4122 means replacing it with a suitably gimple STATEMENT_LIST. */
4124 void
4125 gimplify_stmt (tree *stmt_p)
4127 gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
4130 /* Similarly, but force the result to be a STATEMENT_LIST. */
4132 void
4133 gimplify_to_stmt_list (tree *stmt_p)
4135 gimplify_stmt (stmt_p);
4136 if (!*stmt_p)
4137 *stmt_p = alloc_stmt_list ();
4138 else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
4140 tree t = *stmt_p;
4141 *stmt_p = alloc_stmt_list ();
4142 append_to_statement_list (t, stmt_p);
4147 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
4148 to CTX. If entries already exist, force them to be some flavor of private.
4149 If there is no enclosing parallel, do nothing. */
4151 void
4152 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
4154 splay_tree_node n;
4156 if (decl == NULL || !DECL_P (decl))
4157 return;
4161 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4162 if (n != NULL)
4164 if (n->value & GOVD_SHARED)
4165 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
4166 else
4167 return;
4169 else if (ctx->is_parallel)
4170 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
4172 ctx = ctx->outer_context;
4174 while (ctx);
4177 /* Similarly for each of the type sizes of TYPE. */
4179 static void
4180 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
4182 if (type == NULL || type == error_mark_node)
4183 return;
4184 type = TYPE_MAIN_VARIANT (type);
4186 if (pointer_set_insert (ctx->privatized_types, type))
4187 return;
4189 switch (TREE_CODE (type))
4191 case INTEGER_TYPE:
4192 case ENUMERAL_TYPE:
4193 case BOOLEAN_TYPE:
4194 case REAL_TYPE:
4195 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
4196 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
4197 break;
4199 case ARRAY_TYPE:
4200 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4201 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
4202 break;
4204 case RECORD_TYPE:
4205 case UNION_TYPE:
4206 case QUAL_UNION_TYPE:
4208 tree field;
4209 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4210 if (TREE_CODE (field) == FIELD_DECL)
4212 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
4213 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
4216 break;
4218 case POINTER_TYPE:
4219 case REFERENCE_TYPE:
4220 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
4221 break;
4223 default:
4224 break;
4227 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
4228 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
4229 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
4232 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
4234 static void
4235 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
4237 splay_tree_node n;
4238 unsigned int nflags;
4239 tree t;
4241 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4242 return;
4244 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
4245 there are constructors involved somewhere. */
4246 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
4247 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
4248 flags |= GOVD_SEEN;
4250 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4251 if (n != NULL)
4253 /* We shouldn't be re-adding the decl with the same data
4254 sharing class. */
4255 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
4256 /* The only combination of data sharing classes we should see is
4257 FIRSTPRIVATE and LASTPRIVATE. */
4258 nflags = n->value | flags;
4259 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
4260 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
4261 n->value = nflags;
4262 return;
4265 /* When adding a variable-sized variable, we have to handle all sorts
4266 of additional bits of data: the pointer replacement variable, and
4267 the parameters of the type. */
4268 if (!TREE_CONSTANT (DECL_SIZE (decl)))
4270 /* Add the pointer replacement variable as PRIVATE if the variable
4271 replacement is private, else FIRSTPRIVATE since we'll need the
4272 address of the original variable either for SHARED, or for the
4273 copy into or out of the context. */
4274 if (!(flags & GOVD_LOCAL))
4276 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
4277 nflags |= flags & GOVD_SEEN;
4278 t = DECL_VALUE_EXPR (decl);
4279 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
4280 t = TREE_OPERAND (t, 0);
4281 gcc_assert (DECL_P (t));
4282 omp_add_variable (ctx, t, nflags);
4285 /* Add all of the variable and type parameters (which should have
4286 been gimplified to a formal temporary) as FIRSTPRIVATE. */
4287 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
4288 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
4289 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4291 /* The variable-sized variable itself is never SHARED, only some form
4292 of PRIVATE. The sharing would take place via the pointer variable
4293 which we remapped above. */
4294 if (flags & GOVD_SHARED)
4295 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
4296 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
4298 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
4299 alloca statement we generate for the variable, so make sure it
4300 is available. This isn't automatically needed for the SHARED
4301 case, since we won't be allocating local storage then. */
4302 else
4303 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
4305 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
4307 gcc_assert ((flags & GOVD_LOCAL) == 0);
4308 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
4310 /* Similar to the direct variable sized case above, we'll need the
4311 size of references being privatized. */
4312 if ((flags & GOVD_SHARED) == 0)
4314 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
4315 if (!TREE_CONSTANT (t))
4316 omp_notice_variable (ctx, t, true);
4320 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
4323 /* Record the fact that DECL was used within the OpenMP context CTX.
4324 IN_CODE is true when real code uses DECL, and false when we should
4325 merely emit default(none) errors. Return true if DECL is going to
4326 be remapped and thus DECL shouldn't be gimplified into its
4327 DECL_VALUE_EXPR (if any). */
4329 static bool
4330 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
4332 splay_tree_node n;
4333 unsigned flags = in_code ? GOVD_SEEN : 0;
4334 bool ret = false, shared;
4336 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4337 return false;
4339 /* Threadprivate variables are predetermined. */
4340 if (is_global_var (decl))
4342 if (DECL_THREAD_LOCAL_P (decl))
4343 return false;
4345 if (DECL_HAS_VALUE_EXPR_P (decl))
4347 tree value = get_base_address (DECL_VALUE_EXPR (decl));
4349 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
4350 return false;
4354 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4355 if (n == NULL)
4357 enum omp_clause_default_kind default_kind, kind;
4359 if (!ctx->is_parallel)
4360 goto do_outer;
4362 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
4363 remapped firstprivate instead of shared. To some extent this is
4364 addressed in omp_firstprivatize_type_sizes, but not effectively. */
4365 default_kind = ctx->default_kind;
4366 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
4367 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
4368 default_kind = kind;
4370 switch (default_kind)
4372 case OMP_CLAUSE_DEFAULT_NONE:
4373 error ("%qs not specified in enclosing parallel",
4374 IDENTIFIER_POINTER (DECL_NAME (decl)));
4375 error ("%Henclosing parallel", &ctx->location);
4376 /* FALLTHRU */
4377 case OMP_CLAUSE_DEFAULT_SHARED:
4378 flags |= GOVD_SHARED;
4379 break;
4380 case OMP_CLAUSE_DEFAULT_PRIVATE:
4381 flags |= GOVD_PRIVATE;
4382 break;
4383 default:
4384 gcc_unreachable ();
4387 omp_add_variable (ctx, decl, flags);
4389 shared = (flags & GOVD_SHARED) != 0;
4390 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4391 goto do_outer;
4394 shared = ((flags | n->value) & GOVD_SHARED) != 0;
4395 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
4397 /* If nothing changed, there's nothing left to do. */
4398 if ((n->value & flags) == flags)
4399 return ret;
4400 flags |= n->value;
4401 n->value = flags;
4403 do_outer:
4404 /* If the variable is private in the current context, then we don't
4405 need to propagate anything to an outer context. */
4406 if (flags & GOVD_PRIVATE)
4407 return ret;
4408 if (ctx->outer_context
4409 && omp_notice_variable (ctx->outer_context, decl, in_code))
4410 return true;
4411 return ret;
4414 /* Verify that DECL is private within CTX. If there's specific information
4415 to the contrary in the innermost scope, generate an error. */
4417 static bool
4418 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
4420 splay_tree_node n;
4422 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
4423 if (n != NULL)
4425 if (n->value & GOVD_SHARED)
4427 if (ctx == gimplify_omp_ctxp)
4428 error ("iteration variable %qs should be private",
4429 IDENTIFIER_POINTER (DECL_NAME (decl)));
4430 n->value = GOVD_PRIVATE;
4432 return true;
4435 if (ctx->outer_context)
4436 return omp_is_private (ctx->outer_context, decl);
4437 else if (ctx->is_parallel)
4438 return false;
4439 else
4440 return !is_global_var (decl);
4443 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
4444 and previous omp contexts. */
4446 static void
4447 gimplify_scan_omp_clauses (tree *list_p, tree *pre_p, bool in_parallel)
4449 struct gimplify_omp_ctx *ctx, *outer_ctx;
4450 tree c;
4452 ctx = new_omp_context (in_parallel);
4453 outer_ctx = ctx->outer_context;
4455 while ((c = *list_p) != NULL)
4457 enum gimplify_status gs;
4458 bool remove = false;
4459 bool notice_outer = true;
4460 unsigned int flags;
4461 tree decl;
4463 switch (OMP_CLAUSE_CODE (c))
4465 case OMP_CLAUSE_PRIVATE:
4466 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
4467 notice_outer = false;
4468 goto do_add;
4469 case OMP_CLAUSE_SHARED:
4470 flags = GOVD_SHARED | GOVD_EXPLICIT;
4471 goto do_add;
4472 case OMP_CLAUSE_FIRSTPRIVATE:
4473 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
4474 goto do_add;
4475 case OMP_CLAUSE_LASTPRIVATE:
4476 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
4477 goto do_add;
4478 case OMP_CLAUSE_REDUCTION:
4479 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
4480 goto do_add;
4482 do_add:
4483 decl = OMP_CLAUSE_DECL (c);
4484 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4486 remove = true;
4487 break;
4489 omp_add_variable (ctx, decl, flags);
4490 if (TREE_CODE (c) == OMP_CLAUSE_REDUCTION
4491 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
4493 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
4494 GOVD_LOCAL);
4495 gimplify_omp_ctxp = ctx;
4496 push_gimplify_context ();
4497 gimplify_stmt (&OMP_CLAUSE_REDUCTION_INIT (c));
4498 pop_gimplify_context (OMP_CLAUSE_REDUCTION_INIT (c));
4499 push_gimplify_context ();
4500 gimplify_stmt (&OMP_CLAUSE_REDUCTION_MERGE (c));
4501 pop_gimplify_context (OMP_CLAUSE_REDUCTION_MERGE (c));
4502 gimplify_omp_ctxp = outer_ctx;
4504 if (notice_outer)
4505 goto do_notice;
4506 break;
4508 case OMP_CLAUSE_COPYIN:
4509 case OMP_CLAUSE_COPYPRIVATE:
4510 decl = OMP_CLAUSE_DECL (c);
4511 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
4513 remove = true;
4514 break;
4516 do_notice:
4517 if (outer_ctx)
4518 omp_notice_variable (outer_ctx, decl, true);
4519 break;
4521 case OMP_CLAUSE_SCHEDULE:
4522 case OMP_CLAUSE_IF:
4523 case OMP_CLAUSE_NUM_THREADS:
4524 gs = gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
4525 is_gimple_val, fb_rvalue);
4526 if (gs == GS_ERROR)
4527 remove = true;
4528 break;
4530 case OMP_CLAUSE_NOWAIT:
4531 case OMP_CLAUSE_ORDERED:
4532 break;
4534 case OMP_CLAUSE_DEFAULT:
4535 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
4536 break;
4538 default:
4539 gcc_unreachable ();
4542 if (remove)
4543 *list_p = OMP_CLAUSE_CHAIN (c);
4544 else
4545 list_p = &OMP_CLAUSE_CHAIN (c);
4548 gimplify_omp_ctxp = ctx;
4551 /* For all variables that were not actually used within the context,
4552 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
4554 static int
4555 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
4557 tree *list_p = (tree *) data;
4558 tree decl = (tree) n->key;
4559 unsigned flags = n->value;
4560 enum omp_clause_code code;
4561 tree clause;
4562 bool private_debug;
4564 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
4565 return 0;
4566 if ((flags & GOVD_SEEN) == 0)
4567 return 0;
4568 if (flags & GOVD_DEBUG_PRIVATE)
4570 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
4571 private_debug = true;
4573 else
4574 private_debug
4575 = lang_hooks.decls.omp_private_debug_clause (decl,
4576 !!(flags & GOVD_SHARED));
4577 if (private_debug)
4578 code = OMP_CLAUSE_PRIVATE;
4579 else if (flags & GOVD_SHARED)
4581 if (is_global_var (decl))
4582 return 0;
4583 code = OMP_CLAUSE_SHARED;
4585 else if (flags & GOVD_PRIVATE)
4586 code = OMP_CLAUSE_PRIVATE;
4587 else if (flags & GOVD_FIRSTPRIVATE)
4588 code = OMP_CLAUSE_FIRSTPRIVATE;
4589 else
4590 gcc_unreachable ();
4592 clause = build_omp_clause (code);
4593 OMP_CLAUSE_DECL (clause) = decl;
4594 OMP_CLAUSE_CHAIN (clause) = *list_p;
4595 if (private_debug)
4596 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
4597 *list_p = clause;
4599 return 0;
4602 static void
4603 gimplify_adjust_omp_clauses (tree *list_p)
4605 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
4606 tree c, decl;
4608 while ((c = *list_p) != NULL)
4610 splay_tree_node n;
4611 bool remove = false;
4613 switch (OMP_CLAUSE_CODE (c))
4615 case OMP_CLAUSE_PRIVATE:
4616 case OMP_CLAUSE_SHARED:
4617 case OMP_CLAUSE_FIRSTPRIVATE:
4618 decl = OMP_CLAUSE_DECL (c);
4619 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4620 remove = !(n->value & GOVD_SEEN);
4621 if (! remove)
4623 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
4624 if ((n->value & GOVD_DEBUG_PRIVATE)
4625 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
4627 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
4628 || ((n->value & GOVD_DATA_SHARE_CLASS)
4629 == GOVD_PRIVATE));
4630 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
4631 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
4634 break;
4636 case OMP_CLAUSE_LASTPRIVATE:
4637 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
4638 accurately reflect the presence of a FIRSTPRIVATE clause. */
4639 decl = OMP_CLAUSE_DECL (c);
4640 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
4641 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
4642 = (n->value & GOVD_FIRSTPRIVATE) != 0;
4643 break;
4645 case OMP_CLAUSE_REDUCTION:
4646 case OMP_CLAUSE_COPYIN:
4647 case OMP_CLAUSE_COPYPRIVATE:
4648 case OMP_CLAUSE_IF:
4649 case OMP_CLAUSE_NUM_THREADS:
4650 case OMP_CLAUSE_SCHEDULE:
4651 case OMP_CLAUSE_NOWAIT:
4652 case OMP_CLAUSE_ORDERED:
4653 case OMP_CLAUSE_DEFAULT:
4654 break;
4656 default:
4657 gcc_unreachable ();
4660 if (remove)
4661 *list_p = OMP_CLAUSE_CHAIN (c);
4662 else
4663 list_p = &OMP_CLAUSE_CHAIN (c);
4666 /* Add in any implicit data sharing. */
4667 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
4669 gimplify_omp_ctxp = ctx->outer_context;
4670 delete_omp_context (ctx);
4673 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
4674 gimplification of the body, as well as scanning the body for used
4675 variables. We need to do this scan now, because variable-sized
4676 decls will be decomposed during gimplification. */
4678 static enum gimplify_status
4679 gimplify_omp_parallel (tree *expr_p, tree *pre_p)
4681 tree expr = *expr_p;
4683 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p, true);
4685 push_gimplify_context ();
4687 gimplify_stmt (&OMP_PARALLEL_BODY (expr));
4689 if (TREE_CODE (OMP_PARALLEL_BODY (expr)) == BIND_EXPR)
4690 pop_gimplify_context (OMP_PARALLEL_BODY (expr));
4691 else
4692 pop_gimplify_context (NULL_TREE);
4694 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
4696 return GS_ALL_DONE;
4699 /* Gimplify the gross structure of an OMP_FOR statement. */
4701 static enum gimplify_status
4702 gimplify_omp_for (tree *expr_p, tree *pre_p)
4704 tree for_stmt, decl, t;
4705 enum gimplify_status ret = 0;
4707 for_stmt = *expr_p;
4709 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p, false);
4711 t = OMP_FOR_INIT (for_stmt);
4712 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
4713 decl = TREE_OPERAND (t, 0);
4714 gcc_assert (DECL_P (decl));
4715 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl)));
4716 gcc_assert (!TYPE_UNSIGNED (TREE_TYPE (decl)));
4718 /* Make sure the iteration variable is private. */
4719 if (omp_is_private (gimplify_omp_ctxp, decl))
4720 omp_notice_variable (gimplify_omp_ctxp, decl, true);
4721 else
4722 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
4724 ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4725 NULL, is_gimple_val, fb_rvalue);
4727 t = OMP_FOR_COND (for_stmt);
4728 gcc_assert (COMPARISON_CLASS_P (t));
4729 gcc_assert (TREE_OPERAND (t, 0) == decl);
4731 ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4732 NULL, is_gimple_val, fb_rvalue);
4734 t = OMP_FOR_INCR (for_stmt);
4735 switch (TREE_CODE (t))
4737 case PREINCREMENT_EXPR:
4738 case POSTINCREMENT_EXPR:
4739 t = build_int_cst (TREE_TYPE (decl), 1);
4740 goto build_modify;
4741 case PREDECREMENT_EXPR:
4742 case POSTDECREMENT_EXPR:
4743 t = build_int_cst (TREE_TYPE (decl), -1);
4744 goto build_modify;
4745 build_modify:
4746 t = build2 (PLUS_EXPR, TREE_TYPE (decl), decl, t);
4747 t = build2 (MODIFY_EXPR, void_type_node, decl, t);
4748 OMP_FOR_INCR (for_stmt) = t;
4749 break;
4751 case MODIFY_EXPR:
4752 gcc_assert (TREE_OPERAND (t, 0) == decl);
4753 t = TREE_OPERAND (t, 1);
4754 switch (TREE_CODE (t))
4756 case PLUS_EXPR:
4757 if (TREE_OPERAND (t, 1) == decl)
4759 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
4760 TREE_OPERAND (t, 0) = decl;
4761 break;
4763 case MINUS_EXPR:
4764 gcc_assert (TREE_OPERAND (t, 0) == decl);
4765 break;
4766 default:
4767 gcc_unreachable ();
4770 ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4771 NULL, is_gimple_val, fb_rvalue);
4772 break;
4774 default:
4775 gcc_unreachable ();
4778 gimplify_to_stmt_list (&OMP_FOR_BODY (for_stmt));
4779 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
4781 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
4784 /* Gimplify the gross structure of other OpenMP worksharing constructs.
4785 In particular, OMP_SECTIONS and OMP_SINGLE. */
4787 static enum gimplify_status
4788 gimplify_omp_workshare (tree *expr_p, tree *pre_p)
4790 tree stmt = *expr_p;
4792 gimplify_scan_omp_clauses (&OMP_CLAUSES (stmt), pre_p, false);
4793 gimplify_to_stmt_list (&OMP_BODY (stmt));
4794 gimplify_adjust_omp_clauses (&OMP_CLAUSES (stmt));
4796 return GS_ALL_DONE;
4799 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
4800 stabilized the lhs of the atomic operation as *ADDR. Return true if
4801 EXPR is this stabilized form. */
4803 static bool
4804 goa_lhs_expr_p (tree expr, tree addr)
4806 /* Also include casts to other type variants. The C front end is fond
4807 of adding these for e.g. volatile variables. This is like
4808 STRIP_TYPE_NOPS but includes the main variant lookup. */
4809 while ((TREE_CODE (expr) == NOP_EXPR
4810 || TREE_CODE (expr) == CONVERT_EXPR
4811 || TREE_CODE (expr) == NON_LVALUE_EXPR)
4812 && TREE_OPERAND (expr, 0) != error_mark_node
4813 && (TYPE_MAIN_VARIANT (TREE_TYPE (expr))
4814 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (expr, 0)))))
4815 expr = TREE_OPERAND (expr, 0);
4817 if (TREE_CODE (expr) == INDIRECT_REF && TREE_OPERAND (expr, 0) == addr)
4818 return true;
4819 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
4820 return true;
4821 return false;
4824 /* A subroutine of gimplify_omp_atomic. Attempt to implement the atomic
4825 operation as a __sync_fetch_and_op builtin. INDEX is log2 of the
4826 size of the data type, and thus usable to find the index of the builtin
4827 decl. Returns GS_UNHANDLED if the expression is not of the proper form. */
4829 static enum gimplify_status
4830 gimplify_omp_atomic_fetch_op (tree *expr_p, tree addr, tree rhs, int index)
4832 enum built_in_function base;
4833 tree decl, args, itype;
4834 enum insn_code *optab;
4836 /* Check for one of the supported fetch-op operations. */
4837 switch (TREE_CODE (rhs))
4839 case PLUS_EXPR:
4840 base = BUILT_IN_FETCH_AND_ADD_N;
4841 optab = sync_add_optab;
4842 break;
4843 case MINUS_EXPR:
4844 base = BUILT_IN_FETCH_AND_SUB_N;
4845 optab = sync_add_optab;
4846 break;
4847 case BIT_AND_EXPR:
4848 base = BUILT_IN_FETCH_AND_AND_N;
4849 optab = sync_and_optab;
4850 break;
4851 case BIT_IOR_EXPR:
4852 base = BUILT_IN_FETCH_AND_OR_N;
4853 optab = sync_ior_optab;
4854 break;
4855 case BIT_XOR_EXPR:
4856 base = BUILT_IN_FETCH_AND_XOR_N;
4857 optab = sync_xor_optab;
4858 break;
4859 default:
4860 return GS_UNHANDLED;
4863 /* Make sure the expression is of the proper form. */
4864 if (goa_lhs_expr_p (TREE_OPERAND (rhs, 0), addr))
4865 rhs = TREE_OPERAND (rhs, 1);
4866 else if (commutative_tree_code (TREE_CODE (rhs))
4867 && goa_lhs_expr_p (TREE_OPERAND (rhs, 1), addr))
4868 rhs = TREE_OPERAND (rhs, 0);
4869 else
4870 return GS_UNHANDLED;
4872 decl = built_in_decls[base + index + 1];
4873 itype = TREE_TYPE (TREE_TYPE (decl));
4875 if (optab[TYPE_MODE (itype)] == CODE_FOR_nothing)
4876 return GS_UNHANDLED;
4878 args = tree_cons (NULL, fold_convert (itype, rhs), NULL);
4879 args = tree_cons (NULL, addr, args);
4880 *expr_p = build_function_call_expr (decl, args);
4881 return GS_OK;
4884 /* A subroutine of gimplify_omp_atomic_pipeline. Walk *EXPR_P and replace
4885 appearences of *LHS_ADDR with LHS_VAR. If an expression does not involve
4886 the lhs, evaluate it into a temporary. Return 1 if the lhs appeared as
4887 a subexpression, 0 if it did not, or -1 if an error was encountered. */
4889 static int
4890 goa_stabilize_expr (tree *expr_p, tree *pre_p, tree lhs_addr, tree lhs_var)
4892 tree expr = *expr_p;
4893 int saw_lhs;
4895 if (goa_lhs_expr_p (expr, lhs_addr))
4897 *expr_p = lhs_var;
4898 return 1;
4900 if (is_gimple_val (expr))
4901 return 0;
4903 saw_lhs = 0;
4904 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
4906 case tcc_binary:
4907 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
4908 lhs_addr, lhs_var);
4909 case tcc_unary:
4910 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
4911 lhs_addr, lhs_var);
4912 break;
4913 default:
4914 break;
4917 if (saw_lhs == 0)
4919 enum gimplify_status gs;
4920 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
4921 if (gs != GS_ALL_DONE)
4922 saw_lhs = -1;
4925 return saw_lhs;
4928 /* A subroutine of gimplify_omp_atomic. Implement the atomic operation as:
4930 oldval = *addr;
4931 repeat:
4932 newval = rhs; // with oldval replacing *addr in rhs
4933 oldval = __sync_val_compare_and_swap (addr, oldval, newval);
4934 if (oldval != newval)
4935 goto repeat;
4937 INDEX is log2 of the size of the data type, and thus usable to find the
4938 index of the builtin decl. */
4940 static enum gimplify_status
4941 gimplify_omp_atomic_pipeline (tree *expr_p, tree *pre_p, tree addr,
4942 tree rhs, int index)
4944 tree oldval, oldival, oldival2, newval, newival, label;
4945 tree type, itype, cmpxchg, args, x, iaddr;
4947 cmpxchg = built_in_decls[BUILT_IN_VAL_COMPARE_AND_SWAP_N + index + 1];
4948 type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
4949 itype = TREE_TYPE (TREE_TYPE (cmpxchg));
4951 if (sync_compare_and_swap[TYPE_MODE (itype)] == CODE_FOR_nothing)
4952 return GS_UNHANDLED;
4954 oldval = create_tmp_var (type, NULL);
4955 newval = create_tmp_var (type, NULL);
4957 /* Precompute as much of RHS as possible. In the same walk, replace
4958 occurrences of the lhs value with our temporary. */
4959 if (goa_stabilize_expr (&rhs, pre_p, addr, oldval) < 0)
4960 return GS_ERROR;
4962 x = build_fold_indirect_ref (addr);
4963 x = build2 (MODIFY_EXPR, void_type_node, oldval, x);
4964 gimplify_and_add (x, pre_p);
4966 /* For floating-point values, we'll need to view-convert them to integers
4967 so that we can perform the atomic compare and swap. Simplify the
4968 following code by always setting up the "i"ntegral variables. */
4969 if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
4971 oldival = oldval;
4972 newival = newval;
4973 iaddr = addr;
4975 else
4977 oldival = create_tmp_var (itype, NULL);
4978 newival = create_tmp_var (itype, NULL);
4980 x = build1 (VIEW_CONVERT_EXPR, itype, oldval);
4981 x = build2 (MODIFY_EXPR, void_type_node, oldival, x);
4982 gimplify_and_add (x, pre_p);
4983 iaddr = fold_convert (build_pointer_type (itype), addr);
4986 oldival2 = create_tmp_var (itype, NULL);
4988 label = create_artificial_label ();
4989 x = build1 (LABEL_EXPR, void_type_node, label);
4990 gimplify_and_add (x, pre_p);
4992 x = build2 (MODIFY_EXPR, void_type_node, newval, rhs);
4993 gimplify_and_add (x, pre_p);
4995 if (newval != newival)
4997 x = build1 (VIEW_CONVERT_EXPR, itype, newval);
4998 x = build2 (MODIFY_EXPR, void_type_node, newival, x);
4999 gimplify_and_add (x, pre_p);
5002 x = build2 (MODIFY_EXPR, void_type_node, oldival2, oldival);
5003 gimplify_and_add (x, pre_p);
5005 args = tree_cons (NULL, fold_convert (itype, newival), NULL);
5006 args = tree_cons (NULL, fold_convert (itype, oldival), args);
5007 args = tree_cons (NULL, iaddr, args);
5008 x = build_function_call_expr (cmpxchg, args);
5009 if (oldval == oldival)
5010 x = fold_convert (type, x);
5011 x = build2 (MODIFY_EXPR, void_type_node, oldival, x);
5012 gimplify_and_add (x, pre_p);
5014 /* For floating point, be prepared for the loop backedge. */
5015 if (oldval != oldival)
5017 x = build1 (VIEW_CONVERT_EXPR, type, oldival);
5018 x = build2 (MODIFY_EXPR, void_type_node, oldval, x);
5019 gimplify_and_add (x, pre_p);
5022 /* Note that we always perform the comparison as an integer, even for
5023 floating point. This allows the atomic operation to properly
5024 succeed even with NaNs and -0.0. */
5025 x = build3 (COND_EXPR, void_type_node,
5026 build2 (NE_EXPR, boolean_type_node, oldival, oldival2),
5027 build1 (GOTO_EXPR, void_type_node, label), NULL);
5028 gimplify_and_add (x, pre_p);
5030 *expr_p = NULL;
5031 return GS_ALL_DONE;
5034 /* A subroutine of gimplify_omp_atomic. Implement the atomic operation as:
5036 GOMP_atomic_start ();
5037 *addr = rhs;
5038 GOMP_atomic_end ();
5040 The result is not globally atomic, but works so long as all parallel
5041 references are within #pragma omp atomic directives. According to
5042 responses received from omp@openmp.org, appears to be within spec.
5043 Which makes sense, since that's how several other compilers handle
5044 this situation as well. */
5046 static enum gimplify_status
5047 gimplify_omp_atomic_mutex (tree *expr_p, tree *pre_p, tree addr, tree rhs)
5049 tree t;
5051 t = built_in_decls[BUILT_IN_GOMP_ATOMIC_START];
5052 t = build_function_call_expr (t, NULL);
5053 gimplify_and_add (t, pre_p);
5055 t = build_fold_indirect_ref (addr);
5056 t = build2 (MODIFY_EXPR, void_type_node, t, rhs);
5057 gimplify_and_add (t, pre_p);
5059 t = built_in_decls[BUILT_IN_GOMP_ATOMIC_END];
5060 t = build_function_call_expr (t, NULL);
5061 gimplify_and_add (t, pre_p);
5063 *expr_p = NULL;
5064 return GS_ALL_DONE;
5067 /* Gimplify an OMP_ATOMIC statement. */
5069 static enum gimplify_status
5070 gimplify_omp_atomic (tree *expr_p, tree *pre_p)
5072 tree addr = TREE_OPERAND (*expr_p, 0);
5073 tree rhs = TREE_OPERAND (*expr_p, 1);
5074 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
5075 HOST_WIDE_INT index;
5077 /* Make sure the type is one of the supported sizes. */
5078 index = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5079 index = exact_log2 (index);
5080 if (index >= 0 && index <= 4)
5082 enum gimplify_status gs;
5083 unsigned int align;
5085 if (DECL_P (TREE_OPERAND (addr, 0)))
5086 align = DECL_ALIGN_UNIT (TREE_OPERAND (addr, 0));
5087 else if (TREE_CODE (TREE_OPERAND (addr, 0)) == COMPONENT_REF
5088 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (addr, 0), 1))
5089 == FIELD_DECL)
5090 align = DECL_ALIGN_UNIT (TREE_OPERAND (TREE_OPERAND (addr, 0), 1));
5091 else
5092 align = TYPE_ALIGN_UNIT (type);
5094 /* __sync builtins require strict data alignment. */
5095 if (exact_log2 (align) >= index)
5097 /* When possible, use specialized atomic update functions. */
5098 if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
5100 gs = gimplify_omp_atomic_fetch_op (expr_p, addr, rhs, index);
5101 if (gs != GS_UNHANDLED)
5102 return gs;
5105 /* If we don't have specialized __sync builtins, try and implement
5106 as a compare and swap loop. */
5107 gs = gimplify_omp_atomic_pipeline (expr_p, pre_p, addr, rhs, index);
5108 if (gs != GS_UNHANDLED)
5109 return gs;
5113 /* The ultimate fallback is wrapping the operation in a mutex. */
5114 return gimplify_omp_atomic_mutex (expr_p, pre_p, addr, rhs);
5117 /* Gimplifies the expression tree pointed to by EXPR_P. Return 0 if
5118 gimplification failed.
5120 PRE_P points to the list where side effects that must happen before
5121 EXPR should be stored.
5123 POST_P points to the list where side effects that must happen after
5124 EXPR should be stored, or NULL if there is no suitable list. In
5125 that case, we copy the result to a temporary, emit the
5126 post-effects, and then return the temporary.
5128 GIMPLE_TEST_F points to a function that takes a tree T and
5129 returns nonzero if T is in the GIMPLE form requested by the
5130 caller. The GIMPLE predicates are in tree-gimple.c.
5132 This test is used twice. Before gimplification, the test is
5133 invoked to determine whether *EXPR_P is already gimple enough. If
5134 that fails, *EXPR_P is gimplified according to its code and
5135 GIMPLE_TEST_F is called again. If the test still fails, then a new
5136 temporary variable is created and assigned the value of the
5137 gimplified expression.
5139 FALLBACK tells the function what sort of a temporary we want. If the 1
5140 bit is set, an rvalue is OK. If the 2 bit is set, an lvalue is OK.
5141 If both are set, either is OK, but an lvalue is preferable.
5143 The return value is either GS_ERROR or GS_ALL_DONE, since this function
5144 iterates until solution. */
5146 enum gimplify_status
5147 gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
5148 bool (* gimple_test_f) (tree), fallback_t fallback)
5150 tree tmp;
5151 tree internal_pre = NULL_TREE;
5152 tree internal_post = NULL_TREE;
5153 tree save_expr;
5154 int is_statement = (pre_p == NULL);
5155 location_t saved_location;
5156 enum gimplify_status ret;
5158 save_expr = *expr_p;
5159 if (save_expr == NULL_TREE)
5160 return GS_ALL_DONE;
5162 /* We used to check the predicate here and return immediately if it
5163 succeeds. This is wrong; the design is for gimplification to be
5164 idempotent, and for the predicates to only test for valid forms, not
5165 whether they are fully simplified. */
5167 /* Set up our internal queues if needed. */
5168 if (pre_p == NULL)
5169 pre_p = &internal_pre;
5170 if (post_p == NULL)
5171 post_p = &internal_post;
5173 saved_location = input_location;
5174 if (save_expr != error_mark_node
5175 && EXPR_HAS_LOCATION (*expr_p))
5176 input_location = EXPR_LOCATION (*expr_p);
5178 /* Loop over the specific gimplifiers until the toplevel node
5179 remains the same. */
5182 /* Strip away as many useless type conversions as possible
5183 at the toplevel. */
5184 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
5186 /* Remember the expr. */
5187 save_expr = *expr_p;
5189 /* Die, die, die, my darling. */
5190 if (save_expr == error_mark_node
5191 || (TREE_TYPE (save_expr)
5192 && TREE_TYPE (save_expr) == error_mark_node))
5194 ret = GS_ERROR;
5195 break;
5198 /* Do any language-specific gimplification. */
5199 ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
5200 if (ret == GS_OK)
5202 if (*expr_p == NULL_TREE)
5203 break;
5204 if (*expr_p != save_expr)
5205 continue;
5207 else if (ret != GS_UNHANDLED)
5208 break;
5210 ret = GS_OK;
5211 switch (TREE_CODE (*expr_p))
5213 /* First deal with the special cases. */
5215 case POSTINCREMENT_EXPR:
5216 case POSTDECREMENT_EXPR:
5217 case PREINCREMENT_EXPR:
5218 case PREDECREMENT_EXPR:
5219 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
5220 fallback != fb_none);
5221 break;
5223 case ARRAY_REF:
5224 case ARRAY_RANGE_REF:
5225 case REALPART_EXPR:
5226 case IMAGPART_EXPR:
5227 case COMPONENT_REF:
5228 case VIEW_CONVERT_EXPR:
5229 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
5230 fallback ? fallback : fb_rvalue);
5231 break;
5233 case COND_EXPR:
5234 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
5235 /* C99 code may assign to an array in a structure value of a
5236 conditional expression, and this has undefined behavior
5237 only on execution, so create a temporary if an lvalue is
5238 required. */
5239 if (fallback == fb_lvalue)
5241 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5242 lang_hooks.mark_addressable (*expr_p);
5244 break;
5246 case CALL_EXPR:
5247 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
5248 /* C99 code may assign to an array in a structure returned
5249 from a function, and this has undefined behavior only on
5250 execution, so create a temporary if an lvalue is
5251 required. */
5252 if (fallback == fb_lvalue)
5254 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5255 lang_hooks.mark_addressable (*expr_p);
5257 break;
5259 case TREE_LIST:
5260 gcc_unreachable ();
5262 case COMPOUND_EXPR:
5263 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
5264 break;
5266 case MODIFY_EXPR:
5267 case INIT_EXPR:
5268 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
5269 fallback != fb_none);
5271 /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer
5272 useful. */
5273 if (*expr_p && TREE_CODE (*expr_p) == INIT_EXPR)
5274 TREE_SET_CODE (*expr_p, MODIFY_EXPR);
5275 break;
5277 case TRUTH_ANDIF_EXPR:
5278 case TRUTH_ORIF_EXPR:
5279 ret = gimplify_boolean_expr (expr_p);
5280 break;
5282 case TRUTH_NOT_EXPR:
5283 TREE_OPERAND (*expr_p, 0)
5284 = gimple_boolify (TREE_OPERAND (*expr_p, 0));
5285 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5286 is_gimple_val, fb_rvalue);
5287 recalculate_side_effects (*expr_p);
5288 break;
5290 case ADDR_EXPR:
5291 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
5292 break;
5294 case VA_ARG_EXPR:
5295 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
5296 break;
5298 case CONVERT_EXPR:
5299 case NOP_EXPR:
5300 if (IS_EMPTY_STMT (*expr_p))
5302 ret = GS_ALL_DONE;
5303 break;
5306 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
5307 || fallback == fb_none)
5309 /* Just strip a conversion to void (or in void context) and
5310 try again. */
5311 *expr_p = TREE_OPERAND (*expr_p, 0);
5312 break;
5315 ret = gimplify_conversion (expr_p);
5316 if (ret == GS_ERROR)
5317 break;
5318 if (*expr_p != save_expr)
5319 break;
5320 /* FALLTHRU */
5322 case FIX_TRUNC_EXPR:
5323 case FIX_CEIL_EXPR:
5324 case FIX_FLOOR_EXPR:
5325 case FIX_ROUND_EXPR:
5326 /* unary_expr: ... | '(' cast ')' val | ... */
5327 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5328 is_gimple_val, fb_rvalue);
5329 recalculate_side_effects (*expr_p);
5330 break;
5332 case INDIRECT_REF:
5333 *expr_p = fold_indirect_ref (*expr_p);
5334 if (*expr_p != save_expr)
5335 break;
5336 /* else fall through. */
5337 case ALIGN_INDIRECT_REF:
5338 case MISALIGNED_INDIRECT_REF:
5339 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5340 is_gimple_reg, fb_rvalue);
5341 recalculate_side_effects (*expr_p);
5342 break;
5344 /* Constants need not be gimplified. */
5345 case INTEGER_CST:
5346 case REAL_CST:
5347 case STRING_CST:
5348 case COMPLEX_CST:
5349 case VECTOR_CST:
5350 ret = GS_ALL_DONE;
5351 break;
5353 case CONST_DECL:
5354 /* If we require an lvalue, such as for ADDR_EXPR, retain the
5355 CONST_DECL node. Otherwise the decl is replaceable by its
5356 value. */
5357 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
5358 if (fallback & fb_lvalue)
5359 ret = GS_ALL_DONE;
5360 else
5361 *expr_p = DECL_INITIAL (*expr_p);
5362 break;
5364 case DECL_EXPR:
5365 ret = gimplify_decl_expr (expr_p);
5366 break;
5368 case EXC_PTR_EXPR:
5369 /* FIXME make this a decl. */
5370 ret = GS_ALL_DONE;
5371 break;
5373 case BIND_EXPR:
5374 ret = gimplify_bind_expr (expr_p, NULL, pre_p);
5375 break;
5377 case LOOP_EXPR:
5378 ret = gimplify_loop_expr (expr_p, pre_p);
5379 break;
5381 case SWITCH_EXPR:
5382 ret = gimplify_switch_expr (expr_p, pre_p);
5383 break;
5385 case EXIT_EXPR:
5386 ret = gimplify_exit_expr (expr_p);
5387 break;
5389 case GOTO_EXPR:
5390 /* If the target is not LABEL, then it is a computed jump
5391 and the target needs to be gimplified. */
5392 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
5393 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
5394 NULL, is_gimple_val, fb_rvalue);
5395 break;
5397 case LABEL_EXPR:
5398 ret = GS_ALL_DONE;
5399 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
5400 == current_function_decl);
5401 break;
5403 case CASE_LABEL_EXPR:
5404 ret = gimplify_case_label_expr (expr_p);
5405 break;
5407 case RETURN_EXPR:
5408 ret = gimplify_return_expr (*expr_p, pre_p);
5409 break;
5411 case CONSTRUCTOR:
5412 /* Don't reduce this in place; let gimplify_init_constructor work its
5413 magic. Buf if we're just elaborating this for side effects, just
5414 gimplify any element that has side-effects. */
5415 if (fallback == fb_none)
5417 unsigned HOST_WIDE_INT ix;
5418 constructor_elt *ce;
5419 tree temp = NULL_TREE;
5420 for (ix = 0;
5421 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (*expr_p),
5422 ix, ce);
5423 ix++)
5424 if (TREE_SIDE_EFFECTS (ce->value))
5425 append_to_statement_list (ce->value, &temp);
5427 *expr_p = temp;
5428 ret = GS_OK;
5430 /* C99 code may assign to an array in a constructed
5431 structure or union, and this has undefined behavior only
5432 on execution, so create a temporary if an lvalue is
5433 required. */
5434 else if (fallback == fb_lvalue)
5436 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5437 lang_hooks.mark_addressable (*expr_p);
5439 else
5440 ret = GS_ALL_DONE;
5441 break;
5443 /* The following are special cases that are not handled by the
5444 original GIMPLE grammar. */
5446 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
5447 eliminated. */
5448 case SAVE_EXPR:
5449 ret = gimplify_save_expr (expr_p, pre_p, post_p);
5450 break;
5452 case BIT_FIELD_REF:
5454 enum gimplify_status r0, r1, r2;
5456 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5457 is_gimple_lvalue, fb_either);
5458 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5459 is_gimple_val, fb_rvalue);
5460 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
5461 is_gimple_val, fb_rvalue);
5462 recalculate_side_effects (*expr_p);
5464 ret = MIN (r0, MIN (r1, r2));
5466 break;
5468 case NON_LVALUE_EXPR:
5469 /* This should have been stripped above. */
5470 gcc_unreachable ();
5472 case ASM_EXPR:
5473 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
5474 break;
5476 case TRY_FINALLY_EXPR:
5477 case TRY_CATCH_EXPR:
5478 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
5479 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
5480 ret = GS_ALL_DONE;
5481 break;
5483 case CLEANUP_POINT_EXPR:
5484 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
5485 break;
5487 case TARGET_EXPR:
5488 ret = gimplify_target_expr (expr_p, pre_p, post_p);
5489 break;
5491 case CATCH_EXPR:
5492 gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
5493 ret = GS_ALL_DONE;
5494 break;
5496 case EH_FILTER_EXPR:
5497 gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
5498 ret = GS_ALL_DONE;
5499 break;
5501 case OBJ_TYPE_REF:
5503 enum gimplify_status r0, r1;
5504 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
5505 is_gimple_val, fb_rvalue);
5506 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
5507 is_gimple_val, fb_rvalue);
5508 ret = MIN (r0, r1);
5510 break;
5512 case LABEL_DECL:
5513 /* We get here when taking the address of a label. We mark
5514 the label as "forced"; meaning it can never be removed and
5515 it is a potential target for any computed goto. */
5516 FORCED_LABEL (*expr_p) = 1;
5517 ret = GS_ALL_DONE;
5518 break;
5520 case STATEMENT_LIST:
5521 ret = gimplify_statement_list (expr_p);
5522 break;
5524 case WITH_SIZE_EXPR:
5526 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5527 post_p == &internal_post ? NULL : post_p,
5528 gimple_test_f, fallback);
5529 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5530 is_gimple_val, fb_rvalue);
5532 break;
5534 case VAR_DECL:
5535 case PARM_DECL:
5536 ret = gimplify_var_or_parm_decl (expr_p);
5537 break;
5539 case SSA_NAME:
5540 /* Allow callbacks into the gimplifier during optimization. */
5541 ret = GS_ALL_DONE;
5542 break;
5544 case OMP_PARALLEL:
5545 ret = gimplify_omp_parallel (expr_p, pre_p);
5546 break;
5548 case OMP_FOR:
5549 ret = gimplify_omp_for (expr_p, pre_p);
5550 break;
5552 case OMP_SECTIONS:
5553 case OMP_SINGLE:
5554 ret = gimplify_omp_workshare (expr_p, pre_p);
5555 break;
5557 case OMP_SECTION:
5558 case OMP_MASTER:
5559 case OMP_ORDERED:
5560 case OMP_CRITICAL:
5561 gimplify_to_stmt_list (&OMP_BODY (*expr_p));
5562 break;
5564 case OMP_ATOMIC:
5565 ret = gimplify_omp_atomic (expr_p, pre_p);
5566 break;
5568 case OMP_RETURN_EXPR:
5569 ret = GS_ALL_DONE;
5570 break;
5572 default:
5573 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
5575 case tcc_comparison:
5576 /* If this is a comparison of objects of aggregate type,
5577 handle it specially (by converting to a call to
5578 memcmp). It would be nice to only have to do this
5579 for variable-sized objects, but then we'd have to
5580 allow the same nest of reference nodes we allow for
5581 MODIFY_EXPR and that's too complex. */
5582 if (!AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (*expr_p, 1))))
5583 goto expr_2;
5584 ret = gimplify_variable_sized_compare (expr_p);
5585 break;
5587 /* If *EXPR_P does not need to be special-cased, handle it
5588 according to its class. */
5589 case tcc_unary:
5590 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5591 post_p, is_gimple_val, fb_rvalue);
5592 break;
5594 case tcc_binary:
5595 expr_2:
5597 enum gimplify_status r0, r1;
5599 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
5600 post_p, is_gimple_val, fb_rvalue);
5601 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
5602 post_p, is_gimple_val, fb_rvalue);
5604 ret = MIN (r0, r1);
5605 break;
5608 case tcc_declaration:
5609 case tcc_constant:
5610 ret = GS_ALL_DONE;
5611 goto dont_recalculate;
5613 default:
5614 gcc_assert (TREE_CODE (*expr_p) == TRUTH_AND_EXPR
5615 || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
5616 || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR);
5617 goto expr_2;
5620 recalculate_side_effects (*expr_p);
5621 dont_recalculate:
5622 break;
5625 /* If we replaced *expr_p, gimplify again. */
5626 if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
5627 ret = GS_ALL_DONE;
5629 while (ret == GS_OK);
5631 /* If we encountered an error_mark somewhere nested inside, either
5632 stub out the statement or propagate the error back out. */
5633 if (ret == GS_ERROR)
5635 if (is_statement)
5636 *expr_p = NULL;
5637 goto out;
5640 /* This was only valid as a return value from the langhook, which
5641 we handled. Make sure it doesn't escape from any other context. */
5642 gcc_assert (ret != GS_UNHANDLED);
5644 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
5646 /* We aren't looking for a value, and we don't have a valid
5647 statement. If it doesn't have side-effects, throw it away. */
5648 if (!TREE_SIDE_EFFECTS (*expr_p))
5649 *expr_p = NULL;
5650 else if (!TREE_THIS_VOLATILE (*expr_p))
5652 /* This is probably a _REF that contains something nested that
5653 has side effects. Recurse through the operands to find it. */
5654 enum tree_code code = TREE_CODE (*expr_p);
5656 switch (code)
5658 case COMPONENT_REF:
5659 case REALPART_EXPR: case IMAGPART_EXPR:
5660 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5661 gimple_test_f, fallback);
5662 break;
5664 case ARRAY_REF: case ARRAY_RANGE_REF:
5665 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5666 gimple_test_f, fallback);
5667 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
5668 gimple_test_f, fallback);
5669 break;
5671 default:
5672 /* Anything else with side-effects must be converted to
5673 a valid statement before we get here. */
5674 gcc_unreachable ();
5677 *expr_p = NULL;
5679 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p)))
5681 /* Historically, the compiler has treated a bare
5682 reference to a volatile lvalue as forcing a load. */
5683 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
5684 /* Normally, we do want to create a temporary for a
5685 TREE_ADDRESSABLE type because such a type should not be
5686 copied by bitwise-assignment. However, we make an
5687 exception here, as all we are doing here is ensuring that
5688 we read the bytes that make up the type. We use
5689 create_tmp_var_raw because create_tmp_var will abort when
5690 given a TREE_ADDRESSABLE type. */
5691 tree tmp = create_tmp_var_raw (type, "vol");
5692 gimple_add_tmp_var (tmp);
5693 *expr_p = build2 (MODIFY_EXPR, type, tmp, *expr_p);
5695 else
5696 /* We can't do anything useful with a volatile reference to
5697 incomplete type, so just throw it away. */
5698 *expr_p = NULL;
5701 /* If we are gimplifying at the statement level, we're done. Tack
5702 everything together and replace the original statement with the
5703 gimplified form. */
5704 if (fallback == fb_none || is_statement)
5706 if (internal_pre || internal_post)
5708 append_to_statement_list (*expr_p, &internal_pre);
5709 append_to_statement_list (internal_post, &internal_pre);
5710 annotate_all_with_locus (&internal_pre, input_location);
5711 *expr_p = internal_pre;
5713 else if (!*expr_p)
5715 else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
5716 annotate_all_with_locus (expr_p, input_location);
5717 else
5718 annotate_one_with_locus (*expr_p, input_location);
5719 goto out;
5722 /* Otherwise we're gimplifying a subexpression, so the resulting value is
5723 interesting. */
5725 /* If it's sufficiently simple already, we're done. Unless we are
5726 handling some post-effects internally; if that's the case, we need to
5727 copy into a temp before adding the post-effects to the tree. */
5728 if (!internal_post && (*gimple_test_f) (*expr_p))
5729 goto out;
5731 /* Otherwise, we need to create a new temporary for the gimplified
5732 expression. */
5734 /* We can't return an lvalue if we have an internal postqueue. The
5735 object the lvalue refers to would (probably) be modified by the
5736 postqueue; we need to copy the value out first, which means an
5737 rvalue. */
5738 if ((fallback & fb_lvalue) && !internal_post
5739 && is_gimple_addressable (*expr_p))
5741 /* An lvalue will do. Take the address of the expression, store it
5742 in a temporary, and replace the expression with an INDIRECT_REF of
5743 that temporary. */
5744 tmp = build_fold_addr_expr (*expr_p);
5745 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
5746 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
5748 else if ((fallback & fb_rvalue) && is_gimple_formal_tmp_rhs (*expr_p))
5750 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
5752 /* An rvalue will do. Assign the gimplified expression into a new
5753 temporary TMP and replace the original expression with TMP. */
5755 if (internal_post || (fallback & fb_lvalue))
5756 /* The postqueue might change the value of the expression between
5757 the initialization and use of the temporary, so we can't use a
5758 formal temp. FIXME do we care? */
5759 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
5760 else
5761 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
5763 if (TREE_CODE (*expr_p) != SSA_NAME)
5764 DECL_GIMPLE_FORMAL_TEMP_P (*expr_p) = 1;
5766 else
5768 #ifdef ENABLE_CHECKING
5769 if (!(fallback & fb_mayfail))
5771 fprintf (stderr, "gimplification failed:\n");
5772 print_generic_expr (stderr, *expr_p, 0);
5773 debug_tree (*expr_p);
5774 internal_error ("gimplification failed");
5776 #endif
5777 gcc_assert (fallback & fb_mayfail);
5778 /* If this is an asm statement, and the user asked for the
5779 impossible, don't die. Fail and let gimplify_asm_expr
5780 issue an error. */
5781 ret = GS_ERROR;
5782 goto out;
5785 /* Make sure the temporary matches our predicate. */
5786 gcc_assert ((*gimple_test_f) (*expr_p));
5788 if (internal_post)
5790 annotate_all_with_locus (&internal_post, input_location);
5791 append_to_statement_list (internal_post, pre_p);
5794 out:
5795 input_location = saved_location;
5796 return ret;
5799 /* Look through TYPE for variable-sized objects and gimplify each such
5800 size that we find. Add to LIST_P any statements generated. */
5802 void
5803 gimplify_type_sizes (tree type, tree *list_p)
5805 tree field, t;
5807 if (type == NULL || type == error_mark_node)
5808 return;
5810 /* We first do the main variant, then copy into any other variants. */
5811 type = TYPE_MAIN_VARIANT (type);
5813 /* Avoid infinite recursion. */
5814 if (TYPE_SIZES_GIMPLIFIED (type))
5815 return;
5817 TYPE_SIZES_GIMPLIFIED (type) = 1;
5819 switch (TREE_CODE (type))
5821 case INTEGER_TYPE:
5822 case ENUMERAL_TYPE:
5823 case BOOLEAN_TYPE:
5824 case REAL_TYPE:
5825 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
5826 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
5828 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5830 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
5831 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
5833 break;
5835 case ARRAY_TYPE:
5836 /* These types may not have declarations, so handle them here. */
5837 gimplify_type_sizes (TREE_TYPE (type), list_p);
5838 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
5839 break;
5841 case RECORD_TYPE:
5842 case UNION_TYPE:
5843 case QUAL_UNION_TYPE:
5844 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
5845 if (TREE_CODE (field) == FIELD_DECL)
5847 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
5848 gimplify_type_sizes (TREE_TYPE (field), list_p);
5850 break;
5852 case POINTER_TYPE:
5853 case REFERENCE_TYPE:
5854 gimplify_type_sizes (TREE_TYPE (type), list_p);
5855 break;
5857 default:
5858 break;
5861 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
5862 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
5864 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5866 TYPE_SIZE (t) = TYPE_SIZE (type);
5867 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
5868 TYPE_SIZES_GIMPLIFIED (t) = 1;
5872 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
5873 a size or position, has had all of its SAVE_EXPRs evaluated.
5874 We add any required statements to STMT_P. */
5876 void
5877 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
5879 tree type, expr = *expr_p;
5881 /* We don't do anything if the value isn't there, is constant, or contains
5882 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
5883 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
5884 will want to replace it with a new variable, but that will cause problems
5885 if this type is from outside the function. It's OK to have that here. */
5886 if (expr == NULL_TREE || TREE_CONSTANT (expr)
5887 || TREE_CODE (expr) == VAR_DECL
5888 || CONTAINS_PLACEHOLDER_P (expr))
5889 return;
5891 type = TREE_TYPE (expr);
5892 *expr_p = unshare_expr (expr);
5894 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
5895 expr = *expr_p;
5897 /* Verify that we've an exact type match with the original expression.
5898 In particular, we do not wish to drop a "sizetype" in favour of a
5899 type of similar dimensions. We don't want to pollute the generic
5900 type-stripping code with this knowledge because it doesn't matter
5901 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
5902 and friends retain their "sizetype-ness". */
5903 if (TREE_TYPE (expr) != type
5904 && TREE_CODE (type) == INTEGER_TYPE
5905 && TYPE_IS_SIZETYPE (type))
5907 tree tmp;
5909 *expr_p = create_tmp_var (type, NULL);
5910 tmp = build1 (NOP_EXPR, type, expr);
5911 tmp = build2 (MODIFY_EXPR, type, *expr_p, tmp);
5912 if (EXPR_HAS_LOCATION (expr))
5913 SET_EXPR_LOCUS (tmp, EXPR_LOCUS (expr));
5914 else
5915 SET_EXPR_LOCATION (tmp, input_location);
5917 gimplify_and_add (tmp, stmt_p);
5921 #ifdef ENABLE_CHECKING
5922 /* Compare types A and B for a "close enough" match. */
5924 static bool
5925 cpt_same_type (tree a, tree b)
5927 if (lang_hooks.types_compatible_p (a, b))
5928 return true;
5930 /* ??? The C++ FE decomposes METHOD_TYPES to FUNCTION_TYPES and doesn't
5931 link them together. This routine is intended to catch type errors
5932 that will affect the optimizers, and the optimizers don't add new
5933 dereferences of function pointers, so ignore it. */
5934 if ((TREE_CODE (a) == FUNCTION_TYPE || TREE_CODE (a) == METHOD_TYPE)
5935 && (TREE_CODE (b) == FUNCTION_TYPE || TREE_CODE (b) == METHOD_TYPE))
5936 return true;
5938 /* ??? The C FE pushes type qualifiers after the fact into the type of
5939 the element from the type of the array. See build_unary_op's handling
5940 of ADDR_EXPR. This seems wrong -- if we were going to do this, we
5941 should have done it when creating the variable in the first place.
5942 Alternately, why aren't the two array types made variants? */
5943 if (TREE_CODE (a) == ARRAY_TYPE && TREE_CODE (b) == ARRAY_TYPE)
5944 return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
5946 /* And because of those, we have to recurse down through pointers. */
5947 if (POINTER_TYPE_P (a) && POINTER_TYPE_P (b))
5948 return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
5950 return false;
5953 /* Check for some cases of the front end missing cast expressions.
5954 The type of a dereference should correspond to the pointer type;
5955 similarly the type of an address should match its object. */
5957 static tree
5958 check_pointer_types_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
5959 void *data ATTRIBUTE_UNUSED)
5961 tree t = *tp;
5962 tree ptype, otype, dtype;
5964 switch (TREE_CODE (t))
5966 case INDIRECT_REF:
5967 case ARRAY_REF:
5968 otype = TREE_TYPE (t);
5969 ptype = TREE_TYPE (TREE_OPERAND (t, 0));
5970 dtype = TREE_TYPE (ptype);
5971 gcc_assert (cpt_same_type (otype, dtype));
5972 break;
5974 case ADDR_EXPR:
5975 ptype = TREE_TYPE (t);
5976 otype = TREE_TYPE (TREE_OPERAND (t, 0));
5977 dtype = TREE_TYPE (ptype);
5978 if (!cpt_same_type (otype, dtype))
5980 /* &array is allowed to produce a pointer to the element, rather than
5981 a pointer to the array type. We must allow this in order to
5982 properly represent assigning the address of an array in C into
5983 pointer to the element type. */
5984 gcc_assert (TREE_CODE (otype) == ARRAY_TYPE
5985 && POINTER_TYPE_P (ptype)
5986 && cpt_same_type (TREE_TYPE (otype), dtype));
5987 break;
5989 break;
5991 default:
5992 return NULL_TREE;
5996 return NULL_TREE;
5998 #endif
6000 /* Gimplify the body of statements pointed to by BODY_P. FNDECL is the
6001 function decl containing BODY. */
6003 void
6004 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
6006 location_t saved_location = input_location;
6007 tree body, parm_stmts;
6009 timevar_push (TV_TREE_GIMPLIFY);
6011 gcc_assert (gimplify_ctxp == NULL);
6012 push_gimplify_context ();
6014 /* Unshare most shared trees in the body and in that of any nested functions.
6015 It would seem we don't have to do this for nested functions because
6016 they are supposed to be output and then the outer function gimplified
6017 first, but the g++ front end doesn't always do it that way. */
6018 unshare_body (body_p, fndecl);
6019 unvisit_body (body_p, fndecl);
6021 /* Make sure input_location isn't set to something wierd. */
6022 input_location = DECL_SOURCE_LOCATION (fndecl);
6024 /* Resolve callee-copies. This has to be done before processing
6025 the body so that DECL_VALUE_EXPR gets processed correctly. */
6026 parm_stmts = do_parms ? gimplify_parameters () : NULL;
6028 /* Gimplify the function's body. */
6029 gimplify_stmt (body_p);
6030 body = *body_p;
6032 if (!body)
6033 body = alloc_stmt_list ();
6034 else if (TREE_CODE (body) == STATEMENT_LIST)
6036 tree t = expr_only (*body_p);
6037 if (t)
6038 body = t;
6041 /* If there isn't an outer BIND_EXPR, add one. */
6042 if (TREE_CODE (body) != BIND_EXPR)
6044 tree b = build3 (BIND_EXPR, void_type_node, NULL_TREE,
6045 NULL_TREE, NULL_TREE);
6046 TREE_SIDE_EFFECTS (b) = 1;
6047 append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
6048 body = b;
6051 /* If we had callee-copies statements, insert them at the beginning
6052 of the function. */
6053 if (parm_stmts)
6055 append_to_statement_list_force (BIND_EXPR_BODY (body), &parm_stmts);
6056 BIND_EXPR_BODY (body) = parm_stmts;
6059 /* Unshare again, in case gimplification was sloppy. */
6060 unshare_all_trees (body);
6062 *body_p = body;
6064 pop_gimplify_context (body);
6065 gcc_assert (gimplify_ctxp == NULL);
6067 #ifdef ENABLE_CHECKING
6068 walk_tree (body_p, check_pointer_types_r, NULL, NULL);
6069 #endif
6071 timevar_pop (TV_TREE_GIMPLIFY);
6072 input_location = saved_location;
6075 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
6076 node for the function we want to gimplify. */
6078 void
6079 gimplify_function_tree (tree fndecl)
6081 tree oldfn, parm, ret;
6083 oldfn = current_function_decl;
6084 current_function_decl = fndecl;
6085 cfun = DECL_STRUCT_FUNCTION (fndecl);
6086 if (cfun == NULL)
6087 allocate_struct_function (fndecl);
6089 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = TREE_CHAIN (parm))
6091 /* Preliminarily mark non-addressed complex variables as eligible
6092 for promotion to gimple registers. We'll transform their uses
6093 as we find them. */
6094 if (TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
6095 && !TREE_THIS_VOLATILE (parm)
6096 && !needs_to_live_in_memory (parm))
6097 DECL_COMPLEX_GIMPLE_REG_P (parm) = 1;
6100 ret = DECL_RESULT (fndecl);
6101 if (TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
6102 && !needs_to_live_in_memory (ret))
6103 DECL_COMPLEX_GIMPLE_REG_P (ret) = 1;
6105 gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
6107 /* If we're instrumenting function entry/exit, then prepend the call to
6108 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
6109 catch the exit hook. */
6110 /* ??? Add some way to ignore exceptions for this TFE. */
6111 if (flag_instrument_function_entry_exit
6112 && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl))
6114 tree tf, x, bind;
6116 tf = build2 (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
6117 TREE_SIDE_EFFECTS (tf) = 1;
6118 x = DECL_SAVED_TREE (fndecl);
6119 append_to_statement_list (x, &TREE_OPERAND (tf, 0));
6120 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
6121 x = build_function_call_expr (x, NULL);
6122 append_to_statement_list (x, &TREE_OPERAND (tf, 1));
6124 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
6125 TREE_SIDE_EFFECTS (bind) = 1;
6126 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
6127 x = build_function_call_expr (x, NULL);
6128 append_to_statement_list (x, &BIND_EXPR_BODY (bind));
6129 append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
6131 DECL_SAVED_TREE (fndecl) = bind;
6134 current_function_decl = oldfn;
6135 cfun = oldfn ? DECL_STRUCT_FUNCTION (oldfn) : NULL;
6139 /* Expands EXPR to list of gimple statements STMTS. If SIMPLE is true,
6140 force the result to be either ssa_name or an invariant, otherwise
6141 just force it to be a rhs expression. If VAR is not NULL, make the
6142 base variable of the final destination be VAR if suitable. */
6144 tree
6145 force_gimple_operand (tree expr, tree *stmts, bool simple, tree var)
6147 tree t;
6148 enum gimplify_status ret;
6149 gimple_predicate gimple_test_f;
6151 *stmts = NULL_TREE;
6153 if (is_gimple_val (expr))
6154 return expr;
6156 gimple_test_f = simple ? is_gimple_val : is_gimple_reg_rhs;
6158 push_gimplify_context ();
6159 gimplify_ctxp->into_ssa = in_ssa_p;
6161 if (var)
6162 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
6164 ret = gimplify_expr (&expr, stmts, NULL,
6165 gimple_test_f, fb_rvalue);
6166 gcc_assert (ret != GS_ERROR);
6168 if (referenced_vars)
6170 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
6171 add_referenced_tmp_var (t);
6174 pop_gimplify_context (NULL);
6176 return expr;
6179 /* Invokes force_gimple_operand for EXPR with parameters SIMPLE_P and VAR. If
6180 some statements are produced, emits them before BSI. */
6182 tree
6183 force_gimple_operand_bsi (block_stmt_iterator *bsi, tree expr,
6184 bool simple_p, tree var)
6186 tree stmts;
6188 expr = force_gimple_operand (expr, &stmts, simple_p, var);
6189 if (stmts)
6190 bsi_insert_before (bsi, stmts, BSI_SAME_STMT);
6192 return expr;
6195 #include "gt-gimplify.h"