0f610e4d24242542f575533737a3ff66084665dc
[gcc.git] / gcc / gimplify.c
1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
4 Major work done by Sebastian Pop <s.pop@laposte.net>,
5 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to the Free
21 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 02111-1307, USA. */
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "rtl.h"
30 #include "errors.h"
31 #include "varray.h"
32 #include "tree-gimple.h"
33 #include "tree-inline.h"
34 #include "diagnostic.h"
35 #include "langhooks.h"
36 #include "langhooks-def.h"
37 #include "tree-flow.h"
38 #include "cgraph.h"
39 #include "timevar.h"
40 #include "except.h"
41 #include "hashtab.h"
42 #include "flags.h"
43 #include "real.h"
44 #include "function.h"
45 #include "output.h"
46 #include "expr.h"
47 #include "ggc.h"
48 #include "target.h"
49
50 static struct gimplify_ctx
51 {
52 tree current_bind_expr;
53 tree temps;
54 tree conditional_cleanups;
55 tree exit_label;
56 tree return_temp;
57 varray_type 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;
64
65
66 /* Formal (expression) temporary table handling: Multiple occurrences of
67 the same scalar expression are evaluated into the same temporary. */
68
69 typedef struct gimple_temp_hash_elt
70 {
71 tree val; /* Key */
72 tree temp; /* Value */
73 } elt_t;
74
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
80
81
82 /* Return a hash value for a formal temporary table entry. */
83
84 static hashval_t
85 gimple_tree_hash (const void *p)
86 {
87 tree t = ((const elt_t *) p)->val;
88 return iterative_hash_expr (t, 0);
89 }
90
91 /* Compare two formal temporary table entries. */
92
93 static int
94 gimple_tree_eq (const void *p1, const void *p2)
95 {
96 tree t1 = ((const elt_t *) p1)->val;
97 tree t2 = ((const elt_t *) p2)->val;
98 enum tree_code code = TREE_CODE (t1);
99
100 if (TREE_CODE (t2) != code
101 || TREE_TYPE (t1) != TREE_TYPE (t2))
102 return 0;
103
104 if (!operand_equal_p (t1, t2, 0))
105 return 0;
106
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));
110
111 return 1;
112 }
113
114 /* Set up a context for the gimplifier. */
115
116 void
117 push_gimplify_context (void)
118 {
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;
127 }
128
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. */
132
133 void
134 pop_gimplify_context (tree body)
135 {
136 tree t;
137
138 gcc_assert (gimplify_ctxp && !gimplify_ctxp->current_bind_expr);
139
140 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
141 DECL_GIMPLE_FORMAL_TEMP_P (t) = 0;
142
143 if (body)
144 declare_tmp_vars (gimplify_ctxp->temps, body);
145 else
146 record_vars (gimplify_ctxp->temps);
147
148 #if 0
149 if (!quiet_flag && optimize)
150 fprintf (stderr, " collisions: %f ",
151 htab_collisions (gimplify_ctxp->temp_htab));
152 #endif
153
154 if (optimize)
155 htab_delete (gimplify_ctxp->temp_htab);
156 free (gimplify_ctxp);
157 gimplify_ctxp = NULL;
158 }
159
160 void
161 gimple_push_bind_expr (tree bind)
162 {
163 TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr;
164 gimplify_ctxp->current_bind_expr = bind;
165 }
166
167 void
168 gimple_pop_bind_expr (void)
169 {
170 gimplify_ctxp->current_bind_expr
171 = TREE_CHAIN (gimplify_ctxp->current_bind_expr);
172 }
173
174 tree
175 gimple_current_bind_expr (void)
176 {
177 return gimplify_ctxp->current_bind_expr;
178 }
179
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. */
182
183 static bool
184 gimple_conditional_context (void)
185 {
186 return gimplify_ctxp->conditions > 0;
187 }
188
189 /* Note that we've entered a COND_EXPR. */
190
191 static void
192 gimple_push_condition (void)
193 {
194 #ifdef ENABLE_CHECKING
195 if (gimplify_ctxp->conditions == 0)
196 gcc_assert (!gimplify_ctxp->conditional_cleanups);
197 #endif
198 ++(gimplify_ctxp->conditions);
199 }
200
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. */
203
204 static void
205 gimple_pop_condition (tree *pre_p)
206 {
207 int conds = --(gimplify_ctxp->conditions);
208
209 gcc_assert (conds >= 0);
210 if (conds == 0)
211 {
212 append_to_statement_list (gimplify_ctxp->conditional_cleanups, pre_p);
213 gimplify_ctxp->conditional_cleanups = NULL_TREE;
214 }
215 }
216
217 /* A subroutine of append_to_statement_list{,_force}. T is not NULL. */
218
219 static void
220 append_to_statement_list_1 (tree t, tree *list_p)
221 {
222 tree list = *list_p;
223 tree_stmt_iterator i;
224
225 if (!list)
226 {
227 if (t && TREE_CODE (t) == STATEMENT_LIST)
228 {
229 *list_p = t;
230 return;
231 }
232 *list_p = list = alloc_stmt_list ();
233 }
234
235 i = tsi_last (list);
236 tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
237 }
238
239 /* Add T to the end of the list container pointed by LIST_P.
240 If T is an expression with no effects, it is ignored. */
241
242 void
243 append_to_statement_list (tree t, tree *list_p)
244 {
245 if (t && TREE_SIDE_EFFECTS (t))
246 append_to_statement_list_1 (t, list_p);
247 }
248
249 /* Similar, but the statement is always added, regardless of side effects. */
250
251 void
252 append_to_statement_list_force (tree t, tree *list_p)
253 {
254 if (t != NULL_TREE)
255 append_to_statement_list_1 (t, list_p);
256 }
257
258 /* Both gimplify the statement T and append it to LIST_P. */
259
260 void
261 gimplify_and_add (tree t, tree *list_p)
262 {
263 gimplify_stmt (&t);
264 append_to_statement_list (t, list_p);
265 }
266
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".) */
271
272 static inline void
273 remove_suffix (char *name, int len)
274 {
275 int i;
276
277 for (i = 2; i < 8 && len > i; i++)
278 {
279 if (name[len - i] == '.')
280 {
281 name[len - i] = '\0';
282 break;
283 }
284 }
285 }
286
287 /* Create a nameless artificial label and put it in the current function
288 context. Returns the newly created label. */
289
290 tree
291 create_artificial_label (void)
292 {
293 tree lab = build_decl (LABEL_DECL, NULL_TREE, void_type_node);
294
295 DECL_ARTIFICIAL (lab) = 1;
296 DECL_CONTEXT (lab) = current_function_decl;
297 return lab;
298 }
299
300 /* Create a new temporary name with PREFIX. Returns an identifier. */
301
302 static GTY(()) unsigned int tmp_var_id_num;
303
304 tree
305 create_tmp_var_name (const char *prefix)
306 {
307 char *tmp_name;
308
309 if (prefix)
310 {
311 char *preftmp = ASTRDUP (prefix);
312
313 remove_suffix (preftmp, strlen (preftmp));
314 prefix = preftmp;
315 }
316
317 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
318 return get_identifier (tmp_name);
319 }
320
321
322 /* Create a new temporary variable declaration of type TYPE.
323 Does NOT push it into the current binding. */
324
325 tree
326 create_tmp_var_raw (tree type, const char *prefix)
327 {
328 tree tmp_var;
329 tree new_type;
330
331 /* Make the type of the variable writable. */
332 new_type = build_type_variant (type, 0, 0);
333 TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
334
335 tmp_var = build_decl (VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
336 type);
337
338 /* The variable was declared by the compiler. */
339 DECL_ARTIFICIAL (tmp_var) = 1;
340 /* And we don't want debug info for it. */
341 DECL_IGNORED_P (tmp_var) = 1;
342
343 /* Make the variable writable. */
344 TREE_READONLY (tmp_var) = 0;
345
346 DECL_EXTERNAL (tmp_var) = 0;
347 TREE_STATIC (tmp_var) = 0;
348 TREE_USED (tmp_var) = 1;
349
350 return tmp_var;
351 }
352
353 /* Create a new temporary variable declaration of type TYPE. DOES push the
354 variable into the current binding. Further, assume that this is called
355 only from gimplification or optimization, at which point the creation of
356 certain types are bugs. */
357
358 tree
359 create_tmp_var (tree type, const char *prefix)
360 {
361 tree tmp_var;
362
363 /* We don't allow types that are addressable (meaning we can't make copies),
364 incomplete, or of variable size. */
365 gcc_assert (!TREE_ADDRESSABLE (type)
366 && COMPLETE_TYPE_P (type)
367 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST);
368
369 tmp_var = create_tmp_var_raw (type, prefix);
370 gimple_add_tmp_var (tmp_var);
371 return tmp_var;
372 }
373
374 /* Given a tree, try to return a useful variable name that we can use
375 to prefix a temporary that is being assigned the value of the tree.
376 I.E. given <temp> = &A, return A. */
377
378 const char *
379 get_name (tree t)
380 {
381 tree stripped_decl;
382
383 stripped_decl = t;
384 STRIP_NOPS (stripped_decl);
385 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
386 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
387 else
388 {
389 switch (TREE_CODE (stripped_decl))
390 {
391 case ADDR_EXPR:
392 return get_name (TREE_OPERAND (stripped_decl, 0));
393 break;
394 default:
395 return NULL;
396 }
397 }
398 }
399
400 /* Create a temporary with a name derived from VAL. Subroutine of
401 lookup_tmp_var; nobody else should call this function. */
402
403 static inline tree
404 create_tmp_from_val (tree val)
405 {
406 return create_tmp_var (TREE_TYPE (val), get_name (val));
407 }
408
409 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
410 an existing expression temporary. */
411
412 static tree
413 lookup_tmp_var (tree val, bool is_formal)
414 {
415 tree ret;
416
417 /* If not optimizing, never really reuse a temporary. local-alloc
418 won't allocate any variable that is used in more than one basic
419 block, which means it will go into memory, causing much extra
420 work in reload and final and poorer code generation, outweighing
421 the extra memory allocation here. */
422 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
423 ret = create_tmp_from_val (val);
424 else
425 {
426 elt_t elt, *elt_p;
427 void **slot;
428
429 elt.val = val;
430 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
431 if (*slot == NULL)
432 {
433 elt_p = xmalloc (sizeof (*elt_p));
434 elt_p->val = val;
435 elt_p->temp = ret = create_tmp_from_val (val);
436 *slot = (void *) elt_p;
437 }
438 else
439 {
440 elt_p = (elt_t *) *slot;
441 ret = elt_p->temp;
442 }
443 }
444
445 if (is_formal)
446 DECL_GIMPLE_FORMAL_TEMP_P (ret) = 1;
447
448 return ret;
449 }
450
451 /* Returns a formal temporary variable initialized with VAL. PRE_P is as
452 in gimplify_expr. Only use this function if:
453
454 1) The value of the unfactored expression represented by VAL will not
455 change between the initialization and use of the temporary, and
456 2) The temporary will not be otherwise modified.
457
458 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
459 and #2 means it is inappropriate for && temps.
460
461 For other cases, use get_initialized_tmp_var instead. */
462
463 static tree
464 internal_get_tmp_var (tree val, tree *pre_p, tree *post_p, bool is_formal)
465 {
466 tree t, mod;
467
468 gimplify_expr (&val, pre_p, post_p, is_gimple_formal_tmp_rhs, fb_rvalue);
469
470 t = lookup_tmp_var (val, is_formal);
471
472 mod = build (MODIFY_EXPR, TREE_TYPE (t), t, val);
473
474 if (EXPR_HAS_LOCATION (val))
475 SET_EXPR_LOCUS (mod, EXPR_LOCUS (val));
476 else
477 SET_EXPR_LOCATION (mod, input_location);
478
479 /* gimplify_modify_expr might want to reduce this further. */
480 gimplify_and_add (mod, pre_p);
481
482 /* If we're gimplifying into ssa, gimplify_modify_expr will have
483 given our temporary an ssa name. Find and return it. */
484 if (gimplify_ctxp->into_ssa)
485 t = TREE_OPERAND (mod, 0);
486
487 return t;
488 }
489
490 tree
491 get_formal_tmp_var (tree val, tree *pre_p)
492 {
493 return internal_get_tmp_var (val, pre_p, NULL, true);
494 }
495
496 /* Returns a temporary variable initialized with VAL. PRE_P and POST_P
497 are as in gimplify_expr. */
498
499 tree
500 get_initialized_tmp_var (tree val, tree *pre_p, tree *post_p)
501 {
502 return internal_get_tmp_var (val, pre_p, post_p, false);
503 }
504
505 /* Declares all the variables in VARS in SCOPE. */
506
507 void
508 declare_tmp_vars (tree vars, tree scope)
509 {
510 tree last = vars;
511 if (last)
512 {
513 tree temps;
514
515 /* C99 mode puts the default 'return 0;' for main outside the outer
516 braces. So drill down until we find an actual scope. */
517 while (TREE_CODE (scope) == COMPOUND_EXPR)
518 scope = TREE_OPERAND (scope, 0);
519
520 gcc_assert (TREE_CODE (scope) == BIND_EXPR);
521
522 temps = nreverse (last);
523 TREE_CHAIN (last) = BIND_EXPR_VARS (scope);
524 BIND_EXPR_VARS (scope) = temps;
525 }
526 }
527
528 void
529 gimple_add_tmp_var (tree tmp)
530 {
531 gcc_assert (!TREE_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
532
533 DECL_CONTEXT (tmp) = current_function_decl;
534 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
535
536 if (gimplify_ctxp)
537 {
538 TREE_CHAIN (tmp) = gimplify_ctxp->temps;
539 gimplify_ctxp->temps = tmp;
540 }
541 else if (cfun)
542 record_vars (tmp);
543 else
544 declare_tmp_vars (tmp, DECL_SAVED_TREE (current_function_decl));
545 }
546
547 /* Determines whether to assign a locus to the statement STMT. */
548
549 static bool
550 should_carry_locus_p (tree stmt)
551 {
552 /* Don't emit a line note for a label. We particularly don't want to
553 emit one for the break label, since it doesn't actually correspond
554 to the beginning of the loop/switch. */
555 if (TREE_CODE (stmt) == LABEL_EXPR)
556 return false;
557
558 /* Do not annotate empty statements, since it confuses gcov. */
559 if (!TREE_SIDE_EFFECTS (stmt))
560 return false;
561
562 return true;
563 }
564
565 static void
566 annotate_one_with_locus (tree t, location_t locus)
567 {
568 if (EXPR_P (t) && ! EXPR_HAS_LOCATION (t) && should_carry_locus_p (t))
569 SET_EXPR_LOCATION (t, locus);
570 }
571
572 void
573 annotate_all_with_locus (tree *stmt_p, location_t locus)
574 {
575 tree_stmt_iterator i;
576
577 if (!*stmt_p)
578 return;
579
580 for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
581 {
582 tree t = tsi_stmt (i);
583
584 /* Assuming we've already been gimplified, we shouldn't
585 see nested chaining constructs anymore. */
586 gcc_assert (TREE_CODE (t) != STATEMENT_LIST
587 && TREE_CODE (t) != COMPOUND_EXPR);
588
589 annotate_one_with_locus (t, locus);
590 }
591 }
592
593 /* Similar to copy_tree_r() but do not copy SAVE_EXPR or TARGET_EXPR nodes.
594 These nodes model computations that should only be done once. If we
595 were to unshare something like SAVE_EXPR(i++), the gimplification
596 process would create wrong code. */
597
598 static tree
599 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
600 {
601 enum tree_code code = TREE_CODE (*tp);
602 /* Don't unshare types, decls, constants and SAVE_EXPR nodes. */
603 if (TREE_CODE_CLASS (code) == tcc_type
604 || TREE_CODE_CLASS (code) == tcc_declaration
605 || TREE_CODE_CLASS (code) == tcc_constant
606 || code == SAVE_EXPR || code == TARGET_EXPR
607 /* We can't do anything sensible with a BLOCK used as an expression,
608 but we also can't abort when we see it because of non-expression
609 uses. So just avert our eyes and cross our fingers. Silly Java. */
610 || code == BLOCK)
611 *walk_subtrees = 0;
612 else
613 {
614 gcc_assert (code != BIND_EXPR);
615 copy_tree_r (tp, walk_subtrees, data);
616 }
617
618 return NULL_TREE;
619 }
620
621 /* Callback for walk_tree to unshare most of the shared trees rooted at
622 *TP. If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
623 then *TP is deep copied by calling copy_tree_r.
624
625 This unshares the same trees as copy_tree_r with the exception of
626 SAVE_EXPR nodes. These nodes model computations that should only be
627 done once. If we were to unshare something like SAVE_EXPR(i++), the
628 gimplification process would create wrong code. */
629
630 static tree
631 copy_if_shared_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
632 void *data ATTRIBUTE_UNUSED)
633 {
634 tree t = *tp;
635 enum tree_code code = TREE_CODE (t);
636
637 /* Skip types, decls, and constants. But we do want to look at their
638 types and the bounds of types. Mark them as visited so we properly
639 unmark their subtrees on the unmark pass. If we've already seen them,
640 don't look down further. */
641 if (TREE_CODE_CLASS (code) == tcc_type
642 || TREE_CODE_CLASS (code) == tcc_declaration
643 || TREE_CODE_CLASS (code) == tcc_constant)
644 {
645 if (TREE_VISITED (t))
646 *walk_subtrees = 0;
647 else
648 TREE_VISITED (t) = 1;
649 }
650
651 /* If this node has been visited already, unshare it and don't look
652 any deeper. */
653 else if (TREE_VISITED (t))
654 {
655 walk_tree (tp, mostly_copy_tree_r, NULL, NULL);
656 *walk_subtrees = 0;
657 }
658
659 /* Otherwise, mark the tree as visited and keep looking. */
660 else
661 TREE_VISITED (t) = 1;
662
663 return NULL_TREE;
664 }
665
666 static tree
667 unmark_visited_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
668 void *data ATTRIBUTE_UNUSED)
669 {
670 if (TREE_VISITED (*tp))
671 TREE_VISITED (*tp) = 0;
672 else
673 *walk_subtrees = 0;
674
675 return NULL_TREE;
676 }
677
678 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
679 bodies of any nested functions if we are unsharing the entire body of
680 FNDECL. */
681
682 static void
683 unshare_body (tree *body_p, tree fndecl)
684 {
685 struct cgraph_node *cgn = cgraph_node (fndecl);
686
687 walk_tree (body_p, copy_if_shared_r, NULL, NULL);
688 if (body_p == &DECL_SAVED_TREE (fndecl))
689 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
690 unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
691 }
692
693 /* Likewise, but mark all trees as not visited. */
694
695 static void
696 unvisit_body (tree *body_p, tree fndecl)
697 {
698 struct cgraph_node *cgn = cgraph_node (fndecl);
699
700 walk_tree (body_p, unmark_visited_r, NULL, NULL);
701 if (body_p == &DECL_SAVED_TREE (fndecl))
702 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
703 unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
704 }
705
706 /* Unshare T and all the trees reached from T via TREE_CHAIN. */
707
708 void
709 unshare_all_trees (tree t)
710 {
711 walk_tree (&t, copy_if_shared_r, NULL, NULL);
712 walk_tree (&t, unmark_visited_r, NULL, NULL);
713 }
714
715 /* Unconditionally make an unshared copy of EXPR. This is used when using
716 stored expressions which span multiple functions, such as BINFO_VTABLE,
717 as the normal unsharing process can't tell that they're shared. */
718
719 tree
720 unshare_expr (tree expr)
721 {
722 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
723 return expr;
724 }
725
726 /* A terser interface for building a representation of an exception
727 specification. */
728
729 tree
730 gimple_build_eh_filter (tree body, tree allowed, tree failure)
731 {
732 tree t;
733
734 /* FIXME should the allowed types go in TREE_TYPE? */
735 t = build (EH_FILTER_EXPR, void_type_node, allowed, NULL_TREE);
736 append_to_statement_list (failure, &EH_FILTER_FAILURE (t));
737
738 t = build (TRY_CATCH_EXPR, void_type_node, NULL_TREE, t);
739 append_to_statement_list (body, &TREE_OPERAND (t, 0));
740
741 return t;
742 }
743
744 \f
745 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
746 contain statements and have a value. Assign its value to a temporary
747 and give it void_type_node. Returns the temporary, or NULL_TREE if
748 WRAPPER was already void. */
749
750 tree
751 voidify_wrapper_expr (tree wrapper, tree temp)
752 {
753 if (!VOID_TYPE_P (TREE_TYPE (wrapper)))
754 {
755 tree *p, sub = wrapper;
756
757 restart:
758 /* Set p to point to the body of the wrapper. */
759 switch (TREE_CODE (sub))
760 {
761 case BIND_EXPR:
762 /* For a BIND_EXPR, the body is operand 1. */
763 p = &BIND_EXPR_BODY (sub);
764 break;
765
766 default:
767 p = &TREE_OPERAND (sub, 0);
768 break;
769 }
770
771 /* Advance to the last statement. Set all container types to void. */
772 if (TREE_CODE (*p) == STATEMENT_LIST)
773 {
774 tree_stmt_iterator i = tsi_last (*p);
775 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
776 }
777 else
778 {
779 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
780 {
781 TREE_SIDE_EFFECTS (*p) = 1;
782 TREE_TYPE (*p) = void_type_node;
783 }
784 }
785
786 if (p == NULL || IS_EMPTY_STMT (*p))
787 ;
788 /* Look through exception handling. */
789 else if (TREE_CODE (*p) == TRY_FINALLY_EXPR
790 || TREE_CODE (*p) == TRY_CATCH_EXPR)
791 {
792 sub = *p;
793 goto restart;
794 }
795 /* The C++ frontend already did this for us. */
796 else if (TREE_CODE (*p) == INIT_EXPR
797 || TREE_CODE (*p) == TARGET_EXPR)
798 temp = TREE_OPERAND (*p, 0);
799 /* If we're returning a dereference, move the dereference
800 outside the wrapper. */
801 else if (TREE_CODE (*p) == INDIRECT_REF)
802 {
803 tree ptr = TREE_OPERAND (*p, 0);
804 temp = create_tmp_var (TREE_TYPE (ptr), "retval");
805 *p = build (MODIFY_EXPR, TREE_TYPE (ptr), temp, ptr);
806 temp = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (temp)), temp);
807 /* If this is a BIND_EXPR for a const inline function, it might not
808 have TREE_SIDE_EFFECTS set. That is no longer accurate. */
809 TREE_SIDE_EFFECTS (wrapper) = 1;
810 }
811 else
812 {
813 if (!temp)
814 temp = create_tmp_var (TREE_TYPE (wrapper), "retval");
815 *p = build (MODIFY_EXPR, TREE_TYPE (temp), temp, *p);
816 TREE_SIDE_EFFECTS (wrapper) = 1;
817 }
818
819 TREE_TYPE (wrapper) = void_type_node;
820 return temp;
821 }
822
823 return NULL_TREE;
824 }
825
826 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
827 a temporary through which they communicate. */
828
829 static void
830 build_stack_save_restore (tree *save, tree *restore)
831 {
832 tree save_call, tmp_var;
833
834 save_call =
835 build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_SAVE],
836 NULL_TREE);
837 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
838
839 *save = build (MODIFY_EXPR, ptr_type_node, tmp_var, save_call);
840 *restore =
841 build_function_call_expr (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
842 tree_cons (NULL_TREE, tmp_var, NULL_TREE));
843 }
844
845 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
846
847 static enum gimplify_status
848 gimplify_bind_expr (tree *expr_p, tree temp, tree *pre_p)
849 {
850 tree bind_expr = *expr_p;
851 bool old_save_stack = gimplify_ctxp->save_stack;
852 tree t;
853
854 temp = voidify_wrapper_expr (bind_expr, temp);
855
856 /* Mark variables seen in this bind expr. */
857 for (t = BIND_EXPR_VARS (bind_expr); t ; t = TREE_CHAIN (t))
858 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
859
860 gimple_push_bind_expr (bind_expr);
861 gimplify_ctxp->save_stack = false;
862
863 gimplify_to_stmt_list (&BIND_EXPR_BODY (bind_expr));
864
865 if (gimplify_ctxp->save_stack)
866 {
867 tree stack_save, stack_restore;
868
869 /* Save stack on entry and restore it on exit. Add a try_finally
870 block to achieve this. Note that mudflap depends on the
871 format of the emitted code: see mx_register_decls(). */
872 build_stack_save_restore (&stack_save, &stack_restore);
873
874 t = build (TRY_FINALLY_EXPR, void_type_node,
875 BIND_EXPR_BODY (bind_expr), NULL_TREE);
876 append_to_statement_list (stack_restore, &TREE_OPERAND (t, 1));
877
878 BIND_EXPR_BODY (bind_expr) = NULL_TREE;
879 append_to_statement_list (stack_save, &BIND_EXPR_BODY (bind_expr));
880 append_to_statement_list (t, &BIND_EXPR_BODY (bind_expr));
881 }
882
883 gimplify_ctxp->save_stack = old_save_stack;
884 gimple_pop_bind_expr ();
885
886 if (temp)
887 {
888 *expr_p = temp;
889 append_to_statement_list (bind_expr, pre_p);
890 return GS_OK;
891 }
892 else
893 return GS_ALL_DONE;
894 }
895
896 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
897 GIMPLE value, it is assigned to a new temporary and the statement is
898 re-written to return the temporary.
899
900 PRE_P points to the list where side effects that must happen before
901 STMT should be stored. */
902
903 static enum gimplify_status
904 gimplify_return_expr (tree stmt, tree *pre_p)
905 {
906 tree ret_expr = TREE_OPERAND (stmt, 0);
907 tree result_decl, result;
908
909 if (!ret_expr || TREE_CODE (ret_expr) == RESULT_DECL
910 || ret_expr == error_mark_node)
911 return GS_ALL_DONE;
912
913 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
914 result_decl = NULL_TREE;
915 else
916 {
917 result_decl = TREE_OPERAND (ret_expr, 0);
918 if (TREE_CODE (result_decl) == INDIRECT_REF)
919 /* See through a return by reference. */
920 result_decl = TREE_OPERAND (result_decl, 0);
921
922 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
923 || TREE_CODE (ret_expr) == INIT_EXPR)
924 && TREE_CODE (result_decl) == RESULT_DECL);
925 }
926
927 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
928 Recall that aggregate_value_p is FALSE for any aggregate type that is
929 returned in registers. If we're returning values in registers, then
930 we don't want to extend the lifetime of the RESULT_DECL, particularly
931 across another call. In addition, for those aggregates for which
932 hard_function_value generates a PARALLEL, we'll abort during normal
933 expansion of structure assignments; there's special code in expand_return
934 to handle this case that does not exist in expand_expr. */
935 if (!result_decl
936 || aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
937 result = result_decl;
938 else if (gimplify_ctxp->return_temp)
939 result = gimplify_ctxp->return_temp;
940 else
941 {
942 result = create_tmp_var (TREE_TYPE (result_decl), NULL);
943
944 /* ??? With complex control flow (usually involving abnormal edges),
945 we can wind up warning about an uninitialized value for this. Due
946 to how this variable is constructed and initialized, this is never
947 true. Give up and never warn. */
948 TREE_NO_WARNING (result) = 1;
949
950 gimplify_ctxp->return_temp = result;
951 }
952
953 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
954 Then gimplify the whole thing. */
955 if (result != result_decl)
956 TREE_OPERAND (ret_expr, 0) = result;
957
958 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
959
960 /* If we didn't use a temporary, then the result is just the result_decl.
961 Otherwise we need a simple copy. This should already be gimple. */
962 if (result == result_decl)
963 ret_expr = result;
964 else
965 ret_expr = build (MODIFY_EXPR, TREE_TYPE (result), result_decl, result);
966 TREE_OPERAND (stmt, 0) = ret_expr;
967
968 return GS_ALL_DONE;
969 }
970
971 /* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
972 and initialization explicit. */
973
974 static enum gimplify_status
975 gimplify_decl_expr (tree *stmt_p)
976 {
977 tree stmt = *stmt_p;
978 tree decl = DECL_EXPR_DECL (stmt);
979
980 *stmt_p = NULL_TREE;
981
982 if (TREE_TYPE (decl) == error_mark_node)
983 return GS_ERROR;
984
985 else if (TREE_CODE (decl) == TYPE_DECL)
986 gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
987
988 else if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
989 {
990 tree init = DECL_INITIAL (decl);
991
992 if (!TREE_CONSTANT (DECL_SIZE (decl)))
993 {
994 /* This is a variable-sized decl. Simplify its size and mark it
995 for deferred expansion. Note that mudflap depends on the format
996 of the emitted code: see mx_register_decls(). */
997 tree t, args, addr, ptr_type;
998
999 /* ??? We really shouldn't need to gimplify the type of the variable
1000 since it already should have been done. But leave this here
1001 for now to avoid disrupting too many things at once. */
1002 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1003 gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1004
1005 gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p);
1006 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1007
1008 /* All occurrences of this decl in final gimplified code will be
1009 replaced by indirection. Setting DECL_VALUE_EXPR does two
1010 things: First, it lets the rest of the gimplifier know what
1011 replacement to use. Second, it lets the debug info know
1012 where to find the value. */
1013 ptr_type = build_pointer_type (TREE_TYPE (decl));
1014 addr = create_tmp_var (ptr_type, get_name (decl));
1015 DECL_IGNORED_P (addr) = 0;
1016 t = build_fold_indirect_ref (addr);
1017 DECL_VALUE_EXPR (decl) = t;
1018
1019 args = tree_cons (NULL, DECL_SIZE_UNIT (decl), NULL);
1020 t = built_in_decls[BUILT_IN_ALLOCA];
1021 t = build_function_call_expr (t, args);
1022 t = fold_convert (ptr_type, t);
1023 t = build2 (MODIFY_EXPR, void_type_node, addr, t);
1024
1025 gimplify_and_add (t, stmt_p);
1026
1027 /* Indicate that we need to restore the stack level when the
1028 enclosing BIND_EXPR is exited. */
1029 gimplify_ctxp->save_stack = true;
1030 }
1031
1032 if (init && init != error_mark_node)
1033 {
1034 if (!TREE_STATIC (decl))
1035 {
1036 DECL_INITIAL (decl) = NULL_TREE;
1037 init = build (MODIFY_EXPR, void_type_node, decl, init);
1038 gimplify_and_add (init, stmt_p);
1039 }
1040 else
1041 /* We must still examine initializers for static variables
1042 as they may contain a label address. */
1043 walk_tree (&init, force_labels_r, NULL, NULL);
1044 }
1045
1046 /* This decl isn't mentioned in the enclosing block, so add it to the
1047 list of temps. FIXME it seems a bit of a kludge to say that
1048 anonymous artificial vars aren't pushed, but everything else is. */
1049 if (DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1050 gimple_add_tmp_var (decl);
1051 }
1052
1053 return GS_ALL_DONE;
1054 }
1055
1056 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1057 and replacing the LOOP_EXPR with goto, but if the loop contains an
1058 EXIT_EXPR, we need to append a label for it to jump to. */
1059
1060 static enum gimplify_status
1061 gimplify_loop_expr (tree *expr_p, tree *pre_p)
1062 {
1063 tree saved_label = gimplify_ctxp->exit_label;
1064 tree start_label = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
1065 tree jump_stmt = build_and_jump (&LABEL_EXPR_LABEL (start_label));
1066
1067 append_to_statement_list (start_label, pre_p);
1068
1069 gimplify_ctxp->exit_label = NULL_TREE;
1070
1071 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1072
1073 if (gimplify_ctxp->exit_label)
1074 {
1075 append_to_statement_list (jump_stmt, pre_p);
1076 *expr_p = build1 (LABEL_EXPR, void_type_node, gimplify_ctxp->exit_label);
1077 }
1078 else
1079 *expr_p = jump_stmt;
1080
1081 gimplify_ctxp->exit_label = saved_label;
1082
1083 return GS_ALL_DONE;
1084 }
1085
1086 /* Compare two case labels. Because the front end should already have
1087 made sure that case ranges do not overlap, it is enough to only compare
1088 the CASE_LOW values of each case label. */
1089
1090 static int
1091 compare_case_labels (const void *p1, const void *p2)
1092 {
1093 tree case1 = *(tree *)p1;
1094 tree case2 = *(tree *)p2;
1095
1096 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1097 }
1098
1099 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1100
1101 void
1102 sort_case_labels (tree label_vec)
1103 {
1104 size_t len = TREE_VEC_LENGTH (label_vec);
1105 tree default_case = TREE_VEC_ELT (label_vec, len - 1);
1106
1107 if (CASE_LOW (default_case))
1108 {
1109 size_t i;
1110
1111 /* The last label in the vector should be the default case
1112 but it is not. */
1113 for (i = 0; i < len; ++i)
1114 {
1115 tree t = TREE_VEC_ELT (label_vec, i);
1116 if (!CASE_LOW (t))
1117 {
1118 default_case = t;
1119 TREE_VEC_ELT (label_vec, i) = TREE_VEC_ELT (label_vec, len - 1);
1120 TREE_VEC_ELT (label_vec, len - 1) = default_case;
1121 break;
1122 }
1123 }
1124 }
1125
1126 qsort (&TREE_VEC_ELT (label_vec, 0), len - 1, sizeof (tree),
1127 compare_case_labels);
1128 }
1129
1130 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1131 branch to. */
1132
1133 static enum gimplify_status
1134 gimplify_switch_expr (tree *expr_p, tree *pre_p)
1135 {
1136 tree switch_expr = *expr_p;
1137 enum gimplify_status ret;
1138
1139 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL,
1140 is_gimple_val, fb_rvalue);
1141
1142 if (SWITCH_BODY (switch_expr))
1143 {
1144 varray_type labels, saved_labels;
1145 tree label_vec, default_case = NULL_TREE;
1146 size_t i, len;
1147
1148 /* If someone can be bothered to fill in the labels, they can
1149 be bothered to null out the body too. */
1150 gcc_assert (!SWITCH_LABELS (switch_expr));
1151
1152 saved_labels = gimplify_ctxp->case_labels;
1153 VARRAY_TREE_INIT (gimplify_ctxp->case_labels, 8, "case_labels");
1154
1155 gimplify_to_stmt_list (&SWITCH_BODY (switch_expr));
1156
1157 labels = gimplify_ctxp->case_labels;
1158 gimplify_ctxp->case_labels = saved_labels;
1159
1160 len = VARRAY_ACTIVE_SIZE (labels);
1161
1162 for (i = 0; i < len; ++i)
1163 {
1164 tree t = VARRAY_TREE (labels, i);
1165 if (!CASE_LOW (t))
1166 {
1167 /* The default case must be the last label in the list. */
1168 default_case = t;
1169 VARRAY_TREE (labels, i) = VARRAY_TREE (labels, len - 1);
1170 len--;
1171 break;
1172 }
1173 }
1174
1175 label_vec = make_tree_vec (len + 1);
1176 SWITCH_LABELS (*expr_p) = label_vec;
1177 append_to_statement_list (switch_expr, pre_p);
1178
1179 if (! default_case)
1180 {
1181 /* If the switch has no default label, add one, so that we jump
1182 around the switch body. */
1183 default_case = build (CASE_LABEL_EXPR, void_type_node, NULL_TREE,
1184 NULL_TREE, create_artificial_label ());
1185 append_to_statement_list (SWITCH_BODY (switch_expr), pre_p);
1186 *expr_p = build (LABEL_EXPR, void_type_node,
1187 CASE_LABEL (default_case));
1188 }
1189 else
1190 *expr_p = SWITCH_BODY (switch_expr);
1191
1192 for (i = 0; i < len; ++i)
1193 TREE_VEC_ELT (label_vec, i) = VARRAY_TREE (labels, i);
1194 TREE_VEC_ELT (label_vec, len) = default_case;
1195
1196 sort_case_labels (label_vec);
1197
1198 SWITCH_BODY (switch_expr) = NULL;
1199 }
1200 else
1201 gcc_assert (SWITCH_LABELS (switch_expr));
1202
1203 return ret;
1204 }
1205
1206 static enum gimplify_status
1207 gimplify_case_label_expr (tree *expr_p)
1208 {
1209 tree expr = *expr_p;
1210
1211 gcc_assert (gimplify_ctxp->case_labels);
1212 VARRAY_PUSH_TREE (gimplify_ctxp->case_labels, expr);
1213 *expr_p = build (LABEL_EXPR, void_type_node, CASE_LABEL (expr));
1214 return GS_ALL_DONE;
1215 }
1216
1217 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1218 if necessary. */
1219
1220 tree
1221 build_and_jump (tree *label_p)
1222 {
1223 if (label_p == NULL)
1224 /* If there's nowhere to jump, just fall through. */
1225 return NULL_TREE;
1226
1227 if (*label_p == NULL_TREE)
1228 {
1229 tree label = create_artificial_label ();
1230 *label_p = label;
1231 }
1232
1233 return build1 (GOTO_EXPR, void_type_node, *label_p);
1234 }
1235
1236 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1237 This also involves building a label to jump to and communicating it to
1238 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1239
1240 static enum gimplify_status
1241 gimplify_exit_expr (tree *expr_p)
1242 {
1243 tree cond = TREE_OPERAND (*expr_p, 0);
1244 tree expr;
1245
1246 expr = build_and_jump (&gimplify_ctxp->exit_label);
1247 expr = build (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1248 *expr_p = expr;
1249
1250 return GS_OK;
1251 }
1252
1253 /* A helper function to be called via walk_tree. Mark all labels under *TP
1254 as being forced. To be called for DECL_INITIAL of static variables. */
1255
1256 tree
1257 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1258 {
1259 if (TYPE_P (*tp))
1260 *walk_subtrees = 0;
1261 if (TREE_CODE (*tp) == LABEL_DECL)
1262 FORCED_LABEL (*tp) = 1;
1263
1264 return NULL_TREE;
1265 }
1266
1267 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1268 different from its canonical type, wrap the whole thing inside a
1269 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1270 type.
1271
1272 The canonical type of a COMPONENT_REF is the type of the field being
1273 referenced--unless the field is a bit-field which can be read directly
1274 in a smaller mode, in which case the canonical type is the
1275 sign-appropriate type corresponding to that mode. */
1276
1277 static void
1278 canonicalize_component_ref (tree *expr_p)
1279 {
1280 tree expr = *expr_p;
1281 tree type;
1282
1283 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1284
1285 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1286 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1287 else
1288 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1289
1290 if (TREE_TYPE (expr) != type)
1291 {
1292 tree old_type = TREE_TYPE (expr);
1293
1294 /* Set the type of the COMPONENT_REF to the underlying type. */
1295 TREE_TYPE (expr) = type;
1296
1297 /* And wrap the whole thing inside a NOP_EXPR. */
1298 expr = build1 (NOP_EXPR, old_type, expr);
1299
1300 *expr_p = expr;
1301 }
1302 }
1303
1304 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1305 to foo, embed that change in the ADDR_EXPR by converting
1306 T array[U];
1307 (T *)&array
1308 ==>
1309 &array[L]
1310 where L is the lower bound. For simplicity, only do this for constant
1311 lower bound. */
1312
1313 static void
1314 canonicalize_addr_expr (tree *expr_p)
1315 {
1316 tree expr = *expr_p;
1317 tree ctype = TREE_TYPE (expr);
1318 tree addr_expr = TREE_OPERAND (expr, 0);
1319 tree atype = TREE_TYPE (addr_expr);
1320 tree dctype, datype, ddatype, otype, obj_expr;
1321
1322 /* Both cast and addr_expr types should be pointers. */
1323 if (!POINTER_TYPE_P (ctype) || !POINTER_TYPE_P (atype))
1324 return;
1325
1326 /* The addr_expr type should be a pointer to an array. */
1327 datype = TREE_TYPE (atype);
1328 if (TREE_CODE (datype) != ARRAY_TYPE)
1329 return;
1330
1331 /* Both cast and addr_expr types should address the same object type. */
1332 dctype = TREE_TYPE (ctype);
1333 ddatype = TREE_TYPE (datype);
1334 if (!lang_hooks.types_compatible_p (ddatype, dctype))
1335 return;
1336
1337 /* The addr_expr and the object type should match. */
1338 obj_expr = TREE_OPERAND (addr_expr, 0);
1339 otype = TREE_TYPE (obj_expr);
1340 if (!lang_hooks.types_compatible_p (otype, datype))
1341 return;
1342
1343 /* The lower bound and element sizes must be constant. */
1344 if (!TYPE_SIZE_UNIT (dctype)
1345 || TREE_CODE (TYPE_SIZE_UNIT (dctype)) != INTEGER_CST
1346 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1347 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1348 return;
1349
1350 /* All checks succeeded. Build a new node to merge the cast. */
1351 *expr_p = build4 (ARRAY_REF, dctype, obj_expr,
1352 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1353 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1354 size_binop (EXACT_DIV_EXPR, TYPE_SIZE_UNIT (dctype),
1355 size_int (TYPE_ALIGN_UNIT (dctype))));
1356 *expr_p = build1 (ADDR_EXPR, ctype, *expr_p);
1357 }
1358
1359 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1360 underneath as appropriate. */
1361
1362 static enum gimplify_status
1363 gimplify_conversion (tree *expr_p)
1364 {
1365 gcc_assert (TREE_CODE (*expr_p) == NOP_EXPR
1366 || TREE_CODE (*expr_p) == CONVERT_EXPR);
1367
1368 /* Then strip away all but the outermost conversion. */
1369 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1370
1371 /* And remove the outermost conversion if it's useless. */
1372 if (tree_ssa_useless_type_conversion (*expr_p))
1373 *expr_p = TREE_OPERAND (*expr_p, 0);
1374
1375 /* If we still have a conversion at the toplevel,
1376 then canonicalize some constructs. */
1377 if (TREE_CODE (*expr_p) == NOP_EXPR || TREE_CODE (*expr_p) == CONVERT_EXPR)
1378 {
1379 tree sub = TREE_OPERAND (*expr_p, 0);
1380
1381 /* If a NOP conversion is changing the type of a COMPONENT_REF
1382 expression, then canonicalize its type now in order to expose more
1383 redundant conversions. */
1384 if (TREE_CODE (sub) == COMPONENT_REF)
1385 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1386
1387 /* If a NOP conversion is changing a pointer to array of foo
1388 to a pointer to foo, embed that change in the ADDR_EXPR. */
1389 else if (TREE_CODE (sub) == ADDR_EXPR)
1390 canonicalize_addr_expr (expr_p);
1391 }
1392
1393 return GS_OK;
1394 }
1395
1396 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1397 node pointed by EXPR_P.
1398
1399 compound_lval
1400 : min_lval '[' val ']'
1401 | min_lval '.' ID
1402 | compound_lval '[' val ']'
1403 | compound_lval '.' ID
1404
1405 This is not part of the original SIMPLE definition, which separates
1406 array and member references, but it seems reasonable to handle them
1407 together. Also, this way we don't run into problems with union
1408 aliasing; gcc requires that for accesses through a union to alias, the
1409 union reference must be explicit, which was not always the case when we
1410 were splitting up array and member refs.
1411
1412 PRE_P points to the list where side effects that must happen before
1413 *EXPR_P should be stored.
1414
1415 POST_P points to the list where side effects that must happen after
1416 *EXPR_P should be stored. */
1417
1418 static enum gimplify_status
1419 gimplify_compound_lval (tree *expr_p, tree *pre_p,
1420 tree *post_p, fallback_t fallback)
1421 {
1422 tree *p;
1423 varray_type stack;
1424 enum gimplify_status ret = GS_OK, tret;
1425 int i;
1426
1427 /* Create a stack of the subexpressions so later we can walk them in
1428 order from inner to outer.
1429
1430 This array is very memory consuming. Don't even think of making
1431 it VARRAY_TREE. */
1432 VARRAY_GENERIC_PTR_NOGC_INIT (stack, 10, "stack");
1433
1434 /* We can handle anything that get_inner_reference can deal with. */
1435 for (p = expr_p; handled_component_p (*p); p = &TREE_OPERAND (*p, 0))
1436 VARRAY_PUSH_GENERIC_PTR_NOGC (stack, *p);
1437
1438 gcc_assert (VARRAY_ACTIVE_SIZE (stack));
1439
1440 /* Now STACK is a stack of pointers to all the refs we've walked through
1441 and P points to the innermost expression.
1442
1443 Java requires that we elaborated nodes in source order. That
1444 means we must gimplify the inner expression followed by each of
1445 the indices, in order. But we can't gimplify the inner
1446 expression until we deal with any variable bounds, sizes, or
1447 positions in order to deal with PLACEHOLDER_EXPRs.
1448
1449 So we do this in three steps. First we deal with the annotations
1450 for any variables in the components, then we gimplify the base,
1451 then we gimplify any indices, from left to right. */
1452 for (i = VARRAY_ACTIVE_SIZE (stack) - 1; i >= 0; i--)
1453 {
1454 tree t = VARRAY_GENERIC_PTR_NOGC (stack, i);
1455
1456 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1457 {
1458 /* Gimplify the low bound and element type size and put them into
1459 the ARRAY_REF. If these values are set, they have already been
1460 gimplified. */
1461 if (!TREE_OPERAND (t, 2))
1462 {
1463 tree low = unshare_expr (array_ref_low_bound (t));
1464 if (!is_gimple_min_invariant (low))
1465 {
1466 TREE_OPERAND (t, 2) = low;
1467 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1468 is_gimple_formal_tmp_reg, fb_rvalue);
1469 ret = MIN (ret, tret);
1470 }
1471 }
1472
1473 if (!TREE_OPERAND (t, 3))
1474 {
1475 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
1476 tree elmt_size = unshare_expr (array_ref_element_size (t));
1477 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
1478
1479 /* Divide the element size by the alignment of the element
1480 type (above). */
1481 elmt_size = size_binop (EXACT_DIV_EXPR, elmt_size, factor);
1482
1483 if (!is_gimple_min_invariant (elmt_size))
1484 {
1485 TREE_OPERAND (t, 3) = elmt_size;
1486 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
1487 is_gimple_formal_tmp_reg, fb_rvalue);
1488 ret = MIN (ret, tret);
1489 }
1490 }
1491 }
1492 else if (TREE_CODE (t) == COMPONENT_REF)
1493 {
1494 /* Set the field offset into T and gimplify it. */
1495 if (!TREE_OPERAND (t, 2))
1496 {
1497 tree offset = unshare_expr (component_ref_field_offset (t));
1498 tree field = TREE_OPERAND (t, 1);
1499 tree factor
1500 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
1501
1502 /* Divide the offset by its alignment. */
1503 offset = size_binop (EXACT_DIV_EXPR, offset, factor);
1504
1505 if (!is_gimple_min_invariant (offset))
1506 {
1507 TREE_OPERAND (t, 2) = offset;
1508 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1509 is_gimple_formal_tmp_reg, fb_rvalue);
1510 ret = MIN (ret, tret);
1511 }
1512 }
1513 }
1514 }
1515
1516 /* Step 2 is to gimplify the base expression. */
1517 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1518 ret = MIN (ret, tret);
1519
1520 /* And finally, the indices and operands to BIT_FIELD_REF. During this
1521 loop we also remove any useless conversions. */
1522 for (; VARRAY_ACTIVE_SIZE (stack) > 0; )
1523 {
1524 tree t = VARRAY_TOP_TREE (stack);
1525
1526 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1527 {
1528 /* Gimplify the dimension.
1529 Temporary fix for gcc.c-torture/execute/20040313-1.c.
1530 Gimplify non-constant array indices into a temporary
1531 variable.
1532 FIXME - The real fix is to gimplify post-modify
1533 expressions into a minimal gimple lvalue. However, that
1534 exposes bugs in alias analysis. The alias analyzer does
1535 not handle &PTR->FIELD very well. Will fix after the
1536 branch is merged into mainline (dnovillo 2004-05-03). */
1537 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
1538 {
1539 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1540 is_gimple_formal_tmp_reg, fb_rvalue);
1541 ret = MIN (ret, tret);
1542 }
1543 }
1544 else if (TREE_CODE (t) == BIT_FIELD_REF)
1545 {
1546 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
1547 is_gimple_val, fb_rvalue);
1548 ret = MIN (ret, tret);
1549 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
1550 is_gimple_val, fb_rvalue);
1551 ret = MIN (ret, tret);
1552 }
1553
1554 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
1555
1556 /* The innermost expression P may have originally had TREE_SIDE_EFFECTS
1557 set which would have caused all the outer expressions in EXPR_P
1558 leading to P to also have had TREE_SIDE_EFFECTS set. */
1559 recalculate_side_effects (t);
1560 VARRAY_POP (stack);
1561 }
1562
1563 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval, fallback);
1564 ret = MIN (ret, tret);
1565
1566 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
1567 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
1568 {
1569 canonicalize_component_ref (expr_p);
1570 ret = MIN (ret, GS_OK);
1571 }
1572
1573 VARRAY_FREE (stack);
1574
1575 return ret;
1576 }
1577
1578 /* Gimplify the self modifying expression pointed by EXPR_P (++, --, +=, -=).
1579
1580 PRE_P points to the list where side effects that must happen before
1581 *EXPR_P should be stored.
1582
1583 POST_P points to the list where side effects that must happen after
1584 *EXPR_P should be stored.
1585
1586 WANT_VALUE is nonzero iff we want to use the value of this expression
1587 in another expression. */
1588
1589 static enum gimplify_status
1590 gimplify_self_mod_expr (tree *expr_p, tree *pre_p, tree *post_p,
1591 bool want_value)
1592 {
1593 enum tree_code code;
1594 tree lhs, lvalue, rhs, t1;
1595 bool postfix;
1596 enum tree_code arith_code;
1597 enum gimplify_status ret;
1598
1599 code = TREE_CODE (*expr_p);
1600
1601 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
1602 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
1603
1604 /* Prefix or postfix? */
1605 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
1606 /* Faster to treat as prefix if result is not used. */
1607 postfix = want_value;
1608 else
1609 postfix = false;
1610
1611 /* Add or subtract? */
1612 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
1613 arith_code = PLUS_EXPR;
1614 else
1615 arith_code = MINUS_EXPR;
1616
1617 /* Gimplify the LHS into a GIMPLE lvalue. */
1618 lvalue = TREE_OPERAND (*expr_p, 0);
1619 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1620 if (ret == GS_ERROR)
1621 return ret;
1622
1623 /* Extract the operands to the arithmetic operation. */
1624 lhs = lvalue;
1625 rhs = TREE_OPERAND (*expr_p, 1);
1626
1627 /* For postfix operator, we evaluate the LHS to an rvalue and then use
1628 that as the result value and in the postqueue operation. */
1629 if (postfix)
1630 {
1631 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
1632 if (ret == GS_ERROR)
1633 return ret;
1634 }
1635
1636 t1 = build (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
1637 t1 = build (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
1638
1639 if (postfix)
1640 {
1641 gimplify_and_add (t1, post_p);
1642 *expr_p = lhs;
1643 return GS_ALL_DONE;
1644 }
1645 else
1646 {
1647 *expr_p = t1;
1648 return GS_OK;
1649 }
1650 }
1651
1652 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
1653
1654 static void
1655 maybe_with_size_expr (tree *expr_p)
1656 {
1657 tree expr = *expr_p;
1658 tree type = TREE_TYPE (expr);
1659 tree size;
1660
1661 /* If we've already wrapped this or the type is error_mark_node, we can't do
1662 anything. */
1663 if (TREE_CODE (expr) == WITH_SIZE_EXPR
1664 || type == error_mark_node)
1665 return;
1666
1667 /* If the size isn't known or is a constant, we have nothing to do. */
1668 size = TYPE_SIZE_UNIT (type);
1669 if (!size || TREE_CODE (size) == INTEGER_CST)
1670 return;
1671
1672 /* Otherwise, make a WITH_SIZE_EXPR. */
1673 size = unshare_expr (size);
1674 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
1675 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
1676 }
1677
1678 /* Subroutine of gimplify_call_expr: Gimplify a single argument. */
1679
1680 static enum gimplify_status
1681 gimplify_arg (tree *expr_p, tree *pre_p)
1682 {
1683 bool (*test) (tree);
1684 fallback_t fb;
1685
1686 /* In general, we allow lvalues for function arguments to avoid
1687 extra overhead of copying large aggregates out of even larger
1688 aggregates into temporaries only to copy the temporaries to
1689 the argument list. Make optimizers happy by pulling out to
1690 temporaries those types that fit in registers. */
1691 if (is_gimple_reg_type (TREE_TYPE (*expr_p)))
1692 test = is_gimple_val, fb = fb_rvalue;
1693 else
1694 test = is_gimple_lvalue, fb = fb_either;
1695
1696 /* If this is a variable sized type, we must remember the size. */
1697 maybe_with_size_expr (expr_p);
1698
1699 /* There is a sequence point before a function call. Side effects in
1700 the argument list must occur before the actual call. So, when
1701 gimplifying arguments, force gimplify_expr to use an internal
1702 post queue which is then appended to the end of PRE_P. */
1703 return gimplify_expr (expr_p, pre_p, NULL, test, fb);
1704 }
1705
1706 /* Gimplify the CALL_EXPR node pointed by EXPR_P. PRE_P points to the
1707 list where side effects that must happen before *EXPR_P should be stored.
1708 WANT_VALUE is true if the result of the call is desired. */
1709
1710 static enum gimplify_status
1711 gimplify_call_expr (tree *expr_p, tree *pre_p, bool want_value)
1712 {
1713 tree decl;
1714 tree arglist;
1715 enum gimplify_status ret;
1716
1717 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
1718
1719 /* For reliable diagnostics during inlining, it is necessary that
1720 every call_expr be annotated with file and line. */
1721 if (! EXPR_HAS_LOCATION (*expr_p))
1722 SET_EXPR_LOCATION (*expr_p, input_location);
1723
1724 /* This may be a call to a builtin function.
1725
1726 Builtin function calls may be transformed into different
1727 (and more efficient) builtin function calls under certain
1728 circumstances. Unfortunately, gimplification can muck things
1729 up enough that the builtin expanders are not aware that certain
1730 transformations are still valid.
1731
1732 So we attempt transformation/gimplification of the call before
1733 we gimplify the CALL_EXPR. At this time we do not manage to
1734 transform all calls in the same manner as the expanders do, but
1735 we do transform most of them. */
1736 decl = get_callee_fndecl (*expr_p);
1737 if (decl && DECL_BUILT_IN (decl))
1738 {
1739 tree new = fold_builtin (*expr_p, !want_value);
1740
1741 if (new && new != *expr_p)
1742 {
1743 /* There was a transformation of this call which computes the
1744 same value, but in a more efficient way. Return and try
1745 again. */
1746 *expr_p = new;
1747 return GS_OK;
1748 }
1749
1750 if (DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_START)
1751 {
1752 tree arglist = TREE_OPERAND (*expr_p, 1);
1753
1754 if (!arglist || !TREE_CHAIN (arglist))
1755 {
1756 error ("too few arguments to function %<va_start%>");
1757 *expr_p = build_empty_stmt ();
1758 return GS_OK;
1759 }
1760
1761 if (fold_builtin_next_arg (TREE_CHAIN (arglist)))
1762 {
1763 *expr_p = build_empty_stmt ();
1764 return GS_OK;
1765 }
1766 /* Avoid gimplifying the second argument to va_start, which needs
1767 to be the plain PARM_DECL. */
1768 return gimplify_arg (&TREE_VALUE (TREE_OPERAND (*expr_p, 1)), pre_p);
1769 }
1770 }
1771
1772 /* There is a sequence point before the call, so any side effects in
1773 the calling expression must occur before the actual call. Force
1774 gimplify_expr to use an internal post queue. */
1775 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, NULL,
1776 is_gimple_call_addr, fb_rvalue);
1777
1778 if (PUSH_ARGS_REVERSED)
1779 TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
1780 for (arglist = TREE_OPERAND (*expr_p, 1); arglist;
1781 arglist = TREE_CHAIN (arglist))
1782 {
1783 enum gimplify_status t;
1784
1785 t = gimplify_arg (&TREE_VALUE (arglist), pre_p);
1786
1787 if (t == GS_ERROR)
1788 ret = GS_ERROR;
1789 }
1790 if (PUSH_ARGS_REVERSED)
1791 TREE_OPERAND (*expr_p, 1) = nreverse (TREE_OPERAND (*expr_p, 1));
1792
1793 /* Try this again in case gimplification exposed something. */
1794 if (ret != GS_ERROR && decl && DECL_BUILT_IN (decl))
1795 {
1796 tree new = fold_builtin (*expr_p, !want_value);
1797
1798 if (new && new != *expr_p)
1799 {
1800 /* There was a transformation of this call which computes the
1801 same value, but in a more efficient way. Return and try
1802 again. */
1803 *expr_p = new;
1804 return GS_OK;
1805 }
1806 }
1807
1808 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
1809 decl. This allows us to eliminate redundant or useless
1810 calls to "const" functions. */
1811 if (TREE_CODE (*expr_p) == CALL_EXPR
1812 && (call_expr_flags (*expr_p) & (ECF_CONST | ECF_PURE)))
1813 TREE_SIDE_EFFECTS (*expr_p) = 0;
1814
1815 return ret;
1816 }
1817
1818 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
1819 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
1820
1821 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
1822 condition is true or false, respectively. If null, we should generate
1823 our own to skip over the evaluation of this specific expression.
1824
1825 This function is the tree equivalent of do_jump.
1826
1827 shortcut_cond_r should only be called by shortcut_cond_expr. */
1828
1829 static tree
1830 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p)
1831 {
1832 tree local_label = NULL_TREE;
1833 tree t, expr = NULL;
1834
1835 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
1836 retain the shortcut semantics. Just insert the gotos here;
1837 shortcut_cond_expr will append the real blocks later. */
1838 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
1839 {
1840 /* Turn if (a && b) into
1841
1842 if (a); else goto no;
1843 if (b) goto yes; else goto no;
1844 (no:) */
1845
1846 if (false_label_p == NULL)
1847 false_label_p = &local_label;
1848
1849 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p);
1850 append_to_statement_list (t, &expr);
1851
1852 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1853 false_label_p);
1854 append_to_statement_list (t, &expr);
1855 }
1856 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
1857 {
1858 /* Turn if (a || b) into
1859
1860 if (a) goto yes;
1861 if (b) goto yes; else goto no;
1862 (yes:) */
1863
1864 if (true_label_p == NULL)
1865 true_label_p = &local_label;
1866
1867 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL);
1868 append_to_statement_list (t, &expr);
1869
1870 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1871 false_label_p);
1872 append_to_statement_list (t, &expr);
1873 }
1874 else if (TREE_CODE (pred) == COND_EXPR)
1875 {
1876 /* As long as we're messing with gotos, turn if (a ? b : c) into
1877 if (a)
1878 if (b) goto yes; else goto no;
1879 else
1880 if (c) goto yes; else goto no; */
1881 expr = build (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
1882 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
1883 false_label_p),
1884 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
1885 false_label_p));
1886 }
1887 else
1888 {
1889 expr = build (COND_EXPR, void_type_node, pred,
1890 build_and_jump (true_label_p),
1891 build_and_jump (false_label_p));
1892 }
1893
1894 if (local_label)
1895 {
1896 t = build1 (LABEL_EXPR, void_type_node, local_label);
1897 append_to_statement_list (t, &expr);
1898 }
1899
1900 return expr;
1901 }
1902
1903 static tree
1904 shortcut_cond_expr (tree expr)
1905 {
1906 tree pred = TREE_OPERAND (expr, 0);
1907 tree then_ = TREE_OPERAND (expr, 1);
1908 tree else_ = TREE_OPERAND (expr, 2);
1909 tree true_label, false_label, end_label, t;
1910 tree *true_label_p;
1911 tree *false_label_p;
1912 bool emit_end, emit_false;
1913 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
1914 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
1915
1916 /* First do simple transformations. */
1917 if (!else_se)
1918 {
1919 /* If there is no 'else', turn (a && b) into if (a) if (b). */
1920 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
1921 {
1922 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
1923 then_ = shortcut_cond_expr (expr);
1924 pred = TREE_OPERAND (pred, 0);
1925 expr = build (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
1926 }
1927 }
1928 if (!then_se)
1929 {
1930 /* If there is no 'then', turn
1931 if (a || b); else d
1932 into
1933 if (a); else if (b); else d. */
1934 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
1935 {
1936 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
1937 else_ = shortcut_cond_expr (expr);
1938 pred = TREE_OPERAND (pred, 0);
1939 expr = build (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
1940 }
1941 }
1942
1943 /* If we're done, great. */
1944 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
1945 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
1946 return expr;
1947
1948 /* Otherwise we need to mess with gotos. Change
1949 if (a) c; else d;
1950 to
1951 if (a); else goto no;
1952 c; goto end;
1953 no: d; end:
1954 and recursively gimplify the condition. */
1955
1956 true_label = false_label = end_label = NULL_TREE;
1957
1958 /* If our arms just jump somewhere, hijack those labels so we don't
1959 generate jumps to jumps. */
1960
1961 if (then_
1962 && TREE_CODE (then_) == GOTO_EXPR
1963 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
1964 {
1965 true_label = GOTO_DESTINATION (then_);
1966 then_ = NULL;
1967 then_se = false;
1968 }
1969
1970 if (else_
1971 && TREE_CODE (else_) == GOTO_EXPR
1972 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
1973 {
1974 false_label = GOTO_DESTINATION (else_);
1975 else_ = NULL;
1976 else_se = false;
1977 }
1978
1979 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
1980 if (true_label)
1981 true_label_p = &true_label;
1982 else
1983 true_label_p = NULL;
1984
1985 /* The 'else' branch also needs a label if it contains interesting code. */
1986 if (false_label || else_se)
1987 false_label_p = &false_label;
1988 else
1989 false_label_p = NULL;
1990
1991 /* If there was nothing else in our arms, just forward the label(s). */
1992 if (!then_se && !else_se)
1993 return shortcut_cond_r (pred, true_label_p, false_label_p);
1994
1995 /* If our last subexpression already has a terminal label, reuse it. */
1996 if (else_se)
1997 expr = expr_last (else_);
1998 else if (then_se)
1999 expr = expr_last (then_);
2000 else
2001 expr = NULL;
2002 if (expr && TREE_CODE (expr) == LABEL_EXPR)
2003 end_label = LABEL_EXPR_LABEL (expr);
2004
2005 /* If we don't care about jumping to the 'else' branch, jump to the end
2006 if the condition is false. */
2007 if (!false_label_p)
2008 false_label_p = &end_label;
2009
2010 /* We only want to emit these labels if we aren't hijacking them. */
2011 emit_end = (end_label == NULL_TREE);
2012 emit_false = (false_label == NULL_TREE);
2013
2014 pred = shortcut_cond_r (pred, true_label_p, false_label_p);
2015
2016 expr = NULL;
2017 append_to_statement_list (pred, &expr);
2018
2019 append_to_statement_list (then_, &expr);
2020 if (else_se)
2021 {
2022 t = build_and_jump (&end_label);
2023 append_to_statement_list (t, &expr);
2024 if (emit_false)
2025 {
2026 t = build1 (LABEL_EXPR, void_type_node, false_label);
2027 append_to_statement_list (t, &expr);
2028 }
2029 append_to_statement_list (else_, &expr);
2030 }
2031 if (emit_end && end_label)
2032 {
2033 t = build1 (LABEL_EXPR, void_type_node, end_label);
2034 append_to_statement_list (t, &expr);
2035 }
2036
2037 return expr;
2038 }
2039
2040 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2041
2042 static tree
2043 gimple_boolify (tree expr)
2044 {
2045 tree type = TREE_TYPE (expr);
2046
2047 if (TREE_CODE (type) == BOOLEAN_TYPE)
2048 return expr;
2049
2050 /* If this is the predicate of a COND_EXPR, it might not even be a
2051 truthvalue yet. */
2052 expr = lang_hooks.truthvalue_conversion (expr);
2053
2054 switch (TREE_CODE (expr))
2055 {
2056 case TRUTH_AND_EXPR:
2057 case TRUTH_OR_EXPR:
2058 case TRUTH_XOR_EXPR:
2059 case TRUTH_ANDIF_EXPR:
2060 case TRUTH_ORIF_EXPR:
2061 /* Also boolify the arguments of truth exprs. */
2062 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2063 /* FALLTHRU */
2064
2065 case TRUTH_NOT_EXPR:
2066 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2067 /* FALLTHRU */
2068
2069 case EQ_EXPR: case NE_EXPR:
2070 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2071 /* These expressions always produce boolean results. */
2072 TREE_TYPE (expr) = boolean_type_node;
2073 return expr;
2074
2075 default:
2076 /* Other expressions that get here must have boolean values, but
2077 might need to be converted to the appropriate mode. */
2078 return convert (boolean_type_node, expr);
2079 }
2080 }
2081
2082 /* Convert the conditional expression pointed by EXPR_P '(p) ? a : b;'
2083 into
2084
2085 if (p) if (p)
2086 t1 = a; a;
2087 else or else
2088 t1 = b; b;
2089 t1;
2090
2091 The second form is used when *EXPR_P is of type void.
2092
2093 TARGET is the tree for T1 above.
2094
2095 PRE_P points to the list where side effects that must happen before
2096 *EXPR_P should be stored. */
2097
2098 static enum gimplify_status
2099 gimplify_cond_expr (tree *expr_p, tree *pre_p, tree target)
2100 {
2101 tree expr = *expr_p;
2102 tree tmp, tmp2, type;
2103 enum gimplify_status ret;
2104
2105 type = TREE_TYPE (expr);
2106 if (!type)
2107 TREE_TYPE (expr) = void_type_node;
2108
2109 /* If this COND_EXPR has a value, copy the values into a temporary within
2110 the arms. */
2111 else if (! VOID_TYPE_P (type))
2112 {
2113 if (target)
2114 {
2115 ret = gimplify_expr (&target, pre_p, NULL,
2116 is_gimple_min_lval, fb_lvalue);
2117 if (ret != GS_ERROR)
2118 ret = GS_OK;
2119 tmp = target;
2120 tmp2 = unshare_expr (target);
2121 }
2122 else
2123 {
2124 tmp2 = tmp = create_tmp_var (TREE_TYPE (expr), "iftmp");
2125 ret = GS_ALL_DONE;
2126 }
2127
2128 /* Build the then clause, 't1 = a;'. But don't build an assignment
2129 if this branch is void; in C++ it can be, if it's a throw. */
2130 if (TREE_TYPE (TREE_OPERAND (expr, 1)) != void_type_node)
2131 TREE_OPERAND (expr, 1)
2132 = build (MODIFY_EXPR, void_type_node, tmp, TREE_OPERAND (expr, 1));
2133
2134 /* Build the else clause, 't1 = b;'. */
2135 if (TREE_TYPE (TREE_OPERAND (expr, 2)) != void_type_node)
2136 TREE_OPERAND (expr, 2)
2137 = build (MODIFY_EXPR, void_type_node, tmp2, TREE_OPERAND (expr, 2));
2138
2139 TREE_TYPE (expr) = void_type_node;
2140 recalculate_side_effects (expr);
2141
2142 /* Move the COND_EXPR to the prequeue. */
2143 gimplify_and_add (expr, pre_p);
2144
2145 *expr_p = tmp;
2146 return ret;
2147 }
2148
2149 /* Make sure the condition has BOOLEAN_TYPE. */
2150 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2151
2152 /* Break apart && and || conditions. */
2153 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
2154 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
2155 {
2156 expr = shortcut_cond_expr (expr);
2157
2158 if (expr != *expr_p)
2159 {
2160 *expr_p = expr;
2161
2162 /* We can't rely on gimplify_expr to re-gimplify the expanded
2163 form properly, as cleanups might cause the target labels to be
2164 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
2165 set up a conditional context. */
2166 gimple_push_condition ();
2167 gimplify_stmt (expr_p);
2168 gimple_pop_condition (pre_p);
2169
2170 return GS_ALL_DONE;
2171 }
2172 }
2173
2174 /* Now do the normal gimplification. */
2175 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2176 is_gimple_condexpr, fb_rvalue);
2177
2178 gimple_push_condition ();
2179
2180 gimplify_to_stmt_list (&TREE_OPERAND (expr, 1));
2181 gimplify_to_stmt_list (&TREE_OPERAND (expr, 2));
2182 recalculate_side_effects (expr);
2183
2184 gimple_pop_condition (pre_p);
2185
2186 if (ret == GS_ERROR)
2187 ;
2188 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2189 ret = GS_ALL_DONE;
2190 else if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 2)))
2191 /* Rewrite "if (a); else b" to "if (!a) b" */
2192 {
2193 TREE_OPERAND (expr, 0) = invert_truthvalue (TREE_OPERAND (expr, 0));
2194 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL,
2195 is_gimple_condexpr, fb_rvalue);
2196
2197 tmp = TREE_OPERAND (expr, 1);
2198 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 2);
2199 TREE_OPERAND (expr, 2) = tmp;
2200 }
2201 else
2202 /* Both arms are empty; replace the COND_EXPR with its predicate. */
2203 expr = TREE_OPERAND (expr, 0);
2204
2205 *expr_p = expr;
2206 return ret;
2207 }
2208
2209 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2210 a call to __builtin_memcpy. */
2211
2212 static enum gimplify_status
2213 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value)
2214 {
2215 tree args, t, to, to_ptr, from;
2216
2217 to = TREE_OPERAND (*expr_p, 0);
2218 from = TREE_OPERAND (*expr_p, 1);
2219
2220 args = tree_cons (NULL, size, NULL);
2221
2222 t = build_fold_addr_expr (from);
2223 args = tree_cons (NULL, t, args);
2224
2225 to_ptr = build_fold_addr_expr (to);
2226 args = tree_cons (NULL, to_ptr, args);
2227 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
2228 t = build_function_call_expr (t, args);
2229
2230 if (want_value)
2231 {
2232 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2233 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2234 }
2235
2236 *expr_p = t;
2237 return GS_OK;
2238 }
2239
2240 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
2241 a call to __builtin_memset. In this case we know that the RHS is
2242 a CONSTRUCTOR with an empty element list. */
2243
2244 static enum gimplify_status
2245 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value)
2246 {
2247 tree args, t, to, to_ptr;
2248
2249 to = TREE_OPERAND (*expr_p, 0);
2250
2251 args = tree_cons (NULL, size, NULL);
2252
2253 args = tree_cons (NULL, integer_zero_node, args);
2254
2255 to_ptr = build_fold_addr_expr (to);
2256 args = tree_cons (NULL, to_ptr, args);
2257 t = implicit_built_in_decls[BUILT_IN_MEMSET];
2258 t = build_function_call_expr (t, args);
2259
2260 if (want_value)
2261 {
2262 t = build1 (NOP_EXPR, TREE_TYPE (to_ptr), t);
2263 t = build1 (INDIRECT_REF, TREE_TYPE (to), t);
2264 }
2265
2266 *expr_p = t;
2267 return GS_OK;
2268 }
2269
2270 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
2271 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
2272 assignment. Returns non-null if we detect a potential overlap. */
2273
2274 struct gimplify_init_ctor_preeval_data
2275 {
2276 /* The base decl of the lhs object. May be NULL, in which case we
2277 have to assume the lhs is indirect. */
2278 tree lhs_base_decl;
2279
2280 /* The alias set of the lhs object. */
2281 int lhs_alias_set;
2282 };
2283
2284 static tree
2285 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
2286 {
2287 struct gimplify_init_ctor_preeval_data *data
2288 = (struct gimplify_init_ctor_preeval_data *) xdata;
2289 tree t = *tp;
2290
2291 /* If we find the base object, obviously we have overlap. */
2292 if (data->lhs_base_decl == t)
2293 return t;
2294
2295 /* If the constructor component is indirect, determine if we have a
2296 potential overlap with the lhs. The only bits of information we
2297 have to go on at this point are addressability and alias sets. */
2298 if (TREE_CODE (t) == INDIRECT_REF
2299 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
2300 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
2301 return t;
2302
2303 if (IS_TYPE_OR_DECL_P (t))
2304 *walk_subtrees = 0;
2305 return NULL;
2306 }
2307
2308 /* A subroutine of gimplify_init_constructor. Pre-evaluate *EXPR_P,
2309 force values that overlap with the lhs (as described by *DATA)
2310 into temporaries. */
2311
2312 static void
2313 gimplify_init_ctor_preeval (tree *expr_p, tree *pre_p, tree *post_p,
2314 struct gimplify_init_ctor_preeval_data *data)
2315 {
2316 enum gimplify_status one;
2317
2318 /* If the value is invariant, then there's nothing to pre-evaluate.
2319 But ensure it doesn't have any side-effects since a SAVE_EXPR is
2320 invariant but has side effects and might contain a reference to
2321 the object we're initializing. */
2322 if (TREE_INVARIANT (*expr_p) && !TREE_SIDE_EFFECTS (*expr_p))
2323 return;
2324
2325 /* If the type has non-trivial constructors, we can't pre-evaluate. */
2326 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
2327 return;
2328
2329 /* Recurse for nested constructors. */
2330 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
2331 {
2332 tree list;
2333 for (list = CONSTRUCTOR_ELTS (*expr_p); list ; list = TREE_CHAIN (list))
2334 gimplify_init_ctor_preeval (&TREE_VALUE (list), pre_p, post_p, data);
2335 return;
2336 }
2337
2338 /* We can't preevaluate if the type contains a placeholder. */
2339 if (type_contains_placeholder_p (TREE_TYPE (*expr_p)))
2340 return;
2341
2342 /* Gimplify the constructor element to something appropriate for the rhs
2343 of a MODIFY_EXPR. Given that we know the lhs is an aggregate, we know
2344 the gimplifier will consider this a store to memory. Doing this
2345 gimplification now means that we won't have to deal with complicated
2346 language-specific trees, nor trees like SAVE_EXPR that can induce
2347 exponential search behavior. */
2348 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
2349 if (one == GS_ERROR)
2350 {
2351 *expr_p = NULL;
2352 return;
2353 }
2354
2355 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
2356 with the lhs, since "a = { .x=a }" doesn't make sense. This will
2357 always be true for all scalars, since is_gimple_mem_rhs insists on a
2358 temporary variable for them. */
2359 if (DECL_P (*expr_p))
2360 return;
2361
2362 /* If this is of variable size, we have no choice but to assume it doesn't
2363 overlap since we can't make a temporary for it. */
2364 if (!TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (*expr_p))))
2365 return;
2366
2367 /* Otherwise, we must search for overlap ... */
2368 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
2369 return;
2370
2371 /* ... and if found, force the value into a temporary. */
2372 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
2373 }
2374
2375 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
2376 a RANGE_EXPR in a CONSTRUCTOR for an array.
2377
2378 var = lower;
2379 loop_entry:
2380 object[var] = value;
2381 if (var == upper)
2382 goto loop_exit;
2383 var = var + 1;
2384 goto loop_entry;
2385 loop_exit:
2386
2387 We increment var _after_ the loop exit check because we might otherwise
2388 fail if upper == TYPE_MAX_VALUE (type for upper).
2389
2390 Note that we never have to deal with SAVE_EXPRs here, because this has
2391 already been taken care of for us, in gimplify_init_ctor_preeval(). */
2392
2393 static void gimplify_init_ctor_eval (tree, tree, tree *, bool);
2394
2395 static void
2396 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
2397 tree value, tree array_elt_type,
2398 tree *pre_p, bool cleared)
2399 {
2400 tree loop_entry_label, loop_exit_label;
2401 tree var, var_type, cref;
2402
2403 loop_entry_label = create_artificial_label ();
2404 loop_exit_label = create_artificial_label ();
2405
2406 /* Create and initialize the index variable. */
2407 var_type = TREE_TYPE (upper);
2408 var = create_tmp_var (var_type, NULL);
2409 append_to_statement_list (build2 (MODIFY_EXPR, var_type, var, lower), pre_p);
2410
2411 /* Add the loop entry label. */
2412 append_to_statement_list (build1 (LABEL_EXPR,
2413 void_type_node,
2414 loop_entry_label),
2415 pre_p);
2416
2417 /* Build the reference. */
2418 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
2419 var, NULL_TREE, NULL_TREE);
2420
2421 /* If we are a constructor, just call gimplify_init_ctor_eval to do
2422 the store. Otherwise just assign value to the reference. */
2423
2424 if (TREE_CODE (value) == CONSTRUCTOR)
2425 /* NB we might have to call ourself recursively through
2426 gimplify_init_ctor_eval if the value is a constructor. */
2427 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2428 pre_p, cleared);
2429 else
2430 append_to_statement_list (build2 (MODIFY_EXPR, TREE_TYPE (cref),
2431 cref, value),
2432 pre_p);
2433
2434 /* We exit the loop when the index var is equal to the upper bound. */
2435 gimplify_and_add (build3 (COND_EXPR, void_type_node,
2436 build2 (EQ_EXPR, boolean_type_node,
2437 var, upper),
2438 build1 (GOTO_EXPR,
2439 void_type_node,
2440 loop_exit_label),
2441 NULL_TREE),
2442 pre_p);
2443
2444 /* Otherwise, increment the index var... */
2445 append_to_statement_list (build2 (MODIFY_EXPR, var_type, var,
2446 build2 (PLUS_EXPR, var_type, var,
2447 fold_convert (var_type,
2448 integer_one_node))),
2449 pre_p);
2450
2451 /* ...and jump back to the loop entry. */
2452 append_to_statement_list (build1 (GOTO_EXPR,
2453 void_type_node,
2454 loop_entry_label),
2455 pre_p);
2456
2457 /* Add the loop exit label. */
2458 append_to_statement_list (build1 (LABEL_EXPR,
2459 void_type_node,
2460 loop_exit_label),
2461 pre_p);
2462 }
2463
2464 /* A subroutine of gimplify_init_constructor. Generate individual
2465 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
2466 assignments should happen. LIST is the CONSTRUCTOR_ELTS of the
2467 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
2468 zeroed first. */
2469
2470 static void
2471 gimplify_init_ctor_eval (tree object, tree list, tree *pre_p, bool cleared)
2472 {
2473 tree array_elt_type = NULL;
2474
2475 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
2476 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
2477
2478 for (; list; list = TREE_CHAIN (list))
2479 {
2480 tree purpose, value, cref, init;
2481
2482 purpose = TREE_PURPOSE (list);
2483 value = TREE_VALUE (list);
2484
2485 /* NULL values are created above for gimplification errors. */
2486 if (value == NULL)
2487 continue;
2488
2489 if (cleared && initializer_zerop (value))
2490 continue;
2491
2492 /* ??? Here's to hoping the front end fills in all of the indices,
2493 so we don't have to figure out what's missing ourselves. */
2494 gcc_assert (purpose);
2495
2496 /* If we have a RANGE_EXPR, we have to build a loop to assign the
2497 whole range. */
2498 if (TREE_CODE (purpose) == RANGE_EXPR)
2499 {
2500 tree lower = TREE_OPERAND (purpose, 0);
2501 tree upper = TREE_OPERAND (purpose, 1);
2502
2503 /* If the lower bound is equal to upper, just treat it as if
2504 upper was the index. */
2505 if (simple_cst_equal (lower, upper))
2506 purpose = upper;
2507 else
2508 {
2509 gimplify_init_ctor_eval_range (object, lower, upper, value,
2510 array_elt_type, pre_p, cleared);
2511 continue;
2512 }
2513 }
2514
2515 if (array_elt_type)
2516 {
2517 cref = build (ARRAY_REF, array_elt_type, unshare_expr (object),
2518 purpose, NULL_TREE, NULL_TREE);
2519 }
2520 else
2521 cref = build (COMPONENT_REF, TREE_TYPE (purpose),
2522 unshare_expr (object), purpose, NULL_TREE);
2523
2524 if (TREE_CODE (value) == CONSTRUCTOR)
2525 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
2526 pre_p, cleared);
2527 else
2528 {
2529 init = build (MODIFY_EXPR, TREE_TYPE (cref), cref, value);
2530 gimplify_and_add (init, pre_p);
2531 }
2532 }
2533 }
2534
2535 /* A subroutine of gimplify_modify_expr. Break out elements of a
2536 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
2537
2538 Note that we still need to clear any elements that don't have explicit
2539 initializers, so if not all elements are initialized we keep the
2540 original MODIFY_EXPR, we just remove all of the constructor elements. */
2541
2542 static enum gimplify_status
2543 gimplify_init_constructor (tree *expr_p, tree *pre_p,
2544 tree *post_p, bool want_value)
2545 {
2546 tree object;
2547 tree ctor = TREE_OPERAND (*expr_p, 1);
2548 tree type = TREE_TYPE (ctor);
2549 enum gimplify_status ret;
2550 tree elt_list;
2551
2552 if (TREE_CODE (ctor) != CONSTRUCTOR)
2553 return GS_UNHANDLED;
2554
2555 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
2556 is_gimple_lvalue, fb_lvalue);
2557 if (ret == GS_ERROR)
2558 return ret;
2559 object = TREE_OPERAND (*expr_p, 0);
2560
2561 elt_list = CONSTRUCTOR_ELTS (ctor);
2562
2563 ret = GS_ALL_DONE;
2564 switch (TREE_CODE (type))
2565 {
2566 case RECORD_TYPE:
2567 case UNION_TYPE:
2568 case QUAL_UNION_TYPE:
2569 case ARRAY_TYPE:
2570 {
2571 struct gimplify_init_ctor_preeval_data preeval_data;
2572 HOST_WIDE_INT num_type_elements, num_ctor_elements;
2573 HOST_WIDE_INT num_nonzero_elements, num_nonconstant_elements;
2574 bool cleared;
2575
2576 /* Aggregate types must lower constructors to initialization of
2577 individual elements. The exception is that a CONSTRUCTOR node
2578 with no elements indicates zero-initialization of the whole. */
2579 if (elt_list == NULL)
2580 break;
2581
2582 categorize_ctor_elements (ctor, &num_nonzero_elements,
2583 &num_nonconstant_elements,
2584 &num_ctor_elements);
2585
2586 /* If a const aggregate variable is being initialized, then it
2587 should never be a lose to promote the variable to be static. */
2588 if (num_nonconstant_elements == 0
2589 && TREE_READONLY (object)
2590 && TREE_CODE (object) == VAR_DECL)
2591 {
2592 DECL_INITIAL (object) = ctor;
2593 TREE_STATIC (object) = 1;
2594 if (!DECL_NAME (object))
2595 DECL_NAME (object) = create_tmp_var_name ("C");
2596 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
2597
2598 /* ??? C++ doesn't automatically append a .<number> to the
2599 assembler name, and even when it does, it looks a FE private
2600 data structures to figure out what that number should be,
2601 which are not set for this variable. I suppose this is
2602 important for local statics for inline functions, which aren't
2603 "local" in the object file sense. So in order to get a unique
2604 TU-local symbol, we must invoke the lhd version now. */
2605 lhd_set_decl_assembler_name (object);
2606
2607 *expr_p = NULL_TREE;
2608 break;
2609 }
2610
2611 /* If there are "lots" of initialized elements, and all of them
2612 are valid address constants, then the entire initializer can
2613 be dropped to memory, and then memcpy'd out. */
2614 if (num_nonconstant_elements == 0)
2615 {
2616 HOST_WIDE_INT size = int_size_in_bytes (type);
2617 unsigned int align;
2618
2619 /* ??? We can still get unbounded array types, at least
2620 from the C++ front end. This seems wrong, but attempt
2621 to work around it for now. */
2622 if (size < 0)
2623 {
2624 size = int_size_in_bytes (TREE_TYPE (object));
2625 if (size >= 0)
2626 TREE_TYPE (ctor) = type = TREE_TYPE (object);
2627 }
2628
2629 /* Find the maximum alignment we can assume for the object. */
2630 /* ??? Make use of DECL_OFFSET_ALIGN. */
2631 if (DECL_P (object))
2632 align = DECL_ALIGN (object);
2633 else
2634 align = TYPE_ALIGN (type);
2635
2636 if (size > 0 && !can_move_by_pieces (size, align))
2637 {
2638 tree new = create_tmp_var_raw (type, "C");
2639
2640 gimple_add_tmp_var (new);
2641 TREE_STATIC (new) = 1;
2642 TREE_READONLY (new) = 1;
2643 DECL_INITIAL (new) = ctor;
2644 if (align > DECL_ALIGN (new))
2645 {
2646 DECL_ALIGN (new) = align;
2647 DECL_USER_ALIGN (new) = 1;
2648 }
2649 walk_tree (&DECL_INITIAL (new), force_labels_r, NULL, NULL);
2650
2651 TREE_OPERAND (*expr_p, 1) = new;
2652
2653 /* This is no longer an assignment of a CONSTRUCTOR, but
2654 we still may have processing to do on the LHS. So
2655 pretend we didn't do anything here to let that happen. */
2656 return GS_UNHANDLED;
2657 }
2658 }
2659
2660 /* If there are "lots" of initialized elements, even discounting
2661 those that are not address constants (and thus *must* be
2662 computed at runtime), then partition the constructor into
2663 constant and non-constant parts. Block copy the constant
2664 parts in, then generate code for the non-constant parts. */
2665 /* TODO. There's code in cp/typeck.c to do this. */
2666
2667 num_type_elements = count_type_elements (TREE_TYPE (ctor));
2668
2669 /* If there are "lots" of zeros, then block clear the object first. */
2670 cleared = false;
2671 if (num_type_elements - num_nonzero_elements > CLEAR_RATIO
2672 && num_nonzero_elements < num_type_elements/4)
2673 cleared = true;
2674
2675 /* ??? This bit ought not be needed. For any element not present
2676 in the initializer, we should simply set them to zero. Except
2677 we'd need to *find* the elements that are not present, and that
2678 requires trickery to avoid quadratic compile-time behavior in
2679 large cases or excessive memory use in small cases. */
2680 else if (num_ctor_elements < num_type_elements)
2681 cleared = true;
2682
2683 if (cleared)
2684 {
2685 /* Zap the CONSTRUCTOR element list, which simplifies this case.
2686 Note that we still have to gimplify, in order to handle the
2687 case of variable sized types. Avoid shared tree structures. */
2688 CONSTRUCTOR_ELTS (ctor) = NULL_TREE;
2689 object = unshare_expr (object);
2690 gimplify_stmt (expr_p);
2691 append_to_statement_list (*expr_p, pre_p);
2692 }
2693
2694 /* If we have not block cleared the object, or if there are nonzero
2695 elements in the constructor, add assignments to the individual
2696 scalar fields of the object. */
2697 if (!cleared || num_nonzero_elements > 0)
2698 {
2699 preeval_data.lhs_base_decl = get_base_address (object);
2700 if (!DECL_P (preeval_data.lhs_base_decl))
2701 preeval_data.lhs_base_decl = NULL;
2702 preeval_data.lhs_alias_set = get_alias_set (object);
2703
2704 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
2705 pre_p, post_p, &preeval_data);
2706 gimplify_init_ctor_eval (object, elt_list, pre_p, cleared);
2707 }
2708
2709 *expr_p = NULL_TREE;
2710 }
2711 break;
2712
2713 case COMPLEX_TYPE:
2714 {
2715 tree r, i;
2716
2717 /* Extract the real and imaginary parts out of the ctor. */
2718 r = i = NULL_TREE;
2719 if (elt_list)
2720 {
2721 r = TREE_VALUE (elt_list);
2722 elt_list = TREE_CHAIN (elt_list);
2723 if (elt_list)
2724 {
2725 i = TREE_VALUE (elt_list);
2726 gcc_assert (!TREE_CHAIN (elt_list));
2727 }
2728 }
2729 if (r == NULL || i == NULL)
2730 {
2731 tree zero = convert (TREE_TYPE (type), integer_zero_node);
2732 if (r == NULL)
2733 r = zero;
2734 if (i == NULL)
2735 i = zero;
2736 }
2737
2738 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
2739 represent creation of a complex value. */
2740 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
2741 {
2742 ctor = build_complex (type, r, i);
2743 TREE_OPERAND (*expr_p, 1) = ctor;
2744 }
2745 else
2746 {
2747 ctor = build (COMPLEX_EXPR, type, r, i);
2748 TREE_OPERAND (*expr_p, 1) = ctor;
2749 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
2750 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
2751 fb_rvalue);
2752 }
2753 }
2754 break;
2755
2756 case VECTOR_TYPE:
2757 /* Go ahead and simplify constant constructors to VECTOR_CST. */
2758 if (TREE_CONSTANT (ctor))
2759 TREE_OPERAND (*expr_p, 1) = build_vector (type, elt_list);
2760 else
2761 {
2762 /* Vector types use CONSTRUCTOR all the way through gimple
2763 compilation as a general initializer. */
2764 for (; elt_list; elt_list = TREE_CHAIN (elt_list))
2765 {
2766 enum gimplify_status tret;
2767 tret = gimplify_expr (&TREE_VALUE (elt_list), pre_p, post_p,
2768 is_gimple_val, fb_rvalue);
2769 if (tret == GS_ERROR)
2770 ret = GS_ERROR;
2771 }
2772 }
2773 break;
2774
2775 default:
2776 /* So how did we get a CONSTRUCTOR for a scalar type? */
2777 gcc_unreachable ();
2778 }
2779
2780 if (ret == GS_ERROR)
2781 return GS_ERROR;
2782 else if (want_value)
2783 {
2784 append_to_statement_list (*expr_p, pre_p);
2785 *expr_p = object;
2786 return GS_OK;
2787 }
2788 else
2789 return GS_ALL_DONE;
2790 }
2791
2792 /* Subroutine of gimplify_modify_expr to do simplifications of MODIFY_EXPRs
2793 based on the code of the RHS. We loop for as long as something changes. */
2794
2795 static enum gimplify_status
2796 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p, tree *pre_p,
2797 tree *post_p, bool want_value)
2798 {
2799 enum gimplify_status ret = GS_OK;
2800
2801 while (ret != GS_UNHANDLED)
2802 switch (TREE_CODE (*from_p))
2803 {
2804 case INDIRECT_REF:
2805 {
2806 /* If we have code like
2807
2808 *(const A*)(A*)&x
2809
2810 where the type of "x" is a (possibly cv-qualified variant
2811 of "A"), treat the entire expression as identical to "x".
2812 This kind of code arises in C++ when an object is bound
2813 to a const reference, and if "x" is a TARGET_EXPR we want
2814 to take advantage of the optimization below. */
2815 tree pointer;
2816
2817 pointer = TREE_OPERAND (*from_p, 0);
2818 STRIP_NOPS (pointer);
2819 if (TREE_CODE (pointer) == ADDR_EXPR
2820 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (pointer, 0)))
2821 == TYPE_MAIN_VARIANT (TREE_TYPE (*from_p))))
2822 {
2823 *from_p = TREE_OPERAND (pointer, 0);
2824 ret = GS_OK;
2825 }
2826 else
2827 ret = GS_UNHANDLED;
2828 break;
2829 }
2830
2831 case TARGET_EXPR:
2832 {
2833 /* If we are initializing something from a TARGET_EXPR, strip the
2834 TARGET_EXPR and initialize it directly, if possible. This can't
2835 be done if the initializer is void, since that implies that the
2836 temporary is set in some non-trivial way.
2837
2838 ??? What about code that pulls out the temp and uses it
2839 elsewhere? I think that such code never uses the TARGET_EXPR as
2840 an initializer. If I'm wrong, we'll abort because the temp won't
2841 have any RTL. In that case, I guess we'll need to replace
2842 references somehow. */
2843 tree init = TARGET_EXPR_INITIAL (*from_p);
2844
2845 if (!VOID_TYPE_P (TREE_TYPE (init)))
2846 {
2847 *from_p = init;
2848 ret = GS_OK;
2849 }
2850 else
2851 ret = GS_UNHANDLED;
2852 }
2853 break;
2854
2855 case COMPOUND_EXPR:
2856 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
2857 caught. */
2858 gimplify_compound_expr (from_p, pre_p, true);
2859 ret = GS_OK;
2860 break;
2861
2862 case CONSTRUCTOR:
2863 /* If we're initializing from a CONSTRUCTOR, break this into
2864 individual MODIFY_EXPRs. */
2865 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value);
2866
2867 case COND_EXPR:
2868 /* If we're assigning to a non-register type, push the assignment
2869 down into the branches. This is mandatory for ADDRESSABLE types,
2870 since we cannot generate temporaries for such, but it saves a
2871 copy in other cases as well. */
2872 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
2873 {
2874 *expr_p = *from_p;
2875 return gimplify_cond_expr (expr_p, pre_p, *to_p);
2876 }
2877 else
2878 ret = GS_UNHANDLED;
2879 break;
2880
2881 default:
2882 ret = GS_UNHANDLED;
2883 break;
2884 }
2885
2886 return ret;
2887 }
2888
2889 /* Gimplify the MODIFY_EXPR node pointed by EXPR_P.
2890
2891 modify_expr
2892 : varname '=' rhs
2893 | '*' ID '=' rhs
2894
2895 PRE_P points to the list where side effects that must happen before
2896 *EXPR_P should be stored.
2897
2898 POST_P points to the list where side effects that must happen after
2899 *EXPR_P should be stored.
2900
2901 WANT_VALUE is nonzero iff we want to use the value of this expression
2902 in another expression. */
2903
2904 static enum gimplify_status
2905 gimplify_modify_expr (tree *expr_p, tree *pre_p, tree *post_p, bool want_value)
2906 {
2907 tree *from_p = &TREE_OPERAND (*expr_p, 1);
2908 tree *to_p = &TREE_OPERAND (*expr_p, 0);
2909 enum gimplify_status ret = GS_UNHANDLED;
2910
2911 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
2912 || TREE_CODE (*expr_p) == INIT_EXPR);
2913
2914 /* The distinction between MODIFY_EXPR and INIT_EXPR is no longer useful. */
2915 if (TREE_CODE (*expr_p) == INIT_EXPR)
2916 TREE_SET_CODE (*expr_p, MODIFY_EXPR);
2917
2918 /* See if any simplifications can be done based on what the RHS is. */
2919 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
2920 want_value);
2921 if (ret != GS_UNHANDLED)
2922 return ret;
2923
2924 /* If the value being copied is of variable width, compute the length
2925 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
2926 before gimplifying any of the operands so that we can resolve any
2927 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
2928 the size of the expression to be copied, not of the destination, so
2929 that is what we must here. */
2930 maybe_with_size_expr (from_p);
2931
2932 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2933 if (ret == GS_ERROR)
2934 return ret;
2935
2936 ret = gimplify_expr (from_p, pre_p, post_p,
2937 rhs_predicate_for (*to_p), fb_rvalue);
2938 if (ret == GS_ERROR)
2939 return ret;
2940
2941 /* Now see if the above changed *from_p to something we handle specially. */
2942 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
2943 want_value);
2944 if (ret != GS_UNHANDLED)
2945 return ret;
2946
2947 /* If we've got a variable sized assignment between two lvalues (i.e. does
2948 not involve a call), then we can make things a bit more straightforward
2949 by converting the assignment to memcpy or memset. */
2950 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
2951 {
2952 tree from = TREE_OPERAND (*from_p, 0);
2953 tree size = TREE_OPERAND (*from_p, 1);
2954
2955 if (TREE_CODE (from) == CONSTRUCTOR)
2956 return gimplify_modify_expr_to_memset (expr_p, size, want_value);
2957 if (is_gimple_addressable (from))
2958 {
2959 *from_p = from;
2960 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value);
2961 }
2962 }
2963
2964 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
2965 {
2966 /* If we've somehow already got an SSA_NAME on the LHS, then
2967 we're probably modifying it twice. Not good. */
2968 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
2969 *to_p = make_ssa_name (*to_p, *expr_p);
2970 }
2971
2972 if (want_value)
2973 {
2974 append_to_statement_list (*expr_p, pre_p);
2975 *expr_p = *to_p;
2976 return GS_OK;
2977 }
2978
2979 return GS_ALL_DONE;
2980 }
2981
2982 /* Gimplify a comparison between two variable-sized objects. Do this
2983 with a call to BUILT_IN_MEMCMP. */
2984
2985 static enum gimplify_status
2986 gimplify_variable_sized_compare (tree *expr_p)
2987 {
2988 tree op0 = TREE_OPERAND (*expr_p, 0);
2989 tree op1 = TREE_OPERAND (*expr_p, 1);
2990 tree args, t, dest;
2991
2992 t = TYPE_SIZE_UNIT (TREE_TYPE (op0));
2993 t = unshare_expr (t);
2994 t = SUBSTITUTE_PLACEHOLDER_IN_EXPR (t, op0);
2995 args = tree_cons (NULL, t, NULL);
2996 t = build_fold_addr_expr (op1);
2997 args = tree_cons (NULL, t, args);
2998 dest = build_fold_addr_expr (op0);
2999 args = tree_cons (NULL, dest, args);
3000 t = implicit_built_in_decls[BUILT_IN_MEMCMP];
3001 t = build_function_call_expr (t, args);
3002 *expr_p
3003 = build (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
3004
3005 return GS_OK;
3006 }
3007
3008 /* Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions. EXPR_P
3009 points to the expression to gimplify.
3010
3011 Expressions of the form 'a && b' are gimplified to:
3012
3013 a && b ? true : false
3014
3015 gimplify_cond_expr will do the rest.
3016
3017 PRE_P points to the list where side effects that must happen before
3018 *EXPR_P should be stored. */
3019
3020 static enum gimplify_status
3021 gimplify_boolean_expr (tree *expr_p)
3022 {
3023 /* Preserve the original type of the expression. */
3024 tree type = TREE_TYPE (*expr_p);
3025
3026 *expr_p = build (COND_EXPR, type, *expr_p,
3027 convert (type, boolean_true_node),
3028 convert (type, boolean_false_node));
3029
3030 return GS_OK;
3031 }
3032
3033 /* Gimplifies an expression sequence. This function gimplifies each
3034 expression and re-writes the original expression with the last
3035 expression of the sequence in GIMPLE form.
3036
3037 PRE_P points to the list where the side effects for all the
3038 expressions in the sequence will be emitted.
3039
3040 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
3041 /* ??? Should rearrange to share the pre-queue with all the indirect
3042 invocations of gimplify_expr. Would probably save on creations
3043 of statement_list nodes. */
3044
3045 static enum gimplify_status
3046 gimplify_compound_expr (tree *expr_p, tree *pre_p, bool want_value)
3047 {
3048 tree t = *expr_p;
3049
3050 do
3051 {
3052 tree *sub_p = &TREE_OPERAND (t, 0);
3053
3054 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
3055 gimplify_compound_expr (sub_p, pre_p, false);
3056 else
3057 gimplify_stmt (sub_p);
3058 append_to_statement_list (*sub_p, pre_p);
3059
3060 t = TREE_OPERAND (t, 1);
3061 }
3062 while (TREE_CODE (t) == COMPOUND_EXPR);
3063
3064 *expr_p = t;
3065 if (want_value)
3066 return GS_OK;
3067 else
3068 {
3069 gimplify_stmt (expr_p);
3070 return GS_ALL_DONE;
3071 }
3072 }
3073
3074 /* Gimplifies a statement list. These may be created either by an
3075 enlightened front-end, or by shortcut_cond_expr. */
3076
3077 static enum gimplify_status
3078 gimplify_statement_list (tree *expr_p)
3079 {
3080 tree_stmt_iterator i = tsi_start (*expr_p);
3081
3082 while (!tsi_end_p (i))
3083 {
3084 tree t;
3085
3086 gimplify_stmt (tsi_stmt_ptr (i));
3087
3088 t = tsi_stmt (i);
3089 if (t == NULL)
3090 tsi_delink (&i);
3091 else if (TREE_CODE (t) == STATEMENT_LIST)
3092 {
3093 tsi_link_before (&i, t, TSI_SAME_STMT);
3094 tsi_delink (&i);
3095 }
3096 else
3097 tsi_next (&i);
3098 }
3099
3100 return GS_ALL_DONE;
3101 }
3102
3103 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
3104 gimplify. After gimplification, EXPR_P will point to a new temporary
3105 that holds the original value of the SAVE_EXPR node.
3106
3107 PRE_P points to the list where side effects that must happen before
3108 *EXPR_P should be stored. */
3109
3110 static enum gimplify_status
3111 gimplify_save_expr (tree *expr_p, tree *pre_p, tree *post_p)
3112 {
3113 enum gimplify_status ret = GS_ALL_DONE;
3114 tree val;
3115
3116 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
3117 val = TREE_OPERAND (*expr_p, 0);
3118
3119 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
3120 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
3121 {
3122 /* The operand may be a void-valued expression such as SAVE_EXPRs
3123 generated by the Java frontend for class initialization. It is
3124 being executed only for its side-effects. */
3125 if (TREE_TYPE (val) == void_type_node)
3126 {
3127 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3128 is_gimple_stmt, fb_none);
3129 append_to_statement_list (TREE_OPERAND (*expr_p, 0), pre_p);
3130 val = NULL;
3131 }
3132 else
3133 val = get_initialized_tmp_var (val, pre_p, post_p);
3134
3135 TREE_OPERAND (*expr_p, 0) = val;
3136 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
3137 }
3138
3139 *expr_p = val;
3140
3141 return ret;
3142 }
3143
3144 /* Re-write the ADDR_EXPR node pointed by EXPR_P
3145
3146 unary_expr
3147 : ...
3148 | '&' varname
3149 ...
3150
3151 PRE_P points to the list where side effects that must happen before
3152 *EXPR_P should be stored.
3153
3154 POST_P points to the list where side effects that must happen after
3155 *EXPR_P should be stored. */
3156
3157 static enum gimplify_status
3158 gimplify_addr_expr (tree *expr_p, tree *pre_p, tree *post_p)
3159 {
3160 tree expr = *expr_p;
3161 tree op0 = TREE_OPERAND (expr, 0);
3162 enum gimplify_status ret;
3163
3164 switch (TREE_CODE (op0))
3165 {
3166 case INDIRECT_REF:
3167 case MISALIGNED_INDIRECT_REF:
3168 do_indirect_ref:
3169 /* Check if we are dealing with an expression of the form '&*ptr'.
3170 While the front end folds away '&*ptr' into 'ptr', these
3171 expressions may be generated internally by the compiler (e.g.,
3172 builtins like __builtin_va_end). */
3173 /* Caution: the silent array decomposition semantics we allow for
3174 ADDR_EXPR means we can't always discard the pair. */
3175 {
3176 tree op00 = TREE_OPERAND (op0, 0);
3177 tree t_expr = TREE_TYPE (expr);
3178 tree t_op00 = TREE_TYPE (op00);
3179
3180 if (!lang_hooks.types_compatible_p (t_expr, t_op00))
3181 {
3182 #ifdef ENABLE_CHECKING
3183 tree t_op0 = TREE_TYPE (op0);
3184 gcc_assert (TREE_CODE (t_op0) == ARRAY_TYPE
3185 && POINTER_TYPE_P (t_expr)
3186 && cpt_same_type (TREE_TYPE (t_op0),
3187 TREE_TYPE (t_expr))
3188 && POINTER_TYPE_P (t_op00)
3189 && cpt_same_type (t_op0, TREE_TYPE (t_op00)));
3190 #endif
3191 op00 = fold_convert (TREE_TYPE (expr), op00);
3192 }
3193 *expr_p = op00;
3194 ret = GS_OK;
3195 }
3196 break;
3197
3198 case VIEW_CONVERT_EXPR:
3199 /* Take the address of our operand and then convert it to the type of
3200 this ADDR_EXPR.
3201
3202 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
3203 all clear. The impact of this transformation is even less clear. */
3204
3205 /* If the operand is a useless conversion, look through it. Doing so
3206 guarantees that the ADDR_EXPR and its operand will remain of the
3207 same type. */
3208 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
3209 op0 = TREE_OPERAND (op0, 0);
3210
3211 *expr_p = fold_convert (TREE_TYPE (expr),
3212 build_fold_addr_expr (TREE_OPERAND (op0, 0)));
3213 ret = GS_OK;
3214 break;
3215
3216 default:
3217 /* We use fb_either here because the C frontend sometimes takes
3218 the address of a call that returns a struct; see
3219 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
3220 the implied temporary explicit. */
3221 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
3222 is_gimple_addressable, fb_either);
3223 if (ret != GS_ERROR)
3224 {
3225 op0 = TREE_OPERAND (expr, 0);
3226
3227 /* For various reasons, the gimplification of the expression
3228 may have made a new INDIRECT_REF. */
3229 if (TREE_CODE (op0) == INDIRECT_REF)
3230 goto do_indirect_ref;
3231
3232 /* Make sure TREE_INVARIANT, TREE_CONSTANT, and TREE_SIDE_EFFECTS
3233 is set properly. */
3234 recompute_tree_invarant_for_addr_expr (expr);
3235
3236 /* Mark the RHS addressable. */
3237 lang_hooks.mark_addressable (TREE_OPERAND (expr, 0));
3238 }
3239 break;
3240 }
3241
3242 return ret;
3243 }
3244
3245 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
3246 value; output operands should be a gimple lvalue. */
3247
3248 static enum gimplify_status
3249 gimplify_asm_expr (tree *expr_p, tree *pre_p, tree *post_p)
3250 {
3251 tree expr = *expr_p;
3252 int noutputs = list_length (ASM_OUTPUTS (expr));
3253 const char **oconstraints
3254 = (const char **) alloca ((noutputs) * sizeof (const char *));
3255 int i;
3256 tree link;
3257 const char *constraint;
3258 bool allows_mem, allows_reg, is_inout;
3259 enum gimplify_status ret, tret;
3260
3261 ASM_STRING (expr)
3262 = resolve_asm_operand_names (ASM_STRING (expr), ASM_OUTPUTS (expr),
3263 ASM_INPUTS (expr));
3264
3265 ret = GS_ALL_DONE;
3266 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3267 {
3268 size_t constraint_len;
3269 oconstraints[i] = constraint
3270 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3271 constraint_len = strlen (constraint);
3272 if (constraint_len == 0)
3273 continue;
3274
3275 parse_output_constraint (&constraint, i, 0, 0,
3276 &allows_mem, &allows_reg, &is_inout);
3277
3278 if (!allows_reg && allows_mem)
3279 lang_hooks.mark_addressable (TREE_VALUE (link));
3280
3281 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3282 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
3283 fb_lvalue | fb_mayfail);
3284 if (tret == GS_ERROR)
3285 {
3286 error ("invalid lvalue in asm output %d", i);
3287 ret = tret;
3288 }
3289
3290 if (is_inout)
3291 {
3292 /* An input/output operand. To give the optimizers more
3293 flexibility, split it into separate input and output
3294 operands. */
3295 tree input;
3296 char buf[10];
3297
3298 /* Turn the in/out constraint into an output constraint. */
3299 char *p = xstrdup (constraint);
3300 p[0] = '=';
3301 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
3302 free (p);
3303
3304 /* And add a matching input constraint. */
3305 if (allows_reg)
3306 {
3307 sprintf (buf, "%d", i);
3308 input = build_string (strlen (buf), buf);
3309 }
3310 else
3311 input = build_string (constraint_len - 1, constraint + 1);
3312 input = build_tree_list (build_tree_list (NULL_TREE, input),
3313 unshare_expr (TREE_VALUE (link)));
3314 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
3315 }
3316 }
3317
3318 for (link = ASM_INPUTS (expr); link; ++i, link = TREE_CHAIN (link))
3319 {
3320 constraint
3321 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
3322 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
3323 oconstraints, &allows_mem, &allows_reg);
3324
3325 /* If the operand is a memory input, it should be an lvalue. */
3326 if (!allows_reg && allows_mem)
3327 {
3328 lang_hooks.mark_addressable (TREE_VALUE (link));
3329 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3330 is_gimple_lvalue, fb_lvalue | fb_mayfail);
3331 if (tret == GS_ERROR)
3332 {
3333 error ("memory input %d is not directly addressable", i);
3334 ret = tret;
3335 }
3336 }
3337 else
3338 {
3339 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
3340 is_gimple_asm_val, fb_rvalue);
3341 if (tret == GS_ERROR)
3342 ret = tret;
3343 }
3344 }
3345
3346 return ret;
3347 }
3348
3349 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
3350 WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
3351 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
3352 return to this function.
3353
3354 FIXME should we complexify the prequeue handling instead? Or use flags
3355 for all the cleanups and let the optimizer tighten them up? The current
3356 code seems pretty fragile; it will break on a cleanup within any
3357 non-conditional nesting. But any such nesting would be broken, anyway;
3358 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
3359 and continues out of it. We can do that at the RTL level, though, so
3360 having an optimizer to tighten up try/finally regions would be a Good
3361 Thing. */
3362
3363 static enum gimplify_status
3364 gimplify_cleanup_point_expr (tree *expr_p, tree *pre_p)
3365 {
3366 tree_stmt_iterator iter;
3367 tree body;
3368
3369 tree temp = voidify_wrapper_expr (*expr_p, NULL);
3370
3371 /* We only care about the number of conditions between the innermost
3372 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count. */
3373 int old_conds = gimplify_ctxp->conditions;
3374 gimplify_ctxp->conditions = 0;
3375
3376 body = TREE_OPERAND (*expr_p, 0);
3377 gimplify_to_stmt_list (&body);
3378
3379 gimplify_ctxp->conditions = old_conds;
3380
3381 for (iter = tsi_start (body); !tsi_end_p (iter); )
3382 {
3383 tree *wce_p = tsi_stmt_ptr (iter);
3384 tree wce = *wce_p;
3385
3386 if (TREE_CODE (wce) == WITH_CLEANUP_EXPR)
3387 {
3388 if (tsi_one_before_end_p (iter))
3389 {
3390 tsi_link_before (&iter, TREE_OPERAND (wce, 0), TSI_SAME_STMT);
3391 tsi_delink (&iter);
3392 break;
3393 }
3394 else
3395 {
3396 tree sl, tfe;
3397 enum tree_code code;
3398
3399 if (CLEANUP_EH_ONLY (wce))
3400 code = TRY_CATCH_EXPR;
3401 else
3402 code = TRY_FINALLY_EXPR;
3403
3404 sl = tsi_split_statement_list_after (&iter);
3405 tfe = build (code, void_type_node, sl, NULL_TREE);
3406 append_to_statement_list (TREE_OPERAND (wce, 0),
3407 &TREE_OPERAND (tfe, 1));
3408 *wce_p = tfe;
3409 iter = tsi_start (sl);
3410 }
3411 }
3412 else
3413 tsi_next (&iter);
3414 }
3415
3416 if (temp)
3417 {
3418 *expr_p = temp;
3419 append_to_statement_list (body, pre_p);
3420 return GS_OK;
3421 }
3422 else
3423 {
3424 *expr_p = body;
3425 return GS_ALL_DONE;
3426 }
3427 }
3428
3429 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
3430 is the cleanup action required. */
3431
3432 static void
3433 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, tree *pre_p)
3434 {
3435 tree wce;
3436
3437 /* Errors can result in improperly nested cleanups. Which results in
3438 confusion when trying to resolve the WITH_CLEANUP_EXPR. */
3439 if (errorcount || sorrycount)
3440 return;
3441
3442 if (gimple_conditional_context ())
3443 {
3444 /* If we're in a conditional context, this is more complex. We only
3445 want to run the cleanup if we actually ran the initialization that
3446 necessitates it, but we want to run it after the end of the
3447 conditional context. So we wrap the try/finally around the
3448 condition and use a flag to determine whether or not to actually
3449 run the destructor. Thus
3450
3451 test ? f(A()) : 0
3452
3453 becomes (approximately)
3454
3455 flag = 0;
3456 try {
3457 if (test) { A::A(temp); flag = 1; val = f(temp); }
3458 else { val = 0; }
3459 } finally {
3460 if (flag) A::~A(temp);
3461 }
3462 val
3463 */
3464
3465 tree flag = create_tmp_var (boolean_type_node, "cleanup");
3466 tree ffalse = build (MODIFY_EXPR, void_type_node, flag,
3467 boolean_false_node);
3468 tree ftrue = build (MODIFY_EXPR, void_type_node, flag,
3469 boolean_true_node);
3470 cleanup = build (COND_EXPR, void_type_node, flag, cleanup, NULL);
3471 wce = build (WITH_CLEANUP_EXPR, void_type_node, cleanup);
3472 append_to_statement_list (ffalse, &gimplify_ctxp->conditional_cleanups);
3473 append_to_statement_list (wce, &gimplify_ctxp->conditional_cleanups);
3474 append_to_statement_list (ftrue, pre_p);
3475
3476 /* Because of this manipulation, and the EH edges that jump
3477 threading cannot redirect, the temporary (VAR) will appear
3478 to be used uninitialized. Don't warn. */
3479 TREE_NO_WARNING (var) = 1;
3480 }
3481 else
3482 {
3483 wce = build (WITH_CLEANUP_EXPR, void_type_node, cleanup);
3484 CLEANUP_EH_ONLY (wce) = eh_only;
3485 append_to_statement_list (wce, pre_p);
3486 }
3487
3488 gimplify_stmt (&TREE_OPERAND (wce, 0));
3489 }
3490
3491 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
3492
3493 static enum gimplify_status
3494 gimplify_target_expr (tree *expr_p, tree *pre_p, tree *post_p)
3495 {
3496 tree targ = *expr_p;
3497 tree temp = TARGET_EXPR_SLOT (targ);
3498 tree init = TARGET_EXPR_INITIAL (targ);
3499 enum gimplify_status ret;
3500
3501 if (init)
3502 {
3503 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
3504 to the temps list. */
3505 gimple_add_tmp_var (temp);
3506
3507 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
3508 expression is supposed to initialize the slot. */
3509 if (VOID_TYPE_P (TREE_TYPE (init)))
3510 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
3511 else
3512 {
3513 /* Special handling for BIND_EXPR can result in fewer temps. */
3514 ret = GS_OK;
3515 if (TREE_CODE (init) == BIND_EXPR)
3516 gimplify_bind_expr (&init, temp, pre_p);
3517 if (init != temp)
3518 {
3519 init = build (MODIFY_EXPR, void_type_node, temp, init);
3520 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt,
3521 fb_none);
3522 }
3523 }
3524 if (ret == GS_ERROR)
3525 return GS_ERROR;
3526 append_to_statement_list (init, pre_p);
3527
3528 /* If needed, push the cleanup for the temp. */
3529 if (TARGET_EXPR_CLEANUP (targ))
3530 {
3531 gimplify_stmt (&TARGET_EXPR_CLEANUP (targ));
3532 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
3533 CLEANUP_EH_ONLY (targ), pre_p);
3534 }
3535
3536 /* Only expand this once. */
3537 TREE_OPERAND (targ, 3) = init;
3538 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
3539 }
3540 else
3541 /* We should have expanded this before. */
3542 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
3543
3544 *expr_p = temp;
3545 return GS_OK;
3546 }
3547
3548 /* Gimplification of expression trees. */
3549
3550 /* Gimplify an expression which appears at statement context; usually, this
3551 means replacing it with a suitably gimple STATEMENT_LIST. */
3552
3553 void
3554 gimplify_stmt (tree *stmt_p)
3555 {
3556 gimplify_expr (stmt_p, NULL, NULL, is_gimple_stmt, fb_none);
3557 }
3558
3559 /* Similarly, but force the result to be a STATEMENT_LIST. */
3560
3561 void
3562 gimplify_to_stmt_list (tree *stmt_p)
3563 {
3564 gimplify_stmt (stmt_p);
3565 if (!*stmt_p)
3566 *stmt_p = alloc_stmt_list ();
3567 else if (TREE_CODE (*stmt_p) != STATEMENT_LIST)
3568 {
3569 tree t = *stmt_p;
3570 *stmt_p = alloc_stmt_list ();
3571 append_to_statement_list (t, stmt_p);
3572 }
3573 }
3574
3575
3576 /* Gimplifies the expression tree pointed by EXPR_P. Return 0 if
3577 gimplification failed.
3578
3579 PRE_P points to the list where side effects that must happen before
3580 EXPR should be stored.
3581
3582 POST_P points to the list where side effects that must happen after
3583 EXPR should be stored, or NULL if there is no suitable list. In
3584 that case, we copy the result to a temporary, emit the
3585 post-effects, and then return the temporary.
3586
3587 GIMPLE_TEST_F points to a function that takes a tree T and
3588 returns nonzero if T is in the GIMPLE form requested by the
3589 caller. The GIMPLE predicates are in tree-gimple.c.
3590
3591 This test is used twice. Before gimplification, the test is
3592 invoked to determine whether *EXPR_P is already gimple enough. If
3593 that fails, *EXPR_P is gimplified according to its code and
3594 GIMPLE_TEST_F is called again. If the test still fails, then a new
3595 temporary variable is created and assigned the value of the
3596 gimplified expression.
3597
3598 FALLBACK tells the function what sort of a temporary we want. If the 1
3599 bit is set, an rvalue is OK. If the 2 bit is set, an lvalue is OK.
3600 If both are set, either is OK, but an lvalue is preferable.
3601
3602 The return value is either GS_ERROR or GS_ALL_DONE, since this function
3603 iterates until solution. */
3604
3605 enum gimplify_status
3606 gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
3607 bool (* gimple_test_f) (tree), fallback_t fallback)
3608 {
3609 tree tmp;
3610 tree internal_pre = NULL_TREE;
3611 tree internal_post = NULL_TREE;
3612 tree save_expr;
3613 int is_statement = (pre_p == NULL);
3614 location_t saved_location;
3615 enum gimplify_status ret;
3616
3617 save_expr = *expr_p;
3618 if (save_expr == NULL_TREE)
3619 return GS_ALL_DONE;
3620
3621 /* We used to check the predicate here and return immediately if it
3622 succeeds. This is wrong; the design is for gimplification to be
3623 idempotent, and for the predicates to only test for valid forms, not
3624 whether they are fully simplified. */
3625
3626 /* Set up our internal queues if needed. */
3627 if (pre_p == NULL)
3628 pre_p = &internal_pre;
3629 if (post_p == NULL)
3630 post_p = &internal_post;
3631
3632 saved_location = input_location;
3633 if (save_expr != error_mark_node
3634 && EXPR_HAS_LOCATION (*expr_p))
3635 input_location = EXPR_LOCATION (*expr_p);
3636
3637 /* Loop over the specific gimplifiers until the toplevel node
3638 remains the same. */
3639 do
3640 {
3641 /* Strip away as many useless type conversions as possible
3642 at the toplevel. */
3643 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
3644
3645 /* Remember the expr. */
3646 save_expr = *expr_p;
3647
3648 /* Die, die, die, my darling. */
3649 if (save_expr == error_mark_node
3650 || (TREE_TYPE (save_expr)
3651 && TREE_TYPE (save_expr) == error_mark_node))
3652 {
3653 ret = GS_ERROR;
3654 break;
3655 }
3656
3657 /* Do any language-specific gimplification. */
3658 ret = lang_hooks.gimplify_expr (expr_p, pre_p, post_p);
3659 if (ret == GS_OK)
3660 {
3661 if (*expr_p == NULL_TREE)
3662 break;
3663 if (*expr_p != save_expr)
3664 continue;
3665 }
3666 else if (ret != GS_UNHANDLED)
3667 break;
3668
3669 ret = GS_OK;
3670 switch (TREE_CODE (*expr_p))
3671 {
3672 /* First deal with the special cases. */
3673
3674 case POSTINCREMENT_EXPR:
3675 case POSTDECREMENT_EXPR:
3676 case PREINCREMENT_EXPR:
3677 case PREDECREMENT_EXPR:
3678 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
3679 fallback != fb_none);
3680 break;
3681
3682 case ARRAY_REF:
3683 case ARRAY_RANGE_REF:
3684 case REALPART_EXPR:
3685 case IMAGPART_EXPR:
3686 case COMPONENT_REF:
3687 case VIEW_CONVERT_EXPR:
3688 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
3689 fallback ? fallback : fb_rvalue);
3690 break;
3691
3692 case COND_EXPR:
3693 ret = gimplify_cond_expr (expr_p, pre_p, NULL_TREE);
3694 break;
3695
3696 case CALL_EXPR:
3697 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
3698 break;
3699
3700 case TREE_LIST:
3701 gcc_unreachable ();
3702
3703 case COMPOUND_EXPR:
3704 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
3705 break;
3706
3707 case MODIFY_EXPR:
3708 case INIT_EXPR:
3709 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
3710 fallback != fb_none);
3711 break;
3712
3713 case TRUTH_ANDIF_EXPR:
3714 case TRUTH_ORIF_EXPR:
3715 ret = gimplify_boolean_expr (expr_p);
3716 break;
3717
3718 case TRUTH_NOT_EXPR:
3719 TREE_OPERAND (*expr_p, 0)
3720 = gimple_boolify (TREE_OPERAND (*expr_p, 0));
3721 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3722 is_gimple_val, fb_rvalue);
3723 recalculate_side_effects (*expr_p);
3724 break;
3725
3726 case ADDR_EXPR:
3727 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
3728 break;
3729
3730 case VA_ARG_EXPR:
3731 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
3732 break;
3733
3734 case CONVERT_EXPR:
3735 case NOP_EXPR:
3736 if (IS_EMPTY_STMT (*expr_p))
3737 {
3738 ret = GS_ALL_DONE;
3739 break;
3740 }
3741
3742 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
3743 || fallback == fb_none)
3744 {
3745 /* Just strip a conversion to void (or in void context) and
3746 try again. */
3747 *expr_p = TREE_OPERAND (*expr_p, 0);
3748 break;
3749 }
3750
3751 ret = gimplify_conversion (expr_p);
3752 if (ret == GS_ERROR)
3753 break;
3754 if (*expr_p != save_expr)
3755 break;
3756 /* FALLTHRU */
3757
3758 case FIX_TRUNC_EXPR:
3759 case FIX_CEIL_EXPR:
3760 case FIX_FLOOR_EXPR:
3761 case FIX_ROUND_EXPR:
3762 /* unary_expr: ... | '(' cast ')' val | ... */
3763 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3764 is_gimple_val, fb_rvalue);
3765 recalculate_side_effects (*expr_p);
3766 break;
3767
3768 case ALIGN_INDIRECT_REF:
3769 case MISALIGNED_INDIRECT_REF:
3770 case INDIRECT_REF:
3771 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3772 is_gimple_reg, fb_rvalue);
3773 recalculate_side_effects (*expr_p);
3774 break;
3775
3776 /* Constants need not be gimplified. */
3777 case INTEGER_CST:
3778 case REAL_CST:
3779 case STRING_CST:
3780 case COMPLEX_CST:
3781 case VECTOR_CST:
3782 ret = GS_ALL_DONE;
3783 break;
3784
3785 case CONST_DECL:
3786 /* If we require an lvalue, such as for ADDR_EXPR, retain the
3787 CONST_DECL node. Otherwise the decl is replaceable by its
3788 value. */
3789 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
3790 if (fallback & fb_lvalue)
3791 ret = GS_ALL_DONE;
3792 else
3793 *expr_p = DECL_INITIAL (*expr_p);
3794 break;
3795
3796 case DECL_EXPR:
3797 ret = gimplify_decl_expr (expr_p);
3798 break;
3799
3800 case EXC_PTR_EXPR:
3801 /* FIXME make this a decl. */
3802 ret = GS_ALL_DONE;
3803 break;
3804
3805 case BIND_EXPR:
3806 ret = gimplify_bind_expr (expr_p, NULL, pre_p);
3807 break;
3808
3809 case LOOP_EXPR:
3810 ret = gimplify_loop_expr (expr_p, pre_p);
3811 break;
3812
3813 case SWITCH_EXPR:
3814 ret = gimplify_switch_expr (expr_p, pre_p);
3815 break;
3816
3817 case EXIT_EXPR:
3818 ret = gimplify_exit_expr (expr_p);
3819 break;
3820
3821 case GOTO_EXPR:
3822 /* If the target is not LABEL, then it is a computed jump
3823 and the target needs to be gimplified. */
3824 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
3825 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
3826 NULL, is_gimple_val, fb_rvalue);
3827 break;
3828
3829 case LABEL_EXPR:
3830 ret = GS_ALL_DONE;
3831 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
3832 == current_function_decl);
3833 break;
3834
3835 case CASE_LABEL_EXPR:
3836 ret = gimplify_case_label_expr (expr_p);
3837 break;
3838
3839 case RETURN_EXPR:
3840 ret = gimplify_return_expr (*expr_p, pre_p);
3841 break;
3842
3843 case CONSTRUCTOR:
3844 /* Don't reduce this in place; let gimplify_init_constructor work its
3845 magic. Buf if we're just elaborating this for side effects, just
3846 gimplify any element that has side-effects. */
3847 if (fallback == fb_none)
3848 {
3849 for (tmp = CONSTRUCTOR_ELTS (*expr_p); tmp;
3850 tmp = TREE_CHAIN (tmp))
3851 if (TREE_SIDE_EFFECTS (TREE_VALUE (tmp)))
3852 gimplify_expr (&TREE_VALUE (tmp), pre_p, post_p,
3853 gimple_test_f, fallback);
3854
3855 *expr_p = NULL_TREE;
3856 }
3857
3858 ret = GS_ALL_DONE;
3859 break;
3860
3861 /* The following are special cases that are not handled by the
3862 original GIMPLE grammar. */
3863
3864 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
3865 eliminated. */
3866 case SAVE_EXPR:
3867 ret = gimplify_save_expr (expr_p, pre_p, post_p);
3868 break;
3869
3870 case BIT_FIELD_REF:
3871 {
3872 enum gimplify_status r0, r1, r2;
3873
3874 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3875 is_gimple_lvalue, fb_either);
3876 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3877 is_gimple_val, fb_rvalue);
3878 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p, post_p,
3879 is_gimple_val, fb_rvalue);
3880 recalculate_side_effects (*expr_p);
3881
3882 ret = MIN (r0, MIN (r1, r2));
3883 }
3884 break;
3885
3886 case NON_LVALUE_EXPR:
3887 /* This should have been stripped above. */
3888 gcc_unreachable ();
3889
3890 case ASM_EXPR:
3891 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
3892 break;
3893
3894 case TRY_FINALLY_EXPR:
3895 case TRY_CATCH_EXPR:
3896 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 0));
3897 gimplify_to_stmt_list (&TREE_OPERAND (*expr_p, 1));
3898 ret = GS_ALL_DONE;
3899 break;
3900
3901 case CLEANUP_POINT_EXPR:
3902 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
3903 break;
3904
3905 case TARGET_EXPR:
3906 ret = gimplify_target_expr (expr_p, pre_p, post_p);
3907 break;
3908
3909 case CATCH_EXPR:
3910 gimplify_to_stmt_list (&CATCH_BODY (*expr_p));
3911 ret = GS_ALL_DONE;
3912 break;
3913
3914 case EH_FILTER_EXPR:
3915 gimplify_to_stmt_list (&EH_FILTER_FAILURE (*expr_p));
3916 ret = GS_ALL_DONE;
3917 break;
3918
3919 case OBJ_TYPE_REF:
3920 {
3921 enum gimplify_status r0, r1;
3922 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p, post_p,
3923 is_gimple_val, fb_rvalue);
3924 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p, post_p,
3925 is_gimple_val, fb_rvalue);
3926 ret = MIN (r0, r1);
3927 }
3928 break;
3929
3930 case LABEL_DECL:
3931 /* We get here when taking the address of a label. We mark
3932 the label as "forced"; meaning it can never be removed and
3933 it is a potential target for any computed goto. */
3934 FORCED_LABEL (*expr_p) = 1;
3935 ret = GS_ALL_DONE;
3936 break;
3937
3938 case STATEMENT_LIST:
3939 ret = gimplify_statement_list (expr_p);
3940 break;
3941
3942 case WITH_SIZE_EXPR:
3943 {
3944 enum gimplify_status r0, r1;
3945 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
3946 post_p == &internal_post ? NULL : post_p,
3947 gimple_test_f, fallback);
3948 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
3949 is_gimple_val, fb_rvalue);
3950 }
3951 break;
3952
3953 case VAR_DECL:
3954 /* ??? If this is a local variable, and it has not been seen in any
3955 outer BIND_EXPR, then it's probably the result of a duplicate
3956 declaration, for which we've already issued an error. It would
3957 be really nice if the front end wouldn't leak these at all.
3958 Currently the only known culprit is C++ destructors, as seen
3959 in g++.old-deja/g++.jason/binding.C. */
3960 tmp = *expr_p;
3961 if (!TREE_STATIC (tmp) && !DECL_EXTERNAL (tmp)
3962 && decl_function_context (tmp) == current_function_decl
3963 && !DECL_SEEN_IN_BIND_EXPR_P (tmp))
3964 {
3965 gcc_assert (errorcount || sorrycount);
3966 ret = GS_ERROR;
3967 break;
3968 }
3969 /* FALLTHRU */
3970
3971 case PARM_DECL:
3972 tmp = *expr_p;
3973
3974 /* If this is a local variable sized decl, it must be accessed
3975 indirectly. Perform that substitution. */
3976 if (DECL_VALUE_EXPR (tmp))
3977 {
3978 *expr_p = unshare_expr (DECL_VALUE_EXPR (tmp));
3979 ret = GS_OK;
3980 break;
3981 }
3982
3983 ret = GS_ALL_DONE;
3984 break;
3985
3986 case SSA_NAME:
3987 /* Allow callbacks into the gimplifier during optimization. */
3988 ret = GS_ALL_DONE;
3989 break;
3990
3991 default:
3992 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
3993 {
3994 case tcc_comparison:
3995 /* If this is a comparison of objects of aggregate type,
3996 handle it specially (by converting to a call to
3997 memcmp). It would be nice to only have to do this
3998 for variable-sized objects, but then we'd have to
3999 allow the same nest of reference nodes we allow for
4000 MODIFY_EXPR and that's too complex. */
4001 if (!AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (*expr_p, 1))))
4002 goto expr_2;
4003 ret = gimplify_variable_sized_compare (expr_p);
4004 break;
4005
4006 /* If *EXPR_P does not need to be special-cased, handle it
4007 according to its class. */
4008 case tcc_unary:
4009 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
4010 post_p, is_gimple_val, fb_rvalue);
4011 break;
4012
4013 case tcc_binary:
4014 expr_2:
4015 {
4016 enum gimplify_status r0, r1;
4017
4018 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
4019 post_p, is_gimple_val, fb_rvalue);
4020 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
4021 post_p, is_gimple_val, fb_rvalue);
4022
4023 ret = MIN (r0, r1);
4024 break;
4025 }
4026
4027 case tcc_declaration:
4028 case tcc_constant:
4029 ret = GS_ALL_DONE;
4030 goto dont_recalculate;
4031
4032 default:
4033 gcc_assert (TREE_CODE (*expr_p) == TRUTH_AND_EXPR
4034 || TREE_CODE (*expr_p) == TRUTH_OR_EXPR
4035 || TREE_CODE (*expr_p) == TRUTH_XOR_EXPR);
4036 goto expr_2;
4037 }
4038
4039 recalculate_side_effects (*expr_p);
4040 dont_recalculate:
4041 break;
4042 }
4043
4044 /* If we replaced *expr_p, gimplify again. */
4045 if (ret == GS_OK && (*expr_p == NULL || *expr_p == save_expr))
4046 ret = GS_ALL_DONE;
4047 }
4048 while (ret == GS_OK);
4049
4050 /* If we encountered an error_mark somewhere nested inside, either
4051 stub out the statement or propagate the error back out. */
4052 if (ret == GS_ERROR)
4053 {
4054 if (is_statement)
4055 *expr_p = NULL;
4056 goto out;
4057 }
4058
4059 /* This was only valid as a return value from the langhook, which
4060 we handled. Make sure it doesn't escape from any other context. */
4061 gcc_assert (ret != GS_UNHANDLED);
4062
4063 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
4064 {
4065 /* We aren't looking for a value, and we don't have a valid
4066 statement. If it doesn't have side-effects, throw it away. */
4067 if (!TREE_SIDE_EFFECTS (*expr_p))
4068 *expr_p = NULL;
4069 else if (!TREE_THIS_VOLATILE (*expr_p))
4070 {
4071 /* This is probably a _REF that contains something nested that
4072 has side effects. Recurse through the operands to find it. */
4073 enum tree_code code = TREE_CODE (*expr_p);
4074
4075 switch (code)
4076 {
4077 case COMPONENT_REF:
4078 case REALPART_EXPR: case IMAGPART_EXPR:
4079 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4080 gimple_test_f, fallback);
4081 break;
4082
4083 case ARRAY_REF: case ARRAY_RANGE_REF:
4084 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4085 gimple_test_f, fallback);
4086 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
4087 gimple_test_f, fallback);
4088 break;
4089
4090 default:
4091 /* Anything else with side-effects must be converted to
4092 a valid statement before we get here. */
4093 gcc_unreachable ();
4094 }
4095
4096 *expr_p = NULL;
4097 }
4098 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p)))
4099 {
4100 /* Historically, the compiler has treated a bare
4101 reference to a volatile lvalue as forcing a load. */
4102 tree tmp = create_tmp_var (TREE_TYPE (*expr_p), "vol");
4103 *expr_p = build (MODIFY_EXPR, TREE_TYPE (tmp), tmp, *expr_p);
4104 }
4105 else
4106 /* We can't do anything useful with a volatile reference to
4107 incomplete type, so just throw it away. */
4108 *expr_p = NULL;
4109 }
4110
4111 /* If we are gimplifying at the statement level, we're done. Tack
4112 everything together and replace the original statement with the
4113 gimplified form. */
4114 if (fallback == fb_none || is_statement)
4115 {
4116 if (internal_pre || internal_post)
4117 {
4118 append_to_statement_list (*expr_p, &internal_pre);
4119 append_to_statement_list (internal_post, &internal_pre);
4120 annotate_all_with_locus (&internal_pre, input_location);
4121 *expr_p = internal_pre;
4122 }
4123 else if (!*expr_p)
4124 ;
4125 else if (TREE_CODE (*expr_p) == STATEMENT_LIST)
4126 annotate_all_with_locus (expr_p, input_location);
4127 else
4128 annotate_one_with_locus (*expr_p, input_location);
4129 goto out;
4130 }
4131
4132 /* Otherwise we're gimplifying a subexpression, so the resulting value is
4133 interesting. */
4134
4135 /* If it's sufficiently simple already, we're done. Unless we are
4136 handling some post-effects internally; if that's the case, we need to
4137 copy into a temp before adding the post-effects to the tree. */
4138 if (!internal_post && (*gimple_test_f) (*expr_p))
4139 goto out;
4140
4141 /* Otherwise, we need to create a new temporary for the gimplified
4142 expression. */
4143
4144 /* We can't return an lvalue if we have an internal postqueue. The
4145 object the lvalue refers to would (probably) be modified by the
4146 postqueue; we need to copy the value out first, which means an
4147 rvalue. */
4148 if ((fallback & fb_lvalue) && !internal_post
4149 && is_gimple_addressable (*expr_p))
4150 {
4151 /* An lvalue will do. Take the address of the expression, store it
4152 in a temporary, and replace the expression with an INDIRECT_REF of
4153 that temporary. */
4154 tmp = build_fold_addr_expr (*expr_p);
4155 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
4156 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (tmp)), tmp);
4157 }
4158 else if ((fallback & fb_rvalue) && is_gimple_formal_tmp_rhs (*expr_p))
4159 {
4160 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
4161
4162 /* An rvalue will do. Assign the gimplified expression into a new
4163 temporary TMP and replace the original expression with TMP. */
4164
4165 if (internal_post || (fallback & fb_lvalue))
4166 /* The postqueue might change the value of the expression between
4167 the initialization and use of the temporary, so we can't use a
4168 formal temp. FIXME do we care? */
4169 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
4170 else
4171 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
4172
4173 if (TREE_CODE (*expr_p) != SSA_NAME)
4174 DECL_GIMPLE_FORMAL_TEMP_P (*expr_p) = 1;
4175 }
4176 else
4177 {
4178 #ifdef ENABLE_CHECKING
4179 if (!(fallback & fb_mayfail))
4180 {
4181 fprintf (stderr, "gimplification failed:\n");
4182 print_generic_expr (stderr, *expr_p, 0);
4183 debug_tree (*expr_p);
4184 internal_error ("gimplification failed");
4185 }
4186 #endif
4187 gcc_assert (fallback & fb_mayfail);
4188 /* If this is an asm statement, and the user asked for the
4189 impossible, don't abort. Fail and let gimplify_asm_expr
4190 issue an error. */
4191 ret = GS_ERROR;
4192 goto out;
4193 }
4194
4195 /* Make sure the temporary matches our predicate. */
4196 gcc_assert ((*gimple_test_f) (*expr_p));
4197
4198 if (internal_post)
4199 {
4200 annotate_all_with_locus (&internal_post, input_location);
4201 append_to_statement_list (internal_post, pre_p);
4202 }
4203
4204 out:
4205 input_location = saved_location;
4206 return ret;
4207 }
4208
4209 /* Look through TYPE for variable-sized objects and gimplify each such
4210 size that we find. Add to LIST_P any statements generated. */
4211
4212 void
4213 gimplify_type_sizes (tree type, tree *list_p)
4214 {
4215 tree field, t;
4216
4217 /* Note that we do not check for TYPE_SIZES_GIMPLIFIED already set because
4218 that's not supposed to happen on types where gimplifcation does anything.
4219 We should assert that it isn't set, but we can indeed be called multiple
4220 times on pointers. Unfortunately, this includes fat pointers which we
4221 can't easily test for. We could pass TYPE down to gimplify_one_sizepos
4222 and test there, but it doesn't seem worth it. */
4223
4224 /* We first do the main variant, then copy into any other variants. */
4225 type = TYPE_MAIN_VARIANT (type);
4226
4227 switch (TREE_CODE (type))
4228 {
4229 case ERROR_MARK:
4230 return;
4231
4232 case INTEGER_TYPE:
4233 case ENUMERAL_TYPE:
4234 case BOOLEAN_TYPE:
4235 case CHAR_TYPE:
4236 case REAL_TYPE:
4237 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
4238 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
4239
4240 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
4241 {
4242 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
4243 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
4244 TYPE_SIZES_GIMPLIFIED (t) = 1;
4245 }
4246 break;
4247
4248 case ARRAY_TYPE:
4249 /* These types may not have declarations, so handle them here. */
4250 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (type)))
4251 gimplify_type_sizes (TREE_TYPE (type), list_p);
4252
4253 if (!TYPE_SIZES_GIMPLIFIED (TYPE_DOMAIN (type)))
4254 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
4255 break;
4256
4257 case RECORD_TYPE:
4258 case UNION_TYPE:
4259 case QUAL_UNION_TYPE:
4260 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4261 if (TREE_CODE (field) == FIELD_DECL)
4262 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
4263 break;
4264
4265 default:
4266 break;
4267 }
4268
4269 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
4270 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
4271
4272 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
4273 {
4274 TYPE_SIZE (t) = TYPE_SIZE (type);
4275 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
4276 TYPE_SIZES_GIMPLIFIED (t) = 1;
4277 }
4278
4279 TYPE_SIZES_GIMPLIFIED (type) = 1;
4280 }
4281
4282 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
4283 a size or position, has had all of its SAVE_EXPRs evaluated.
4284 We add any required statements to STMT_P. */
4285
4286 void
4287 gimplify_one_sizepos (tree *expr_p, tree *stmt_p)
4288 {
4289 /* We don't do anything if the value isn't there, is constant, or contains
4290 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
4291 a VAR_DECL. If it's a VAR_DECL from another function, the gimplfier
4292 will want to replace it with a new variable, but that will cause problems
4293 if this type is from outside the function. It's OK to have that here. */
4294 if (*expr_p == NULL_TREE || TREE_CONSTANT (*expr_p)
4295 || TREE_CODE (*expr_p) == VAR_DECL
4296 || CONTAINS_PLACEHOLDER_P (*expr_p))
4297 return;
4298
4299 *expr_p = unshare_expr (*expr_p);
4300 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
4301 }
4302 \f
4303 #ifdef ENABLE_CHECKING
4304 /* Compare types A and B for a "close enough" match. */
4305
4306 static bool
4307 cpt_same_type (tree a, tree b)
4308 {
4309 if (lang_hooks.types_compatible_p (a, b))
4310 return true;
4311
4312 /* ??? The C++ FE decomposes METHOD_TYPES to FUNCTION_TYPES and doesn't
4313 link them together. This routine is intended to catch type errors
4314 that will affect the optimizers, and the optimizers don't add new
4315 dereferences of function pointers, so ignore it. */
4316 if ((TREE_CODE (a) == FUNCTION_TYPE || TREE_CODE (a) == METHOD_TYPE)
4317 && (TREE_CODE (b) == FUNCTION_TYPE || TREE_CODE (b) == METHOD_TYPE))
4318 return true;
4319
4320 /* ??? The C FE pushes type qualifiers after the fact into the type of
4321 the element from the type of the array. See build_unary_op's handling
4322 of ADDR_EXPR. This seems wrong -- if we were going to do this, we
4323 should have done it when creating the variable in the first place.
4324 Alternately, why aren't the two array types made variants? */
4325 if (TREE_CODE (a) == ARRAY_TYPE && TREE_CODE (b) == ARRAY_TYPE)
4326 return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
4327
4328 /* And because of those, we have to recurse down through pointers. */
4329 if (POINTER_TYPE_P (a) && POINTER_TYPE_P (b))
4330 return cpt_same_type (TREE_TYPE (a), TREE_TYPE (b));
4331
4332 return false;
4333 }
4334
4335 /* Check for some cases of the front end missing cast expressions.
4336 The type of a dereference should correspond to the pointer type;
4337 similarly the type of an address should match its object. */
4338
4339 static tree
4340 check_pointer_types_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
4341 void *data ATTRIBUTE_UNUSED)
4342 {
4343 tree t = *tp;
4344 tree ptype, otype, dtype;
4345
4346 switch (TREE_CODE (t))
4347 {
4348 case INDIRECT_REF:
4349 case ARRAY_REF:
4350 otype = TREE_TYPE (t);
4351 ptype = TREE_TYPE (TREE_OPERAND (t, 0));
4352 dtype = TREE_TYPE (ptype);
4353 gcc_assert (cpt_same_type (otype, dtype));
4354 break;
4355
4356 case ADDR_EXPR:
4357 ptype = TREE_TYPE (t);
4358 otype = TREE_TYPE (TREE_OPERAND (t, 0));
4359 dtype = TREE_TYPE (ptype);
4360 if (!cpt_same_type (otype, dtype))
4361 {
4362 /* &array is allowed to produce a pointer to the element, rather than
4363 a pointer to the array type. We must allow this in order to
4364 properly represent assigning the address of an array in C into
4365 pointer to the element type. */
4366 gcc_assert (TREE_CODE (otype) == ARRAY_TYPE
4367 && POINTER_TYPE_P (ptype)
4368 && cpt_same_type (TREE_TYPE (otype), dtype));
4369 break;
4370 }
4371 break;
4372
4373 default:
4374 return NULL_TREE;
4375 }
4376
4377
4378 return NULL_TREE;
4379 }
4380 #endif
4381
4382 /* Gimplify the body of statements pointed by BODY_P. FNDECL is the
4383 function decl containing BODY. */
4384
4385 void
4386 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
4387 {
4388 location_t saved_location = input_location;
4389 tree body, parm_stmts;
4390
4391 timevar_push (TV_TREE_GIMPLIFY);
4392 push_gimplify_context ();
4393
4394 /* Unshare most shared trees in the body and in that of any nested functions.
4395 It would seem we don't have to do this for nested functions because
4396 they are supposed to be output and then the outer function gimplified
4397 first, but the g++ front end doesn't always do it that way. */
4398 unshare_body (body_p, fndecl);
4399 unvisit_body (body_p, fndecl);
4400
4401 /* Make sure input_location isn't set to something wierd. */
4402 input_location = DECL_SOURCE_LOCATION (fndecl);
4403
4404 /* Resolve callee-copies. This has to be done before processing
4405 the body so that DECL_VALUE_EXPR gets processed correctly. */
4406 parm_stmts = do_parms ? gimplify_parameters () : NULL;
4407
4408 /* Gimplify the function's body. */
4409 gimplify_stmt (body_p);
4410 body = *body_p;
4411
4412 if (!body)
4413 body = alloc_stmt_list ();
4414 else if (TREE_CODE (body) == STATEMENT_LIST)
4415 {
4416 tree t = expr_only (*body_p);
4417 if (t)
4418 body = t;
4419 }
4420
4421 /* If there isn't an outer BIND_EXPR, add one. */
4422 if (TREE_CODE (body) != BIND_EXPR)
4423 {
4424 tree b = build (BIND_EXPR, void_type_node, NULL_TREE,
4425 NULL_TREE, NULL_TREE);
4426 TREE_SIDE_EFFECTS (b) = 1;
4427 append_to_statement_list_force (body, &BIND_EXPR_BODY (b));
4428 body = b;
4429 }
4430
4431 /* If we had callee-copies statements, insert them at the beginning
4432 of the function. */
4433 if (parm_stmts)
4434 {
4435 append_to_statement_list_force (BIND_EXPR_BODY (body), &parm_stmts);
4436 BIND_EXPR_BODY (body) = parm_stmts;
4437 }
4438
4439 /* Unshare again, in case gimplification was sloppy. */
4440 unshare_all_trees (body);
4441
4442 *body_p = body;
4443
4444 pop_gimplify_context (body);
4445
4446 #ifdef ENABLE_CHECKING
4447 walk_tree (body_p, check_pointer_types_r, NULL, NULL);
4448 #endif
4449
4450 timevar_pop (TV_TREE_GIMPLIFY);
4451 input_location = saved_location;
4452 }
4453
4454 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
4455 node for the function we want to gimplify. */
4456
4457 void
4458 gimplify_function_tree (tree fndecl)
4459 {
4460 tree oldfn;
4461
4462 oldfn = current_function_decl;
4463 current_function_decl = fndecl;
4464 cfun = DECL_STRUCT_FUNCTION (fndecl);
4465 if (cfun == NULL)
4466 allocate_struct_function (fndecl);
4467
4468 gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
4469
4470 /* If we're instrumenting function entry/exit, then prepend the call to
4471 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
4472 catch the exit hook. */
4473 /* ??? Add some way to ignore exceptions for this TFE. */
4474 if (flag_instrument_function_entry_exit
4475 && ! DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl))
4476 {
4477 tree tf, x, bind;
4478
4479 tf = build (TRY_FINALLY_EXPR, void_type_node, NULL, NULL);
4480 TREE_SIDE_EFFECTS (tf) = 1;
4481 x = DECL_SAVED_TREE (fndecl);
4482 append_to_statement_list (x, &TREE_OPERAND (tf, 0));
4483 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
4484 x = build_function_call_expr (x, NULL);
4485 append_to_statement_list (x, &TREE_OPERAND (tf, 1));
4486
4487 bind = build (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4488 TREE_SIDE_EFFECTS (bind) = 1;
4489 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
4490 x = build_function_call_expr (x, NULL);
4491 append_to_statement_list (x, &BIND_EXPR_BODY (bind));
4492 append_to_statement_list (tf, &BIND_EXPR_BODY (bind));
4493
4494 DECL_SAVED_TREE (fndecl) = bind;
4495 }
4496
4497 current_function_decl = oldfn;
4498 cfun = oldfn ? DECL_STRUCT_FUNCTION (oldfn) : NULL;
4499 }
4500
4501 \f
4502 /* Expands EXPR to list of gimple statements STMTS. If SIMPLE is true,
4503 force the result to be either ssa_name or an invariant, otherwise
4504 just force it to be a rhs expression. If VAR is not NULL, make the
4505 base variable of the final destination be VAR if suitable. */
4506
4507 tree
4508 force_gimple_operand (tree expr, tree *stmts, bool simple, tree var)
4509 {
4510 tree t;
4511 enum gimplify_status ret;
4512 gimple_predicate gimple_test_f;
4513
4514 *stmts = NULL_TREE;
4515
4516 if (is_gimple_val (expr))
4517 return expr;
4518
4519 gimple_test_f = simple ? is_gimple_val : is_gimple_reg_rhs;
4520
4521 push_gimplify_context ();
4522 gimplify_ctxp->into_ssa = true;
4523
4524 if (var)
4525 expr = build (MODIFY_EXPR, TREE_TYPE (var), var, expr);
4526
4527 ret = gimplify_expr (&expr, stmts, NULL,
4528 gimple_test_f, fb_rvalue);
4529 gcc_assert (ret != GS_ERROR);
4530
4531 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
4532 add_referenced_tmp_var (t);
4533
4534 pop_gimplify_context (NULL);
4535
4536 return expr;
4537 }
4538
4539 #include "gt-gimplify.h"