2011-10-20 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / gimplify.c
blob8c2c5ac2c9c01e92efa3f2c51e283bacd727162f
1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
5 Major work done by Sebastian Pop <s.pop@laposte.net>,
6 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "tree-iterator.h"
31 #include "tree-inline.h"
32 #include "tree-pretty-print.h"
33 #include "langhooks.h"
34 #include "tree-flow.h"
35 #include "cgraph.h"
36 #include "timevar.h"
37 #include "hashtab.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "output.h"
41 #include "ggc.h"
42 #include "diagnostic-core.h"
43 #include "target.h"
44 #include "pointer-set.h"
45 #include "splay-tree.h"
46 #include "vec.h"
47 #include "gimple.h"
48 #include "tree-pass.h"
50 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name. */
51 #include "expr.h" /* FIXME: for can_move_by_pieces
52 and STACK_CHECK_MAX_VAR_SIZE. */
54 enum gimplify_omp_var_data
56 GOVD_SEEN = 1,
57 GOVD_EXPLICIT = 2,
58 GOVD_SHARED = 4,
59 GOVD_PRIVATE = 8,
60 GOVD_FIRSTPRIVATE = 16,
61 GOVD_LASTPRIVATE = 32,
62 GOVD_REDUCTION = 64,
63 GOVD_LOCAL = 128,
64 GOVD_DEBUG_PRIVATE = 256,
65 GOVD_PRIVATE_OUTER_REF = 512,
66 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
67 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
71 enum omp_region_type
73 ORT_WORKSHARE = 0,
74 ORT_PARALLEL = 2,
75 ORT_COMBINED_PARALLEL = 3,
76 ORT_TASK = 4,
77 ORT_UNTIED_TASK = 5
80 struct gimplify_omp_ctx
82 struct gimplify_omp_ctx *outer_context;
83 splay_tree variables;
84 struct pointer_set_t *privatized_types;
85 location_t location;
86 enum omp_clause_default_kind default_kind;
87 enum omp_region_type region_type;
90 static struct gimplify_ctx *gimplify_ctxp;
91 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
94 /* Formal (expression) temporary table handling: multiple occurrences of
95 the same scalar expression are evaluated into the same temporary. */
97 typedef struct gimple_temp_hash_elt
99 tree val; /* Key */
100 tree temp; /* Value */
101 } elt_t;
103 /* Forward declaration. */
104 static enum gimplify_status gimplify_compound_expr (tree *, gimple_seq *, bool);
106 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
107 form and we don't do any syntax checking. */
109 void
110 mark_addressable (tree x)
112 while (handled_component_p (x))
113 x = TREE_OPERAND (x, 0);
114 if (TREE_CODE (x) == MEM_REF
115 && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
116 x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
117 if (TREE_CODE (x) != VAR_DECL
118 && TREE_CODE (x) != PARM_DECL
119 && TREE_CODE (x) != RESULT_DECL)
120 return;
121 TREE_ADDRESSABLE (x) = 1;
124 /* Return a hash value for a formal temporary table entry. */
126 static hashval_t
127 gimple_tree_hash (const void *p)
129 tree t = ((const elt_t *) p)->val;
130 return iterative_hash_expr (t, 0);
133 /* Compare two formal temporary table entries. */
135 static int
136 gimple_tree_eq (const void *p1, const void *p2)
138 tree t1 = ((const elt_t *) p1)->val;
139 tree t2 = ((const elt_t *) p2)->val;
140 enum tree_code code = TREE_CODE (t1);
142 if (TREE_CODE (t2) != code
143 || TREE_TYPE (t1) != TREE_TYPE (t2))
144 return 0;
146 if (!operand_equal_p (t1, t2, 0))
147 return 0;
149 #ifdef ENABLE_CHECKING
150 /* Only allow them to compare equal if they also hash equal; otherwise
151 results are nondeterminate, and we fail bootstrap comparison. */
152 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
153 #endif
155 return 1;
158 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
159 *SEQ_P is NULL, a new sequence is allocated. This function is
160 similar to gimple_seq_add_stmt, but does not scan the operands.
161 During gimplification, we need to manipulate statement sequences
162 before the def/use vectors have been constructed. */
164 void
165 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
167 gimple_stmt_iterator si;
169 if (gs == NULL)
170 return;
172 if (*seq_p == NULL)
173 *seq_p = gimple_seq_alloc ();
175 si = gsi_last (*seq_p);
177 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
180 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
181 NULL, a new sequence is allocated. This function is
182 similar to gimple_seq_add_seq, but does not scan the operands.
183 During gimplification, we need to manipulate statement sequences
184 before the def/use vectors have been constructed. */
186 static void
187 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
189 gimple_stmt_iterator si;
191 if (src == NULL)
192 return;
194 if (*dst_p == NULL)
195 *dst_p = gimple_seq_alloc ();
197 si = gsi_last (*dst_p);
198 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
201 /* Set up a context for the gimplifier. */
203 void
204 push_gimplify_context (struct gimplify_ctx *c)
206 memset (c, '\0', sizeof (*c));
207 c->prev_context = gimplify_ctxp;
208 gimplify_ctxp = c;
211 /* Tear down a context for the gimplifier. If BODY is non-null, then
212 put the temporaries into the outer BIND_EXPR. Otherwise, put them
213 in the local_decls.
215 BODY is not a sequence, but the first tuple in a sequence. */
217 void
218 pop_gimplify_context (gimple body)
220 struct gimplify_ctx *c = gimplify_ctxp;
222 gcc_assert (c && (c->bind_expr_stack == NULL
223 || VEC_empty (gimple, c->bind_expr_stack)));
224 VEC_free (gimple, heap, c->bind_expr_stack);
225 gimplify_ctxp = c->prev_context;
227 if (body)
228 declare_vars (c->temps, body, false);
229 else
230 record_vars (c->temps);
232 if (c->temp_htab)
233 htab_delete (c->temp_htab);
236 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
238 static void
239 gimple_push_bind_expr (gimple gimple_bind)
241 if (gimplify_ctxp->bind_expr_stack == NULL)
242 gimplify_ctxp->bind_expr_stack = VEC_alloc (gimple, heap, 8);
243 VEC_safe_push (gimple, heap, gimplify_ctxp->bind_expr_stack, gimple_bind);
246 /* Pop the first element off the stack of bindings. */
248 static void
249 gimple_pop_bind_expr (void)
251 VEC_pop (gimple, gimplify_ctxp->bind_expr_stack);
254 /* Return the first element of the stack of bindings. */
256 gimple
257 gimple_current_bind_expr (void)
259 return VEC_last (gimple, gimplify_ctxp->bind_expr_stack);
262 /* Return the stack of bindings created during gimplification. */
264 VEC(gimple, heap) *
265 gimple_bind_expr_stack (void)
267 return gimplify_ctxp->bind_expr_stack;
270 /* Return true iff there is a COND_EXPR between us and the innermost
271 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
273 static bool
274 gimple_conditional_context (void)
276 return gimplify_ctxp->conditions > 0;
279 /* Note that we've entered a COND_EXPR. */
281 static void
282 gimple_push_condition (void)
284 #ifdef ENABLE_GIMPLE_CHECKING
285 if (gimplify_ctxp->conditions == 0)
286 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
287 #endif
288 ++(gimplify_ctxp->conditions);
291 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
292 now, add any conditional cleanups we've seen to the prequeue. */
294 static void
295 gimple_pop_condition (gimple_seq *pre_p)
297 int conds = --(gimplify_ctxp->conditions);
299 gcc_assert (conds >= 0);
300 if (conds == 0)
302 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
303 gimplify_ctxp->conditional_cleanups = NULL;
307 /* A stable comparison routine for use with splay trees and DECLs. */
309 static int
310 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
312 tree a = (tree) xa;
313 tree b = (tree) xb;
315 return DECL_UID (a) - DECL_UID (b);
318 /* Create a new omp construct that deals with variable remapping. */
320 static struct gimplify_omp_ctx *
321 new_omp_context (enum omp_region_type region_type)
323 struct gimplify_omp_ctx *c;
325 c = XCNEW (struct gimplify_omp_ctx);
326 c->outer_context = gimplify_omp_ctxp;
327 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
328 c->privatized_types = pointer_set_create ();
329 c->location = input_location;
330 c->region_type = region_type;
331 if ((region_type & ORT_TASK) == 0)
332 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
333 else
334 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
336 return c;
339 /* Destroy an omp construct that deals with variable remapping. */
341 static void
342 delete_omp_context (struct gimplify_omp_ctx *c)
344 splay_tree_delete (c->variables);
345 pointer_set_destroy (c->privatized_types);
346 XDELETE (c);
349 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
350 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
352 /* Both gimplify the statement T and append it to *SEQ_P. This function
353 behaves exactly as gimplify_stmt, but you don't have to pass T as a
354 reference. */
356 void
357 gimplify_and_add (tree t, gimple_seq *seq_p)
359 gimplify_stmt (&t, seq_p);
362 /* Gimplify statement T into sequence *SEQ_P, and return the first
363 tuple in the sequence of generated tuples for this statement.
364 Return NULL if gimplifying T produced no tuples. */
366 static gimple
367 gimplify_and_return_first (tree t, gimple_seq *seq_p)
369 gimple_stmt_iterator last = gsi_last (*seq_p);
371 gimplify_and_add (t, seq_p);
373 if (!gsi_end_p (last))
375 gsi_next (&last);
376 return gsi_stmt (last);
378 else
379 return gimple_seq_first_stmt (*seq_p);
382 /* Strip off a legitimate source ending from the input string NAME of
383 length LEN. Rather than having to know the names used by all of
384 our front ends, we strip off an ending of a period followed by
385 up to five characters. (Java uses ".class".) */
387 static inline void
388 remove_suffix (char *name, int len)
390 int i;
392 for (i = 2; i < 8 && len > i; i++)
394 if (name[len - i] == '.')
396 name[len - i] = '\0';
397 break;
402 /* Create a new temporary name with PREFIX. Return an identifier. */
404 static GTY(()) unsigned int tmp_var_id_num;
406 tree
407 create_tmp_var_name (const char *prefix)
409 char *tmp_name;
411 if (prefix)
413 char *preftmp = ASTRDUP (prefix);
415 remove_suffix (preftmp, strlen (preftmp));
416 prefix = preftmp;
419 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
420 return get_identifier (tmp_name);
423 /* Create a new temporary variable declaration of type TYPE.
424 Do NOT push it into the current binding. */
426 tree
427 create_tmp_var_raw (tree type, const char *prefix)
429 tree tmp_var;
431 tmp_var = build_decl (input_location,
432 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
433 type);
435 /* The variable was declared by the compiler. */
436 DECL_ARTIFICIAL (tmp_var) = 1;
437 /* And we don't want debug info for it. */
438 DECL_IGNORED_P (tmp_var) = 1;
440 /* Make the variable writable. */
441 TREE_READONLY (tmp_var) = 0;
443 DECL_EXTERNAL (tmp_var) = 0;
444 TREE_STATIC (tmp_var) = 0;
445 TREE_USED (tmp_var) = 1;
447 return tmp_var;
450 /* Create a new temporary variable declaration of type TYPE. DO push the
451 variable into the current binding. Further, assume that this is called
452 only from gimplification or optimization, at which point the creation of
453 certain types are bugs. */
455 tree
456 create_tmp_var (tree type, const char *prefix)
458 tree tmp_var;
460 /* We don't allow types that are addressable (meaning we can't make copies),
461 or incomplete. We also used to reject every variable size objects here,
462 but now support those for which a constant upper bound can be obtained.
463 The processing for variable sizes is performed in gimple_add_tmp_var,
464 point at which it really matters and possibly reached via paths not going
465 through this function, e.g. after direct calls to create_tmp_var_raw. */
466 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
468 tmp_var = create_tmp_var_raw (type, prefix);
469 gimple_add_tmp_var (tmp_var);
470 return tmp_var;
473 /* Create a new temporary variable declaration of type TYPE by calling
474 create_tmp_var and if TYPE is a vector or a complex number, mark the new
475 temporary as gimple register. */
477 tree
478 create_tmp_reg (tree type, const char *prefix)
480 tree tmp;
482 tmp = create_tmp_var (type, prefix);
483 if (TREE_CODE (type) == COMPLEX_TYPE
484 || TREE_CODE (type) == VECTOR_TYPE)
485 DECL_GIMPLE_REG_P (tmp) = 1;
487 return tmp;
490 /* Create a temporary with a name derived from VAL. Subroutine of
491 lookup_tmp_var; nobody else should call this function. */
493 static inline tree
494 create_tmp_from_val (tree val)
496 return create_tmp_var (TREE_TYPE (val), get_name (val));
499 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
500 an existing expression temporary. */
502 static tree
503 lookup_tmp_var (tree val, bool is_formal)
505 tree ret;
507 /* If not optimizing, never really reuse a temporary. local-alloc
508 won't allocate any variable that is used in more than one basic
509 block, which means it will go into memory, causing much extra
510 work in reload and final and poorer code generation, outweighing
511 the extra memory allocation here. */
512 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
513 ret = create_tmp_from_val (val);
514 else
516 elt_t elt, *elt_p;
517 void **slot;
519 elt.val = val;
520 if (gimplify_ctxp->temp_htab == NULL)
521 gimplify_ctxp->temp_htab
522 = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
523 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
524 if (*slot == NULL)
526 elt_p = XNEW (elt_t);
527 elt_p->val = val;
528 elt_p->temp = ret = create_tmp_from_val (val);
529 *slot = (void *) elt_p;
531 else
533 elt_p = (elt_t *) *slot;
534 ret = elt_p->temp;
538 return ret;
541 /* Return true if T is a CALL_EXPR or an expression that can be
542 assigned to a temporary. Note that this predicate should only be
543 used during gimplification. See the rationale for this in
544 gimplify_modify_expr. */
546 static bool
547 is_gimple_reg_rhs_or_call (tree t)
549 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
550 || TREE_CODE (t) == CALL_EXPR);
553 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
554 this predicate should only be used during gimplification. See the
555 rationale for this in gimplify_modify_expr. */
557 static bool
558 is_gimple_mem_rhs_or_call (tree t)
560 /* If we're dealing with a renamable type, either source or dest must be
561 a renamed variable. */
562 if (is_gimple_reg_type (TREE_TYPE (t)))
563 return is_gimple_val (t);
564 else
565 return (is_gimple_val (t) || is_gimple_lvalue (t)
566 || TREE_CODE (t) == CALL_EXPR);
569 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
571 static tree
572 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
573 bool is_formal)
575 tree t, mod;
577 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
578 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
579 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
580 fb_rvalue);
582 t = lookup_tmp_var (val, is_formal);
584 if (is_formal
585 && (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
586 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE))
587 DECL_GIMPLE_REG_P (t) = 1;
589 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
591 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
593 /* gimplify_modify_expr might want to reduce this further. */
594 gimplify_and_add (mod, pre_p);
595 ggc_free (mod);
597 /* If we're gimplifying into ssa, gimplify_modify_expr will have
598 given our temporary an SSA name. Find and return it. */
599 if (gimplify_ctxp->into_ssa)
601 gimple last = gimple_seq_last_stmt (*pre_p);
602 t = gimple_get_lhs (last);
605 return t;
608 /* Return a formal temporary variable initialized with VAL. PRE_P is as
609 in gimplify_expr. Only use this function if:
611 1) The value of the unfactored expression represented by VAL will not
612 change between the initialization and use of the temporary, and
613 2) The temporary will not be otherwise modified.
615 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
616 and #2 means it is inappropriate for && temps.
618 For other cases, use get_initialized_tmp_var instead. */
620 tree
621 get_formal_tmp_var (tree val, gimple_seq *pre_p)
623 return internal_get_tmp_var (val, pre_p, NULL, true);
626 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
627 are as in gimplify_expr. */
629 tree
630 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
632 return internal_get_tmp_var (val, pre_p, post_p, false);
635 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
636 generate debug info for them; otherwise don't. */
638 void
639 declare_vars (tree vars, gimple scope, bool debug_info)
641 tree last = vars;
642 if (last)
644 tree temps, block;
646 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
648 temps = nreverse (last);
650 block = gimple_bind_block (scope);
651 gcc_assert (!block || TREE_CODE (block) == BLOCK);
652 if (!block || !debug_info)
654 DECL_CHAIN (last) = gimple_bind_vars (scope);
655 gimple_bind_set_vars (scope, temps);
657 else
659 /* We need to attach the nodes both to the BIND_EXPR and to its
660 associated BLOCK for debugging purposes. The key point here
661 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
662 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
663 if (BLOCK_VARS (block))
664 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
665 else
667 gimple_bind_set_vars (scope,
668 chainon (gimple_bind_vars (scope), temps));
669 BLOCK_VARS (block) = temps;
675 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
676 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
677 no such upper bound can be obtained. */
679 static void
680 force_constant_size (tree var)
682 /* The only attempt we make is by querying the maximum size of objects
683 of the variable's type. */
685 HOST_WIDE_INT max_size;
687 gcc_assert (TREE_CODE (var) == VAR_DECL);
689 max_size = max_int_size_in_bytes (TREE_TYPE (var));
691 gcc_assert (max_size >= 0);
693 DECL_SIZE_UNIT (var)
694 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
695 DECL_SIZE (var)
696 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
699 /* Push the temporary variable TMP into the current binding. */
701 void
702 gimple_add_tmp_var (tree tmp)
704 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
706 /* Later processing assumes that the object size is constant, which might
707 not be true at this point. Force the use of a constant upper bound in
708 this case. */
709 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
710 force_constant_size (tmp);
712 DECL_CONTEXT (tmp) = current_function_decl;
713 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
715 if (gimplify_ctxp)
717 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
718 gimplify_ctxp->temps = tmp;
720 /* Mark temporaries local within the nearest enclosing parallel. */
721 if (gimplify_omp_ctxp)
723 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
724 while (ctx && ctx->region_type == ORT_WORKSHARE)
725 ctx = ctx->outer_context;
726 if (ctx)
727 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
730 else if (cfun)
731 record_vars (tmp);
732 else
734 gimple_seq body_seq;
736 /* This case is for nested functions. We need to expose the locals
737 they create. */
738 body_seq = gimple_body (current_function_decl);
739 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
743 /* Determine whether to assign a location to the statement GS. */
745 static bool
746 should_carry_location_p (gimple gs)
748 /* Don't emit a line note for a label. We particularly don't want to
749 emit one for the break label, since it doesn't actually correspond
750 to the beginning of the loop/switch. */
751 if (gimple_code (gs) == GIMPLE_LABEL)
752 return false;
754 return true;
757 /* Return true if a location should not be emitted for this statement
758 by annotate_one_with_location. */
760 static inline bool
761 gimple_do_not_emit_location_p (gimple g)
763 return gimple_plf (g, GF_PLF_1);
766 /* Mark statement G so a location will not be emitted by
767 annotate_one_with_location. */
769 static inline void
770 gimple_set_do_not_emit_location (gimple g)
772 /* The PLF flags are initialized to 0 when a new tuple is created,
773 so no need to initialize it anywhere. */
774 gimple_set_plf (g, GF_PLF_1, true);
777 /* Set the location for gimple statement GS to LOCATION. */
779 static void
780 annotate_one_with_location (gimple gs, location_t location)
782 if (!gimple_has_location (gs)
783 && !gimple_do_not_emit_location_p (gs)
784 && should_carry_location_p (gs))
785 gimple_set_location (gs, location);
788 /* Set LOCATION for all the statements after iterator GSI in sequence
789 SEQ. If GSI is pointing to the end of the sequence, start with the
790 first statement in SEQ. */
792 static void
793 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
794 location_t location)
796 if (gsi_end_p (gsi))
797 gsi = gsi_start (seq);
798 else
799 gsi_next (&gsi);
801 for (; !gsi_end_p (gsi); gsi_next (&gsi))
802 annotate_one_with_location (gsi_stmt (gsi), location);
805 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
807 void
808 annotate_all_with_location (gimple_seq stmt_p, location_t location)
810 gimple_stmt_iterator i;
812 if (gimple_seq_empty_p (stmt_p))
813 return;
815 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
817 gimple gs = gsi_stmt (i);
818 annotate_one_with_location (gs, location);
822 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
823 nodes that are referenced more than once in GENERIC functions. This is
824 necessary because gimplification (translation into GIMPLE) is performed
825 by modifying tree nodes in-place, so gimplication of a shared node in a
826 first context could generate an invalid GIMPLE form in a second context.
828 This is achieved with a simple mark/copy/unmark algorithm that walks the
829 GENERIC representation top-down, marks nodes with TREE_VISITED the first
830 time it encounters them, duplicates them if they already have TREE_VISITED
831 set, and finally removes the TREE_VISITED marks it has set.
833 The algorithm works only at the function level, i.e. it generates a GENERIC
834 representation of a function with no nodes shared within the function when
835 passed a GENERIC function (except for nodes that are allowed to be shared).
837 At the global level, it is also necessary to unshare tree nodes that are
838 referenced in more than one function, for the same aforementioned reason.
839 This requires some cooperation from the front-end. There are 2 strategies:
841 1. Manual unsharing. The front-end needs to call unshare_expr on every
842 expression that might end up being shared across functions.
844 2. Deep unsharing. This is an extension of regular unsharing. Instead
845 of calling unshare_expr on expressions that might be shared across
846 functions, the front-end pre-marks them with TREE_VISITED. This will
847 ensure that they are unshared on the first reference within functions
848 when the regular unsharing algorithm runs. The counterpart is that
849 this algorithm must look deeper than for manual unsharing, which is
850 specified by LANG_HOOKS_DEEP_UNSHARING.
852 If there are only few specific cases of node sharing across functions, it is
853 probably easier for a front-end to unshare the expressions manually. On the
854 contrary, if the expressions generated at the global level are as widespread
855 as expressions generated within functions, deep unsharing is very likely the
856 way to go. */
858 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
859 These nodes model computations that should only be done once. If we
860 were to unshare something like SAVE_EXPR(i++), the gimplification
861 process would create wrong code. */
863 static tree
864 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
866 tree t = *tp;
867 enum tree_code code = TREE_CODE (t);
869 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
870 copy their subtrees if we can make sure to do it only once. */
871 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
873 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
875 else
876 *walk_subtrees = 0;
879 /* Stop at types, decls, constants like copy_tree_r. */
880 else if (TREE_CODE_CLASS (code) == tcc_type
881 || TREE_CODE_CLASS (code) == tcc_declaration
882 || TREE_CODE_CLASS (code) == tcc_constant
883 /* We can't do anything sensible with a BLOCK used as an
884 expression, but we also can't just die when we see it
885 because of non-expression uses. So we avert our eyes
886 and cross our fingers. Silly Java. */
887 || code == BLOCK)
888 *walk_subtrees = 0;
890 /* Cope with the statement expression extension. */
891 else if (code == STATEMENT_LIST)
894 /* Leave the bulk of the work to copy_tree_r itself. */
895 else
896 copy_tree_r (tp, walk_subtrees, NULL);
898 return NULL_TREE;
901 /* Callback for walk_tree to unshare most of the shared trees rooted at
902 *TP. If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
903 then *TP is deep copied by calling mostly_copy_tree_r. */
905 static tree
906 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
908 tree t = *tp;
909 enum tree_code code = TREE_CODE (t);
911 /* Skip types, decls, and constants. But we do want to look at their
912 types and the bounds of types. Mark them as visited so we properly
913 unmark their subtrees on the unmark pass. If we've already seen them,
914 don't look down further. */
915 if (TREE_CODE_CLASS (code) == tcc_type
916 || TREE_CODE_CLASS (code) == tcc_declaration
917 || TREE_CODE_CLASS (code) == tcc_constant)
919 if (TREE_VISITED (t))
920 *walk_subtrees = 0;
921 else
922 TREE_VISITED (t) = 1;
925 /* If this node has been visited already, unshare it and don't look
926 any deeper. */
927 else if (TREE_VISITED (t))
929 walk_tree (tp, mostly_copy_tree_r, data, NULL);
930 *walk_subtrees = 0;
933 /* Otherwise, mark the node as visited and keep looking. */
934 else
935 TREE_VISITED (t) = 1;
937 return NULL_TREE;
940 /* Unshare most of the shared trees rooted at *TP. */
942 static inline void
943 copy_if_shared (tree *tp)
945 /* If the language requires deep unsharing, we need a pointer set to make
946 sure we don't repeatedly unshare subtrees of unshareable nodes. */
947 struct pointer_set_t *visited
948 = lang_hooks.deep_unsharing ? pointer_set_create () : NULL;
949 walk_tree (tp, copy_if_shared_r, visited, NULL);
950 if (visited)
951 pointer_set_destroy (visited);
954 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
955 bodies of any nested functions if we are unsharing the entire body of
956 FNDECL. */
958 static void
959 unshare_body (tree *body_p, tree fndecl)
961 struct cgraph_node *cgn = cgraph_get_node (fndecl);
963 copy_if_shared (body_p);
965 if (cgn && body_p == &DECL_SAVED_TREE (fndecl))
966 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
967 unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
970 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
971 Subtrees are walked until the first unvisited node is encountered. */
973 static tree
974 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
976 tree t = *tp;
978 /* If this node has been visited, unmark it and keep looking. */
979 if (TREE_VISITED (t))
980 TREE_VISITED (t) = 0;
982 /* Otherwise, don't look any deeper. */
983 else
984 *walk_subtrees = 0;
986 return NULL_TREE;
989 /* Unmark the visited trees rooted at *TP. */
991 static inline void
992 unmark_visited (tree *tp)
994 walk_tree (tp, unmark_visited_r, NULL, NULL);
997 /* Likewise, but mark all trees as not visited. */
999 static void
1000 unvisit_body (tree *body_p, tree fndecl)
1002 struct cgraph_node *cgn = cgraph_get_node (fndecl);
1004 unmark_visited (body_p);
1006 if (cgn && body_p == &DECL_SAVED_TREE (fndecl))
1007 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1008 unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
1011 /* Unconditionally make an unshared copy of EXPR. This is used when using
1012 stored expressions which span multiple functions, such as BINFO_VTABLE,
1013 as the normal unsharing process can't tell that they're shared. */
1015 tree
1016 unshare_expr (tree expr)
1018 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1019 return expr;
1022 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1023 contain statements and have a value. Assign its value to a temporary
1024 and give it void_type_node. Return the temporary, or NULL_TREE if
1025 WRAPPER was already void. */
1027 tree
1028 voidify_wrapper_expr (tree wrapper, tree temp)
1030 tree type = TREE_TYPE (wrapper);
1031 if (type && !VOID_TYPE_P (type))
1033 tree *p;
1035 /* Set p to point to the body of the wrapper. Loop until we find
1036 something that isn't a wrapper. */
1037 for (p = &wrapper; p && *p; )
1039 switch (TREE_CODE (*p))
1041 case BIND_EXPR:
1042 TREE_SIDE_EFFECTS (*p) = 1;
1043 TREE_TYPE (*p) = void_type_node;
1044 /* For a BIND_EXPR, the body is operand 1. */
1045 p = &BIND_EXPR_BODY (*p);
1046 break;
1048 case CLEANUP_POINT_EXPR:
1049 case TRY_FINALLY_EXPR:
1050 case TRY_CATCH_EXPR:
1051 TREE_SIDE_EFFECTS (*p) = 1;
1052 TREE_TYPE (*p) = void_type_node;
1053 p = &TREE_OPERAND (*p, 0);
1054 break;
1056 case STATEMENT_LIST:
1058 tree_stmt_iterator i = tsi_last (*p);
1059 TREE_SIDE_EFFECTS (*p) = 1;
1060 TREE_TYPE (*p) = void_type_node;
1061 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1063 break;
1065 case COMPOUND_EXPR:
1066 /* Advance to the last statement. Set all container types to
1067 void. */
1068 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1070 TREE_SIDE_EFFECTS (*p) = 1;
1071 TREE_TYPE (*p) = void_type_node;
1073 break;
1075 default:
1076 goto out;
1080 out:
1081 if (p == NULL || IS_EMPTY_STMT (*p))
1082 temp = NULL_TREE;
1083 else if (temp)
1085 /* The wrapper is on the RHS of an assignment that we're pushing
1086 down. */
1087 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1088 || TREE_CODE (temp) == MODIFY_EXPR);
1089 TREE_OPERAND (temp, 1) = *p;
1090 *p = temp;
1092 else
1094 temp = create_tmp_var (type, "retval");
1095 *p = build2 (INIT_EXPR, type, temp, *p);
1098 return temp;
1101 return NULL_TREE;
1104 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1105 a temporary through which they communicate. */
1107 static void
1108 build_stack_save_restore (gimple *save, gimple *restore)
1110 tree tmp_var;
1112 *save = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0);
1113 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1114 gimple_call_set_lhs (*save, tmp_var);
1116 *restore
1117 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE),
1118 1, tmp_var);
1121 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1123 static enum gimplify_status
1124 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1126 tree bind_expr = *expr_p;
1127 bool old_save_stack = gimplify_ctxp->save_stack;
1128 tree t;
1129 gimple gimple_bind;
1130 gimple_seq body;
1132 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1134 /* Mark variables seen in this bind expr. */
1135 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1137 if (TREE_CODE (t) == VAR_DECL)
1139 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1141 /* Mark variable as local. */
1142 if (ctx && !DECL_EXTERNAL (t)
1143 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1144 || splay_tree_lookup (ctx->variables,
1145 (splay_tree_key) t) == NULL))
1146 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1148 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1150 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1151 cfun->has_local_explicit_reg_vars = true;
1154 /* Preliminarily mark non-addressed complex variables as eligible
1155 for promotion to gimple registers. We'll transform their uses
1156 as we find them. */
1157 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1158 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1159 && !TREE_THIS_VOLATILE (t)
1160 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1161 && !needs_to_live_in_memory (t))
1162 DECL_GIMPLE_REG_P (t) = 1;
1165 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1166 BIND_EXPR_BLOCK (bind_expr));
1167 gimple_push_bind_expr (gimple_bind);
1169 gimplify_ctxp->save_stack = false;
1171 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1172 body = NULL;
1173 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1174 gimple_bind_set_body (gimple_bind, body);
1176 if (gimplify_ctxp->save_stack)
1178 gimple stack_save, stack_restore, gs;
1179 gimple_seq cleanup, new_body;
1181 /* Save stack on entry and restore it on exit. Add a try_finally
1182 block to achieve this. Note that mudflap depends on the
1183 format of the emitted code: see mx_register_decls(). */
1184 build_stack_save_restore (&stack_save, &stack_restore);
1186 cleanup = new_body = NULL;
1187 gimplify_seq_add_stmt (&cleanup, stack_restore);
1188 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1189 GIMPLE_TRY_FINALLY);
1191 gimplify_seq_add_stmt (&new_body, stack_save);
1192 gimplify_seq_add_stmt (&new_body, gs);
1193 gimple_bind_set_body (gimple_bind, new_body);
1196 gimplify_ctxp->save_stack = old_save_stack;
1197 gimple_pop_bind_expr ();
1199 gimplify_seq_add_stmt (pre_p, gimple_bind);
1201 if (temp)
1203 *expr_p = temp;
1204 return GS_OK;
1207 *expr_p = NULL_TREE;
1208 return GS_ALL_DONE;
1211 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1212 GIMPLE value, it is assigned to a new temporary and the statement is
1213 re-written to return the temporary.
1215 PRE_P points to the sequence where side effects that must happen before
1216 STMT should be stored. */
1218 static enum gimplify_status
1219 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1221 gimple ret;
1222 tree ret_expr = TREE_OPERAND (stmt, 0);
1223 tree result_decl, result;
1225 if (ret_expr == error_mark_node)
1226 return GS_ERROR;
1228 if (!ret_expr
1229 || TREE_CODE (ret_expr) == RESULT_DECL
1230 || ret_expr == error_mark_node)
1232 gimple ret = gimple_build_return (ret_expr);
1233 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1234 gimplify_seq_add_stmt (pre_p, ret);
1235 return GS_ALL_DONE;
1238 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1239 result_decl = NULL_TREE;
1240 else
1242 result_decl = TREE_OPERAND (ret_expr, 0);
1244 /* See through a return by reference. */
1245 if (TREE_CODE (result_decl) == INDIRECT_REF)
1246 result_decl = TREE_OPERAND (result_decl, 0);
1248 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1249 || TREE_CODE (ret_expr) == INIT_EXPR)
1250 && TREE_CODE (result_decl) == RESULT_DECL);
1253 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1254 Recall that aggregate_value_p is FALSE for any aggregate type that is
1255 returned in registers. If we're returning values in registers, then
1256 we don't want to extend the lifetime of the RESULT_DECL, particularly
1257 across another call. In addition, for those aggregates for which
1258 hard_function_value generates a PARALLEL, we'll die during normal
1259 expansion of structure assignments; there's special code in expand_return
1260 to handle this case that does not exist in expand_expr. */
1261 if (!result_decl)
1262 result = NULL_TREE;
1263 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1265 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1267 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1268 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1269 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1270 should be effectively allocated by the caller, i.e. all calls to
1271 this function must be subject to the Return Slot Optimization. */
1272 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1273 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1275 result = result_decl;
1277 else if (gimplify_ctxp->return_temp)
1278 result = gimplify_ctxp->return_temp;
1279 else
1281 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1283 /* ??? With complex control flow (usually involving abnormal edges),
1284 we can wind up warning about an uninitialized value for this. Due
1285 to how this variable is constructed and initialized, this is never
1286 true. Give up and never warn. */
1287 TREE_NO_WARNING (result) = 1;
1289 gimplify_ctxp->return_temp = result;
1292 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1293 Then gimplify the whole thing. */
1294 if (result != result_decl)
1295 TREE_OPERAND (ret_expr, 0) = result;
1297 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1299 ret = gimple_build_return (result);
1300 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1301 gimplify_seq_add_stmt (pre_p, ret);
1303 return GS_ALL_DONE;
1306 /* Gimplify a variable-length array DECL. */
1308 static void
1309 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1311 /* This is a variable-sized decl. Simplify its size and mark it
1312 for deferred expansion. Note that mudflap depends on the format
1313 of the emitted code: see mx_register_decls(). */
1314 tree t, addr, ptr_type;
1316 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1317 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1319 /* All occurrences of this decl in final gimplified code will be
1320 replaced by indirection. Setting DECL_VALUE_EXPR does two
1321 things: First, it lets the rest of the gimplifier know what
1322 replacement to use. Second, it lets the debug info know
1323 where to find the value. */
1324 ptr_type = build_pointer_type (TREE_TYPE (decl));
1325 addr = create_tmp_var (ptr_type, get_name (decl));
1326 DECL_IGNORED_P (addr) = 0;
1327 t = build_fold_indirect_ref (addr);
1328 TREE_THIS_NOTRAP (t) = 1;
1329 SET_DECL_VALUE_EXPR (decl, t);
1330 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1332 t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
1333 t = build_call_expr (t, 2, DECL_SIZE_UNIT (decl),
1334 size_int (DECL_ALIGN (decl)));
1335 /* The call has been built for a variable-sized object. */
1336 CALL_ALLOCA_FOR_VAR_P (t) = 1;
1337 t = fold_convert (ptr_type, t);
1338 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1340 gimplify_and_add (t, seq_p);
1342 /* Indicate that we need to restore the stack level when the
1343 enclosing BIND_EXPR is exited. */
1344 gimplify_ctxp->save_stack = true;
1347 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1348 and initialization explicit. */
1350 static enum gimplify_status
1351 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1353 tree stmt = *stmt_p;
1354 tree decl = DECL_EXPR_DECL (stmt);
1356 *stmt_p = NULL_TREE;
1358 if (TREE_TYPE (decl) == error_mark_node)
1359 return GS_ERROR;
1361 if ((TREE_CODE (decl) == TYPE_DECL
1362 || TREE_CODE (decl) == VAR_DECL)
1363 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1364 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1366 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1368 tree init = DECL_INITIAL (decl);
1370 if (TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1371 || (!TREE_STATIC (decl)
1372 && flag_stack_check == GENERIC_STACK_CHECK
1373 && compare_tree_int (DECL_SIZE_UNIT (decl),
1374 STACK_CHECK_MAX_VAR_SIZE) > 0))
1375 gimplify_vla_decl (decl, seq_p);
1377 /* Some front ends do not explicitly declare all anonymous
1378 artificial variables. We compensate here by declaring the
1379 variables, though it would be better if the front ends would
1380 explicitly declare them. */
1381 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1382 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1383 gimple_add_tmp_var (decl);
1385 if (init && init != error_mark_node)
1387 if (!TREE_STATIC (decl))
1389 DECL_INITIAL (decl) = NULL_TREE;
1390 init = build2 (INIT_EXPR, void_type_node, decl, init);
1391 gimplify_and_add (init, seq_p);
1392 ggc_free (init);
1394 else
1395 /* We must still examine initializers for static variables
1396 as they may contain a label address. */
1397 walk_tree (&init, force_labels_r, NULL, NULL);
1401 return GS_ALL_DONE;
1404 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1405 and replacing the LOOP_EXPR with goto, but if the loop contains an
1406 EXIT_EXPR, we need to append a label for it to jump to. */
1408 static enum gimplify_status
1409 gimplify_loop_expr (tree *expr_p, gimple_seq *pre_p)
1411 tree saved_label = gimplify_ctxp->exit_label;
1412 tree start_label = create_artificial_label (UNKNOWN_LOCATION);
1414 gimplify_seq_add_stmt (pre_p, gimple_build_label (start_label));
1416 gimplify_ctxp->exit_label = NULL_TREE;
1418 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1420 gimplify_seq_add_stmt (pre_p, gimple_build_goto (start_label));
1422 if (gimplify_ctxp->exit_label)
1423 gimplify_seq_add_stmt (pre_p,
1424 gimple_build_label (gimplify_ctxp->exit_label));
1426 gimplify_ctxp->exit_label = saved_label;
1428 *expr_p = NULL;
1429 return GS_ALL_DONE;
1432 /* Gimplify a statement list onto a sequence. These may be created either
1433 by an enlightened front-end, or by shortcut_cond_expr. */
1435 static enum gimplify_status
1436 gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
1438 tree temp = voidify_wrapper_expr (*expr_p, NULL);
1440 tree_stmt_iterator i = tsi_start (*expr_p);
1442 while (!tsi_end_p (i))
1444 gimplify_stmt (tsi_stmt_ptr (i), pre_p);
1445 tsi_delink (&i);
1448 if (temp)
1450 *expr_p = temp;
1451 return GS_OK;
1454 return GS_ALL_DONE;
1457 /* Compare two case labels. Because the front end should already have
1458 made sure that case ranges do not overlap, it is enough to only compare
1459 the CASE_LOW values of each case label. */
1461 static int
1462 compare_case_labels (const void *p1, const void *p2)
1464 const_tree const case1 = *(const_tree const*)p1;
1465 const_tree const case2 = *(const_tree const*)p2;
1467 /* The 'default' case label always goes first. */
1468 if (!CASE_LOW (case1))
1469 return -1;
1470 else if (!CASE_LOW (case2))
1471 return 1;
1472 else
1473 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1476 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1478 void
1479 sort_case_labels (VEC(tree,heap)* label_vec)
1481 VEC_qsort (tree, label_vec, compare_case_labels);
1484 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1485 branch to. */
1487 static enum gimplify_status
1488 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1490 tree switch_expr = *expr_p;
1491 gimple_seq switch_body_seq = NULL;
1492 enum gimplify_status ret;
1494 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1495 fb_rvalue);
1496 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1497 return ret;
1499 if (SWITCH_BODY (switch_expr))
1501 VEC (tree,heap) *labels;
1502 VEC (tree,heap) *saved_labels;
1503 tree default_case = NULL_TREE;
1504 size_t i, len;
1505 gimple gimple_switch;
1507 /* If someone can be bothered to fill in the labels, they can
1508 be bothered to null out the body too. */
1509 gcc_assert (!SWITCH_LABELS (switch_expr));
1511 /* save old labels, get new ones from body, then restore the old
1512 labels. Save all the things from the switch body to append after. */
1513 saved_labels = gimplify_ctxp->case_labels;
1514 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1516 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1517 labels = gimplify_ctxp->case_labels;
1518 gimplify_ctxp->case_labels = saved_labels;
1520 i = 0;
1521 while (i < VEC_length (tree, labels))
1523 tree elt = VEC_index (tree, labels, i);
1524 tree low = CASE_LOW (elt);
1525 bool remove_element = FALSE;
1527 if (low)
1529 /* Discard empty ranges. */
1530 tree high = CASE_HIGH (elt);
1531 if (high && tree_int_cst_lt (high, low))
1532 remove_element = TRUE;
1534 else
1536 /* The default case must be the last label in the list. */
1537 gcc_assert (!default_case);
1538 default_case = elt;
1539 remove_element = TRUE;
1542 if (remove_element)
1543 VEC_ordered_remove (tree, labels, i);
1544 else
1545 i++;
1547 len = i;
1549 if (!VEC_empty (tree, labels))
1550 sort_case_labels (labels);
1552 if (!default_case)
1554 tree type = TREE_TYPE (switch_expr);
1556 /* If the switch has no default label, add one, so that we jump
1557 around the switch body. If the labels already cover the whole
1558 range of type, add the default label pointing to one of the
1559 existing labels. */
1560 if (type == void_type_node)
1561 type = TREE_TYPE (SWITCH_COND (switch_expr));
1562 if (len
1563 && INTEGRAL_TYPE_P (type)
1564 && TYPE_MIN_VALUE (type)
1565 && TYPE_MAX_VALUE (type)
1566 && tree_int_cst_equal (CASE_LOW (VEC_index (tree, labels, 0)),
1567 TYPE_MIN_VALUE (type)))
1569 tree low, high = CASE_HIGH (VEC_index (tree, labels, len - 1));
1570 if (!high)
1571 high = CASE_LOW (VEC_index (tree, labels, len - 1));
1572 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (type)))
1574 for (i = 1; i < len; i++)
1576 high = CASE_LOW (VEC_index (tree, labels, i));
1577 low = CASE_HIGH (VEC_index (tree, labels, i - 1));
1578 if (!low)
1579 low = CASE_LOW (VEC_index (tree, labels, i - 1));
1580 if ((TREE_INT_CST_LOW (low) + 1
1581 != TREE_INT_CST_LOW (high))
1582 || (TREE_INT_CST_HIGH (low)
1583 + (TREE_INT_CST_LOW (high) == 0)
1584 != TREE_INT_CST_HIGH (high)))
1585 break;
1587 if (i == len)
1589 tree label = CASE_LABEL (VEC_index (tree, labels, 0));
1590 default_case = build_case_label (NULL_TREE, NULL_TREE,
1591 label);
1596 if (!default_case)
1598 gimple new_default;
1600 default_case
1601 = build_case_label (NULL_TREE, NULL_TREE,
1602 create_artificial_label (UNKNOWN_LOCATION));
1603 new_default = gimple_build_label (CASE_LABEL (default_case));
1604 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1608 gimple_switch = gimple_build_switch_vec (SWITCH_COND (switch_expr),
1609 default_case, labels);
1610 gimplify_seq_add_stmt (pre_p, gimple_switch);
1611 gimplify_seq_add_seq (pre_p, switch_body_seq);
1612 VEC_free(tree, heap, labels);
1614 else
1615 gcc_assert (SWITCH_LABELS (switch_expr));
1617 return GS_ALL_DONE;
1620 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1622 static enum gimplify_status
1623 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1625 struct gimplify_ctx *ctxp;
1626 gimple gimple_label;
1628 /* Invalid OpenMP programs can play Duff's Device type games with
1629 #pragma omp parallel. At least in the C front end, we don't
1630 detect such invalid branches until after gimplification. */
1631 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1632 if (ctxp->case_labels)
1633 break;
1635 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1636 VEC_safe_push (tree, heap, ctxp->case_labels, *expr_p);
1637 gimplify_seq_add_stmt (pre_p, gimple_label);
1639 return GS_ALL_DONE;
1642 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1643 if necessary. */
1645 tree
1646 build_and_jump (tree *label_p)
1648 if (label_p == NULL)
1649 /* If there's nowhere to jump, just fall through. */
1650 return NULL_TREE;
1652 if (*label_p == NULL_TREE)
1654 tree label = create_artificial_label (UNKNOWN_LOCATION);
1655 *label_p = label;
1658 return build1 (GOTO_EXPR, void_type_node, *label_p);
1661 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1662 This also involves building a label to jump to and communicating it to
1663 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1665 static enum gimplify_status
1666 gimplify_exit_expr (tree *expr_p)
1668 tree cond = TREE_OPERAND (*expr_p, 0);
1669 tree expr;
1671 expr = build_and_jump (&gimplify_ctxp->exit_label);
1672 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1673 *expr_p = expr;
1675 return GS_OK;
1678 /* A helper function to be called via walk_tree. Mark all labels under *TP
1679 as being forced. To be called for DECL_INITIAL of static variables. */
1681 tree
1682 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1684 if (TYPE_P (*tp))
1685 *walk_subtrees = 0;
1686 if (TREE_CODE (*tp) == LABEL_DECL)
1687 FORCED_LABEL (*tp) = 1;
1689 return NULL_TREE;
1692 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1693 different from its canonical type, wrap the whole thing inside a
1694 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1695 type.
1697 The canonical type of a COMPONENT_REF is the type of the field being
1698 referenced--unless the field is a bit-field which can be read directly
1699 in a smaller mode, in which case the canonical type is the
1700 sign-appropriate type corresponding to that mode. */
1702 static void
1703 canonicalize_component_ref (tree *expr_p)
1705 tree expr = *expr_p;
1706 tree type;
1708 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1710 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1711 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1712 else
1713 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1715 /* One could argue that all the stuff below is not necessary for
1716 the non-bitfield case and declare it a FE error if type
1717 adjustment would be needed. */
1718 if (TREE_TYPE (expr) != type)
1720 #ifdef ENABLE_TYPES_CHECKING
1721 tree old_type = TREE_TYPE (expr);
1722 #endif
1723 int type_quals;
1725 /* We need to preserve qualifiers and propagate them from
1726 operand 0. */
1727 type_quals = TYPE_QUALS (type)
1728 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1729 if (TYPE_QUALS (type) != type_quals)
1730 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1732 /* Set the type of the COMPONENT_REF to the underlying type. */
1733 TREE_TYPE (expr) = type;
1735 #ifdef ENABLE_TYPES_CHECKING
1736 /* It is now a FE error, if the conversion from the canonical
1737 type to the original expression type is not useless. */
1738 gcc_assert (useless_type_conversion_p (old_type, type));
1739 #endif
1743 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1744 to foo, embed that change in the ADDR_EXPR by converting
1745 T array[U];
1746 (T *)&array
1748 &array[L]
1749 where L is the lower bound. For simplicity, only do this for constant
1750 lower bound.
1751 The constraint is that the type of &array[L] is trivially convertible
1752 to T *. */
1754 static void
1755 canonicalize_addr_expr (tree *expr_p)
1757 tree expr = *expr_p;
1758 tree addr_expr = TREE_OPERAND (expr, 0);
1759 tree datype, ddatype, pddatype;
1761 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1762 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1763 || TREE_CODE (addr_expr) != ADDR_EXPR)
1764 return;
1766 /* The addr_expr type should be a pointer to an array. */
1767 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1768 if (TREE_CODE (datype) != ARRAY_TYPE)
1769 return;
1771 /* The pointer to element type shall be trivially convertible to
1772 the expression pointer type. */
1773 ddatype = TREE_TYPE (datype);
1774 pddatype = build_pointer_type (ddatype);
1775 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1776 pddatype))
1777 return;
1779 /* The lower bound and element sizes must be constant. */
1780 if (!TYPE_SIZE_UNIT (ddatype)
1781 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1782 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1783 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1784 return;
1786 /* All checks succeeded. Build a new node to merge the cast. */
1787 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1788 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1789 NULL_TREE, NULL_TREE);
1790 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1792 /* We can have stripped a required restrict qualifier above. */
1793 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1794 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1797 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1798 underneath as appropriate. */
1800 static enum gimplify_status
1801 gimplify_conversion (tree *expr_p)
1803 location_t loc = EXPR_LOCATION (*expr_p);
1804 gcc_assert (CONVERT_EXPR_P (*expr_p));
1806 /* Then strip away all but the outermost conversion. */
1807 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1809 /* And remove the outermost conversion if it's useless. */
1810 if (tree_ssa_useless_type_conversion (*expr_p))
1811 *expr_p = TREE_OPERAND (*expr_p, 0);
1813 /* If we still have a conversion at the toplevel,
1814 then canonicalize some constructs. */
1815 if (CONVERT_EXPR_P (*expr_p))
1817 tree sub = TREE_OPERAND (*expr_p, 0);
1819 /* If a NOP conversion is changing the type of a COMPONENT_REF
1820 expression, then canonicalize its type now in order to expose more
1821 redundant conversions. */
1822 if (TREE_CODE (sub) == COMPONENT_REF)
1823 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1825 /* If a NOP conversion is changing a pointer to array of foo
1826 to a pointer to foo, embed that change in the ADDR_EXPR. */
1827 else if (TREE_CODE (sub) == ADDR_EXPR)
1828 canonicalize_addr_expr (expr_p);
1831 /* If we have a conversion to a non-register type force the
1832 use of a VIEW_CONVERT_EXPR instead. */
1833 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
1834 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
1835 TREE_OPERAND (*expr_p, 0));
1837 return GS_OK;
1840 /* Nonlocal VLAs seen in the current function. */
1841 static struct pointer_set_t *nonlocal_vlas;
1843 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
1844 DECL_VALUE_EXPR, and it's worth re-examining things. */
1846 static enum gimplify_status
1847 gimplify_var_or_parm_decl (tree *expr_p)
1849 tree decl = *expr_p;
1851 /* ??? If this is a local variable, and it has not been seen in any
1852 outer BIND_EXPR, then it's probably the result of a duplicate
1853 declaration, for which we've already issued an error. It would
1854 be really nice if the front end wouldn't leak these at all.
1855 Currently the only known culprit is C++ destructors, as seen
1856 in g++.old-deja/g++.jason/binding.C. */
1857 if (TREE_CODE (decl) == VAR_DECL
1858 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
1859 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
1860 && decl_function_context (decl) == current_function_decl)
1862 gcc_assert (seen_error ());
1863 return GS_ERROR;
1866 /* When within an OpenMP context, notice uses of variables. */
1867 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
1868 return GS_ALL_DONE;
1870 /* If the decl is an alias for another expression, substitute it now. */
1871 if (DECL_HAS_VALUE_EXPR_P (decl))
1873 tree value_expr = DECL_VALUE_EXPR (decl);
1875 /* For referenced nonlocal VLAs add a decl for debugging purposes
1876 to the current function. */
1877 if (TREE_CODE (decl) == VAR_DECL
1878 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1879 && nonlocal_vlas != NULL
1880 && TREE_CODE (value_expr) == INDIRECT_REF
1881 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
1882 && decl_function_context (decl) != current_function_decl)
1884 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1885 while (ctx && ctx->region_type == ORT_WORKSHARE)
1886 ctx = ctx->outer_context;
1887 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
1889 tree copy = copy_node (decl), block;
1891 lang_hooks.dup_lang_specific_decl (copy);
1892 SET_DECL_RTL (copy, 0);
1893 TREE_USED (copy) = 1;
1894 block = DECL_INITIAL (current_function_decl);
1895 DECL_CHAIN (copy) = BLOCK_VARS (block);
1896 BLOCK_VARS (block) = copy;
1897 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
1898 DECL_HAS_VALUE_EXPR_P (copy) = 1;
1902 *expr_p = unshare_expr (value_expr);
1903 return GS_OK;
1906 return GS_ALL_DONE;
1909 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1910 node *EXPR_P.
1912 compound_lval
1913 : min_lval '[' val ']'
1914 | min_lval '.' ID
1915 | compound_lval '[' val ']'
1916 | compound_lval '.' ID
1918 This is not part of the original SIMPLE definition, which separates
1919 array and member references, but it seems reasonable to handle them
1920 together. Also, this way we don't run into problems with union
1921 aliasing; gcc requires that for accesses through a union to alias, the
1922 union reference must be explicit, which was not always the case when we
1923 were splitting up array and member refs.
1925 PRE_P points to the sequence where side effects that must happen before
1926 *EXPR_P should be stored.
1928 POST_P points to the sequence where side effects that must happen after
1929 *EXPR_P should be stored. */
1931 static enum gimplify_status
1932 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
1933 fallback_t fallback)
1935 tree *p;
1936 VEC(tree,heap) *stack;
1937 enum gimplify_status ret = GS_ALL_DONE, tret;
1938 int i;
1939 location_t loc = EXPR_LOCATION (*expr_p);
1940 tree expr = *expr_p;
1942 /* Create a stack of the subexpressions so later we can walk them in
1943 order from inner to outer. */
1944 stack = VEC_alloc (tree, heap, 10);
1946 /* We can handle anything that get_inner_reference can deal with. */
1947 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
1949 restart:
1950 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
1951 if (TREE_CODE (*p) == INDIRECT_REF)
1952 *p = fold_indirect_ref_loc (loc, *p);
1954 if (handled_component_p (*p))
1956 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
1957 additional COMPONENT_REFs. */
1958 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
1959 && gimplify_var_or_parm_decl (p) == GS_OK)
1960 goto restart;
1961 else
1962 break;
1964 VEC_safe_push (tree, heap, stack, *p);
1967 gcc_assert (VEC_length (tree, stack));
1969 /* Now STACK is a stack of pointers to all the refs we've walked through
1970 and P points to the innermost expression.
1972 Java requires that we elaborated nodes in source order. That
1973 means we must gimplify the inner expression followed by each of
1974 the indices, in order. But we can't gimplify the inner
1975 expression until we deal with any variable bounds, sizes, or
1976 positions in order to deal with PLACEHOLDER_EXPRs.
1978 So we do this in three steps. First we deal with the annotations
1979 for any variables in the components, then we gimplify the base,
1980 then we gimplify any indices, from left to right. */
1981 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
1983 tree t = VEC_index (tree, stack, i);
1985 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1987 /* Gimplify the low bound and element type size and put them into
1988 the ARRAY_REF. If these values are set, they have already been
1989 gimplified. */
1990 if (TREE_OPERAND (t, 2) == NULL_TREE)
1992 tree low = unshare_expr (array_ref_low_bound (t));
1993 if (!is_gimple_min_invariant (low))
1995 TREE_OPERAND (t, 2) = low;
1996 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
1997 post_p, is_gimple_reg,
1998 fb_rvalue);
1999 ret = MIN (ret, tret);
2002 else
2004 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2005 is_gimple_reg, fb_rvalue);
2006 ret = MIN (ret, tret);
2009 if (TREE_OPERAND (t, 3) == NULL_TREE)
2011 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2012 tree elmt_size = unshare_expr (array_ref_element_size (t));
2013 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2015 /* Divide the element size by the alignment of the element
2016 type (above). */
2017 elmt_size
2018 = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2020 if (!is_gimple_min_invariant (elmt_size))
2022 TREE_OPERAND (t, 3) = elmt_size;
2023 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2024 post_p, is_gimple_reg,
2025 fb_rvalue);
2026 ret = MIN (ret, tret);
2029 else
2031 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
2032 is_gimple_reg, fb_rvalue);
2033 ret = MIN (ret, tret);
2036 else if (TREE_CODE (t) == COMPONENT_REF)
2038 /* Set the field offset into T and gimplify it. */
2039 if (TREE_OPERAND (t, 2) == NULL_TREE)
2041 tree offset = unshare_expr (component_ref_field_offset (t));
2042 tree field = TREE_OPERAND (t, 1);
2043 tree factor
2044 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2046 /* Divide the offset by its alignment. */
2047 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2049 if (!is_gimple_min_invariant (offset))
2051 TREE_OPERAND (t, 2) = offset;
2052 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2053 post_p, is_gimple_reg,
2054 fb_rvalue);
2055 ret = MIN (ret, tret);
2058 else
2060 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2061 is_gimple_reg, fb_rvalue);
2062 ret = MIN (ret, tret);
2067 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2068 so as to match the min_lval predicate. Failure to do so may result
2069 in the creation of large aggregate temporaries. */
2070 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2071 fallback | fb_lvalue);
2072 ret = MIN (ret, tret);
2074 /* And finally, the indices and operands to BIT_FIELD_REF. During this
2075 loop we also remove any useless conversions. */
2076 for (; VEC_length (tree, stack) > 0; )
2078 tree t = VEC_pop (tree, stack);
2080 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2082 /* Gimplify the dimension. */
2083 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2085 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2086 is_gimple_val, fb_rvalue);
2087 ret = MIN (ret, tret);
2090 else if (TREE_CODE (t) == BIT_FIELD_REF)
2092 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2093 is_gimple_val, fb_rvalue);
2094 ret = MIN (ret, tret);
2095 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2096 is_gimple_val, fb_rvalue);
2097 ret = MIN (ret, tret);
2100 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
2102 /* The innermost expression P may have originally had
2103 TREE_SIDE_EFFECTS set which would have caused all the outer
2104 expressions in *EXPR_P leading to P to also have had
2105 TREE_SIDE_EFFECTS set. */
2106 recalculate_side_effects (t);
2109 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2110 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
2112 canonicalize_component_ref (expr_p);
2115 VEC_free (tree, heap, stack);
2117 gcc_assert (*expr_p == expr || ret != GS_ALL_DONE);
2119 return ret;
2122 /* Gimplify the self modifying expression pointed to by EXPR_P
2123 (++, --, +=, -=).
2125 PRE_P points to the list where side effects that must happen before
2126 *EXPR_P should be stored.
2128 POST_P points to the list where side effects that must happen after
2129 *EXPR_P should be stored.
2131 WANT_VALUE is nonzero iff we want to use the value of this expression
2132 in another expression. */
2134 static enum gimplify_status
2135 gimplify_self_mod_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2136 bool want_value)
2138 enum tree_code code;
2139 tree lhs, lvalue, rhs, t1;
2140 gimple_seq post = NULL, *orig_post_p = post_p;
2141 bool postfix;
2142 enum tree_code arith_code;
2143 enum gimplify_status ret;
2144 location_t loc = EXPR_LOCATION (*expr_p);
2146 code = TREE_CODE (*expr_p);
2148 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
2149 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
2151 /* Prefix or postfix? */
2152 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
2153 /* Faster to treat as prefix if result is not used. */
2154 postfix = want_value;
2155 else
2156 postfix = false;
2158 /* For postfix, make sure the inner expression's post side effects
2159 are executed after side effects from this expression. */
2160 if (postfix)
2161 post_p = &post;
2163 /* Add or subtract? */
2164 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2165 arith_code = PLUS_EXPR;
2166 else
2167 arith_code = MINUS_EXPR;
2169 /* Gimplify the LHS into a GIMPLE lvalue. */
2170 lvalue = TREE_OPERAND (*expr_p, 0);
2171 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2172 if (ret == GS_ERROR)
2173 return ret;
2175 /* Extract the operands to the arithmetic operation. */
2176 lhs = lvalue;
2177 rhs = TREE_OPERAND (*expr_p, 1);
2179 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2180 that as the result value and in the postqueue operation. We also
2181 make sure to make lvalue a minimal lval, see
2182 gcc.c-torture/execute/20040313-1.c for an example where this matters. */
2183 if (postfix)
2185 if (!is_gimple_min_lval (lvalue))
2187 mark_addressable (lvalue);
2188 lvalue = build_fold_addr_expr_loc (input_location, lvalue);
2189 gimplify_expr (&lvalue, pre_p, post_p, is_gimple_val, fb_rvalue);
2190 lvalue = build_fold_indirect_ref_loc (input_location, lvalue);
2192 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
2193 if (ret == GS_ERROR)
2194 return ret;
2197 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2198 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
2200 rhs = convert_to_ptrofftype_loc (loc, rhs);
2201 if (arith_code == MINUS_EXPR)
2202 rhs = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (rhs), rhs);
2203 arith_code = POINTER_PLUS_EXPR;
2206 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
2208 if (postfix)
2210 gimplify_assign (lvalue, t1, orig_post_p);
2211 gimplify_seq_add_seq (orig_post_p, post);
2212 *expr_p = lhs;
2213 return GS_ALL_DONE;
2215 else
2217 *expr_p = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
2218 return GS_OK;
2222 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2224 static void
2225 maybe_with_size_expr (tree *expr_p)
2227 tree expr = *expr_p;
2228 tree type = TREE_TYPE (expr);
2229 tree size;
2231 /* If we've already wrapped this or the type is error_mark_node, we can't do
2232 anything. */
2233 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2234 || type == error_mark_node)
2235 return;
2237 /* If the size isn't known or is a constant, we have nothing to do. */
2238 size = TYPE_SIZE_UNIT (type);
2239 if (!size || TREE_CODE (size) == INTEGER_CST)
2240 return;
2242 /* Otherwise, make a WITH_SIZE_EXPR. */
2243 size = unshare_expr (size);
2244 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2245 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2248 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2249 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2250 the CALL_EXPR. */
2252 static enum gimplify_status
2253 gimplify_arg (tree *arg_p, gimple_seq *pre_p, location_t call_location)
2255 bool (*test) (tree);
2256 fallback_t fb;
2258 /* In general, we allow lvalues for function arguments to avoid
2259 extra overhead of copying large aggregates out of even larger
2260 aggregates into temporaries only to copy the temporaries to
2261 the argument list. Make optimizers happy by pulling out to
2262 temporaries those types that fit in registers. */
2263 if (is_gimple_reg_type (TREE_TYPE (*arg_p)))
2264 test = is_gimple_val, fb = fb_rvalue;
2265 else
2267 test = is_gimple_lvalue, fb = fb_either;
2268 /* Also strip a TARGET_EXPR that would force an extra copy. */
2269 if (TREE_CODE (*arg_p) == TARGET_EXPR)
2271 tree init = TARGET_EXPR_INITIAL (*arg_p);
2272 if (init
2273 && !VOID_TYPE_P (TREE_TYPE (init)))
2274 *arg_p = init;
2278 /* If this is a variable sized type, we must remember the size. */
2279 maybe_with_size_expr (arg_p);
2281 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2282 /* Make sure arguments have the same location as the function call
2283 itself. */
2284 protected_set_expr_location (*arg_p, call_location);
2286 /* There is a sequence point before a function call. Side effects in
2287 the argument list must occur before the actual call. So, when
2288 gimplifying arguments, force gimplify_expr to use an internal
2289 post queue which is then appended to the end of PRE_P. */
2290 return gimplify_expr (arg_p, pre_p, NULL, test, fb);
2293 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2294 WANT_VALUE is true if the result of the call is desired. */
2296 static enum gimplify_status
2297 gimplify_call_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
2299 tree fndecl, parms, p, fnptrtype;
2300 enum gimplify_status ret;
2301 int i, nargs;
2302 gimple call;
2303 bool builtin_va_start_p = FALSE;
2304 location_t loc = EXPR_LOCATION (*expr_p);
2306 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2308 /* For reliable diagnostics during inlining, it is necessary that
2309 every call_expr be annotated with file and line. */
2310 if (! EXPR_HAS_LOCATION (*expr_p))
2311 SET_EXPR_LOCATION (*expr_p, input_location);
2313 /* This may be a call to a builtin function.
2315 Builtin function calls may be transformed into different
2316 (and more efficient) builtin function calls under certain
2317 circumstances. Unfortunately, gimplification can muck things
2318 up enough that the builtin expanders are not aware that certain
2319 transformations are still valid.
2321 So we attempt transformation/gimplification of the call before
2322 we gimplify the CALL_EXPR. At this time we do not manage to
2323 transform all calls in the same manner as the expanders do, but
2324 we do transform most of them. */
2325 fndecl = get_callee_fndecl (*expr_p);
2326 if (fndecl && DECL_BUILT_IN (fndecl))
2328 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2330 if (new_tree && new_tree != *expr_p)
2332 /* There was a transformation of this call which computes the
2333 same value, but in a more efficient way. Return and try
2334 again. */
2335 *expr_p = new_tree;
2336 return GS_OK;
2339 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
2340 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_VA_START)
2342 builtin_va_start_p = TRUE;
2343 if (call_expr_nargs (*expr_p) < 2)
2345 error ("too few arguments to function %<va_start%>");
2346 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2347 return GS_OK;
2350 if (fold_builtin_next_arg (*expr_p, true))
2352 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2353 return GS_OK;
2358 /* Remember the original function pointer type. */
2359 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2361 /* There is a sequence point before the call, so any side effects in
2362 the calling expression must occur before the actual call. Force
2363 gimplify_expr to use an internal post queue. */
2364 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2365 is_gimple_call_addr, fb_rvalue);
2367 nargs = call_expr_nargs (*expr_p);
2369 /* Get argument types for verification. */
2370 fndecl = get_callee_fndecl (*expr_p);
2371 parms = NULL_TREE;
2372 if (fndecl)
2373 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2374 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2375 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2377 if (fndecl && DECL_ARGUMENTS (fndecl))
2378 p = DECL_ARGUMENTS (fndecl);
2379 else if (parms)
2380 p = parms;
2381 else
2382 p = NULL_TREE;
2383 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2386 /* If the last argument is __builtin_va_arg_pack () and it is not
2387 passed as a named argument, decrease the number of CALL_EXPR
2388 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2389 if (!p
2390 && i < nargs
2391 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2393 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2394 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2396 if (last_arg_fndecl
2397 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2398 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2399 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2401 tree call = *expr_p;
2403 --nargs;
2404 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2405 CALL_EXPR_FN (call),
2406 nargs, CALL_EXPR_ARGP (call));
2408 /* Copy all CALL_EXPR flags, location and block, except
2409 CALL_EXPR_VA_ARG_PACK flag. */
2410 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2411 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2412 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2413 = CALL_EXPR_RETURN_SLOT_OPT (call);
2414 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2415 CALL_CANNOT_INLINE_P (*expr_p) = CALL_CANNOT_INLINE_P (call);
2416 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2417 TREE_BLOCK (*expr_p) = TREE_BLOCK (call);
2419 /* Set CALL_EXPR_VA_ARG_PACK. */
2420 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2424 /* Finally, gimplify the function arguments. */
2425 if (nargs > 0)
2427 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2428 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2429 PUSH_ARGS_REVERSED ? i-- : i++)
2431 enum gimplify_status t;
2433 /* Avoid gimplifying the second argument to va_start, which needs to
2434 be the plain PARM_DECL. */
2435 if ((i != 1) || !builtin_va_start_p)
2437 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2438 EXPR_LOCATION (*expr_p));
2440 if (t == GS_ERROR)
2441 ret = GS_ERROR;
2446 /* Verify the function result. */
2447 if (want_value && fndecl
2448 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2450 error_at (loc, "using result of function returning %<void%>");
2451 ret = GS_ERROR;
2454 /* Try this again in case gimplification exposed something. */
2455 if (ret != GS_ERROR)
2457 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2459 if (new_tree && new_tree != *expr_p)
2461 /* There was a transformation of this call which computes the
2462 same value, but in a more efficient way. Return and try
2463 again. */
2464 *expr_p = new_tree;
2465 return GS_OK;
2468 else
2470 *expr_p = error_mark_node;
2471 return GS_ERROR;
2474 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2475 decl. This allows us to eliminate redundant or useless
2476 calls to "const" functions. */
2477 if (TREE_CODE (*expr_p) == CALL_EXPR)
2479 int flags = call_expr_flags (*expr_p);
2480 if (flags & (ECF_CONST | ECF_PURE)
2481 /* An infinite loop is considered a side effect. */
2482 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2483 TREE_SIDE_EFFECTS (*expr_p) = 0;
2486 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2487 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2488 form and delegate the creation of a GIMPLE_CALL to
2489 gimplify_modify_expr. This is always possible because when
2490 WANT_VALUE is true, the caller wants the result of this call into
2491 a temporary, which means that we will emit an INIT_EXPR in
2492 internal_get_tmp_var which will then be handled by
2493 gimplify_modify_expr. */
2494 if (!want_value)
2496 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2497 have to do is replicate it as a GIMPLE_CALL tuple. */
2498 gimple_stmt_iterator gsi;
2499 call = gimple_build_call_from_tree (*expr_p);
2500 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2501 gimplify_seq_add_stmt (pre_p, call);
2502 gsi = gsi_last (*pre_p);
2503 fold_stmt (&gsi);
2504 *expr_p = NULL_TREE;
2506 else
2507 /* Remember the original function type. */
2508 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2509 CALL_EXPR_FN (*expr_p));
2511 return ret;
2514 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2515 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2517 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2518 condition is true or false, respectively. If null, we should generate
2519 our own to skip over the evaluation of this specific expression.
2521 LOCUS is the source location of the COND_EXPR.
2523 This function is the tree equivalent of do_jump.
2525 shortcut_cond_r should only be called by shortcut_cond_expr. */
2527 static tree
2528 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2529 location_t locus)
2531 tree local_label = NULL_TREE;
2532 tree t, expr = NULL;
2534 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2535 retain the shortcut semantics. Just insert the gotos here;
2536 shortcut_cond_expr will append the real blocks later. */
2537 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2539 location_t new_locus;
2541 /* Turn if (a && b) into
2543 if (a); else goto no;
2544 if (b) goto yes; else goto no;
2545 (no:) */
2547 if (false_label_p == NULL)
2548 false_label_p = &local_label;
2550 /* Keep the original source location on the first 'if'. */
2551 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, locus);
2552 append_to_statement_list (t, &expr);
2554 /* Set the source location of the && on the second 'if'. */
2555 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2556 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2557 new_locus);
2558 append_to_statement_list (t, &expr);
2560 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2562 location_t new_locus;
2564 /* Turn if (a || b) into
2566 if (a) goto yes;
2567 if (b) goto yes; else goto no;
2568 (yes:) */
2570 if (true_label_p == NULL)
2571 true_label_p = &local_label;
2573 /* Keep the original source location on the first 'if'. */
2574 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2575 append_to_statement_list (t, &expr);
2577 /* Set the source location of the || on the second 'if'. */
2578 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2579 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2580 new_locus);
2581 append_to_statement_list (t, &expr);
2583 else if (TREE_CODE (pred) == COND_EXPR
2584 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 1)))
2585 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 2))))
2587 location_t new_locus;
2589 /* As long as we're messing with gotos, turn if (a ? b : c) into
2590 if (a)
2591 if (b) goto yes; else goto no;
2592 else
2593 if (c) goto yes; else goto no;
2595 Don't do this if one of the arms has void type, which can happen
2596 in C++ when the arm is throw. */
2598 /* Keep the original source location on the first 'if'. Set the source
2599 location of the ? on the second 'if'. */
2600 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2601 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2602 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2603 false_label_p, locus),
2604 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2605 false_label_p, new_locus));
2607 else
2609 expr = build3 (COND_EXPR, void_type_node, pred,
2610 build_and_jump (true_label_p),
2611 build_and_jump (false_label_p));
2612 SET_EXPR_LOCATION (expr, locus);
2615 if (local_label)
2617 t = build1 (LABEL_EXPR, void_type_node, local_label);
2618 append_to_statement_list (t, &expr);
2621 return expr;
2624 /* Given a conditional expression EXPR with short-circuit boolean
2625 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2626 predicate appart into the equivalent sequence of conditionals. */
2628 static tree
2629 shortcut_cond_expr (tree expr)
2631 tree pred = TREE_OPERAND (expr, 0);
2632 tree then_ = TREE_OPERAND (expr, 1);
2633 tree else_ = TREE_OPERAND (expr, 2);
2634 tree true_label, false_label, end_label, t;
2635 tree *true_label_p;
2636 tree *false_label_p;
2637 bool emit_end, emit_false, jump_over_else;
2638 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2639 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2641 /* First do simple transformations. */
2642 if (!else_se)
2644 /* If there is no 'else', turn
2645 if (a && b) then c
2646 into
2647 if (a) if (b) then c. */
2648 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2650 /* Keep the original source location on the first 'if'. */
2651 location_t locus = EXPR_LOC_OR_HERE (expr);
2652 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2653 /* Set the source location of the && on the second 'if'. */
2654 if (EXPR_HAS_LOCATION (pred))
2655 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2656 then_ = shortcut_cond_expr (expr);
2657 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2658 pred = TREE_OPERAND (pred, 0);
2659 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2660 SET_EXPR_LOCATION (expr, locus);
2664 if (!then_se)
2666 /* If there is no 'then', turn
2667 if (a || b); else d
2668 into
2669 if (a); else if (b); else d. */
2670 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2672 /* Keep the original source location on the first 'if'. */
2673 location_t locus = EXPR_LOC_OR_HERE (expr);
2674 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2675 /* Set the source location of the || on the second 'if'. */
2676 if (EXPR_HAS_LOCATION (pred))
2677 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2678 else_ = shortcut_cond_expr (expr);
2679 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2680 pred = TREE_OPERAND (pred, 0);
2681 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2682 SET_EXPR_LOCATION (expr, locus);
2686 /* If we're done, great. */
2687 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2688 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2689 return expr;
2691 /* Otherwise we need to mess with gotos. Change
2692 if (a) c; else d;
2694 if (a); else goto no;
2695 c; goto end;
2696 no: d; end:
2697 and recursively gimplify the condition. */
2699 true_label = false_label = end_label = NULL_TREE;
2701 /* If our arms just jump somewhere, hijack those labels so we don't
2702 generate jumps to jumps. */
2704 if (then_
2705 && TREE_CODE (then_) == GOTO_EXPR
2706 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2708 true_label = GOTO_DESTINATION (then_);
2709 then_ = NULL;
2710 then_se = false;
2713 if (else_
2714 && TREE_CODE (else_) == GOTO_EXPR
2715 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2717 false_label = GOTO_DESTINATION (else_);
2718 else_ = NULL;
2719 else_se = false;
2722 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2723 if (true_label)
2724 true_label_p = &true_label;
2725 else
2726 true_label_p = NULL;
2728 /* The 'else' branch also needs a label if it contains interesting code. */
2729 if (false_label || else_se)
2730 false_label_p = &false_label;
2731 else
2732 false_label_p = NULL;
2734 /* If there was nothing else in our arms, just forward the label(s). */
2735 if (!then_se && !else_se)
2736 return shortcut_cond_r (pred, true_label_p, false_label_p,
2737 EXPR_LOC_OR_HERE (expr));
2739 /* If our last subexpression already has a terminal label, reuse it. */
2740 if (else_se)
2741 t = expr_last (else_);
2742 else if (then_se)
2743 t = expr_last (then_);
2744 else
2745 t = NULL;
2746 if (t && TREE_CODE (t) == LABEL_EXPR)
2747 end_label = LABEL_EXPR_LABEL (t);
2749 /* If we don't care about jumping to the 'else' branch, jump to the end
2750 if the condition is false. */
2751 if (!false_label_p)
2752 false_label_p = &end_label;
2754 /* We only want to emit these labels if we aren't hijacking them. */
2755 emit_end = (end_label == NULL_TREE);
2756 emit_false = (false_label == NULL_TREE);
2758 /* We only emit the jump over the else clause if we have to--if the
2759 then clause may fall through. Otherwise we can wind up with a
2760 useless jump and a useless label at the end of gimplified code,
2761 which will cause us to think that this conditional as a whole
2762 falls through even if it doesn't. If we then inline a function
2763 which ends with such a condition, that can cause us to issue an
2764 inappropriate warning about control reaching the end of a
2765 non-void function. */
2766 jump_over_else = block_may_fallthru (then_);
2768 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2769 EXPR_LOC_OR_HERE (expr));
2771 expr = NULL;
2772 append_to_statement_list (pred, &expr);
2774 append_to_statement_list (then_, &expr);
2775 if (else_se)
2777 if (jump_over_else)
2779 tree last = expr_last (expr);
2780 t = build_and_jump (&end_label);
2781 if (EXPR_HAS_LOCATION (last))
2782 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2783 append_to_statement_list (t, &expr);
2785 if (emit_false)
2787 t = build1 (LABEL_EXPR, void_type_node, false_label);
2788 append_to_statement_list (t, &expr);
2790 append_to_statement_list (else_, &expr);
2792 if (emit_end && end_label)
2794 t = build1 (LABEL_EXPR, void_type_node, end_label);
2795 append_to_statement_list (t, &expr);
2798 return expr;
2801 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2803 tree
2804 gimple_boolify (tree expr)
2806 tree type = TREE_TYPE (expr);
2807 location_t loc = EXPR_LOCATION (expr);
2809 if (TREE_CODE (expr) == NE_EXPR
2810 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
2811 && integer_zerop (TREE_OPERAND (expr, 1)))
2813 tree call = TREE_OPERAND (expr, 0);
2814 tree fn = get_callee_fndecl (call);
2816 /* For __builtin_expect ((long) (x), y) recurse into x as well
2817 if x is truth_value_p. */
2818 if (fn
2819 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2820 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
2821 && call_expr_nargs (call) == 2)
2823 tree arg = CALL_EXPR_ARG (call, 0);
2824 if (arg)
2826 if (TREE_CODE (arg) == NOP_EXPR
2827 && TREE_TYPE (arg) == TREE_TYPE (call))
2828 arg = TREE_OPERAND (arg, 0);
2829 if (truth_value_p (TREE_CODE (arg)))
2831 arg = gimple_boolify (arg);
2832 CALL_EXPR_ARG (call, 0)
2833 = fold_convert_loc (loc, TREE_TYPE (call), arg);
2839 switch (TREE_CODE (expr))
2841 case TRUTH_AND_EXPR:
2842 case TRUTH_OR_EXPR:
2843 case TRUTH_XOR_EXPR:
2844 case TRUTH_ANDIF_EXPR:
2845 case TRUTH_ORIF_EXPR:
2846 /* Also boolify the arguments of truth exprs. */
2847 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2848 /* FALLTHRU */
2850 case TRUTH_NOT_EXPR:
2851 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2853 /* These expressions always produce boolean results. */
2854 if (TREE_CODE (type) != BOOLEAN_TYPE)
2855 TREE_TYPE (expr) = boolean_type_node;
2856 return expr;
2858 default:
2859 if (COMPARISON_CLASS_P (expr))
2861 /* There expressions always prduce boolean results. */
2862 if (TREE_CODE (type) != BOOLEAN_TYPE)
2863 TREE_TYPE (expr) = boolean_type_node;
2864 return expr;
2866 /* Other expressions that get here must have boolean values, but
2867 might need to be converted to the appropriate mode. */
2868 if (TREE_CODE (type) == BOOLEAN_TYPE)
2869 return expr;
2870 return fold_convert_loc (loc, boolean_type_node, expr);
2874 /* Given a conditional expression *EXPR_P without side effects, gimplify
2875 its operands. New statements are inserted to PRE_P. */
2877 static enum gimplify_status
2878 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
2880 tree expr = *expr_p, cond;
2881 enum gimplify_status ret, tret;
2882 enum tree_code code;
2884 cond = gimple_boolify (COND_EXPR_COND (expr));
2886 /* We need to handle && and || specially, as their gimplification
2887 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
2888 code = TREE_CODE (cond);
2889 if (code == TRUTH_ANDIF_EXPR)
2890 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
2891 else if (code == TRUTH_ORIF_EXPR)
2892 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
2893 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
2894 COND_EXPR_COND (*expr_p) = cond;
2896 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
2897 is_gimple_val, fb_rvalue);
2898 ret = MIN (ret, tret);
2899 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
2900 is_gimple_val, fb_rvalue);
2902 return MIN (ret, tret);
2905 /* Return true if evaluating EXPR could trap.
2906 EXPR is GENERIC, while tree_could_trap_p can be called
2907 only on GIMPLE. */
2909 static bool
2910 generic_expr_could_trap_p (tree expr)
2912 unsigned i, n;
2914 if (!expr || is_gimple_val (expr))
2915 return false;
2917 if (!EXPR_P (expr) || tree_could_trap_p (expr))
2918 return true;
2920 n = TREE_OPERAND_LENGTH (expr);
2921 for (i = 0; i < n; i++)
2922 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
2923 return true;
2925 return false;
2928 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
2929 into
2931 if (p) if (p)
2932 t1 = a; a;
2933 else or else
2934 t1 = b; b;
2937 The second form is used when *EXPR_P is of type void.
2939 PRE_P points to the list where side effects that must happen before
2940 *EXPR_P should be stored. */
2942 static enum gimplify_status
2943 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
2945 tree expr = *expr_p;
2946 tree type = TREE_TYPE (expr);
2947 location_t loc = EXPR_LOCATION (expr);
2948 tree tmp, arm1, arm2;
2949 enum gimplify_status ret;
2950 tree label_true, label_false, label_cont;
2951 bool have_then_clause_p, have_else_clause_p;
2952 gimple gimple_cond;
2953 enum tree_code pred_code;
2954 gimple_seq seq = NULL;
2956 /* If this COND_EXPR has a value, copy the values into a temporary within
2957 the arms. */
2958 if (!VOID_TYPE_P (type))
2960 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
2961 tree result;
2963 /* If either an rvalue is ok or we do not require an lvalue, create the
2964 temporary. But we cannot do that if the type is addressable. */
2965 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
2966 && !TREE_ADDRESSABLE (type))
2968 if (gimplify_ctxp->allow_rhs_cond_expr
2969 /* If either branch has side effects or could trap, it can't be
2970 evaluated unconditionally. */
2971 && !TREE_SIDE_EFFECTS (then_)
2972 && !generic_expr_could_trap_p (then_)
2973 && !TREE_SIDE_EFFECTS (else_)
2974 && !generic_expr_could_trap_p (else_))
2975 return gimplify_pure_cond_expr (expr_p, pre_p);
2977 tmp = create_tmp_var (type, "iftmp");
2978 result = tmp;
2981 /* Otherwise, only create and copy references to the values. */
2982 else
2984 type = build_pointer_type (type);
2986 if (!VOID_TYPE_P (TREE_TYPE (then_)))
2987 then_ = build_fold_addr_expr_loc (loc, then_);
2989 if (!VOID_TYPE_P (TREE_TYPE (else_)))
2990 else_ = build_fold_addr_expr_loc (loc, else_);
2992 expr
2993 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
2995 tmp = create_tmp_var (type, "iftmp");
2996 result = build_simple_mem_ref_loc (loc, tmp);
2999 /* Build the new then clause, `tmp = then_;'. But don't build the
3000 assignment if the value is void; in C++ it can be if it's a throw. */
3001 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3002 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
3004 /* Similarly, build the new else clause, `tmp = else_;'. */
3005 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3006 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
3008 TREE_TYPE (expr) = void_type_node;
3009 recalculate_side_effects (expr);
3011 /* Move the COND_EXPR to the prequeue. */
3012 gimplify_stmt (&expr, pre_p);
3014 *expr_p = result;
3015 return GS_ALL_DONE;
3018 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3019 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3020 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3021 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3023 /* Make sure the condition has BOOLEAN_TYPE. */
3024 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3026 /* Break apart && and || conditions. */
3027 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3028 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3030 expr = shortcut_cond_expr (expr);
3032 if (expr != *expr_p)
3034 *expr_p = expr;
3036 /* We can't rely on gimplify_expr to re-gimplify the expanded
3037 form properly, as cleanups might cause the target labels to be
3038 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3039 set up a conditional context. */
3040 gimple_push_condition ();
3041 gimplify_stmt (expr_p, &seq);
3042 gimple_pop_condition (pre_p);
3043 gimple_seq_add_seq (pre_p, seq);
3045 return GS_ALL_DONE;
3049 /* Now do the normal gimplification. */
3051 /* Gimplify condition. */
3052 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3053 fb_rvalue);
3054 if (ret == GS_ERROR)
3055 return GS_ERROR;
3056 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3058 gimple_push_condition ();
3060 have_then_clause_p = have_else_clause_p = false;
3061 if (TREE_OPERAND (expr, 1) != NULL
3062 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3063 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3064 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3065 == current_function_decl)
3066 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3067 have different locations, otherwise we end up with incorrect
3068 location information on the branches. */
3069 && (optimize
3070 || !EXPR_HAS_LOCATION (expr)
3071 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3072 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3074 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3075 have_then_clause_p = true;
3077 else
3078 label_true = create_artificial_label (UNKNOWN_LOCATION);
3079 if (TREE_OPERAND (expr, 2) != NULL
3080 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3081 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3082 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3083 == current_function_decl)
3084 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3085 have different locations, otherwise we end up with incorrect
3086 location information on the branches. */
3087 && (optimize
3088 || !EXPR_HAS_LOCATION (expr)
3089 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3090 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3092 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3093 have_else_clause_p = true;
3095 else
3096 label_false = create_artificial_label (UNKNOWN_LOCATION);
3098 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3099 &arm2);
3101 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3102 label_false);
3104 gimplify_seq_add_stmt (&seq, gimple_cond);
3105 label_cont = NULL_TREE;
3106 if (!have_then_clause_p)
3108 /* For if (...) {} else { code; } put label_true after
3109 the else block. */
3110 if (TREE_OPERAND (expr, 1) == NULL_TREE
3111 && !have_else_clause_p
3112 && TREE_OPERAND (expr, 2) != NULL_TREE)
3113 label_cont = label_true;
3114 else
3116 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3117 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3118 /* For if (...) { code; } else {} or
3119 if (...) { code; } else goto label; or
3120 if (...) { code; return; } else { ... }
3121 label_cont isn't needed. */
3122 if (!have_else_clause_p
3123 && TREE_OPERAND (expr, 2) != NULL_TREE
3124 && gimple_seq_may_fallthru (seq))
3126 gimple g;
3127 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3129 g = gimple_build_goto (label_cont);
3131 /* GIMPLE_COND's are very low level; they have embedded
3132 gotos. This particular embedded goto should not be marked
3133 with the location of the original COND_EXPR, as it would
3134 correspond to the COND_EXPR's condition, not the ELSE or the
3135 THEN arms. To avoid marking it with the wrong location, flag
3136 it as "no location". */
3137 gimple_set_do_not_emit_location (g);
3139 gimplify_seq_add_stmt (&seq, g);
3143 if (!have_else_clause_p)
3145 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3146 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3148 if (label_cont)
3149 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3151 gimple_pop_condition (pre_p);
3152 gimple_seq_add_seq (pre_p, seq);
3154 if (ret == GS_ERROR)
3155 ; /* Do nothing. */
3156 else if (have_then_clause_p || have_else_clause_p)
3157 ret = GS_ALL_DONE;
3158 else
3160 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3161 expr = TREE_OPERAND (expr, 0);
3162 gimplify_stmt (&expr, pre_p);
3165 *expr_p = NULL;
3166 return ret;
3169 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3170 to be marked addressable.
3172 We cannot rely on such an expression being directly markable if a temporary
3173 has been created by the gimplification. In this case, we create another
3174 temporary and initialize it with a copy, which will become a store after we
3175 mark it addressable. This can happen if the front-end passed us something
3176 that it could not mark addressable yet, like a Fortran pass-by-reference
3177 parameter (int) floatvar. */
3179 static void
3180 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3182 while (handled_component_p (*expr_p))
3183 expr_p = &TREE_OPERAND (*expr_p, 0);
3184 if (is_gimple_reg (*expr_p))
3185 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3188 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3189 a call to __builtin_memcpy. */
3191 static enum gimplify_status
3192 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3193 gimple_seq *seq_p)
3195 tree t, to, to_ptr, from, from_ptr;
3196 gimple gs;
3197 location_t loc = EXPR_LOCATION (*expr_p);
3199 to = TREE_OPERAND (*expr_p, 0);
3200 from = TREE_OPERAND (*expr_p, 1);
3202 /* Mark the RHS addressable. Beware that it may not be possible to do so
3203 directly if a temporary has been created by the gimplification. */
3204 prepare_gimple_addressable (&from, seq_p);
3206 mark_addressable (from);
3207 from_ptr = build_fold_addr_expr_loc (loc, from);
3208 gimplify_arg (&from_ptr, seq_p, loc);
3210 mark_addressable (to);
3211 to_ptr = build_fold_addr_expr_loc (loc, to);
3212 gimplify_arg (&to_ptr, seq_p, loc);
3214 t = builtin_decl_implicit (BUILT_IN_MEMCPY);
3216 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3218 if (want_value)
3220 /* tmp = memcpy() */
3221 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3222 gimple_call_set_lhs (gs, t);
3223 gimplify_seq_add_stmt (seq_p, gs);
3225 *expr_p = build_simple_mem_ref (t);
3226 return GS_ALL_DONE;
3229 gimplify_seq_add_stmt (seq_p, gs);
3230 *expr_p = NULL;
3231 return GS_ALL_DONE;
3234 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3235 a call to __builtin_memset. In this case we know that the RHS is
3236 a CONSTRUCTOR with an empty element list. */
3238 static enum gimplify_status
3239 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3240 gimple_seq *seq_p)
3242 tree t, from, to, to_ptr;
3243 gimple gs;
3244 location_t loc = EXPR_LOCATION (*expr_p);
3246 /* Assert our assumptions, to abort instead of producing wrong code
3247 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3248 not be immediately exposed. */
3249 from = TREE_OPERAND (*expr_p, 1);
3250 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3251 from = TREE_OPERAND (from, 0);
3253 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3254 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (from)));
3256 /* Now proceed. */
3257 to = TREE_OPERAND (*expr_p, 0);
3259 to_ptr = build_fold_addr_expr_loc (loc, to);
3260 gimplify_arg (&to_ptr, seq_p, loc);
3261 t = builtin_decl_implicit (BUILT_IN_MEMSET);
3263 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3265 if (want_value)
3267 /* tmp = memset() */
3268 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3269 gimple_call_set_lhs (gs, t);
3270 gimplify_seq_add_stmt (seq_p, gs);
3272 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3273 return GS_ALL_DONE;
3276 gimplify_seq_add_stmt (seq_p, gs);
3277 *expr_p = NULL;
3278 return GS_ALL_DONE;
3281 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3282 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3283 assignment. Return non-null if we detect a potential overlap. */
3285 struct gimplify_init_ctor_preeval_data
3287 /* The base decl of the lhs object. May be NULL, in which case we
3288 have to assume the lhs is indirect. */
3289 tree lhs_base_decl;
3291 /* The alias set of the lhs object. */
3292 alias_set_type lhs_alias_set;
3295 static tree
3296 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3298 struct gimplify_init_ctor_preeval_data *data
3299 = (struct gimplify_init_ctor_preeval_data *) xdata;
3300 tree t = *tp;
3302 /* If we find the base object, obviously we have overlap. */
3303 if (data->lhs_base_decl == t)
3304 return t;
3306 /* If the constructor component is indirect, determine if we have a
3307 potential overlap with the lhs. The only bits of information we
3308 have to go on at this point are addressability and alias sets. */
3309 if ((INDIRECT_REF_P (t)
3310 || TREE_CODE (t) == MEM_REF)
3311 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3312 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3313 return t;
3315 /* If the constructor component is a call, determine if it can hide a
3316 potential overlap with the lhs through an INDIRECT_REF like above.
3317 ??? Ugh - this is completely broken. In fact this whole analysis
3318 doesn't look conservative. */
3319 if (TREE_CODE (t) == CALL_EXPR)
3321 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3323 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3324 if (POINTER_TYPE_P (TREE_VALUE (type))
3325 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3326 && alias_sets_conflict_p (data->lhs_alias_set,
3327 get_alias_set
3328 (TREE_TYPE (TREE_VALUE (type)))))
3329 return t;
3332 if (IS_TYPE_OR_DECL_P (t))
3333 *walk_subtrees = 0;
3334 return NULL;
3337 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3338 force values that overlap with the lhs (as described by *DATA)
3339 into temporaries. */
3341 static void
3342 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3343 struct gimplify_init_ctor_preeval_data *data)
3345 enum gimplify_status one;
3347 /* If the value is constant, then there's nothing to pre-evaluate. */
3348 if (TREE_CONSTANT (*expr_p))
3350 /* Ensure it does not have side effects, it might contain a reference to
3351 the object we're initializing. */
3352 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3353 return;
3356 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3357 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3358 return;
3360 /* Recurse for nested constructors. */
3361 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3363 unsigned HOST_WIDE_INT ix;
3364 constructor_elt *ce;
3365 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
3367 FOR_EACH_VEC_ELT (constructor_elt, v, ix, ce)
3368 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3370 return;
3373 /* If this is a variable sized type, we must remember the size. */
3374 maybe_with_size_expr (expr_p);
3376 /* Gimplify the constructor element to something appropriate for the rhs
3377 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3378 the gimplifier will consider this a store to memory. Doing this
3379 gimplification now means that we won't have to deal with complicated
3380 language-specific trees, nor trees like SAVE_EXPR that can induce
3381 exponential search behavior. */
3382 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3383 if (one == GS_ERROR)
3385 *expr_p = NULL;
3386 return;
3389 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3390 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3391 always be true for all scalars, since is_gimple_mem_rhs insists on a
3392 temporary variable for them. */
3393 if (DECL_P (*expr_p))
3394 return;
3396 /* If this is of variable size, we have no choice but to assume it doesn't
3397 overlap since we can't make a temporary for it. */
3398 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3399 return;
3401 /* Otherwise, we must search for overlap ... */
3402 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3403 return;
3405 /* ... and if found, force the value into a temporary. */
3406 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3409 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3410 a RANGE_EXPR in a CONSTRUCTOR for an array.
3412 var = lower;
3413 loop_entry:
3414 object[var] = value;
3415 if (var == upper)
3416 goto loop_exit;
3417 var = var + 1;
3418 goto loop_entry;
3419 loop_exit:
3421 We increment var _after_ the loop exit check because we might otherwise
3422 fail if upper == TYPE_MAX_VALUE (type for upper).
3424 Note that we never have to deal with SAVE_EXPRs here, because this has
3425 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3427 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
3428 gimple_seq *, bool);
3430 static void
3431 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3432 tree value, tree array_elt_type,
3433 gimple_seq *pre_p, bool cleared)
3435 tree loop_entry_label, loop_exit_label, fall_thru_label;
3436 tree var, var_type, cref, tmp;
3438 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3439 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3440 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3442 /* Create and initialize the index variable. */
3443 var_type = TREE_TYPE (upper);
3444 var = create_tmp_var (var_type, NULL);
3445 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3447 /* Add the loop entry label. */
3448 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3450 /* Build the reference. */
3451 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3452 var, NULL_TREE, NULL_TREE);
3454 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3455 the store. Otherwise just assign value to the reference. */
3457 if (TREE_CODE (value) == CONSTRUCTOR)
3458 /* NB we might have to call ourself recursively through
3459 gimplify_init_ctor_eval if the value is a constructor. */
3460 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3461 pre_p, cleared);
3462 else
3463 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3465 /* We exit the loop when the index var is equal to the upper bound. */
3466 gimplify_seq_add_stmt (pre_p,
3467 gimple_build_cond (EQ_EXPR, var, upper,
3468 loop_exit_label, fall_thru_label));
3470 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3472 /* Otherwise, increment the index var... */
3473 tmp = build2 (PLUS_EXPR, var_type, var,
3474 fold_convert (var_type, integer_one_node));
3475 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3477 /* ...and jump back to the loop entry. */
3478 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3480 /* Add the loop exit label. */
3481 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3484 /* Return true if FDECL is accessing a field that is zero sized. */
3486 static bool
3487 zero_sized_field_decl (const_tree fdecl)
3489 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3490 && integer_zerop (DECL_SIZE (fdecl)))
3491 return true;
3492 return false;
3495 /* Return true if TYPE is zero sized. */
3497 static bool
3498 zero_sized_type (const_tree type)
3500 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3501 && integer_zerop (TYPE_SIZE (type)))
3502 return true;
3503 return false;
3506 /* A subroutine of gimplify_init_constructor. Generate individual
3507 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3508 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3509 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3510 zeroed first. */
3512 static void
3513 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
3514 gimple_seq *pre_p, bool cleared)
3516 tree array_elt_type = NULL;
3517 unsigned HOST_WIDE_INT ix;
3518 tree purpose, value;
3520 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3521 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3523 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3525 tree cref;
3527 /* NULL values are created above for gimplification errors. */
3528 if (value == NULL)
3529 continue;
3531 if (cleared && initializer_zerop (value))
3532 continue;
3534 /* ??? Here's to hoping the front end fills in all of the indices,
3535 so we don't have to figure out what's missing ourselves. */
3536 gcc_assert (purpose);
3538 /* Skip zero-sized fields, unless value has side-effects. This can
3539 happen with calls to functions returning a zero-sized type, which
3540 we shouldn't discard. As a number of downstream passes don't
3541 expect sets of zero-sized fields, we rely on the gimplification of
3542 the MODIFY_EXPR we make below to drop the assignment statement. */
3543 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3544 continue;
3546 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3547 whole range. */
3548 if (TREE_CODE (purpose) == RANGE_EXPR)
3550 tree lower = TREE_OPERAND (purpose, 0);
3551 tree upper = TREE_OPERAND (purpose, 1);
3553 /* If the lower bound is equal to upper, just treat it as if
3554 upper was the index. */
3555 if (simple_cst_equal (lower, upper))
3556 purpose = upper;
3557 else
3559 gimplify_init_ctor_eval_range (object, lower, upper, value,
3560 array_elt_type, pre_p, cleared);
3561 continue;
3565 if (array_elt_type)
3567 /* Do not use bitsizetype for ARRAY_REF indices. */
3568 if (TYPE_DOMAIN (TREE_TYPE (object)))
3569 purpose
3570 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3571 purpose);
3572 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3573 purpose, NULL_TREE, NULL_TREE);
3575 else
3577 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3578 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3579 unshare_expr (object), purpose, NULL_TREE);
3582 if (TREE_CODE (value) == CONSTRUCTOR
3583 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3584 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3585 pre_p, cleared);
3586 else
3588 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3589 gimplify_and_add (init, pre_p);
3590 ggc_free (init);
3595 /* Return the appropriate RHS predicate for this LHS. */
3597 gimple_predicate
3598 rhs_predicate_for (tree lhs)
3600 if (is_gimple_reg (lhs))
3601 return is_gimple_reg_rhs_or_call;
3602 else
3603 return is_gimple_mem_rhs_or_call;
3606 /* Gimplify a C99 compound literal expression. This just means adding
3607 the DECL_EXPR before the current statement and using its anonymous
3608 decl instead. */
3610 static enum gimplify_status
3611 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p)
3613 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3614 tree decl = DECL_EXPR_DECL (decl_s);
3615 /* Mark the decl as addressable if the compound literal
3616 expression is addressable now, otherwise it is marked too late
3617 after we gimplify the initialization expression. */
3618 if (TREE_ADDRESSABLE (*expr_p))
3619 TREE_ADDRESSABLE (decl) = 1;
3621 /* Preliminarily mark non-addressed complex variables as eligible
3622 for promotion to gimple registers. We'll transform their uses
3623 as we find them. */
3624 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3625 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3626 && !TREE_THIS_VOLATILE (decl)
3627 && !needs_to_live_in_memory (decl))
3628 DECL_GIMPLE_REG_P (decl) = 1;
3630 /* This decl isn't mentioned in the enclosing block, so add it to the
3631 list of temps. FIXME it seems a bit of a kludge to say that
3632 anonymous artificial vars aren't pushed, but everything else is. */
3633 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3634 gimple_add_tmp_var (decl);
3636 gimplify_and_add (decl_s, pre_p);
3637 *expr_p = decl;
3638 return GS_OK;
3641 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3642 return a new CONSTRUCTOR if something changed. */
3644 static tree
3645 optimize_compound_literals_in_ctor (tree orig_ctor)
3647 tree ctor = orig_ctor;
3648 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (ctor);
3649 unsigned int idx, num = VEC_length (constructor_elt, elts);
3651 for (idx = 0; idx < num; idx++)
3653 tree value = VEC_index (constructor_elt, elts, idx)->value;
3654 tree newval = value;
3655 if (TREE_CODE (value) == CONSTRUCTOR)
3656 newval = optimize_compound_literals_in_ctor (value);
3657 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3659 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3660 tree decl = DECL_EXPR_DECL (decl_s);
3661 tree init = DECL_INITIAL (decl);
3663 if (!TREE_ADDRESSABLE (value)
3664 && !TREE_ADDRESSABLE (decl)
3665 && init)
3666 newval = optimize_compound_literals_in_ctor (init);
3668 if (newval == value)
3669 continue;
3671 if (ctor == orig_ctor)
3673 ctor = copy_node (orig_ctor);
3674 CONSTRUCTOR_ELTS (ctor) = VEC_copy (constructor_elt, gc, elts);
3675 elts = CONSTRUCTOR_ELTS (ctor);
3677 VEC_index (constructor_elt, elts, idx)->value = newval;
3679 return ctor;
3682 /* A subroutine of gimplify_modify_expr. Break out elements of a
3683 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3685 Note that we still need to clear any elements that don't have explicit
3686 initializers, so if not all elements are initialized we keep the
3687 original MODIFY_EXPR, we just remove all of the constructor elements.
3689 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3690 GS_ERROR if we would have to create a temporary when gimplifying
3691 this constructor. Otherwise, return GS_OK.
3693 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3695 static enum gimplify_status
3696 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3697 bool want_value, bool notify_temp_creation)
3699 tree object, ctor, type;
3700 enum gimplify_status ret;
3701 VEC(constructor_elt,gc) *elts;
3703 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3705 if (!notify_temp_creation)
3707 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3708 is_gimple_lvalue, fb_lvalue);
3709 if (ret == GS_ERROR)
3710 return ret;
3713 object = TREE_OPERAND (*expr_p, 0);
3714 ctor = TREE_OPERAND (*expr_p, 1) =
3715 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3716 type = TREE_TYPE (ctor);
3717 elts = CONSTRUCTOR_ELTS (ctor);
3718 ret = GS_ALL_DONE;
3720 switch (TREE_CODE (type))
3722 case RECORD_TYPE:
3723 case UNION_TYPE:
3724 case QUAL_UNION_TYPE:
3725 case ARRAY_TYPE:
3727 struct gimplify_init_ctor_preeval_data preeval_data;
3728 HOST_WIDE_INT num_ctor_elements, num_nonzero_elements;
3729 bool cleared, complete_p, valid_const_initializer;
3731 /* Aggregate types must lower constructors to initialization of
3732 individual elements. The exception is that a CONSTRUCTOR node
3733 with no elements indicates zero-initialization of the whole. */
3734 if (VEC_empty (constructor_elt, elts))
3736 if (notify_temp_creation)
3737 return GS_OK;
3738 break;
3741 /* Fetch information about the constructor to direct later processing.
3742 We might want to make static versions of it in various cases, and
3743 can only do so if it known to be a valid constant initializer. */
3744 valid_const_initializer
3745 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3746 &num_ctor_elements, &complete_p);
3748 /* If a const aggregate variable is being initialized, then it
3749 should never be a lose to promote the variable to be static. */
3750 if (valid_const_initializer
3751 && num_nonzero_elements > 1
3752 && TREE_READONLY (object)
3753 && TREE_CODE (object) == VAR_DECL
3754 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3756 if (notify_temp_creation)
3757 return GS_ERROR;
3758 DECL_INITIAL (object) = ctor;
3759 TREE_STATIC (object) = 1;
3760 if (!DECL_NAME (object))
3761 DECL_NAME (object) = create_tmp_var_name ("C");
3762 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3764 /* ??? C++ doesn't automatically append a .<number> to the
3765 assembler name, and even when it does, it looks a FE private
3766 data structures to figure out what that number should be,
3767 which are not set for this variable. I suppose this is
3768 important for local statics for inline functions, which aren't
3769 "local" in the object file sense. So in order to get a unique
3770 TU-local symbol, we must invoke the lhd version now. */
3771 lhd_set_decl_assembler_name (object);
3773 *expr_p = NULL_TREE;
3774 break;
3777 /* If there are "lots" of initialized elements, even discounting
3778 those that are not address constants (and thus *must* be
3779 computed at runtime), then partition the constructor into
3780 constant and non-constant parts. Block copy the constant
3781 parts in, then generate code for the non-constant parts. */
3782 /* TODO. There's code in cp/typeck.c to do this. */
3784 if (int_size_in_bytes (TREE_TYPE (ctor)) < 0)
3785 /* store_constructor will ignore the clearing of variable-sized
3786 objects. Initializers for such objects must explicitly set
3787 every field that needs to be set. */
3788 cleared = false;
3789 else if (!complete_p)
3790 /* If the constructor isn't complete, clear the whole object
3791 beforehand.
3793 ??? This ought not to be needed. For any element not present
3794 in the initializer, we should simply set them to zero. Except
3795 we'd need to *find* the elements that are not present, and that
3796 requires trickery to avoid quadratic compile-time behavior in
3797 large cases or excessive memory use in small cases. */
3798 cleared = true;
3799 else if (num_ctor_elements - num_nonzero_elements
3800 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
3801 && num_nonzero_elements < num_ctor_elements / 4)
3802 /* If there are "lots" of zeros, it's more efficient to clear
3803 the memory and then set the nonzero elements. */
3804 cleared = true;
3805 else
3806 cleared = false;
3808 /* If there are "lots" of initialized elements, and all of them
3809 are valid address constants, then the entire initializer can
3810 be dropped to memory, and then memcpy'd out. Don't do this
3811 for sparse arrays, though, as it's more efficient to follow
3812 the standard CONSTRUCTOR behavior of memset followed by
3813 individual element initialization. Also don't do this for small
3814 all-zero initializers (which aren't big enough to merit
3815 clearing), and don't try to make bitwise copies of
3816 TREE_ADDRESSABLE types. */
3817 if (valid_const_initializer
3818 && !(cleared || num_nonzero_elements == 0)
3819 && !TREE_ADDRESSABLE (type))
3821 HOST_WIDE_INT size = int_size_in_bytes (type);
3822 unsigned int align;
3824 /* ??? We can still get unbounded array types, at least
3825 from the C++ front end. This seems wrong, but attempt
3826 to work around it for now. */
3827 if (size < 0)
3829 size = int_size_in_bytes (TREE_TYPE (object));
3830 if (size >= 0)
3831 TREE_TYPE (ctor) = type = TREE_TYPE (object);
3834 /* Find the maximum alignment we can assume for the object. */
3835 /* ??? Make use of DECL_OFFSET_ALIGN. */
3836 if (DECL_P (object))
3837 align = DECL_ALIGN (object);
3838 else
3839 align = TYPE_ALIGN (type);
3841 if (size > 0
3842 && num_nonzero_elements > 1
3843 && !can_move_by_pieces (size, align))
3845 if (notify_temp_creation)
3846 return GS_ERROR;
3848 walk_tree (&ctor, force_labels_r, NULL, NULL);
3849 ctor = tree_output_constant_def (ctor);
3850 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
3851 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
3852 TREE_OPERAND (*expr_p, 1) = ctor;
3854 /* This is no longer an assignment of a CONSTRUCTOR, but
3855 we still may have processing to do on the LHS. So
3856 pretend we didn't do anything here to let that happen. */
3857 return GS_UNHANDLED;
3861 /* If the target is volatile, we have non-zero elements and more than
3862 one field to assign, initialize the target from a temporary. */
3863 if (TREE_THIS_VOLATILE (object)
3864 && !TREE_ADDRESSABLE (type)
3865 && num_nonzero_elements > 0
3866 && VEC_length (constructor_elt, elts) > 1)
3868 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
3869 TREE_OPERAND (*expr_p, 0) = temp;
3870 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
3871 *expr_p,
3872 build2 (MODIFY_EXPR, void_type_node,
3873 object, temp));
3874 return GS_OK;
3877 if (notify_temp_creation)
3878 return GS_OK;
3880 /* If there are nonzero elements and if needed, pre-evaluate to capture
3881 elements overlapping with the lhs into temporaries. We must do this
3882 before clearing to fetch the values before they are zeroed-out. */
3883 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
3885 preeval_data.lhs_base_decl = get_base_address (object);
3886 if (!DECL_P (preeval_data.lhs_base_decl))
3887 preeval_data.lhs_base_decl = NULL;
3888 preeval_data.lhs_alias_set = get_alias_set (object);
3890 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
3891 pre_p, post_p, &preeval_data);
3894 if (cleared)
3896 /* Zap the CONSTRUCTOR element list, which simplifies this case.
3897 Note that we still have to gimplify, in order to handle the
3898 case of variable sized types. Avoid shared tree structures. */
3899 CONSTRUCTOR_ELTS (ctor) = NULL;
3900 TREE_SIDE_EFFECTS (ctor) = 0;
3901 object = unshare_expr (object);
3902 gimplify_stmt (expr_p, pre_p);
3905 /* If we have not block cleared the object, or if there are nonzero
3906 elements in the constructor, add assignments to the individual
3907 scalar fields of the object. */
3908 if (!cleared || num_nonzero_elements > 0)
3909 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
3911 *expr_p = NULL_TREE;
3913 break;
3915 case COMPLEX_TYPE:
3917 tree r, i;
3919 if (notify_temp_creation)
3920 return GS_OK;
3922 /* Extract the real and imaginary parts out of the ctor. */
3923 gcc_assert (VEC_length (constructor_elt, elts) == 2);
3924 r = VEC_index (constructor_elt, elts, 0)->value;
3925 i = VEC_index (constructor_elt, elts, 1)->value;
3926 if (r == NULL || i == NULL)
3928 tree zero = build_zero_cst (TREE_TYPE (type));
3929 if (r == NULL)
3930 r = zero;
3931 if (i == NULL)
3932 i = zero;
3935 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3936 represent creation of a complex value. */
3937 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3939 ctor = build_complex (type, r, i);
3940 TREE_OPERAND (*expr_p, 1) = ctor;
3942 else
3944 ctor = build2 (COMPLEX_EXPR, type, r, i);
3945 TREE_OPERAND (*expr_p, 1) = ctor;
3946 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
3947 pre_p,
3948 post_p,
3949 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
3950 fb_rvalue);
3953 break;
3955 case VECTOR_TYPE:
3957 unsigned HOST_WIDE_INT ix;
3958 constructor_elt *ce;
3960 if (notify_temp_creation)
3961 return GS_OK;
3963 /* Go ahead and simplify constant constructors to VECTOR_CST. */
3964 if (TREE_CONSTANT (ctor))
3966 bool constant_p = true;
3967 tree value;
3969 /* Even when ctor is constant, it might contain non-*_CST
3970 elements, such as addresses or trapping values like
3971 1.0/0.0 - 1.0/0.0. Such expressions don't belong
3972 in VECTOR_CST nodes. */
3973 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
3974 if (!CONSTANT_CLASS_P (value))
3976 constant_p = false;
3977 break;
3980 if (constant_p)
3982 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
3983 break;
3986 /* Don't reduce an initializer constant even if we can't
3987 make a VECTOR_CST. It won't do anything for us, and it'll
3988 prevent us from representing it as a single constant. */
3989 if (initializer_constant_valid_p (ctor, type))
3990 break;
3992 TREE_CONSTANT (ctor) = 0;
3995 /* Vector types use CONSTRUCTOR all the way through gimple
3996 compilation as a general initializer. */
3997 FOR_EACH_VEC_ELT (constructor_elt, elts, ix, ce)
3999 enum gimplify_status tret;
4000 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
4001 fb_rvalue);
4002 if (tret == GS_ERROR)
4003 ret = GS_ERROR;
4005 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
4006 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4008 break;
4010 default:
4011 /* So how did we get a CONSTRUCTOR for a scalar type? */
4012 gcc_unreachable ();
4015 if (ret == GS_ERROR)
4016 return GS_ERROR;
4017 else if (want_value)
4019 *expr_p = object;
4020 return GS_OK;
4022 else
4024 /* If we have gimplified both sides of the initializer but have
4025 not emitted an assignment, do so now. */
4026 if (*expr_p)
4028 tree lhs = TREE_OPERAND (*expr_p, 0);
4029 tree rhs = TREE_OPERAND (*expr_p, 1);
4030 gimple init = gimple_build_assign (lhs, rhs);
4031 gimplify_seq_add_stmt (pre_p, init);
4032 *expr_p = NULL;
4035 return GS_ALL_DONE;
4039 /* Given a pointer value OP0, return a simplified version of an
4040 indirection through OP0, or NULL_TREE if no simplification is
4041 possible. Note that the resulting type may be different from
4042 the type pointed to in the sense that it is still compatible
4043 from the langhooks point of view. */
4045 tree
4046 gimple_fold_indirect_ref (tree t)
4048 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4049 tree sub = t;
4050 tree subtype;
4052 STRIP_NOPS (sub);
4053 subtype = TREE_TYPE (sub);
4054 if (!POINTER_TYPE_P (subtype))
4055 return NULL_TREE;
4057 if (TREE_CODE (sub) == ADDR_EXPR)
4059 tree op = TREE_OPERAND (sub, 0);
4060 tree optype = TREE_TYPE (op);
4061 /* *&p => p */
4062 if (useless_type_conversion_p (type, optype))
4063 return op;
4065 /* *(foo *)&fooarray => fooarray[0] */
4066 if (TREE_CODE (optype) == ARRAY_TYPE
4067 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4068 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4070 tree type_domain = TYPE_DOMAIN (optype);
4071 tree min_val = size_zero_node;
4072 if (type_domain && TYPE_MIN_VALUE (type_domain))
4073 min_val = TYPE_MIN_VALUE (type_domain);
4074 if (TREE_CODE (min_val) == INTEGER_CST)
4075 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4077 /* *(foo *)&complexfoo => __real__ complexfoo */
4078 else if (TREE_CODE (optype) == COMPLEX_TYPE
4079 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4080 return fold_build1 (REALPART_EXPR, type, op);
4081 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4082 else if (TREE_CODE (optype) == VECTOR_TYPE
4083 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4085 tree part_width = TYPE_SIZE (type);
4086 tree index = bitsize_int (0);
4087 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4091 /* *(p + CST) -> ... */
4092 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4093 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4095 tree addr = TREE_OPERAND (sub, 0);
4096 tree off = TREE_OPERAND (sub, 1);
4097 tree addrtype;
4099 STRIP_NOPS (addr);
4100 addrtype = TREE_TYPE (addr);
4102 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4103 if (TREE_CODE (addr) == ADDR_EXPR
4104 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4105 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4106 && host_integerp (off, 1))
4108 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4109 tree part_width = TYPE_SIZE (type);
4110 unsigned HOST_WIDE_INT part_widthi
4111 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4112 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4113 tree index = bitsize_int (indexi);
4114 if (offset / part_widthi
4115 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4116 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4117 part_width, index);
4120 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4121 if (TREE_CODE (addr) == ADDR_EXPR
4122 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4123 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4125 tree size = TYPE_SIZE_UNIT (type);
4126 if (tree_int_cst_equal (size, off))
4127 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4130 /* *(p + CST) -> MEM_REF <p, CST>. */
4131 if (TREE_CODE (addr) != ADDR_EXPR
4132 || DECL_P (TREE_OPERAND (addr, 0)))
4133 return fold_build2 (MEM_REF, type,
4134 addr,
4135 build_int_cst_wide (ptype,
4136 TREE_INT_CST_LOW (off),
4137 TREE_INT_CST_HIGH (off)));
4140 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4141 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4142 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4143 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4145 tree type_domain;
4146 tree min_val = size_zero_node;
4147 tree osub = sub;
4148 sub = gimple_fold_indirect_ref (sub);
4149 if (! sub)
4150 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4151 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4152 if (type_domain && TYPE_MIN_VALUE (type_domain))
4153 min_val = TYPE_MIN_VALUE (type_domain);
4154 if (TREE_CODE (min_val) == INTEGER_CST)
4155 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4158 return NULL_TREE;
4161 /* Given a pointer value OP0, return a simplified version of an
4162 indirection through OP0, or NULL_TREE if no simplification is
4163 possible. This may only be applied to a rhs of an expression.
4164 Note that the resulting type may be different from the type pointed
4165 to in the sense that it is still compatible from the langhooks
4166 point of view. */
4168 static tree
4169 gimple_fold_indirect_ref_rhs (tree t)
4171 return gimple_fold_indirect_ref (t);
4174 /* Subroutine of gimplify_modify_expr to do simplifications of
4175 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4176 something changes. */
4178 static enum gimplify_status
4179 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4180 gimple_seq *pre_p, gimple_seq *post_p,
4181 bool want_value)
4183 enum gimplify_status ret = GS_UNHANDLED;
4184 bool changed;
4188 changed = false;
4189 switch (TREE_CODE (*from_p))
4191 case VAR_DECL:
4192 /* If we're assigning from a read-only variable initialized with
4193 a constructor, do the direct assignment from the constructor,
4194 but only if neither source nor target are volatile since this
4195 latter assignment might end up being done on a per-field basis. */
4196 if (DECL_INITIAL (*from_p)
4197 && TREE_READONLY (*from_p)
4198 && !TREE_THIS_VOLATILE (*from_p)
4199 && !TREE_THIS_VOLATILE (*to_p)
4200 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4202 tree old_from = *from_p;
4203 enum gimplify_status subret;
4205 /* Move the constructor into the RHS. */
4206 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4208 /* Let's see if gimplify_init_constructor will need to put
4209 it in memory. */
4210 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4211 false, true);
4212 if (subret == GS_ERROR)
4214 /* If so, revert the change. */
4215 *from_p = old_from;
4217 else
4219 ret = GS_OK;
4220 changed = true;
4223 break;
4224 case INDIRECT_REF:
4226 /* If we have code like
4228 *(const A*)(A*)&x
4230 where the type of "x" is a (possibly cv-qualified variant
4231 of "A"), treat the entire expression as identical to "x".
4232 This kind of code arises in C++ when an object is bound
4233 to a const reference, and if "x" is a TARGET_EXPR we want
4234 to take advantage of the optimization below. */
4235 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4236 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4237 if (t)
4239 if (TREE_THIS_VOLATILE (t) != volatile_p)
4241 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4242 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4243 build_fold_addr_expr (t));
4244 if (REFERENCE_CLASS_P (t))
4245 TREE_THIS_VOLATILE (t) = volatile_p;
4247 *from_p = t;
4248 ret = GS_OK;
4249 changed = true;
4251 break;
4254 case TARGET_EXPR:
4256 /* If we are initializing something from a TARGET_EXPR, strip the
4257 TARGET_EXPR and initialize it directly, if possible. This can't
4258 be done if the initializer is void, since that implies that the
4259 temporary is set in some non-trivial way.
4261 ??? What about code that pulls out the temp and uses it
4262 elsewhere? I think that such code never uses the TARGET_EXPR as
4263 an initializer. If I'm wrong, we'll die because the temp won't
4264 have any RTL. In that case, I guess we'll need to replace
4265 references somehow. */
4266 tree init = TARGET_EXPR_INITIAL (*from_p);
4268 if (init
4269 && !VOID_TYPE_P (TREE_TYPE (init)))
4271 *from_p = init;
4272 ret = GS_OK;
4273 changed = true;
4276 break;
4278 case COMPOUND_EXPR:
4279 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4280 caught. */
4281 gimplify_compound_expr (from_p, pre_p, true);
4282 ret = GS_OK;
4283 changed = true;
4284 break;
4286 case CONSTRUCTOR:
4287 /* If we already made some changes, let the front end have a
4288 crack at this before we break it down. */
4289 if (ret != GS_UNHANDLED)
4290 break;
4291 /* If we're initializing from a CONSTRUCTOR, break this into
4292 individual MODIFY_EXPRs. */
4293 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4294 false);
4296 case COND_EXPR:
4297 /* If we're assigning to a non-register type, push the assignment
4298 down into the branches. This is mandatory for ADDRESSABLE types,
4299 since we cannot generate temporaries for such, but it saves a
4300 copy in other cases as well. */
4301 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4303 /* This code should mirror the code in gimplify_cond_expr. */
4304 enum tree_code code = TREE_CODE (*expr_p);
4305 tree cond = *from_p;
4306 tree result = *to_p;
4308 ret = gimplify_expr (&result, pre_p, post_p,
4309 is_gimple_lvalue, fb_lvalue);
4310 if (ret != GS_ERROR)
4311 ret = GS_OK;
4313 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4314 TREE_OPERAND (cond, 1)
4315 = build2 (code, void_type_node, result,
4316 TREE_OPERAND (cond, 1));
4317 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4318 TREE_OPERAND (cond, 2)
4319 = build2 (code, void_type_node, unshare_expr (result),
4320 TREE_OPERAND (cond, 2));
4322 TREE_TYPE (cond) = void_type_node;
4323 recalculate_side_effects (cond);
4325 if (want_value)
4327 gimplify_and_add (cond, pre_p);
4328 *expr_p = unshare_expr (result);
4330 else
4331 *expr_p = cond;
4332 return ret;
4334 break;
4336 case CALL_EXPR:
4337 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4338 return slot so that we don't generate a temporary. */
4339 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4340 && aggregate_value_p (*from_p, *from_p))
4342 bool use_target;
4344 if (!(rhs_predicate_for (*to_p))(*from_p))
4345 /* If we need a temporary, *to_p isn't accurate. */
4346 use_target = false;
4347 /* It's OK to use the return slot directly unless it's an NRV. */
4348 else if (TREE_CODE (*to_p) == RESULT_DECL
4349 && DECL_NAME (*to_p) == NULL_TREE
4350 && needs_to_live_in_memory (*to_p))
4351 use_target = true;
4352 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4353 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4354 /* Don't force regs into memory. */
4355 use_target = false;
4356 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4357 /* It's OK to use the target directly if it's being
4358 initialized. */
4359 use_target = true;
4360 else if (!is_gimple_non_addressable (*to_p))
4361 /* Don't use the original target if it's already addressable;
4362 if its address escapes, and the called function uses the
4363 NRV optimization, a conforming program could see *to_p
4364 change before the called function returns; see c++/19317.
4365 When optimizing, the return_slot pass marks more functions
4366 as safe after we have escape info. */
4367 use_target = false;
4368 else
4369 use_target = true;
4371 if (use_target)
4373 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4374 mark_addressable (*to_p);
4377 break;
4379 case WITH_SIZE_EXPR:
4380 /* Likewise for calls that return an aggregate of non-constant size,
4381 since we would not be able to generate a temporary at all. */
4382 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4384 *from_p = TREE_OPERAND (*from_p, 0);
4385 /* We don't change ret in this case because the
4386 WITH_SIZE_EXPR might have been added in
4387 gimplify_modify_expr, so returning GS_OK would lead to an
4388 infinite loop. */
4389 changed = true;
4391 break;
4393 /* If we're initializing from a container, push the initialization
4394 inside it. */
4395 case CLEANUP_POINT_EXPR:
4396 case BIND_EXPR:
4397 case STATEMENT_LIST:
4399 tree wrap = *from_p;
4400 tree t;
4402 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4403 fb_lvalue);
4404 if (ret != GS_ERROR)
4405 ret = GS_OK;
4407 t = voidify_wrapper_expr (wrap, *expr_p);
4408 gcc_assert (t == *expr_p);
4410 if (want_value)
4412 gimplify_and_add (wrap, pre_p);
4413 *expr_p = unshare_expr (*to_p);
4415 else
4416 *expr_p = wrap;
4417 return GS_OK;
4420 case COMPOUND_LITERAL_EXPR:
4422 tree complit = TREE_OPERAND (*expr_p, 1);
4423 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4424 tree decl = DECL_EXPR_DECL (decl_s);
4425 tree init = DECL_INITIAL (decl);
4427 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4428 into struct T x = { 0, 1, 2 } if the address of the
4429 compound literal has never been taken. */
4430 if (!TREE_ADDRESSABLE (complit)
4431 && !TREE_ADDRESSABLE (decl)
4432 && init)
4434 *expr_p = copy_node (*expr_p);
4435 TREE_OPERAND (*expr_p, 1) = init;
4436 return GS_OK;
4440 default:
4441 break;
4444 while (changed);
4446 return ret;
4449 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4450 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4451 DECL_GIMPLE_REG_P set.
4453 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4454 other, unmodified part of the complex object just before the total store.
4455 As a consequence, if the object is still uninitialized, an undefined value
4456 will be loaded into a register, which may result in a spurious exception
4457 if the register is floating-point and the value happens to be a signaling
4458 NaN for example. Then the fully-fledged complex operations lowering pass
4459 followed by a DCE pass are necessary in order to fix things up. */
4461 static enum gimplify_status
4462 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4463 bool want_value)
4465 enum tree_code code, ocode;
4466 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4468 lhs = TREE_OPERAND (*expr_p, 0);
4469 rhs = TREE_OPERAND (*expr_p, 1);
4470 code = TREE_CODE (lhs);
4471 lhs = TREE_OPERAND (lhs, 0);
4473 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4474 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4475 TREE_NO_WARNING (other) = 1;
4476 other = get_formal_tmp_var (other, pre_p);
4478 realpart = code == REALPART_EXPR ? rhs : other;
4479 imagpart = code == REALPART_EXPR ? other : rhs;
4481 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4482 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4483 else
4484 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4486 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4487 *expr_p = (want_value) ? rhs : NULL_TREE;
4489 return GS_ALL_DONE;
4492 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4494 modify_expr
4495 : varname '=' rhs
4496 | '*' ID '=' rhs
4498 PRE_P points to the list where side effects that must happen before
4499 *EXPR_P should be stored.
4501 POST_P points to the list where side effects that must happen after
4502 *EXPR_P should be stored.
4504 WANT_VALUE is nonzero iff we want to use the value of this expression
4505 in another expression. */
4507 static enum gimplify_status
4508 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4509 bool want_value)
4511 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4512 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4513 enum gimplify_status ret = GS_UNHANDLED;
4514 gimple assign;
4515 location_t loc = EXPR_LOCATION (*expr_p);
4517 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4518 || TREE_CODE (*expr_p) == INIT_EXPR);
4520 /* Insert pointer conversions required by the middle-end that are not
4521 required by the frontend. This fixes middle-end type checking for
4522 for example gcc.dg/redecl-6.c. */
4523 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4525 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4526 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4527 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4530 /* See if any simplifications can be done based on what the RHS is. */
4531 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4532 want_value);
4533 if (ret != GS_UNHANDLED)
4534 return ret;
4536 /* For zero sized types only gimplify the left hand side and right hand
4537 side as statements and throw away the assignment. Do this after
4538 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4539 types properly. */
4540 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4542 gimplify_stmt (from_p, pre_p);
4543 gimplify_stmt (to_p, pre_p);
4544 *expr_p = NULL_TREE;
4545 return GS_ALL_DONE;
4548 /* If the value being copied is of variable width, compute the length
4549 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4550 before gimplifying any of the operands so that we can resolve any
4551 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4552 the size of the expression to be copied, not of the destination, so
4553 that is what we must do here. */
4554 maybe_with_size_expr (from_p);
4556 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4557 if (ret == GS_ERROR)
4558 return ret;
4560 /* As a special case, we have to temporarily allow for assignments
4561 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4562 a toplevel statement, when gimplifying the GENERIC expression
4563 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4564 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4566 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4567 prevent gimplify_expr from trying to create a new temporary for
4568 foo's LHS, we tell it that it should only gimplify until it
4569 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4570 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4571 and all we need to do here is set 'a' to be its LHS. */
4572 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4573 fb_rvalue);
4574 if (ret == GS_ERROR)
4575 return ret;
4577 /* Now see if the above changed *from_p to something we handle specially. */
4578 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4579 want_value);
4580 if (ret != GS_UNHANDLED)
4581 return ret;
4583 /* If we've got a variable sized assignment between two lvalues (i.e. does
4584 not involve a call), then we can make things a bit more straightforward
4585 by converting the assignment to memcpy or memset. */
4586 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4588 tree from = TREE_OPERAND (*from_p, 0);
4589 tree size = TREE_OPERAND (*from_p, 1);
4591 if (TREE_CODE (from) == CONSTRUCTOR)
4592 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4594 if (is_gimple_addressable (from))
4596 *from_p = from;
4597 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4598 pre_p);
4602 /* Transform partial stores to non-addressable complex variables into
4603 total stores. This allows us to use real instead of virtual operands
4604 for these variables, which improves optimization. */
4605 if ((TREE_CODE (*to_p) == REALPART_EXPR
4606 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4607 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4608 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4610 /* Try to alleviate the effects of the gimplification creating artificial
4611 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4612 if (!gimplify_ctxp->into_ssa
4613 && TREE_CODE (*from_p) == VAR_DECL
4614 && DECL_IGNORED_P (*from_p)
4615 && DECL_P (*to_p)
4616 && !DECL_IGNORED_P (*to_p))
4618 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4619 DECL_NAME (*from_p)
4620 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4621 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
4622 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4625 if (want_value && TREE_THIS_VOLATILE (*to_p))
4626 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4628 if (TREE_CODE (*from_p) == CALL_EXPR)
4630 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4631 instead of a GIMPLE_ASSIGN. */
4632 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4633 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4634 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4635 assign = gimple_build_call_from_tree (*from_p);
4636 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4637 if (!gimple_call_noreturn_p (assign))
4638 gimple_call_set_lhs (assign, *to_p);
4640 else
4642 assign = gimple_build_assign (*to_p, *from_p);
4643 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4646 gimplify_seq_add_stmt (pre_p, assign);
4648 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4650 /* If we've somehow already got an SSA_NAME on the LHS, then
4651 we've probably modified it twice. Not good. */
4652 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
4653 *to_p = make_ssa_name (*to_p, assign);
4654 gimple_set_lhs (assign, *to_p);
4657 if (want_value)
4659 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4660 return GS_OK;
4662 else
4663 *expr_p = NULL;
4665 return GS_ALL_DONE;
4668 /* Gimplify a comparison between two variable-sized objects. Do this
4669 with a call to BUILT_IN_MEMCMP. */
4671 static enum gimplify_status
4672 gimplify_variable_sized_compare (tree *expr_p)
4674 location_t loc = EXPR_LOCATION (*expr_p);
4675 tree op0 = TREE_OPERAND (*expr_p, 0);
4676 tree op1 = TREE_OPERAND (*expr_p, 1);
4677 tree t, arg, dest, src, expr;
4679 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4680 arg = unshare_expr (arg);
4681 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4682 src = build_fold_addr_expr_loc (loc, op1);
4683 dest = build_fold_addr_expr_loc (loc, op0);
4684 t = builtin_decl_implicit (BUILT_IN_MEMCMP);
4685 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4687 expr
4688 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4689 SET_EXPR_LOCATION (expr, loc);
4690 *expr_p = expr;
4692 return GS_OK;
4695 /* Gimplify a comparison between two aggregate objects of integral scalar
4696 mode as a comparison between the bitwise equivalent scalar values. */
4698 static enum gimplify_status
4699 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4701 location_t loc = EXPR_LOCATION (*expr_p);
4702 tree op0 = TREE_OPERAND (*expr_p, 0);
4703 tree op1 = TREE_OPERAND (*expr_p, 1);
4705 tree type = TREE_TYPE (op0);
4706 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
4708 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
4709 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
4711 *expr_p
4712 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
4714 return GS_OK;
4717 /* Gimplify an expression sequence. This function gimplifies each
4718 expression and rewrites the original expression with the last
4719 expression of the sequence in GIMPLE form.
4721 PRE_P points to the list where the side effects for all the
4722 expressions in the sequence will be emitted.
4724 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
4726 static enum gimplify_status
4727 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
4729 tree t = *expr_p;
4733 tree *sub_p = &TREE_OPERAND (t, 0);
4735 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
4736 gimplify_compound_expr (sub_p, pre_p, false);
4737 else
4738 gimplify_stmt (sub_p, pre_p);
4740 t = TREE_OPERAND (t, 1);
4742 while (TREE_CODE (t) == COMPOUND_EXPR);
4744 *expr_p = t;
4745 if (want_value)
4746 return GS_OK;
4747 else
4749 gimplify_stmt (expr_p, pre_p);
4750 return GS_ALL_DONE;
4754 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
4755 gimplify. After gimplification, EXPR_P will point to a new temporary
4756 that holds the original value of the SAVE_EXPR node.
4758 PRE_P points to the list where side effects that must happen before
4759 *EXPR_P should be stored. */
4761 static enum gimplify_status
4762 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4764 enum gimplify_status ret = GS_ALL_DONE;
4765 tree val;
4767 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
4768 val = TREE_OPERAND (*expr_p, 0);
4770 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
4771 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
4773 /* The operand may be a void-valued expression such as SAVE_EXPRs
4774 generated by the Java frontend for class initialization. It is
4775 being executed only for its side-effects. */
4776 if (TREE_TYPE (val) == void_type_node)
4778 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4779 is_gimple_stmt, fb_none);
4780 val = NULL;
4782 else
4783 val = get_initialized_tmp_var (val, pre_p, post_p);
4785 TREE_OPERAND (*expr_p, 0) = val;
4786 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
4789 *expr_p = val;
4791 return ret;
4794 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
4796 unary_expr
4797 : ...
4798 | '&' varname
4801 PRE_P points to the list where side effects that must happen before
4802 *EXPR_P should be stored.
4804 POST_P points to the list where side effects that must happen after
4805 *EXPR_P should be stored. */
4807 static enum gimplify_status
4808 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4810 tree expr = *expr_p;
4811 tree op0 = TREE_OPERAND (expr, 0);
4812 enum gimplify_status ret;
4813 location_t loc = EXPR_LOCATION (*expr_p);
4815 switch (TREE_CODE (op0))
4817 case INDIRECT_REF:
4818 do_indirect_ref:
4819 /* Check if we are dealing with an expression of the form '&*ptr'.
4820 While the front end folds away '&*ptr' into 'ptr', these
4821 expressions may be generated internally by the compiler (e.g.,
4822 builtins like __builtin_va_end). */
4823 /* Caution: the silent array decomposition semantics we allow for
4824 ADDR_EXPR means we can't always discard the pair. */
4825 /* Gimplification of the ADDR_EXPR operand may drop
4826 cv-qualification conversions, so make sure we add them if
4827 needed. */
4829 tree op00 = TREE_OPERAND (op0, 0);
4830 tree t_expr = TREE_TYPE (expr);
4831 tree t_op00 = TREE_TYPE (op00);
4833 if (!useless_type_conversion_p (t_expr, t_op00))
4834 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
4835 *expr_p = op00;
4836 ret = GS_OK;
4838 break;
4840 case VIEW_CONVERT_EXPR:
4841 /* Take the address of our operand and then convert it to the type of
4842 this ADDR_EXPR.
4844 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
4845 all clear. The impact of this transformation is even less clear. */
4847 /* If the operand is a useless conversion, look through it. Doing so
4848 guarantees that the ADDR_EXPR and its operand will remain of the
4849 same type. */
4850 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
4851 op0 = TREE_OPERAND (op0, 0);
4853 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
4854 build_fold_addr_expr_loc (loc,
4855 TREE_OPERAND (op0, 0)));
4856 ret = GS_OK;
4857 break;
4859 default:
4860 /* We use fb_either here because the C frontend sometimes takes
4861 the address of a call that returns a struct; see
4862 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
4863 the implied temporary explicit. */
4865 /* Make the operand addressable. */
4866 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
4867 is_gimple_addressable, fb_either);
4868 if (ret == GS_ERROR)
4869 break;
4871 /* Then mark it. Beware that it may not be possible to do so directly
4872 if a temporary has been created by the gimplification. */
4873 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
4875 op0 = TREE_OPERAND (expr, 0);
4877 /* For various reasons, the gimplification of the expression
4878 may have made a new INDIRECT_REF. */
4879 if (TREE_CODE (op0) == INDIRECT_REF)
4880 goto do_indirect_ref;
4882 mark_addressable (TREE_OPERAND (expr, 0));
4884 /* The FEs may end up building ADDR_EXPRs early on a decl with
4885 an incomplete type. Re-build ADDR_EXPRs in canonical form
4886 here. */
4887 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
4888 *expr_p = build_fold_addr_expr (op0);
4890 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
4891 recompute_tree_invariant_for_addr_expr (*expr_p);
4893 /* If we re-built the ADDR_EXPR add a conversion to the original type
4894 if required. */
4895 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
4896 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
4898 break;
4901 return ret;
4904 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
4905 value; output operands should be a gimple lvalue. */
4907 static enum gimplify_status
4908 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4910 tree expr;
4911 int noutputs;
4912 const char **oconstraints;
4913 int i;
4914 tree link;
4915 const char *constraint;
4916 bool allows_mem, allows_reg, is_inout;
4917 enum gimplify_status ret, tret;
4918 gimple stmt;
4919 VEC(tree, gc) *inputs;
4920 VEC(tree, gc) *outputs;
4921 VEC(tree, gc) *clobbers;
4922 VEC(tree, gc) *labels;
4923 tree link_next;
4925 expr = *expr_p;
4926 noutputs = list_length (ASM_OUTPUTS (expr));
4927 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
4929 inputs = outputs = clobbers = labels = NULL;
4931 ret = GS_ALL_DONE;
4932 link_next = NULL_TREE;
4933 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
4935 bool ok;
4936 size_t constraint_len;
4938 link_next = TREE_CHAIN (link);
4940 oconstraints[i]
4941 = constraint
4942 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4943 constraint_len = strlen (constraint);
4944 if (constraint_len == 0)
4945 continue;
4947 ok = parse_output_constraint (&constraint, i, 0, 0,
4948 &allows_mem, &allows_reg, &is_inout);
4949 if (!ok)
4951 ret = GS_ERROR;
4952 is_inout = false;
4955 if (!allows_reg && allows_mem)
4956 mark_addressable (TREE_VALUE (link));
4958 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4959 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
4960 fb_lvalue | fb_mayfail);
4961 if (tret == GS_ERROR)
4963 error ("invalid lvalue in asm output %d", i);
4964 ret = tret;
4967 VEC_safe_push (tree, gc, outputs, link);
4968 TREE_CHAIN (link) = NULL_TREE;
4970 if (is_inout)
4972 /* An input/output operand. To give the optimizers more
4973 flexibility, split it into separate input and output
4974 operands. */
4975 tree input;
4976 char buf[10];
4978 /* Turn the in/out constraint into an output constraint. */
4979 char *p = xstrdup (constraint);
4980 p[0] = '=';
4981 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
4983 /* And add a matching input constraint. */
4984 if (allows_reg)
4986 sprintf (buf, "%d", i);
4988 /* If there are multiple alternatives in the constraint,
4989 handle each of them individually. Those that allow register
4990 will be replaced with operand number, the others will stay
4991 unchanged. */
4992 if (strchr (p, ',') != NULL)
4994 size_t len = 0, buflen = strlen (buf);
4995 char *beg, *end, *str, *dst;
4997 for (beg = p + 1;;)
4999 end = strchr (beg, ',');
5000 if (end == NULL)
5001 end = strchr (beg, '\0');
5002 if ((size_t) (end - beg) < buflen)
5003 len += buflen + 1;
5004 else
5005 len += end - beg + 1;
5006 if (*end)
5007 beg = end + 1;
5008 else
5009 break;
5012 str = (char *) alloca (len);
5013 for (beg = p + 1, dst = str;;)
5015 const char *tem;
5016 bool mem_p, reg_p, inout_p;
5018 end = strchr (beg, ',');
5019 if (end)
5020 *end = '\0';
5021 beg[-1] = '=';
5022 tem = beg - 1;
5023 parse_output_constraint (&tem, i, 0, 0,
5024 &mem_p, &reg_p, &inout_p);
5025 if (dst != str)
5026 *dst++ = ',';
5027 if (reg_p)
5029 memcpy (dst, buf, buflen);
5030 dst += buflen;
5032 else
5034 if (end)
5035 len = end - beg;
5036 else
5037 len = strlen (beg);
5038 memcpy (dst, beg, len);
5039 dst += len;
5041 if (end)
5042 beg = end + 1;
5043 else
5044 break;
5046 *dst = '\0';
5047 input = build_string (dst - str, str);
5049 else
5050 input = build_string (strlen (buf), buf);
5052 else
5053 input = build_string (constraint_len - 1, constraint + 1);
5055 free (p);
5057 input = build_tree_list (build_tree_list (NULL_TREE, input),
5058 unshare_expr (TREE_VALUE (link)));
5059 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5063 link_next = NULL_TREE;
5064 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5066 link_next = TREE_CHAIN (link);
5067 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5068 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5069 oconstraints, &allows_mem, &allows_reg);
5071 /* If we can't make copies, we can only accept memory. */
5072 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5074 if (allows_mem)
5075 allows_reg = 0;
5076 else
5078 error ("impossible constraint in %<asm%>");
5079 error ("non-memory input %d must stay in memory", i);
5080 return GS_ERROR;
5084 /* If the operand is a memory input, it should be an lvalue. */
5085 if (!allows_reg && allows_mem)
5087 tree inputv = TREE_VALUE (link);
5088 STRIP_NOPS (inputv);
5089 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5090 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5091 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5092 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5093 TREE_VALUE (link) = error_mark_node;
5094 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5095 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5096 mark_addressable (TREE_VALUE (link));
5097 if (tret == GS_ERROR)
5099 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5100 input_location = EXPR_LOCATION (TREE_VALUE (link));
5101 error ("memory input %d is not directly addressable", i);
5102 ret = tret;
5105 else
5107 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5108 is_gimple_asm_val, fb_rvalue);
5109 if (tret == GS_ERROR)
5110 ret = tret;
5113 TREE_CHAIN (link) = NULL_TREE;
5114 VEC_safe_push (tree, gc, inputs, link);
5117 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5118 VEC_safe_push (tree, gc, clobbers, link);
5120 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5121 VEC_safe_push (tree, gc, labels, link);
5123 /* Do not add ASMs with errors to the gimple IL stream. */
5124 if (ret != GS_ERROR)
5126 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5127 inputs, outputs, clobbers, labels);
5129 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5130 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5132 gimplify_seq_add_stmt (pre_p, stmt);
5135 return ret;
5138 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5139 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5140 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5141 return to this function.
5143 FIXME should we complexify the prequeue handling instead? Or use flags
5144 for all the cleanups and let the optimizer tighten them up? The current
5145 code seems pretty fragile; it will break on a cleanup within any
5146 non-conditional nesting. But any such nesting would be broken, anyway;
5147 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5148 and continues out of it. We can do that at the RTL level, though, so
5149 having an optimizer to tighten up try/finally regions would be a Good
5150 Thing. */
5152 static enum gimplify_status
5153 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5155 gimple_stmt_iterator iter;
5156 gimple_seq body_sequence = NULL;
5158 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5160 /* We only care about the number of conditions between the innermost
5161 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5162 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5163 int old_conds = gimplify_ctxp->conditions;
5164 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5165 gimplify_ctxp->conditions = 0;
5166 gimplify_ctxp->conditional_cleanups = NULL;
5168 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5170 gimplify_ctxp->conditions = old_conds;
5171 gimplify_ctxp->conditional_cleanups = old_cleanups;
5173 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5175 gimple wce = gsi_stmt (iter);
5177 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5179 if (gsi_one_before_end_p (iter))
5181 /* Note that gsi_insert_seq_before and gsi_remove do not
5182 scan operands, unlike some other sequence mutators. */
5183 if (!gimple_wce_cleanup_eh_only (wce))
5184 gsi_insert_seq_before_without_update (&iter,
5185 gimple_wce_cleanup (wce),
5186 GSI_SAME_STMT);
5187 gsi_remove (&iter, true);
5188 break;
5190 else
5192 gimple gtry;
5193 gimple_seq seq;
5194 enum gimple_try_flags kind;
5196 if (gimple_wce_cleanup_eh_only (wce))
5197 kind = GIMPLE_TRY_CATCH;
5198 else
5199 kind = GIMPLE_TRY_FINALLY;
5200 seq = gsi_split_seq_after (iter);
5202 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5203 /* Do not use gsi_replace here, as it may scan operands.
5204 We want to do a simple structural modification only. */
5205 *gsi_stmt_ptr (&iter) = gtry;
5206 iter = gsi_start (seq);
5209 else
5210 gsi_next (&iter);
5213 gimplify_seq_add_seq (pre_p, body_sequence);
5214 if (temp)
5216 *expr_p = temp;
5217 return GS_OK;
5219 else
5221 *expr_p = NULL;
5222 return GS_ALL_DONE;
5226 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5227 is the cleanup action required. EH_ONLY is true if the cleanup should
5228 only be executed if an exception is thrown, not on normal exit. */
5230 static void
5231 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5233 gimple wce;
5234 gimple_seq cleanup_stmts = NULL;
5236 /* Errors can result in improperly nested cleanups. Which results in
5237 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5238 if (seen_error ())
5239 return;
5241 if (gimple_conditional_context ())
5243 /* If we're in a conditional context, this is more complex. We only
5244 want to run the cleanup if we actually ran the initialization that
5245 necessitates it, but we want to run it after the end of the
5246 conditional context. So we wrap the try/finally around the
5247 condition and use a flag to determine whether or not to actually
5248 run the destructor. Thus
5250 test ? f(A()) : 0
5252 becomes (approximately)
5254 flag = 0;
5255 try {
5256 if (test) { A::A(temp); flag = 1; val = f(temp); }
5257 else { val = 0; }
5258 } finally {
5259 if (flag) A::~A(temp);
5263 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5264 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5265 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5267 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5268 gimplify_stmt (&cleanup, &cleanup_stmts);
5269 wce = gimple_build_wce (cleanup_stmts);
5271 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5272 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5273 gimplify_seq_add_stmt (pre_p, ftrue);
5275 /* Because of this manipulation, and the EH edges that jump
5276 threading cannot redirect, the temporary (VAR) will appear
5277 to be used uninitialized. Don't warn. */
5278 TREE_NO_WARNING (var) = 1;
5280 else
5282 gimplify_stmt (&cleanup, &cleanup_stmts);
5283 wce = gimple_build_wce (cleanup_stmts);
5284 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5285 gimplify_seq_add_stmt (pre_p, wce);
5289 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5291 static enum gimplify_status
5292 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5294 tree targ = *expr_p;
5295 tree temp = TARGET_EXPR_SLOT (targ);
5296 tree init = TARGET_EXPR_INITIAL (targ);
5297 enum gimplify_status ret;
5299 if (init)
5301 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5302 to the temps list. Handle also variable length TARGET_EXPRs. */
5303 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5305 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5306 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5307 gimplify_vla_decl (temp, pre_p);
5309 else
5310 gimple_add_tmp_var (temp);
5312 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5313 expression is supposed to initialize the slot. */
5314 if (VOID_TYPE_P (TREE_TYPE (init)))
5315 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5316 else
5318 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5319 init = init_expr;
5320 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5321 init = NULL;
5322 ggc_free (init_expr);
5324 if (ret == GS_ERROR)
5326 /* PR c++/28266 Make sure this is expanded only once. */
5327 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5328 return GS_ERROR;
5330 if (init)
5331 gimplify_and_add (init, pre_p);
5333 /* If needed, push the cleanup for the temp. */
5334 if (TARGET_EXPR_CLEANUP (targ))
5335 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5336 CLEANUP_EH_ONLY (targ), pre_p);
5338 /* Only expand this once. */
5339 TREE_OPERAND (targ, 3) = init;
5340 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5342 else
5343 /* We should have expanded this before. */
5344 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5346 *expr_p = temp;
5347 return GS_OK;
5350 /* Gimplification of expression trees. */
5352 /* Gimplify an expression which appears at statement context. The
5353 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5354 NULL, a new sequence is allocated.
5356 Return true if we actually added a statement to the queue. */
5358 bool
5359 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5361 gimple_seq_node last;
5363 if (!*seq_p)
5364 *seq_p = gimple_seq_alloc ();
5366 last = gimple_seq_last (*seq_p);
5367 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5368 return last != gimple_seq_last (*seq_p);
5371 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5372 to CTX. If entries already exist, force them to be some flavor of private.
5373 If there is no enclosing parallel, do nothing. */
5375 void
5376 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5378 splay_tree_node n;
5380 if (decl == NULL || !DECL_P (decl))
5381 return;
5385 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5386 if (n != NULL)
5388 if (n->value & GOVD_SHARED)
5389 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5390 else
5391 return;
5393 else if (ctx->region_type != ORT_WORKSHARE)
5394 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5396 ctx = ctx->outer_context;
5398 while (ctx);
5401 /* Similarly for each of the type sizes of TYPE. */
5403 static void
5404 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5406 if (type == NULL || type == error_mark_node)
5407 return;
5408 type = TYPE_MAIN_VARIANT (type);
5410 if (pointer_set_insert (ctx->privatized_types, type))
5411 return;
5413 switch (TREE_CODE (type))
5415 case INTEGER_TYPE:
5416 case ENUMERAL_TYPE:
5417 case BOOLEAN_TYPE:
5418 case REAL_TYPE:
5419 case FIXED_POINT_TYPE:
5420 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5421 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5422 break;
5424 case ARRAY_TYPE:
5425 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5426 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5427 break;
5429 case RECORD_TYPE:
5430 case UNION_TYPE:
5431 case QUAL_UNION_TYPE:
5433 tree field;
5434 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5435 if (TREE_CODE (field) == FIELD_DECL)
5437 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5438 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5441 break;
5443 case POINTER_TYPE:
5444 case REFERENCE_TYPE:
5445 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5446 break;
5448 default:
5449 break;
5452 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5453 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5454 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5457 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5459 static void
5460 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5462 splay_tree_node n;
5463 unsigned int nflags;
5464 tree t;
5466 if (error_operand_p (decl))
5467 return;
5469 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5470 there are constructors involved somewhere. */
5471 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5472 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5473 flags |= GOVD_SEEN;
5475 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5476 if (n != NULL)
5478 /* We shouldn't be re-adding the decl with the same data
5479 sharing class. */
5480 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5481 /* The only combination of data sharing classes we should see is
5482 FIRSTPRIVATE and LASTPRIVATE. */
5483 nflags = n->value | flags;
5484 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5485 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5486 n->value = nflags;
5487 return;
5490 /* When adding a variable-sized variable, we have to handle all sorts
5491 of additional bits of data: the pointer replacement variable, and
5492 the parameters of the type. */
5493 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5495 /* Add the pointer replacement variable as PRIVATE if the variable
5496 replacement is private, else FIRSTPRIVATE since we'll need the
5497 address of the original variable either for SHARED, or for the
5498 copy into or out of the context. */
5499 if (!(flags & GOVD_LOCAL))
5501 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5502 nflags |= flags & GOVD_SEEN;
5503 t = DECL_VALUE_EXPR (decl);
5504 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5505 t = TREE_OPERAND (t, 0);
5506 gcc_assert (DECL_P (t));
5507 omp_add_variable (ctx, t, nflags);
5510 /* Add all of the variable and type parameters (which should have
5511 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5512 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5513 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5514 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5516 /* The variable-sized variable itself is never SHARED, only some form
5517 of PRIVATE. The sharing would take place via the pointer variable
5518 which we remapped above. */
5519 if (flags & GOVD_SHARED)
5520 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5521 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5523 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5524 alloca statement we generate for the variable, so make sure it
5525 is available. This isn't automatically needed for the SHARED
5526 case, since we won't be allocating local storage then.
5527 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5528 in this case omp_notice_variable will be called later
5529 on when it is gimplified. */
5530 else if (! (flags & GOVD_LOCAL)
5531 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5532 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5534 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5536 gcc_assert ((flags & GOVD_LOCAL) == 0);
5537 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5539 /* Similar to the direct variable sized case above, we'll need the
5540 size of references being privatized. */
5541 if ((flags & GOVD_SHARED) == 0)
5543 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5544 if (TREE_CODE (t) != INTEGER_CST)
5545 omp_notice_variable (ctx, t, true);
5549 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5552 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5553 This just prints out diagnostics about threadprivate variable uses
5554 in untied tasks. If DECL2 is non-NULL, prevent this warning
5555 on that variable. */
5557 static bool
5558 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5559 tree decl2)
5561 splay_tree_node n;
5563 if (ctx->region_type != ORT_UNTIED_TASK)
5564 return false;
5565 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5566 if (n == NULL)
5568 error ("threadprivate variable %qE used in untied task",
5569 DECL_NAME (decl));
5570 error_at (ctx->location, "enclosing task");
5571 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5573 if (decl2)
5574 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5575 return false;
5578 /* Record the fact that DECL was used within the OpenMP context CTX.
5579 IN_CODE is true when real code uses DECL, and false when we should
5580 merely emit default(none) errors. Return true if DECL is going to
5581 be remapped and thus DECL shouldn't be gimplified into its
5582 DECL_VALUE_EXPR (if any). */
5584 static bool
5585 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5587 splay_tree_node n;
5588 unsigned flags = in_code ? GOVD_SEEN : 0;
5589 bool ret = false, shared;
5591 if (error_operand_p (decl))
5592 return false;
5594 /* Threadprivate variables are predetermined. */
5595 if (is_global_var (decl))
5597 if (DECL_THREAD_LOCAL_P (decl))
5598 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5600 if (DECL_HAS_VALUE_EXPR_P (decl))
5602 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5604 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5605 return omp_notice_threadprivate_variable (ctx, decl, value);
5609 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5610 if (n == NULL)
5612 enum omp_clause_default_kind default_kind, kind;
5613 struct gimplify_omp_ctx *octx;
5615 if (ctx->region_type == ORT_WORKSHARE)
5616 goto do_outer;
5618 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5619 remapped firstprivate instead of shared. To some extent this is
5620 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5621 default_kind = ctx->default_kind;
5622 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5623 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5624 default_kind = kind;
5626 switch (default_kind)
5628 case OMP_CLAUSE_DEFAULT_NONE:
5629 error ("%qE not specified in enclosing parallel",
5630 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5631 if ((ctx->region_type & ORT_TASK) != 0)
5632 error_at (ctx->location, "enclosing task");
5633 else
5634 error_at (ctx->location, "enclosing parallel");
5635 /* FALLTHRU */
5636 case OMP_CLAUSE_DEFAULT_SHARED:
5637 flags |= GOVD_SHARED;
5638 break;
5639 case OMP_CLAUSE_DEFAULT_PRIVATE:
5640 flags |= GOVD_PRIVATE;
5641 break;
5642 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5643 flags |= GOVD_FIRSTPRIVATE;
5644 break;
5645 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5646 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5647 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5648 if (ctx->outer_context)
5649 omp_notice_variable (ctx->outer_context, decl, in_code);
5650 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5652 splay_tree_node n2;
5654 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5655 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5657 flags |= GOVD_FIRSTPRIVATE;
5658 break;
5660 if ((octx->region_type & ORT_PARALLEL) != 0)
5661 break;
5663 if (flags & GOVD_FIRSTPRIVATE)
5664 break;
5665 if (octx == NULL
5666 && (TREE_CODE (decl) == PARM_DECL
5667 || (!is_global_var (decl)
5668 && DECL_CONTEXT (decl) == current_function_decl)))
5670 flags |= GOVD_FIRSTPRIVATE;
5671 break;
5673 flags |= GOVD_SHARED;
5674 break;
5675 default:
5676 gcc_unreachable ();
5679 if ((flags & GOVD_PRIVATE)
5680 && lang_hooks.decls.omp_private_outer_ref (decl))
5681 flags |= GOVD_PRIVATE_OUTER_REF;
5683 omp_add_variable (ctx, decl, flags);
5685 shared = (flags & GOVD_SHARED) != 0;
5686 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5687 goto do_outer;
5690 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
5691 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
5692 && DECL_SIZE (decl)
5693 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5695 splay_tree_node n2;
5696 tree t = DECL_VALUE_EXPR (decl);
5697 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5698 t = TREE_OPERAND (t, 0);
5699 gcc_assert (DECL_P (t));
5700 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
5701 n2->value |= GOVD_SEEN;
5704 shared = ((flags | n->value) & GOVD_SHARED) != 0;
5705 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5707 /* If nothing changed, there's nothing left to do. */
5708 if ((n->value & flags) == flags)
5709 return ret;
5710 flags |= n->value;
5711 n->value = flags;
5713 do_outer:
5714 /* If the variable is private in the current context, then we don't
5715 need to propagate anything to an outer context. */
5716 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
5717 return ret;
5718 if (ctx->outer_context
5719 && omp_notice_variable (ctx->outer_context, decl, in_code))
5720 return true;
5721 return ret;
5724 /* Verify that DECL is private within CTX. If there's specific information
5725 to the contrary in the innermost scope, generate an error. */
5727 static bool
5728 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
5730 splay_tree_node n;
5732 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5733 if (n != NULL)
5735 if (n->value & GOVD_SHARED)
5737 if (ctx == gimplify_omp_ctxp)
5739 error ("iteration variable %qE should be private",
5740 DECL_NAME (decl));
5741 n->value = GOVD_PRIVATE;
5742 return true;
5744 else
5745 return false;
5747 else if ((n->value & GOVD_EXPLICIT) != 0
5748 && (ctx == gimplify_omp_ctxp
5749 || (ctx->region_type == ORT_COMBINED_PARALLEL
5750 && gimplify_omp_ctxp->outer_context == ctx)))
5752 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
5753 error ("iteration variable %qE should not be firstprivate",
5754 DECL_NAME (decl));
5755 else if ((n->value & GOVD_REDUCTION) != 0)
5756 error ("iteration variable %qE should not be reduction",
5757 DECL_NAME (decl));
5759 return (ctx == gimplify_omp_ctxp
5760 || (ctx->region_type == ORT_COMBINED_PARALLEL
5761 && gimplify_omp_ctxp->outer_context == ctx));
5764 if (ctx->region_type != ORT_WORKSHARE)
5765 return false;
5766 else if (ctx->outer_context)
5767 return omp_is_private (ctx->outer_context, decl);
5768 return false;
5771 /* Return true if DECL is private within a parallel region
5772 that binds to the current construct's context or in parallel
5773 region's REDUCTION clause. */
5775 static bool
5776 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
5778 splay_tree_node n;
5782 ctx = ctx->outer_context;
5783 if (ctx == NULL)
5784 return !(is_global_var (decl)
5785 /* References might be private, but might be shared too. */
5786 || lang_hooks.decls.omp_privatize_by_reference (decl));
5788 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5789 if (n != NULL)
5790 return (n->value & GOVD_SHARED) == 0;
5792 while (ctx->region_type == ORT_WORKSHARE);
5793 return false;
5796 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
5797 and previous omp contexts. */
5799 static void
5800 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
5801 enum omp_region_type region_type)
5803 struct gimplify_omp_ctx *ctx, *outer_ctx;
5804 struct gimplify_ctx gctx;
5805 tree c;
5807 ctx = new_omp_context (region_type);
5808 outer_ctx = ctx->outer_context;
5810 while ((c = *list_p) != NULL)
5812 bool remove = false;
5813 bool notice_outer = true;
5814 const char *check_non_private = NULL;
5815 unsigned int flags;
5816 tree decl;
5818 switch (OMP_CLAUSE_CODE (c))
5820 case OMP_CLAUSE_PRIVATE:
5821 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
5822 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
5824 flags |= GOVD_PRIVATE_OUTER_REF;
5825 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
5827 else
5828 notice_outer = false;
5829 goto do_add;
5830 case OMP_CLAUSE_SHARED:
5831 flags = GOVD_SHARED | GOVD_EXPLICIT;
5832 goto do_add;
5833 case OMP_CLAUSE_FIRSTPRIVATE:
5834 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
5835 check_non_private = "firstprivate";
5836 goto do_add;
5837 case OMP_CLAUSE_LASTPRIVATE:
5838 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
5839 check_non_private = "lastprivate";
5840 goto do_add;
5841 case OMP_CLAUSE_REDUCTION:
5842 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
5843 check_non_private = "reduction";
5844 goto do_add;
5846 do_add:
5847 decl = OMP_CLAUSE_DECL (c);
5848 if (error_operand_p (decl))
5850 remove = true;
5851 break;
5853 omp_add_variable (ctx, decl, flags);
5854 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5855 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5857 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
5858 GOVD_LOCAL | GOVD_SEEN);
5859 gimplify_omp_ctxp = ctx;
5860 push_gimplify_context (&gctx);
5862 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = gimple_seq_alloc ();
5863 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = gimple_seq_alloc ();
5865 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
5866 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
5867 pop_gimplify_context
5868 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
5869 push_gimplify_context (&gctx);
5870 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
5871 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
5872 pop_gimplify_context
5873 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
5874 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
5875 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
5877 gimplify_omp_ctxp = outer_ctx;
5879 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5880 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
5882 gimplify_omp_ctxp = ctx;
5883 push_gimplify_context (&gctx);
5884 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
5886 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
5887 NULL, NULL);
5888 TREE_SIDE_EFFECTS (bind) = 1;
5889 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
5890 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
5892 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
5893 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
5894 pop_gimplify_context
5895 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
5896 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
5898 gimplify_omp_ctxp = outer_ctx;
5900 if (notice_outer)
5901 goto do_notice;
5902 break;
5904 case OMP_CLAUSE_COPYIN:
5905 case OMP_CLAUSE_COPYPRIVATE:
5906 decl = OMP_CLAUSE_DECL (c);
5907 if (error_operand_p (decl))
5909 remove = true;
5910 break;
5912 do_notice:
5913 if (outer_ctx)
5914 omp_notice_variable (outer_ctx, decl, true);
5915 if (check_non_private
5916 && region_type == ORT_WORKSHARE
5917 && omp_check_private (ctx, decl))
5919 error ("%s variable %qE is private in outer context",
5920 check_non_private, DECL_NAME (decl));
5921 remove = true;
5923 break;
5925 case OMP_CLAUSE_FINAL:
5926 case OMP_CLAUSE_IF:
5927 OMP_CLAUSE_OPERAND (c, 0)
5928 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
5929 /* Fall through. */
5931 case OMP_CLAUSE_SCHEDULE:
5932 case OMP_CLAUSE_NUM_THREADS:
5933 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
5934 is_gimple_val, fb_rvalue) == GS_ERROR)
5935 remove = true;
5936 break;
5938 case OMP_CLAUSE_NOWAIT:
5939 case OMP_CLAUSE_ORDERED:
5940 case OMP_CLAUSE_UNTIED:
5941 case OMP_CLAUSE_COLLAPSE:
5942 case OMP_CLAUSE_MERGEABLE:
5943 break;
5945 case OMP_CLAUSE_DEFAULT:
5946 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
5947 break;
5949 default:
5950 gcc_unreachable ();
5953 if (remove)
5954 *list_p = OMP_CLAUSE_CHAIN (c);
5955 else
5956 list_p = &OMP_CLAUSE_CHAIN (c);
5959 gimplify_omp_ctxp = ctx;
5962 /* For all variables that were not actually used within the context,
5963 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
5965 static int
5966 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
5968 tree *list_p = (tree *) data;
5969 tree decl = (tree) n->key;
5970 unsigned flags = n->value;
5971 enum omp_clause_code code;
5972 tree clause;
5973 bool private_debug;
5975 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
5976 return 0;
5977 if ((flags & GOVD_SEEN) == 0)
5978 return 0;
5979 if (flags & GOVD_DEBUG_PRIVATE)
5981 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
5982 private_debug = true;
5984 else
5985 private_debug
5986 = lang_hooks.decls.omp_private_debug_clause (decl,
5987 !!(flags & GOVD_SHARED));
5988 if (private_debug)
5989 code = OMP_CLAUSE_PRIVATE;
5990 else if (flags & GOVD_SHARED)
5992 if (is_global_var (decl))
5994 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
5995 while (ctx != NULL)
5997 splay_tree_node on
5998 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5999 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6000 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6001 break;
6002 ctx = ctx->outer_context;
6004 if (ctx == NULL)
6005 return 0;
6007 code = OMP_CLAUSE_SHARED;
6009 else if (flags & GOVD_PRIVATE)
6010 code = OMP_CLAUSE_PRIVATE;
6011 else if (flags & GOVD_FIRSTPRIVATE)
6012 code = OMP_CLAUSE_FIRSTPRIVATE;
6013 else
6014 gcc_unreachable ();
6016 clause = build_omp_clause (input_location, code);
6017 OMP_CLAUSE_DECL (clause) = decl;
6018 OMP_CLAUSE_CHAIN (clause) = *list_p;
6019 if (private_debug)
6020 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6021 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6022 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6023 *list_p = clause;
6024 lang_hooks.decls.omp_finish_clause (clause);
6026 return 0;
6029 static void
6030 gimplify_adjust_omp_clauses (tree *list_p)
6032 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6033 tree c, decl;
6035 while ((c = *list_p) != NULL)
6037 splay_tree_node n;
6038 bool remove = false;
6040 switch (OMP_CLAUSE_CODE (c))
6042 case OMP_CLAUSE_PRIVATE:
6043 case OMP_CLAUSE_SHARED:
6044 case OMP_CLAUSE_FIRSTPRIVATE:
6045 decl = OMP_CLAUSE_DECL (c);
6046 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6047 remove = !(n->value & GOVD_SEEN);
6048 if (! remove)
6050 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6051 if ((n->value & GOVD_DEBUG_PRIVATE)
6052 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6054 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6055 || ((n->value & GOVD_DATA_SHARE_CLASS)
6056 == GOVD_PRIVATE));
6057 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6058 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6061 break;
6063 case OMP_CLAUSE_LASTPRIVATE:
6064 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6065 accurately reflect the presence of a FIRSTPRIVATE clause. */
6066 decl = OMP_CLAUSE_DECL (c);
6067 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6068 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6069 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6070 break;
6072 case OMP_CLAUSE_REDUCTION:
6073 case OMP_CLAUSE_COPYIN:
6074 case OMP_CLAUSE_COPYPRIVATE:
6075 case OMP_CLAUSE_IF:
6076 case OMP_CLAUSE_NUM_THREADS:
6077 case OMP_CLAUSE_SCHEDULE:
6078 case OMP_CLAUSE_NOWAIT:
6079 case OMP_CLAUSE_ORDERED:
6080 case OMP_CLAUSE_DEFAULT:
6081 case OMP_CLAUSE_UNTIED:
6082 case OMP_CLAUSE_COLLAPSE:
6083 case OMP_CLAUSE_FINAL:
6084 case OMP_CLAUSE_MERGEABLE:
6085 break;
6087 default:
6088 gcc_unreachable ();
6091 if (remove)
6092 *list_p = OMP_CLAUSE_CHAIN (c);
6093 else
6094 list_p = &OMP_CLAUSE_CHAIN (c);
6097 /* Add in any implicit data sharing. */
6098 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6100 gimplify_omp_ctxp = ctx->outer_context;
6101 delete_omp_context (ctx);
6104 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6105 gimplification of the body, as well as scanning the body for used
6106 variables. We need to do this scan now, because variable-sized
6107 decls will be decomposed during gimplification. */
6109 static void
6110 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6112 tree expr = *expr_p;
6113 gimple g;
6114 gimple_seq body = NULL;
6115 struct gimplify_ctx gctx;
6117 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6118 OMP_PARALLEL_COMBINED (expr)
6119 ? ORT_COMBINED_PARALLEL
6120 : ORT_PARALLEL);
6122 push_gimplify_context (&gctx);
6124 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6125 if (gimple_code (g) == GIMPLE_BIND)
6126 pop_gimplify_context (g);
6127 else
6128 pop_gimplify_context (NULL);
6130 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6132 g = gimple_build_omp_parallel (body,
6133 OMP_PARALLEL_CLAUSES (expr),
6134 NULL_TREE, NULL_TREE);
6135 if (OMP_PARALLEL_COMBINED (expr))
6136 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6137 gimplify_seq_add_stmt (pre_p, g);
6138 *expr_p = NULL_TREE;
6141 /* Gimplify the contents of an OMP_TASK statement. This involves
6142 gimplification of the body, as well as scanning the body for used
6143 variables. We need to do this scan now, because variable-sized
6144 decls will be decomposed during gimplification. */
6146 static void
6147 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6149 tree expr = *expr_p;
6150 gimple g;
6151 gimple_seq body = NULL;
6152 struct gimplify_ctx gctx;
6154 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6155 find_omp_clause (OMP_TASK_CLAUSES (expr),
6156 OMP_CLAUSE_UNTIED)
6157 ? ORT_UNTIED_TASK : ORT_TASK);
6159 push_gimplify_context (&gctx);
6161 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6162 if (gimple_code (g) == GIMPLE_BIND)
6163 pop_gimplify_context (g);
6164 else
6165 pop_gimplify_context (NULL);
6167 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6169 g = gimple_build_omp_task (body,
6170 OMP_TASK_CLAUSES (expr),
6171 NULL_TREE, NULL_TREE,
6172 NULL_TREE, NULL_TREE, NULL_TREE);
6173 gimplify_seq_add_stmt (pre_p, g);
6174 *expr_p = NULL_TREE;
6177 /* Gimplify the gross structure of an OMP_FOR statement. */
6179 static enum gimplify_status
6180 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6182 tree for_stmt, decl, var, t;
6183 enum gimplify_status ret = GS_ALL_DONE;
6184 enum gimplify_status tret;
6185 gimple gfor;
6186 gimple_seq for_body, for_pre_body;
6187 int i;
6189 for_stmt = *expr_p;
6191 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6192 ORT_WORKSHARE);
6194 /* Handle OMP_FOR_INIT. */
6195 for_pre_body = NULL;
6196 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6197 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6199 for_body = gimple_seq_alloc ();
6200 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6201 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6202 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6203 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6204 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6206 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6207 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6208 decl = TREE_OPERAND (t, 0);
6209 gcc_assert (DECL_P (decl));
6210 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6211 || POINTER_TYPE_P (TREE_TYPE (decl)));
6213 /* Make sure the iteration variable is private. */
6214 if (omp_is_private (gimplify_omp_ctxp, decl))
6215 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6216 else
6217 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6219 /* If DECL is not a gimple register, create a temporary variable to act
6220 as an iteration counter. This is valid, since DECL cannot be
6221 modified in the body of the loop. */
6222 if (!is_gimple_reg (decl))
6224 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6225 TREE_OPERAND (t, 0) = var;
6227 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6229 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6231 else
6232 var = decl;
6234 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6235 is_gimple_val, fb_rvalue);
6236 ret = MIN (ret, tret);
6237 if (ret == GS_ERROR)
6238 return ret;
6240 /* Handle OMP_FOR_COND. */
6241 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6242 gcc_assert (COMPARISON_CLASS_P (t));
6243 gcc_assert (TREE_OPERAND (t, 0) == decl);
6245 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6246 is_gimple_val, fb_rvalue);
6247 ret = MIN (ret, tret);
6249 /* Handle OMP_FOR_INCR. */
6250 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6251 switch (TREE_CODE (t))
6253 case PREINCREMENT_EXPR:
6254 case POSTINCREMENT_EXPR:
6255 t = build_int_cst (TREE_TYPE (decl), 1);
6256 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6257 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6258 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6259 break;
6261 case PREDECREMENT_EXPR:
6262 case POSTDECREMENT_EXPR:
6263 t = build_int_cst (TREE_TYPE (decl), -1);
6264 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6265 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6266 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6267 break;
6269 case MODIFY_EXPR:
6270 gcc_assert (TREE_OPERAND (t, 0) == decl);
6271 TREE_OPERAND (t, 0) = var;
6273 t = TREE_OPERAND (t, 1);
6274 switch (TREE_CODE (t))
6276 case PLUS_EXPR:
6277 if (TREE_OPERAND (t, 1) == decl)
6279 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6280 TREE_OPERAND (t, 0) = var;
6281 break;
6284 /* Fallthru. */
6285 case MINUS_EXPR:
6286 case POINTER_PLUS_EXPR:
6287 gcc_assert (TREE_OPERAND (t, 0) == decl);
6288 TREE_OPERAND (t, 0) = var;
6289 break;
6290 default:
6291 gcc_unreachable ();
6294 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6295 is_gimple_val, fb_rvalue);
6296 ret = MIN (ret, tret);
6297 break;
6299 default:
6300 gcc_unreachable ();
6303 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6305 tree c;
6306 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6307 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6308 && OMP_CLAUSE_DECL (c) == decl
6309 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6311 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6312 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6313 gcc_assert (TREE_OPERAND (t, 0) == var);
6314 t = TREE_OPERAND (t, 1);
6315 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6316 || TREE_CODE (t) == MINUS_EXPR
6317 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6318 gcc_assert (TREE_OPERAND (t, 0) == var);
6319 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6320 TREE_OPERAND (t, 1));
6321 gimplify_assign (decl, t,
6322 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6327 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6329 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6331 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6332 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6333 for_pre_body);
6335 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6337 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6338 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6339 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6340 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6341 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6342 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6343 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6344 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6347 gimplify_seq_add_stmt (pre_p, gfor);
6348 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6351 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6352 In particular, OMP_SECTIONS and OMP_SINGLE. */
6354 static void
6355 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6357 tree expr = *expr_p;
6358 gimple stmt;
6359 gimple_seq body = NULL;
6361 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6362 gimplify_and_add (OMP_BODY (expr), &body);
6363 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6365 if (TREE_CODE (expr) == OMP_SECTIONS)
6366 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6367 else if (TREE_CODE (expr) == OMP_SINGLE)
6368 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6369 else
6370 gcc_unreachable ();
6372 gimplify_seq_add_stmt (pre_p, stmt);
6375 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6376 stabilized the lhs of the atomic operation as *ADDR. Return true if
6377 EXPR is this stabilized form. */
6379 static bool
6380 goa_lhs_expr_p (tree expr, tree addr)
6382 /* Also include casts to other type variants. The C front end is fond
6383 of adding these for e.g. volatile variables. This is like
6384 STRIP_TYPE_NOPS but includes the main variant lookup. */
6385 STRIP_USELESS_TYPE_CONVERSION (expr);
6387 if (TREE_CODE (expr) == INDIRECT_REF)
6389 expr = TREE_OPERAND (expr, 0);
6390 while (expr != addr
6391 && (CONVERT_EXPR_P (expr)
6392 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6393 && TREE_CODE (expr) == TREE_CODE (addr)
6394 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6396 expr = TREE_OPERAND (expr, 0);
6397 addr = TREE_OPERAND (addr, 0);
6399 if (expr == addr)
6400 return true;
6401 return (TREE_CODE (addr) == ADDR_EXPR
6402 && TREE_CODE (expr) == ADDR_EXPR
6403 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6405 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6406 return true;
6407 return false;
6410 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6411 expression does not involve the lhs, evaluate it into a temporary.
6412 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6413 or -1 if an error was encountered. */
6415 static int
6416 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6417 tree lhs_var)
6419 tree expr = *expr_p;
6420 int saw_lhs;
6422 if (goa_lhs_expr_p (expr, lhs_addr))
6424 *expr_p = lhs_var;
6425 return 1;
6427 if (is_gimple_val (expr))
6428 return 0;
6430 saw_lhs = 0;
6431 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6433 case tcc_binary:
6434 case tcc_comparison:
6435 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6436 lhs_var);
6437 case tcc_unary:
6438 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6439 lhs_var);
6440 break;
6441 case tcc_expression:
6442 switch (TREE_CODE (expr))
6444 case TRUTH_ANDIF_EXPR:
6445 case TRUTH_ORIF_EXPR:
6446 case TRUTH_AND_EXPR:
6447 case TRUTH_OR_EXPR:
6448 case TRUTH_XOR_EXPR:
6449 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6450 lhs_addr, lhs_var);
6451 case TRUTH_NOT_EXPR:
6452 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6453 lhs_addr, lhs_var);
6454 break;
6455 case COMPOUND_EXPR:
6456 /* Break out any preevaluations from cp_build_modify_expr. */
6457 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6458 expr = TREE_OPERAND (expr, 1))
6459 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6460 *expr_p = expr;
6461 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6462 default:
6463 break;
6465 break;
6466 default:
6467 break;
6470 if (saw_lhs == 0)
6472 enum gimplify_status gs;
6473 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6474 if (gs != GS_ALL_DONE)
6475 saw_lhs = -1;
6478 return saw_lhs;
6481 /* Gimplify an OMP_ATOMIC statement. */
6483 static enum gimplify_status
6484 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6486 tree addr = TREE_OPERAND (*expr_p, 0);
6487 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6488 ? NULL : TREE_OPERAND (*expr_p, 1);
6489 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6490 tree tmp_load;
6491 gimple loadstmt, storestmt;
6493 tmp_load = create_tmp_reg (type, NULL);
6494 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6495 return GS_ERROR;
6497 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6498 != GS_ALL_DONE)
6499 return GS_ERROR;
6501 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6502 gimplify_seq_add_stmt (pre_p, loadstmt);
6503 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6504 != GS_ALL_DONE)
6505 return GS_ERROR;
6507 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6508 rhs = tmp_load;
6509 storestmt = gimple_build_omp_atomic_store (rhs);
6510 gimplify_seq_add_stmt (pre_p, storestmt);
6511 switch (TREE_CODE (*expr_p))
6513 case OMP_ATOMIC_READ:
6514 case OMP_ATOMIC_CAPTURE_OLD:
6515 *expr_p = tmp_load;
6516 gimple_omp_atomic_set_need_value (loadstmt);
6517 break;
6518 case OMP_ATOMIC_CAPTURE_NEW:
6519 *expr_p = rhs;
6520 gimple_omp_atomic_set_need_value (storestmt);
6521 break;
6522 default:
6523 *expr_p = NULL;
6524 break;
6527 return GS_ALL_DONE;
6530 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6531 expression produces a value to be used as an operand inside a GIMPLE
6532 statement, the value will be stored back in *EXPR_P. This value will
6533 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6534 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6535 emitted in PRE_P and POST_P.
6537 Additionally, this process may overwrite parts of the input
6538 expression during gimplification. Ideally, it should be
6539 possible to do non-destructive gimplification.
6541 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6542 the expression needs to evaluate to a value to be used as
6543 an operand in a GIMPLE statement, this value will be stored in
6544 *EXPR_P on exit. This happens when the caller specifies one
6545 of fb_lvalue or fb_rvalue fallback flags.
6547 PRE_P will contain the sequence of GIMPLE statements corresponding
6548 to the evaluation of EXPR and all the side-effects that must
6549 be executed before the main expression. On exit, the last
6550 statement of PRE_P is the core statement being gimplified. For
6551 instance, when gimplifying 'if (++a)' the last statement in
6552 PRE_P will be 'if (t.1)' where t.1 is the result of
6553 pre-incrementing 'a'.
6555 POST_P will contain the sequence of GIMPLE statements corresponding
6556 to the evaluation of all the side-effects that must be executed
6557 after the main expression. If this is NULL, the post
6558 side-effects are stored at the end of PRE_P.
6560 The reason why the output is split in two is to handle post
6561 side-effects explicitly. In some cases, an expression may have
6562 inner and outer post side-effects which need to be emitted in
6563 an order different from the one given by the recursive
6564 traversal. For instance, for the expression (*p--)++ the post
6565 side-effects of '--' must actually occur *after* the post
6566 side-effects of '++'. However, gimplification will first visit
6567 the inner expression, so if a separate POST sequence was not
6568 used, the resulting sequence would be:
6570 1 t.1 = *p
6571 2 p = p - 1
6572 3 t.2 = t.1 + 1
6573 4 *p = t.2
6575 However, the post-decrement operation in line #2 must not be
6576 evaluated until after the store to *p at line #4, so the
6577 correct sequence should be:
6579 1 t.1 = *p
6580 2 t.2 = t.1 + 1
6581 3 *p = t.2
6582 4 p = p - 1
6584 So, by specifying a separate post queue, it is possible
6585 to emit the post side-effects in the correct order.
6586 If POST_P is NULL, an internal queue will be used. Before
6587 returning to the caller, the sequence POST_P is appended to
6588 the main output sequence PRE_P.
6590 GIMPLE_TEST_F points to a function that takes a tree T and
6591 returns nonzero if T is in the GIMPLE form requested by the
6592 caller. The GIMPLE predicates are in gimple.c.
6594 FALLBACK tells the function what sort of a temporary we want if
6595 gimplification cannot produce an expression that complies with
6596 GIMPLE_TEST_F.
6598 fb_none means that no temporary should be generated
6599 fb_rvalue means that an rvalue is OK to generate
6600 fb_lvalue means that an lvalue is OK to generate
6601 fb_either means that either is OK, but an lvalue is preferable.
6602 fb_mayfail means that gimplification may fail (in which case
6603 GS_ERROR will be returned)
6605 The return value is either GS_ERROR or GS_ALL_DONE, since this
6606 function iterates until EXPR is completely gimplified or an error
6607 occurs. */
6609 enum gimplify_status
6610 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6611 bool (*gimple_test_f) (tree), fallback_t fallback)
6613 tree tmp;
6614 gimple_seq internal_pre = NULL;
6615 gimple_seq internal_post = NULL;
6616 tree save_expr;
6617 bool is_statement;
6618 location_t saved_location;
6619 enum gimplify_status ret;
6620 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6622 save_expr = *expr_p;
6623 if (save_expr == NULL_TREE)
6624 return GS_ALL_DONE;
6626 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
6627 is_statement = gimple_test_f == is_gimple_stmt;
6628 if (is_statement)
6629 gcc_assert (pre_p);
6631 /* Consistency checks. */
6632 if (gimple_test_f == is_gimple_reg)
6633 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
6634 else if (gimple_test_f == is_gimple_val
6635 || gimple_test_f == is_gimple_call_addr
6636 || gimple_test_f == is_gimple_condexpr
6637 || gimple_test_f == is_gimple_mem_rhs
6638 || gimple_test_f == is_gimple_mem_rhs_or_call
6639 || gimple_test_f == is_gimple_reg_rhs
6640 || gimple_test_f == is_gimple_reg_rhs_or_call
6641 || gimple_test_f == is_gimple_asm_val
6642 || gimple_test_f == is_gimple_mem_ref_addr)
6643 gcc_assert (fallback & fb_rvalue);
6644 else if (gimple_test_f == is_gimple_min_lval
6645 || gimple_test_f == is_gimple_lvalue)
6646 gcc_assert (fallback & fb_lvalue);
6647 else if (gimple_test_f == is_gimple_addressable)
6648 gcc_assert (fallback & fb_either);
6649 else if (gimple_test_f == is_gimple_stmt)
6650 gcc_assert (fallback == fb_none);
6651 else
6653 /* We should have recognized the GIMPLE_TEST_F predicate to
6654 know what kind of fallback to use in case a temporary is
6655 needed to hold the value or address of *EXPR_P. */
6656 gcc_unreachable ();
6659 /* We used to check the predicate here and return immediately if it
6660 succeeds. This is wrong; the design is for gimplification to be
6661 idempotent, and for the predicates to only test for valid forms, not
6662 whether they are fully simplified. */
6663 if (pre_p == NULL)
6664 pre_p = &internal_pre;
6666 if (post_p == NULL)
6667 post_p = &internal_post;
6669 /* Remember the last statements added to PRE_P and POST_P. Every
6670 new statement added by the gimplification helpers needs to be
6671 annotated with location information. To centralize the
6672 responsibility, we remember the last statement that had been
6673 added to both queues before gimplifying *EXPR_P. If
6674 gimplification produces new statements in PRE_P and POST_P, those
6675 statements will be annotated with the same location information
6676 as *EXPR_P. */
6677 pre_last_gsi = gsi_last (*pre_p);
6678 post_last_gsi = gsi_last (*post_p);
6680 saved_location = input_location;
6681 if (save_expr != error_mark_node
6682 && EXPR_HAS_LOCATION (*expr_p))
6683 input_location = EXPR_LOCATION (*expr_p);
6685 /* Loop over the specific gimplifiers until the toplevel node
6686 remains the same. */
6689 /* Strip away as many useless type conversions as possible
6690 at the toplevel. */
6691 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
6693 /* Remember the expr. */
6694 save_expr = *expr_p;
6696 /* Die, die, die, my darling. */
6697 if (save_expr == error_mark_node
6698 || (TREE_TYPE (save_expr)
6699 && TREE_TYPE (save_expr) == error_mark_node))
6701 ret = GS_ERROR;
6702 break;
6705 /* Do any language-specific gimplification. */
6706 ret = ((enum gimplify_status)
6707 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
6708 if (ret == GS_OK)
6710 if (*expr_p == NULL_TREE)
6711 break;
6712 if (*expr_p != save_expr)
6713 continue;
6715 else if (ret != GS_UNHANDLED)
6716 break;
6718 /* Make sure that all the cases set 'ret' appropriately. */
6719 ret = GS_UNHANDLED;
6720 switch (TREE_CODE (*expr_p))
6722 /* First deal with the special cases. */
6724 case POSTINCREMENT_EXPR:
6725 case POSTDECREMENT_EXPR:
6726 case PREINCREMENT_EXPR:
6727 case PREDECREMENT_EXPR:
6728 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
6729 fallback != fb_none);
6730 break;
6732 case ARRAY_REF:
6733 case ARRAY_RANGE_REF:
6734 case REALPART_EXPR:
6735 case IMAGPART_EXPR:
6736 case COMPONENT_REF:
6737 case VIEW_CONVERT_EXPR:
6738 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
6739 fallback ? fallback : fb_rvalue);
6740 break;
6742 case COND_EXPR:
6743 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
6745 /* C99 code may assign to an array in a structure value of a
6746 conditional expression, and this has undefined behavior
6747 only on execution, so create a temporary if an lvalue is
6748 required. */
6749 if (fallback == fb_lvalue)
6751 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6752 mark_addressable (*expr_p);
6753 ret = GS_OK;
6755 break;
6757 case CALL_EXPR:
6758 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
6760 /* C99 code may assign to an array in a structure returned
6761 from a function, and this has undefined behavior only on
6762 execution, so create a temporary if an lvalue is
6763 required. */
6764 if (fallback == fb_lvalue)
6766 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6767 mark_addressable (*expr_p);
6768 ret = GS_OK;
6770 break;
6772 case TREE_LIST:
6773 gcc_unreachable ();
6775 case COMPOUND_EXPR:
6776 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
6777 break;
6779 case COMPOUND_LITERAL_EXPR:
6780 ret = gimplify_compound_literal_expr (expr_p, pre_p);
6781 break;
6783 case MODIFY_EXPR:
6784 case INIT_EXPR:
6785 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
6786 fallback != fb_none);
6787 break;
6789 case TRUTH_ANDIF_EXPR:
6790 case TRUTH_ORIF_EXPR:
6792 /* Preserve the original type of the expression and the
6793 source location of the outer expression. */
6794 tree org_type = TREE_TYPE (*expr_p);
6795 *expr_p = gimple_boolify (*expr_p);
6796 *expr_p = build3_loc (input_location, COND_EXPR,
6797 org_type, *expr_p,
6798 fold_convert_loc
6799 (input_location,
6800 org_type, boolean_true_node),
6801 fold_convert_loc
6802 (input_location,
6803 org_type, boolean_false_node));
6804 ret = GS_OK;
6805 break;
6808 case TRUTH_NOT_EXPR:
6810 tree type = TREE_TYPE (*expr_p);
6811 /* The parsers are careful to generate TRUTH_NOT_EXPR
6812 only with operands that are always zero or one.
6813 We do not fold here but handle the only interesting case
6814 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
6815 *expr_p = gimple_boolify (*expr_p);
6816 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
6817 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
6818 TREE_TYPE (*expr_p),
6819 TREE_OPERAND (*expr_p, 0));
6820 else
6821 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
6822 TREE_TYPE (*expr_p),
6823 TREE_OPERAND (*expr_p, 0),
6824 build_int_cst (TREE_TYPE (*expr_p), 1));
6825 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
6826 *expr_p = fold_convert_loc (input_location, type, *expr_p);
6827 ret = GS_OK;
6828 break;
6831 case ADDR_EXPR:
6832 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
6833 break;
6835 case VA_ARG_EXPR:
6836 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
6837 break;
6839 CASE_CONVERT:
6840 if (IS_EMPTY_STMT (*expr_p))
6842 ret = GS_ALL_DONE;
6843 break;
6846 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
6847 || fallback == fb_none)
6849 /* Just strip a conversion to void (or in void context) and
6850 try again. */
6851 *expr_p = TREE_OPERAND (*expr_p, 0);
6852 ret = GS_OK;
6853 break;
6856 ret = gimplify_conversion (expr_p);
6857 if (ret == GS_ERROR)
6858 break;
6859 if (*expr_p != save_expr)
6860 break;
6861 /* FALLTHRU */
6863 case FIX_TRUNC_EXPR:
6864 /* unary_expr: ... | '(' cast ')' val | ... */
6865 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6866 is_gimple_val, fb_rvalue);
6867 recalculate_side_effects (*expr_p);
6868 break;
6870 case INDIRECT_REF:
6872 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
6873 bool notrap = TREE_THIS_NOTRAP (*expr_p);
6874 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
6876 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
6877 if (*expr_p != save_expr)
6879 ret = GS_OK;
6880 break;
6883 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6884 is_gimple_reg, fb_rvalue);
6885 if (ret == GS_ERROR)
6886 break;
6888 recalculate_side_effects (*expr_p);
6889 *expr_p = fold_build2_loc (input_location, MEM_REF,
6890 TREE_TYPE (*expr_p),
6891 TREE_OPERAND (*expr_p, 0),
6892 build_int_cst (saved_ptr_type, 0));
6893 TREE_THIS_VOLATILE (*expr_p) = volatilep;
6894 TREE_THIS_NOTRAP (*expr_p) = notrap;
6895 ret = GS_OK;
6896 break;
6899 /* We arrive here through the various re-gimplifcation paths. */
6900 case MEM_REF:
6901 /* First try re-folding the whole thing. */
6902 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
6903 TREE_OPERAND (*expr_p, 0),
6904 TREE_OPERAND (*expr_p, 1));
6905 if (tmp)
6907 *expr_p = tmp;
6908 recalculate_side_effects (*expr_p);
6909 ret = GS_OK;
6910 break;
6912 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6913 is_gimple_mem_ref_addr, fb_rvalue);
6914 if (ret == GS_ERROR)
6915 break;
6916 recalculate_side_effects (*expr_p);
6917 ret = GS_ALL_DONE;
6918 break;
6920 /* Constants need not be gimplified. */
6921 case INTEGER_CST:
6922 case REAL_CST:
6923 case FIXED_CST:
6924 case STRING_CST:
6925 case COMPLEX_CST:
6926 case VECTOR_CST:
6927 ret = GS_ALL_DONE;
6928 break;
6930 case CONST_DECL:
6931 /* If we require an lvalue, such as for ADDR_EXPR, retain the
6932 CONST_DECL node. Otherwise the decl is replaceable by its
6933 value. */
6934 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
6935 if (fallback & fb_lvalue)
6936 ret = GS_ALL_DONE;
6937 else
6939 *expr_p = DECL_INITIAL (*expr_p);
6940 ret = GS_OK;
6942 break;
6944 case DECL_EXPR:
6945 ret = gimplify_decl_expr (expr_p, pre_p);
6946 break;
6948 case BIND_EXPR:
6949 ret = gimplify_bind_expr (expr_p, pre_p);
6950 break;
6952 case LOOP_EXPR:
6953 ret = gimplify_loop_expr (expr_p, pre_p);
6954 break;
6956 case SWITCH_EXPR:
6957 ret = gimplify_switch_expr (expr_p, pre_p);
6958 break;
6960 case EXIT_EXPR:
6961 ret = gimplify_exit_expr (expr_p);
6962 break;
6964 case GOTO_EXPR:
6965 /* If the target is not LABEL, then it is a computed jump
6966 and the target needs to be gimplified. */
6967 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
6969 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
6970 NULL, is_gimple_val, fb_rvalue);
6971 if (ret == GS_ERROR)
6972 break;
6974 gimplify_seq_add_stmt (pre_p,
6975 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
6976 ret = GS_ALL_DONE;
6977 break;
6979 case PREDICT_EXPR:
6980 gimplify_seq_add_stmt (pre_p,
6981 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
6982 PREDICT_EXPR_OUTCOME (*expr_p)));
6983 ret = GS_ALL_DONE;
6984 break;
6986 case LABEL_EXPR:
6987 ret = GS_ALL_DONE;
6988 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
6989 == current_function_decl);
6990 gimplify_seq_add_stmt (pre_p,
6991 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
6992 break;
6994 case CASE_LABEL_EXPR:
6995 ret = gimplify_case_label_expr (expr_p, pre_p);
6996 break;
6998 case RETURN_EXPR:
6999 ret = gimplify_return_expr (*expr_p, pre_p);
7000 break;
7002 case CONSTRUCTOR:
7003 /* Don't reduce this in place; let gimplify_init_constructor work its
7004 magic. Buf if we're just elaborating this for side effects, just
7005 gimplify any element that has side-effects. */
7006 if (fallback == fb_none)
7008 unsigned HOST_WIDE_INT ix;
7009 tree val;
7010 tree temp = NULL_TREE;
7011 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7012 if (TREE_SIDE_EFFECTS (val))
7013 append_to_statement_list (val, &temp);
7015 *expr_p = temp;
7016 ret = temp ? GS_OK : GS_ALL_DONE;
7018 /* C99 code may assign to an array in a constructed
7019 structure or union, and this has undefined behavior only
7020 on execution, so create a temporary if an lvalue is
7021 required. */
7022 else if (fallback == fb_lvalue)
7024 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7025 mark_addressable (*expr_p);
7026 ret = GS_OK;
7028 else
7029 ret = GS_ALL_DONE;
7030 break;
7032 /* The following are special cases that are not handled by the
7033 original GIMPLE grammar. */
7035 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7036 eliminated. */
7037 case SAVE_EXPR:
7038 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7039 break;
7041 case BIT_FIELD_REF:
7043 enum gimplify_status r0, r1, r2;
7045 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7046 post_p, is_gimple_lvalue, fb_either);
7047 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7048 post_p, is_gimple_val, fb_rvalue);
7049 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7050 post_p, is_gimple_val, fb_rvalue);
7051 recalculate_side_effects (*expr_p);
7053 ret = MIN (r0, MIN (r1, r2));
7055 break;
7057 case TARGET_MEM_REF:
7059 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7061 if (TMR_BASE (*expr_p))
7062 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7063 post_p, is_gimple_mem_ref_addr, fb_either);
7064 if (TMR_INDEX (*expr_p))
7065 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7066 post_p, is_gimple_val, fb_rvalue);
7067 if (TMR_INDEX2 (*expr_p))
7068 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7069 post_p, is_gimple_val, fb_rvalue);
7070 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7071 ret = MIN (r0, r1);
7073 break;
7075 case NON_LVALUE_EXPR:
7076 /* This should have been stripped above. */
7077 gcc_unreachable ();
7079 case ASM_EXPR:
7080 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7081 break;
7083 case TRY_FINALLY_EXPR:
7084 case TRY_CATCH_EXPR:
7086 gimple_seq eval, cleanup;
7087 gimple try_;
7089 eval = cleanup = NULL;
7090 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7091 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7092 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7093 if (gimple_seq_empty_p (cleanup))
7095 gimple_seq_add_seq (pre_p, eval);
7096 ret = GS_ALL_DONE;
7097 break;
7099 try_ = gimple_build_try (eval, cleanup,
7100 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7101 ? GIMPLE_TRY_FINALLY
7102 : GIMPLE_TRY_CATCH);
7103 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7104 gimple_try_set_catch_is_cleanup (try_,
7105 TRY_CATCH_IS_CLEANUP (*expr_p));
7106 gimplify_seq_add_stmt (pre_p, try_);
7107 ret = GS_ALL_DONE;
7108 break;
7111 case CLEANUP_POINT_EXPR:
7112 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7113 break;
7115 case TARGET_EXPR:
7116 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7117 break;
7119 case CATCH_EXPR:
7121 gimple c;
7122 gimple_seq handler = NULL;
7123 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7124 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7125 gimplify_seq_add_stmt (pre_p, c);
7126 ret = GS_ALL_DONE;
7127 break;
7130 case EH_FILTER_EXPR:
7132 gimple ehf;
7133 gimple_seq failure = NULL;
7135 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7136 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7137 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7138 gimplify_seq_add_stmt (pre_p, ehf);
7139 ret = GS_ALL_DONE;
7140 break;
7143 case OBJ_TYPE_REF:
7145 enum gimplify_status r0, r1;
7146 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7147 post_p, is_gimple_val, fb_rvalue);
7148 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7149 post_p, is_gimple_val, fb_rvalue);
7150 TREE_SIDE_EFFECTS (*expr_p) = 0;
7151 ret = MIN (r0, r1);
7153 break;
7155 case LABEL_DECL:
7156 /* We get here when taking the address of a label. We mark
7157 the label as "forced"; meaning it can never be removed and
7158 it is a potential target for any computed goto. */
7159 FORCED_LABEL (*expr_p) = 1;
7160 ret = GS_ALL_DONE;
7161 break;
7163 case STATEMENT_LIST:
7164 ret = gimplify_statement_list (expr_p, pre_p);
7165 break;
7167 case WITH_SIZE_EXPR:
7169 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7170 post_p == &internal_post ? NULL : post_p,
7171 gimple_test_f, fallback);
7172 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7173 is_gimple_val, fb_rvalue);
7174 ret = GS_ALL_DONE;
7176 break;
7178 case VAR_DECL:
7179 case PARM_DECL:
7180 ret = gimplify_var_or_parm_decl (expr_p);
7181 break;
7183 case RESULT_DECL:
7184 /* When within an OpenMP context, notice uses of variables. */
7185 if (gimplify_omp_ctxp)
7186 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7187 ret = GS_ALL_DONE;
7188 break;
7190 case SSA_NAME:
7191 /* Allow callbacks into the gimplifier during optimization. */
7192 ret = GS_ALL_DONE;
7193 break;
7195 case OMP_PARALLEL:
7196 gimplify_omp_parallel (expr_p, pre_p);
7197 ret = GS_ALL_DONE;
7198 break;
7200 case OMP_TASK:
7201 gimplify_omp_task (expr_p, pre_p);
7202 ret = GS_ALL_DONE;
7203 break;
7205 case OMP_FOR:
7206 ret = gimplify_omp_for (expr_p, pre_p);
7207 break;
7209 case OMP_SECTIONS:
7210 case OMP_SINGLE:
7211 gimplify_omp_workshare (expr_p, pre_p);
7212 ret = GS_ALL_DONE;
7213 break;
7215 case OMP_SECTION:
7216 case OMP_MASTER:
7217 case OMP_ORDERED:
7218 case OMP_CRITICAL:
7220 gimple_seq body = NULL;
7221 gimple g;
7223 gimplify_and_add (OMP_BODY (*expr_p), &body);
7224 switch (TREE_CODE (*expr_p))
7226 case OMP_SECTION:
7227 g = gimple_build_omp_section (body);
7228 break;
7229 case OMP_MASTER:
7230 g = gimple_build_omp_master (body);
7231 break;
7232 case OMP_ORDERED:
7233 g = gimple_build_omp_ordered (body);
7234 break;
7235 case OMP_CRITICAL:
7236 g = gimple_build_omp_critical (body,
7237 OMP_CRITICAL_NAME (*expr_p));
7238 break;
7239 default:
7240 gcc_unreachable ();
7242 gimplify_seq_add_stmt (pre_p, g);
7243 ret = GS_ALL_DONE;
7244 break;
7247 case OMP_ATOMIC:
7248 case OMP_ATOMIC_READ:
7249 case OMP_ATOMIC_CAPTURE_OLD:
7250 case OMP_ATOMIC_CAPTURE_NEW:
7251 ret = gimplify_omp_atomic (expr_p, pre_p);
7252 break;
7254 case TRUTH_AND_EXPR:
7255 case TRUTH_OR_EXPR:
7256 case TRUTH_XOR_EXPR:
7258 tree orig_type = TREE_TYPE (*expr_p);
7259 tree new_type, xop0, xop1;
7260 *expr_p = gimple_boolify (*expr_p);
7261 new_type = TREE_TYPE (*expr_p);
7262 if (!useless_type_conversion_p (orig_type, new_type))
7264 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7265 ret = GS_OK;
7266 break;
7269 /* Boolified binary truth expressions are semantically equivalent
7270 to bitwise binary expressions. Canonicalize them to the
7271 bitwise variant. */
7272 switch (TREE_CODE (*expr_p))
7274 case TRUTH_AND_EXPR:
7275 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7276 break;
7277 case TRUTH_OR_EXPR:
7278 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7279 break;
7280 case TRUTH_XOR_EXPR:
7281 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7282 break;
7283 default:
7284 break;
7286 /* Now make sure that operands have compatible type to
7287 expression's new_type. */
7288 xop0 = TREE_OPERAND (*expr_p, 0);
7289 xop1 = TREE_OPERAND (*expr_p, 1);
7290 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7291 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7292 new_type,
7293 xop0);
7294 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7295 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7296 new_type,
7297 xop1);
7298 /* Continue classified as tcc_binary. */
7299 goto expr_2;
7302 case FMA_EXPR:
7303 case VEC_PERM_EXPR:
7304 /* Classified as tcc_expression. */
7305 goto expr_3;
7307 case POINTER_PLUS_EXPR:
7309 enum gimplify_status r0, r1;
7310 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7311 post_p, is_gimple_val, fb_rvalue);
7312 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7313 post_p, is_gimple_val, fb_rvalue);
7314 recalculate_side_effects (*expr_p);
7315 ret = MIN (r0, r1);
7316 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7317 after gimplifying operands - this is similar to how
7318 it would be folding all gimplified stmts on creation
7319 to have them canonicalized, which is what we eventually
7320 should do anyway. */
7321 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7322 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7324 *expr_p = build_fold_addr_expr_with_type_loc
7325 (input_location,
7326 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7327 TREE_OPERAND (*expr_p, 0),
7328 fold_convert (ptr_type_node,
7329 TREE_OPERAND (*expr_p, 1))),
7330 TREE_TYPE (*expr_p));
7331 ret = MIN (ret, GS_OK);
7333 break;
7336 default:
7337 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7339 case tcc_comparison:
7340 /* Handle comparison of objects of non scalar mode aggregates
7341 with a call to memcmp. It would be nice to only have to do
7342 this for variable-sized objects, but then we'd have to allow
7343 the same nest of reference nodes we allow for MODIFY_EXPR and
7344 that's too complex.
7346 Compare scalar mode aggregates as scalar mode values. Using
7347 memcmp for them would be very inefficient at best, and is
7348 plain wrong if bitfields are involved. */
7350 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7352 /* Vector comparisons need no boolification. */
7353 if (TREE_CODE (type) == VECTOR_TYPE)
7354 goto expr_2;
7355 else if (!AGGREGATE_TYPE_P (type))
7357 tree org_type = TREE_TYPE (*expr_p);
7358 *expr_p = gimple_boolify (*expr_p);
7359 if (!useless_type_conversion_p (org_type,
7360 TREE_TYPE (*expr_p)))
7362 *expr_p = fold_convert_loc (input_location,
7363 org_type, *expr_p);
7364 ret = GS_OK;
7366 else
7367 goto expr_2;
7369 else if (TYPE_MODE (type) != BLKmode)
7370 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7371 else
7372 ret = gimplify_variable_sized_compare (expr_p);
7374 break;
7377 /* If *EXPR_P does not need to be special-cased, handle it
7378 according to its class. */
7379 case tcc_unary:
7380 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7381 post_p, is_gimple_val, fb_rvalue);
7382 break;
7384 case tcc_binary:
7385 expr_2:
7387 enum gimplify_status r0, r1;
7389 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7390 post_p, is_gimple_val, fb_rvalue);
7391 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7392 post_p, is_gimple_val, fb_rvalue);
7394 ret = MIN (r0, r1);
7395 break;
7398 expr_3:
7400 enum gimplify_status r0, r1, r2;
7402 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7403 post_p, is_gimple_val, fb_rvalue);
7404 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7405 post_p, is_gimple_val, fb_rvalue);
7406 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7407 post_p, is_gimple_val, fb_rvalue);
7409 ret = MIN (MIN (r0, r1), r2);
7410 break;
7413 case tcc_declaration:
7414 case tcc_constant:
7415 ret = GS_ALL_DONE;
7416 goto dont_recalculate;
7418 default:
7419 gcc_unreachable ();
7422 recalculate_side_effects (*expr_p);
7424 dont_recalculate:
7425 break;
7428 gcc_assert (*expr_p || ret != GS_OK);
7430 while (ret == GS_OK);
7432 /* If we encountered an error_mark somewhere nested inside, either
7433 stub out the statement or propagate the error back out. */
7434 if (ret == GS_ERROR)
7436 if (is_statement)
7437 *expr_p = NULL;
7438 goto out;
7441 /* This was only valid as a return value from the langhook, which
7442 we handled. Make sure it doesn't escape from any other context. */
7443 gcc_assert (ret != GS_UNHANDLED);
7445 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7447 /* We aren't looking for a value, and we don't have a valid
7448 statement. If it doesn't have side-effects, throw it away. */
7449 if (!TREE_SIDE_EFFECTS (*expr_p))
7450 *expr_p = NULL;
7451 else if (!TREE_THIS_VOLATILE (*expr_p))
7453 /* This is probably a _REF that contains something nested that
7454 has side effects. Recurse through the operands to find it. */
7455 enum tree_code code = TREE_CODE (*expr_p);
7457 switch (code)
7459 case COMPONENT_REF:
7460 case REALPART_EXPR:
7461 case IMAGPART_EXPR:
7462 case VIEW_CONVERT_EXPR:
7463 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7464 gimple_test_f, fallback);
7465 break;
7467 case ARRAY_REF:
7468 case ARRAY_RANGE_REF:
7469 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7470 gimple_test_f, fallback);
7471 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7472 gimple_test_f, fallback);
7473 break;
7475 default:
7476 /* Anything else with side-effects must be converted to
7477 a valid statement before we get here. */
7478 gcc_unreachable ();
7481 *expr_p = NULL;
7483 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7484 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7486 /* Historically, the compiler has treated a bare reference
7487 to a non-BLKmode volatile lvalue as forcing a load. */
7488 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7490 /* Normally, we do not want to create a temporary for a
7491 TREE_ADDRESSABLE type because such a type should not be
7492 copied by bitwise-assignment. However, we make an
7493 exception here, as all we are doing here is ensuring that
7494 we read the bytes that make up the type. We use
7495 create_tmp_var_raw because create_tmp_var will abort when
7496 given a TREE_ADDRESSABLE type. */
7497 tree tmp = create_tmp_var_raw (type, "vol");
7498 gimple_add_tmp_var (tmp);
7499 gimplify_assign (tmp, *expr_p, pre_p);
7500 *expr_p = NULL;
7502 else
7503 /* We can't do anything useful with a volatile reference to
7504 an incomplete type, so just throw it away. Likewise for
7505 a BLKmode type, since any implicit inner load should
7506 already have been turned into an explicit one by the
7507 gimplification process. */
7508 *expr_p = NULL;
7511 /* If we are gimplifying at the statement level, we're done. Tack
7512 everything together and return. */
7513 if (fallback == fb_none || is_statement)
7515 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7516 it out for GC to reclaim it. */
7517 *expr_p = NULL_TREE;
7519 if (!gimple_seq_empty_p (internal_pre)
7520 || !gimple_seq_empty_p (internal_post))
7522 gimplify_seq_add_seq (&internal_pre, internal_post);
7523 gimplify_seq_add_seq (pre_p, internal_pre);
7526 /* The result of gimplifying *EXPR_P is going to be the last few
7527 statements in *PRE_P and *POST_P. Add location information
7528 to all the statements that were added by the gimplification
7529 helpers. */
7530 if (!gimple_seq_empty_p (*pre_p))
7531 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7533 if (!gimple_seq_empty_p (*post_p))
7534 annotate_all_with_location_after (*post_p, post_last_gsi,
7535 input_location);
7537 goto out;
7540 #ifdef ENABLE_GIMPLE_CHECKING
7541 if (*expr_p)
7543 enum tree_code code = TREE_CODE (*expr_p);
7544 /* These expressions should already be in gimple IR form. */
7545 gcc_assert (code != MODIFY_EXPR
7546 && code != ASM_EXPR
7547 && code != BIND_EXPR
7548 && code != CATCH_EXPR
7549 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7550 && code != EH_FILTER_EXPR
7551 && code != GOTO_EXPR
7552 && code != LABEL_EXPR
7553 && code != LOOP_EXPR
7554 && code != SWITCH_EXPR
7555 && code != TRY_FINALLY_EXPR
7556 && code != OMP_CRITICAL
7557 && code != OMP_FOR
7558 && code != OMP_MASTER
7559 && code != OMP_ORDERED
7560 && code != OMP_PARALLEL
7561 && code != OMP_SECTIONS
7562 && code != OMP_SECTION
7563 && code != OMP_SINGLE);
7565 #endif
7567 /* Otherwise we're gimplifying a subexpression, so the resulting
7568 value is interesting. If it's a valid operand that matches
7569 GIMPLE_TEST_F, we're done. Unless we are handling some
7570 post-effects internally; if that's the case, we need to copy into
7571 a temporary before adding the post-effects to POST_P. */
7572 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7573 goto out;
7575 /* Otherwise, we need to create a new temporary for the gimplified
7576 expression. */
7578 /* We can't return an lvalue if we have an internal postqueue. The
7579 object the lvalue refers to would (probably) be modified by the
7580 postqueue; we need to copy the value out first, which means an
7581 rvalue. */
7582 if ((fallback & fb_lvalue)
7583 && gimple_seq_empty_p (internal_post)
7584 && is_gimple_addressable (*expr_p))
7586 /* An lvalue will do. Take the address of the expression, store it
7587 in a temporary, and replace the expression with an INDIRECT_REF of
7588 that temporary. */
7589 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7590 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7591 *expr_p = build_simple_mem_ref (tmp);
7593 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7595 /* An rvalue will do. Assign the gimplified expression into a
7596 new temporary TMP and replace the original expression with
7597 TMP. First, make sure that the expression has a type so that
7598 it can be assigned into a temporary. */
7599 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7601 if (!gimple_seq_empty_p (internal_post) || (fallback & fb_lvalue))
7602 /* The postqueue might change the value of the expression between
7603 the initialization and use of the temporary, so we can't use a
7604 formal temp. FIXME do we care? */
7606 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7607 if (TREE_CODE (TREE_TYPE (*expr_p)) == COMPLEX_TYPE
7608 || TREE_CODE (TREE_TYPE (*expr_p)) == VECTOR_TYPE)
7609 DECL_GIMPLE_REG_P (*expr_p) = 1;
7611 else
7612 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7614 else
7616 #ifdef ENABLE_GIMPLE_CHECKING
7617 if (!(fallback & fb_mayfail))
7619 fprintf (stderr, "gimplification failed:\n");
7620 print_generic_expr (stderr, *expr_p, 0);
7621 debug_tree (*expr_p);
7622 internal_error ("gimplification failed");
7624 #endif
7625 gcc_assert (fallback & fb_mayfail);
7627 /* If this is an asm statement, and the user asked for the
7628 impossible, don't die. Fail and let gimplify_asm_expr
7629 issue an error. */
7630 ret = GS_ERROR;
7631 goto out;
7634 /* Make sure the temporary matches our predicate. */
7635 gcc_assert ((*gimple_test_f) (*expr_p));
7637 if (!gimple_seq_empty_p (internal_post))
7639 annotate_all_with_location (internal_post, input_location);
7640 gimplify_seq_add_seq (pre_p, internal_post);
7643 out:
7644 input_location = saved_location;
7645 return ret;
7648 /* Look through TYPE for variable-sized objects and gimplify each such
7649 size that we find. Add to LIST_P any statements generated. */
7651 void
7652 gimplify_type_sizes (tree type, gimple_seq *list_p)
7654 tree field, t;
7656 if (type == NULL || type == error_mark_node)
7657 return;
7659 /* We first do the main variant, then copy into any other variants. */
7660 type = TYPE_MAIN_VARIANT (type);
7662 /* Avoid infinite recursion. */
7663 if (TYPE_SIZES_GIMPLIFIED (type))
7664 return;
7666 TYPE_SIZES_GIMPLIFIED (type) = 1;
7668 switch (TREE_CODE (type))
7670 case INTEGER_TYPE:
7671 case ENUMERAL_TYPE:
7672 case BOOLEAN_TYPE:
7673 case REAL_TYPE:
7674 case FIXED_POINT_TYPE:
7675 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
7676 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
7678 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7680 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
7681 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
7683 break;
7685 case ARRAY_TYPE:
7686 /* These types may not have declarations, so handle them here. */
7687 gimplify_type_sizes (TREE_TYPE (type), list_p);
7688 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
7689 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
7690 with assigned stack slots, for -O1+ -g they should be tracked
7691 by VTA. */
7692 if (!(TYPE_NAME (type)
7693 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7694 && DECL_IGNORED_P (TYPE_NAME (type)))
7695 && TYPE_DOMAIN (type)
7696 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
7698 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
7699 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
7700 DECL_IGNORED_P (t) = 0;
7701 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
7702 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
7703 DECL_IGNORED_P (t) = 0;
7705 break;
7707 case RECORD_TYPE:
7708 case UNION_TYPE:
7709 case QUAL_UNION_TYPE:
7710 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7711 if (TREE_CODE (field) == FIELD_DECL)
7713 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
7714 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
7715 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
7716 gimplify_type_sizes (TREE_TYPE (field), list_p);
7718 break;
7720 case POINTER_TYPE:
7721 case REFERENCE_TYPE:
7722 /* We used to recurse on the pointed-to type here, which turned out to
7723 be incorrect because its definition might refer to variables not
7724 yet initialized at this point if a forward declaration is involved.
7726 It was actually useful for anonymous pointed-to types to ensure
7727 that the sizes evaluation dominates every possible later use of the
7728 values. Restricting to such types here would be safe since there
7729 is no possible forward declaration around, but would introduce an
7730 undesirable middle-end semantic to anonymity. We then defer to
7731 front-ends the responsibility of ensuring that the sizes are
7732 evaluated both early and late enough, e.g. by attaching artificial
7733 type declarations to the tree. */
7734 break;
7736 default:
7737 break;
7740 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
7741 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
7743 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7745 TYPE_SIZE (t) = TYPE_SIZE (type);
7746 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
7747 TYPE_SIZES_GIMPLIFIED (t) = 1;
7751 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
7752 a size or position, has had all of its SAVE_EXPRs evaluated.
7753 We add any required statements to *STMT_P. */
7755 void
7756 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
7758 tree type, expr = *expr_p;
7760 /* We don't do anything if the value isn't there, is constant, or contains
7761 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
7762 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
7763 will want to replace it with a new variable, but that will cause problems
7764 if this type is from outside the function. It's OK to have that here. */
7765 if (expr == NULL_TREE || TREE_CONSTANT (expr)
7766 || TREE_CODE (expr) == VAR_DECL
7767 || CONTAINS_PLACEHOLDER_P (expr))
7768 return;
7770 type = TREE_TYPE (expr);
7771 *expr_p = unshare_expr (expr);
7773 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
7774 expr = *expr_p;
7776 /* Verify that we've an exact type match with the original expression.
7777 In particular, we do not wish to drop a "sizetype" in favour of a
7778 type of similar dimensions. We don't want to pollute the generic
7779 type-stripping code with this knowledge because it doesn't matter
7780 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
7781 and friends retain their "sizetype-ness". */
7782 if (TREE_TYPE (expr) != type
7783 && TREE_CODE (type) == INTEGER_TYPE
7784 && TYPE_IS_SIZETYPE (type))
7786 tree tmp;
7787 gimple stmt;
7789 *expr_p = create_tmp_var (type, NULL);
7790 tmp = build1 (NOP_EXPR, type, expr);
7791 stmt = gimplify_assign (*expr_p, tmp, stmt_p);
7792 gimple_set_location (stmt, EXPR_LOC_OR_HERE (expr));
7796 /* Gimplify the body of statements pointed to by BODY_P and return a
7797 GIMPLE_BIND containing the sequence of GIMPLE statements
7798 corresponding to BODY_P. FNDECL is the function decl containing
7799 *BODY_P. */
7801 gimple
7802 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
7804 location_t saved_location = input_location;
7805 gimple_seq parm_stmts, seq;
7806 gimple outer_bind;
7807 struct gimplify_ctx gctx;
7808 struct cgraph_node *cgn;
7810 timevar_push (TV_TREE_GIMPLIFY);
7812 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
7813 gimplification. */
7814 default_rtl_profile ();
7816 gcc_assert (gimplify_ctxp == NULL);
7817 push_gimplify_context (&gctx);
7819 /* Unshare most shared trees in the body and in that of any nested functions.
7820 It would seem we don't have to do this for nested functions because
7821 they are supposed to be output and then the outer function gimplified
7822 first, but the g++ front end doesn't always do it that way. */
7823 unshare_body (body_p, fndecl);
7824 unvisit_body (body_p, fndecl);
7826 cgn = cgraph_get_node (fndecl);
7827 if (cgn && cgn->origin)
7828 nonlocal_vlas = pointer_set_create ();
7830 /* Make sure input_location isn't set to something weird. */
7831 input_location = DECL_SOURCE_LOCATION (fndecl);
7833 /* Resolve callee-copies. This has to be done before processing
7834 the body so that DECL_VALUE_EXPR gets processed correctly. */
7835 parm_stmts = (do_parms) ? gimplify_parameters () : NULL;
7837 /* Gimplify the function's body. */
7838 seq = NULL;
7839 gimplify_stmt (body_p, &seq);
7840 outer_bind = gimple_seq_first_stmt (seq);
7841 if (!outer_bind)
7843 outer_bind = gimple_build_nop ();
7844 gimplify_seq_add_stmt (&seq, outer_bind);
7847 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
7848 not the case, wrap everything in a GIMPLE_BIND to make it so. */
7849 if (gimple_code (outer_bind) == GIMPLE_BIND
7850 && gimple_seq_first (seq) == gimple_seq_last (seq))
7852 else
7853 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
7855 *body_p = NULL_TREE;
7857 /* If we had callee-copies statements, insert them at the beginning
7858 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
7859 if (!gimple_seq_empty_p (parm_stmts))
7861 tree parm;
7863 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
7864 gimple_bind_set_body (outer_bind, parm_stmts);
7866 for (parm = DECL_ARGUMENTS (current_function_decl);
7867 parm; parm = DECL_CHAIN (parm))
7868 if (DECL_HAS_VALUE_EXPR_P (parm))
7870 DECL_HAS_VALUE_EXPR_P (parm) = 0;
7871 DECL_IGNORED_P (parm) = 0;
7875 if (nonlocal_vlas)
7877 pointer_set_destroy (nonlocal_vlas);
7878 nonlocal_vlas = NULL;
7881 pop_gimplify_context (outer_bind);
7882 gcc_assert (gimplify_ctxp == NULL);
7884 if (!seen_error ())
7885 verify_gimple_in_seq (gimple_bind_body (outer_bind));
7887 timevar_pop (TV_TREE_GIMPLIFY);
7888 input_location = saved_location;
7890 return outer_bind;
7893 typedef char *char_p; /* For DEF_VEC_P. */
7894 DEF_VEC_P(char_p);
7895 DEF_VEC_ALLOC_P(char_p,heap);
7897 /* Return whether we should exclude FNDECL from instrumentation. */
7899 static bool
7900 flag_instrument_functions_exclude_p (tree fndecl)
7902 VEC(char_p,heap) *vec;
7904 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_functions;
7905 if (VEC_length (char_p, vec) > 0)
7907 const char *name;
7908 int i;
7909 char *s;
7911 name = lang_hooks.decl_printable_name (fndecl, 0);
7912 FOR_EACH_VEC_ELT (char_p, vec, i, s)
7913 if (strstr (name, s) != NULL)
7914 return true;
7917 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_files;
7918 if (VEC_length (char_p, vec) > 0)
7920 const char *name;
7921 int i;
7922 char *s;
7924 name = DECL_SOURCE_FILE (fndecl);
7925 FOR_EACH_VEC_ELT (char_p, vec, i, s)
7926 if (strstr (name, s) != NULL)
7927 return true;
7930 return false;
7933 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
7934 node for the function we want to gimplify.
7936 Return the sequence of GIMPLE statements corresponding to the body
7937 of FNDECL. */
7939 void
7940 gimplify_function_tree (tree fndecl)
7942 tree oldfn, parm, ret;
7943 gimple_seq seq;
7944 gimple bind;
7946 gcc_assert (!gimple_body (fndecl));
7948 oldfn = current_function_decl;
7949 current_function_decl = fndecl;
7950 if (DECL_STRUCT_FUNCTION (fndecl))
7951 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
7952 else
7953 push_struct_function (fndecl);
7955 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
7957 /* Preliminarily mark non-addressed complex variables as eligible
7958 for promotion to gimple registers. We'll transform their uses
7959 as we find them. */
7960 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
7961 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
7962 && !TREE_THIS_VOLATILE (parm)
7963 && !needs_to_live_in_memory (parm))
7964 DECL_GIMPLE_REG_P (parm) = 1;
7967 ret = DECL_RESULT (fndecl);
7968 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
7969 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
7970 && !needs_to_live_in_memory (ret))
7971 DECL_GIMPLE_REG_P (ret) = 1;
7973 bind = gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
7975 /* The tree body of the function is no longer needed, replace it
7976 with the new GIMPLE body. */
7977 seq = gimple_seq_alloc ();
7978 gimple_seq_add_stmt (&seq, bind);
7979 gimple_set_body (fndecl, seq);
7981 /* If we're instrumenting function entry/exit, then prepend the call to
7982 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
7983 catch the exit hook. */
7984 /* ??? Add some way to ignore exceptions for this TFE. */
7985 if (flag_instrument_function_entry_exit
7986 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
7987 && !flag_instrument_functions_exclude_p (fndecl))
7989 tree x;
7990 gimple new_bind;
7991 gimple tf;
7992 gimple_seq cleanup = NULL, body = NULL;
7993 tree tmp_var;
7994 gimple call;
7996 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
7997 call = gimple_build_call (x, 1, integer_zero_node);
7998 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
7999 gimple_call_set_lhs (call, tmp_var);
8000 gimplify_seq_add_stmt (&cleanup, call);
8001 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8002 call = gimple_build_call (x, 2,
8003 build_fold_addr_expr (current_function_decl),
8004 tmp_var);
8005 gimplify_seq_add_stmt (&cleanup, call);
8006 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8008 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8009 call = gimple_build_call (x, 1, integer_zero_node);
8010 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8011 gimple_call_set_lhs (call, tmp_var);
8012 gimplify_seq_add_stmt (&body, call);
8013 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8014 call = gimple_build_call (x, 2,
8015 build_fold_addr_expr (current_function_decl),
8016 tmp_var);
8017 gimplify_seq_add_stmt (&body, call);
8018 gimplify_seq_add_stmt (&body, tf);
8019 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8020 /* Clear the block for BIND, since it is no longer directly inside
8021 the function, but within a try block. */
8022 gimple_bind_set_block (bind, NULL);
8024 /* Replace the current function body with the body
8025 wrapped in the try/finally TF. */
8026 seq = gimple_seq_alloc ();
8027 gimple_seq_add_stmt (&seq, new_bind);
8028 gimple_set_body (fndecl, seq);
8031 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8032 cfun->curr_properties = PROP_gimple_any;
8034 current_function_decl = oldfn;
8035 pop_cfun ();
8038 /* Some transformations like inlining may invalidate the GIMPLE form
8039 for operands. This function traverses all the operands in STMT and
8040 gimplifies anything that is not a valid gimple operand. Any new
8041 GIMPLE statements are inserted before *GSI_P. */
8043 void
8044 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8046 size_t i, num_ops;
8047 tree orig_lhs = NULL_TREE, lhs, t;
8048 gimple_seq pre = NULL;
8049 gimple post_stmt = NULL;
8050 struct gimplify_ctx gctx;
8052 push_gimplify_context (&gctx);
8053 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8055 switch (gimple_code (stmt))
8057 case GIMPLE_COND:
8058 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8059 is_gimple_val, fb_rvalue);
8060 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8061 is_gimple_val, fb_rvalue);
8062 break;
8063 case GIMPLE_SWITCH:
8064 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8065 is_gimple_val, fb_rvalue);
8066 break;
8067 case GIMPLE_OMP_ATOMIC_LOAD:
8068 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8069 is_gimple_val, fb_rvalue);
8070 break;
8071 case GIMPLE_ASM:
8073 size_t i, noutputs = gimple_asm_noutputs (stmt);
8074 const char *constraint, **oconstraints;
8075 bool allows_mem, allows_reg, is_inout;
8077 oconstraints
8078 = (const char **) alloca ((noutputs) * sizeof (const char *));
8079 for (i = 0; i < noutputs; i++)
8081 tree op = gimple_asm_output_op (stmt, i);
8082 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8083 oconstraints[i] = constraint;
8084 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8085 &allows_reg, &is_inout);
8086 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8087 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8088 fb_lvalue | fb_mayfail);
8090 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8092 tree op = gimple_asm_input_op (stmt, i);
8093 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8094 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8095 oconstraints, &allows_mem, &allows_reg);
8096 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8097 allows_reg = 0;
8098 if (!allows_reg && allows_mem)
8099 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8100 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8101 else
8102 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8103 is_gimple_asm_val, fb_rvalue);
8106 break;
8107 default:
8108 /* NOTE: We start gimplifying operands from last to first to
8109 make sure that side-effects on the RHS of calls, assignments
8110 and ASMs are executed before the LHS. The ordering is not
8111 important for other statements. */
8112 num_ops = gimple_num_ops (stmt);
8113 orig_lhs = gimple_get_lhs (stmt);
8114 for (i = num_ops; i > 0; i--)
8116 tree op = gimple_op (stmt, i - 1);
8117 if (op == NULL_TREE)
8118 continue;
8119 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8120 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8121 else if (i == 2
8122 && is_gimple_assign (stmt)
8123 && num_ops == 2
8124 && get_gimple_rhs_class (gimple_expr_code (stmt))
8125 == GIMPLE_SINGLE_RHS)
8126 gimplify_expr (&op, &pre, NULL,
8127 rhs_predicate_for (gimple_assign_lhs (stmt)),
8128 fb_rvalue);
8129 else if (i == 2 && is_gimple_call (stmt))
8131 if (TREE_CODE (op) == FUNCTION_DECL)
8132 continue;
8133 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8135 else
8136 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8137 gimple_set_op (stmt, i - 1, op);
8140 lhs = gimple_get_lhs (stmt);
8141 /* If the LHS changed it in a way that requires a simple RHS,
8142 create temporary. */
8143 if (lhs && !is_gimple_reg (lhs))
8145 bool need_temp = false;
8147 if (is_gimple_assign (stmt)
8148 && num_ops == 2
8149 && get_gimple_rhs_class (gimple_expr_code (stmt))
8150 == GIMPLE_SINGLE_RHS)
8151 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8152 rhs_predicate_for (gimple_assign_lhs (stmt)),
8153 fb_rvalue);
8154 else if (is_gimple_reg (lhs))
8156 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8158 if (is_gimple_call (stmt))
8160 i = gimple_call_flags (stmt);
8161 if ((i & ECF_LOOPING_CONST_OR_PURE)
8162 || !(i & (ECF_CONST | ECF_PURE)))
8163 need_temp = true;
8165 if (stmt_can_throw_internal (stmt))
8166 need_temp = true;
8169 else
8171 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8172 need_temp = true;
8173 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8175 if (is_gimple_call (stmt))
8177 tree fndecl = gimple_call_fndecl (stmt);
8179 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8180 && !(fndecl && DECL_RESULT (fndecl)
8181 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8182 need_temp = true;
8184 else
8185 need_temp = true;
8188 if (need_temp)
8190 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8192 if (TREE_CODE (orig_lhs) == SSA_NAME)
8193 orig_lhs = SSA_NAME_VAR (orig_lhs);
8195 if (gimple_in_ssa_p (cfun))
8196 temp = make_ssa_name (temp, NULL);
8197 gimple_set_lhs (stmt, temp);
8198 post_stmt = gimple_build_assign (lhs, temp);
8199 if (TREE_CODE (lhs) == SSA_NAME)
8200 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8203 break;
8206 if (gimple_referenced_vars (cfun))
8207 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
8208 add_referenced_var (t);
8210 if (!gimple_seq_empty_p (pre))
8212 if (gimple_in_ssa_p (cfun))
8214 gimple_stmt_iterator i;
8216 for (i = gsi_start (pre); !gsi_end_p (i); gsi_next (&i))
8217 mark_symbols_for_renaming (gsi_stmt (i));
8219 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8221 if (post_stmt)
8222 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8224 pop_gimplify_context (NULL);
8227 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8228 the predicate that will hold for the result. If VAR is not NULL, make the
8229 base variable of the final destination be VAR if suitable. */
8231 tree
8232 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8233 gimple_predicate gimple_test_f, tree var)
8235 tree t;
8236 enum gimplify_status ret;
8237 struct gimplify_ctx gctx;
8239 *stmts = NULL;
8241 /* gimple_test_f might be more strict than is_gimple_val, make
8242 sure we pass both. Just checking gimple_test_f doesn't work
8243 because most gimple predicates do not work recursively. */
8244 if (is_gimple_val (expr)
8245 && (*gimple_test_f) (expr))
8246 return expr;
8248 push_gimplify_context (&gctx);
8249 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8250 gimplify_ctxp->allow_rhs_cond_expr = true;
8252 if (var)
8253 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8255 if (TREE_CODE (expr) != MODIFY_EXPR
8256 && TREE_TYPE (expr) == void_type_node)
8258 gimplify_and_add (expr, stmts);
8259 expr = NULL_TREE;
8261 else
8263 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8264 gcc_assert (ret != GS_ERROR);
8267 if (gimple_referenced_vars (cfun))
8268 for (t = gimplify_ctxp->temps; t ; t = DECL_CHAIN (t))
8269 add_referenced_var (t);
8271 pop_gimplify_context (NULL);
8273 return expr;
8276 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8277 force the result to be either ssa_name or an invariant, otherwise
8278 just force it to be a rhs expression. If VAR is not NULL, make the
8279 base variable of the final destination be VAR if suitable. */
8281 tree
8282 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8284 return force_gimple_operand_1 (expr, stmts,
8285 simple ? is_gimple_val : is_gimple_reg_rhs,
8286 var);
8289 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8290 and VAR. If some statements are produced, emits them at GSI.
8291 If BEFORE is true. the statements are appended before GSI, otherwise
8292 they are appended after it. M specifies the way GSI moves after
8293 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8295 tree
8296 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8297 gimple_predicate gimple_test_f,
8298 tree var, bool before,
8299 enum gsi_iterator_update m)
8301 gimple_seq stmts;
8303 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8305 if (!gimple_seq_empty_p (stmts))
8307 if (gimple_in_ssa_p (cfun))
8309 gimple_stmt_iterator i;
8311 for (i = gsi_start (stmts); !gsi_end_p (i); gsi_next (&i))
8312 mark_symbols_for_renaming (gsi_stmt (i));
8315 if (before)
8316 gsi_insert_seq_before (gsi, stmts, m);
8317 else
8318 gsi_insert_seq_after (gsi, stmts, m);
8321 return expr;
8324 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8325 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8326 otherwise just force it to be a rhs expression. If some statements are
8327 produced, emits them at GSI. If BEFORE is true, the statements are
8328 appended before GSI, otherwise they are appended after it. M specifies
8329 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8330 are the usual values). */
8332 tree
8333 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8334 bool simple_p, tree var, bool before,
8335 enum gsi_iterator_update m)
8337 return force_gimple_operand_gsi_1 (gsi, expr,
8338 simple_p
8339 ? is_gimple_val : is_gimple_reg_rhs,
8340 var, before, m);
8344 #include "gt-gimplify.h"