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