2005-08-16 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
[official-gcc.git] / gcc / gimplify.c
bloba4ff3d23a2cd11f9d187e4d3cdf4b243b25c3382
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 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"
50 static struct gimplify_ctx
52 tree current_bind_expr;
53 tree temps;
54 tree conditional_cleanups;
55 tree exit_label;
56 tree return_temp;
57 VEC(tree,heap) *case_labels;
58 /* The formal temporary table. Should this be persistent? */
59 htab_t temp_htab;
60 int conditions;
61 bool save_stack;
62 bool into_ssa;
63 } *gimplify_ctxp;
66 /* Formal (expression) temporary table handling: Multiple occurrences of
67 the same scalar expression are evaluated into the same temporary. */
69 typedef struct gimple_temp_hash_elt
71 tree val; /* Key */
72 tree temp; /* Value */
73 } elt_t;
75 /* Forward declarations. */
76 static enum gimplify_status gimplify_compound_expr (tree *, tree *, bool);
77 #ifdef ENABLE_CHECKING
78 static bool cpt_same_type (tree a, tree b);
79 #endif
82 /* Return a hash value for a formal temporary table entry. */
84 static hashval_t
85 gimple_tree_hash (const void *p)
87 tree t = ((const elt_t *) p)->val;
88 return iterative_hash_expr (t, 0);
91 /* Compare two formal temporary table entries. */
93 static int
94 gimple_tree_eq (const void *p1, const void *p2)
96 tree t1 = ((const elt_t *) p1)->val;
97 tree t2 = ((const elt_t *) p2)->val;
98 enum tree_code code = TREE_CODE (t1);
100 if (TREE_CODE (t2) != code
101 || TREE_TYPE (t1) != TREE_TYPE (t2))
102 return 0;
104 if (!operand_equal_p (t1, t2, 0))
105 return 0;
107 /* Only allow them to compare equal if they also hash equal; otherwise
108 results are nondeterminate, and we fail bootstrap comparison. */
109 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
111 return 1;
114 /* Set up a context for the gimplifier. */
116 void
117 push_gimplify_context (void)
119 gcc_assert (!gimplify_ctxp);
120 gimplify_ctxp
121 = (struct gimplify_ctx *) xcalloc (1, sizeof (struct gimplify_ctx));
122 if (optimize)
123 gimplify_ctxp->temp_htab
124 = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
125 else
126 gimplify_ctxp->temp_htab = NULL;
129 /* Tear down a context for the gimplifier. If BODY is non-null, then
130 put the temporaries into the outer BIND_EXPR. Otherwise, put them
131 in the unexpanded_var_list. */
133 void
134 pop_gimplify_context (tree body)
136 tree t;
138 gcc_assert (gimplify_ctxp && !gimplify_ctxp->current_bind_expr);
140 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
141 DECL_GIMPLE_FORMAL_TEMP_P (t) = 0;
143 if (body)
144 declare_tmp_vars (gimplify_ctxp->temps, body);
145 else
146 record_vars (gimplify_ctxp->temps);
148 #if 0
149 if (!quiet_flag && optimize)
150 fprintf (stderr, " collisions: %f ",
151 htab_collisions (gimplify_ctxp->temp_htab));
152 #endif
154 if (optimize)
155 htab_delete (gimplify_ctxp->temp_htab);
156 free (gimplify_ctxp);
157 gimplify_ctxp = NULL;
160 static void
161 gimple_push_bind_expr (tree bind)
163 TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr;
164 gimplify_ctxp->current_bind_expr = bind;
167 static void
168 gimple_pop_bind_expr (void)
170 gimplify_ctxp->current_bind_expr
171 = TREE_CHAIN (gimplify_ctxp->current_bind_expr);
174 tree
175 gimple_current_bind_expr (void)
177 return gimplify_ctxp->current_bind_expr;
180 /* Returns true iff there is a COND_EXPR between us and the innermost
181 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
183 static bool
184 gimple_conditional_context (void)
186 return gimplify_ctxp->conditions > 0;
189 /* Note that we've entered a COND_EXPR. */
191 static void
192 gimple_push_condition (void)
194 #ifdef ENABLE_CHECKING
195 if (gimplify_ctxp->conditions == 0)
196 gcc_assert (!gimplify_ctxp->conditional_cleanups);
197 #endif
198 ++(gimplify_ctxp->conditions);
201 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
202 now, add any conditional cleanups we've seen to the prequeue. */
204 static void
205 gimple_pop_condition (tree *pre_p)
207 int conds = --(gimplify_ctxp->conditions);
209 gcc_assert (conds >= 0);
210 if (conds == 0)
212 append_to_statement_list (gimplify_ctxp->conditional_cleanups, pre_p);
213 gimplify_ctxp->conditional_cleanups = NULL_TREE;
217 /* A subroutine of append_to_statement_list{,_force}. T is not NULL. */
219 static void
220 append_to_statement_list_1 (tree t, tree *list_p)
222 tree list = *list_p;
223 tree_stmt_iterator i;
225 if (!list)
227 if (t && TREE_CODE (t) == STATEMENT_LIST)
229 *list_p = t;
230 return;
232 *list_p = list = alloc_stmt_list ();
235 i = tsi_last (list);
236 tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
239 /* Add T to the end of the list container pointed to by LIST_P.
240 If T is an expression with no effects, it is ignored. */
242 void
243 append_to_statement_list (tree t, tree *list_p)
245 if (t && TREE_SIDE_EFFECTS (t))
246 append_to_statement_list_1 (t, list_p);
249 /* Similar, but the statement is always added, regardless of side effects. */
251 void
252 append_to_statement_list_force (tree t, tree *list_p)
254 if (t != NULL_TREE)
255 append_to_statement_list_1 (t, list_p);
258 /* Both gimplify the statement T and append it to LIST_P. */
260 void
261 gimplify_and_add (tree t, tree *list_p)
263 gimplify_stmt (&t);
264 append_to_statement_list (t, list_p);
267 /* Strip off a legitimate source ending from the input string NAME of
268 length LEN. Rather than having to know the names used by all of
269 our front ends, we strip off an ending of a period followed by
270 up to five characters. (Java uses ".class".) */
272 static inline void
273 remove_suffix (char *name, int len)
275 int i;
277 for (i = 2; i < 8 && len > i; i++)
279 if (name[len - i] == '.')
281 name[len - i] = '\0';
282 break;
287 /* Create a nameless artificial label and put it in the current function
288 context. Returns the newly created label. */
290 tree
291 create_artificial_label (void)
293 tree lab = build_decl (LABEL_DECL, NULL_TREE, void_type_node);
295 DECL_ARTIFICIAL (lab) = 1;
296 DECL_IGNORED_P (lab) = 1;
297 DECL_CONTEXT (lab) = current_function_decl;
298 return lab;
301 /* Create a new temporary name with PREFIX. Returns an identifier. */
303 static GTY(()) unsigned int tmp_var_id_num;
305 tree
306 create_tmp_var_name (const char *prefix)
308 char *tmp_name;
310 if (prefix)
312 char *preftmp = ASTRDUP (prefix);
314 remove_suffix (preftmp, strlen (preftmp));
315 prefix = preftmp;
318 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
319 return get_identifier (tmp_name);
323 /* Create a new temporary variable declaration of type TYPE.
324 Does NOT push it into the current binding. */
326 tree
327 create_tmp_var_raw (tree type, const char *prefix)
329 tree tmp_var;
330 tree new_type;
332 /* Make the type of the variable writable. */
333 new_type = build_type_variant (type, 0, 0);
334 TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
336 tmp_var = build_decl (VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
337 type);
339 /* The variable was declared by the compiler. */
340 DECL_ARTIFICIAL (tmp_var) = 1;
341 /* And we don't want debug info for it. */
342 DECL_IGNORED_P (tmp_var) = 1;
344 /* Make the variable writable. */
345 TREE_READONLY (tmp_var) = 0;
347 DECL_EXTERNAL (tmp_var) = 0;
348 TREE_STATIC (tmp_var) = 0;
349 TREE_USED (tmp_var) = 1;
351 return tmp_var;
354 /* Create a new temporary variable declaration of type TYPE. DOES push the
355 variable into the current binding. Further, assume that this is called
356 only from gimplification or optimization, at which point the creation of
357 certain types are bugs. */
359 tree
360 create_tmp_var (tree type, const char *prefix)
362 tree tmp_var;
364 /* We don't allow types that are addressable (meaning we can't make copies),
365 incomplete, or of variable size. */
366 gcc_assert (!TREE_ADDRESSABLE (type)
367 && COMPLETE_TYPE_P (type)
368 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST);
370 tmp_var = create_tmp_var_raw (type, prefix);
371 gimple_add_tmp_var (tmp_var);
372 return tmp_var;
375 /* Given a tree, try to return a useful variable name that we can use
376 to prefix a temporary that is being assigned the value of the tree.
377 I.E. given <temp> = &A, return A. */
379 const char *
380 get_name (tree t)
382 tree stripped_decl;
384 stripped_decl = t;
385 STRIP_NOPS (stripped_decl);
386 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
387 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
388 else
390 switch (TREE_CODE (stripped_decl))
392 case ADDR_EXPR:
393 return get_name (TREE_OPERAND (stripped_decl, 0));
394 break;
395 default:
396 return NULL;
401 /* Create a temporary with a name derived from VAL. Subroutine of
402 lookup_tmp_var; nobody else should call this function. */
404 static inline tree
405 create_tmp_from_val (tree val)
407 return create_tmp_var (TREE_TYPE (val), get_name (val));
410 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
411 an existing expression temporary. */
413 static tree
414 lookup_tmp_var (tree val, bool is_formal)
416 tree ret;
418 /* If not optimizing, never really reuse a temporary. local-alloc
419 won't allocate any variable that is used in more than one basic
420 block, which means it will go into memory, causing much extra
421 work in reload and final and poorer code generation, outweighing
422 the extra memory allocation here. */
423 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
424 ret = create_tmp_from_val (val);
425 else
427 elt_t elt, *elt_p;
428 void **slot;
430 elt.val = val;
431 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
432 if (*slot == NULL)
434 elt_p = xmalloc (sizeof (*elt_p));
435 elt_p->val = val;
436 elt_p->temp = ret = create_tmp_from_val (val);
437 *slot = (void *) elt_p;
439 else
441 elt_p = (elt_t *) *slot;
442 ret = elt_p->temp;
446 if (is_formal)
447 DECL_GIMPLE_FORMAL_TEMP_P (ret) = 1;
449 return ret;
452 /* Returns a formal temporary variable initialized with VAL. PRE_P is as
453 in gimplify_expr. Only use this function if:
455 1) The value of the unfactored expression represented by VAL will not
456 change between the initialization and use of the temporary, and
457 2) The temporary will not be otherwise modified.
459 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
460 and #2 means it is inappropriate for && temps.
462 For other cases, use get_initialized_tmp_var instead. */
464 static tree
465 internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
467 tree t, mod;
469 gimplify_expr (&val, pre_p, post_p, is_gimple_formal_tmp_rhs, fb_rvalue);
471 t = lookup_tmp_var (val, is_formal);
473 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE)
474 DECL_COMPLEX_GIMPLE_REG_P (t) = 1;
476 mod = build (MODIFY_EXPR, TREE_TYPE (t), t, val);
478 if (EXPR_HAS_LOCATION (val))
479 SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
480 else
481 SET_EXPR_LOCATION (mod, input_location);
483 /* gimplify_modify_expr might want to reduce this further. */
484 gimplify_and_add (mod, pre_p);
486 /* If we're gimplifying into ssa, gimplify_modify_expr will have
487 given our temporary an ssa name. Find and return it. */
488 if (gimplify_ctxp->into_ssa)
489 t = TREE_OPERAND (mod, 0);
491 return t;
494 tree
495 get_formal_tmp_var (tree val, tree *pre_p)
497 return internal_get_tmp_var (val, pre_p, NULL, true);
500 /* Returns a temporary variable initialized with VAL. PRE_P and POST_P
501 are as in gimplify_expr. */
503 tree
504 get_initialized_tmp_var (tree val, tree *pre_p, tree *post_p)
506 return internal_get_tmp_var (val, pre_p, post_p, false);
509 /* Declares all the variables in VARS in SCOPE. */
511 void
512 declare_tmp_vars (tree vars, tree scope)
514 tree last = vars;
515 if (last)
517 tree temps;
519 /* C99 mode puts the default 'return 0;' for main outside the outer
520 braces. So drill down until we find an actual scope. */
521 while (TREE_CODE (scope) == COMPOUND_EXPR)
522 scope = TREE_OPERAND (scope, 0);
524 gcc_assert (TREE_CODE (scope) == BIND_EXPR);
526 temps = nreverse (last);
527 TREE_CHAIN (last) = BIND_EXPR_VARS (scope);
528 BIND_EXPR_VARS (scope) = temps;
532 void
533 gimple_add_tmp_var (tree tmp)
535 gcc_assert (!TREE_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
537 DECL_CONTEXT (tmp) = current_function_decl;
538 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
540 if (gimplify_ctxp)
542 TREE_CHAIN (tmp) = gimplify_ctxp->temps;
543 gimplify_ctxp->temps = tmp;
545 else if (cfun)
546 record_vars (tmp);
547 else
548 declare_tmp_vars (tmp, DECL_SAVED_TREE (current_function_decl));
551 /* Determines whether to assign a locus to the statement STMT. */
553 static bool
554 should_carry_locus_p (tree stmt)
556 /* Don't emit a line note for a label. We particularly don't want to
557 emit one for the break label, since it doesn't actually correspond
558 to the beginning of the loop/switch. */
559 if (TREE_CODE (stmt) == LABEL_EXPR)
560 return false;
562 /* Do not annotate empty statements, since it confuses gcov. */
563 if (!TREE_SIDE_EFFECTS (stmt))
564 return false;
566 return true;
569 static void
570 annotate_one_with_locus (tree t, location_t locus)
572 if (EXPR_P (t) && ! EXPR_HAS_LOCATION (t) && should_carry_locus_p (t))
573 SET_EXPR_LOCATION (t, locus);
576 void
577 annotate_all_with_locus (tree *stmt_p, location_t locus)
579 tree_stmt_iterator i;
581 if (!*stmt_p)
582 return;
584 for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
586 tree t = tsi_stmt (i);
588 /* Assuming we've already been gimplified, we shouldn't
589 see nested chaining constructs anymore. */
590 gcc_assert (TREE_CODE (t) != STATEMENT_LIST
591 && TREE_CODE (t) != COMPOUND_EXPR);
593 annotate_one_with_locus (t, locus);
597 /* Similar to copy_tree_r() but do not copy SAVE_EXPR or TARGET_EXPR nodes.
598 These nodes model computations that should only be done once. If we
599 were to unshare something like SAVE_EXPR(i++), the gimplification
600 process would create wrong code. */
602 static tree
603 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
605 enum tree_code code = TREE_CODE (*tp);
606 /* Don't unshare types, decls, constants and SAVE_EXPR nodes. */
607 if (TREE_CODE_CLASS (code) == tcc_type
608 || TREE_CODE_CLASS (code) == tcc_declaration
609 || TREE_CODE_CLASS (code) == tcc_constant
610 || code == SAVE_EXPR || code == TARGET_EXPR
611 /* We can't do anything sensible with a BLOCK used as an expression,
612 but we also can't just die when we see it because of non-expression
613 uses. So just avert our eyes and cross our fingers. Silly Java. */
614 || code == BLOCK)
615 *walk_subtrees = 0;
616 else
618 gcc_assert (code != BIND_EXPR);
619 copy_tree_r (tp, walk_subtrees, data);
622 return NULL_TREE;
625 /* Callback for walk_tree to unshare most of the shared trees rooted at
626 *TP. If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
627 then *TP is deep copied by calling copy_tree_r.
629 This unshares the same trees as copy_tree_r with the exception of
630 SAVE_EXPR nodes. These nodes model computations that should only be
631 done once. If we were to unshare something like SAVE_EXPR(i++), the
632 gimplification process would create wrong code. */
634 static tree
635 copy_if_shared_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
636 void *data ATTRIBUTE_UNUSED)
638 tree t = *tp;
639 enum tree_code code = TREE_CODE (t);
641 /* Skip types, decls, and constants. But we do want to look at their
642 types and the bounds of types. Mark them as visited so we properly
643 unmark their subtrees on the unmark pass. If we've already seen them,
644 don't look down further. */
645 if (TREE_CODE_CLASS (code) == tcc_type
646 || TREE_CODE_CLASS (code) == tcc_declaration
647 || TREE_CODE_CLASS (code) == tcc_constant)
649 if (TREE_VISITED (t))
650 *walk_subtrees = 0;
651 else
652 TREE_VISITED (t) = 1;
655 /* If this node has been visited already, unshare it and don't look
656 any deeper. */
657 else if (TREE_VISITED (t))
659 walk_tree (tp, mostly_copy_tree_r, NULL, NULL);
660 *walk_subtrees = 0;
663 /* Otherwise, mark the tree as visited and keep looking. */
664 else
665 TREE_VISITED (t) = 1;
667 return NULL_TREE;
670 static tree
671 unmark_visited_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
672 void *data ATTRIBUTE_UNUSED)
674 if (TREE_VISITED (*tp))
675 TREE_VISITED (*tp) = 0;
676 else
677 *walk_subtrees = 0;
679 return NULL_TREE;
682 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
683 bodies of any nested functions if we are unsharing the entire body of
684 FNDECL. */
686 static void
687 unshare_body (tree *body_p, tree fndecl)
689 struct cgraph_node *cgn = cgraph_node (fndecl);
691 walk_tree (body_p, copy_if_shared_r, NULL, NULL);
692 if (body_p == &DECL_SAVED_TREE (fndecl))
693 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
694 unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
697 /* Likewise, but mark all trees as not visited. */
699 static void
700 unvisit_body (tree *body_p, tree fndecl)
702 struct cgraph_node *cgn = cgraph_node (fndecl);
704 walk_tree (body_p, unmark_visited_r, NULL, NULL);
705 if (body_p == &DECL_SAVED_TREE (fndecl))
706 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
707 unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
710 /* Unshare T and all the trees reached from T via TREE_CHAIN. */
712 static void
713 unshare_all_trees (tree t)
715 walk_tree (&t, copy_if_shared_r, NULL, NULL);
716 walk_tree (&t, unmark_visited_r, NULL, NULL);
719 /* Unconditionally make an unshared copy of EXPR. This is used when using
720 stored expressions which span multiple functions, such as BINFO_VTABLE,
721 as the normal unsharing process can't tell that they're shared. */
723 tree
724 unshare_expr (tree expr)
726 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
727 return expr;
730 /* A terser interface for building a representation of an exception
731 specification. */
733 tree
734 gimple_build_eh_filter (tree body, tree allowed, tree failure)
736 tree t;
738 /* FIXME should the allowed types go in TREE_TYPE? */
739 t = build (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE);
740 append_to_statement_list (failure, &EH_FILTER_FAILURE (t));
742 t = build (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t);
743 append_to_statement_list (body, &TREE_OPERAND (t, 0));
745 return t;
749 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
750 contain statements and have a value. Assign its value to a temporary
751 and give it void_type_node. Returns the temporary, or NULL_TREE if
752 WRAPPER was already void. */
754 tree
755 voidify_wrapper_expr (tree wrapper, tree temp)
757 if (!VOID_TYPE_P (TREE_TYPE (wrapper)))
759 tree *p, sub = wrapper;
761 restart:
762 /* Set p to point to the body of the wrapper. */
763 switch (TREE_CODE (sub))
765 case BIND_EXPR:
766 /* For a BIND_EXPR, the body is operand 1. */
767 p = &BIND_EXPR_BODY (sub);
768 break;
770 default:
771 p = &TREE_OPERAND (sub, 0);
772 break;
775 /* Advance to the last statement. Set all container types to void. */
776 if (TREE_CODE (*p) == STATEMENT_LIST)
778 tree_stmt_iterator i = tsi_last (*p);
779 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
781 else
783 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
785 TREE_SIDE_EFFECTS (*p) = 1;
786 TREE_TYPE (*p) = void_type_node;
790 if (p == NULL || IS_EMPTY_STMT (*p))
792 /* Look through exception handling. */
793 else if (TREE_CODE (*p) == TRY_FINALLY_EXPR
794 || TREE_CODE (*p) == TRY_CATCH_EXPR)
796 sub = *p;
797 goto restart;
799 /* The C++ frontend already did this for us. */
800 else if (TREE_CODE (*p) == INIT_EXPR
801 || TREE_CODE (*p) == TARGET_EXPR)
802 temp = TREE_OPERAND (*p, 0);
803 /* If we're returning a dereference, move the dereference
804 outside the wrapper. */
805 else if (TREE_CODE (*p) == INDIRECT_REF)
807 tree ptr = TREE_OPERAND (*p, 0);
808 temp = create_tmp_var (TREE_TYPE (ptr), "retval");
809 *p = build (MODIFY_EXPR, TREE_TYPE (ptr), temp, ptr);
810 temp = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (temp)), temp);
811 /* If this is a BIND_EXPR for a const inline function, it might not
812 have TREE_SIDE_EFFECTS set. That is no longer accurate. */
813 TREE_SIDE_EFFECTS (wrapper) = 1;
815 else
817 if (!temp)
818 temp = create_tmp_var (TREE_TYPE (wrapper), "retval");
819 *p = build (MODIFY_EXPR, TREE_TYPE (temp), temp, *p);
820 TREE_SIDE_EFFECTS (wrapper) = 1;
823 TREE_TYPE (wrapper) = void_type_node;
824 return temp;
827 return NULL_TREE;
830 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
831 a temporary through which they communicate. */
833 static void
834 build_stack_save_restore (tree *save, tree *restore)
836 tree save_call, tmp_var;
838 save_call =
839 build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_SAVE],
840 NULL_TREE);
841 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
843 *save = build (MODIFY_EXPR, ptr_type_node, tmp_var, save_call);
844 *restore =
845 build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
846 tree_cons (NULL_TREE, tmp_var, NULL_TREE));
849 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
851 static enum gimplify_status
852 gimplify_bind_expr (tree *expr_p, tree temp, tree *pre_p)
854 tree bind_expr = *expr_p;
855 bool old_save_stack = gimplify_ctxp->save_stack;
856 tree t;
858 temp = voidify_wrapper_expr (bind_expr, temp);
860 /* Mark variables seen in this bind expr. */
861 for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
863 if (TREE_CODE (t) == VAR_DECL)
864 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
866 /* Preliminarily mark non-addressed complex variables as eligible
867 for promotion to gimple registers. We'll transform their uses
868 as we find them. */
869 if (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
870 && !TREE_THIS_VOLATILE (t)
871 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
872 && !needs_to_live_in_memory (t))
873 DECL_COMPLEX_GIMPLE_REG_P (t) = 1;
876 gimple_push_bind_expr (bind_expr);
877 gimplify_ctxp->save_stack = false;
879 gimplify_to_stmt_list (&BIND_EXPR_BODY (bind_expr));
881 if (gimplify_ctxp->save_stack)
883 tree stack_save, stack_restore;
885 /* Save stack on entry and restore it on exit. Add a try_finally
886 block to achieve this. Note that mudflap depends on the
887 format of the emitted code: see mx_register_decls(). */
888 build_stack_save_restore (&stack_save, &stack_restore);
890 t = build (TRY_FINALLY_EXPR, void_type_node,
891 BIND_EXPR_BODY (bind_expr), NULL_TREE);
892 append_to_statement_list (stack_restore, &TREE_OPERAND (t, 1));
894 BIND_EXPR_BODY (bind_expr) = NULL_TREE;
895 append_to_statement_list (stack_save, &BIND_EXPR_BODY (bind_expr));
896 append_to_statement_list (t, &BIND_EXPR_BODY (bind_expr));
899 gimplify_ctxp->save_stack = old_save_stack;
900 gimple_pop_bind_expr ();
902 if (temp)
904 *expr_p = temp;
905 append_to_statement_list (bind_expr, pre_p);
906 return GS_OK;
908 else
909 return GS_ALL_DONE;
912 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
913 GIMPLE value, it is assigned to a new temporary and the statement is
914 re-written to return the temporary.
916 PRE_P points to the list where side effects that must happen before
917 STMT should be stored. */
919 static enum gimplify_status
920 gimplify_return_expr (tree stmt, tree *pre_p)
922 tree ret_expr = TREE_OPERAND (stmt, 0);
923 tree result_decl, result;
925 if (!ret_expr || TREE_CODE (ret_expr) == RESULT_DECL
926 || ret_expr == error_mark_node)
927 return GS_ALL_DONE;
929 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
930 result_decl = NULL_TREE;
931 else
933 result_decl = TREE_OPERAND (ret_expr, 0);
934 if (TREE_CODE (result_decl) == INDIRECT_REF)
935 /* See through a return by reference. */
936 result_decl = TREE_OPERAND (result_decl, 0);
938 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
939 || TREE_CODE (ret_expr) == INIT_EXPR)
940 && TREE_CODE (result_decl) == RESULT_DECL);
943 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
944 Recall that aggregate_value_p is FALSE for any aggregate type that is
945 returned in registers. If we're returning values in registers, then
946 we don't want to extend the lifetime of the RESULT_DECL, particularly
947 across another call. In addition, for those aggregates for which
948 hard_function_value generates a PARALLEL, we'll die during normal
949 expansion of structure assignments; there's special code in expand_return
950 to handle this case that does not exist in expand_expr. */
951 if (!result_decl
952 || aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
953 result = result_decl;
954 else if (gimplify_ctxp->return_temp)
955 result = gimplify_ctxp->return_temp;
956 else
958 result = create_tmp_var (TREE_TYPE (result_decl), NULL);
960 /* ??? With complex control flow (usually involving abnormal edges),
961 we can wind up warning about an uninitialized value for this. Due
962 to how this variable is constructed and initialized, this is never
963 true. Give up and never warn. */
964 TREE_NO_WARNING (result) = 1;
966 gimplify_ctxp->return_temp = result;
969 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
970 Then gimplify the whole thing. */
971 if (result != result_decl)
972 TREE_OPERAND (ret_expr, 0) = result;
974 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
976 /* If we didn't use a temporary, then the result is just the result_decl.
977 Otherwise we need a simple copy. This should already be gimple. */
978 if (result == result_decl)
979 ret_expr = result;
980 else
981 ret_expr = build (MODIFY_EXPR, TREE_TYPE (result), result_decl, result);
982 TREE_OPERAND (stmt, 0) = ret_expr;
984 return GS_ALL_DONE;
987 /* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
988 and initialization explicit. */
990 static enum gimplify_status
991 gimplify_decl_expr (tree *stmt_p)
993 tree stmt = *stmt_p;
994 tree decl = DECL_EXPR_DECL (stmt);
996 *stmt_p = NULL_TREE;
998 if (TREE_TYPE (decl) == error_mark_node)
999 return GS_ERROR;
1001 if ((TREE_CODE (decl) == TYPE_DECL
1002 || TREE_CODE (decl) == VAR_DECL)
1003 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1004 gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1006 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1008 tree init = DECL_INITIAL (decl);
1010 if (!TREE_CONSTANT (DECL_SIZE (decl)))
1012 /* This is a variable-sized decl. Simplify its size and mark it
1013 for deferred expansion. Note that mudflap depends on the format
1014 of the emitted code: see mx_register_decls(). */
1015 tree t, args, addr, ptr_type;
1017 gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p);
1018 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1020 /* All occurrences of this decl in final gimplified code will be
1021 replaced by indirection. Setting DECL_VALUE_EXPR does two
1022 things: First, it lets the rest of the gimplifier know what
1023 replacement to use. Second, it lets the debug info know
1024 where to find the value. */
1025 ptr_type = build_pointer_type (TREE_TYPE (decl));
1026 addr = create_tmp_var (ptr_type, get_name (decl));
1027 DECL_IGNORED_P (addr) = 0;
1028 t = build_fold_indirect_ref (addr);
1029 SET_DECL_VALUE_EXPR (decl, t);
1030 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1032 args = tree_cons (NULL, DECL_SIZE_UNIT (decl), NULL);
1033 t = built_in_decls[BUILT_IN_ALLOCA];
1034 t = build_function_call_expr (t, args);
1035 t = fold_convert (ptr_type, t);
1036 t = build2 (MODIFY_EXPR, void_type_node, addr, t);
1038 gimplify_and_add (t, stmt_p);
1040 /* Indicate that we need to restore the stack level when the
1041 enclosing BIND_EXPR is exited. */
1042 gimplify_ctxp->save_stack = true;
1045 if (init && init != error_mark_node)
1047 if (!TREE_STATIC (decl))
1049 DECL_INITIAL (decl) = NULL_TREE;
1050 init = build (MODIFY_EXPR, void_type_node, decl, init);
1051 gimplify_and_add (init, stmt_p);
1053 else
1054 /* We must still examine initializers for static variables
1055 as they may contain a label address. */
1056 walk_tree (&init, force_labels_r, NULL, NULL);
1059 /* This decl isn't mentioned in the enclosing block, so add it to the
1060 list of temps. FIXME it seems a bit of a kludge to say that
1061 anonymous artificial vars aren't pushed, but everything else is. */
1062 if (DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1063 gimple_add_tmp_var (decl);
1066 return GS_ALL_DONE;
1069 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1070 and replacing the LOOP_EXPR with goto, but if the loop contains an
1071 EXIT_EXPR, we need to append a label for it to jump to. */
1073 static enum gimplify_status
1074 gimplify_loop_expr (tree *expr_p, tree *pre_p)
1076 tree saved_label = gimplify_ctxp->exit_label;
1077 tree start_label = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
1078 tree jump_stmt = build_and_jump (&LABEL_EXPR_LABEL (start_label));
1080 append_to_statement_list (start_label, pre_p);
1082 gimplify_ctxp->exit_label = NULL_TREE;
1084 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1086 if (gimplify_ctxp->exit_label)
1088 append_to_statement_list (jump_stmt, pre_p);
1089 *expr_p = build1 (LABEL_EXPR, void_type_node, gimplify_ctxp->exit_label);
1091 else
1092 *expr_p = jump_stmt;
1094 gimplify_ctxp->exit_label = saved_label;
1096 return GS_ALL_DONE;
1099 /* Compare two case labels. Because the front end should already have
1100 made sure that case ranges do not overlap, it is enough to only compare
1101 the CASE_LOW values of each case label. */
1103 static int
1104 compare_case_labels (const void *p1, const void *p2)
1106 tree case1 = *(tree *)p1;
1107 tree case2 = *(tree *)p2;
1109 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1112 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1114 void
1115 sort_case_labels (tree label_vec)
1117 size_t len = TREE_VEC_LENGTH (label_vec);
1118 tree default_case = TREE_VEC_ELT (label_vec, len - 1);
1120 if (CASE_LOW (default_case))
1122 size_t i;
1124 /* The last label in the vector should be the default case
1125 but it is not. */
1126 for (i = 0; i < len; ++i)
1128 tree t = TREE_VEC_ELT (label_vec, i);
1129 if (!CASE_LOW (t))
1131 default_case = t;
1132 TREE_VEC_ELT (label_vec, i) = TREE_VEC_ELT (label_vec, len - 1);
1133 TREE_VEC_ELT (label_vec, len - 1) = default_case;
1134 break;
1139 qsort (&TREE_VEC_ELT (label_vec, 0), len - 1, sizeof (tree),
1140 compare_case_labels);
1143 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1144 branch to. */
1146 static enum gimplify_status
1147 gimplify_switch_expr (tree *expr_p, tree *pre_p)
1149 tree switch_expr = *expr_p;
1150 enum gimplify_status ret;
1152 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL,
1153 is_gimple_val, fb_rvalue);
1155 if (SWITCH_BODY (switch_expr))
1157 VEC(tree,heap) *labels, *saved_labels;
1158 tree label_vec, default_case = NULL_TREE;
1159 size_t i, len;
1161 /* If someone can be bothered to fill in the labels, they can
1162 be bothered to null out the body too. */
1163 gcc_assert (!SWITCH_LABELS (switch_expr));
1165 saved_labels = gimplify_ctxp->case_labels;
1166 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1168 gimplify_to_stmt_list (&SWITCH_BODY (switch_expr));
1170 labels = gimplify_ctxp->case_labels;
1171 gimplify_ctxp->case_labels = saved_labels;
1173 len = VEC_length (tree, labels);
1175 for (i = 0; i < len; ++i)
1177 tree t = VEC_index (tree, labels, i);
1178 if (!CASE_LOW (t))
1180 /* The default case must be the last label in the list. */
1181 default_case = t;
1182 VEC_replace (tree, labels, i, VEC_index (tree, labels, len - 1));
1183 len--;
1184 break;
1188 label_vec = make_tree_vec (len + 1);
1189 SWITCH_LABELS (*expr_p) = label_vec;
1190 append_to_statement_list (switch_expr, pre_p);
1192 if (! default_case)
1194 /* If the switch has no default label, add one, so that we jump
1195 around the switch body. */
1196 default_case = build (CASE_LABEL_EXPR, void_type_node, NULL_TREE,
1197 NULL_TREE, create_artificial_label ());
1198 append_to_statement_list (SWITCH_BODY (switch_expr), pre_p);
1199 *expr_p = build (LABEL_EXPR, void_type_node,
1200 CASE_LABEL (default_case));
1202 else
1203 *expr_p = SWITCH_BODY (switch_expr);
1205 for (i = 0; i < len; ++i)
1206 TREE_VEC_ELT (label_vec, i) = VEC_index (tree, labels, i);
1207 TREE_VEC_ELT (label_vec, len) = default_case;
1209 VEC_free (tree, heap, labels);
1211 sort_case_labels (label_vec);
1213 SWITCH_BODY (switch_expr) = NULL;
1215 else
1216 gcc_assert (SWITCH_LABELS (switch_expr));
1218 return ret;
1221 static enum gimplify_status
1222 gimplify_case_label_expr (tree *expr_p)
1224 tree expr = *expr_p;
1226 gcc_assert (gimplify_ctxp->case_labels);
1227 VEC_safe_push (tree, heap, gimplify_ctxp->case_labels, expr);
1228 *expr_p = build (LABEL_EXPR, void_type_node, CASE_LABEL (expr));
1229 return GS_ALL_DONE;
1232 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1233 if necessary. */
1235 tree
1236 build_and_jump (tree *label_p)
1238 if (label_p == NULL)
1239 /* If there's nowhere to jump, just fall through. */
1240 return NULL_TREE;
1242 if (*label_p == NULL_TREE)
1244 tree label = create_artificial_label ();
1245 *label_p = label;
1248 return build1 (GOTO_EXPR, void_type_node, *label_p);
1251 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1252 This also involves building a label to jump to and communicating it to
1253 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1255 static enum gimplify_status
1256 gimplify_exit_expr (tree *expr_p)
1258 tree cond = TREE_OPERAND (*expr_p, 0);
1259 tree expr;
1261 expr = build_and_jump (&gimplify_ctxp->exit_label);
1262 expr = build (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1263 *expr_p = expr;
1265 return GS_OK;
1268 /* A helper function to be called via walk_tree. Mark all labels under *TP
1269 as being forced. To be called for DECL_INITIAL of static variables. */
1271 tree
1272 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1274 if (TYPE_P (*tp))
1275 *walk_subtrees = 0;
1276 if (TREE_CODE (*tp) == LABEL_DECL)
1277 FORCED_LABEL (*tp) = 1;
1279 return NULL_TREE;
1282 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1283 different from its canonical type, wrap the whole thing inside a
1284 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1285 type.
1287 The canonical type of a COMPONENT_REF is the type of the field being
1288 referenced--unless the field is a bit-field which can be read directly
1289 in a smaller mode, in which case the canonical type is the
1290 sign-appropriate type corresponding to that mode. */
1292 static void
1293 canonicalize_component_ref (tree *expr_p)
1295 tree expr = *expr_p;
1296 tree type;
1298 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1300 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1301 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1302 else
1303 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1305 if (TREE_TYPE (expr) != type)
1307 tree old_type = TREE_TYPE (expr);
1309 /* Set the type of the COMPONENT_REF to the underlying type. */
1310 TREE_TYPE (expr) = type;
1312 /* And wrap the whole thing inside a NOP_EXPR. */
1313 expr = build1 (NOP_EXPR, old_type, expr);
1315 *expr_p = expr;
1319 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1320 to foo, embed that change in the ADDR_EXPR by converting
1321 T array[U];
1322 (T *)&array
1324 &array[L]
1325 where L is the lower bound. For simplicity, only do this for constant
1326 lower bound. */
1328 static void
1329 canonicalize_addr_expr (tree *expr_p)
1331 tree expr = *expr_p;
1332 tree ctype = TREE_TYPE (expr);
1333 tree addr_expr = TREE_OPERAND (expr, 0);
1334 tree atype = TREE_TYPE (addr_expr);
1335 tree dctype, datype, ddatype, otype, obj_expr;
1337 /* Both cast and addr_expr types should be pointers. */
1338 if (!POINTER_TYPE_P (ctype) || !POINTER_TYPE_P (atype))
1339 return;
1341 /* The addr_expr type should be a pointer to an array. */
1342 datype = TREE_TYPE (atype);
1343 if (TREE_CODE (datype) != ARRAY_TYPE)
1344 return;
1346 /* Both cast and addr_expr types should address the same object type. */
1347 dctype = TREE_TYPE (ctype);
1348 ddatype = TREE_TYPE (datype);
1349 if (!lang_hooks.types_compatible_p (ddatype, dctype))
1350 return;
1352 /* The addr_expr and the object type should match. */
1353 obj_expr = TREE_OPERAND (addr_expr, 0);
1354 otype = TREE_TYPE (obj_expr);
1355 if (!lang_hooks.types_compatible_p (otype, datype))
1356 return;
1358 /* The lower bound and element sizes must be constant. */
1359 if (!TYPE_SIZE_UNIT (dctype)
1360 || TREE_CODE (TYPE_SIZE_UNIT (dctype)) != INTEGER_CST
1361 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1362 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1363 return;
1365 /* All checks succeeded. Build a new node to merge the cast. */
1366 *expr_p = build4 (ARRAY_REF, dctype, obj_expr,
1367 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1368 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1369 size_binop (EXACT_DIV_EXPR, TYPE_SIZE_UNIT (dctype),
1370 size_int (TYPE_ALIGN_UNIT (dctype))));
1371 *expr_p = build1 (ADDR_EXPR, ctype, *expr_p);
1374 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1375 underneath as appropriate. */
1377 static enum gimplify_status
1378 gimplify_conversion (tree *expr_p)
1380 gcc_assert (TREE_CODE (*expr_p) == NOP_EXPR
1381 || TREE_CODE (*expr_p) == CONVERT_EXPR);
1383 /* Then strip away all but the outermost conversion. */
1384 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1386 /* And remove the outermost conversion if it's useless. */
1387 if (tree_ssa_useless_type_conversion (*expr_p))
1388 *expr_p = TREE_OPERAND (*expr_p, 0);
1390 /* If we still have a conversion at the toplevel,
1391 then canonicalize some constructs. */
1392 if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1394 tree sub = TREE_OPERAND (*expr_p, 0);
1396 /* If a NOP conversion is changing the type of a COMPONENT_REF
1397 expression, then canonicalize its type now in order to expose more
1398 redundant conversions. */
1399 if (TREE_CODE (sub) == COMPONENT_REF)
1400 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1402 /* If a NOP conversion is changing a pointer to array of foo
1403 to a pointer to foo, embed that change in the ADDR_EXPR. */
1404 else if (TREE_CODE (sub) == ADDR_EXPR)
1405 canonicalize_addr_expr (expr_p);
1408 return GS_OK;
1411 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1412 node pointed to by EXPR_P.
1414 compound_lval
1415 : min_lval '[' val ']'
1416 | min_lval '.' ID
1417 | compound_lval '[' val ']'
1418 | compound_lval '.' ID
1420 This is not part of the original SIMPLE definition, which separates
1421 array and member references, but it seems reasonable to handle them
1422 together. Also, this way we don't run into problems with union
1423 aliasing; gcc requires that for accesses through a union to alias, the
1424 union reference must be explicit, which was not always the case when we
1425 were splitting up array and member refs.
1427 PRE_P points to the list where side effects that must happen before
1428 *EXPR_P should be stored.
1430 POST_P points to the list where side effects that must happen after
1431 *EXPR_P should be stored. */
1433 static enum gimplify_status
1434 gimplify_compound_lval (tree *expr_p, tree *pre_p,
1435 tree *post_p, fallback_t fallback)
1437 tree *p;
1438 VEC(tree,heap) *stack;
1439 enum gimplify_status ret = GS_OK, tret;
1440 int i;
1442 /* Create a stack of the subexpressions so later we can walk them in
1443 order from inner to outer. */
1444 stack = VEC_alloc (tree, heap, 10);
1446 /* We can handle anything that get_inner_reference can deal with. */
1447 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
1449 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
1450 if (TREE_CODE (*p) == INDIRECT_REF)
1451 *p = fold_indirect_ref (*p);
1452 if (!handled_component_p (*p))
1453 break;
1454 VEC_safe_push (tree, heap, stack, *p);
1457 gcc_assert (VEC_length (tree, stack));
1459 /* Now STACK is a stack of pointers to all the refs we've walked through
1460 and P points to the innermost expression.
1462 Java requires that we elaborated nodes in source order. That
1463 means we must gimplify the inner expression followed by each of
1464 the indices, in order. But we can't gimplify the inner
1465 expression until we deal with any variable bounds, sizes, or
1466 positions in order to deal with PLACEHOLDER_EXPRs.
1468 So we do this in three steps. First we deal with the annotations
1469 for any variables in the components, then we gimplify the base,
1470 then we gimplify any indices, from left to right. */
1471 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
1473 tree t = VEC_index (tree, stack, i);
1475 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1477 /* Gimplify the low bound and element type size and put them into
1478 the ARRAY_REF. If these values are set, they have already been
1479 gimplified. */
1480 if (!TREE_OPERAND (t, 2))
1482 tree low = unshare_expr (array_ref_low_bound (t));
1483 if (!is_gimple_min_invariant (low))
1485 TREE_OPERAND (t, 2) = low;
1486 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1487 is_gimple_formal_tmp_reg, fb_rvalue);
1488 ret = MIN (ret, tret);
1492 if (!TREE_OPERAND (t, 3))
1494 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
1495 tree elmt_size = unshare_expr (array_ref_element_size (t));
1496 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
1498 /* Divide the element size by the alignment of the element
1499 type (above). */
1500 elmt_size = size_binop (EXACT_DIV_EXPR, elmt_size, factor);
1502 if (!is_gimple_min_invariant (elmt_size))
1504 TREE_OPERAND (t, 3) = elmt_size;
1505 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
1506 is_gimple_formal_tmp_reg, fb_rvalue);
1507 ret = MIN (ret, tret);
1511 else if (TREE_CODE (t) == COMPONENT_REF)
1513 /* Set the field offset into T and gimplify it. */
1514 if (!TREE_OPERAND (t, 2))
1516 tree offset = unshare_expr (component_ref_field_offset (t));
1517 tree field = TREE_OPERAND (t, 1);
1518 tree factor
1519 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
1521 /* Divide the offset by its alignment. */
1522 offset = size_binop (EXACT_DIV_EXPR, offset, factor);
1524 if (!is_gimple_min_invariant (offset))
1526 TREE_OPERAND (t, 2) = offset;
1527 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1528 is_gimple_formal_tmp_reg, fb_rvalue);
1529 ret = MIN (ret, tret);
1535 /* Step 2 is to gimplify the base expression. */
1536 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1537 ret = MIN (ret, tret);
1539 /* And finally, the indices and operands to BIT_FIELD_REF. During this
1540 loop we also remove any useless conversions. */
1541 for (; VEC_length (tree, stack) > 0; )
1543 tree t = VEC_pop (tree, stack);
1545 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1547 /* Gimplify the dimension.
1548 Temporary fix for gcc.c-torture/execute/20040313-1.c.
1549 Gimplify non-constant array indices into a temporary
1550 variable.
1551 FIXME - The real fix is to gimplify post-modify
1552 expressions into a minimal gimple lvalue. However, that
1553 exposes bugs in alias analysis. The alias analyzer does
1554 not handle &PTR->FIELD very well. Will fix after the
1555 branch is merged into mainline (dnovillo 2004-05-03). */
1556 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
1558 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1559 is_gimple_formal_tmp_reg, fb_rvalue);
1560 ret = MIN (ret, tret);
1563 else if (TREE_CODE (t) == BIT_FIELD_REF)
1565 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1566 is_gimple_val, fb_rvalue);
1567 ret = MIN (ret, tret);
1568 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1569 is_gimple_val, fb_rvalue);
1570 ret = MIN (ret, tret);
1573 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
1575 /* The innermost expression P may have originally had TREE_SIDE_EFFECTS
1576 set which would have caused all the outer expressions in EXPR_P
1577 leading to P to also have had TREE_SIDE_EFFECTS set. */
1578 recalculate_side_effects (t);
1581 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1582 ret = MIN (ret, tret);
1584 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
1585 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
1587 canonicalize_component_ref (expr_p);
1588 ret = MIN (ret, GS_OK);
1591 VEC_free (tree, heap, stack);
1593 return ret;
1596 /* Gimplify the self modifying expression pointed to by EXPR_P
1597 (++, --, +=, -=).
1599 PRE_P points to the list where side effects that must happen before
1600 *EXPR_P should be stored.
1602 POST_P points to the list where side effects that must happen after
1603 *EXPR_P should be stored.
1605 WANT_VALUE is nonzero iff we want to use the value of this expression
1606 in another expression. */
1608 static enum gimplify_status
1609 gimplify_self_mod_expr (tree *expr_p, tree *pre_p, tree *post_p,
1610 bool want_value)
1612 enum tree_code code;
1613 tree lhs, lvalue, rhs, t1;
1614 bool postfix;
1615 enum tree_code arith_code;
1616 enum gimplify_status ret;
1618 code = TREE_CODE (*expr_p);
1620 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
1621 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
1623 /* Prefix or postfix? */
1624 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
1625 /* Faster to treat as prefix if result is not used. */
1626 postfix = want_value;
1627 else
1628 postfix = false;
1630 /* Add or subtract? */
1631 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
1632 arith_code = PLUS_EXPR;
1633 else
1634 arith_code = MINUS_EXPR;
1636 /* Gimplify the LHS into a GIMPLE lvalue. */
1637 lvalue = TREE_OPERAND (*expr_p, 0);
1638 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1639 if (ret == GS_ERROR)
1640 return ret;
1642 /* Extract the operands to the arithmetic operation. */
1643 lhs = lvalue;
1644 rhs = TREE_OPERAND (*expr_p, 1);
1646 /* For postfix operator, we evaluate the LHS to an rvalue and then use
1647 that as the result value and in the postqueue operation. */
1648 if (postfix)
1650 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
1651 if (ret == GS_ERROR)
1652 return ret;
1655 t1 = build (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
1656 t1 = build (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
1658 if (postfix)
1660 gimplify_and_add (t1, post_p);
1661 *expr_p = lhs;
1662 return GS_ALL_DONE;
1664 else
1666 *expr_p = t1;
1667 return GS_OK;
1671 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
1673 static void
1674 maybe_with_size_expr (tree *expr_p)
1676 tree expr = *expr_p;
1677 tree type = TREE_TYPE (expr);
1678 tree size;
1680 /* If we've already wrapped this or the type is error_mark_node, we can't do
1681 anything. */
1682 if (TREE_CODE (expr) == WITH_SIZE_EXPR
1683 || type == error_mark_node)
1684 return;
1686 /* If the size isn't known or is a constant, we have nothing to do. */
1687 size = TYPE_SIZE_UNIT (type);
1688 if (!size || TREE_CODE (size) == INTEGER_CST)
1689 return;
1691 /* Otherwise, make a WITH_SIZE_EXPR. */
1692 size = unshare_expr (size);
1693 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
1694 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
1697 /* Subroutine of gimplify_call_expr: Gimplify a single argument. */
1699 static enum gimplify_status
1700 gimplify_arg (tree *expr_p, tree *pre_p)
1702 bool (*test) (tree);
1703 fallback_t fb;
1705 /* In general, we allow lvalues for function arguments to avoid
1706 extra overhead of copying large aggregates out of even larger
1707 aggregates into temporaries only to copy the temporaries to
1708 the argument list. Make optimizers happy by pulling out to
1709 temporaries those types that fit in registers. */
1710 if (is_gimple_reg_type (TREE_TYPE (*expr_p)))
1711 test = is_gimple_val, fb = fb_rvalue;
1712 else
1713 test = is_gimple_lvalue, fb = fb_either;
1715 /* If this is a variable sized type, we must remember the size. */
1716 maybe_with_size_expr (expr_p);
1718 /* There is a sequence point before a function call. Side effects in
1719 the argument list must occur before the actual call. So, when
1720 gimplifying arguments, force gimplify_expr to use an internal
1721 post queue which is then appended to the end of PRE_P. */
1722 return gimplify_expr (expr_p, pre_p, NULL, test, fb);
1725 /* Gimplify the CALL_EXPR node pointed to by EXPR_P. PRE_P points to the
1726 list where side effects that must happen before *EXPR_P should be stored.
1727 WANT_VALUE is true if the result of the call is desired. */
1729 static enum gimplify_status
1730 gimplify_call_expr (tree *expr_p, tree *pre_p, bool want_value)
1732 tree decl;
1733 tree arglist;
1734 enum gimplify_status ret;
1736 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
1738 /* For reliable diagnostics during inlining, it is necessary that
1739 every call_expr be annotated with file and line. */
1740 if (! EXPR_HAS_LOCATION (*expr_p))
1741 SET_EXPR_LOCATION (*expr_p, input_location);
1743 /* This may be a call to a builtin function.
1745 Builtin function calls may be transformed into different
1746 (and more efficient) builtin function calls under certain
1747 circumstances. Unfortunately, gimplification can muck things
1748 up enough that the builtin expanders are not aware that certain
1749 transformations are still valid.
1751 So we attempt transformation/gimplification of the call before
1752 we gimplify the CALL_EXPR. At this time we do not manage to
1753 transform all calls in the same manner as the expanders do, but
1754 we do transform most of them. */
1755 decl = get_callee_fndecl (*expr_p);
1756 if (decl && DECL_BUILT_IN (decl))
1758 tree fndecl = get_callee_fndecl (*expr_p);
1759 tree arglist = TREE_OPERAND (*expr_p, 1);
1760 tree new = fold_builtin (fndecl, arglist, !want_value);
1762 if (new && new != *expr_p)
1764 /* There was a transformation of this call which computes the
1765 same value, but in a more efficient way. Return and try
1766 again. */
1767 *expr_p = new;
1768 return GS_OK;
1771 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1772 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_START)
1774 if (!arglist || !TREE_CHAIN (arglist))
1776 error ("too few arguments to function %<va_start%>");
1777 *expr_p = build_empty_stmt ();
1778 return GS_OK;
1781 if (fold_builtin_next_arg (TREE_CHAIN (arglist)))
1783 *expr_p = build_empty_stmt ();
1784 return GS_OK;
1786 /* Avoid gimplifying the second argument to va_start, which needs
1787 to be the plain PARM_DECL. */
1788 return gimplify_arg (&TREE_VALUE (TREE_OPERAND (*expr_p, 1)), pre_p);
1792 /* There is a sequence point before the call, so any side effects in
1793 the calling expression must occur before the actual call. Force
1794 gimplify_expr to use an internal post queue. */
1795 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, NULL,
1796 is_gimple_call_addr, fb_rvalue);
1798 if (PUSH_ARGS_REVERSED)
1799 TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
1800 for (arglist = TREE_OPERAND (*expr_p, 1); arglist;
1801 arglist = TREE_CHAIN (arglist))
1803 enum gimplify_status t;
1805 t = gimplify_arg (&TREE_VALUE (arglist), pre_p);
1807 if (t == GS_ERROR)
1808 ret = GS_ERROR;
1810 if (PUSH_ARGS_REVERSED)
1811 TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
1813 /* Try this again in case gimplification exposed something. */
1814 if (ret != GS_ERROR && decl && DECL_BUILT_IN (decl))
1816 tree fndecl = get_callee_fndecl (*expr_p);
1817 tree arglist = TREE_OPERAND (*expr_p, 1);
1818 tree new = fold_builtin (fndecl, arglist, !want_value);
1820 if (new && new != *expr_p)
1822 /* There was a transformation of this call which computes the
1823 same value, but in a more efficient way. Return and try
1824 again. */
1825 *expr_p = new;
1826 return GS_OK;
1830 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
1831 decl. This allows us to eliminate redundant or useless
1832 calls to "const" functions. */
1833 if (TREE_CODE (*expr_p) == CALL_EXPR
1834 && (call_expr_flags (*expr_p) & (ECF_CONST | ECF_PURE)))
1835 TREE_SIDE_EFFECTS (*expr_p) = 0;
1837 return ret;
1840 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
1841 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
1843 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
1844 condition is true or false, respectively. If null, we should generate
1845 our own to skip over the evaluation of this specific expression.
1847 This function is the tree equivalent of do_jump.
1849 shortcut_cond_r should only be called by shortcut_cond_expr. */
1851 static tree
1852 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p)
1854 tree local_label = NULL_TREE;
1855 tree t, expr = NULL;
1857 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
1858 retain the shortcut semantics. Just insert the gotos here;
1859 shortcut_cond_expr will append the real blocks later. */
1860 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
1862 /* Turn if (a && b) into
1864 if (a); else goto no;
1865 if (b) goto yes; else goto no;
1866 (no:) */
1868 if (false_label_p == NULL)
1869 false_label_p = &local_label;
1871 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p);
1872 append_to_statement_list (t, &expr);
1874 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1875 false_label_p);
1876 append_to_statement_list (t, &expr);
1878 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
1880 /* Turn if (a || b) into
1882 if (a) goto yes;
1883 if (b) goto yes; else goto no;
1884 (yes:) */
1886 if (true_label_p == NULL)
1887 true_label_p = &local_label;
1889 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL);
1890 append_to_statement_list (t, &expr);
1892 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1893 false_label_p);
1894 append_to_statement_list (t, &expr);
1896 else if (TREE_CODE (pred) == COND_EXPR)
1898 /* As long as we're messing with gotos, turn if (a ? b : c) into
1899 if (a)
1900 if (b) goto yes; else goto no;
1901 else
1902 if (c) goto yes; else goto no; */
1903 expr = build (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
1904 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1905 false_label_p),
1906 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
1907 false_label_p));
1909 else
1911 expr = build (COND_EXPR, void_type_node, pred,
1912 build_and_jump (true_label_p),
1913 build_and_jump (false_label_p));
1916 if (local_label)
1918 t = build1 (LABEL_EXPR, void_type_node, local_label);
1919 append_to_statement_list (t, &expr);
1922 return expr;
1925 static tree
1926 shortcut_cond_expr (tree expr)
1928 tree pred = TREE_OPERAND (expr, 0);
1929 tree then_ = TREE_OPERAND (expr, 1);
1930 tree else_ = TREE_OPERAND (expr, 2);
1931 tree true_label, false_label, end_label, t;
1932 tree *true_label_p;
1933 tree *false_label_p;
1934 bool emit_end, emit_false, jump_over_else;
1935 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
1936 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
1938 /* First do simple transformations. */
1939 if (!else_se)
1941 /* If there is no 'else', turn (a && b) into if (a) if (b). */
1942 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
1944 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
1945 then_ = shortcut_cond_expr (expr);
1946 then_se = then_ && TREE_SIDE_EFFECTS (then_);
1947 pred = TREE_OPERAND (pred, 0);
1948 expr = build (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
1951 if (!then_se)
1953 /* If there is no 'then', turn
1954 if (a || b); else d
1955 into
1956 if (a); else if (b); else d. */
1957 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
1959 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
1960 else_ = shortcut_cond_expr (expr);
1961 else_se = else_ && TREE_SIDE_EFFECTS (else_);
1962 pred = TREE_OPERAND (pred, 0);
1963 expr = build (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
1967 /* If we're done, great. */
1968 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
1969 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
1970 return expr;
1972 /* Otherwise we need to mess with gotos. Change
1973 if (a) c; else d;
1975 if (a); else goto no;
1976 c; goto end;
1977 no: d; end:
1978 and recursively gimplify the condition. */
1980 true_label = false_label = end_label = NULL_TREE;
1982 /* If our arms just jump somewhere, hijack those labels so we don't
1983 generate jumps to jumps. */
1985 if (then_
1986 && TREE_CODE (then_) == GOTO_EXPR
1987 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
1989 true_label = GOTO_DESTINATION (then_);
1990 then_ = NULL;
1991 then_se = false;
1994 if (else_
1995 && TREE_CODE (else_) == GOTO_EXPR
1996 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
1998 false_label = GOTO_DESTINATION (else_);
1999 else_ = NULL;
2000 else_se = false;
2003 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2004 if (true_label)
2005 true_label_p = &true_label;
2006 else
2007 true_label_p = NULL;
2009 /* The 'else' branch also needs a label if it contains interesting code. */
2010 if (false_label || else_se)
2011 false_label_p = &false_label;
2012 else
2013 false_label_p = NULL;
2015 /* If there was nothing else in our arms, just forward the label(s). */
2016 if (!then_se && !else_se)
2017 return shortcut_cond_r (pred, true_label_p, false_label_p);
2019 /* If our last subexpression already has a terminal label, reuse it. */
2020 if (else_se)
2021 expr = expr_last (else_);
2022 else if (then_se)
2023 expr = expr_last (then_);
2024 else
2025 expr = NULL;
2026 if (expr && TREE_CODE (expr) == LABEL_EXPR)
2027 end_label = LABEL_EXPR_LABEL (expr);
2029 /* If we don't care about jumping to the 'else' branch, jump to the end
2030 if the condition is false. */
2031 if (!false_label_p)
2032 false_label_p = &end_label;
2034 /* We only want to emit these labels if we aren't hijacking them. */
2035 emit_end = (end_label == NULL_TREE);
2036 emit_false = (false_label == NULL_TREE);
2038 /* We only emit the jump over the else clause if we have to--if the
2039 then clause may fall through. Otherwise we can wind up with a
2040 useless jump and a useless label at the end of gimplified code,
2041 which will cause us to think that this conditional as a whole
2042 falls through even if it doesn't. If we then inline a function
2043 which ends with such a condition, that can cause us to issue an
2044 inappropriate warning about control reaching the end of a
2045 non-void function. */
2046 jump_over_else = block_may_fallthru (then_);
2048 pred = shortcut_cond_r (pred, true_label_p, false_label_p);
2050 expr = NULL;
2051 append_to_statement_list (pred, &expr);
2053 append_to_statement_list (then_, &expr);
2054 if (else_se)
2056 if (jump_over_else)
2058 t = build_and_jump (&end_label);
2059 append_to_statement_list (t, &expr);
2061 if (emit_false)
2063 t = build1 (LABEL_EXPR, void_type_node, false_label);
2064 append_to_statement_list (t, &expr);
2066 append_to_statement_list (else_, &expr);
2068 if (emit_end && end_label)
2070 t = build1 (LABEL_EXPR, void_type_node, end_label);
2071 append_to_statement_list (t, &expr);
2074 return expr;
2077 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2079 static tree
2080 gimple_boolify (tree expr)
2082 tree type = TREE_TYPE (expr);
2084 if (TREE_CODE (type) == BOOLEAN_TYPE)
2085 return expr;
2087 switch (TREE_CODE (expr))
2089 case TRUTH_AND_EXPR:
2090 case TRUTH_OR_EXPR:
2091 case TRUTH_XOR_EXPR:
2092 case TRUTH_ANDIF_EXPR:
2093 case TRUTH_ORIF_EXPR:
2094 /* Also boolify the arguments of truth exprs. */
2095 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2096 /* FALLTHRU */
2098 case TRUTH_NOT_EXPR:
2099 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2100 /* FALLTHRU */
2102 case EQ_EXPR: case NE_EXPR:
2103 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2104 /* These expressions always produce boolean results. */
2105 TREE_TYPE (expr) = boolean_type_node;
2106 return expr;
2108 default:
2109 /* Other expressions that get here must have boolean values, but
2110 might need to be converted to the appropriate mode. */
2111 return convert (boolean_type_node, expr);
2115 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
2116 into
2118 if (p) if (p)
2119 t1 = a; a;
2120 else or else
2121 t1 = b; b;
2124 The second form is used when *EXPR_P is of type void.
2126 TARGET is the tree for T1 above.
2128 PRE_P points to the list where side effects that must happen before
2129 *EXPR_P should be stored.
2131 POST_P points to the list where side effects that must happen after
2132 *EXPR_P should be stored. */
2134 static enum gimplify_status
2135 gimplify_cond_expr (tree *expr_p, tree *pre_p, tree *post_p, tree target,
2136 fallback_t fallback)
2138 tree expr = *expr_p;
2139 tree tmp, tmp2, type;
2140 enum gimplify_status ret;
2142 type = TREE_TYPE (expr);
2144 /* If this COND_EXPR has a value, copy the values into a temporary within
2145 the arms. */
2146 if (! VOID_TYPE_P (type))
2148 tree result;
2150 if (target)
2152 ret = gimplify_expr (&target, pre_p, post_p,
2153 is_gimple_min_lval, fb_lvalue);
2154 if (ret != GS_ERROR)
2155 ret = GS_OK;
2156 result = tmp = target;
2157 tmp2 = unshare_expr (target);
2159 else if ((fallback & fb_lvalue) == 0)
2161 result = tmp2 = tmp = create_tmp_var (TREE_TYPE (expr), "iftmp");
2162 ret = GS_ALL_DONE;
2164 else
2166 tree type = build_pointer_type (TREE_TYPE (expr));
2168 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2169 TREE_OPERAND (expr, 1) =
2170 build_fold_addr_expr (TREE_OPERAND (expr, 1));
2172 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2173 TREE_OPERAND (expr, 2) =
2174 build_fold_addr_expr (TREE_OPERAND (expr, 2));
2176 tmp2 = tmp = create_tmp_var (type, "iftmp");
2178 expr = build (COND_EXPR, void_type_node, TREE_OPERAND (expr, 0),
2179 TREE_OPERAND (expr, 1), TREE_OPERAND (expr, 2));
2181 result = build_fold_indirect_ref (tmp);
2182 ret = GS_ALL_DONE;
2185 /* Build the then clause, 't1 = a;'. But don't build an assignment
2186 if this branch is void; in C++ it can be, if it's a throw. */
2187 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2188 TREE_OPERAND (expr, 1)
2189 = build (MODIFY_EXPR, void_type_node, tmp, TREE_OPERAND (expr, 1));
2191 /* Build the else clause, 't1 = b;'. */
2192 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2193 TREE_OPERAND (expr, 2)
2194 = build (MODIFY_EXPR, void_type_node, tmp2, TREE_OPERAND (expr, 2));
2196 TREE_TYPE (expr) = void_type_node;
2197 recalculate_side_effects (expr);
2199 /* Move the COND_EXPR to the prequeue. */
2200 gimplify_and_add (expr, pre_p);
2202 *expr_p = result;
2203 return ret;
2206 /* Make sure the condition has BOOLEAN_TYPE. */
2207 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2209 /* Break apart && and || conditions. */
2210 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
2211 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
2213 expr = shortcut_cond_expr (expr);
2215 if (expr != *expr_p)
2217 *expr_p = expr;
2219 /* We can't rely on gimplify_expr to re-gimplify the expanded
2220 form properly, as cleanups might cause the target labels to be
2221 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
2222 set up a conditional context. */
2223 gimple_push_condition ();
2224 gimplify_stmt (expr_p);
2225 gimple_pop_condition (pre_p);
2227 return GS_ALL_DONE;
2231 /* Now do the normal gimplification. */
2232 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2233 is_gimple_condexpr, fb_rvalue);
2235 gimple_push_condition ();
2237 gimplify_to_stmt_list (&TREE_OPERAND (expr, 1));
2238 gimplify_to_stmt_list (&TREE_OPERAND (expr, 2));
2239 recalculate_side_effects (expr);
2241 gimple_pop_condition (pre_p);
2243 if (ret == GS_ERROR)
2245 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2246 ret = GS_ALL_DONE;
2247 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 2)))
2248 /* Rewrite "if (a); else b" to "if (!a) b" */
2250 TREE_OPERAND (expr, 0) = invert_truthvalue (TREE_OPERAND (expr, 0));
2251 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2252 is_gimple_condexpr, fb_rvalue);
2254 tmp = TREE_OPERAND (expr, 1);
2255 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 2);
2256 TREE_OPERAND (expr, 2) = tmp;
2258 else
2259 /* Both arms are empty; replace the COND_EXPR with its predicate. */
2260 expr = TREE_OPERAND (expr, 0);
2262 *expr_p = expr;
2263 return ret;
2266 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2267 a call to __builtin_memcpy. */
2269 static enum gimplify_status
2270 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value)
2272 tree args, t, to, to_ptr, from;
2274 to = TREE_OPERAND (*expr_p, 0);
2275 from = TREE_OPERAND (*expr_p, 1);
2277 args = tree_cons (NULL, size, NULL);
2279 t = build_fold_addr_expr (from);
2280 args = tree_cons (NULL, t, args);
2282 to_ptr = build_fold_addr_expr (to);
2283 args = tree_cons (NULL, to_ptr, args);
2284 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
2285 t = build_function_call_expr (t, args);
2287 if (want_value)
2289 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2290 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2293 *expr_p = t;
2294 return GS_OK;
2297 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2298 a call to __builtin_memset. In this case we know that the RHS is
2299 a CONSTRUCTOR with an empty element list. */
2301 static enum gimplify_status
2302 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value)
2304 tree args, t, to, to_ptr;
2306 to = TREE_OPERAND (*expr_p, 0);
2308 args = tree_cons (NULL, size, NULL);
2310 args = tree_cons (NULL, integer_zero_node, args);
2312 to_ptr = build_fold_addr_expr (to);
2313 args = tree_cons (NULL, to_ptr, args);
2314 t = implicit_built_in_decls[BUILT_IN_MEMSET];
2315 t = build_function_call_expr (t, args);
2317 if (want_value)
2319 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2320 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2323 *expr_p = t;
2324 return GS_OK;
2327 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
2328 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
2329 assignment. Returns non-null if we detect a potential overlap. */
2331 struct gimplify_init_ctor_preeval_data
2333 /* The base decl of the lhs object. May be NULL, in which case we
2334 have to assume the lhs is indirect. */
2335 tree lhs_base_decl;
2337 /* The alias set of the lhs object. */
2338 int lhs_alias_set;
2341 static tree
2342 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
2344 struct gimplify_init_ctor_preeval_data *data
2345 = (struct gimplify_init_ctor_preeval_data *) xdata;
2346 tree t = *tp;
2348 /* If we find the base object, obviously we have overlap. */
2349 if (data->lhs_base_decl == t)
2350 return t;
2352 /* If the constructor component is indirect, determine if we have a
2353 potential overlap with the lhs. The only bits of information we
2354 have to go on at this point are addressability and alias sets. */
2355 if (TREE_CODE (t) == INDIRECT_REF
2356 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2357 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
2358 return t;
2360 if (IS_TYPE_OR_DECL_P (t))
2361 *walk_subtrees = 0;
2362 return NULL;
2365 /* A subroutine of gimplify_init_constructor. Pre-evaluate *EXPR_P,
2366 force values that overlap with the lhs (as described by *DATA)
2367 into temporaries. */
2369 static void
2370 gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
2371 struct gimplify_init_ctor_preeval_data *data)
2373 enum gimplify_status one;
2375 /* If the value is invariant, then there's nothing to pre-evaluate.
2376 But ensure it doesn't have any side-effects since a SAVE_EXPR is
2377 invariant but has side effects and might contain a reference to
2378 the object we're initializing. */
2379 if (TREE_INVARIANT (*expr_p) && !TREE_SIDE_EFFECTS (*expr_p))
2380 return;
2382 /* If the type has non-trivial constructors, we can't pre-evaluate. */
2383 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
2384 return;
2386 /* Recurse for nested constructors. */
2387 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
2389 unsigned HOST_WIDE_INT ix;
2390 constructor_elt *ce;
2391 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
2393 for (ix = 0; VEC_iterate (constructor_elt, v, ix, ce); ix++)
2394 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
2395 return;
2398 /* We can't preevaluate if the type contains a placeholder. */
2399 if (type_contains_placeholder_p (TREE_TYPE (*expr_p)))
2400 return;
2402 /* Gimplify the constructor element to something appropriate for the rhs
2403 of a MODIFY_EXPR. Given that we know the lhs is an aggregate, we know
2404 the gimplifier will consider this a store to memory. Doing this
2405 gimplification now means that we won't have to deal with complicated
2406 language-specific trees, nor trees like SAVE_EXPR that can induce
2407 exponential search behavior. */
2408 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
2409 if (one == GS_ERROR)
2411 *expr_p = NULL;
2412 return;
2415 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
2416 with the lhs, since "a = { .x=a }" doesn't make sense. This will
2417 always be true for all scalars, since is_gimple_mem_rhs insists on a
2418 temporary variable for them. */
2419 if (DECL_P (*expr_p))
2420 return;
2422 /* If this is of variable size, we have no choice but to assume it doesn't
2423 overlap since we can't make a temporary for it. */
2424 if (!TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (*expr_p))))
2425 return;
2427 /* Otherwise, we must search for overlap ... */
2428 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
2429 return;
2431 /* ... and if found, force the value into a temporary. */
2432 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
2435 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
2436 a RANGE_EXPR in a CONSTRUCTOR for an array.
2438 var = lower;
2439 loop_entry:
2440 object[var] = value;
2441 if (var == upper)
2442 goto loop_exit;
2443 var = var + 1;
2444 goto loop_entry;
2445 loop_exit:
2447 We increment var _after_ the loop exit check because we might otherwise
2448 fail if upper == TYPE_MAX_VALUE (type for upper).
2450 Note that we never have to deal with SAVE_EXPRs here, because this has
2451 already been taken care of for us, in gimplify_init_ctor_preeval(). */
2453 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
2454 tree *, bool);
2456 static void
2457 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
2458 tree value, tree array_elt_type,
2459 tree *pre_p, bool cleared)
2461 tree loop_entry_label, loop_exit_label;
2462 tree var, var_type, cref;
2464 loop_entry_label = create_artificial_label ();
2465 loop_exit_label = create_artificial_label ();
2467 /* Create and initialize the index variable. */
2468 var_type = TREE_TYPE (upper);
2469 var = create_tmp_var (var_type, NULL);
2470 append_to_statement_list (build2 (MODIFY_EXPR, var_type, var, lower), pre_p);
2472 /* Add the loop entry label. */
2473 append_to_statement_list (build1 (LABEL_EXPR,
2474 void_type_node,
2475 loop_entry_label),
2476 pre_p);
2478 /* Build the reference. */
2479 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2480 var, NULL_TREE, NULL_TREE);
2482 /* If we are a constructor, just call gimplify_init_ctor_eval to do
2483 the store. Otherwise just assign value to the reference. */
2485 if (TREE_CODE (value) == CONSTRUCTOR)
2486 /* NB we might have to call ourself recursively through
2487 gimplify_init_ctor_eval if the value is a constructor. */
2488 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2489 pre_p, cleared);
2490 else
2491 append_to_statement_list (build2 (MODIFY_EXPR, TREE_TYPE (cref),
2492 cref, value),
2493 pre_p);
2495 /* We exit the loop when the index var is equal to the upper bound. */
2496 gimplify_and_add (build3 (COND_EXPR, void_type_node,
2497 build2 (EQ_EXPR, boolean_type_node,
2498 var, upper),
2499 build1 (GOTO_EXPR,
2500 void_type_node,
2501 loop_exit_label),
2502 NULL_TREE),
2503 pre_p);
2505 /* Otherwise, increment the index var... */
2506 append_to_statement_list (build2 (MODIFY_EXPR, var_type, var,
2507 build2 (PLUS_EXPR, var_type, var,
2508 fold_convert (var_type,
2509 integer_one_node))),
2510 pre_p);
2512 /* ...and jump back to the loop entry. */
2513 append_to_statement_list (build1 (GOTO_EXPR,
2514 void_type_node,
2515 loop_entry_label),
2516 pre_p);
2518 /* Add the loop exit label. */
2519 append_to_statement_list (build1 (LABEL_EXPR,
2520 void_type_node,
2521 loop_exit_label),
2522 pre_p);
2525 /* Return true if FDECL is accessing a field that is zero sized. */
2527 static bool
2528 zero_sized_field_decl (tree fdecl)
2530 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
2531 && integer_zerop (DECL_SIZE (fdecl)))
2532 return true;
2533 return false;
2536 /* Return true if TYPE is zero sized. */
2538 static bool
2539 zero_sized_type (tree type)
2541 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
2542 && integer_zerop (TYPE_SIZE (type)))
2543 return true;
2544 return false;
2547 /* A subroutine of gimplify_init_constructor. Generate individual
2548 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
2549 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
2550 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
2551 zeroed first. */
2553 static void
2554 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
2555 tree *pre_p, bool cleared)
2557 tree array_elt_type = NULL;
2558 unsigned HOST_WIDE_INT ix;
2559 tree purpose, value;
2561 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
2562 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
2564 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
2566 tree cref, init;
2568 /* NULL values are created above for gimplification errors. */
2569 if (value == NULL)
2570 continue;
2572 if (cleared && initializer_zerop (value))
2573 continue;
2575 /* ??? Here's to hoping the front end fills in all of the indices,
2576 so we don't have to figure out what's missing ourselves. */
2577 gcc_assert (purpose);
2579 if (zero_sized_field_decl (purpose))
2580 continue;
2582 /* If we have a RANGE_EXPR, we have to build a loop to assign the
2583 whole range. */
2584 if (TREE_CODE (purpose) == RANGE_EXPR)
2586 tree lower = TREE_OPERAND (purpose, 0);
2587 tree upper = TREE_OPERAND (purpose, 1);
2589 /* If the lower bound is equal to upper, just treat it as if
2590 upper was the index. */
2591 if (simple_cst_equal (lower, upper))
2592 purpose = upper;
2593 else
2595 gimplify_init_ctor_eval_range (object, lower, upper, value,
2596 array_elt_type, pre_p, cleared);
2597 continue;
2601 if (array_elt_type)
2603 cref = build (ARRAY_REF, array_elt_type, unshare_expr (object),
2604 purpose, NULL_TREE, NULL_TREE);
2606 else
2608 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
2609 cref = build (COMPONENT_REF, TREE_TYPE (purpose),
2610 unshare_expr (object), purpose, NULL_TREE);
2613 if (TREE_CODE (value) == CONSTRUCTOR
2614 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
2615 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2616 pre_p, cleared);
2617 else
2619 init = build (MODIFY_EXPR, TREE_TYPE (cref), cref, value);
2620 gimplify_and_add (init, pre_p);
2625 /* A subroutine of gimplify_modify_expr. Break out elements of a
2626 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
2628 Note that we still need to clear any elements that don't have explicit
2629 initializers, so if not all elements are initialized we keep the
2630 original MODIFY_EXPR, we just remove all of the constructor elements. */
2632 static enum gimplify_status
2633 gimplify_init_constructor (tree *expr_p, tree *pre_p,
2634 tree *post_p, bool want_value)
2636 tree object;
2637 tree ctor = TREE_OPERAND (*expr_p, 1);
2638 tree type = TREE_TYPE (ctor);
2639 enum gimplify_status ret;
2640 VEC(constructor_elt,gc) *elts;
2642 if (TREE_CODE (ctor) != CONSTRUCTOR)
2643 return GS_UNHANDLED;
2645 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
2646 is_gimple_lvalue, fb_lvalue);
2647 if (ret == GS_ERROR)
2648 return ret;
2649 object = TREE_OPERAND (*expr_p, 0);
2651 elts = CONSTRUCTOR_ELTS (ctor);
2653 ret = GS_ALL_DONE;
2654 switch (TREE_CODE (type))
2656 case RECORD_TYPE:
2657 case UNION_TYPE:
2658 case QUAL_UNION_TYPE:
2659 case ARRAY_TYPE:
2661 struct gimplify_init_ctor_preeval_data preeval_data;
2662 HOST_WIDE_INT num_type_elements, num_ctor_elements;
2663 HOST_WIDE_INT num_nonzero_elements, num_nonconstant_elements;
2664 bool cleared;
2666 /* Aggregate types must lower constructors to initialization of
2667 individual elements. The exception is that a CONSTRUCTOR node
2668 with no elements indicates zero-initialization of the whole. */
2669 if (VEC_empty (constructor_elt, elts))
2670 break;
2672 categorize_ctor_elements (ctor, &num_nonzero_elements,
2673 &num_nonconstant_elements,
2674 &num_ctor_elements, &cleared);
2676 /* If a const aggregate variable is being initialized, then it
2677 should never be a lose to promote the variable to be static. */
2678 if (num_nonconstant_elements == 0
2679 && num_nonzero_elements > 1
2680 && TREE_READONLY (object)
2681 && TREE_CODE (object) == VAR_DECL)
2683 DECL_INITIAL (object) = ctor;
2684 TREE_STATIC (object) = 1;
2685 if (!DECL_NAME (object))
2686 DECL_NAME (object) = create_tmp_var_name ("C");
2687 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
2689 /* ??? C++ doesn't automatically append a .<number> to the
2690 assembler name, and even when it does, it looks a FE private
2691 data structures to figure out what that number should be,
2692 which are not set for this variable. I suppose this is
2693 important for local statics for inline functions, which aren't
2694 "local" in the object file sense. So in order to get a unique
2695 TU-local symbol, we must invoke the lhd version now. */
2696 lhd_set_decl_assembler_name (object);
2698 *expr_p = NULL_TREE;
2699 break;
2702 /* If there are "lots" of initialized elements, even discounting
2703 those that are not address constants (and thus *must* be
2704 computed at runtime), then partition the constructor into
2705 constant and non-constant parts. Block copy the constant
2706 parts in, then generate code for the non-constant parts. */
2707 /* TODO. There's code in cp/typeck.c to do this. */
2709 num_type_elements = count_type_elements (TREE_TYPE (ctor));
2711 /* If there are "lots" of zeros, then block clear the object first. */
2712 if (num_type_elements - num_nonzero_elements > CLEAR_RATIO
2713 && num_nonzero_elements < num_type_elements/4)
2714 cleared = true;
2716 /* ??? This bit ought not be needed. For any element not present
2717 in the initializer, we should simply set them to zero. Except
2718 we'd need to *find* the elements that are not present, and that
2719 requires trickery to avoid quadratic compile-time behavior in
2720 large cases or excessive memory use in small cases. */
2721 else if (num_ctor_elements < num_type_elements)
2722 cleared = true;
2724 /* If there are "lots" of initialized elements, and all of them
2725 are valid address constants, then the entire initializer can
2726 be dropped to memory, and then memcpy'd out. Don't do this
2727 for sparse arrays, though, as it's more efficient to follow
2728 the standard CONSTRUCTOR behavior of memset followed by
2729 individual element initialization. */
2730 if (num_nonconstant_elements == 0 && !cleared)
2732 HOST_WIDE_INT size = int_size_in_bytes (type);
2733 unsigned int align;
2735 /* ??? We can still get unbounded array types, at least
2736 from the C++ front end. This seems wrong, but attempt
2737 to work around it for now. */
2738 if (size < 0)
2740 size = int_size_in_bytes (TREE_TYPE (object));
2741 if (size >= 0)
2742 TREE_TYPE (ctor) = type = TREE_TYPE (object);
2745 /* Find the maximum alignment we can assume for the object. */
2746 /* ??? Make use of DECL_OFFSET_ALIGN. */
2747 if (DECL_P (object))
2748 align = DECL_ALIGN (object);
2749 else
2750 align = TYPE_ALIGN (type);
2752 if (size > 0 && !can_move_by_pieces (size, align))
2754 tree new = create_tmp_var_raw (type, "C");
2756 gimple_add_tmp_var (new);
2757 TREE_STATIC (new) = 1;
2758 TREE_READONLY (new) = 1;
2759 DECL_INITIAL (new) = ctor;
2760 if (align > DECL_ALIGN (new))
2762 DECL_ALIGN (new) = align;
2763 DECL_USER_ALIGN (new) = 1;
2765 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
2767 TREE_OPERAND (*expr_p, 1) = new;
2769 /* This is no longer an assignment of a CONSTRUCTOR, but
2770 we still may have processing to do on the LHS. So
2771 pretend we didn't do anything here to let that happen. */
2772 return GS_UNHANDLED;
2776 if (cleared)
2778 /* Zap the CONSTRUCTOR element list, which simplifies this case.
2779 Note that we still have to gimplify, in order to handle the
2780 case of variable sized types. Avoid shared tree structures. */
2781 CONSTRUCTOR_ELTS (ctor) = NULL;
2782 object = unshare_expr (object);
2783 gimplify_stmt (expr_p);
2784 append_to_statement_list (*expr_p, pre_p);
2787 /* If we have not block cleared the object, or if there are nonzero
2788 elements in the constructor, add assignments to the individual
2789 scalar fields of the object. */
2790 if (!cleared || num_nonzero_elements > 0)
2792 preeval_data.lhs_base_decl = get_base_address (object);
2793 if (!DECL_P (preeval_data.lhs_base_decl))
2794 preeval_data.lhs_base_decl = NULL;
2795 preeval_data.lhs_alias_set = get_alias_set (object);
2797 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
2798 pre_p, post_p, &preeval_data);
2799 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
2802 *expr_p = NULL_TREE;
2804 break;
2806 case COMPLEX_TYPE:
2808 tree r, i;
2810 /* Extract the real and imaginary parts out of the ctor. */
2811 gcc_assert (VEC_length (constructor_elt, elts) == 2);
2812 r = VEC_index (constructor_elt, elts, 0)->value;
2813 i = VEC_index (constructor_elt, elts, 1)->value;
2814 if (r == NULL || i == NULL)
2816 tree zero = convert (TREE_TYPE (type), integer_zero_node);
2817 if (r == NULL)
2818 r = zero;
2819 if (i == NULL)
2820 i = zero;
2823 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
2824 represent creation of a complex value. */
2825 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
2827 ctor = build_complex (type, r, i);
2828 TREE_OPERAND (*expr_p, 1) = ctor;
2830 else
2832 ctor = build (COMPLEX_EXPR, type, r, i);
2833 TREE_OPERAND (*expr_p, 1) = ctor;
2834 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
2835 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
2836 fb_rvalue);
2839 break;
2841 case VECTOR_TYPE:
2843 unsigned HOST_WIDE_INT ix;
2844 constructor_elt *ce;
2846 /* Go ahead and simplify constant constructors to VECTOR_CST. */
2847 if (TREE_CONSTANT (ctor))
2849 bool constant_p = true;
2850 tree value;
2852 /* Even when ctor is constant, it might contain non-*_CST
2853 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
2854 belong into VECTOR_CST nodes. */
2855 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
2856 if (!CONSTANT_CLASS_P (value))
2858 constant_p = false;
2859 break;
2862 if (constant_p)
2864 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
2865 break;
2869 /* Vector types use CONSTRUCTOR all the way through gimple
2870 compilation as a general initializer. */
2871 for (ix = 0; VEC_iterate (constructor_elt, elts, ix, ce); ix++)
2873 enum gimplify_status tret;
2874 tret = gimplify_expr (&ce->value, pre_p, post_p,
2875 is_gimple_val, fb_rvalue);
2876 if (tret == GS_ERROR)
2877 ret = GS_ERROR;
2880 break;
2882 default:
2883 /* So how did we get a CONSTRUCTOR for a scalar type? */
2884 gcc_unreachable ();
2887 if (ret == GS_ERROR)
2888 return GS_ERROR;
2889 else if (want_value)
2891 append_to_statement_list (*expr_p, pre_p);
2892 *expr_p = object;
2893 return GS_OK;
2895 else
2896 return GS_ALL_DONE;
2899 /* Given a pointer value OP0, return a simplified version of an
2900 indirection through OP0, or NULL_TREE if no simplification is
2901 possible. This may only be applied to a rhs of an expression.
2902 Note that the resulting type may be different from the type pointed
2903 to in the sense that it is still compatible from the langhooks
2904 point of view. */
2906 static tree
2907 fold_indirect_ref_rhs (tree t)
2909 tree type = TREE_TYPE (TREE_TYPE (t));
2910 tree sub = t;
2911 tree subtype;
2913 STRIP_NOPS (sub);
2914 subtype = TREE_TYPE (sub);
2915 if (!POINTER_TYPE_P (subtype))
2916 return NULL_TREE;
2918 if (TREE_CODE (sub) == ADDR_EXPR)
2920 tree op = TREE_OPERAND (sub, 0);
2921 tree optype = TREE_TYPE (op);
2922 /* *&p => p */
2923 if (lang_hooks.types_compatible_p (type, optype))
2924 return op;
2925 /* *(foo *)&fooarray => fooarray[0] */
2926 else if (TREE_CODE (optype) == ARRAY_TYPE
2927 && lang_hooks.types_compatible_p (type, TREE_TYPE (optype)))
2929 tree type_domain = TYPE_DOMAIN (optype);
2930 tree min_val = size_zero_node;
2931 if (type_domain && TYPE_MIN_VALUE (type_domain))
2932 min_val = TYPE_MIN_VALUE (type_domain);
2933 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
2937 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
2938 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
2939 && lang_hooks.types_compatible_p (type, TREE_TYPE (TREE_TYPE (subtype))))
2941 tree type_domain;
2942 tree min_val = size_zero_node;
2943 sub = fold_indirect_ref_rhs (sub);
2944 if (! sub)
2945 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), sub);
2946 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
2947 if (type_domain && TYPE_MIN_VALUE (type_domain))
2948 min_val = TYPE_MIN_VALUE (type_domain);
2949 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
2952 return NULL_TREE;
2955 /* Subroutine of gimplify_modify_expr to do simplifications of MODIFY_EXPRs
2956 based on the code of the RHS. We loop for as long as something changes. */
2958 static enum gimplify_status
2959 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
2960 tree *post_p, bool want_value)
2962 enum gimplify_status ret = GS_OK;
2963 tree type = TREE_TYPE (*from_p);
2964 if (zero_sized_type (type))
2966 *expr_p = NULL_TREE;
2967 return GS_ALL_DONE;
2970 while (ret != GS_UNHANDLED)
2971 switch (TREE_CODE (*from_p))
2973 case INDIRECT_REF:
2975 /* If we have code like
2977 *(const A*)(A*)&x
2979 where the type of "x" is a (possibly cv-qualified variant
2980 of "A"), treat the entire expression as identical to "x".
2981 This kind of code arises in C++ when an object is bound
2982 to a const reference, and if "x" is a TARGET_EXPR we want
2983 to take advantage of the optimization below. */
2984 tree t = fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
2985 if (t)
2987 *from_p = t;
2988 ret = GS_OK;
2990 else
2991 ret = GS_UNHANDLED;
2992 break;
2995 case TARGET_EXPR:
2997 /* If we are initializing something from a TARGET_EXPR, strip the
2998 TARGET_EXPR and initialize it directly, if possible. This can't
2999 be done if the initializer is void, since that implies that the
3000 temporary is set in some non-trivial way.
3002 ??? What about code that pulls out the temp and uses it
3003 elsewhere? I think that such code never uses the TARGET_EXPR as
3004 an initializer. If I'm wrong, we'll die because the temp won't
3005 have any RTL. In that case, I guess we'll need to replace
3006 references somehow. */
3007 tree init = TARGET_EXPR_INITIAL (*from_p);
3009 if (!VOID_TYPE_P (TREE_TYPE (init)))
3011 *from_p = init;
3012 ret = GS_OK;
3014 else
3015 ret = GS_UNHANDLED;
3017 break;
3019 case COMPOUND_EXPR:
3020 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
3021 caught. */
3022 gimplify_compound_expr (from_p, pre_p, true);
3023 ret = GS_OK;
3024 break;
3026 case CONSTRUCTOR:
3027 /* If we're initializing from a CONSTRUCTOR, break this into
3028 individual MODIFY_EXPRs. */
3029 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value);
3031 case COND_EXPR:
3032 /* If we're assigning to a non-register type, push the assignment
3033 down into the branches. This is mandatory for ADDRESSABLE types,
3034 since we cannot generate temporaries for such, but it saves a
3035 copy in other cases as well. */
3036 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
3038 *expr_p = *from_p;
3039 return gimplify_cond_expr (expr_p, pre_p, post_p, *to_p,
3040 fb_rvalue);
3042 else
3043 ret = GS_UNHANDLED;
3044 break;
3046 case CALL_EXPR:
3047 /* For calls that return in memory, give *to_p as the CALL_EXPR's
3048 return slot so that we don't generate a temporary. */
3049 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
3050 && aggregate_value_p (*from_p, *from_p))
3052 bool use_target;
3054 if (TREE_CODE (*to_p) == RESULT_DECL
3055 && needs_to_live_in_memory (*to_p))
3056 /* It's always OK to use the return slot directly. */
3057 use_target = true;
3058 else if (!is_gimple_non_addressable (*to_p))
3059 /* Don't use the original target if it's already addressable;
3060 if its address escapes, and the called function uses the
3061 NRV optimization, a conforming program could see *to_p
3062 change before the called function returns; see c++/19317.
3063 When optimizing, the return_slot pass marks more functions
3064 as safe after we have escape info. */
3065 use_target = false;
3066 else if (TREE_CODE (*to_p) != PARM_DECL
3067 && DECL_GIMPLE_FORMAL_TEMP_P (*to_p))
3068 /* Don't use the original target if it's a formal temp; we
3069 don't want to take their addresses. */
3070 use_target = false;
3071 else if (is_gimple_reg_type (TREE_TYPE (*to_p)))
3072 /* Also don't force regs into memory. */
3073 use_target = false;
3074 else
3075 use_target = true;
3077 if (use_target)
3079 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
3080 lang_hooks.mark_addressable (*to_p);
3084 ret = GS_UNHANDLED;
3085 break;
3087 default:
3088 ret = GS_UNHANDLED;
3089 break;
3092 return ret;
3095 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
3096 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
3097 DECL_COMPLEX_GIMPLE_REG_P set. */
3099 static enum gimplify_status
3100 gimplify_modify_expr_complex_part (tree *expr_p, tree *pre_p, bool want_value)
3102 enum tree_code code, ocode;
3103 tree lhs, rhs, new_rhs, other, realpart, imagpart;
3105 lhs = TREE_OPERAND (*expr_p, 0);
3106 rhs = TREE_OPERAND (*expr_p, 1);
3107 code = TREE_CODE (lhs);
3108 lhs = TREE_OPERAND (lhs, 0);
3110 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
3111 other = build1 (ocode, TREE_TYPE (rhs), lhs);
3112 other = get_formal_tmp_var (other, pre_p);
3114 realpart = code == REALPART_EXPR ? rhs : other;
3115 imagpart = code == REALPART_EXPR ? other : rhs;
3117 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
3118 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
3119 else
3120 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
3122 TREE_OPERAND (*expr_p, 0) = lhs;
3123 TREE_OPERAND (*expr_p, 1) = new_rhs;
3125 if (want_value)
3127 append_to_statement_list (*expr_p, pre_p);
3128 *expr_p = rhs;
3131 return GS_ALL_DONE;
3134 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
3136 modify_expr
3137 : varname '=' rhs
3138 | '*' ID '=' rhs
3140 PRE_P points to the list where side effects that must happen before
3141 *EXPR_P should be stored.
3143 POST_P points to the list where side effects that must happen after
3144 *EXPR_P should be stored.
3146 WANT_VALUE is nonzero iff we want to use the value of this expression
3147 in another expression. */
3149 static enum gimplify_status
3150 gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
3152 tree *from_p = &TREE_OPERAND (*expr_p, 1);
3153 tree *to_p = &TREE_OPERAND (*expr_p, 0);
3154 enum gimplify_status ret = GS_UNHANDLED;
3156 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
3157 || TREE_CODE (*expr_p) == INIT_EXPR);
3159 /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer useful. */
3160 if (TREE_CODE (*expr_p) == INIT_EXPR)
3161 TREE_SET_CODE (*expr_p, MODIFY_EXPR);
3163 /* See if any simplifications can be done based on what the RHS is. */
3164 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3165 want_value);
3166 if (ret != GS_UNHANDLED)
3167 return ret;
3169 /* If the value being copied is of variable width, compute the length
3170 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
3171 before gimplifying any of the operands so that we can resolve any
3172 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
3173 the size of the expression to be copied, not of the destination, so
3174 that is what we must here. */
3175 maybe_with_size_expr (from_p);
3177 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
3178 if (ret == GS_ERROR)
3179 return ret;
3181 ret = gimplify_expr (from_p, pre_p, post_p,
3182 rhs_predicate_for (*to_p), fb_rvalue);
3183 if (ret == GS_ERROR)
3184 return ret;
3186 /* Now see if the above changed *from_p to something we handle specially. */
3187 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
3188 want_value);
3189 if (ret != GS_UNHANDLED)
3190 return ret;
3192 /* If we've got a variable sized assignment between two lvalues (i.e. does
3193 not involve a call), then we can make things a bit more straightforward
3194 by converting the assignment to memcpy or memset. */
3195 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
3197 tree from = TREE_OPERAND (*from_p, 0);
3198 tree size = TREE_OPERAND (*from_p, 1);
3200 if (TREE_CODE (from) == CONSTRUCTOR)
3201 return gimplify_modify_expr_to_memset (expr_p, size, want_value);
3202 if (is_gimple_addressable (from))
3204 *from_p = from;
3205 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value);
3209 /* Transform partial stores to non-addressable complex variables into
3210 total stores. This allows us to use real instead of virtual operands
3211 for these variables, which improves optimization. */
3212 if ((TREE_CODE (*to_p) == REALPART_EXPR
3213 || TREE_CODE (*to_p) == IMAGPART_EXPR)
3214 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
3215 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
3217 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
3219 /* If we've somehow already got an SSA_NAME on the LHS, then
3220 we're probably modified it twice. Not good. */
3221 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
3222 *to_p = make_ssa_name (*to_p, *expr_p);
3225 if (want_value)
3227 append_to_statement_list (*expr_p, pre_p);
3228 *expr_p = *to_p;
3229 return GS_OK;
3232 return GS_ALL_DONE;
3235 /* Gimplify a comparison between two variable-sized objects. Do this
3236 with a call to BUILT_IN_MEMCMP. */
3238 static enum gimplify_status
3239 gimplify_variable_sized_compare (tree *expr_p)
3241 tree op0 = TREE_OPERAND (*expr_p, 0);
3242 tree op1 = TREE_OPERAND (*expr_p, 1);
3243 tree args, t, dest;
3245 t = TYPE_SIZE_UNIT (TREE_TYPE (op0));
3246 t = unshare_expr (t);
3247 t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, op0);
3248 args = tree_cons (NULL, t, NULL);
3249 t = build_fold_addr_expr (op1);
3250 args = tree_cons (NULL, t, args);
3251 dest = build_fold_addr_expr (op0);
3252 args = tree_cons (NULL, dest, args);
3253 t = implicit_built_in_decls[BUILT_IN_MEMCMP];
3254 t = build_function_call_expr (t, args);
3255 *expr_p
3256 = build (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
3258 return GS_OK;
3261 /* Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions. EXPR_P
3262 points to the expression to gimplify.
3264 Expressions of the form 'a && b' are gimplified to:
3266 a && b ? true : false
3268 gimplify_cond_expr will do the rest.
3270 PRE_P points to the list where side effects that must happen before
3271 *EXPR_P should be stored. */
3273 static enum gimplify_status
3274 gimplify_boolean_expr (tree *expr_p)
3276 /* Preserve the original type of the expression. */
3277 tree type = TREE_TYPE (*expr_p);
3279 *expr_p = build (COND_EXPR, type, *expr_p,
3280 convert (type, boolean_true_node),
3281 convert (type, boolean_false_node));
3283 return GS_OK;
3286 /* Gimplifies an expression sequence. This function gimplifies each
3287 expression and re-writes the original expression with the last
3288 expression of the sequence in GIMPLE form.
3290 PRE_P points to the list where the side effects for all the
3291 expressions in the sequence will be emitted.
3293 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
3294 /* ??? Should rearrange to share the pre-queue with all the indirect
3295 invocations of gimplify_expr. Would probably save on creations
3296 of statement_list nodes. */
3298 static enum gimplify_status
3299 gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
3301 tree t = *expr_p;
3305 tree *sub_p = &TREE_OPERAND (t, 0);
3307 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
3308 gimplify_compound_expr (sub_p, pre_p, false);
3309 else
3310 gimplify_stmt (sub_p);
3311 append_to_statement_list (*sub_p, pre_p);
3313 t = TREE_OPERAND (t, 1);
3315 while (TREE_CODE (t) == COMPOUND_EXPR);
3317 *expr_p = t;
3318 if (want_value)
3319 return GS_OK;
3320 else
3322 gimplify_stmt (expr_p);
3323 return GS_ALL_DONE;
3327 /* Gimplifies a statement list. These may be created either by an
3328 enlightened front-end, or by shortcut_cond_expr. */
3330 static enum gimplify_status
3331 gimplify_statement_list (tree *expr_p)
3333 tree_stmt_iterator i = tsi_start (*expr_p);
3335 while (!tsi_end_p (i))
3337 tree t;
3339 gimplify_stmt (tsi_stmt_ptr (i));
3341 t = tsi_stmt (i);
3342 if (t == NULL)
3343 tsi_delink (&i);
3344 else if (TREE_CODE (t) == STATEMENT_LIST)
3346 tsi_link_before (&i, t, TSI_SAME_STMT);
3347 tsi_delink (&i);
3349 else
3350 tsi_next (&i);
3353 return GS_ALL_DONE;
3356 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
3357 gimplify. After gimplification, EXPR_P will point to a new temporary
3358 that holds the original value of the SAVE_EXPR node.
3360 PRE_P points to the list where side effects that must happen before
3361 *EXPR_P should be stored. */
3363 static enum gimplify_status
3364 gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
3366 enum gimplify_status ret = GS_ALL_DONE;
3367 tree val;
3369 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
3370 val = TREE_OPERAND (*expr_p, 0);
3372 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
3373 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
3375 /* The operand may be a void-valued expression such as SAVE_EXPRs
3376 generated by the Java frontend for class initialization. It is
3377 being executed only for its side-effects. */
3378 if (TREE_TYPE (val) == void_type_node)
3380 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3381 is_gimple_stmt, fb_none);
3382 append_to_statement_list (TREE_OPERAND (*expr_p, 0), pre_p);
3383 val = NULL;
3385 else
3386 val = get_initialized_tmp_var (val, pre_p, post_p);
3388 TREE_OPERAND (*expr_p, 0) = val;
3389 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
3392 *expr_p = val;
3394 return ret;
3397 /* Re-write the ADDR_EXPR node pointed to by EXPR_P
3399 unary_expr
3400 : ...
3401 | '&' varname
3404 PRE_P points to the list where side effects that must happen before
3405 *EXPR_P should be stored.
3407 POST_P points to the list where side effects that must happen after
3408 *EXPR_P should be stored. */
3410 static enum gimplify_status
3411 gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
3413 tree expr = *expr_p;
3414 tree op0 = TREE_OPERAND (expr, 0);
3415 enum gimplify_status ret;
3417 switch (TREE_CODE (op0))
3419 case INDIRECT_REF:
3420 case MISALIGNED_INDIRECT_REF:
3421 do_indirect_ref:
3422 /* Check if we are dealing with an expression of the form '&*ptr'.
3423 While the front end folds away '&*ptr' into 'ptr', these
3424 expressions may be generated internally by the compiler (e.g.,
3425 builtins like __builtin_va_end). */
3426 /* Caution: the silent array decomposition semantics we allow for
3427 ADDR_EXPR means we can't always discard the pair. */
3428 /* Gimplification of the ADDR_EXPR operand may drop
3429 cv-qualification conversions, so make sure we add them if
3430 needed. */
3432 tree op00 = TREE_OPERAND (op0, 0);
3433 tree t_expr = TREE_TYPE (expr);
3434 tree t_op00 = TREE_TYPE (op00);
3436 if (!lang_hooks.types_compatible_p (t_expr, t_op00))
3438 #ifdef ENABLE_CHECKING
3439 tree t_op0 = TREE_TYPE (op0);
3440 gcc_assert (POINTER_TYPE_P (t_expr)
3441 && cpt_same_type (TREE_CODE (t_op0) == ARRAY_TYPE
3442 ? TREE_TYPE (t_op0) : t_op0,
3443 TREE_TYPE (t_expr))
3444 && POINTER_TYPE_P (t_op00)
3445 && cpt_same_type (t_op0, TREE_TYPE (t_op00)));
3446 #endif
3447 op00 = fold_convert (TREE_TYPE (expr), op00);
3449 *expr_p = op00;
3450 ret = GS_OK;
3452 break;
3454 case VIEW_CONVERT_EXPR:
3455 /* Take the address of our operand and then convert it to the type of
3456 this ADDR_EXPR.
3458 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3459 all clear. The impact of this transformation is even less clear. */
3461 /* If the operand is a useless conversion, look through it. Doing so
3462 guarantees that the ADDR_EXPR and its operand will remain of the
3463 same type. */
3464 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
3465 op0 = TREE_OPERAND (op0, 0);
3467 *expr_p = fold_convert (TREE_TYPE (expr),
3468 build_fold_addr_expr (TREE_OPERAND (op0, 0)));
3469 ret = GS_OK;
3470 break;
3472 default:
3473 /* We use fb_either here because the C frontend sometimes takes
3474 the address of a call that returns a struct; see
3475 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
3476 the implied temporary explicit. */
3477 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
3478 is_gimple_addressable, fb_either);
3479 if (ret != GS_ERROR)
3481 op0 = TREE_OPERAND (expr, 0);
3483 /* For various reasons, the gimplification of the expression
3484 may have made a new INDIRECT_REF. */
3485 if (TREE_CODE (op0) == INDIRECT_REF)
3486 goto do_indirect_ref;
3488 /* Make sure TREE_INVARIANT, TREE_CONSTANT, and TREE_SIDE_EFFECTS
3489 is set properly. */
3490 recompute_tree_invarant_for_addr_expr (expr);
3492 /* Mark the RHS addressable. */
3493 lang_hooks.mark_addressable (TREE_OPERAND (expr, 0));
3495 break;
3498 return ret;
3501 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
3502 value; output operands should be a gimple lvalue. */
3504 static enum gimplify_status
3505 gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
3507 tree expr = *expr_p;
3508 int noutputs = list_length (ASM_OUTPUTS (expr));
3509 const char **oconstraints
3510 = (const char **) alloca ((noutputs) * sizeof (const char *));
3511 int i;
3512 tree link;
3513 const char *constraint;
3514 bool allows_mem, allows_reg, is_inout;
3515 enum gimplify_status ret, tret;
3517 ret = GS_ALL_DONE;
3518 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3520 size_t constraint_len;
3521 oconstraints[i] = constraint
3522 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3523 constraint_len = strlen (constraint);
3524 if (constraint_len == 0)
3525 continue;
3527 parse_output_constraint (&constraint, i, 0, 0,
3528 &allows_mem, &allows_reg, &is_inout);
3530 if (!allows_reg && allows_mem)
3531 lang_hooks.mark_addressable (TREE_VALUE (link));
3533 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3534 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
3535 fb_lvalue | fb_mayfail);
3536 if (tret == GS_ERROR)
3538 error ("invalid lvalue in asm output %d", i);
3539 ret = tret;
3542 if (is_inout)
3544 /* An input/output operand. To give the optimizers more
3545 flexibility, split it into separate input and output
3546 operands. */
3547 tree input;
3548 char buf[10];
3550 /* Turn the in/out constraint into an output constraint. */
3551 char *p = xstrdup (constraint);
3552 p[0] = '=';
3553 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
3555 /* And add a matching input constraint. */
3556 if (allows_reg)
3558 sprintf (buf, "%d", i);
3560 /* If there are multiple alternatives in the constraint,
3561 handle each of them individually. Those that allow register
3562 will be replaced with operand number, the others will stay
3563 unchanged. */
3564 if (strchr (p, ',') != NULL)
3566 size_t len = 0, buflen = strlen (buf);
3567 char *beg, *end, *str, *dst;
3569 for (beg = p + 1;;)
3571 end = strchr (beg, ',');
3572 if (end == NULL)
3573 end = strchr (beg, '\0');
3574 if ((size_t) (end - beg) < buflen)
3575 len += buflen + 1;
3576 else
3577 len += end - beg + 1;
3578 if (*end)
3579 beg = end + 1;
3580 else
3581 break;
3584 str = alloca (len);
3585 for (beg = p + 1, dst = str;;)
3587 const char *tem;
3588 bool mem_p, reg_p, inout_p;
3590 end = strchr (beg, ',');
3591 if (end)
3592 *end = '\0';
3593 beg[-1] = '=';
3594 tem = beg - 1;
3595 parse_output_constraint (&tem, i, 0, 0,
3596 &mem_p, &reg_p, &inout_p);
3597 if (dst != str)
3598 *dst++ = ',';
3599 if (reg_p)
3601 memcpy (dst, buf, buflen);
3602 dst += buflen;
3604 else
3606 if (end)
3607 len = end - beg;
3608 else
3609 len = strlen (beg);
3610 memcpy (dst, beg, len);
3611 dst += len;
3613 if (end)
3614 beg = end + 1;
3615 else
3616 break;
3618 *dst = '\0';
3619 input = build_string (dst - str, str);
3621 else
3622 input = build_string (strlen (buf), buf);
3624 else
3625 input = build_string (constraint_len - 1, constraint + 1);
3627 free (p);
3629 input = build_tree_list (build_tree_list (NULL_TREE, input),
3630 unshare_expr (TREE_VALUE (link)));
3631 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
3635 for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3637 constraint
3638 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3639 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
3640 oconstraints, &allows_mem, &allows_reg);
3642 /* If the operand is a memory input, it should be an lvalue. */
3643 if (!allows_reg && allows_mem)
3645 lang_hooks.mark_addressable (TREE_VALUE (link));
3646 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3647 is_gimple_lvalue, fb_lvalue | fb_mayfail);
3648 if (tret == GS_ERROR)
3650 error ("memory input %d is not directly addressable", i);
3651 ret = tret;
3654 else
3656 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3657 is_gimple_asm_val, fb_rvalue);
3658 if (tret == GS_ERROR)
3659 ret = tret;
3663 return ret;
3666 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
3667 WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
3668 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
3669 return to this function.
3671 FIXME should we complexify the prequeue handling instead? Or use flags
3672 for all the cleanups and let the optimizer tighten them up? The current
3673 code seems pretty fragile; it will break on a cleanup within any
3674 non-conditional nesting. But any such nesting would be broken, anyway;
3675 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
3676 and continues out of it. We can do that at the RTL level, though, so
3677 having an optimizer to tighten up try/finally regions would be a Good
3678 Thing. */
3680 static enum gimplify_status
3681 gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
3683 tree_stmt_iterator iter;
3684 tree body;
3686 tree temp = voidify_wrapper_expr (*expr_p, NULL);
3688 /* We only care about the number of conditions between the innermost
3689 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count. */
3690 int old_conds = gimplify_ctxp->conditions;
3691 gimplify_ctxp->conditions = 0;
3693 body = TREE_OPERAND (*expr_p, 0);
3694 gimplify_to_stmt_list (&body);
3696 gimplify_ctxp->conditions = old_conds;
3698 for (iter = tsi_start (body); !tsi_end_p (iter); )
3700 tree *wce_p = tsi_stmt_ptr (iter);
3701 tree wce = *wce_p;
3703 if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
3705 if (tsi_one_before_end_p (iter))
3707 tsi_link_before (&iter, TREE_OPERAND (wce, 0), TSI_SAME_STMT);
3708 tsi_delink (&iter);
3709 break;
3711 else
3713 tree sl, tfe;
3714 enum tree_code code;
3716 if (CLEANUP_EH_ONLY (wce))
3717 code = TRY_CATCH_EXPR;
3718 else
3719 code = TRY_FINALLY_EXPR;
3721 sl = tsi_split_statement_list_after (&iter);
3722 tfe = build (code, void_type_node, sl, NULL_TREE);
3723 append_to_statement_list (TREE_OPERAND (wce, 0),
3724 &TREE_OPERAND (tfe, 1));
3725 *wce_p = tfe;
3726 iter = tsi_start (sl);
3729 else
3730 tsi_next (&iter);
3733 if (temp)
3735 *expr_p = temp;
3736 append_to_statement_list (body, pre_p);
3737 return GS_OK;
3739 else
3741 *expr_p = body;
3742 return GS_ALL_DONE;
3746 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
3747 is the cleanup action required. */
3749 static void
3750 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, tree *pre_p)
3752 tree wce;
3754 /* Errors can result in improperly nested cleanups. Which results in
3755 confusion when trying to resolve the WITH_CLEANUP_EXPR. */
3756 if (errorcount || sorrycount)
3757 return;
3759 if (gimple_conditional_context ())
3761 /* If we're in a conditional context, this is more complex. We only
3762 want to run the cleanup if we actually ran the initialization that
3763 necessitates it, but we want to run it after the end of the
3764 conditional context. So we wrap the try/finally around the
3765 condition and use a flag to determine whether or not to actually
3766 run the destructor. Thus
3768 test ? f(A()) : 0
3770 becomes (approximately)
3772 flag = 0;
3773 try {
3774 if (test) { A::A(temp); flag = 1; val = f(temp); }
3775 else { val = 0; }
3776 } finally {
3777 if (flag) A::~A(temp);
3782 tree flag = create_tmp_var (boolean_type_node, "cleanup");
3783 tree ffalse = build (MODIFY_EXPR, void_type_node, flag,
3784 boolean_false_node);
3785 tree ftrue = build (MODIFY_EXPR, void_type_node, flag,
3786 boolean_true_node);
3787 cleanup = build (COND_EXPR, void_type_node, flag, cleanup, NULL);
3788 wce = build (WITH_CLEANUP_EXPR, void_type_node, cleanup);
3789 append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
3790 append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
3791 append_to_statement_list (ftrue, pre_p);
3793 /* Because of this manipulation, and the EH edges that jump
3794 threading cannot redirect, the temporary (VAR) will appear
3795 to be used uninitialized. Don't warn. */
3796 TREE_NO_WARNING (var) = 1;
3798 else
3800 wce = build (WITH_CLEANUP_EXPR, void_type_node, cleanup);
3801 CLEANUP_EH_ONLY (wce) = eh_only;
3802 append_to_statement_list (wce, pre_p);
3805 gimplify_stmt (&TREE_OPERAND (wce, 0));
3808 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
3810 static enum gimplify_status
3811 gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
3813 tree targ = *expr_p;
3814 tree temp = TARGET_EXPR_SLOT (targ);
3815 tree init = TARGET_EXPR_INITIAL (targ);
3816 enum gimplify_status ret;
3818 if (init)
3820 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
3821 to the temps list. */
3822 gimple_add_tmp_var (temp);
3824 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
3825 expression is supposed to initialize the slot. */
3826 if (VOID_TYPE_P (TREE_TYPE (init)))
3827 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
3828 else
3830 /* Special handling for BIND_EXPR can result in fewer temps. */
3831 ret = GS_OK;
3832 if (TREE_CODE (init) == BIND_EXPR)
3833 gimplify_bind_expr (&init, temp, pre_p);
3834 if (init != temp)
3836 init = build (MODIFY_EXPR, void_type_node, temp, init);
3837 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
3838 fb_none);
3841 if (ret == GS_ERROR)
3842 return GS_ERROR;
3843 append_to_statement_list (init, pre_p);
3845 /* If needed, push the cleanup for the temp. */
3846 if (TARGET_EXPR_CLEANUP (targ))
3848 gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
3849 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
3850 CLEANUP_EH_ONLY (targ), pre_p);
3853 /* Only expand this once. */
3854 TREE_OPERAND (targ, 3) = init;
3855 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
3857 else
3858 /* We should have expanded this before. */
3859 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
3861 *expr_p = temp;
3862 return GS_OK;
3865 /* Gimplification of expression trees. */
3867 /* Gimplify an expression which appears at statement context; usually, this
3868 means replacing it with a suitably gimple STATEMENT_LIST. */
3870 void
3871 gimplify_stmt (tree *stmt_p)
3873 gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
3876 /* Similarly, but force the result to be a STATEMENT_LIST. */
3878 void
3879 gimplify_to_stmt_list (tree *stmt_p)
3881 gimplify_stmt (stmt_p);
3882 if (!*stmt_p)
3883 *stmt_p = alloc_stmt_list ();
3884 else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
3886 tree t = *stmt_p;
3887 *stmt_p = alloc_stmt_list ();
3888 append_to_statement_list (t, stmt_p);
3893 /* Gimplifies the expression tree pointed to by EXPR_P. Return 0 if
3894 gimplification failed.
3896 PRE_P points to the list where side effects that must happen before
3897 EXPR should be stored.
3899 POST_P points to the list where side effects that must happen after
3900 EXPR should be stored, or NULL if there is no suitable list. In
3901 that case, we copy the result to a temporary, emit the
3902 post-effects, and then return the temporary.
3904 GIMPLE_TEST_F points to a function that takes a tree T and
3905 returns nonzero if T is in the GIMPLE form requested by the
3906 caller. The GIMPLE predicates are in tree-gimple.c.
3908 This test is used twice. Before gimplification, the test is
3909 invoked to determine whether *EXPR_P is already gimple enough. If
3910 that fails, *EXPR_P is gimplified according to its code and
3911 GIMPLE_TEST_F is called again. If the test still fails, then a new
3912 temporary variable is created and assigned the value of the
3913 gimplified expression.
3915 FALLBACK tells the function what sort of a temporary we want. If the 1
3916 bit is set, an rvalue is OK. If the 2 bit is set, an lvalue is OK.
3917 If both are set, either is OK, but an lvalue is preferable.
3919 The return value is either GS_ERROR or GS_ALL_DONE, since this function
3920 iterates until solution. */
3922 enum gimplify_status
3923 gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
3924 bool (* gimple_test_f) (tree), fallback_t fallback)
3926 tree tmp;
3927 tree internal_pre = NULL_TREE;
3928 tree internal_post = NULL_TREE;
3929 tree save_expr;
3930 int is_statement = (pre_p == NULL);
3931 location_t saved_location;
3932 enum gimplify_status ret;
3934 save_expr = *expr_p;
3935 if (save_expr == NULL_TREE)
3936 return GS_ALL_DONE;
3938 /* We used to check the predicate here and return immediately if it
3939 succeeds. This is wrong; the design is for gimplification to be
3940 idempotent, and for the predicates to only test for valid forms, not
3941 whether they are fully simplified. */
3943 /* Set up our internal queues if needed. */
3944 if (pre_p == NULL)
3945 pre_p = &internal_pre;
3946 if (post_p == NULL)
3947 post_p = &internal_post;
3949 saved_location = input_location;
3950 if (save_expr != error_mark_node
3951 && EXPR_HAS_LOCATION (*expr_p))
3952 input_location = EXPR_LOCATION (*expr_p);
3954 /* Loop over the specific gimplifiers until the toplevel node
3955 remains the same. */
3958 /* Strip away as many useless type conversions as possible
3959 at the toplevel. */
3960 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
3962 /* Remember the expr. */
3963 save_expr = *expr_p;
3965 /* Die, die, die, my darling. */
3966 if (save_expr == error_mark_node
3967 || (TREE_TYPE (save_expr)
3968 && TREE_TYPE (save_expr) == error_mark_node))
3970 ret = GS_ERROR;
3971 break;
3974 /* Do any language-specific gimplification. */
3975 ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
3976 if (ret == GS_OK)
3978 if (*expr_p == NULL_TREE)
3979 break;
3980 if (*expr_p != save_expr)
3981 continue;
3983 else if (ret != GS_UNHANDLED)
3984 break;
3986 ret = GS_OK;
3987 switch (TREE_CODE (*expr_p))
3989 /* First deal with the special cases. */
3991 case POSTINCREMENT_EXPR:
3992 case POSTDECREMENT_EXPR:
3993 case PREINCREMENT_EXPR:
3994 case PREDECREMENT_EXPR:
3995 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
3996 fallback != fb_none);
3997 break;
3999 case ARRAY_REF:
4000 case ARRAY_RANGE_REF:
4001 case REALPART_EXPR:
4002 case IMAGPART_EXPR:
4003 case COMPONENT_REF:
4004 case VIEW_CONVERT_EXPR:
4005 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
4006 fallback ? fallback : fb_rvalue);
4007 break;
4009 case COND_EXPR:
4010 ret = gimplify_cond_expr (expr_p, pre_p, post_p, NULL_TREE,
4011 fallback);
4012 /* C99 code may assign to an array in a structure value of a
4013 conditional expression, and this has undefined behavior
4014 only on execution, so create a temporary if an lvalue is
4015 required. */
4016 if (fallback == fb_lvalue)
4018 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
4019 lang_hooks.mark_addressable (*expr_p);
4021 break;
4023 case CALL_EXPR:
4024 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
4025 /* C99 code may assign to an array in a structure returned
4026 from a function, and this has undefined behavior only on
4027 execution, so create a temporary if an lvalue is
4028 required. */
4029 if (fallback == fb_lvalue)
4031 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
4032 lang_hooks.mark_addressable (*expr_p);
4034 break;
4036 case TREE_LIST:
4037 gcc_unreachable ();
4039 case COMPOUND_EXPR:
4040 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
4041 break;
4043 case MODIFY_EXPR:
4044 case INIT_EXPR:
4045 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
4046 fallback != fb_none);
4047 break;
4049 case TRUTH_ANDIF_EXPR:
4050 case TRUTH_ORIF_EXPR:
4051 ret = gimplify_boolean_expr (expr_p);
4052 break;
4054 case TRUTH_NOT_EXPR:
4055 TREE_OPERAND (*expr_p, 0)
4056 = gimple_boolify (TREE_OPERAND (*expr_p, 0));
4057 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4058 is_gimple_val, fb_rvalue);
4059 recalculate_side_effects (*expr_p);
4060 break;
4062 case ADDR_EXPR:
4063 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
4064 break;
4066 case VA_ARG_EXPR:
4067 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
4068 break;
4070 case CONVERT_EXPR:
4071 case NOP_EXPR:
4072 if (IS_EMPTY_STMT (*expr_p))
4074 ret = GS_ALL_DONE;
4075 break;
4078 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
4079 || fallback == fb_none)
4081 /* Just strip a conversion to void (or in void context) and
4082 try again. */
4083 *expr_p = TREE_OPERAND (*expr_p, 0);
4084 break;
4087 ret = gimplify_conversion (expr_p);
4088 if (ret == GS_ERROR)
4089 break;
4090 if (*expr_p != save_expr)
4091 break;
4092 /* FALLTHRU */
4094 case FIX_TRUNC_EXPR:
4095 case FIX_CEIL_EXPR:
4096 case FIX_FLOOR_EXPR:
4097 case FIX_ROUND_EXPR:
4098 /* unary_expr: ... | '(' cast ')' val | ... */
4099 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4100 is_gimple_val, fb_rvalue);
4101 recalculate_side_effects (*expr_p);
4102 break;
4104 case INDIRECT_REF:
4105 *expr_p = fold_indirect_ref (*expr_p);
4106 if (*expr_p != save_expr)
4107 break;
4108 /* else fall through. */
4109 case ALIGN_INDIRECT_REF:
4110 case MISALIGNED_INDIRECT_REF:
4111 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4112 is_gimple_reg, fb_rvalue);
4113 recalculate_side_effects (*expr_p);
4114 break;
4116 /* Constants need not be gimplified. */
4117 case INTEGER_CST:
4118 case REAL_CST:
4119 case STRING_CST:
4120 case COMPLEX_CST:
4121 case VECTOR_CST:
4122 ret = GS_ALL_DONE;
4123 break;
4125 case CONST_DECL:
4126 /* If we require an lvalue, such as for ADDR_EXPR, retain the
4127 CONST_DECL node. Otherwise the decl is replaceable by its
4128 value. */
4129 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
4130 if (fallback & fb_lvalue)
4131 ret = GS_ALL_DONE;
4132 else
4133 *expr_p = DECL_INITIAL (*expr_p);
4134 break;
4136 case DECL_EXPR:
4137 ret = gimplify_decl_expr (expr_p);
4138 break;
4140 case EXC_PTR_EXPR:
4141 /* FIXME make this a decl. */
4142 ret = GS_ALL_DONE;
4143 break;
4145 case BIND_EXPR:
4146 ret = gimplify_bind_expr (expr_p, NULL, pre_p);
4147 break;
4149 case LOOP_EXPR:
4150 ret = gimplify_loop_expr (expr_p, pre_p);
4151 break;
4153 case SWITCH_EXPR:
4154 ret = gimplify_switch_expr (expr_p, pre_p);
4155 break;
4157 case EXIT_EXPR:
4158 ret = gimplify_exit_expr (expr_p);
4159 break;
4161 case GOTO_EXPR:
4162 /* If the target is not LABEL, then it is a computed jump
4163 and the target needs to be gimplified. */
4164 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
4165 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
4166 NULL, is_gimple_val, fb_rvalue);
4167 break;
4169 case LABEL_EXPR:
4170 ret = GS_ALL_DONE;
4171 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
4172 == current_function_decl);
4173 break;
4175 case CASE_LABEL_EXPR:
4176 ret = gimplify_case_label_expr (expr_p);
4177 break;
4179 case RETURN_EXPR:
4180 ret = gimplify_return_expr (*expr_p, pre_p);
4181 break;
4183 case CONSTRUCTOR:
4184 /* Don't reduce this in place; let gimplify_init_constructor work its
4185 magic. Buf if we're just elaborating this for side effects, just
4186 gimplify any element that has side-effects. */
4187 if (fallback == fb_none)
4189 unsigned HOST_WIDE_INT ix;
4190 constructor_elt *ce;
4191 for (ix = 0;
4192 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (*expr_p),
4193 ix, ce);
4194 ix++)
4195 if (TREE_SIDE_EFFECTS (ce->value))
4196 gimplify_expr (&ce->value, pre_p, post_p,
4197 gimple_test_f, fallback);
4199 *expr_p = NULL_TREE;
4202 ret = GS_ALL_DONE;
4203 break;
4205 /* The following are special cases that are not handled by the
4206 original GIMPLE grammar. */
4208 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
4209 eliminated. */
4210 case SAVE_EXPR:
4211 ret = gimplify_save_expr (expr_p, pre_p, post_p);
4212 break;
4214 case BIT_FIELD_REF:
4216 enum gimplify_status r0, r1, r2;
4218 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4219 is_gimple_lvalue, fb_either);
4220 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
4221 is_gimple_val, fb_rvalue);
4222 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
4223 is_gimple_val, fb_rvalue);
4224 recalculate_side_effects (*expr_p);
4226 ret = MIN (r0, MIN (r1, r2));
4228 break;
4230 case NON_LVALUE_EXPR:
4231 /* This should have been stripped above. */
4232 gcc_unreachable ();
4234 case ASM_EXPR:
4235 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
4236 break;
4238 case TRY_FINALLY_EXPR:
4239 case TRY_CATCH_EXPR:
4240 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
4241 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
4242 ret = GS_ALL_DONE;
4243 break;
4245 case CLEANUP_POINT_EXPR:
4246 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
4247 break;
4249 case TARGET_EXPR:
4250 ret = gimplify_target_expr (expr_p, pre_p, post_p);
4251 break;
4253 case CATCH_EXPR:
4254 gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
4255 ret = GS_ALL_DONE;
4256 break;
4258 case EH_FILTER_EXPR:
4259 gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
4260 ret = GS_ALL_DONE;
4261 break;
4263 case OBJ_TYPE_REF:
4265 enum gimplify_status r0, r1;
4266 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
4267 is_gimple_val, fb_rvalue);
4268 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
4269 is_gimple_val, fb_rvalue);
4270 ret = MIN (r0, r1);
4272 break;
4274 case LABEL_DECL:
4275 /* We get here when taking the address of a label. We mark
4276 the label as "forced"; meaning it can never be removed and
4277 it is a potential target for any computed goto. */
4278 FORCED_LABEL (*expr_p) = 1;
4279 ret = GS_ALL_DONE;
4280 break;
4282 case STATEMENT_LIST:
4283 ret = gimplify_statement_list (expr_p);
4284 break;
4286 case WITH_SIZE_EXPR:
4288 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
4289 post_p == &internal_post ? NULL : post_p,
4290 gimple_test_f, fallback);
4291 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
4292 is_gimple_val, fb_rvalue);
4294 break;
4296 case VAR_DECL:
4297 /* ??? If this is a local variable, and it has not been seen in any
4298 outer BIND_EXPR, then it's probably the result of a duplicate
4299 declaration, for which we've already issued an error. It would
4300 be really nice if the front end wouldn't leak these at all.
4301 Currently the only known culprit is C++ destructors, as seen
4302 in g++.old-deja/g++.jason/binding.C. */
4303 tmp = *expr_p;
4304 if (!TREE_STATIC (tmp) && !DECL_EXTERNAL (tmp)
4305 && decl_function_context (tmp) == current_function_decl
4306 && !DECL_SEEN_IN_BIND_EXPR_P (tmp))
4308 gcc_assert (errorcount || sorrycount);
4309 ret = GS_ERROR;
4310 break;
4312 /* FALLTHRU */
4314 case PARM_DECL:
4315 tmp = *expr_p;
4317 /* If this is a local variable sized decl, it must be accessed
4318 indirectly. Perform that substitution. */
4319 if (DECL_HAS_VALUE_EXPR_P (tmp))
4321 *expr_p = unshare_expr (DECL_VALUE_EXPR (tmp));
4322 ret = GS_OK;
4323 break;
4326 ret = GS_ALL_DONE;
4327 break;
4329 case SSA_NAME:
4330 /* Allow callbacks into the gimplifier during optimization. */
4331 ret = GS_ALL_DONE;
4332 break;
4334 default:
4335 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
4337 case tcc_comparison:
4338 /* If this is a comparison of objects of aggregate type,
4339 handle it specially (by converting to a call to
4340 memcmp). It would be nice to only have to do this
4341 for variable-sized objects, but then we'd have to
4342 allow the same nest of reference nodes we allow for
4343 MODIFY_EXPR and that's too complex. */
4344 if (!AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (*expr_p, 1))))
4345 goto expr_2;
4346 ret = gimplify_variable_sized_compare (expr_p);
4347 break;
4349 /* If *EXPR_P does not need to be special-cased, handle it
4350 according to its class. */
4351 case tcc_unary:
4352 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
4353 post_p, is_gimple_val, fb_rvalue);
4354 break;
4356 case tcc_binary:
4357 expr_2:
4359 enum gimplify_status r0, r1;
4361 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
4362 post_p, is_gimple_val, fb_rvalue);
4363 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
4364 post_p, is_gimple_val, fb_rvalue);
4366 ret = MIN (r0, r1);
4367 break;
4370 case tcc_declaration:
4371 case tcc_constant:
4372 ret = GS_ALL_DONE;
4373 goto dont_recalculate;
4375 default:
4376 gcc_assert (TREE_CODE (*expr_p) == TRUTH_AND_EXPR
4377 || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
4378 || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR);
4379 goto expr_2;
4382 recalculate_side_effects (*expr_p);
4383 dont_recalculate:
4384 break;
4387 /* If we replaced *expr_p, gimplify again. */
4388 if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
4389 ret = GS_ALL_DONE;
4391 while (ret == GS_OK);
4393 /* If we encountered an error_mark somewhere nested inside, either
4394 stub out the statement or propagate the error back out. */
4395 if (ret == GS_ERROR)
4397 if (is_statement)
4398 *expr_p = NULL;
4399 goto out;
4402 /* This was only valid as a return value from the langhook, which
4403 we handled. Make sure it doesn't escape from any other context. */
4404 gcc_assert (ret != GS_UNHANDLED);
4406 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
4408 /* We aren't looking for a value, and we don't have a valid
4409 statement. If it doesn't have side-effects, throw it away. */
4410 if (!TREE_SIDE_EFFECTS (*expr_p))
4411 *expr_p = NULL;
4412 else if (!TREE_THIS_VOLATILE (*expr_p))
4414 /* This is probably a _REF that contains something nested that
4415 has side effects. Recurse through the operands to find it. */
4416 enum tree_code code = TREE_CODE (*expr_p);
4418 switch (code)
4420 case COMPONENT_REF:
4421 case REALPART_EXPR: case IMAGPART_EXPR:
4422 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4423 gimple_test_f, fallback);
4424 break;
4426 case ARRAY_REF: case ARRAY_RANGE_REF:
4427 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4428 gimple_test_f, fallback);
4429 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
4430 gimple_test_f, fallback);
4431 break;
4433 default:
4434 /* Anything else with side-effects must be converted to
4435 a valid statement before we get here. */
4436 gcc_unreachable ();
4439 *expr_p = NULL;
4441 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p)))
4443 /* Historically, the compiler has treated a bare
4444 reference to a volatile lvalue as forcing a load. */
4445 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
4446 tree tmp = create_tmp_var (type, "vol");
4447 *expr_p = build (MODIFY_EXPR, type, tmp, *expr_p);
4449 else
4450 /* We can't do anything useful with a volatile reference to
4451 incomplete type, so just throw it away. */
4452 *expr_p = NULL;
4455 /* If we are gimplifying at the statement level, we're done. Tack
4456 everything together and replace the original statement with the
4457 gimplified form. */
4458 if (fallback == fb_none || is_statement)
4460 if (internal_pre || internal_post)
4462 append_to_statement_list (*expr_p, &internal_pre);
4463 append_to_statement_list (internal_post, &internal_pre);
4464 annotate_all_with_locus (&internal_pre, input_location);
4465 *expr_p = internal_pre;
4467 else if (!*expr_p)
4469 else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
4470 annotate_all_with_locus (expr_p, input_location);
4471 else
4472 annotate_one_with_locus (*expr_p, input_location);
4473 goto out;
4476 /* Otherwise we're gimplifying a subexpression, so the resulting value is
4477 interesting. */
4479 /* If it's sufficiently simple already, we're done. Unless we are
4480 handling some post-effects internally; if that's the case, we need to
4481 copy into a temp before adding the post-effects to the tree. */
4482 if (!internal_post && (*gimple_test_f) (*expr_p))
4483 goto out;
4485 /* Otherwise, we need to create a new temporary for the gimplified
4486 expression. */
4488 /* We can't return an lvalue if we have an internal postqueue. The
4489 object the lvalue refers to would (probably) be modified by the
4490 postqueue; we need to copy the value out first, which means an
4491 rvalue. */
4492 if ((fallback & fb_lvalue) && !internal_post
4493 && is_gimple_addressable (*expr_p))
4495 /* An lvalue will do. Take the address of the expression, store it
4496 in a temporary, and replace the expression with an INDIRECT_REF of
4497 that temporary. */
4498 tmp = build_fold_addr_expr (*expr_p);
4499 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
4500 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
4502 else if ((fallback & fb_rvalue) && is_gimple_formal_tmp_rhs (*expr_p))
4504 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
4506 /* An rvalue will do. Assign the gimplified expression into a new
4507 temporary TMP and replace the original expression with TMP. */
4509 if (internal_post || (fallback & fb_lvalue))
4510 /* The postqueue might change the value of the expression between
4511 the initialization and use of the temporary, so we can't use a
4512 formal temp. FIXME do we care? */
4513 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
4514 else
4515 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
4517 if (TREE_CODE (*expr_p) != SSA_NAME)
4518 DECL_GIMPLE_FORMAL_TEMP_P (*expr_p) = 1;
4520 else
4522 #ifdef ENABLE_CHECKING
4523 if (!(fallback & fb_mayfail))
4525 fprintf (stderr, "gimplification failed:\n");
4526 print_generic_expr (stderr, *expr_p, 0);
4527 debug_tree (*expr_p);
4528 internal_error ("gimplification failed");
4530 #endif
4531 gcc_assert (fallback & fb_mayfail);
4532 /* If this is an asm statement, and the user asked for the
4533 impossible, don't die. Fail and let gimplify_asm_expr
4534 issue an error. */
4535 ret = GS_ERROR;
4536 goto out;
4539 /* Make sure the temporary matches our predicate. */
4540 gcc_assert ((*gimple_test_f) (*expr_p));
4542 if (internal_post)
4544 annotate_all_with_locus (&internal_post, input_location);
4545 append_to_statement_list (internal_post, pre_p);
4548 out:
4549 input_location = saved_location;
4550 return ret;
4553 /* Look through TYPE for variable-sized objects and gimplify each such
4554 size that we find. Add to LIST_P any statements generated. */
4556 void
4557 gimplify_type_sizes (tree type, tree *list_p)
4559 tree field, t;
4561 if (type == NULL || type == error_mark_node)
4562 return;
4564 /* We first do the main variant, then copy into any other variants. */
4565 type = TYPE_MAIN_VARIANT (type);
4567 /* Avoid infinite recursion. */
4568 if (TYPE_SIZES_GIMPLIFIED (type))
4569 return;
4571 TYPE_SIZES_GIMPLIFIED (type) = 1;
4573 switch (TREE_CODE (type))
4575 case INTEGER_TYPE:
4576 case ENUMERAL_TYPE:
4577 case BOOLEAN_TYPE:
4578 case CHAR_TYPE:
4579 case REAL_TYPE:
4580 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
4581 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
4583 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
4585 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
4586 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
4588 break;
4590 case ARRAY_TYPE:
4591 /* These types may not have declarations, so handle them here. */
4592 gimplify_type_sizes (TREE_TYPE (type), list_p);
4593 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
4594 break;
4596 case RECORD_TYPE:
4597 case UNION_TYPE:
4598 case QUAL_UNION_TYPE:
4599 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4600 if (TREE_CODE (field) == FIELD_DECL)
4602 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
4603 gimplify_type_sizes (TREE_TYPE (field), list_p);
4605 break;
4607 case POINTER_TYPE:
4608 case REFERENCE_TYPE:
4609 gimplify_type_sizes (TREE_TYPE (type), list_p);
4610 break;
4612 default:
4613 break;
4616 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
4617 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
4619 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
4621 TYPE_SIZE (t) = TYPE_SIZE (type);
4622 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
4623 TYPE_SIZES_GIMPLIFIED (t) = 1;
4627 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
4628 a size or position, has had all of its SAVE_EXPRs evaluated.
4629 We add any required statements to STMT_P. */
4631 void
4632 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
4634 tree type, expr = *expr_p;
4636 /* We don't do anything if the value isn't there, is constant, or contains
4637 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
4638 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
4639 will want to replace it with a new variable, but that will cause problems
4640 if this type is from outside the function. It's OK to have that here. */
4641 if (expr == NULL_TREE || TREE_CONSTANT (expr)
4642 || TREE_CODE (expr) == VAR_DECL
4643 || CONTAINS_PLACEHOLDER_P (expr))
4644 return;
4646 type = TREE_TYPE (expr);
4647 *expr_p = unshare_expr (expr);
4649 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
4650 expr = *expr_p;
4652 /* Verify that we've an exact type match with the original expression.
4653 In particular, we do not wish to drop a "sizetype" in favour of a
4654 type of similar dimensions. We don't want to pollute the generic
4655 type-stripping code with this knowledge because it doesn't matter
4656 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
4657 and friends retain their "sizetype-ness". */
4658 if (TREE_TYPE (expr) != type
4659 && TREE_CODE (type) == INTEGER_TYPE
4660 && TYPE_IS_SIZETYPE (type))
4662 tree tmp;
4664 *expr_p = create_tmp_var (type, NULL);
4665 tmp = build1 (NOP_EXPR, type, expr);
4666 tmp = build2 (MODIFY_EXPR, type, *expr_p, expr);
4667 if (EXPR_HAS_LOCATION (expr))
4668 SET_EXPR_LOCUS (tmp, EXPR_LOCUS (expr));
4669 else
4670 SET_EXPR_LOCATION (tmp, input_location);
4672 gimplify_and_add (tmp, stmt_p);
4676 #ifdef ENABLE_CHECKING
4677 /* Compare types A and B for a "close enough" match. */
4679 static bool
4680 cpt_same_type (tree a, tree b)
4682 if (lang_hooks.types_compatible_p (a, b))
4683 return true;
4685 /* ??? The C++ FE decomposes METHOD_TYPES to FUNCTION_TYPES and doesn't
4686 link them together. This routine is intended to catch type errors
4687 that will affect the optimizers, and the optimizers don't add new
4688 dereferences of function pointers, so ignore it. */
4689 if ((TREE_CODE (a) == FUNCTION_TYPE || TREE_CODE (a) == METHOD_TYPE)
4690 && (TREE_CODE (b) == FUNCTION_TYPE || TREE_CODE (b) == METHOD_TYPE))
4691 return true;
4693 /* ??? The C FE pushes type qualifiers after the fact into the type of
4694 the element from the type of the array. See build_unary_op's handling
4695 of ADDR_EXPR. This seems wrong -- if we were going to do this, we
4696 should have done it when creating the variable in the first place.
4697 Alternately, why aren't the two array types made variants? */
4698 if (TREE_CODE (a) == ARRAY_TYPE && TREE_CODE (b) == ARRAY_TYPE)
4699 return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
4701 /* And because of those, we have to recurse down through pointers. */
4702 if (POINTER_TYPE_P (a) && POINTER_TYPE_P (b))
4703 return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
4705 return false;
4708 /* Check for some cases of the front end missing cast expressions.
4709 The type of a dereference should correspond to the pointer type;
4710 similarly the type of an address should match its object. */
4712 static tree
4713 check_pointer_types_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
4714 void *data ATTRIBUTE_UNUSED)
4716 tree t = *tp;
4717 tree ptype, otype, dtype;
4719 switch (TREE_CODE (t))
4721 case INDIRECT_REF:
4722 case ARRAY_REF:
4723 otype = TREE_TYPE (t);
4724 ptype = TREE_TYPE (TREE_OPERAND (t, 0));
4725 dtype = TREE_TYPE (ptype);
4726 gcc_assert (cpt_same_type (otype, dtype));
4727 break;
4729 case ADDR_EXPR:
4730 ptype = TREE_TYPE (t);
4731 otype = TREE_TYPE (TREE_OPERAND (t, 0));
4732 dtype = TREE_TYPE (ptype);
4733 if (!cpt_same_type (otype, dtype))
4735 /* &array is allowed to produce a pointer to the element, rather than
4736 a pointer to the array type. We must allow this in order to
4737 properly represent assigning the address of an array in C into
4738 pointer to the element type. */
4739 gcc_assert (TREE_CODE (otype) == ARRAY_TYPE
4740 && POINTER_TYPE_P (ptype)
4741 && cpt_same_type (TREE_TYPE (otype), dtype));
4742 break;
4744 break;
4746 default:
4747 return NULL_TREE;
4751 return NULL_TREE;
4753 #endif
4755 /* Gimplify the body of statements pointed to by BODY_P. FNDECL is the
4756 function decl containing BODY. */
4758 void
4759 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
4761 location_t saved_location = input_location;
4762 tree body, parm_stmts;
4764 timevar_push (TV_TREE_GIMPLIFY);
4765 push_gimplify_context ();
4767 /* Unshare most shared trees in the body and in that of any nested functions.
4768 It would seem we don't have to do this for nested functions because
4769 they are supposed to be output and then the outer function gimplified
4770 first, but the g++ front end doesn't always do it that way. */
4771 unshare_body (body_p, fndecl);
4772 unvisit_body (body_p, fndecl);
4774 /* Make sure input_location isn't set to something wierd. */
4775 input_location = DECL_SOURCE_LOCATION (fndecl);
4777 /* Resolve callee-copies. This has to be done before processing
4778 the body so that DECL_VALUE_EXPR gets processed correctly. */
4779 parm_stmts = do_parms ? gimplify_parameters () : NULL;
4781 /* Gimplify the function's body. */
4782 gimplify_stmt (body_p);
4783 body = *body_p;
4785 if (!body)
4786 body = alloc_stmt_list ();
4787 else if (TREE_CODE (body) == STATEMENT_LIST)
4789 tree t = expr_only (*body_p);
4790 if (t)
4791 body = t;
4794 /* If there isn't an outer BIND_EXPR, add one. */
4795 if (TREE_CODE (body) != BIND_EXPR)
4797 tree b = build (BIND_EXPR, void_type_node, NULL_TREE,
4798 NULL_TREE, NULL_TREE);
4799 TREE_SIDE_EFFECTS (b) = 1;
4800 append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
4801 body = b;
4804 /* If we had callee-copies statements, insert them at the beginning
4805 of the function. */
4806 if (parm_stmts)
4808 append_to_statement_list_force (BIND_EXPR_BODY (body), &parm_stmts);
4809 BIND_EXPR_BODY (body) = parm_stmts;
4812 /* Unshare again, in case gimplification was sloppy. */
4813 unshare_all_trees (body);
4815 *body_p = body;
4817 pop_gimplify_context (body);
4819 #ifdef ENABLE_CHECKING
4820 walk_tree (body_p, check_pointer_types_r, NULL, NULL);
4821 #endif
4823 timevar_pop (TV_TREE_GIMPLIFY);
4824 input_location = saved_location;
4827 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
4828 node for the function we want to gimplify. */
4830 void
4831 gimplify_function_tree (tree fndecl)
4833 tree oldfn, parm, ret;
4835 oldfn = current_function_decl;
4836 current_function_decl = fndecl;
4837 cfun = DECL_STRUCT_FUNCTION (fndecl);
4838 if (cfun == NULL)
4839 allocate_struct_function (fndecl);
4841 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = TREE_CHAIN (parm))
4843 /* Preliminarily mark non-addressed complex variables as eligible
4844 for promotion to gimple registers. We'll transform their uses
4845 as we find them. */
4846 if (TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
4847 && !TREE_THIS_VOLATILE (parm)
4848 && !needs_to_live_in_memory (parm))
4849 DECL_COMPLEX_GIMPLE_REG_P (parm) = 1;
4852 ret = DECL_RESULT (fndecl);
4853 if (TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
4854 && !needs_to_live_in_memory (ret))
4855 DECL_COMPLEX_GIMPLE_REG_P (ret) = 1;
4857 gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
4859 /* If we're instrumenting function entry/exit, then prepend the call to
4860 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
4861 catch the exit hook. */
4862 /* ??? Add some way to ignore exceptions for this TFE. */
4863 if (flag_instrument_function_entry_exit
4864 && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl))
4866 tree tf, x, bind;
4868 tf = build (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
4869 TREE_SIDE_EFFECTS (tf) = 1;
4870 x = DECL_SAVED_TREE (fndecl);
4871 append_to_statement_list (x, &TREE_OPERAND (tf, 0));
4872 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
4873 x = build_function_call_expr (x, NULL);
4874 append_to_statement_list (x, &TREE_OPERAND (tf, 1));
4876 bind = build (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4877 TREE_SIDE_EFFECTS (bind) = 1;
4878 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
4879 x = build_function_call_expr (x, NULL);
4880 append_to_statement_list (x, &BIND_EXPR_BODY (bind));
4881 append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
4883 DECL_SAVED_TREE (fndecl) = bind;
4886 current_function_decl = oldfn;
4887 cfun = oldfn ? DECL_STRUCT_FUNCTION (oldfn) : NULL;
4891 /* Expands EXPR to list of gimple statements STMTS. If SIMPLE is true,
4892 force the result to be either ssa_name or an invariant, otherwise
4893 just force it to be a rhs expression. If VAR is not NULL, make the
4894 base variable of the final destination be VAR if suitable. */
4896 tree
4897 force_gimple_operand (tree expr, tree *stmts, bool simple, tree var)
4899 tree t;
4900 enum gimplify_status ret;
4901 gimple_predicate gimple_test_f;
4903 *stmts = NULL_TREE;
4905 if (is_gimple_val (expr))
4906 return expr;
4908 gimple_test_f = simple ? is_gimple_val : is_gimple_reg_rhs;
4910 push_gimplify_context ();
4911 gimplify_ctxp->into_ssa = in_ssa_p;
4913 if (var)
4914 expr = build (MODIFY_EXPR, TREE_TYPE (var), var, expr);
4916 ret = gimplify_expr (&expr, stmts, NULL,
4917 gimple_test_f, fb_rvalue);
4918 gcc_assert (ret != GS_ERROR);
4920 if (referenced_vars)
4922 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
4923 add_referenced_tmp_var (t);
4926 pop_gimplify_context (NULL);
4928 return expr;
4931 /* Invokes force_gimple_operand for EXPR with parameters SIMPLE_P and VAR. If
4932 some statements are produced, emits them before BSI. */
4934 tree
4935 force_gimple_operand_bsi (block_stmt_iterator *bsi, tree expr,
4936 bool simple_p, tree var)
4938 tree stmts;
4940 expr = force_gimple_operand (expr, &stmts, simple_p, var);
4941 if (stmts)
4942 bsi_insert_before (bsi, stmts, BSI_SAME_STMT);
4944 return expr;
4947 #include "gt-gimplify.h"