ChangeLog entry:
[official-gcc.git] / gcc / gimplify.c
blobc021fa1a38672c5b87ffece51a67d40bc4aa2516
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 2012 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 gimple_seq_add_stmt_without_update (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 /* Shorter alias name for the above function for use in gimplify.c
181 only. */
183 static inline void
184 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
186 gimple_seq_add_stmt_without_update (seq_p, gs);
189 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
190 NULL, a new sequence is allocated. This function is
191 similar to gimple_seq_add_seq, but does not scan the operands.
192 During gimplification, we need to manipulate statement sequences
193 before the def/use vectors have been constructed. */
195 static void
196 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
198 gimple_stmt_iterator si;
200 if (src == NULL)
201 return;
203 if (*dst_p == NULL)
204 *dst_p = gimple_seq_alloc ();
206 si = gsi_last (*dst_p);
207 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
210 /* Set up a context for the gimplifier. */
212 void
213 push_gimplify_context (struct gimplify_ctx *c)
215 memset (c, '\0', sizeof (*c));
216 c->prev_context = gimplify_ctxp;
217 gimplify_ctxp = c;
220 /* Tear down a context for the gimplifier. If BODY is non-null, then
221 put the temporaries into the outer BIND_EXPR. Otherwise, put them
222 in the local_decls.
224 BODY is not a sequence, but the first tuple in a sequence. */
226 void
227 pop_gimplify_context (gimple body)
229 struct gimplify_ctx *c = gimplify_ctxp;
231 gcc_assert (c && (c->bind_expr_stack == NULL
232 || VEC_empty (gimple, c->bind_expr_stack)));
233 VEC_free (gimple, heap, c->bind_expr_stack);
234 gimplify_ctxp = c->prev_context;
236 if (body)
237 declare_vars (c->temps, body, false);
238 else
239 record_vars (c->temps);
241 if (c->temp_htab)
242 htab_delete (c->temp_htab);
245 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
247 static void
248 gimple_push_bind_expr (gimple gimple_bind)
250 if (gimplify_ctxp->bind_expr_stack == NULL)
251 gimplify_ctxp->bind_expr_stack = VEC_alloc (gimple, heap, 8);
252 VEC_safe_push (gimple, heap, gimplify_ctxp->bind_expr_stack, gimple_bind);
255 /* Pop the first element off the stack of bindings. */
257 static void
258 gimple_pop_bind_expr (void)
260 VEC_pop (gimple, gimplify_ctxp->bind_expr_stack);
263 /* Return the first element of the stack of bindings. */
265 gimple
266 gimple_current_bind_expr (void)
268 return VEC_last (gimple, gimplify_ctxp->bind_expr_stack);
271 /* Return the stack of bindings created during gimplification. */
273 VEC(gimple, heap) *
274 gimple_bind_expr_stack (void)
276 return gimplify_ctxp->bind_expr_stack;
279 /* Return true iff there is a COND_EXPR between us and the innermost
280 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
282 static bool
283 gimple_conditional_context (void)
285 return gimplify_ctxp->conditions > 0;
288 /* Note that we've entered a COND_EXPR. */
290 static void
291 gimple_push_condition (void)
293 #ifdef ENABLE_GIMPLE_CHECKING
294 if (gimplify_ctxp->conditions == 0)
295 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
296 #endif
297 ++(gimplify_ctxp->conditions);
300 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
301 now, add any conditional cleanups we've seen to the prequeue. */
303 static void
304 gimple_pop_condition (gimple_seq *pre_p)
306 int conds = --(gimplify_ctxp->conditions);
308 gcc_assert (conds >= 0);
309 if (conds == 0)
311 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
312 gimplify_ctxp->conditional_cleanups = NULL;
316 /* A stable comparison routine for use with splay trees and DECLs. */
318 static int
319 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
321 tree a = (tree) xa;
322 tree b = (tree) xb;
324 return DECL_UID (a) - DECL_UID (b);
327 /* Create a new omp construct that deals with variable remapping. */
329 static struct gimplify_omp_ctx *
330 new_omp_context (enum omp_region_type region_type)
332 struct gimplify_omp_ctx *c;
334 c = XCNEW (struct gimplify_omp_ctx);
335 c->outer_context = gimplify_omp_ctxp;
336 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
337 c->privatized_types = pointer_set_create ();
338 c->location = input_location;
339 c->region_type = region_type;
340 if ((region_type & ORT_TASK) == 0)
341 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
342 else
343 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
345 return c;
348 /* Destroy an omp construct that deals with variable remapping. */
350 static void
351 delete_omp_context (struct gimplify_omp_ctx *c)
353 splay_tree_delete (c->variables);
354 pointer_set_destroy (c->privatized_types);
355 XDELETE (c);
358 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
359 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
361 /* Both gimplify the statement T and append it to *SEQ_P. This function
362 behaves exactly as gimplify_stmt, but you don't have to pass T as a
363 reference. */
365 void
366 gimplify_and_add (tree t, gimple_seq *seq_p)
368 gimplify_stmt (&t, seq_p);
371 /* Gimplify statement T into sequence *SEQ_P, and return the first
372 tuple in the sequence of generated tuples for this statement.
373 Return NULL if gimplifying T produced no tuples. */
375 static gimple
376 gimplify_and_return_first (tree t, gimple_seq *seq_p)
378 gimple_stmt_iterator last = gsi_last (*seq_p);
380 gimplify_and_add (t, seq_p);
382 if (!gsi_end_p (last))
384 gsi_next (&last);
385 return gsi_stmt (last);
387 else
388 return gimple_seq_first_stmt (*seq_p);
391 /* Strip off a legitimate source ending from the input string NAME of
392 length LEN. Rather than having to know the names used by all of
393 our front ends, we strip off an ending of a period followed by
394 up to five characters. (Java uses ".class".) */
396 static inline void
397 remove_suffix (char *name, int len)
399 int i;
401 for (i = 2; i < 8 && len > i; i++)
403 if (name[len - i] == '.')
405 name[len - i] = '\0';
406 break;
411 /* Create a new temporary name with PREFIX. Return an identifier. */
413 static GTY(()) unsigned int tmp_var_id_num;
415 tree
416 create_tmp_var_name (const char *prefix)
418 char *tmp_name;
420 if (prefix)
422 char *preftmp = ASTRDUP (prefix);
424 remove_suffix (preftmp, strlen (preftmp));
425 clean_symbol_name (preftmp);
427 prefix = preftmp;
430 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
431 return get_identifier (tmp_name);
434 /* Create a new temporary variable declaration of type TYPE.
435 Do NOT push it into the current binding. */
437 tree
438 create_tmp_var_raw (tree type, const char *prefix)
440 tree tmp_var;
442 tmp_var = build_decl (input_location,
443 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
444 type);
446 /* The variable was declared by the compiler. */
447 DECL_ARTIFICIAL (tmp_var) = 1;
448 /* And we don't want debug info for it. */
449 DECL_IGNORED_P (tmp_var) = 1;
451 /* Make the variable writable. */
452 TREE_READONLY (tmp_var) = 0;
454 DECL_EXTERNAL (tmp_var) = 0;
455 TREE_STATIC (tmp_var) = 0;
456 TREE_USED (tmp_var) = 1;
458 return tmp_var;
461 /* Create a new temporary variable declaration of type TYPE. DO push the
462 variable into the current binding. Further, assume that this is called
463 only from gimplification or optimization, at which point the creation of
464 certain types are bugs. */
466 tree
467 create_tmp_var (tree type, const char *prefix)
469 tree tmp_var;
471 /* We don't allow types that are addressable (meaning we can't make copies),
472 or incomplete. We also used to reject every variable size objects here,
473 but now support those for which a constant upper bound can be obtained.
474 The processing for variable sizes is performed in gimple_add_tmp_var,
475 point at which it really matters and possibly reached via paths not going
476 through this function, e.g. after direct calls to create_tmp_var_raw. */
477 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
479 tmp_var = create_tmp_var_raw (type, prefix);
480 gimple_add_tmp_var (tmp_var);
481 return tmp_var;
484 /* Create a new temporary variable declaration of type TYPE by calling
485 create_tmp_var and if TYPE is a vector or a complex number, mark the new
486 temporary as gimple register. */
488 tree
489 create_tmp_reg (tree type, const char *prefix)
491 tree tmp;
493 tmp = create_tmp_var (type, prefix);
494 if (TREE_CODE (type) == COMPLEX_TYPE
495 || TREE_CODE (type) == VECTOR_TYPE)
496 DECL_GIMPLE_REG_P (tmp) = 1;
498 return tmp;
501 /* Create a temporary with a name derived from VAL. Subroutine of
502 lookup_tmp_var; nobody else should call this function. */
504 static inline tree
505 create_tmp_from_val (tree val)
507 /* Drop all qualifiers and address-space information from the value type. */
508 return create_tmp_var (TYPE_MAIN_VARIANT (TREE_TYPE (val)), get_name (val));
511 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
512 an existing expression temporary. */
514 static tree
515 lookup_tmp_var (tree val, bool is_formal)
517 tree ret;
519 /* If not optimizing, never really reuse a temporary. local-alloc
520 won't allocate any variable that is used in more than one basic
521 block, which means it will go into memory, causing much extra
522 work in reload and final and poorer code generation, outweighing
523 the extra memory allocation here. */
524 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
525 ret = create_tmp_from_val (val);
526 else
528 elt_t elt, *elt_p;
529 void **slot;
531 elt.val = val;
532 if (gimplify_ctxp->temp_htab == NULL)
533 gimplify_ctxp->temp_htab
534 = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
535 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
536 if (*slot == NULL)
538 elt_p = XNEW (elt_t);
539 elt_p->val = val;
540 elt_p->temp = ret = create_tmp_from_val (val);
541 *slot = (void *) elt_p;
543 else
545 elt_p = (elt_t *) *slot;
546 ret = elt_p->temp;
550 return ret;
553 /* Returns true iff T is a valid RHS for an assignment to a renamed
554 user -- or front-end generated artificial -- variable. */
556 static bool
557 is_gimple_reg_rhs (tree t)
559 return get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS;
562 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
563 LHS, or for a call argument. */
565 static bool
566 is_gimple_mem_rhs (tree t)
568 /* If we're dealing with a renamable type, either source or dest must be
569 a renamed variable. */
570 if (is_gimple_reg_type (TREE_TYPE (t)))
571 return is_gimple_val (t);
572 else
573 return is_gimple_val (t) || is_gimple_lvalue (t);
576 /* Return true if T is a CALL_EXPR or an expression that can be
577 assigned to a temporary. Note that this predicate should only be
578 used during gimplification. See the rationale for this in
579 gimplify_modify_expr. */
581 static bool
582 is_gimple_reg_rhs_or_call (tree t)
584 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
585 || TREE_CODE (t) == CALL_EXPR);
588 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
589 this predicate should only be used during gimplification. See the
590 rationale for this in gimplify_modify_expr. */
592 static bool
593 is_gimple_mem_rhs_or_call (tree t)
595 /* If we're dealing with a renamable type, either source or dest must be
596 a renamed variable. */
597 if (is_gimple_reg_type (TREE_TYPE (t)))
598 return is_gimple_val (t);
599 else
600 return (is_gimple_val (t) || is_gimple_lvalue (t)
601 || TREE_CODE (t) == CALL_EXPR);
604 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
606 static tree
607 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
608 bool is_formal)
610 tree t, mod;
612 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
613 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
614 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
615 fb_rvalue);
617 t = lookup_tmp_var (val, is_formal);
619 if (is_formal
620 && (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
621 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE))
622 DECL_GIMPLE_REG_P (t) = 1;
624 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
626 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
628 /* gimplify_modify_expr might want to reduce this further. */
629 gimplify_and_add (mod, pre_p);
630 ggc_free (mod);
632 /* If we're gimplifying into ssa, gimplify_modify_expr will have
633 given our temporary an SSA name. Find and return it. */
634 if (gimplify_ctxp->into_ssa)
636 gimple last = gimple_seq_last_stmt (*pre_p);
637 t = gimple_get_lhs (last);
640 return t;
643 /* Return a formal temporary variable initialized with VAL. PRE_P is as
644 in gimplify_expr. Only use this function if:
646 1) The value of the unfactored expression represented by VAL will not
647 change between the initialization and use of the temporary, and
648 2) The temporary will not be otherwise modified.
650 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
651 and #2 means it is inappropriate for && temps.
653 For other cases, use get_initialized_tmp_var instead. */
655 tree
656 get_formal_tmp_var (tree val, gimple_seq *pre_p)
658 return internal_get_tmp_var (val, pre_p, NULL, true);
661 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
662 are as in gimplify_expr. */
664 tree
665 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
667 return internal_get_tmp_var (val, pre_p, post_p, false);
670 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
671 generate debug info for them; otherwise don't. */
673 void
674 declare_vars (tree vars, gimple scope, bool debug_info)
676 tree last = vars;
677 if (last)
679 tree temps, block;
681 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
683 temps = nreverse (last);
685 block = gimple_bind_block (scope);
686 gcc_assert (!block || TREE_CODE (block) == BLOCK);
687 if (!block || !debug_info)
689 DECL_CHAIN (last) = gimple_bind_vars (scope);
690 gimple_bind_set_vars (scope, temps);
692 else
694 /* We need to attach the nodes both to the BIND_EXPR and to its
695 associated BLOCK for debugging purposes. The key point here
696 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
697 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
698 if (BLOCK_VARS (block))
699 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
700 else
702 gimple_bind_set_vars (scope,
703 chainon (gimple_bind_vars (scope), temps));
704 BLOCK_VARS (block) = temps;
710 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
711 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
712 no such upper bound can be obtained. */
714 static void
715 force_constant_size (tree var)
717 /* The only attempt we make is by querying the maximum size of objects
718 of the variable's type. */
720 HOST_WIDE_INT max_size;
722 gcc_assert (TREE_CODE (var) == VAR_DECL);
724 max_size = max_int_size_in_bytes (TREE_TYPE (var));
726 gcc_assert (max_size >= 0);
728 DECL_SIZE_UNIT (var)
729 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
730 DECL_SIZE (var)
731 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
734 /* Push the temporary variable TMP into the current binding. */
736 void
737 gimple_add_tmp_var (tree tmp)
739 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
741 /* Later processing assumes that the object size is constant, which might
742 not be true at this point. Force the use of a constant upper bound in
743 this case. */
744 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
745 force_constant_size (tmp);
747 DECL_CONTEXT (tmp) = current_function_decl;
748 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
750 if (gimplify_ctxp)
752 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
753 gimplify_ctxp->temps = tmp;
755 /* Mark temporaries local within the nearest enclosing parallel. */
756 if (gimplify_omp_ctxp)
758 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
759 while (ctx && ctx->region_type == ORT_WORKSHARE)
760 ctx = ctx->outer_context;
761 if (ctx)
762 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
765 else if (cfun)
766 record_vars (tmp);
767 else
769 gimple_seq body_seq;
771 /* This case is for nested functions. We need to expose the locals
772 they create. */
773 body_seq = gimple_body (current_function_decl);
774 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
778 /* Determine whether to assign a location to the statement GS. */
780 static bool
781 should_carry_location_p (gimple gs)
783 /* Don't emit a line note for a label. We particularly don't want to
784 emit one for the break label, since it doesn't actually correspond
785 to the beginning of the loop/switch. */
786 if (gimple_code (gs) == GIMPLE_LABEL)
787 return false;
789 return true;
792 /* Return true if a location should not be emitted for this statement
793 by annotate_one_with_location. */
795 static inline bool
796 gimple_do_not_emit_location_p (gimple g)
798 return gimple_plf (g, GF_PLF_1);
801 /* Mark statement G so a location will not be emitted by
802 annotate_one_with_location. */
804 static inline void
805 gimple_set_do_not_emit_location (gimple g)
807 /* The PLF flags are initialized to 0 when a new tuple is created,
808 so no need to initialize it anywhere. */
809 gimple_set_plf (g, GF_PLF_1, true);
812 /* Set the location for gimple statement GS to LOCATION. */
814 static void
815 annotate_one_with_location (gimple gs, location_t location)
817 if (!gimple_has_location (gs)
818 && !gimple_do_not_emit_location_p (gs)
819 && should_carry_location_p (gs))
820 gimple_set_location (gs, location);
823 /* Set LOCATION for all the statements after iterator GSI in sequence
824 SEQ. If GSI is pointing to the end of the sequence, start with the
825 first statement in SEQ. */
827 static void
828 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
829 location_t location)
831 if (gsi_end_p (gsi))
832 gsi = gsi_start (seq);
833 else
834 gsi_next (&gsi);
836 for (; !gsi_end_p (gsi); gsi_next (&gsi))
837 annotate_one_with_location (gsi_stmt (gsi), location);
840 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
842 void
843 annotate_all_with_location (gimple_seq stmt_p, location_t location)
845 gimple_stmt_iterator i;
847 if (gimple_seq_empty_p (stmt_p))
848 return;
850 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
852 gimple gs = gsi_stmt (i);
853 annotate_one_with_location (gs, location);
857 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
858 nodes that are referenced more than once in GENERIC functions. This is
859 necessary because gimplification (translation into GIMPLE) is performed
860 by modifying tree nodes in-place, so gimplication of a shared node in a
861 first context could generate an invalid GIMPLE form in a second context.
863 This is achieved with a simple mark/copy/unmark algorithm that walks the
864 GENERIC representation top-down, marks nodes with TREE_VISITED the first
865 time it encounters them, duplicates them if they already have TREE_VISITED
866 set, and finally removes the TREE_VISITED marks it has set.
868 The algorithm works only at the function level, i.e. it generates a GENERIC
869 representation of a function with no nodes shared within the function when
870 passed a GENERIC function (except for nodes that are allowed to be shared).
872 At the global level, it is also necessary to unshare tree nodes that are
873 referenced in more than one function, for the same aforementioned reason.
874 This requires some cooperation from the front-end. There are 2 strategies:
876 1. Manual unsharing. The front-end needs to call unshare_expr on every
877 expression that might end up being shared across functions.
879 2. Deep unsharing. This is an extension of regular unsharing. Instead
880 of calling unshare_expr on expressions that might be shared across
881 functions, the front-end pre-marks them with TREE_VISITED. This will
882 ensure that they are unshared on the first reference within functions
883 when the regular unsharing algorithm runs. The counterpart is that
884 this algorithm must look deeper than for manual unsharing, which is
885 specified by LANG_HOOKS_DEEP_UNSHARING.
887 If there are only few specific cases of node sharing across functions, it is
888 probably easier for a front-end to unshare the expressions manually. On the
889 contrary, if the expressions generated at the global level are as widespread
890 as expressions generated within functions, deep unsharing is very likely the
891 way to go. */
893 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
894 These nodes model computations that must be done once. If we were to
895 unshare something like SAVE_EXPR(i++), the gimplification process would
896 create wrong code. However, if DATA is non-null, it must hold a pointer
897 set that is used to unshare the subtrees of these nodes. */
899 static tree
900 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
902 tree t = *tp;
903 enum tree_code code = TREE_CODE (t);
905 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
906 copy their subtrees if we can make sure to do it only once. */
907 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
909 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
911 else
912 *walk_subtrees = 0;
915 /* Stop at types, decls, constants like copy_tree_r. */
916 else if (TREE_CODE_CLASS (code) == tcc_type
917 || TREE_CODE_CLASS (code) == tcc_declaration
918 || TREE_CODE_CLASS (code) == tcc_constant
919 /* We can't do anything sensible with a BLOCK used as an
920 expression, but we also can't just die when we see it
921 because of non-expression uses. So we avert our eyes
922 and cross our fingers. Silly Java. */
923 || code == BLOCK)
924 *walk_subtrees = 0;
926 /* Cope with the statement expression extension. */
927 else if (code == STATEMENT_LIST)
930 /* Leave the bulk of the work to copy_tree_r itself. */
931 else
932 copy_tree_r (tp, walk_subtrees, NULL);
934 return NULL_TREE;
937 /* Callback for walk_tree to unshare most of the shared trees rooted at *TP.
938 If *TP has been visited already, then *TP is deeply copied by calling
939 mostly_copy_tree_r. DATA is passed to mostly_copy_tree_r unmodified. */
941 static tree
942 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
944 tree t = *tp;
945 enum tree_code code = TREE_CODE (t);
947 /* Skip types, decls, and constants. But we do want to look at their
948 types and the bounds of types. Mark them as visited so we properly
949 unmark their subtrees on the unmark pass. If we've already seen them,
950 don't look down further. */
951 if (TREE_CODE_CLASS (code) == tcc_type
952 || TREE_CODE_CLASS (code) == tcc_declaration
953 || TREE_CODE_CLASS (code) == tcc_constant)
955 if (TREE_VISITED (t))
956 *walk_subtrees = 0;
957 else
958 TREE_VISITED (t) = 1;
961 /* If this node has been visited already, unshare it and don't look
962 any deeper. */
963 else if (TREE_VISITED (t))
965 walk_tree (tp, mostly_copy_tree_r, data, NULL);
966 *walk_subtrees = 0;
969 /* Otherwise, mark the node as visited and keep looking. */
970 else
971 TREE_VISITED (t) = 1;
973 return NULL_TREE;
976 /* Unshare most of the shared trees rooted at *TP. DATA is passed to the
977 copy_if_shared_r callback unmodified. */
979 static inline void
980 copy_if_shared (tree *tp, void *data)
982 walk_tree (tp, copy_if_shared_r, data, NULL);
985 /* Unshare all the trees in the body of FNDECL, as well as in the bodies of
986 any nested functions. */
988 static void
989 unshare_body (tree fndecl)
991 struct cgraph_node *cgn = cgraph_get_node (fndecl);
992 /* If the language requires deep unsharing, we need a pointer set to make
993 sure we don't repeatedly unshare subtrees of unshareable nodes. */
994 struct pointer_set_t *visited
995 = lang_hooks.deep_unsharing ? pointer_set_create () : NULL;
997 copy_if_shared (&DECL_SAVED_TREE (fndecl), visited);
998 copy_if_shared (&DECL_SIZE (DECL_RESULT (fndecl)), visited);
999 copy_if_shared (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)), visited);
1001 if (visited)
1002 pointer_set_destroy (visited);
1004 if (cgn)
1005 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1006 unshare_body (cgn->symbol.decl);
1009 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
1010 Subtrees are walked until the first unvisited node is encountered. */
1012 static tree
1013 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1015 tree t = *tp;
1017 /* If this node has been visited, unmark it and keep looking. */
1018 if (TREE_VISITED (t))
1019 TREE_VISITED (t) = 0;
1021 /* Otherwise, don't look any deeper. */
1022 else
1023 *walk_subtrees = 0;
1025 return NULL_TREE;
1028 /* Unmark the visited trees rooted at *TP. */
1030 static inline void
1031 unmark_visited (tree *tp)
1033 walk_tree (tp, unmark_visited_r, NULL, NULL);
1036 /* Likewise, but mark all trees as not visited. */
1038 static void
1039 unvisit_body (tree fndecl)
1041 struct cgraph_node *cgn = cgraph_get_node (fndecl);
1043 unmark_visited (&DECL_SAVED_TREE (fndecl));
1044 unmark_visited (&DECL_SIZE (DECL_RESULT (fndecl)));
1045 unmark_visited (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)));
1047 if (cgn)
1048 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1049 unvisit_body (cgn->symbol.decl);
1052 /* Unconditionally make an unshared copy of EXPR. This is used when using
1053 stored expressions which span multiple functions, such as BINFO_VTABLE,
1054 as the normal unsharing process can't tell that they're shared. */
1056 tree
1057 unshare_expr (tree expr)
1059 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1060 return expr;
1063 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1064 contain statements and have a value. Assign its value to a temporary
1065 and give it void_type_node. Return the temporary, or NULL_TREE if
1066 WRAPPER was already void. */
1068 tree
1069 voidify_wrapper_expr (tree wrapper, tree temp)
1071 tree type = TREE_TYPE (wrapper);
1072 if (type && !VOID_TYPE_P (type))
1074 tree *p;
1076 /* Set p to point to the body of the wrapper. Loop until we find
1077 something that isn't a wrapper. */
1078 for (p = &wrapper; p && *p; )
1080 switch (TREE_CODE (*p))
1082 case BIND_EXPR:
1083 TREE_SIDE_EFFECTS (*p) = 1;
1084 TREE_TYPE (*p) = void_type_node;
1085 /* For a BIND_EXPR, the body is operand 1. */
1086 p = &BIND_EXPR_BODY (*p);
1087 break;
1089 case CLEANUP_POINT_EXPR:
1090 case TRY_FINALLY_EXPR:
1091 case TRY_CATCH_EXPR:
1092 TREE_SIDE_EFFECTS (*p) = 1;
1093 TREE_TYPE (*p) = void_type_node;
1094 p = &TREE_OPERAND (*p, 0);
1095 break;
1097 case STATEMENT_LIST:
1099 tree_stmt_iterator i = tsi_last (*p);
1100 TREE_SIDE_EFFECTS (*p) = 1;
1101 TREE_TYPE (*p) = void_type_node;
1102 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1104 break;
1106 case COMPOUND_EXPR:
1107 /* Advance to the last statement. Set all container types to
1108 void. */
1109 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1111 TREE_SIDE_EFFECTS (*p) = 1;
1112 TREE_TYPE (*p) = void_type_node;
1114 break;
1116 case TRANSACTION_EXPR:
1117 TREE_SIDE_EFFECTS (*p) = 1;
1118 TREE_TYPE (*p) = void_type_node;
1119 p = &TRANSACTION_EXPR_BODY (*p);
1120 break;
1122 default:
1123 /* Assume that any tree upon which voidify_wrapper_expr is
1124 directly called is a wrapper, and that its body is op0. */
1125 if (p == &wrapper)
1127 TREE_SIDE_EFFECTS (*p) = 1;
1128 TREE_TYPE (*p) = void_type_node;
1129 p = &TREE_OPERAND (*p, 0);
1130 break;
1132 goto out;
1136 out:
1137 if (p == NULL || IS_EMPTY_STMT (*p))
1138 temp = NULL_TREE;
1139 else if (temp)
1141 /* The wrapper is on the RHS of an assignment that we're pushing
1142 down. */
1143 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1144 || TREE_CODE (temp) == MODIFY_EXPR);
1145 TREE_OPERAND (temp, 1) = *p;
1146 *p = temp;
1148 else
1150 temp = create_tmp_var (type, "retval");
1151 *p = build2 (INIT_EXPR, type, temp, *p);
1154 return temp;
1157 return NULL_TREE;
1160 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1161 a temporary through which they communicate. */
1163 static void
1164 build_stack_save_restore (gimple *save, gimple *restore)
1166 tree tmp_var;
1168 *save = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0);
1169 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1170 gimple_call_set_lhs (*save, tmp_var);
1172 *restore
1173 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE),
1174 1, tmp_var);
1177 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1179 static enum gimplify_status
1180 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1182 tree bind_expr = *expr_p;
1183 bool old_save_stack = gimplify_ctxp->save_stack;
1184 tree t;
1185 gimple gimple_bind;
1186 gimple_seq body, cleanup;
1187 gimple stack_save;
1189 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1191 /* Mark variables seen in this bind expr. */
1192 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1194 if (TREE_CODE (t) == VAR_DECL)
1196 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1198 /* Mark variable as local. */
1199 if (ctx && !DECL_EXTERNAL (t)
1200 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1201 || splay_tree_lookup (ctx->variables,
1202 (splay_tree_key) t) == NULL))
1203 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1205 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1207 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1208 cfun->has_local_explicit_reg_vars = true;
1211 /* Preliminarily mark non-addressed complex variables as eligible
1212 for promotion to gimple registers. We'll transform their uses
1213 as we find them. */
1214 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1215 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1216 && !TREE_THIS_VOLATILE (t)
1217 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1218 && !needs_to_live_in_memory (t))
1219 DECL_GIMPLE_REG_P (t) = 1;
1222 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1223 BIND_EXPR_BLOCK (bind_expr));
1224 gimple_push_bind_expr (gimple_bind);
1226 gimplify_ctxp->save_stack = false;
1228 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1229 body = NULL;
1230 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1231 gimple_bind_set_body (gimple_bind, body);
1233 cleanup = NULL;
1234 stack_save = NULL;
1235 if (gimplify_ctxp->save_stack)
1237 gimple stack_restore;
1239 /* Save stack on entry and restore it on exit. Add a try_finally
1240 block to achieve this. Note that mudflap depends on the
1241 format of the emitted code: see mx_register_decls(). */
1242 build_stack_save_restore (&stack_save, &stack_restore);
1244 gimplify_seq_add_stmt (&cleanup, stack_restore);
1247 /* Add clobbers for all variables that go out of scope. */
1248 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1250 if (TREE_CODE (t) == VAR_DECL
1251 && !is_global_var (t)
1252 && DECL_CONTEXT (t) == current_function_decl
1253 && !DECL_HARD_REGISTER (t)
1254 && !TREE_THIS_VOLATILE (t)
1255 && !DECL_HAS_VALUE_EXPR_P (t)
1256 /* Only care for variables that have to be in memory. Others
1257 will be rewritten into SSA names, hence moved to the top-level. */
1258 && !is_gimple_reg (t))
1260 tree clobber = build_constructor (TREE_TYPE (t), NULL);
1261 TREE_THIS_VOLATILE (clobber) = 1;
1262 gimplify_seq_add_stmt (&cleanup, gimple_build_assign (t, clobber));
1266 if (cleanup)
1268 gimple gs;
1269 gimple_seq new_body;
1271 new_body = NULL;
1272 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1273 GIMPLE_TRY_FINALLY);
1275 if (stack_save)
1276 gimplify_seq_add_stmt (&new_body, stack_save);
1277 gimplify_seq_add_stmt (&new_body, gs);
1278 gimple_bind_set_body (gimple_bind, new_body);
1281 gimplify_ctxp->save_stack = old_save_stack;
1282 gimple_pop_bind_expr ();
1284 gimplify_seq_add_stmt (pre_p, gimple_bind);
1286 if (temp)
1288 *expr_p = temp;
1289 return GS_OK;
1292 *expr_p = NULL_TREE;
1293 return GS_ALL_DONE;
1296 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1297 GIMPLE value, it is assigned to a new temporary and the statement is
1298 re-written to return the temporary.
1300 PRE_P points to the sequence where side effects that must happen before
1301 STMT should be stored. */
1303 static enum gimplify_status
1304 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1306 gimple ret;
1307 tree ret_expr = TREE_OPERAND (stmt, 0);
1308 tree result_decl, result;
1310 if (ret_expr == error_mark_node)
1311 return GS_ERROR;
1313 if (!ret_expr
1314 || TREE_CODE (ret_expr) == RESULT_DECL
1315 || ret_expr == error_mark_node)
1317 gimple ret = gimple_build_return (ret_expr);
1318 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1319 gimplify_seq_add_stmt (pre_p, ret);
1320 return GS_ALL_DONE;
1323 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1324 result_decl = NULL_TREE;
1325 else
1327 result_decl = TREE_OPERAND (ret_expr, 0);
1329 /* See through a return by reference. */
1330 if (TREE_CODE (result_decl) == INDIRECT_REF)
1331 result_decl = TREE_OPERAND (result_decl, 0);
1333 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1334 || TREE_CODE (ret_expr) == INIT_EXPR)
1335 && TREE_CODE (result_decl) == RESULT_DECL);
1338 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1339 Recall that aggregate_value_p is FALSE for any aggregate type that is
1340 returned in registers. If we're returning values in registers, then
1341 we don't want to extend the lifetime of the RESULT_DECL, particularly
1342 across another call. In addition, for those aggregates for which
1343 hard_function_value generates a PARALLEL, we'll die during normal
1344 expansion of structure assignments; there's special code in expand_return
1345 to handle this case that does not exist in expand_expr. */
1346 if (!result_decl)
1347 result = NULL_TREE;
1348 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1350 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1352 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1353 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1354 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1355 should be effectively allocated by the caller, i.e. all calls to
1356 this function must be subject to the Return Slot Optimization. */
1357 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1358 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1360 result = result_decl;
1362 else if (gimplify_ctxp->return_temp)
1363 result = gimplify_ctxp->return_temp;
1364 else
1366 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1368 /* ??? With complex control flow (usually involving abnormal edges),
1369 we can wind up warning about an uninitialized value for this. Due
1370 to how this variable is constructed and initialized, this is never
1371 true. Give up and never warn. */
1372 TREE_NO_WARNING (result) = 1;
1374 gimplify_ctxp->return_temp = result;
1377 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1378 Then gimplify the whole thing. */
1379 if (result != result_decl)
1380 TREE_OPERAND (ret_expr, 0) = result;
1382 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1384 ret = gimple_build_return (result);
1385 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1386 gimplify_seq_add_stmt (pre_p, ret);
1388 return GS_ALL_DONE;
1391 /* Gimplify a variable-length array DECL. */
1393 static void
1394 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1396 /* This is a variable-sized decl. Simplify its size and mark it
1397 for deferred expansion. Note that mudflap depends on the format
1398 of the emitted code: see mx_register_decls(). */
1399 tree t, addr, ptr_type;
1401 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1402 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1404 /* All occurrences of this decl in final gimplified code will be
1405 replaced by indirection. Setting DECL_VALUE_EXPR does two
1406 things: First, it lets the rest of the gimplifier know what
1407 replacement to use. Second, it lets the debug info know
1408 where to find the value. */
1409 ptr_type = build_pointer_type (TREE_TYPE (decl));
1410 addr = create_tmp_var (ptr_type, get_name (decl));
1411 DECL_IGNORED_P (addr) = 0;
1412 t = build_fold_indirect_ref (addr);
1413 TREE_THIS_NOTRAP (t) = 1;
1414 SET_DECL_VALUE_EXPR (decl, t);
1415 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1417 t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
1418 t = build_call_expr (t, 2, DECL_SIZE_UNIT (decl),
1419 size_int (DECL_ALIGN (decl)));
1420 /* The call has been built for a variable-sized object. */
1421 CALL_ALLOCA_FOR_VAR_P (t) = 1;
1422 t = fold_convert (ptr_type, t);
1423 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1425 gimplify_and_add (t, seq_p);
1427 /* Indicate that we need to restore the stack level when the
1428 enclosing BIND_EXPR is exited. */
1429 gimplify_ctxp->save_stack = true;
1432 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1433 and initialization explicit. */
1435 static enum gimplify_status
1436 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1438 tree stmt = *stmt_p;
1439 tree decl = DECL_EXPR_DECL (stmt);
1441 *stmt_p = NULL_TREE;
1443 if (TREE_TYPE (decl) == error_mark_node)
1444 return GS_ERROR;
1446 if ((TREE_CODE (decl) == TYPE_DECL
1447 || TREE_CODE (decl) == VAR_DECL)
1448 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1449 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1451 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1453 tree init = DECL_INITIAL (decl);
1455 if (TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1456 || (!TREE_STATIC (decl)
1457 && flag_stack_check == GENERIC_STACK_CHECK
1458 && compare_tree_int (DECL_SIZE_UNIT (decl),
1459 STACK_CHECK_MAX_VAR_SIZE) > 0))
1460 gimplify_vla_decl (decl, seq_p);
1462 /* Some front ends do not explicitly declare all anonymous
1463 artificial variables. We compensate here by declaring the
1464 variables, though it would be better if the front ends would
1465 explicitly declare them. */
1466 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1467 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1468 gimple_add_tmp_var (decl);
1470 if (init && init != error_mark_node)
1472 if (!TREE_STATIC (decl))
1474 DECL_INITIAL (decl) = NULL_TREE;
1475 init = build2 (INIT_EXPR, void_type_node, decl, init);
1476 gimplify_and_add (init, seq_p);
1477 ggc_free (init);
1479 else
1480 /* We must still examine initializers for static variables
1481 as they may contain a label address. */
1482 walk_tree (&init, force_labels_r, NULL, NULL);
1486 return GS_ALL_DONE;
1489 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1490 and replacing the LOOP_EXPR with goto, but if the loop contains an
1491 EXIT_EXPR, we need to append a label for it to jump to. */
1493 static enum gimplify_status
1494 gimplify_loop_expr (tree *expr_p, gimple_seq *pre_p)
1496 tree saved_label = gimplify_ctxp->exit_label;
1497 tree start_label = create_artificial_label (UNKNOWN_LOCATION);
1499 gimplify_seq_add_stmt (pre_p, gimple_build_label (start_label));
1501 gimplify_ctxp->exit_label = NULL_TREE;
1503 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1505 gimplify_seq_add_stmt (pre_p, gimple_build_goto (start_label));
1507 if (gimplify_ctxp->exit_label)
1508 gimplify_seq_add_stmt (pre_p,
1509 gimple_build_label (gimplify_ctxp->exit_label));
1511 gimplify_ctxp->exit_label = saved_label;
1513 *expr_p = NULL;
1514 return GS_ALL_DONE;
1517 /* Gimplify a statement list onto a sequence. These may be created either
1518 by an enlightened front-end, or by shortcut_cond_expr. */
1520 static enum gimplify_status
1521 gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
1523 tree temp = voidify_wrapper_expr (*expr_p, NULL);
1525 tree_stmt_iterator i = tsi_start (*expr_p);
1527 while (!tsi_end_p (i))
1529 gimplify_stmt (tsi_stmt_ptr (i), pre_p);
1530 tsi_delink (&i);
1533 if (temp)
1535 *expr_p = temp;
1536 return GS_OK;
1539 return GS_ALL_DONE;
1542 /* Compare two case labels. Because the front end should already have
1543 made sure that case ranges do not overlap, it is enough to only compare
1544 the CASE_LOW values of each case label. */
1546 static int
1547 compare_case_labels (const void *p1, const void *p2)
1549 const_tree const case1 = *(const_tree const*)p1;
1550 const_tree const case2 = *(const_tree const*)p2;
1552 /* The 'default' case label always goes first. */
1553 if (!CASE_LOW (case1))
1554 return -1;
1555 else if (!CASE_LOW (case2))
1556 return 1;
1557 else
1558 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1561 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1563 void
1564 sort_case_labels (VEC(tree,heap)* label_vec)
1566 VEC_qsort (tree, label_vec, compare_case_labels);
1569 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
1571 LABELS is a vector that contains all case labels to look at.
1573 INDEX_TYPE is the type of the switch index expression. Case labels
1574 in LABELS are discarded if their values are not in the value range
1575 covered by INDEX_TYPE. The remaining case label values are folded
1576 to INDEX_TYPE.
1578 If a default case exists in LABELS, it is removed from LABELS and
1579 returned in DEFAULT_CASEP. If no default case exists, but the
1580 case labels already cover the whole range of INDEX_TYPE, a default
1581 case is returned pointing to one of the existing case labels.
1582 Otherwise DEFAULT_CASEP is set to NULL_TREE.
1584 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
1585 apply and no action is taken regardless of whether a default case is
1586 found or not. */
1588 void
1589 preprocess_case_label_vec_for_gimple (VEC(tree,heap) *labels,
1590 tree index_type,
1591 tree *default_casep)
1593 tree min_value, max_value;
1594 tree default_case = NULL_TREE;
1595 size_t i, len;
1597 i = 0;
1598 min_value = TYPE_MIN_VALUE (index_type);
1599 max_value = TYPE_MAX_VALUE (index_type);
1600 while (i < VEC_length (tree, labels))
1602 tree elt = VEC_index (tree, labels, i);
1603 tree low = CASE_LOW (elt);
1604 tree high = CASE_HIGH (elt);
1605 bool remove_element = FALSE;
1607 if (low)
1609 gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
1610 gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
1612 /* This is a non-default case label, i.e. it has a value.
1614 See if the case label is reachable within the range of
1615 the index type. Remove out-of-range case values. Turn
1616 case ranges into a canonical form (high > low strictly)
1617 and convert the case label values to the index type.
1619 NB: The type of gimple_switch_index() may be the promoted
1620 type, but the case labels retain the original type. */
1622 if (high)
1624 /* This is a case range. Discard empty ranges.
1625 If the bounds or the range are equal, turn this
1626 into a simple (one-value) case. */
1627 int cmp = tree_int_cst_compare (high, low);
1628 if (cmp < 0)
1629 remove_element = TRUE;
1630 else if (cmp == 0)
1631 high = NULL_TREE;
1634 if (! high)
1636 /* If the simple case value is unreachable, ignore it. */
1637 if ((TREE_CODE (min_value) == INTEGER_CST
1638 && tree_int_cst_compare (low, min_value) < 0)
1639 || (TREE_CODE (max_value) == INTEGER_CST
1640 && tree_int_cst_compare (low, max_value) > 0))
1641 remove_element = TRUE;
1642 else
1643 low = fold_convert (index_type, low);
1645 else
1647 /* If the entire case range is unreachable, ignore it. */
1648 if ((TREE_CODE (min_value) == INTEGER_CST
1649 && tree_int_cst_compare (high, min_value) < 0)
1650 || (TREE_CODE (max_value) == INTEGER_CST
1651 && tree_int_cst_compare (low, max_value) > 0))
1652 remove_element = TRUE;
1653 else
1655 /* If the lower bound is less than the index type's
1656 minimum value, truncate the range bounds. */
1657 if (TREE_CODE (min_value) == INTEGER_CST
1658 && tree_int_cst_compare (low, min_value) < 0)
1659 low = min_value;
1660 low = fold_convert (index_type, low);
1662 /* If the upper bound is greater than the index type's
1663 maximum value, truncate the range bounds. */
1664 if (TREE_CODE (max_value) == INTEGER_CST
1665 && tree_int_cst_compare (high, max_value) > 0)
1666 high = max_value;
1667 high = fold_convert (index_type, high);
1671 CASE_LOW (elt) = low;
1672 CASE_HIGH (elt) = high;
1674 else
1676 gcc_assert (!default_case);
1677 default_case = elt;
1678 /* The default case must be passed separately to the
1679 gimple_build_switch routines. But if DEFAULT_CASEP
1680 is NULL, we do not remove the default case (it would
1681 be completely lost). */
1682 if (default_casep)
1683 remove_element = TRUE;
1686 if (remove_element)
1687 VEC_ordered_remove (tree, labels, i);
1688 else
1689 i++;
1691 len = i;
1693 if (!VEC_empty (tree, labels))
1694 sort_case_labels (labels);
1696 if (default_casep && !default_case)
1698 /* If the switch has no default label, add one, so that we jump
1699 around the switch body. If the labels already cover the whole
1700 range of the switch index_type, add the default label pointing
1701 to one of the existing labels. */
1702 if (len
1703 && TYPE_MIN_VALUE (index_type)
1704 && TYPE_MAX_VALUE (index_type)
1705 && tree_int_cst_equal (CASE_LOW (VEC_index (tree, labels, 0)),
1706 TYPE_MIN_VALUE (index_type)))
1708 tree low, high = CASE_HIGH (VEC_index (tree, labels, len - 1));
1709 if (!high)
1710 high = CASE_LOW (VEC_index (tree, labels, len - 1));
1711 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
1713 for (i = 1; i < len; i++)
1715 high = CASE_LOW (VEC_index (tree, labels, i));
1716 low = CASE_HIGH (VEC_index (tree, labels, i - 1));
1717 if (!low)
1718 low = CASE_LOW (VEC_index (tree, labels, i - 1));
1719 if ((TREE_INT_CST_LOW (low) + 1
1720 != TREE_INT_CST_LOW (high))
1721 || (TREE_INT_CST_HIGH (low)
1722 + (TREE_INT_CST_LOW (high) == 0)
1723 != TREE_INT_CST_HIGH (high)))
1724 break;
1726 if (i == len)
1728 tree label = CASE_LABEL (VEC_index (tree, labels, 0));
1729 default_case = build_case_label (NULL_TREE, NULL_TREE,
1730 label);
1736 if (default_casep)
1737 *default_casep = default_case;
1740 /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
1741 branch to. */
1743 static enum gimplify_status
1744 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1746 tree switch_expr = *expr_p;
1747 gimple_seq switch_body_seq = NULL;
1748 enum gimplify_status ret;
1749 tree index_type = TREE_TYPE (switch_expr);
1750 if (index_type == NULL_TREE)
1751 index_type = TREE_TYPE (SWITCH_COND (switch_expr));
1753 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1754 fb_rvalue);
1755 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1756 return ret;
1758 if (SWITCH_BODY (switch_expr))
1760 VEC (tree,heap) *labels;
1761 VEC (tree,heap) *saved_labels;
1762 tree default_case = NULL_TREE;
1763 gimple gimple_switch;
1765 /* If someone can be bothered to fill in the labels, they can
1766 be bothered to null out the body too. */
1767 gcc_assert (!SWITCH_LABELS (switch_expr));
1769 /* Save old labels, get new ones from body, then restore the old
1770 labels. Save all the things from the switch body to append after. */
1771 saved_labels = gimplify_ctxp->case_labels;
1772 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1774 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1775 labels = gimplify_ctxp->case_labels;
1776 gimplify_ctxp->case_labels = saved_labels;
1778 preprocess_case_label_vec_for_gimple (labels, index_type,
1779 &default_case);
1781 if (!default_case)
1783 gimple new_default;
1785 default_case
1786 = build_case_label (NULL_TREE, NULL_TREE,
1787 create_artificial_label (UNKNOWN_LOCATION));
1788 new_default = gimple_build_label (CASE_LABEL (default_case));
1789 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1792 gimple_switch = gimple_build_switch_vec (SWITCH_COND (switch_expr),
1793 default_case, labels);
1794 gimplify_seq_add_stmt (pre_p, gimple_switch);
1795 gimplify_seq_add_seq (pre_p, switch_body_seq);
1796 VEC_free(tree, heap, labels);
1798 else
1799 gcc_assert (SWITCH_LABELS (switch_expr));
1801 return GS_ALL_DONE;
1804 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1806 static enum gimplify_status
1807 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1809 struct gimplify_ctx *ctxp;
1810 gimple gimple_label;
1812 /* Invalid OpenMP programs can play Duff's Device type games with
1813 #pragma omp parallel. At least in the C front end, we don't
1814 detect such invalid branches until after gimplification. */
1815 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1816 if (ctxp->case_labels)
1817 break;
1819 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1820 VEC_safe_push (tree, heap, ctxp->case_labels, *expr_p);
1821 gimplify_seq_add_stmt (pre_p, gimple_label);
1823 return GS_ALL_DONE;
1826 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1827 if necessary. */
1829 tree
1830 build_and_jump (tree *label_p)
1832 if (label_p == NULL)
1833 /* If there's nowhere to jump, just fall through. */
1834 return NULL_TREE;
1836 if (*label_p == NULL_TREE)
1838 tree label = create_artificial_label (UNKNOWN_LOCATION);
1839 *label_p = label;
1842 return build1 (GOTO_EXPR, void_type_node, *label_p);
1845 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1846 This also involves building a label to jump to and communicating it to
1847 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1849 static enum gimplify_status
1850 gimplify_exit_expr (tree *expr_p)
1852 tree cond = TREE_OPERAND (*expr_p, 0);
1853 tree expr;
1855 expr = build_and_jump (&gimplify_ctxp->exit_label);
1856 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1857 *expr_p = expr;
1859 return GS_OK;
1862 /* A helper function to be called via walk_tree. Mark all labels under *TP
1863 as being forced. To be called for DECL_INITIAL of static variables. */
1865 tree
1866 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1868 if (TYPE_P (*tp))
1869 *walk_subtrees = 0;
1870 if (TREE_CODE (*tp) == LABEL_DECL)
1871 FORCED_LABEL (*tp) = 1;
1873 return NULL_TREE;
1876 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1877 different from its canonical type, wrap the whole thing inside a
1878 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1879 type.
1881 The canonical type of a COMPONENT_REF is the type of the field being
1882 referenced--unless the field is a bit-field which can be read directly
1883 in a smaller mode, in which case the canonical type is the
1884 sign-appropriate type corresponding to that mode. */
1886 static void
1887 canonicalize_component_ref (tree *expr_p)
1889 tree expr = *expr_p;
1890 tree type;
1892 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1894 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1895 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1896 else
1897 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1899 /* One could argue that all the stuff below is not necessary for
1900 the non-bitfield case and declare it a FE error if type
1901 adjustment would be needed. */
1902 if (TREE_TYPE (expr) != type)
1904 #ifdef ENABLE_TYPES_CHECKING
1905 tree old_type = TREE_TYPE (expr);
1906 #endif
1907 int type_quals;
1909 /* We need to preserve qualifiers and propagate them from
1910 operand 0. */
1911 type_quals = TYPE_QUALS (type)
1912 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1913 if (TYPE_QUALS (type) != type_quals)
1914 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1916 /* Set the type of the COMPONENT_REF to the underlying type. */
1917 TREE_TYPE (expr) = type;
1919 #ifdef ENABLE_TYPES_CHECKING
1920 /* It is now a FE error, if the conversion from the canonical
1921 type to the original expression type is not useless. */
1922 gcc_assert (useless_type_conversion_p (old_type, type));
1923 #endif
1927 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1928 to foo, embed that change in the ADDR_EXPR by converting
1929 T array[U];
1930 (T *)&array
1932 &array[L]
1933 where L is the lower bound. For simplicity, only do this for constant
1934 lower bound.
1935 The constraint is that the type of &array[L] is trivially convertible
1936 to T *. */
1938 static void
1939 canonicalize_addr_expr (tree *expr_p)
1941 tree expr = *expr_p;
1942 tree addr_expr = TREE_OPERAND (expr, 0);
1943 tree datype, ddatype, pddatype;
1945 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1946 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1947 || TREE_CODE (addr_expr) != ADDR_EXPR)
1948 return;
1950 /* The addr_expr type should be a pointer to an array. */
1951 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1952 if (TREE_CODE (datype) != ARRAY_TYPE)
1953 return;
1955 /* The pointer to element type shall be trivially convertible to
1956 the expression pointer type. */
1957 ddatype = TREE_TYPE (datype);
1958 pddatype = build_pointer_type (ddatype);
1959 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1960 pddatype))
1961 return;
1963 /* The lower bound and element sizes must be constant. */
1964 if (!TYPE_SIZE_UNIT (ddatype)
1965 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1966 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1967 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1968 return;
1970 /* All checks succeeded. Build a new node to merge the cast. */
1971 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1972 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1973 NULL_TREE, NULL_TREE);
1974 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1976 /* We can have stripped a required restrict qualifier above. */
1977 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1978 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1981 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1982 underneath as appropriate. */
1984 static enum gimplify_status
1985 gimplify_conversion (tree *expr_p)
1987 location_t loc = EXPR_LOCATION (*expr_p);
1988 gcc_assert (CONVERT_EXPR_P (*expr_p));
1990 /* Then strip away all but the outermost conversion. */
1991 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1993 /* And remove the outermost conversion if it's useless. */
1994 if (tree_ssa_useless_type_conversion (*expr_p))
1995 *expr_p = TREE_OPERAND (*expr_p, 0);
1997 /* If we still have a conversion at the toplevel,
1998 then canonicalize some constructs. */
1999 if (CONVERT_EXPR_P (*expr_p))
2001 tree sub = TREE_OPERAND (*expr_p, 0);
2003 /* If a NOP conversion is changing the type of a COMPONENT_REF
2004 expression, then canonicalize its type now in order to expose more
2005 redundant conversions. */
2006 if (TREE_CODE (sub) == COMPONENT_REF)
2007 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
2009 /* If a NOP conversion is changing a pointer to array of foo
2010 to a pointer to foo, embed that change in the ADDR_EXPR. */
2011 else if (TREE_CODE (sub) == ADDR_EXPR)
2012 canonicalize_addr_expr (expr_p);
2015 /* If we have a conversion to a non-register type force the
2016 use of a VIEW_CONVERT_EXPR instead. */
2017 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
2018 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
2019 TREE_OPERAND (*expr_p, 0));
2021 return GS_OK;
2024 /* Nonlocal VLAs seen in the current function. */
2025 static struct pointer_set_t *nonlocal_vlas;
2027 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
2028 DECL_VALUE_EXPR, and it's worth re-examining things. */
2030 static enum gimplify_status
2031 gimplify_var_or_parm_decl (tree *expr_p)
2033 tree decl = *expr_p;
2035 /* ??? If this is a local variable, and it has not been seen in any
2036 outer BIND_EXPR, then it's probably the result of a duplicate
2037 declaration, for which we've already issued an error. It would
2038 be really nice if the front end wouldn't leak these at all.
2039 Currently the only known culprit is C++ destructors, as seen
2040 in g++.old-deja/g++.jason/binding.C. */
2041 if (TREE_CODE (decl) == VAR_DECL
2042 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
2043 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
2044 && decl_function_context (decl) == current_function_decl)
2046 gcc_assert (seen_error ());
2047 return GS_ERROR;
2050 /* When within an OpenMP context, notice uses of variables. */
2051 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
2052 return GS_ALL_DONE;
2054 /* If the decl is an alias for another expression, substitute it now. */
2055 if (DECL_HAS_VALUE_EXPR_P (decl))
2057 tree value_expr = DECL_VALUE_EXPR (decl);
2059 /* For referenced nonlocal VLAs add a decl for debugging purposes
2060 to the current function. */
2061 if (TREE_CODE (decl) == VAR_DECL
2062 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
2063 && nonlocal_vlas != NULL
2064 && TREE_CODE (value_expr) == INDIRECT_REF
2065 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
2066 && decl_function_context (decl) != current_function_decl)
2068 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
2069 while (ctx && ctx->region_type == ORT_WORKSHARE)
2070 ctx = ctx->outer_context;
2071 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
2073 tree copy = copy_node (decl), block;
2075 lang_hooks.dup_lang_specific_decl (copy);
2076 SET_DECL_RTL (copy, 0);
2077 TREE_USED (copy) = 1;
2078 block = DECL_INITIAL (current_function_decl);
2079 DECL_CHAIN (copy) = BLOCK_VARS (block);
2080 BLOCK_VARS (block) = copy;
2081 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
2082 DECL_HAS_VALUE_EXPR_P (copy) = 1;
2086 *expr_p = unshare_expr (value_expr);
2087 return GS_OK;
2090 return GS_ALL_DONE;
2093 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
2094 node *EXPR_P.
2096 compound_lval
2097 : min_lval '[' val ']'
2098 | min_lval '.' ID
2099 | compound_lval '[' val ']'
2100 | compound_lval '.' ID
2102 This is not part of the original SIMPLE definition, which separates
2103 array and member references, but it seems reasonable to handle them
2104 together. Also, this way we don't run into problems with union
2105 aliasing; gcc requires that for accesses through a union to alias, the
2106 union reference must be explicit, which was not always the case when we
2107 were splitting up array and member refs.
2109 PRE_P points to the sequence where side effects that must happen before
2110 *EXPR_P should be stored.
2112 POST_P points to the sequence where side effects that must happen after
2113 *EXPR_P should be stored. */
2115 static enum gimplify_status
2116 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2117 fallback_t fallback)
2119 tree *p;
2120 VEC(tree,heap) *stack;
2121 enum gimplify_status ret = GS_ALL_DONE, tret;
2122 int i;
2123 location_t loc = EXPR_LOCATION (*expr_p);
2124 tree expr = *expr_p;
2126 /* Create a stack of the subexpressions so later we can walk them in
2127 order from inner to outer. */
2128 stack = VEC_alloc (tree, heap, 10);
2130 /* We can handle anything that get_inner_reference can deal with. */
2131 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
2133 restart:
2134 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2135 if (TREE_CODE (*p) == INDIRECT_REF)
2136 *p = fold_indirect_ref_loc (loc, *p);
2138 if (handled_component_p (*p))
2140 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2141 additional COMPONENT_REFs. */
2142 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
2143 && gimplify_var_or_parm_decl (p) == GS_OK)
2144 goto restart;
2145 else
2146 break;
2148 VEC_safe_push (tree, heap, stack, *p);
2151 gcc_assert (VEC_length (tree, stack));
2153 /* Now STACK is a stack of pointers to all the refs we've walked through
2154 and P points to the innermost expression.
2156 Java requires that we elaborated nodes in source order. That
2157 means we must gimplify the inner expression followed by each of
2158 the indices, in order. But we can't gimplify the inner
2159 expression until we deal with any variable bounds, sizes, or
2160 positions in order to deal with PLACEHOLDER_EXPRs.
2162 So we do this in three steps. First we deal with the annotations
2163 for any variables in the components, then we gimplify the base,
2164 then we gimplify any indices, from left to right. */
2165 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
2167 tree t = VEC_index (tree, stack, i);
2169 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2171 /* Gimplify the low bound and element type size and put them into
2172 the ARRAY_REF. If these values are set, they have already been
2173 gimplified. */
2174 if (TREE_OPERAND (t, 2) == NULL_TREE)
2176 tree low = unshare_expr (array_ref_low_bound (t));
2177 if (!is_gimple_min_invariant (low))
2179 TREE_OPERAND (t, 2) = low;
2180 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2181 post_p, is_gimple_reg,
2182 fb_rvalue);
2183 ret = MIN (ret, tret);
2186 else
2188 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2189 is_gimple_reg, fb_rvalue);
2190 ret = MIN (ret, tret);
2193 if (TREE_OPERAND (t, 3) == NULL_TREE)
2195 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2196 tree elmt_size = unshare_expr (array_ref_element_size (t));
2197 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2199 /* Divide the element size by the alignment of the element
2200 type (above). */
2201 elmt_size
2202 = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2204 if (!is_gimple_min_invariant (elmt_size))
2206 TREE_OPERAND (t, 3) = elmt_size;
2207 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2208 post_p, is_gimple_reg,
2209 fb_rvalue);
2210 ret = MIN (ret, tret);
2213 else
2215 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
2216 is_gimple_reg, fb_rvalue);
2217 ret = MIN (ret, tret);
2220 else if (TREE_CODE (t) == COMPONENT_REF)
2222 /* Set the field offset into T and gimplify it. */
2223 if (TREE_OPERAND (t, 2) == NULL_TREE)
2225 tree offset = unshare_expr (component_ref_field_offset (t));
2226 tree field = TREE_OPERAND (t, 1);
2227 tree factor
2228 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2230 /* Divide the offset by its alignment. */
2231 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2233 if (!is_gimple_min_invariant (offset))
2235 TREE_OPERAND (t, 2) = offset;
2236 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2237 post_p, is_gimple_reg,
2238 fb_rvalue);
2239 ret = MIN (ret, tret);
2242 else
2244 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2245 is_gimple_reg, fb_rvalue);
2246 ret = MIN (ret, tret);
2251 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2252 so as to match the min_lval predicate. Failure to do so may result
2253 in the creation of large aggregate temporaries. */
2254 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2255 fallback | fb_lvalue);
2256 ret = MIN (ret, tret);
2258 /* And finally, the indices and operands to BIT_FIELD_REF. During this
2259 loop we also remove any useless conversions. */
2260 for (; VEC_length (tree, stack) > 0; )
2262 tree t = VEC_pop (tree, stack);
2264 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2266 /* Gimplify the dimension. */
2267 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2269 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2270 is_gimple_val, fb_rvalue);
2271 ret = MIN (ret, tret);
2274 else if (TREE_CODE (t) == BIT_FIELD_REF)
2276 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2277 is_gimple_val, fb_rvalue);
2278 ret = MIN (ret, tret);
2279 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2280 is_gimple_val, fb_rvalue);
2281 ret = MIN (ret, tret);
2284 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
2286 /* The innermost expression P may have originally had
2287 TREE_SIDE_EFFECTS set which would have caused all the outer
2288 expressions in *EXPR_P leading to P to also have had
2289 TREE_SIDE_EFFECTS set. */
2290 recalculate_side_effects (t);
2293 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2294 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
2296 canonicalize_component_ref (expr_p);
2299 VEC_free (tree, heap, stack);
2301 gcc_assert (*expr_p == expr || ret != GS_ALL_DONE);
2303 return ret;
2306 /* Gimplify the self modifying expression pointed to by EXPR_P
2307 (++, --, +=, -=).
2309 PRE_P points to the list where side effects that must happen before
2310 *EXPR_P should be stored.
2312 POST_P points to the list where side effects that must happen after
2313 *EXPR_P should be stored.
2315 WANT_VALUE is nonzero iff we want to use the value of this expression
2316 in another expression. */
2318 static enum gimplify_status
2319 gimplify_self_mod_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2320 bool want_value)
2322 enum tree_code code;
2323 tree lhs, lvalue, rhs, t1;
2324 gimple_seq post = NULL, *orig_post_p = post_p;
2325 bool postfix;
2326 enum tree_code arith_code;
2327 enum gimplify_status ret;
2328 location_t loc = EXPR_LOCATION (*expr_p);
2330 code = TREE_CODE (*expr_p);
2332 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
2333 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
2335 /* Prefix or postfix? */
2336 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
2337 /* Faster to treat as prefix if result is not used. */
2338 postfix = want_value;
2339 else
2340 postfix = false;
2342 /* For postfix, make sure the inner expression's post side effects
2343 are executed after side effects from this expression. */
2344 if (postfix)
2345 post_p = &post;
2347 /* Add or subtract? */
2348 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2349 arith_code = PLUS_EXPR;
2350 else
2351 arith_code = MINUS_EXPR;
2353 /* Gimplify the LHS into a GIMPLE lvalue. */
2354 lvalue = TREE_OPERAND (*expr_p, 0);
2355 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2356 if (ret == GS_ERROR)
2357 return ret;
2359 /* Extract the operands to the arithmetic operation. */
2360 lhs = lvalue;
2361 rhs = TREE_OPERAND (*expr_p, 1);
2363 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2364 that as the result value and in the postqueue operation. We also
2365 make sure to make lvalue a minimal lval, see
2366 gcc.c-torture/execute/20040313-1.c for an example where this matters. */
2367 if (postfix)
2369 if (!is_gimple_min_lval (lvalue))
2371 mark_addressable (lvalue);
2372 lvalue = build_fold_addr_expr_loc (input_location, lvalue);
2373 gimplify_expr (&lvalue, pre_p, post_p, is_gimple_val, fb_rvalue);
2374 lvalue = build_fold_indirect_ref_loc (input_location, lvalue);
2376 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
2377 if (ret == GS_ERROR)
2378 return ret;
2381 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2382 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
2384 rhs = convert_to_ptrofftype_loc (loc, rhs);
2385 if (arith_code == MINUS_EXPR)
2386 rhs = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (rhs), rhs);
2387 arith_code = POINTER_PLUS_EXPR;
2390 if (postfix)
2392 tree t2 = get_initialized_tmp_var (lhs, pre_p, NULL);
2393 t1 = build2 (arith_code, TREE_TYPE (*expr_p), t2, rhs);
2394 gimplify_assign (lvalue, t1, pre_p);
2395 gimplify_seq_add_seq (orig_post_p, post);
2396 *expr_p = t2;
2397 return GS_ALL_DONE;
2399 else
2401 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
2402 *expr_p = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
2403 return GS_OK;
2407 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2409 static void
2410 maybe_with_size_expr (tree *expr_p)
2412 tree expr = *expr_p;
2413 tree type = TREE_TYPE (expr);
2414 tree size;
2416 /* If we've already wrapped this or the type is error_mark_node, we can't do
2417 anything. */
2418 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2419 || type == error_mark_node)
2420 return;
2422 /* If the size isn't known or is a constant, we have nothing to do. */
2423 size = TYPE_SIZE_UNIT (type);
2424 if (!size || TREE_CODE (size) == INTEGER_CST)
2425 return;
2427 /* Otherwise, make a WITH_SIZE_EXPR. */
2428 size = unshare_expr (size);
2429 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2430 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2433 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2434 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2435 the CALL_EXPR. */
2437 static enum gimplify_status
2438 gimplify_arg (tree *arg_p, gimple_seq *pre_p, location_t call_location)
2440 bool (*test) (tree);
2441 fallback_t fb;
2443 /* In general, we allow lvalues for function arguments to avoid
2444 extra overhead of copying large aggregates out of even larger
2445 aggregates into temporaries only to copy the temporaries to
2446 the argument list. Make optimizers happy by pulling out to
2447 temporaries those types that fit in registers. */
2448 if (is_gimple_reg_type (TREE_TYPE (*arg_p)))
2449 test = is_gimple_val, fb = fb_rvalue;
2450 else
2452 test = is_gimple_lvalue, fb = fb_either;
2453 /* Also strip a TARGET_EXPR that would force an extra copy. */
2454 if (TREE_CODE (*arg_p) == TARGET_EXPR)
2456 tree init = TARGET_EXPR_INITIAL (*arg_p);
2457 if (init
2458 && !VOID_TYPE_P (TREE_TYPE (init)))
2459 *arg_p = init;
2463 /* If this is a variable sized type, we must remember the size. */
2464 maybe_with_size_expr (arg_p);
2466 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2467 /* Make sure arguments have the same location as the function call
2468 itself. */
2469 protected_set_expr_location (*arg_p, call_location);
2471 /* There is a sequence point before a function call. Side effects in
2472 the argument list must occur before the actual call. So, when
2473 gimplifying arguments, force gimplify_expr to use an internal
2474 post queue which is then appended to the end of PRE_P. */
2475 return gimplify_expr (arg_p, pre_p, NULL, test, fb);
2478 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2479 WANT_VALUE is true if the result of the call is desired. */
2481 static enum gimplify_status
2482 gimplify_call_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
2484 tree fndecl, parms, p, fnptrtype;
2485 enum gimplify_status ret;
2486 int i, nargs;
2487 gimple call;
2488 bool builtin_va_start_p = FALSE;
2489 location_t loc = EXPR_LOCATION (*expr_p);
2491 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2493 /* For reliable diagnostics during inlining, it is necessary that
2494 every call_expr be annotated with file and line. */
2495 if (! EXPR_HAS_LOCATION (*expr_p))
2496 SET_EXPR_LOCATION (*expr_p, input_location);
2498 /* This may be a call to a builtin function.
2500 Builtin function calls may be transformed into different
2501 (and more efficient) builtin function calls under certain
2502 circumstances. Unfortunately, gimplification can muck things
2503 up enough that the builtin expanders are not aware that certain
2504 transformations are still valid.
2506 So we attempt transformation/gimplification of the call before
2507 we gimplify the CALL_EXPR. At this time we do not manage to
2508 transform all calls in the same manner as the expanders do, but
2509 we do transform most of them. */
2510 fndecl = get_callee_fndecl (*expr_p);
2511 if (fndecl && DECL_BUILT_IN (fndecl))
2513 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2515 if (new_tree && new_tree != *expr_p)
2517 /* There was a transformation of this call which computes the
2518 same value, but in a more efficient way. Return and try
2519 again. */
2520 *expr_p = new_tree;
2521 return GS_OK;
2524 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
2525 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_VA_START)
2527 builtin_va_start_p = TRUE;
2528 if (call_expr_nargs (*expr_p) < 2)
2530 error ("too few arguments to function %<va_start%>");
2531 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2532 return GS_OK;
2535 if (fold_builtin_next_arg (*expr_p, true))
2537 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2538 return GS_OK;
2543 /* Remember the original function pointer type. */
2544 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2546 /* There is a sequence point before the call, so any side effects in
2547 the calling expression must occur before the actual call. Force
2548 gimplify_expr to use an internal post queue. */
2549 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2550 is_gimple_call_addr, fb_rvalue);
2552 nargs = call_expr_nargs (*expr_p);
2554 /* Get argument types for verification. */
2555 fndecl = get_callee_fndecl (*expr_p);
2556 parms = NULL_TREE;
2557 if (fndecl)
2558 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2559 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2560 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2562 if (fndecl && DECL_ARGUMENTS (fndecl))
2563 p = DECL_ARGUMENTS (fndecl);
2564 else if (parms)
2565 p = parms;
2566 else
2567 p = NULL_TREE;
2568 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2571 /* If the last argument is __builtin_va_arg_pack () and it is not
2572 passed as a named argument, decrease the number of CALL_EXPR
2573 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2574 if (!p
2575 && i < nargs
2576 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2578 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2579 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2581 if (last_arg_fndecl
2582 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2583 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2584 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2586 tree call = *expr_p;
2588 --nargs;
2589 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2590 CALL_EXPR_FN (call),
2591 nargs, CALL_EXPR_ARGP (call));
2593 /* Copy all CALL_EXPR flags, location and block, except
2594 CALL_EXPR_VA_ARG_PACK flag. */
2595 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2596 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2597 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2598 = CALL_EXPR_RETURN_SLOT_OPT (call);
2599 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2600 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2601 TREE_BLOCK (*expr_p) = TREE_BLOCK (call);
2603 /* Set CALL_EXPR_VA_ARG_PACK. */
2604 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2608 /* Finally, gimplify the function arguments. */
2609 if (nargs > 0)
2611 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2612 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2613 PUSH_ARGS_REVERSED ? i-- : i++)
2615 enum gimplify_status t;
2617 /* Avoid gimplifying the second argument to va_start, which needs to
2618 be the plain PARM_DECL. */
2619 if ((i != 1) || !builtin_va_start_p)
2621 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2622 EXPR_LOCATION (*expr_p));
2624 if (t == GS_ERROR)
2625 ret = GS_ERROR;
2630 /* Verify the function result. */
2631 if (want_value && fndecl
2632 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2634 error_at (loc, "using result of function returning %<void%>");
2635 ret = GS_ERROR;
2638 /* Try this again in case gimplification exposed something. */
2639 if (ret != GS_ERROR)
2641 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2643 if (new_tree && new_tree != *expr_p)
2645 /* There was a transformation of this call which computes the
2646 same value, but in a more efficient way. Return and try
2647 again. */
2648 *expr_p = new_tree;
2649 return GS_OK;
2652 else
2654 *expr_p = error_mark_node;
2655 return GS_ERROR;
2658 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2659 decl. This allows us to eliminate redundant or useless
2660 calls to "const" functions. */
2661 if (TREE_CODE (*expr_p) == CALL_EXPR)
2663 int flags = call_expr_flags (*expr_p);
2664 if (flags & (ECF_CONST | ECF_PURE)
2665 /* An infinite loop is considered a side effect. */
2666 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2667 TREE_SIDE_EFFECTS (*expr_p) = 0;
2670 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2671 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2672 form and delegate the creation of a GIMPLE_CALL to
2673 gimplify_modify_expr. This is always possible because when
2674 WANT_VALUE is true, the caller wants the result of this call into
2675 a temporary, which means that we will emit an INIT_EXPR in
2676 internal_get_tmp_var which will then be handled by
2677 gimplify_modify_expr. */
2678 if (!want_value)
2680 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2681 have to do is replicate it as a GIMPLE_CALL tuple. */
2682 gimple_stmt_iterator gsi;
2683 call = gimple_build_call_from_tree (*expr_p);
2684 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2685 gimplify_seq_add_stmt (pre_p, call);
2686 gsi = gsi_last (*pre_p);
2687 fold_stmt (&gsi);
2688 *expr_p = NULL_TREE;
2690 else
2691 /* Remember the original function type. */
2692 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2693 CALL_EXPR_FN (*expr_p));
2695 return ret;
2698 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2699 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2701 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2702 condition is true or false, respectively. If null, we should generate
2703 our own to skip over the evaluation of this specific expression.
2705 LOCUS is the source location of the COND_EXPR.
2707 This function is the tree equivalent of do_jump.
2709 shortcut_cond_r should only be called by shortcut_cond_expr. */
2711 static tree
2712 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2713 location_t locus)
2715 tree local_label = NULL_TREE;
2716 tree t, expr = NULL;
2718 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2719 retain the shortcut semantics. Just insert the gotos here;
2720 shortcut_cond_expr will append the real blocks later. */
2721 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2723 location_t new_locus;
2725 /* Turn if (a && b) into
2727 if (a); else goto no;
2728 if (b) goto yes; else goto no;
2729 (no:) */
2731 if (false_label_p == NULL)
2732 false_label_p = &local_label;
2734 /* Keep the original source location on the first 'if'. */
2735 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, locus);
2736 append_to_statement_list (t, &expr);
2738 /* Set the source location of the && on the second 'if'. */
2739 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2740 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2741 new_locus);
2742 append_to_statement_list (t, &expr);
2744 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2746 location_t new_locus;
2748 /* Turn if (a || b) into
2750 if (a) goto yes;
2751 if (b) goto yes; else goto no;
2752 (yes:) */
2754 if (true_label_p == NULL)
2755 true_label_p = &local_label;
2757 /* Keep the original source location on the first 'if'. */
2758 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2759 append_to_statement_list (t, &expr);
2761 /* Set the source location of the || on the second 'if'. */
2762 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2763 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2764 new_locus);
2765 append_to_statement_list (t, &expr);
2767 else if (TREE_CODE (pred) == COND_EXPR
2768 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 1)))
2769 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 2))))
2771 location_t new_locus;
2773 /* As long as we're messing with gotos, turn if (a ? b : c) into
2774 if (a)
2775 if (b) goto yes; else goto no;
2776 else
2777 if (c) goto yes; else goto no;
2779 Don't do this if one of the arms has void type, which can happen
2780 in C++ when the arm is throw. */
2782 /* Keep the original source location on the first 'if'. Set the source
2783 location of the ? on the second 'if'. */
2784 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2785 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2786 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2787 false_label_p, locus),
2788 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2789 false_label_p, new_locus));
2791 else
2793 expr = build3 (COND_EXPR, void_type_node, pred,
2794 build_and_jump (true_label_p),
2795 build_and_jump (false_label_p));
2796 SET_EXPR_LOCATION (expr, locus);
2799 if (local_label)
2801 t = build1 (LABEL_EXPR, void_type_node, local_label);
2802 append_to_statement_list (t, &expr);
2805 return expr;
2808 /* Given a conditional expression EXPR with short-circuit boolean
2809 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2810 predicate appart into the equivalent sequence of conditionals. */
2812 static tree
2813 shortcut_cond_expr (tree expr)
2815 tree pred = TREE_OPERAND (expr, 0);
2816 tree then_ = TREE_OPERAND (expr, 1);
2817 tree else_ = TREE_OPERAND (expr, 2);
2818 tree true_label, false_label, end_label, t;
2819 tree *true_label_p;
2820 tree *false_label_p;
2821 bool emit_end, emit_false, jump_over_else;
2822 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2823 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2825 /* First do simple transformations. */
2826 if (!else_se)
2828 /* If there is no 'else', turn
2829 if (a && b) then c
2830 into
2831 if (a) if (b) then c. */
2832 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2834 /* Keep the original source location on the first 'if'. */
2835 location_t locus = EXPR_LOC_OR_HERE (expr);
2836 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2837 /* Set the source location of the && on the second 'if'. */
2838 if (EXPR_HAS_LOCATION (pred))
2839 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2840 then_ = shortcut_cond_expr (expr);
2841 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2842 pred = TREE_OPERAND (pred, 0);
2843 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2844 SET_EXPR_LOCATION (expr, locus);
2848 if (!then_se)
2850 /* If there is no 'then', turn
2851 if (a || b); else d
2852 into
2853 if (a); else if (b); else d. */
2854 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2856 /* Keep the original source location on the first 'if'. */
2857 location_t locus = EXPR_LOC_OR_HERE (expr);
2858 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2859 /* Set the source location of the || on the second 'if'. */
2860 if (EXPR_HAS_LOCATION (pred))
2861 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2862 else_ = shortcut_cond_expr (expr);
2863 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2864 pred = TREE_OPERAND (pred, 0);
2865 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2866 SET_EXPR_LOCATION (expr, locus);
2870 /* If we're done, great. */
2871 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2872 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2873 return expr;
2875 /* Otherwise we need to mess with gotos. Change
2876 if (a) c; else d;
2878 if (a); else goto no;
2879 c; goto end;
2880 no: d; end:
2881 and recursively gimplify the condition. */
2883 true_label = false_label = end_label = NULL_TREE;
2885 /* If our arms just jump somewhere, hijack those labels so we don't
2886 generate jumps to jumps. */
2888 if (then_
2889 && TREE_CODE (then_) == GOTO_EXPR
2890 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2892 true_label = GOTO_DESTINATION (then_);
2893 then_ = NULL;
2894 then_se = false;
2897 if (else_
2898 && TREE_CODE (else_) == GOTO_EXPR
2899 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2901 false_label = GOTO_DESTINATION (else_);
2902 else_ = NULL;
2903 else_se = false;
2906 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2907 if (true_label)
2908 true_label_p = &true_label;
2909 else
2910 true_label_p = NULL;
2912 /* The 'else' branch also needs a label if it contains interesting code. */
2913 if (false_label || else_se)
2914 false_label_p = &false_label;
2915 else
2916 false_label_p = NULL;
2918 /* If there was nothing else in our arms, just forward the label(s). */
2919 if (!then_se && !else_se)
2920 return shortcut_cond_r (pred, true_label_p, false_label_p,
2921 EXPR_LOC_OR_HERE (expr));
2923 /* If our last subexpression already has a terminal label, reuse it. */
2924 if (else_se)
2925 t = expr_last (else_);
2926 else if (then_se)
2927 t = expr_last (then_);
2928 else
2929 t = NULL;
2930 if (t && TREE_CODE (t) == LABEL_EXPR)
2931 end_label = LABEL_EXPR_LABEL (t);
2933 /* If we don't care about jumping to the 'else' branch, jump to the end
2934 if the condition is false. */
2935 if (!false_label_p)
2936 false_label_p = &end_label;
2938 /* We only want to emit these labels if we aren't hijacking them. */
2939 emit_end = (end_label == NULL_TREE);
2940 emit_false = (false_label == NULL_TREE);
2942 /* We only emit the jump over the else clause if we have to--if the
2943 then clause may fall through. Otherwise we can wind up with a
2944 useless jump and a useless label at the end of gimplified code,
2945 which will cause us to think that this conditional as a whole
2946 falls through even if it doesn't. If we then inline a function
2947 which ends with such a condition, that can cause us to issue an
2948 inappropriate warning about control reaching the end of a
2949 non-void function. */
2950 jump_over_else = block_may_fallthru (then_);
2952 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2953 EXPR_LOC_OR_HERE (expr));
2955 expr = NULL;
2956 append_to_statement_list (pred, &expr);
2958 append_to_statement_list (then_, &expr);
2959 if (else_se)
2961 if (jump_over_else)
2963 tree last = expr_last (expr);
2964 t = build_and_jump (&end_label);
2965 if (EXPR_HAS_LOCATION (last))
2966 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2967 append_to_statement_list (t, &expr);
2969 if (emit_false)
2971 t = build1 (LABEL_EXPR, void_type_node, false_label);
2972 append_to_statement_list (t, &expr);
2974 append_to_statement_list (else_, &expr);
2976 if (emit_end && end_label)
2978 t = build1 (LABEL_EXPR, void_type_node, end_label);
2979 append_to_statement_list (t, &expr);
2982 return expr;
2985 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2987 tree
2988 gimple_boolify (tree expr)
2990 tree type = TREE_TYPE (expr);
2991 location_t loc = EXPR_LOCATION (expr);
2993 if (TREE_CODE (expr) == NE_EXPR
2994 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
2995 && integer_zerop (TREE_OPERAND (expr, 1)))
2997 tree call = TREE_OPERAND (expr, 0);
2998 tree fn = get_callee_fndecl (call);
3000 /* For __builtin_expect ((long) (x), y) recurse into x as well
3001 if x is truth_value_p. */
3002 if (fn
3003 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
3004 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
3005 && call_expr_nargs (call) == 2)
3007 tree arg = CALL_EXPR_ARG (call, 0);
3008 if (arg)
3010 if (TREE_CODE (arg) == NOP_EXPR
3011 && TREE_TYPE (arg) == TREE_TYPE (call))
3012 arg = TREE_OPERAND (arg, 0);
3013 if (truth_value_p (TREE_CODE (arg)))
3015 arg = gimple_boolify (arg);
3016 CALL_EXPR_ARG (call, 0)
3017 = fold_convert_loc (loc, TREE_TYPE (call), arg);
3023 switch (TREE_CODE (expr))
3025 case TRUTH_AND_EXPR:
3026 case TRUTH_OR_EXPR:
3027 case TRUTH_XOR_EXPR:
3028 case TRUTH_ANDIF_EXPR:
3029 case TRUTH_ORIF_EXPR:
3030 /* Also boolify the arguments of truth exprs. */
3031 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
3032 /* FALLTHRU */
3034 case TRUTH_NOT_EXPR:
3035 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3037 /* These expressions always produce boolean results. */
3038 if (TREE_CODE (type) != BOOLEAN_TYPE)
3039 TREE_TYPE (expr) = boolean_type_node;
3040 return expr;
3042 default:
3043 if (COMPARISON_CLASS_P (expr))
3045 /* There expressions always prduce boolean results. */
3046 if (TREE_CODE (type) != BOOLEAN_TYPE)
3047 TREE_TYPE (expr) = boolean_type_node;
3048 return expr;
3050 /* Other expressions that get here must have boolean values, but
3051 might need to be converted to the appropriate mode. */
3052 if (TREE_CODE (type) == BOOLEAN_TYPE)
3053 return expr;
3054 return fold_convert_loc (loc, boolean_type_node, expr);
3058 /* Given a conditional expression *EXPR_P without side effects, gimplify
3059 its operands. New statements are inserted to PRE_P. */
3061 static enum gimplify_status
3062 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
3064 tree expr = *expr_p, cond;
3065 enum gimplify_status ret, tret;
3066 enum tree_code code;
3068 cond = gimple_boolify (COND_EXPR_COND (expr));
3070 /* We need to handle && and || specially, as their gimplification
3071 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
3072 code = TREE_CODE (cond);
3073 if (code == TRUTH_ANDIF_EXPR)
3074 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
3075 else if (code == TRUTH_ORIF_EXPR)
3076 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
3077 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
3078 COND_EXPR_COND (*expr_p) = cond;
3080 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
3081 is_gimple_val, fb_rvalue);
3082 ret = MIN (ret, tret);
3083 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
3084 is_gimple_val, fb_rvalue);
3086 return MIN (ret, tret);
3089 /* Return true if evaluating EXPR could trap.
3090 EXPR is GENERIC, while tree_could_trap_p can be called
3091 only on GIMPLE. */
3093 static bool
3094 generic_expr_could_trap_p (tree expr)
3096 unsigned i, n;
3098 if (!expr || is_gimple_val (expr))
3099 return false;
3101 if (!EXPR_P (expr) || tree_could_trap_p (expr))
3102 return true;
3104 n = TREE_OPERAND_LENGTH (expr);
3105 for (i = 0; i < n; i++)
3106 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
3107 return true;
3109 return false;
3112 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
3113 into
3115 if (p) if (p)
3116 t1 = a; a;
3117 else or else
3118 t1 = b; b;
3121 The second form is used when *EXPR_P is of type void.
3123 PRE_P points to the list where side effects that must happen before
3124 *EXPR_P should be stored. */
3126 static enum gimplify_status
3127 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
3129 tree expr = *expr_p;
3130 tree type = TREE_TYPE (expr);
3131 location_t loc = EXPR_LOCATION (expr);
3132 tree tmp, arm1, arm2;
3133 enum gimplify_status ret;
3134 tree label_true, label_false, label_cont;
3135 bool have_then_clause_p, have_else_clause_p;
3136 gimple gimple_cond;
3137 enum tree_code pred_code;
3138 gimple_seq seq = NULL;
3140 /* If this COND_EXPR has a value, copy the values into a temporary within
3141 the arms. */
3142 if (!VOID_TYPE_P (type))
3144 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
3145 tree result;
3147 /* If either an rvalue is ok or we do not require an lvalue, create the
3148 temporary. But we cannot do that if the type is addressable. */
3149 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
3150 && !TREE_ADDRESSABLE (type))
3152 if (gimplify_ctxp->allow_rhs_cond_expr
3153 /* If either branch has side effects or could trap, it can't be
3154 evaluated unconditionally. */
3155 && !TREE_SIDE_EFFECTS (then_)
3156 && !generic_expr_could_trap_p (then_)
3157 && !TREE_SIDE_EFFECTS (else_)
3158 && !generic_expr_could_trap_p (else_))
3159 return gimplify_pure_cond_expr (expr_p, pre_p);
3161 tmp = create_tmp_var (type, "iftmp");
3162 result = tmp;
3165 /* Otherwise, only create and copy references to the values. */
3166 else
3168 type = build_pointer_type (type);
3170 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3171 then_ = build_fold_addr_expr_loc (loc, then_);
3173 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3174 else_ = build_fold_addr_expr_loc (loc, else_);
3176 expr
3177 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
3179 tmp = create_tmp_var (type, "iftmp");
3180 result = build_simple_mem_ref_loc (loc, tmp);
3183 /* Build the new then clause, `tmp = then_;'. But don't build the
3184 assignment if the value is void; in C++ it can be if it's a throw. */
3185 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3186 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
3188 /* Similarly, build the new else clause, `tmp = else_;'. */
3189 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3190 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
3192 TREE_TYPE (expr) = void_type_node;
3193 recalculate_side_effects (expr);
3195 /* Move the COND_EXPR to the prequeue. */
3196 gimplify_stmt (&expr, pre_p);
3198 *expr_p = result;
3199 return GS_ALL_DONE;
3202 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3203 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3204 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3205 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3207 /* Make sure the condition has BOOLEAN_TYPE. */
3208 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3210 /* Break apart && and || conditions. */
3211 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3212 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3214 expr = shortcut_cond_expr (expr);
3216 if (expr != *expr_p)
3218 *expr_p = expr;
3220 /* We can't rely on gimplify_expr to re-gimplify the expanded
3221 form properly, as cleanups might cause the target labels to be
3222 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3223 set up a conditional context. */
3224 gimple_push_condition ();
3225 gimplify_stmt (expr_p, &seq);
3226 gimple_pop_condition (pre_p);
3227 gimple_seq_add_seq (pre_p, seq);
3229 return GS_ALL_DONE;
3233 /* Now do the normal gimplification. */
3235 /* Gimplify condition. */
3236 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3237 fb_rvalue);
3238 if (ret == GS_ERROR)
3239 return GS_ERROR;
3240 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3242 gimple_push_condition ();
3244 have_then_clause_p = have_else_clause_p = false;
3245 if (TREE_OPERAND (expr, 1) != NULL
3246 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3247 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3248 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3249 == current_function_decl)
3250 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3251 have different locations, otherwise we end up with incorrect
3252 location information on the branches. */
3253 && (optimize
3254 || !EXPR_HAS_LOCATION (expr)
3255 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3256 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3258 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3259 have_then_clause_p = true;
3261 else
3262 label_true = create_artificial_label (UNKNOWN_LOCATION);
3263 if (TREE_OPERAND (expr, 2) != NULL
3264 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3265 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3266 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3267 == current_function_decl)
3268 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3269 have different locations, otherwise we end up with incorrect
3270 location information on the branches. */
3271 && (optimize
3272 || !EXPR_HAS_LOCATION (expr)
3273 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3274 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3276 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3277 have_else_clause_p = true;
3279 else
3280 label_false = create_artificial_label (UNKNOWN_LOCATION);
3282 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3283 &arm2);
3285 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3286 label_false);
3288 gimplify_seq_add_stmt (&seq, gimple_cond);
3289 label_cont = NULL_TREE;
3290 if (!have_then_clause_p)
3292 /* For if (...) {} else { code; } put label_true after
3293 the else block. */
3294 if (TREE_OPERAND (expr, 1) == NULL_TREE
3295 && !have_else_clause_p
3296 && TREE_OPERAND (expr, 2) != NULL_TREE)
3297 label_cont = label_true;
3298 else
3300 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3301 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3302 /* For if (...) { code; } else {} or
3303 if (...) { code; } else goto label; or
3304 if (...) { code; return; } else { ... }
3305 label_cont isn't needed. */
3306 if (!have_else_clause_p
3307 && TREE_OPERAND (expr, 2) != NULL_TREE
3308 && gimple_seq_may_fallthru (seq))
3310 gimple g;
3311 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3313 g = gimple_build_goto (label_cont);
3315 /* GIMPLE_COND's are very low level; they have embedded
3316 gotos. This particular embedded goto should not be marked
3317 with the location of the original COND_EXPR, as it would
3318 correspond to the COND_EXPR's condition, not the ELSE or the
3319 THEN arms. To avoid marking it with the wrong location, flag
3320 it as "no location". */
3321 gimple_set_do_not_emit_location (g);
3323 gimplify_seq_add_stmt (&seq, g);
3327 if (!have_else_clause_p)
3329 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3330 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3332 if (label_cont)
3333 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3335 gimple_pop_condition (pre_p);
3336 gimple_seq_add_seq (pre_p, seq);
3338 if (ret == GS_ERROR)
3339 ; /* Do nothing. */
3340 else if (have_then_clause_p || have_else_clause_p)
3341 ret = GS_ALL_DONE;
3342 else
3344 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3345 expr = TREE_OPERAND (expr, 0);
3346 gimplify_stmt (&expr, pre_p);
3349 *expr_p = NULL;
3350 return ret;
3353 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3354 to be marked addressable.
3356 We cannot rely on such an expression being directly markable if a temporary
3357 has been created by the gimplification. In this case, we create another
3358 temporary and initialize it with a copy, which will become a store after we
3359 mark it addressable. This can happen if the front-end passed us something
3360 that it could not mark addressable yet, like a Fortran pass-by-reference
3361 parameter (int) floatvar. */
3363 static void
3364 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3366 while (handled_component_p (*expr_p))
3367 expr_p = &TREE_OPERAND (*expr_p, 0);
3368 if (is_gimple_reg (*expr_p))
3369 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3372 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3373 a call to __builtin_memcpy. */
3375 static enum gimplify_status
3376 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3377 gimple_seq *seq_p)
3379 tree t, to, to_ptr, from, from_ptr;
3380 gimple gs;
3381 location_t loc = EXPR_LOCATION (*expr_p);
3383 to = TREE_OPERAND (*expr_p, 0);
3384 from = TREE_OPERAND (*expr_p, 1);
3386 /* Mark the RHS addressable. Beware that it may not be possible to do so
3387 directly if a temporary has been created by the gimplification. */
3388 prepare_gimple_addressable (&from, seq_p);
3390 mark_addressable (from);
3391 from_ptr = build_fold_addr_expr_loc (loc, from);
3392 gimplify_arg (&from_ptr, seq_p, loc);
3394 mark_addressable (to);
3395 to_ptr = build_fold_addr_expr_loc (loc, to);
3396 gimplify_arg (&to_ptr, seq_p, loc);
3398 t = builtin_decl_implicit (BUILT_IN_MEMCPY);
3400 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3402 if (want_value)
3404 /* tmp = memcpy() */
3405 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3406 gimple_call_set_lhs (gs, t);
3407 gimplify_seq_add_stmt (seq_p, gs);
3409 *expr_p = build_simple_mem_ref (t);
3410 return GS_ALL_DONE;
3413 gimplify_seq_add_stmt (seq_p, gs);
3414 *expr_p = NULL;
3415 return GS_ALL_DONE;
3418 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3419 a call to __builtin_memset. In this case we know that the RHS is
3420 a CONSTRUCTOR with an empty element list. */
3422 static enum gimplify_status
3423 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3424 gimple_seq *seq_p)
3426 tree t, from, to, to_ptr;
3427 gimple gs;
3428 location_t loc = EXPR_LOCATION (*expr_p);
3430 /* Assert our assumptions, to abort instead of producing wrong code
3431 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3432 not be immediately exposed. */
3433 from = TREE_OPERAND (*expr_p, 1);
3434 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3435 from = TREE_OPERAND (from, 0);
3437 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3438 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (from)));
3440 /* Now proceed. */
3441 to = TREE_OPERAND (*expr_p, 0);
3443 to_ptr = build_fold_addr_expr_loc (loc, to);
3444 gimplify_arg (&to_ptr, seq_p, loc);
3445 t = builtin_decl_implicit (BUILT_IN_MEMSET);
3447 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3449 if (want_value)
3451 /* tmp = memset() */
3452 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3453 gimple_call_set_lhs (gs, t);
3454 gimplify_seq_add_stmt (seq_p, gs);
3456 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3457 return GS_ALL_DONE;
3460 gimplify_seq_add_stmt (seq_p, gs);
3461 *expr_p = NULL;
3462 return GS_ALL_DONE;
3465 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3466 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3467 assignment. Return non-null if we detect a potential overlap. */
3469 struct gimplify_init_ctor_preeval_data
3471 /* The base decl of the lhs object. May be NULL, in which case we
3472 have to assume the lhs is indirect. */
3473 tree lhs_base_decl;
3475 /* The alias set of the lhs object. */
3476 alias_set_type lhs_alias_set;
3479 static tree
3480 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3482 struct gimplify_init_ctor_preeval_data *data
3483 = (struct gimplify_init_ctor_preeval_data *) xdata;
3484 tree t = *tp;
3486 /* If we find the base object, obviously we have overlap. */
3487 if (data->lhs_base_decl == t)
3488 return t;
3490 /* If the constructor component is indirect, determine if we have a
3491 potential overlap with the lhs. The only bits of information we
3492 have to go on at this point are addressability and alias sets. */
3493 if ((INDIRECT_REF_P (t)
3494 || TREE_CODE (t) == MEM_REF)
3495 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3496 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3497 return t;
3499 /* If the constructor component is a call, determine if it can hide a
3500 potential overlap with the lhs through an INDIRECT_REF like above.
3501 ??? Ugh - this is completely broken. In fact this whole analysis
3502 doesn't look conservative. */
3503 if (TREE_CODE (t) == CALL_EXPR)
3505 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3507 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3508 if (POINTER_TYPE_P (TREE_VALUE (type))
3509 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3510 && alias_sets_conflict_p (data->lhs_alias_set,
3511 get_alias_set
3512 (TREE_TYPE (TREE_VALUE (type)))))
3513 return t;
3516 if (IS_TYPE_OR_DECL_P (t))
3517 *walk_subtrees = 0;
3518 return NULL;
3521 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3522 force values that overlap with the lhs (as described by *DATA)
3523 into temporaries. */
3525 static void
3526 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3527 struct gimplify_init_ctor_preeval_data *data)
3529 enum gimplify_status one;
3531 /* If the value is constant, then there's nothing to pre-evaluate. */
3532 if (TREE_CONSTANT (*expr_p))
3534 /* Ensure it does not have side effects, it might contain a reference to
3535 the object we're initializing. */
3536 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3537 return;
3540 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3541 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3542 return;
3544 /* Recurse for nested constructors. */
3545 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3547 unsigned HOST_WIDE_INT ix;
3548 constructor_elt *ce;
3549 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
3551 FOR_EACH_VEC_ELT (constructor_elt, v, ix, ce)
3552 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3554 return;
3557 /* If this is a variable sized type, we must remember the size. */
3558 maybe_with_size_expr (expr_p);
3560 /* Gimplify the constructor element to something appropriate for the rhs
3561 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3562 the gimplifier will consider this a store to memory. Doing this
3563 gimplification now means that we won't have to deal with complicated
3564 language-specific trees, nor trees like SAVE_EXPR that can induce
3565 exponential search behavior. */
3566 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3567 if (one == GS_ERROR)
3569 *expr_p = NULL;
3570 return;
3573 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3574 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3575 always be true for all scalars, since is_gimple_mem_rhs insists on a
3576 temporary variable for them. */
3577 if (DECL_P (*expr_p))
3578 return;
3580 /* If this is of variable size, we have no choice but to assume it doesn't
3581 overlap since we can't make a temporary for it. */
3582 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3583 return;
3585 /* Otherwise, we must search for overlap ... */
3586 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3587 return;
3589 /* ... and if found, force the value into a temporary. */
3590 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3593 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3594 a RANGE_EXPR in a CONSTRUCTOR for an array.
3596 var = lower;
3597 loop_entry:
3598 object[var] = value;
3599 if (var == upper)
3600 goto loop_exit;
3601 var = var + 1;
3602 goto loop_entry;
3603 loop_exit:
3605 We increment var _after_ the loop exit check because we might otherwise
3606 fail if upper == TYPE_MAX_VALUE (type for upper).
3608 Note that we never have to deal with SAVE_EXPRs here, because this has
3609 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3611 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
3612 gimple_seq *, bool);
3614 static void
3615 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3616 tree value, tree array_elt_type,
3617 gimple_seq *pre_p, bool cleared)
3619 tree loop_entry_label, loop_exit_label, fall_thru_label;
3620 tree var, var_type, cref, tmp;
3622 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3623 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3624 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3626 /* Create and initialize the index variable. */
3627 var_type = TREE_TYPE (upper);
3628 var = create_tmp_var (var_type, NULL);
3629 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3631 /* Add the loop entry label. */
3632 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3634 /* Build the reference. */
3635 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3636 var, NULL_TREE, NULL_TREE);
3638 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3639 the store. Otherwise just assign value to the reference. */
3641 if (TREE_CODE (value) == CONSTRUCTOR)
3642 /* NB we might have to call ourself recursively through
3643 gimplify_init_ctor_eval if the value is a constructor. */
3644 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3645 pre_p, cleared);
3646 else
3647 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3649 /* We exit the loop when the index var is equal to the upper bound. */
3650 gimplify_seq_add_stmt (pre_p,
3651 gimple_build_cond (EQ_EXPR, var, upper,
3652 loop_exit_label, fall_thru_label));
3654 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3656 /* Otherwise, increment the index var... */
3657 tmp = build2 (PLUS_EXPR, var_type, var,
3658 fold_convert (var_type, integer_one_node));
3659 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3661 /* ...and jump back to the loop entry. */
3662 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3664 /* Add the loop exit label. */
3665 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3668 /* Return true if FDECL is accessing a field that is zero sized. */
3670 static bool
3671 zero_sized_field_decl (const_tree fdecl)
3673 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3674 && integer_zerop (DECL_SIZE (fdecl)))
3675 return true;
3676 return false;
3679 /* Return true if TYPE is zero sized. */
3681 static bool
3682 zero_sized_type (const_tree type)
3684 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3685 && integer_zerop (TYPE_SIZE (type)))
3686 return true;
3687 return false;
3690 /* A subroutine of gimplify_init_constructor. Generate individual
3691 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3692 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3693 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3694 zeroed first. */
3696 static void
3697 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
3698 gimple_seq *pre_p, bool cleared)
3700 tree array_elt_type = NULL;
3701 unsigned HOST_WIDE_INT ix;
3702 tree purpose, value;
3704 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3705 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3707 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3709 tree cref;
3711 /* NULL values are created above for gimplification errors. */
3712 if (value == NULL)
3713 continue;
3715 if (cleared && initializer_zerop (value))
3716 continue;
3718 /* ??? Here's to hoping the front end fills in all of the indices,
3719 so we don't have to figure out what's missing ourselves. */
3720 gcc_assert (purpose);
3722 /* Skip zero-sized fields, unless value has side-effects. This can
3723 happen with calls to functions returning a zero-sized type, which
3724 we shouldn't discard. As a number of downstream passes don't
3725 expect sets of zero-sized fields, we rely on the gimplification of
3726 the MODIFY_EXPR we make below to drop the assignment statement. */
3727 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3728 continue;
3730 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3731 whole range. */
3732 if (TREE_CODE (purpose) == RANGE_EXPR)
3734 tree lower = TREE_OPERAND (purpose, 0);
3735 tree upper = TREE_OPERAND (purpose, 1);
3737 /* If the lower bound is equal to upper, just treat it as if
3738 upper was the index. */
3739 if (simple_cst_equal (lower, upper))
3740 purpose = upper;
3741 else
3743 gimplify_init_ctor_eval_range (object, lower, upper, value,
3744 array_elt_type, pre_p, cleared);
3745 continue;
3749 if (array_elt_type)
3751 /* Do not use bitsizetype for ARRAY_REF indices. */
3752 if (TYPE_DOMAIN (TREE_TYPE (object)))
3753 purpose
3754 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3755 purpose);
3756 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3757 purpose, NULL_TREE, NULL_TREE);
3759 else
3761 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3762 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3763 unshare_expr (object), purpose, NULL_TREE);
3766 if (TREE_CODE (value) == CONSTRUCTOR
3767 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3768 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3769 pre_p, cleared);
3770 else
3772 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3773 gimplify_and_add (init, pre_p);
3774 ggc_free (init);
3779 /* Return the appropriate RHS predicate for this LHS. */
3781 gimple_predicate
3782 rhs_predicate_for (tree lhs)
3784 if (is_gimple_reg (lhs))
3785 return is_gimple_reg_rhs_or_call;
3786 else
3787 return is_gimple_mem_rhs_or_call;
3790 /* Gimplify a C99 compound literal expression. This just means adding
3791 the DECL_EXPR before the current statement and using its anonymous
3792 decl instead. */
3794 static enum gimplify_status
3795 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p,
3796 fallback_t fallback)
3798 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3799 tree decl = DECL_EXPR_DECL (decl_s);
3800 /* Mark the decl as addressable if the compound literal
3801 expression is addressable now, otherwise it is marked too late
3802 after we gimplify the initialization expression. */
3803 if (TREE_ADDRESSABLE (*expr_p))
3804 TREE_ADDRESSABLE (decl) = 1;
3806 /* Preliminarily mark non-addressed complex variables as eligible
3807 for promotion to gimple registers. We'll transform their uses
3808 as we find them. */
3809 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3810 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3811 && !TREE_THIS_VOLATILE (decl)
3812 && !needs_to_live_in_memory (decl))
3813 DECL_GIMPLE_REG_P (decl) = 1;
3815 /* If the decl is not addressable, then it is being used in some
3816 expression or on the right hand side of a statement, and it can
3817 be put into a readonly data section. */
3818 if (!TREE_ADDRESSABLE (decl) && (fallback & fb_lvalue) == 0)
3819 TREE_READONLY (decl) = 1;
3821 /* This decl isn't mentioned in the enclosing block, so add it to the
3822 list of temps. FIXME it seems a bit of a kludge to say that
3823 anonymous artificial vars aren't pushed, but everything else is. */
3824 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3825 gimple_add_tmp_var (decl);
3827 gimplify_and_add (decl_s, pre_p);
3828 *expr_p = decl;
3829 return GS_OK;
3832 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3833 return a new CONSTRUCTOR if something changed. */
3835 static tree
3836 optimize_compound_literals_in_ctor (tree orig_ctor)
3838 tree ctor = orig_ctor;
3839 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (ctor);
3840 unsigned int idx, num = VEC_length (constructor_elt, elts);
3842 for (idx = 0; idx < num; idx++)
3844 tree value = VEC_index (constructor_elt, elts, idx)->value;
3845 tree newval = value;
3846 if (TREE_CODE (value) == CONSTRUCTOR)
3847 newval = optimize_compound_literals_in_ctor (value);
3848 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3850 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3851 tree decl = DECL_EXPR_DECL (decl_s);
3852 tree init = DECL_INITIAL (decl);
3854 if (!TREE_ADDRESSABLE (value)
3855 && !TREE_ADDRESSABLE (decl)
3856 && init)
3857 newval = optimize_compound_literals_in_ctor (init);
3859 if (newval == value)
3860 continue;
3862 if (ctor == orig_ctor)
3864 ctor = copy_node (orig_ctor);
3865 CONSTRUCTOR_ELTS (ctor) = VEC_copy (constructor_elt, gc, elts);
3866 elts = CONSTRUCTOR_ELTS (ctor);
3868 VEC_index (constructor_elt, elts, idx)->value = newval;
3870 return ctor;
3873 /* A subroutine of gimplify_modify_expr. Break out elements of a
3874 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3876 Note that we still need to clear any elements that don't have explicit
3877 initializers, so if not all elements are initialized we keep the
3878 original MODIFY_EXPR, we just remove all of the constructor elements.
3880 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3881 GS_ERROR if we would have to create a temporary when gimplifying
3882 this constructor. Otherwise, return GS_OK.
3884 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3886 static enum gimplify_status
3887 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3888 bool want_value, bool notify_temp_creation)
3890 tree object, ctor, type;
3891 enum gimplify_status ret;
3892 VEC(constructor_elt,gc) *elts;
3894 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3896 if (!notify_temp_creation)
3898 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3899 is_gimple_lvalue, fb_lvalue);
3900 if (ret == GS_ERROR)
3901 return ret;
3904 object = TREE_OPERAND (*expr_p, 0);
3905 ctor = TREE_OPERAND (*expr_p, 1) =
3906 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3907 type = TREE_TYPE (ctor);
3908 elts = CONSTRUCTOR_ELTS (ctor);
3909 ret = GS_ALL_DONE;
3911 switch (TREE_CODE (type))
3913 case RECORD_TYPE:
3914 case UNION_TYPE:
3915 case QUAL_UNION_TYPE:
3916 case ARRAY_TYPE:
3918 struct gimplify_init_ctor_preeval_data preeval_data;
3919 HOST_WIDE_INT num_ctor_elements, num_nonzero_elements;
3920 bool cleared, complete_p, valid_const_initializer;
3922 /* Aggregate types must lower constructors to initialization of
3923 individual elements. The exception is that a CONSTRUCTOR node
3924 with no elements indicates zero-initialization of the whole. */
3925 if (VEC_empty (constructor_elt, elts))
3927 if (notify_temp_creation)
3928 return GS_OK;
3929 break;
3932 /* Fetch information about the constructor to direct later processing.
3933 We might want to make static versions of it in various cases, and
3934 can only do so if it known to be a valid constant initializer. */
3935 valid_const_initializer
3936 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3937 &num_ctor_elements, &complete_p);
3939 /* If a const aggregate variable is being initialized, then it
3940 should never be a lose to promote the variable to be static. */
3941 if (valid_const_initializer
3942 && num_nonzero_elements > 1
3943 && TREE_READONLY (object)
3944 && TREE_CODE (object) == VAR_DECL
3945 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3947 if (notify_temp_creation)
3948 return GS_ERROR;
3949 DECL_INITIAL (object) = ctor;
3950 TREE_STATIC (object) = 1;
3951 if (!DECL_NAME (object))
3952 DECL_NAME (object) = create_tmp_var_name ("C");
3953 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3955 /* ??? C++ doesn't automatically append a .<number> to the
3956 assembler name, and even when it does, it looks a FE private
3957 data structures to figure out what that number should be,
3958 which are not set for this variable. I suppose this is
3959 important for local statics for inline functions, which aren't
3960 "local" in the object file sense. So in order to get a unique
3961 TU-local symbol, we must invoke the lhd version now. */
3962 lhd_set_decl_assembler_name (object);
3964 *expr_p = NULL_TREE;
3965 break;
3968 /* If there are "lots" of initialized elements, even discounting
3969 those that are not address constants (and thus *must* be
3970 computed at runtime), then partition the constructor into
3971 constant and non-constant parts. Block copy the constant
3972 parts in, then generate code for the non-constant parts. */
3973 /* TODO. There's code in cp/typeck.c to do this. */
3975 if (int_size_in_bytes (TREE_TYPE (ctor)) < 0)
3976 /* store_constructor will ignore the clearing of variable-sized
3977 objects. Initializers for such objects must explicitly set
3978 every field that needs to be set. */
3979 cleared = false;
3980 else if (!complete_p)
3981 /* If the constructor isn't complete, clear the whole object
3982 beforehand.
3984 ??? This ought not to be needed. For any element not present
3985 in the initializer, we should simply set them to zero. Except
3986 we'd need to *find* the elements that are not present, and that
3987 requires trickery to avoid quadratic compile-time behavior in
3988 large cases or excessive memory use in small cases. */
3989 cleared = true;
3990 else if (num_ctor_elements - num_nonzero_elements
3991 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
3992 && num_nonzero_elements < num_ctor_elements / 4)
3993 /* If there are "lots" of zeros, it's more efficient to clear
3994 the memory and then set the nonzero elements. */
3995 cleared = true;
3996 else
3997 cleared = false;
3999 /* If there are "lots" of initialized elements, and all of them
4000 are valid address constants, then the entire initializer can
4001 be dropped to memory, and then memcpy'd out. Don't do this
4002 for sparse arrays, though, as it's more efficient to follow
4003 the standard CONSTRUCTOR behavior of memset followed by
4004 individual element initialization. Also don't do this for small
4005 all-zero initializers (which aren't big enough to merit
4006 clearing), and don't try to make bitwise copies of
4007 TREE_ADDRESSABLE types. */
4008 if (valid_const_initializer
4009 && !(cleared || num_nonzero_elements == 0)
4010 && !TREE_ADDRESSABLE (type))
4012 HOST_WIDE_INT size = int_size_in_bytes (type);
4013 unsigned int align;
4015 /* ??? We can still get unbounded array types, at least
4016 from the C++ front end. This seems wrong, but attempt
4017 to work around it for now. */
4018 if (size < 0)
4020 size = int_size_in_bytes (TREE_TYPE (object));
4021 if (size >= 0)
4022 TREE_TYPE (ctor) = type = TREE_TYPE (object);
4025 /* Find the maximum alignment we can assume for the object. */
4026 /* ??? Make use of DECL_OFFSET_ALIGN. */
4027 if (DECL_P (object))
4028 align = DECL_ALIGN (object);
4029 else
4030 align = TYPE_ALIGN (type);
4032 if (size > 0
4033 && num_nonzero_elements > 1
4034 && !can_move_by_pieces (size, align))
4036 if (notify_temp_creation)
4037 return GS_ERROR;
4039 walk_tree (&ctor, force_labels_r, NULL, NULL);
4040 ctor = tree_output_constant_def (ctor);
4041 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
4042 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
4043 TREE_OPERAND (*expr_p, 1) = ctor;
4045 /* This is no longer an assignment of a CONSTRUCTOR, but
4046 we still may have processing to do on the LHS. So
4047 pretend we didn't do anything here to let that happen. */
4048 return GS_UNHANDLED;
4052 /* If the target is volatile, we have non-zero elements and more than
4053 one field to assign, initialize the target from a temporary. */
4054 if (TREE_THIS_VOLATILE (object)
4055 && !TREE_ADDRESSABLE (type)
4056 && num_nonzero_elements > 0
4057 && VEC_length (constructor_elt, elts) > 1)
4059 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
4060 TREE_OPERAND (*expr_p, 0) = temp;
4061 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
4062 *expr_p,
4063 build2 (MODIFY_EXPR, void_type_node,
4064 object, temp));
4065 return GS_OK;
4068 if (notify_temp_creation)
4069 return GS_OK;
4071 /* If there are nonzero elements and if needed, pre-evaluate to capture
4072 elements overlapping with the lhs into temporaries. We must do this
4073 before clearing to fetch the values before they are zeroed-out. */
4074 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
4076 preeval_data.lhs_base_decl = get_base_address (object);
4077 if (!DECL_P (preeval_data.lhs_base_decl))
4078 preeval_data.lhs_base_decl = NULL;
4079 preeval_data.lhs_alias_set = get_alias_set (object);
4081 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
4082 pre_p, post_p, &preeval_data);
4085 if (cleared)
4087 /* Zap the CONSTRUCTOR element list, which simplifies this case.
4088 Note that we still have to gimplify, in order to handle the
4089 case of variable sized types. Avoid shared tree structures. */
4090 CONSTRUCTOR_ELTS (ctor) = NULL;
4091 TREE_SIDE_EFFECTS (ctor) = 0;
4092 object = unshare_expr (object);
4093 gimplify_stmt (expr_p, pre_p);
4096 /* If we have not block cleared the object, or if there are nonzero
4097 elements in the constructor, add assignments to the individual
4098 scalar fields of the object. */
4099 if (!cleared || num_nonzero_elements > 0)
4100 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
4102 *expr_p = NULL_TREE;
4104 break;
4106 case COMPLEX_TYPE:
4108 tree r, i;
4110 if (notify_temp_creation)
4111 return GS_OK;
4113 /* Extract the real and imaginary parts out of the ctor. */
4114 gcc_assert (VEC_length (constructor_elt, elts) == 2);
4115 r = VEC_index (constructor_elt, elts, 0)->value;
4116 i = VEC_index (constructor_elt, elts, 1)->value;
4117 if (r == NULL || i == NULL)
4119 tree zero = build_zero_cst (TREE_TYPE (type));
4120 if (r == NULL)
4121 r = zero;
4122 if (i == NULL)
4123 i = zero;
4126 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
4127 represent creation of a complex value. */
4128 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
4130 ctor = build_complex (type, r, i);
4131 TREE_OPERAND (*expr_p, 1) = ctor;
4133 else
4135 ctor = build2 (COMPLEX_EXPR, type, r, i);
4136 TREE_OPERAND (*expr_p, 1) = ctor;
4137 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
4138 pre_p,
4139 post_p,
4140 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
4141 fb_rvalue);
4144 break;
4146 case VECTOR_TYPE:
4148 unsigned HOST_WIDE_INT ix;
4149 constructor_elt *ce;
4151 if (notify_temp_creation)
4152 return GS_OK;
4154 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4155 if (TREE_CONSTANT (ctor))
4157 bool constant_p = true;
4158 tree value;
4160 /* Even when ctor is constant, it might contain non-*_CST
4161 elements, such as addresses or trapping values like
4162 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4163 in VECTOR_CST nodes. */
4164 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
4165 if (!CONSTANT_CLASS_P (value))
4167 constant_p = false;
4168 break;
4171 if (constant_p)
4173 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
4174 break;
4177 /* Don't reduce an initializer constant even if we can't
4178 make a VECTOR_CST. It won't do anything for us, and it'll
4179 prevent us from representing it as a single constant. */
4180 if (initializer_constant_valid_p (ctor, type))
4181 break;
4183 TREE_CONSTANT (ctor) = 0;
4186 /* Vector types use CONSTRUCTOR all the way through gimple
4187 compilation as a general initializer. */
4188 FOR_EACH_VEC_ELT (constructor_elt, elts, ix, ce)
4190 enum gimplify_status tret;
4191 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
4192 fb_rvalue);
4193 if (tret == GS_ERROR)
4194 ret = GS_ERROR;
4196 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
4197 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4199 break;
4201 default:
4202 /* So how did we get a CONSTRUCTOR for a scalar type? */
4203 gcc_unreachable ();
4206 if (ret == GS_ERROR)
4207 return GS_ERROR;
4208 else if (want_value)
4210 *expr_p = object;
4211 return GS_OK;
4213 else
4215 /* If we have gimplified both sides of the initializer but have
4216 not emitted an assignment, do so now. */
4217 if (*expr_p)
4219 tree lhs = TREE_OPERAND (*expr_p, 0);
4220 tree rhs = TREE_OPERAND (*expr_p, 1);
4221 gimple init = gimple_build_assign (lhs, rhs);
4222 gimplify_seq_add_stmt (pre_p, init);
4223 *expr_p = NULL;
4226 return GS_ALL_DONE;
4230 /* Given a pointer value OP0, return a simplified version of an
4231 indirection through OP0, or NULL_TREE if no simplification is
4232 possible. Note that the resulting type may be different from
4233 the type pointed to in the sense that it is still compatible
4234 from the langhooks point of view. */
4236 tree
4237 gimple_fold_indirect_ref (tree t)
4239 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4240 tree sub = t;
4241 tree subtype;
4243 STRIP_NOPS (sub);
4244 subtype = TREE_TYPE (sub);
4245 if (!POINTER_TYPE_P (subtype))
4246 return NULL_TREE;
4248 if (TREE_CODE (sub) == ADDR_EXPR)
4250 tree op = TREE_OPERAND (sub, 0);
4251 tree optype = TREE_TYPE (op);
4252 /* *&p => p */
4253 if (useless_type_conversion_p (type, optype))
4254 return op;
4256 /* *(foo *)&fooarray => fooarray[0] */
4257 if (TREE_CODE (optype) == ARRAY_TYPE
4258 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4259 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4261 tree type_domain = TYPE_DOMAIN (optype);
4262 tree min_val = size_zero_node;
4263 if (type_domain && TYPE_MIN_VALUE (type_domain))
4264 min_val = TYPE_MIN_VALUE (type_domain);
4265 if (TREE_CODE (min_val) == INTEGER_CST)
4266 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4268 /* *(foo *)&complexfoo => __real__ complexfoo */
4269 else if (TREE_CODE (optype) == COMPLEX_TYPE
4270 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4271 return fold_build1 (REALPART_EXPR, type, op);
4272 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4273 else if (TREE_CODE (optype) == VECTOR_TYPE
4274 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4276 tree part_width = TYPE_SIZE (type);
4277 tree index = bitsize_int (0);
4278 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4282 /* *(p + CST) -> ... */
4283 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4284 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4286 tree addr = TREE_OPERAND (sub, 0);
4287 tree off = TREE_OPERAND (sub, 1);
4288 tree addrtype;
4290 STRIP_NOPS (addr);
4291 addrtype = TREE_TYPE (addr);
4293 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4294 if (TREE_CODE (addr) == ADDR_EXPR
4295 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4296 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4297 && host_integerp (off, 1))
4299 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4300 tree part_width = TYPE_SIZE (type);
4301 unsigned HOST_WIDE_INT part_widthi
4302 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4303 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4304 tree index = bitsize_int (indexi);
4305 if (offset / part_widthi
4306 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4307 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4308 part_width, index);
4311 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4312 if (TREE_CODE (addr) == ADDR_EXPR
4313 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4314 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4316 tree size = TYPE_SIZE_UNIT (type);
4317 if (tree_int_cst_equal (size, off))
4318 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4321 /* *(p + CST) -> MEM_REF <p, CST>. */
4322 if (TREE_CODE (addr) != ADDR_EXPR
4323 || DECL_P (TREE_OPERAND (addr, 0)))
4324 return fold_build2 (MEM_REF, type,
4325 addr,
4326 build_int_cst_wide (ptype,
4327 TREE_INT_CST_LOW (off),
4328 TREE_INT_CST_HIGH (off)));
4331 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4332 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4333 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4334 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4336 tree type_domain;
4337 tree min_val = size_zero_node;
4338 tree osub = sub;
4339 sub = gimple_fold_indirect_ref (sub);
4340 if (! sub)
4341 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4342 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4343 if (type_domain && TYPE_MIN_VALUE (type_domain))
4344 min_val = TYPE_MIN_VALUE (type_domain);
4345 if (TREE_CODE (min_val) == INTEGER_CST)
4346 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4349 return NULL_TREE;
4352 /* Given a pointer value OP0, return a simplified version of an
4353 indirection through OP0, or NULL_TREE if no simplification is
4354 possible. This may only be applied to a rhs of an expression.
4355 Note that the resulting type may be different from the type pointed
4356 to in the sense that it is still compatible from the langhooks
4357 point of view. */
4359 static tree
4360 gimple_fold_indirect_ref_rhs (tree t)
4362 return gimple_fold_indirect_ref (t);
4365 /* Subroutine of gimplify_modify_expr to do simplifications of
4366 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4367 something changes. */
4369 static enum gimplify_status
4370 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4371 gimple_seq *pre_p, gimple_seq *post_p,
4372 bool want_value)
4374 enum gimplify_status ret = GS_UNHANDLED;
4375 bool changed;
4379 changed = false;
4380 switch (TREE_CODE (*from_p))
4382 case VAR_DECL:
4383 /* If we're assigning from a read-only variable initialized with
4384 a constructor, do the direct assignment from the constructor,
4385 but only if neither source nor target are volatile since this
4386 latter assignment might end up being done on a per-field basis. */
4387 if (DECL_INITIAL (*from_p)
4388 && TREE_READONLY (*from_p)
4389 && !TREE_THIS_VOLATILE (*from_p)
4390 && !TREE_THIS_VOLATILE (*to_p)
4391 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4393 tree old_from = *from_p;
4394 enum gimplify_status subret;
4396 /* Move the constructor into the RHS. */
4397 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4399 /* Let's see if gimplify_init_constructor will need to put
4400 it in memory. */
4401 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4402 false, true);
4403 if (subret == GS_ERROR)
4405 /* If so, revert the change. */
4406 *from_p = old_from;
4408 else
4410 ret = GS_OK;
4411 changed = true;
4414 break;
4415 case INDIRECT_REF:
4417 /* If we have code like
4419 *(const A*)(A*)&x
4421 where the type of "x" is a (possibly cv-qualified variant
4422 of "A"), treat the entire expression as identical to "x".
4423 This kind of code arises in C++ when an object is bound
4424 to a const reference, and if "x" is a TARGET_EXPR we want
4425 to take advantage of the optimization below. */
4426 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4427 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4428 if (t)
4430 if (TREE_THIS_VOLATILE (t) != volatile_p)
4432 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4433 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4434 build_fold_addr_expr (t));
4435 if (REFERENCE_CLASS_P (t))
4436 TREE_THIS_VOLATILE (t) = volatile_p;
4438 *from_p = t;
4439 ret = GS_OK;
4440 changed = true;
4442 break;
4445 case TARGET_EXPR:
4447 /* If we are initializing something from a TARGET_EXPR, strip the
4448 TARGET_EXPR and initialize it directly, if possible. This can't
4449 be done if the initializer is void, since that implies that the
4450 temporary is set in some non-trivial way.
4452 ??? What about code that pulls out the temp and uses it
4453 elsewhere? I think that such code never uses the TARGET_EXPR as
4454 an initializer. If I'm wrong, we'll die because the temp won't
4455 have any RTL. In that case, I guess we'll need to replace
4456 references somehow. */
4457 tree init = TARGET_EXPR_INITIAL (*from_p);
4459 if (init
4460 && !VOID_TYPE_P (TREE_TYPE (init)))
4462 *from_p = init;
4463 ret = GS_OK;
4464 changed = true;
4467 break;
4469 case COMPOUND_EXPR:
4470 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4471 caught. */
4472 gimplify_compound_expr (from_p, pre_p, true);
4473 ret = GS_OK;
4474 changed = true;
4475 break;
4477 case CONSTRUCTOR:
4478 /* If we already made some changes, let the front end have a
4479 crack at this before we break it down. */
4480 if (ret != GS_UNHANDLED)
4481 break;
4482 /* If we're initializing from a CONSTRUCTOR, break this into
4483 individual MODIFY_EXPRs. */
4484 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4485 false);
4487 case COND_EXPR:
4488 /* If we're assigning to a non-register type, push the assignment
4489 down into the branches. This is mandatory for ADDRESSABLE types,
4490 since we cannot generate temporaries for such, but it saves a
4491 copy in other cases as well. */
4492 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4494 /* This code should mirror the code in gimplify_cond_expr. */
4495 enum tree_code code = TREE_CODE (*expr_p);
4496 tree cond = *from_p;
4497 tree result = *to_p;
4499 ret = gimplify_expr (&result, pre_p, post_p,
4500 is_gimple_lvalue, fb_lvalue);
4501 if (ret != GS_ERROR)
4502 ret = GS_OK;
4504 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4505 TREE_OPERAND (cond, 1)
4506 = build2 (code, void_type_node, result,
4507 TREE_OPERAND (cond, 1));
4508 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4509 TREE_OPERAND (cond, 2)
4510 = build2 (code, void_type_node, unshare_expr (result),
4511 TREE_OPERAND (cond, 2));
4513 TREE_TYPE (cond) = void_type_node;
4514 recalculate_side_effects (cond);
4516 if (want_value)
4518 gimplify_and_add (cond, pre_p);
4519 *expr_p = unshare_expr (result);
4521 else
4522 *expr_p = cond;
4523 return ret;
4525 break;
4527 case CALL_EXPR:
4528 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4529 return slot so that we don't generate a temporary. */
4530 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4531 && aggregate_value_p (*from_p, *from_p))
4533 bool use_target;
4535 if (!(rhs_predicate_for (*to_p))(*from_p))
4536 /* If we need a temporary, *to_p isn't accurate. */
4537 use_target = false;
4538 /* It's OK to use the return slot directly unless it's an NRV. */
4539 else if (TREE_CODE (*to_p) == RESULT_DECL
4540 && DECL_NAME (*to_p) == NULL_TREE
4541 && needs_to_live_in_memory (*to_p))
4542 use_target = true;
4543 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4544 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4545 /* Don't force regs into memory. */
4546 use_target = false;
4547 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4548 /* It's OK to use the target directly if it's being
4549 initialized. */
4550 use_target = true;
4551 else if (variably_modified_type_p (TREE_TYPE (*to_p), NULL_TREE))
4552 /* Always use the target and thus RSO for variable-sized types.
4553 GIMPLE cannot deal with a variable-sized assignment
4554 embedded in a call statement. */
4555 use_target = true;
4556 else if (TREE_CODE (*to_p) != SSA_NAME
4557 && (!is_gimple_variable (*to_p)
4558 || needs_to_live_in_memory (*to_p)))
4559 /* Don't use the original target if it's already addressable;
4560 if its address escapes, and the called function uses the
4561 NRV optimization, a conforming program could see *to_p
4562 change before the called function returns; see c++/19317.
4563 When optimizing, the return_slot pass marks more functions
4564 as safe after we have escape info. */
4565 use_target = false;
4566 else
4567 use_target = true;
4569 if (use_target)
4571 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4572 mark_addressable (*to_p);
4575 break;
4577 case WITH_SIZE_EXPR:
4578 /* Likewise for calls that return an aggregate of non-constant size,
4579 since we would not be able to generate a temporary at all. */
4580 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4582 *from_p = TREE_OPERAND (*from_p, 0);
4583 /* We don't change ret in this case because the
4584 WITH_SIZE_EXPR might have been added in
4585 gimplify_modify_expr, so returning GS_OK would lead to an
4586 infinite loop. */
4587 changed = true;
4589 break;
4591 /* If we're initializing from a container, push the initialization
4592 inside it. */
4593 case CLEANUP_POINT_EXPR:
4594 case BIND_EXPR:
4595 case STATEMENT_LIST:
4597 tree wrap = *from_p;
4598 tree t;
4600 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4601 fb_lvalue);
4602 if (ret != GS_ERROR)
4603 ret = GS_OK;
4605 t = voidify_wrapper_expr (wrap, *expr_p);
4606 gcc_assert (t == *expr_p);
4608 if (want_value)
4610 gimplify_and_add (wrap, pre_p);
4611 *expr_p = unshare_expr (*to_p);
4613 else
4614 *expr_p = wrap;
4615 return GS_OK;
4618 case COMPOUND_LITERAL_EXPR:
4620 tree complit = TREE_OPERAND (*expr_p, 1);
4621 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4622 tree decl = DECL_EXPR_DECL (decl_s);
4623 tree init = DECL_INITIAL (decl);
4625 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4626 into struct T x = { 0, 1, 2 } if the address of the
4627 compound literal has never been taken. */
4628 if (!TREE_ADDRESSABLE (complit)
4629 && !TREE_ADDRESSABLE (decl)
4630 && init)
4632 *expr_p = copy_node (*expr_p);
4633 TREE_OPERAND (*expr_p, 1) = init;
4634 return GS_OK;
4638 default:
4639 break;
4642 while (changed);
4644 return ret;
4648 /* Return true if T looks like a valid GIMPLE statement. */
4650 static bool
4651 is_gimple_stmt (tree t)
4653 const enum tree_code code = TREE_CODE (t);
4655 switch (code)
4657 case NOP_EXPR:
4658 /* The only valid NOP_EXPR is the empty statement. */
4659 return IS_EMPTY_STMT (t);
4661 case BIND_EXPR:
4662 case COND_EXPR:
4663 /* These are only valid if they're void. */
4664 return TREE_TYPE (t) == NULL || VOID_TYPE_P (TREE_TYPE (t));
4666 case SWITCH_EXPR:
4667 case GOTO_EXPR:
4668 case RETURN_EXPR:
4669 case LABEL_EXPR:
4670 case CASE_LABEL_EXPR:
4671 case TRY_CATCH_EXPR:
4672 case TRY_FINALLY_EXPR:
4673 case EH_FILTER_EXPR:
4674 case CATCH_EXPR:
4675 case ASM_EXPR:
4676 case STATEMENT_LIST:
4677 case OMP_PARALLEL:
4678 case OMP_FOR:
4679 case OMP_SECTIONS:
4680 case OMP_SECTION:
4681 case OMP_SINGLE:
4682 case OMP_MASTER:
4683 case OMP_ORDERED:
4684 case OMP_CRITICAL:
4685 case OMP_TASK:
4686 /* These are always void. */
4687 return true;
4689 case CALL_EXPR:
4690 case MODIFY_EXPR:
4691 case PREDICT_EXPR:
4692 /* These are valid regardless of their type. */
4693 return true;
4695 default:
4696 return false;
4701 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4702 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4703 DECL_GIMPLE_REG_P set.
4705 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4706 other, unmodified part of the complex object just before the total store.
4707 As a consequence, if the object is still uninitialized, an undefined value
4708 will be loaded into a register, which may result in a spurious exception
4709 if the register is floating-point and the value happens to be a signaling
4710 NaN for example. Then the fully-fledged complex operations lowering pass
4711 followed by a DCE pass are necessary in order to fix things up. */
4713 static enum gimplify_status
4714 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4715 bool want_value)
4717 enum tree_code code, ocode;
4718 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4720 lhs = TREE_OPERAND (*expr_p, 0);
4721 rhs = TREE_OPERAND (*expr_p, 1);
4722 code = TREE_CODE (lhs);
4723 lhs = TREE_OPERAND (lhs, 0);
4725 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4726 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4727 TREE_NO_WARNING (other) = 1;
4728 other = get_formal_tmp_var (other, pre_p);
4730 realpart = code == REALPART_EXPR ? rhs : other;
4731 imagpart = code == REALPART_EXPR ? other : rhs;
4733 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4734 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4735 else
4736 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4738 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4739 *expr_p = (want_value) ? rhs : NULL_TREE;
4741 return GS_ALL_DONE;
4744 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4746 modify_expr
4747 : varname '=' rhs
4748 | '*' ID '=' rhs
4750 PRE_P points to the list where side effects that must happen before
4751 *EXPR_P should be stored.
4753 POST_P points to the list where side effects that must happen after
4754 *EXPR_P should be stored.
4756 WANT_VALUE is nonzero iff we want to use the value of this expression
4757 in another expression. */
4759 static enum gimplify_status
4760 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4761 bool want_value)
4763 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4764 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4765 enum gimplify_status ret = GS_UNHANDLED;
4766 gimple assign;
4767 location_t loc = EXPR_LOCATION (*expr_p);
4769 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4770 || TREE_CODE (*expr_p) == INIT_EXPR);
4772 /* Trying to simplify a clobber using normal logic doesn't work,
4773 so handle it here. */
4774 if (TREE_CLOBBER_P (*from_p))
4776 gcc_assert (!want_value && TREE_CODE (*to_p) == VAR_DECL);
4777 gimplify_seq_add_stmt (pre_p, gimple_build_assign (*to_p, *from_p));
4778 *expr_p = NULL;
4779 return GS_ALL_DONE;
4782 /* Insert pointer conversions required by the middle-end that are not
4783 required by the frontend. This fixes middle-end type checking for
4784 for example gcc.dg/redecl-6.c. */
4785 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4787 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4788 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4789 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4792 /* See if any simplifications can be done based on what the RHS is. */
4793 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4794 want_value);
4795 if (ret != GS_UNHANDLED)
4796 return ret;
4798 /* For zero sized types only gimplify the left hand side and right hand
4799 side as statements and throw away the assignment. Do this after
4800 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4801 types properly. */
4802 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4804 gimplify_stmt (from_p, pre_p);
4805 gimplify_stmt (to_p, pre_p);
4806 *expr_p = NULL_TREE;
4807 return GS_ALL_DONE;
4810 /* If the value being copied is of variable width, compute the length
4811 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4812 before gimplifying any of the operands so that we can resolve any
4813 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4814 the size of the expression to be copied, not of the destination, so
4815 that is what we must do here. */
4816 maybe_with_size_expr (from_p);
4818 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4819 if (ret == GS_ERROR)
4820 return ret;
4822 /* As a special case, we have to temporarily allow for assignments
4823 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4824 a toplevel statement, when gimplifying the GENERIC expression
4825 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4826 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4828 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4829 prevent gimplify_expr from trying to create a new temporary for
4830 foo's LHS, we tell it that it should only gimplify until it
4831 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4832 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4833 and all we need to do here is set 'a' to be its LHS. */
4834 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4835 fb_rvalue);
4836 if (ret == GS_ERROR)
4837 return ret;
4839 /* Now see if the above changed *from_p to something we handle specially. */
4840 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4841 want_value);
4842 if (ret != GS_UNHANDLED)
4843 return ret;
4845 /* If we've got a variable sized assignment between two lvalues (i.e. does
4846 not involve a call), then we can make things a bit more straightforward
4847 by converting the assignment to memcpy or memset. */
4848 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4850 tree from = TREE_OPERAND (*from_p, 0);
4851 tree size = TREE_OPERAND (*from_p, 1);
4853 if (TREE_CODE (from) == CONSTRUCTOR)
4854 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4856 if (is_gimple_addressable (from))
4858 *from_p = from;
4859 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4860 pre_p);
4864 /* Transform partial stores to non-addressable complex variables into
4865 total stores. This allows us to use real instead of virtual operands
4866 for these variables, which improves optimization. */
4867 if ((TREE_CODE (*to_p) == REALPART_EXPR
4868 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4869 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4870 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4872 /* Try to alleviate the effects of the gimplification creating artificial
4873 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4874 if (!gimplify_ctxp->into_ssa
4875 && TREE_CODE (*from_p) == VAR_DECL
4876 && DECL_IGNORED_P (*from_p)
4877 && DECL_P (*to_p)
4878 && !DECL_IGNORED_P (*to_p))
4880 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4881 DECL_NAME (*from_p)
4882 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4883 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
4884 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4887 if (want_value && TREE_THIS_VOLATILE (*to_p))
4888 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4890 if (TREE_CODE (*from_p) == CALL_EXPR)
4892 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4893 instead of a GIMPLE_ASSIGN. */
4894 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4895 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4896 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4897 assign = gimple_build_call_from_tree (*from_p);
4898 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4899 if (!gimple_call_noreturn_p (assign))
4900 gimple_call_set_lhs (assign, *to_p);
4902 else
4904 assign = gimple_build_assign (*to_p, *from_p);
4905 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4908 gimplify_seq_add_stmt (pre_p, assign);
4910 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4912 /* If we've somehow already got an SSA_NAME on the LHS, then
4913 we've probably modified it twice. Not good. */
4914 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
4915 *to_p = make_ssa_name (*to_p, assign);
4916 gimple_set_lhs (assign, *to_p);
4919 if (want_value)
4921 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4922 return GS_OK;
4924 else
4925 *expr_p = NULL;
4927 return GS_ALL_DONE;
4930 /* Gimplify a comparison between two variable-sized objects. Do this
4931 with a call to BUILT_IN_MEMCMP. */
4933 static enum gimplify_status
4934 gimplify_variable_sized_compare (tree *expr_p)
4936 location_t loc = EXPR_LOCATION (*expr_p);
4937 tree op0 = TREE_OPERAND (*expr_p, 0);
4938 tree op1 = TREE_OPERAND (*expr_p, 1);
4939 tree t, arg, dest, src, expr;
4941 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4942 arg = unshare_expr (arg);
4943 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4944 src = build_fold_addr_expr_loc (loc, op1);
4945 dest = build_fold_addr_expr_loc (loc, op0);
4946 t = builtin_decl_implicit (BUILT_IN_MEMCMP);
4947 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4949 expr
4950 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4951 SET_EXPR_LOCATION (expr, loc);
4952 *expr_p = expr;
4954 return GS_OK;
4957 /* Gimplify a comparison between two aggregate objects of integral scalar
4958 mode as a comparison between the bitwise equivalent scalar values. */
4960 static enum gimplify_status
4961 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4963 location_t loc = EXPR_LOCATION (*expr_p);
4964 tree op0 = TREE_OPERAND (*expr_p, 0);
4965 tree op1 = TREE_OPERAND (*expr_p, 1);
4967 tree type = TREE_TYPE (op0);
4968 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
4970 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
4971 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
4973 *expr_p
4974 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
4976 return GS_OK;
4979 /* Gimplify an expression sequence. This function gimplifies each
4980 expression and rewrites the original expression with the last
4981 expression of the sequence in GIMPLE form.
4983 PRE_P points to the list where the side effects for all the
4984 expressions in the sequence will be emitted.
4986 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
4988 static enum gimplify_status
4989 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
4991 tree t = *expr_p;
4995 tree *sub_p = &TREE_OPERAND (t, 0);
4997 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
4998 gimplify_compound_expr (sub_p, pre_p, false);
4999 else
5000 gimplify_stmt (sub_p, pre_p);
5002 t = TREE_OPERAND (t, 1);
5004 while (TREE_CODE (t) == COMPOUND_EXPR);
5006 *expr_p = t;
5007 if (want_value)
5008 return GS_OK;
5009 else
5011 gimplify_stmt (expr_p, pre_p);
5012 return GS_ALL_DONE;
5016 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
5017 gimplify. After gimplification, EXPR_P will point to a new temporary
5018 that holds the original value of the SAVE_EXPR node.
5020 PRE_P points to the list where side effects that must happen before
5021 *EXPR_P should be stored. */
5023 static enum gimplify_status
5024 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5026 enum gimplify_status ret = GS_ALL_DONE;
5027 tree val;
5029 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
5030 val = TREE_OPERAND (*expr_p, 0);
5032 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
5033 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
5035 /* The operand may be a void-valued expression such as SAVE_EXPRs
5036 generated by the Java frontend for class initialization. It is
5037 being executed only for its side-effects. */
5038 if (TREE_TYPE (val) == void_type_node)
5040 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5041 is_gimple_stmt, fb_none);
5042 val = NULL;
5044 else
5045 val = get_initialized_tmp_var (val, pre_p, post_p);
5047 TREE_OPERAND (*expr_p, 0) = val;
5048 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
5051 *expr_p = val;
5053 return ret;
5056 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
5058 unary_expr
5059 : ...
5060 | '&' varname
5063 PRE_P points to the list where side effects that must happen before
5064 *EXPR_P should be stored.
5066 POST_P points to the list where side effects that must happen after
5067 *EXPR_P should be stored. */
5069 static enum gimplify_status
5070 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5072 tree expr = *expr_p;
5073 tree op0 = TREE_OPERAND (expr, 0);
5074 enum gimplify_status ret;
5075 location_t loc = EXPR_LOCATION (*expr_p);
5077 switch (TREE_CODE (op0))
5079 case INDIRECT_REF:
5080 do_indirect_ref:
5081 /* Check if we are dealing with an expression of the form '&*ptr'.
5082 While the front end folds away '&*ptr' into 'ptr', these
5083 expressions may be generated internally by the compiler (e.g.,
5084 builtins like __builtin_va_end). */
5085 /* Caution: the silent array decomposition semantics we allow for
5086 ADDR_EXPR means we can't always discard the pair. */
5087 /* Gimplification of the ADDR_EXPR operand may drop
5088 cv-qualification conversions, so make sure we add them if
5089 needed. */
5091 tree op00 = TREE_OPERAND (op0, 0);
5092 tree t_expr = TREE_TYPE (expr);
5093 tree t_op00 = TREE_TYPE (op00);
5095 if (!useless_type_conversion_p (t_expr, t_op00))
5096 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
5097 *expr_p = op00;
5098 ret = GS_OK;
5100 break;
5102 case VIEW_CONVERT_EXPR:
5103 /* Take the address of our operand and then convert it to the type of
5104 this ADDR_EXPR.
5106 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
5107 all clear. The impact of this transformation is even less clear. */
5109 /* If the operand is a useless conversion, look through it. Doing so
5110 guarantees that the ADDR_EXPR and its operand will remain of the
5111 same type. */
5112 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
5113 op0 = TREE_OPERAND (op0, 0);
5115 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
5116 build_fold_addr_expr_loc (loc,
5117 TREE_OPERAND (op0, 0)));
5118 ret = GS_OK;
5119 break;
5121 default:
5122 /* We use fb_either here because the C frontend sometimes takes
5123 the address of a call that returns a struct; see
5124 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
5125 the implied temporary explicit. */
5127 /* Make the operand addressable. */
5128 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
5129 is_gimple_addressable, fb_either);
5130 if (ret == GS_ERROR)
5131 break;
5133 /* Then mark it. Beware that it may not be possible to do so directly
5134 if a temporary has been created by the gimplification. */
5135 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
5137 op0 = TREE_OPERAND (expr, 0);
5139 /* For various reasons, the gimplification of the expression
5140 may have made a new INDIRECT_REF. */
5141 if (TREE_CODE (op0) == INDIRECT_REF)
5142 goto do_indirect_ref;
5144 mark_addressable (TREE_OPERAND (expr, 0));
5146 /* The FEs may end up building ADDR_EXPRs early on a decl with
5147 an incomplete type. Re-build ADDR_EXPRs in canonical form
5148 here. */
5149 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
5150 *expr_p = build_fold_addr_expr (op0);
5152 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
5153 recompute_tree_invariant_for_addr_expr (*expr_p);
5155 /* If we re-built the ADDR_EXPR add a conversion to the original type
5156 if required. */
5157 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
5158 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
5160 break;
5163 return ret;
5166 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
5167 value; output operands should be a gimple lvalue. */
5169 static enum gimplify_status
5170 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5172 tree expr;
5173 int noutputs;
5174 const char **oconstraints;
5175 int i;
5176 tree link;
5177 const char *constraint;
5178 bool allows_mem, allows_reg, is_inout;
5179 enum gimplify_status ret, tret;
5180 gimple stmt;
5181 VEC(tree, gc) *inputs;
5182 VEC(tree, gc) *outputs;
5183 VEC(tree, gc) *clobbers;
5184 VEC(tree, gc) *labels;
5185 tree link_next;
5187 expr = *expr_p;
5188 noutputs = list_length (ASM_OUTPUTS (expr));
5189 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
5191 inputs = outputs = clobbers = labels = NULL;
5193 ret = GS_ALL_DONE;
5194 link_next = NULL_TREE;
5195 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
5197 bool ok;
5198 size_t constraint_len;
5200 link_next = TREE_CHAIN (link);
5202 oconstraints[i]
5203 = constraint
5204 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5205 constraint_len = strlen (constraint);
5206 if (constraint_len == 0)
5207 continue;
5209 ok = parse_output_constraint (&constraint, i, 0, 0,
5210 &allows_mem, &allows_reg, &is_inout);
5211 if (!ok)
5213 ret = GS_ERROR;
5214 is_inout = false;
5217 if (!allows_reg && allows_mem)
5218 mark_addressable (TREE_VALUE (link));
5220 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5221 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
5222 fb_lvalue | fb_mayfail);
5223 if (tret == GS_ERROR)
5225 error ("invalid lvalue in asm output %d", i);
5226 ret = tret;
5229 VEC_safe_push (tree, gc, outputs, link);
5230 TREE_CHAIN (link) = NULL_TREE;
5232 if (is_inout)
5234 /* An input/output operand. To give the optimizers more
5235 flexibility, split it into separate input and output
5236 operands. */
5237 tree input;
5238 char buf[10];
5240 /* Turn the in/out constraint into an output constraint. */
5241 char *p = xstrdup (constraint);
5242 p[0] = '=';
5243 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
5245 /* And add a matching input constraint. */
5246 if (allows_reg)
5248 sprintf (buf, "%d", i);
5250 /* If there are multiple alternatives in the constraint,
5251 handle each of them individually. Those that allow register
5252 will be replaced with operand number, the others will stay
5253 unchanged. */
5254 if (strchr (p, ',') != NULL)
5256 size_t len = 0, buflen = strlen (buf);
5257 char *beg, *end, *str, *dst;
5259 for (beg = p + 1;;)
5261 end = strchr (beg, ',');
5262 if (end == NULL)
5263 end = strchr (beg, '\0');
5264 if ((size_t) (end - beg) < buflen)
5265 len += buflen + 1;
5266 else
5267 len += end - beg + 1;
5268 if (*end)
5269 beg = end + 1;
5270 else
5271 break;
5274 str = (char *) alloca (len);
5275 for (beg = p + 1, dst = str;;)
5277 const char *tem;
5278 bool mem_p, reg_p, inout_p;
5280 end = strchr (beg, ',');
5281 if (end)
5282 *end = '\0';
5283 beg[-1] = '=';
5284 tem = beg - 1;
5285 parse_output_constraint (&tem, i, 0, 0,
5286 &mem_p, &reg_p, &inout_p);
5287 if (dst != str)
5288 *dst++ = ',';
5289 if (reg_p)
5291 memcpy (dst, buf, buflen);
5292 dst += buflen;
5294 else
5296 if (end)
5297 len = end - beg;
5298 else
5299 len = strlen (beg);
5300 memcpy (dst, beg, len);
5301 dst += len;
5303 if (end)
5304 beg = end + 1;
5305 else
5306 break;
5308 *dst = '\0';
5309 input = build_string (dst - str, str);
5311 else
5312 input = build_string (strlen (buf), buf);
5314 else
5315 input = build_string (constraint_len - 1, constraint + 1);
5317 free (p);
5319 input = build_tree_list (build_tree_list (NULL_TREE, input),
5320 unshare_expr (TREE_VALUE (link)));
5321 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5325 link_next = NULL_TREE;
5326 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5328 link_next = TREE_CHAIN (link);
5329 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5330 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5331 oconstraints, &allows_mem, &allows_reg);
5333 /* If we can't make copies, we can only accept memory. */
5334 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5336 if (allows_mem)
5337 allows_reg = 0;
5338 else
5340 error ("impossible constraint in %<asm%>");
5341 error ("non-memory input %d must stay in memory", i);
5342 return GS_ERROR;
5346 /* If the operand is a memory input, it should be an lvalue. */
5347 if (!allows_reg && allows_mem)
5349 tree inputv = TREE_VALUE (link);
5350 STRIP_NOPS (inputv);
5351 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5352 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5353 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5354 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5355 TREE_VALUE (link) = error_mark_node;
5356 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5357 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5358 mark_addressable (TREE_VALUE (link));
5359 if (tret == GS_ERROR)
5361 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5362 input_location = EXPR_LOCATION (TREE_VALUE (link));
5363 error ("memory input %d is not directly addressable", i);
5364 ret = tret;
5367 else
5369 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5370 is_gimple_asm_val, fb_rvalue);
5371 if (tret == GS_ERROR)
5372 ret = tret;
5375 TREE_CHAIN (link) = NULL_TREE;
5376 VEC_safe_push (tree, gc, inputs, link);
5379 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5380 VEC_safe_push (tree, gc, clobbers, link);
5382 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5383 VEC_safe_push (tree, gc, labels, link);
5385 /* Do not add ASMs with errors to the gimple IL stream. */
5386 if (ret != GS_ERROR)
5388 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5389 inputs, outputs, clobbers, labels);
5391 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5392 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5394 gimplify_seq_add_stmt (pre_p, stmt);
5397 return ret;
5400 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5401 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5402 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5403 return to this function.
5405 FIXME should we complexify the prequeue handling instead? Or use flags
5406 for all the cleanups and let the optimizer tighten them up? The current
5407 code seems pretty fragile; it will break on a cleanup within any
5408 non-conditional nesting. But any such nesting would be broken, anyway;
5409 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5410 and continues out of it. We can do that at the RTL level, though, so
5411 having an optimizer to tighten up try/finally regions would be a Good
5412 Thing. */
5414 static enum gimplify_status
5415 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5417 gimple_stmt_iterator iter;
5418 gimple_seq body_sequence = NULL;
5420 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5422 /* We only care about the number of conditions between the innermost
5423 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5424 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5425 int old_conds = gimplify_ctxp->conditions;
5426 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5427 bool old_in_cleanup_point_expr = gimplify_ctxp->in_cleanup_point_expr;
5428 gimplify_ctxp->conditions = 0;
5429 gimplify_ctxp->conditional_cleanups = NULL;
5430 gimplify_ctxp->in_cleanup_point_expr = true;
5432 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5434 gimplify_ctxp->conditions = old_conds;
5435 gimplify_ctxp->conditional_cleanups = old_cleanups;
5436 gimplify_ctxp->in_cleanup_point_expr = old_in_cleanup_point_expr;
5438 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5440 gimple wce = gsi_stmt (iter);
5442 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5444 if (gsi_one_before_end_p (iter))
5446 /* Note that gsi_insert_seq_before and gsi_remove do not
5447 scan operands, unlike some other sequence mutators. */
5448 if (!gimple_wce_cleanup_eh_only (wce))
5449 gsi_insert_seq_before_without_update (&iter,
5450 gimple_wce_cleanup (wce),
5451 GSI_SAME_STMT);
5452 gsi_remove (&iter, true);
5453 break;
5455 else
5457 gimple gtry;
5458 gimple_seq seq;
5459 enum gimple_try_flags kind;
5461 if (gimple_wce_cleanup_eh_only (wce))
5462 kind = GIMPLE_TRY_CATCH;
5463 else
5464 kind = GIMPLE_TRY_FINALLY;
5465 seq = gsi_split_seq_after (iter);
5467 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5468 /* Do not use gsi_replace here, as it may scan operands.
5469 We want to do a simple structural modification only. */
5470 *gsi_stmt_ptr (&iter) = gtry;
5471 iter = gsi_start (seq);
5474 else
5475 gsi_next (&iter);
5478 gimplify_seq_add_seq (pre_p, body_sequence);
5479 if (temp)
5481 *expr_p = temp;
5482 return GS_OK;
5484 else
5486 *expr_p = NULL;
5487 return GS_ALL_DONE;
5491 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5492 is the cleanup action required. EH_ONLY is true if the cleanup should
5493 only be executed if an exception is thrown, not on normal exit. */
5495 static void
5496 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5498 gimple wce;
5499 gimple_seq cleanup_stmts = NULL;
5501 /* Errors can result in improperly nested cleanups. Which results in
5502 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5503 if (seen_error ())
5504 return;
5506 if (gimple_conditional_context ())
5508 /* If we're in a conditional context, this is more complex. We only
5509 want to run the cleanup if we actually ran the initialization that
5510 necessitates it, but we want to run it after the end of the
5511 conditional context. So we wrap the try/finally around the
5512 condition and use a flag to determine whether or not to actually
5513 run the destructor. Thus
5515 test ? f(A()) : 0
5517 becomes (approximately)
5519 flag = 0;
5520 try {
5521 if (test) { A::A(temp); flag = 1; val = f(temp); }
5522 else { val = 0; }
5523 } finally {
5524 if (flag) A::~A(temp);
5528 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5529 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5530 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5532 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5533 gimplify_stmt (&cleanup, &cleanup_stmts);
5534 wce = gimple_build_wce (cleanup_stmts);
5536 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5537 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5538 gimplify_seq_add_stmt (pre_p, ftrue);
5540 /* Because of this manipulation, and the EH edges that jump
5541 threading cannot redirect, the temporary (VAR) will appear
5542 to be used uninitialized. Don't warn. */
5543 TREE_NO_WARNING (var) = 1;
5545 else
5547 gimplify_stmt (&cleanup, &cleanup_stmts);
5548 wce = gimple_build_wce (cleanup_stmts);
5549 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5550 gimplify_seq_add_stmt (pre_p, wce);
5554 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5556 static enum gimplify_status
5557 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5559 tree targ = *expr_p;
5560 tree temp = TARGET_EXPR_SLOT (targ);
5561 tree init = TARGET_EXPR_INITIAL (targ);
5562 enum gimplify_status ret;
5564 if (init)
5566 tree cleanup = NULL_TREE;
5568 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5569 to the temps list. Handle also variable length TARGET_EXPRs. */
5570 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5572 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5573 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5574 gimplify_vla_decl (temp, pre_p);
5576 else
5577 gimple_add_tmp_var (temp);
5579 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5580 expression is supposed to initialize the slot. */
5581 if (VOID_TYPE_P (TREE_TYPE (init)))
5582 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5583 else
5585 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5586 init = init_expr;
5587 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5588 init = NULL;
5589 ggc_free (init_expr);
5591 if (ret == GS_ERROR)
5593 /* PR c++/28266 Make sure this is expanded only once. */
5594 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5595 return GS_ERROR;
5597 if (init)
5598 gimplify_and_add (init, pre_p);
5600 /* If needed, push the cleanup for the temp. */
5601 if (TARGET_EXPR_CLEANUP (targ))
5603 if (CLEANUP_EH_ONLY (targ))
5604 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5605 CLEANUP_EH_ONLY (targ), pre_p);
5606 else
5607 cleanup = TARGET_EXPR_CLEANUP (targ);
5610 /* Add a clobber for the temporary going out of scope, like
5611 gimplify_bind_expr. */
5612 if (gimplify_ctxp->in_cleanup_point_expr
5613 && needs_to_live_in_memory (temp))
5615 tree clobber = build_constructor (TREE_TYPE (temp), NULL);
5616 TREE_THIS_VOLATILE (clobber) = true;
5617 clobber = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, clobber);
5618 if (cleanup)
5619 cleanup = build2 (COMPOUND_EXPR, void_type_node, cleanup,
5620 clobber);
5621 else
5622 cleanup = clobber;
5625 if (cleanup)
5626 gimple_push_cleanup (temp, cleanup, false, pre_p);
5628 /* Only expand this once. */
5629 TREE_OPERAND (targ, 3) = init;
5630 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5632 else
5633 /* We should have expanded this before. */
5634 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5636 *expr_p = temp;
5637 return GS_OK;
5640 /* Gimplification of expression trees. */
5642 /* Gimplify an expression which appears at statement context. The
5643 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5644 NULL, a new sequence is allocated.
5646 Return true if we actually added a statement to the queue. */
5648 bool
5649 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5651 gimple_seq_node last;
5653 if (!*seq_p)
5654 *seq_p = gimple_seq_alloc ();
5656 last = gimple_seq_last (*seq_p);
5657 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5658 return last != gimple_seq_last (*seq_p);
5661 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5662 to CTX. If entries already exist, force them to be some flavor of private.
5663 If there is no enclosing parallel, do nothing. */
5665 void
5666 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5668 splay_tree_node n;
5670 if (decl == NULL || !DECL_P (decl))
5671 return;
5675 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5676 if (n != NULL)
5678 if (n->value & GOVD_SHARED)
5679 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5680 else
5681 return;
5683 else if (ctx->region_type != ORT_WORKSHARE)
5684 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5686 ctx = ctx->outer_context;
5688 while (ctx);
5691 /* Similarly for each of the type sizes of TYPE. */
5693 static void
5694 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5696 if (type == NULL || type == error_mark_node)
5697 return;
5698 type = TYPE_MAIN_VARIANT (type);
5700 if (pointer_set_insert (ctx->privatized_types, type))
5701 return;
5703 switch (TREE_CODE (type))
5705 case INTEGER_TYPE:
5706 case ENUMERAL_TYPE:
5707 case BOOLEAN_TYPE:
5708 case REAL_TYPE:
5709 case FIXED_POINT_TYPE:
5710 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5711 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5712 break;
5714 case ARRAY_TYPE:
5715 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5716 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5717 break;
5719 case RECORD_TYPE:
5720 case UNION_TYPE:
5721 case QUAL_UNION_TYPE:
5723 tree field;
5724 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5725 if (TREE_CODE (field) == FIELD_DECL)
5727 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5728 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5731 break;
5733 case POINTER_TYPE:
5734 case REFERENCE_TYPE:
5735 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5736 break;
5738 default:
5739 break;
5742 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5743 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5744 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5747 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5749 static void
5750 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5752 splay_tree_node n;
5753 unsigned int nflags;
5754 tree t;
5756 if (error_operand_p (decl))
5757 return;
5759 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5760 there are constructors involved somewhere. */
5761 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5762 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5763 flags |= GOVD_SEEN;
5765 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5766 if (n != NULL)
5768 /* We shouldn't be re-adding the decl with the same data
5769 sharing class. */
5770 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5771 /* The only combination of data sharing classes we should see is
5772 FIRSTPRIVATE and LASTPRIVATE. */
5773 nflags = n->value | flags;
5774 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5775 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5776 n->value = nflags;
5777 return;
5780 /* When adding a variable-sized variable, we have to handle all sorts
5781 of additional bits of data: the pointer replacement variable, and
5782 the parameters of the type. */
5783 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5785 /* Add the pointer replacement variable as PRIVATE if the variable
5786 replacement is private, else FIRSTPRIVATE since we'll need the
5787 address of the original variable either for SHARED, or for the
5788 copy into or out of the context. */
5789 if (!(flags & GOVD_LOCAL))
5791 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5792 nflags |= flags & GOVD_SEEN;
5793 t = DECL_VALUE_EXPR (decl);
5794 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5795 t = TREE_OPERAND (t, 0);
5796 gcc_assert (DECL_P (t));
5797 omp_add_variable (ctx, t, nflags);
5800 /* Add all of the variable and type parameters (which should have
5801 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5802 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5803 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5804 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5806 /* The variable-sized variable itself is never SHARED, only some form
5807 of PRIVATE. The sharing would take place via the pointer variable
5808 which we remapped above. */
5809 if (flags & GOVD_SHARED)
5810 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5811 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5813 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5814 alloca statement we generate for the variable, so make sure it
5815 is available. This isn't automatically needed for the SHARED
5816 case, since we won't be allocating local storage then.
5817 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5818 in this case omp_notice_variable will be called later
5819 on when it is gimplified. */
5820 else if (! (flags & GOVD_LOCAL)
5821 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5822 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5824 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5826 gcc_assert ((flags & GOVD_LOCAL) == 0);
5827 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5829 /* Similar to the direct variable sized case above, we'll need the
5830 size of references being privatized. */
5831 if ((flags & GOVD_SHARED) == 0)
5833 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5834 if (TREE_CODE (t) != INTEGER_CST)
5835 omp_notice_variable (ctx, t, true);
5839 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5842 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5843 This just prints out diagnostics about threadprivate variable uses
5844 in untied tasks. If DECL2 is non-NULL, prevent this warning
5845 on that variable. */
5847 static bool
5848 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5849 tree decl2)
5851 splay_tree_node n;
5853 if (ctx->region_type != ORT_UNTIED_TASK)
5854 return false;
5855 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5856 if (n == NULL)
5858 error ("threadprivate variable %qE used in untied task",
5859 DECL_NAME (decl));
5860 error_at (ctx->location, "enclosing task");
5861 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5863 if (decl2)
5864 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5865 return false;
5868 /* Record the fact that DECL was used within the OpenMP context CTX.
5869 IN_CODE is true when real code uses DECL, and false when we should
5870 merely emit default(none) errors. Return true if DECL is going to
5871 be remapped and thus DECL shouldn't be gimplified into its
5872 DECL_VALUE_EXPR (if any). */
5874 static bool
5875 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5877 splay_tree_node n;
5878 unsigned flags = in_code ? GOVD_SEEN : 0;
5879 bool ret = false, shared;
5881 if (error_operand_p (decl))
5882 return false;
5884 /* Threadprivate variables are predetermined. */
5885 if (is_global_var (decl))
5887 if (DECL_THREAD_LOCAL_P (decl))
5888 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5890 if (DECL_HAS_VALUE_EXPR_P (decl))
5892 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5894 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5895 return omp_notice_threadprivate_variable (ctx, decl, value);
5899 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5900 if (n == NULL)
5902 enum omp_clause_default_kind default_kind, kind;
5903 struct gimplify_omp_ctx *octx;
5905 if (ctx->region_type == ORT_WORKSHARE)
5906 goto do_outer;
5908 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5909 remapped firstprivate instead of shared. To some extent this is
5910 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5911 default_kind = ctx->default_kind;
5912 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5913 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5914 default_kind = kind;
5916 switch (default_kind)
5918 case OMP_CLAUSE_DEFAULT_NONE:
5919 error ("%qE not specified in enclosing parallel",
5920 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5921 if ((ctx->region_type & ORT_TASK) != 0)
5922 error_at (ctx->location, "enclosing task");
5923 else
5924 error_at (ctx->location, "enclosing parallel");
5925 /* FALLTHRU */
5926 case OMP_CLAUSE_DEFAULT_SHARED:
5927 flags |= GOVD_SHARED;
5928 break;
5929 case OMP_CLAUSE_DEFAULT_PRIVATE:
5930 flags |= GOVD_PRIVATE;
5931 break;
5932 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5933 flags |= GOVD_FIRSTPRIVATE;
5934 break;
5935 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5936 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5937 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5938 if (ctx->outer_context)
5939 omp_notice_variable (ctx->outer_context, decl, in_code);
5940 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5942 splay_tree_node n2;
5944 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5945 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5947 flags |= GOVD_FIRSTPRIVATE;
5948 break;
5950 if ((octx->region_type & ORT_PARALLEL) != 0)
5951 break;
5953 if (flags & GOVD_FIRSTPRIVATE)
5954 break;
5955 if (octx == NULL
5956 && (TREE_CODE (decl) == PARM_DECL
5957 || (!is_global_var (decl)
5958 && DECL_CONTEXT (decl) == current_function_decl)))
5960 flags |= GOVD_FIRSTPRIVATE;
5961 break;
5963 flags |= GOVD_SHARED;
5964 break;
5965 default:
5966 gcc_unreachable ();
5969 if ((flags & GOVD_PRIVATE)
5970 && lang_hooks.decls.omp_private_outer_ref (decl))
5971 flags |= GOVD_PRIVATE_OUTER_REF;
5973 omp_add_variable (ctx, decl, flags);
5975 shared = (flags & GOVD_SHARED) != 0;
5976 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5977 goto do_outer;
5980 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
5981 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
5982 && DECL_SIZE (decl)
5983 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5985 splay_tree_node n2;
5986 tree t = DECL_VALUE_EXPR (decl);
5987 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5988 t = TREE_OPERAND (t, 0);
5989 gcc_assert (DECL_P (t));
5990 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
5991 n2->value |= GOVD_SEEN;
5994 shared = ((flags | n->value) & GOVD_SHARED) != 0;
5995 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5997 /* If nothing changed, there's nothing left to do. */
5998 if ((n->value & flags) == flags)
5999 return ret;
6000 flags |= n->value;
6001 n->value = flags;
6003 do_outer:
6004 /* If the variable is private in the current context, then we don't
6005 need to propagate anything to an outer context. */
6006 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
6007 return ret;
6008 if (ctx->outer_context
6009 && omp_notice_variable (ctx->outer_context, decl, in_code))
6010 return true;
6011 return ret;
6014 /* Verify that DECL is private within CTX. If there's specific information
6015 to the contrary in the innermost scope, generate an error. */
6017 static bool
6018 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
6020 splay_tree_node n;
6022 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
6023 if (n != NULL)
6025 if (n->value & GOVD_SHARED)
6027 if (ctx == gimplify_omp_ctxp)
6029 error ("iteration variable %qE should be private",
6030 DECL_NAME (decl));
6031 n->value = GOVD_PRIVATE;
6032 return true;
6034 else
6035 return false;
6037 else if ((n->value & GOVD_EXPLICIT) != 0
6038 && (ctx == gimplify_omp_ctxp
6039 || (ctx->region_type == ORT_COMBINED_PARALLEL
6040 && gimplify_omp_ctxp->outer_context == ctx)))
6042 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
6043 error ("iteration variable %qE should not be firstprivate",
6044 DECL_NAME (decl));
6045 else if ((n->value & GOVD_REDUCTION) != 0)
6046 error ("iteration variable %qE should not be reduction",
6047 DECL_NAME (decl));
6049 return (ctx == gimplify_omp_ctxp
6050 || (ctx->region_type == ORT_COMBINED_PARALLEL
6051 && gimplify_omp_ctxp->outer_context == ctx));
6054 if (ctx->region_type != ORT_WORKSHARE)
6055 return false;
6056 else if (ctx->outer_context)
6057 return omp_is_private (ctx->outer_context, decl);
6058 return false;
6061 /* Return true if DECL is private within a parallel region
6062 that binds to the current construct's context or in parallel
6063 region's REDUCTION clause. */
6065 static bool
6066 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
6068 splay_tree_node n;
6072 ctx = ctx->outer_context;
6073 if (ctx == NULL)
6074 return !(is_global_var (decl)
6075 /* References might be private, but might be shared too. */
6076 || lang_hooks.decls.omp_privatize_by_reference (decl));
6078 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6079 if (n != NULL)
6080 return (n->value & GOVD_SHARED) == 0;
6082 while (ctx->region_type == ORT_WORKSHARE);
6083 return false;
6086 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
6087 and previous omp contexts. */
6089 static void
6090 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
6091 enum omp_region_type region_type)
6093 struct gimplify_omp_ctx *ctx, *outer_ctx;
6094 struct gimplify_ctx gctx;
6095 tree c;
6097 ctx = new_omp_context (region_type);
6098 outer_ctx = ctx->outer_context;
6100 while ((c = *list_p) != NULL)
6102 bool remove = false;
6103 bool notice_outer = true;
6104 const char *check_non_private = NULL;
6105 unsigned int flags;
6106 tree decl;
6108 switch (OMP_CLAUSE_CODE (c))
6110 case OMP_CLAUSE_PRIVATE:
6111 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
6112 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
6114 flags |= GOVD_PRIVATE_OUTER_REF;
6115 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
6117 else
6118 notice_outer = false;
6119 goto do_add;
6120 case OMP_CLAUSE_SHARED:
6121 flags = GOVD_SHARED | GOVD_EXPLICIT;
6122 goto do_add;
6123 case OMP_CLAUSE_FIRSTPRIVATE:
6124 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
6125 check_non_private = "firstprivate";
6126 goto do_add;
6127 case OMP_CLAUSE_LASTPRIVATE:
6128 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
6129 check_non_private = "lastprivate";
6130 goto do_add;
6131 case OMP_CLAUSE_REDUCTION:
6132 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
6133 check_non_private = "reduction";
6134 goto do_add;
6136 do_add:
6137 decl = OMP_CLAUSE_DECL (c);
6138 if (error_operand_p (decl))
6140 remove = true;
6141 break;
6143 omp_add_variable (ctx, decl, flags);
6144 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6145 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
6147 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
6148 GOVD_LOCAL | GOVD_SEEN);
6149 gimplify_omp_ctxp = ctx;
6150 push_gimplify_context (&gctx);
6152 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = gimple_seq_alloc ();
6153 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = gimple_seq_alloc ();
6155 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
6156 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
6157 pop_gimplify_context
6158 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
6159 push_gimplify_context (&gctx);
6160 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
6161 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
6162 pop_gimplify_context
6163 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
6164 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
6165 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
6167 gimplify_omp_ctxp = outer_ctx;
6169 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6170 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
6172 gimplify_omp_ctxp = ctx;
6173 push_gimplify_context (&gctx);
6174 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
6176 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
6177 NULL, NULL);
6178 TREE_SIDE_EFFECTS (bind) = 1;
6179 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
6180 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
6182 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
6183 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6184 pop_gimplify_context
6185 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
6186 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
6188 gimplify_omp_ctxp = outer_ctx;
6190 if (notice_outer)
6191 goto do_notice;
6192 break;
6194 case OMP_CLAUSE_COPYIN:
6195 case OMP_CLAUSE_COPYPRIVATE:
6196 decl = OMP_CLAUSE_DECL (c);
6197 if (error_operand_p (decl))
6199 remove = true;
6200 break;
6202 do_notice:
6203 if (outer_ctx)
6204 omp_notice_variable (outer_ctx, decl, true);
6205 if (check_non_private
6206 && region_type == ORT_WORKSHARE
6207 && omp_check_private (ctx, decl))
6209 error ("%s variable %qE is private in outer context",
6210 check_non_private, DECL_NAME (decl));
6211 remove = true;
6213 break;
6215 case OMP_CLAUSE_FINAL:
6216 case OMP_CLAUSE_IF:
6217 OMP_CLAUSE_OPERAND (c, 0)
6218 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
6219 /* Fall through. */
6221 case OMP_CLAUSE_SCHEDULE:
6222 case OMP_CLAUSE_NUM_THREADS:
6223 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
6224 is_gimple_val, fb_rvalue) == GS_ERROR)
6225 remove = true;
6226 break;
6228 case OMP_CLAUSE_NOWAIT:
6229 case OMP_CLAUSE_ORDERED:
6230 case OMP_CLAUSE_UNTIED:
6231 case OMP_CLAUSE_COLLAPSE:
6232 case OMP_CLAUSE_MERGEABLE:
6233 break;
6235 case OMP_CLAUSE_DEFAULT:
6236 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
6237 break;
6239 default:
6240 gcc_unreachable ();
6243 if (remove)
6244 *list_p = OMP_CLAUSE_CHAIN (c);
6245 else
6246 list_p = &OMP_CLAUSE_CHAIN (c);
6249 gimplify_omp_ctxp = ctx;
6252 /* For all variables that were not actually used within the context,
6253 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6255 static int
6256 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
6258 tree *list_p = (tree *) data;
6259 tree decl = (tree) n->key;
6260 unsigned flags = n->value;
6261 enum omp_clause_code code;
6262 tree clause;
6263 bool private_debug;
6265 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
6266 return 0;
6267 if ((flags & GOVD_SEEN) == 0)
6268 return 0;
6269 if (flags & GOVD_DEBUG_PRIVATE)
6271 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
6272 private_debug = true;
6274 else
6275 private_debug
6276 = lang_hooks.decls.omp_private_debug_clause (decl,
6277 !!(flags & GOVD_SHARED));
6278 if (private_debug)
6279 code = OMP_CLAUSE_PRIVATE;
6280 else if (flags & GOVD_SHARED)
6282 if (is_global_var (decl))
6284 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6285 while (ctx != NULL)
6287 splay_tree_node on
6288 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6289 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6290 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6291 break;
6292 ctx = ctx->outer_context;
6294 if (ctx == NULL)
6295 return 0;
6297 code = OMP_CLAUSE_SHARED;
6299 else if (flags & GOVD_PRIVATE)
6300 code = OMP_CLAUSE_PRIVATE;
6301 else if (flags & GOVD_FIRSTPRIVATE)
6302 code = OMP_CLAUSE_FIRSTPRIVATE;
6303 else
6304 gcc_unreachable ();
6306 clause = build_omp_clause (input_location, code);
6307 OMP_CLAUSE_DECL (clause) = decl;
6308 OMP_CLAUSE_CHAIN (clause) = *list_p;
6309 if (private_debug)
6310 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6311 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6312 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6313 *list_p = clause;
6314 lang_hooks.decls.omp_finish_clause (clause);
6316 return 0;
6319 static void
6320 gimplify_adjust_omp_clauses (tree *list_p)
6322 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6323 tree c, decl;
6325 while ((c = *list_p) != NULL)
6327 splay_tree_node n;
6328 bool remove = false;
6330 switch (OMP_CLAUSE_CODE (c))
6332 case OMP_CLAUSE_PRIVATE:
6333 case OMP_CLAUSE_SHARED:
6334 case OMP_CLAUSE_FIRSTPRIVATE:
6335 decl = OMP_CLAUSE_DECL (c);
6336 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6337 remove = !(n->value & GOVD_SEEN);
6338 if (! remove)
6340 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6341 if ((n->value & GOVD_DEBUG_PRIVATE)
6342 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6344 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6345 || ((n->value & GOVD_DATA_SHARE_CLASS)
6346 == GOVD_PRIVATE));
6347 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6348 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6351 break;
6353 case OMP_CLAUSE_LASTPRIVATE:
6354 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6355 accurately reflect the presence of a FIRSTPRIVATE clause. */
6356 decl = OMP_CLAUSE_DECL (c);
6357 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6358 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6359 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6360 break;
6362 case OMP_CLAUSE_REDUCTION:
6363 case OMP_CLAUSE_COPYIN:
6364 case OMP_CLAUSE_COPYPRIVATE:
6365 case OMP_CLAUSE_IF:
6366 case OMP_CLAUSE_NUM_THREADS:
6367 case OMP_CLAUSE_SCHEDULE:
6368 case OMP_CLAUSE_NOWAIT:
6369 case OMP_CLAUSE_ORDERED:
6370 case OMP_CLAUSE_DEFAULT:
6371 case OMP_CLAUSE_UNTIED:
6372 case OMP_CLAUSE_COLLAPSE:
6373 case OMP_CLAUSE_FINAL:
6374 case OMP_CLAUSE_MERGEABLE:
6375 break;
6377 default:
6378 gcc_unreachable ();
6381 if (remove)
6382 *list_p = OMP_CLAUSE_CHAIN (c);
6383 else
6384 list_p = &OMP_CLAUSE_CHAIN (c);
6387 /* Add in any implicit data sharing. */
6388 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6390 gimplify_omp_ctxp = ctx->outer_context;
6391 delete_omp_context (ctx);
6394 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6395 gimplification of the body, as well as scanning the body for used
6396 variables. We need to do this scan now, because variable-sized
6397 decls will be decomposed during gimplification. */
6399 static void
6400 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6402 tree expr = *expr_p;
6403 gimple g;
6404 gimple_seq body = NULL;
6405 struct gimplify_ctx gctx;
6407 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6408 OMP_PARALLEL_COMBINED (expr)
6409 ? ORT_COMBINED_PARALLEL
6410 : ORT_PARALLEL);
6412 push_gimplify_context (&gctx);
6414 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6415 if (gimple_code (g) == GIMPLE_BIND)
6416 pop_gimplify_context (g);
6417 else
6418 pop_gimplify_context (NULL);
6420 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6422 g = gimple_build_omp_parallel (body,
6423 OMP_PARALLEL_CLAUSES (expr),
6424 NULL_TREE, NULL_TREE);
6425 if (OMP_PARALLEL_COMBINED (expr))
6426 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6427 gimplify_seq_add_stmt (pre_p, g);
6428 *expr_p = NULL_TREE;
6431 /* Gimplify the contents of an OMP_TASK statement. This involves
6432 gimplification of the body, as well as scanning the body for used
6433 variables. We need to do this scan now, because variable-sized
6434 decls will be decomposed during gimplification. */
6436 static void
6437 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6439 tree expr = *expr_p;
6440 gimple g;
6441 gimple_seq body = NULL;
6442 struct gimplify_ctx gctx;
6444 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6445 find_omp_clause (OMP_TASK_CLAUSES (expr),
6446 OMP_CLAUSE_UNTIED)
6447 ? ORT_UNTIED_TASK : ORT_TASK);
6449 push_gimplify_context (&gctx);
6451 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6452 if (gimple_code (g) == GIMPLE_BIND)
6453 pop_gimplify_context (g);
6454 else
6455 pop_gimplify_context (NULL);
6457 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6459 g = gimple_build_omp_task (body,
6460 OMP_TASK_CLAUSES (expr),
6461 NULL_TREE, NULL_TREE,
6462 NULL_TREE, NULL_TREE, NULL_TREE);
6463 gimplify_seq_add_stmt (pre_p, g);
6464 *expr_p = NULL_TREE;
6467 /* Gimplify the gross structure of an OMP_FOR statement. */
6469 static enum gimplify_status
6470 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6472 tree for_stmt, decl, var, t;
6473 enum gimplify_status ret = GS_ALL_DONE;
6474 enum gimplify_status tret;
6475 gimple gfor;
6476 gimple_seq for_body, for_pre_body;
6477 int i;
6479 for_stmt = *expr_p;
6481 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6482 ORT_WORKSHARE);
6484 /* Handle OMP_FOR_INIT. */
6485 for_pre_body = NULL;
6486 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6487 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6489 for_body = gimple_seq_alloc ();
6490 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6491 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6492 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6493 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6494 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6496 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6497 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6498 decl = TREE_OPERAND (t, 0);
6499 gcc_assert (DECL_P (decl));
6500 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6501 || POINTER_TYPE_P (TREE_TYPE (decl)));
6503 /* Make sure the iteration variable is private. */
6504 if (omp_is_private (gimplify_omp_ctxp, decl))
6505 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6506 else
6507 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6509 /* If DECL is not a gimple register, create a temporary variable to act
6510 as an iteration counter. This is valid, since DECL cannot be
6511 modified in the body of the loop. */
6512 if (!is_gimple_reg (decl))
6514 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6515 TREE_OPERAND (t, 0) = var;
6517 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6519 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6521 else
6522 var = decl;
6524 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6525 is_gimple_val, fb_rvalue);
6526 ret = MIN (ret, tret);
6527 if (ret == GS_ERROR)
6528 return ret;
6530 /* Handle OMP_FOR_COND. */
6531 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6532 gcc_assert (COMPARISON_CLASS_P (t));
6533 gcc_assert (TREE_OPERAND (t, 0) == decl);
6535 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6536 is_gimple_val, fb_rvalue);
6537 ret = MIN (ret, tret);
6539 /* Handle OMP_FOR_INCR. */
6540 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6541 switch (TREE_CODE (t))
6543 case PREINCREMENT_EXPR:
6544 case POSTINCREMENT_EXPR:
6545 t = build_int_cst (TREE_TYPE (decl), 1);
6546 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6547 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6548 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6549 break;
6551 case PREDECREMENT_EXPR:
6552 case POSTDECREMENT_EXPR:
6553 t = build_int_cst (TREE_TYPE (decl), -1);
6554 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6555 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6556 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6557 break;
6559 case MODIFY_EXPR:
6560 gcc_assert (TREE_OPERAND (t, 0) == decl);
6561 TREE_OPERAND (t, 0) = var;
6563 t = TREE_OPERAND (t, 1);
6564 switch (TREE_CODE (t))
6566 case PLUS_EXPR:
6567 if (TREE_OPERAND (t, 1) == decl)
6569 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6570 TREE_OPERAND (t, 0) = var;
6571 break;
6574 /* Fallthru. */
6575 case MINUS_EXPR:
6576 case POINTER_PLUS_EXPR:
6577 gcc_assert (TREE_OPERAND (t, 0) == decl);
6578 TREE_OPERAND (t, 0) = var;
6579 break;
6580 default:
6581 gcc_unreachable ();
6584 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6585 is_gimple_val, fb_rvalue);
6586 ret = MIN (ret, tret);
6587 break;
6589 default:
6590 gcc_unreachable ();
6593 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6595 tree c;
6596 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6597 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6598 && OMP_CLAUSE_DECL (c) == decl
6599 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6601 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6602 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6603 gcc_assert (TREE_OPERAND (t, 0) == var);
6604 t = TREE_OPERAND (t, 1);
6605 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6606 || TREE_CODE (t) == MINUS_EXPR
6607 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6608 gcc_assert (TREE_OPERAND (t, 0) == var);
6609 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6610 TREE_OPERAND (t, 1));
6611 gimplify_assign (decl, t,
6612 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6617 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6619 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6621 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6622 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6623 for_pre_body);
6625 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6627 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6628 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6629 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6630 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6631 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6632 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6633 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6634 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6637 gimplify_seq_add_stmt (pre_p, gfor);
6638 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6641 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6642 In particular, OMP_SECTIONS and OMP_SINGLE. */
6644 static void
6645 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6647 tree expr = *expr_p;
6648 gimple stmt;
6649 gimple_seq body = NULL;
6651 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6652 gimplify_and_add (OMP_BODY (expr), &body);
6653 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6655 if (TREE_CODE (expr) == OMP_SECTIONS)
6656 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6657 else if (TREE_CODE (expr) == OMP_SINGLE)
6658 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6659 else
6660 gcc_unreachable ();
6662 gimplify_seq_add_stmt (pre_p, stmt);
6665 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6666 stabilized the lhs of the atomic operation as *ADDR. Return true if
6667 EXPR is this stabilized form. */
6669 static bool
6670 goa_lhs_expr_p (tree expr, tree addr)
6672 /* Also include casts to other type variants. The C front end is fond
6673 of adding these for e.g. volatile variables. This is like
6674 STRIP_TYPE_NOPS but includes the main variant lookup. */
6675 STRIP_USELESS_TYPE_CONVERSION (expr);
6677 if (TREE_CODE (expr) == INDIRECT_REF)
6679 expr = TREE_OPERAND (expr, 0);
6680 while (expr != addr
6681 && (CONVERT_EXPR_P (expr)
6682 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6683 && TREE_CODE (expr) == TREE_CODE (addr)
6684 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6686 expr = TREE_OPERAND (expr, 0);
6687 addr = TREE_OPERAND (addr, 0);
6689 if (expr == addr)
6690 return true;
6691 return (TREE_CODE (addr) == ADDR_EXPR
6692 && TREE_CODE (expr) == ADDR_EXPR
6693 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6695 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6696 return true;
6697 return false;
6700 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6701 expression does not involve the lhs, evaluate it into a temporary.
6702 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6703 or -1 if an error was encountered. */
6705 static int
6706 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6707 tree lhs_var)
6709 tree expr = *expr_p;
6710 int saw_lhs;
6712 if (goa_lhs_expr_p (expr, lhs_addr))
6714 *expr_p = lhs_var;
6715 return 1;
6717 if (is_gimple_val (expr))
6718 return 0;
6720 saw_lhs = 0;
6721 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6723 case tcc_binary:
6724 case tcc_comparison:
6725 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6726 lhs_var);
6727 case tcc_unary:
6728 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6729 lhs_var);
6730 break;
6731 case tcc_expression:
6732 switch (TREE_CODE (expr))
6734 case TRUTH_ANDIF_EXPR:
6735 case TRUTH_ORIF_EXPR:
6736 case TRUTH_AND_EXPR:
6737 case TRUTH_OR_EXPR:
6738 case TRUTH_XOR_EXPR:
6739 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6740 lhs_addr, lhs_var);
6741 case TRUTH_NOT_EXPR:
6742 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6743 lhs_addr, lhs_var);
6744 break;
6745 case COMPOUND_EXPR:
6746 /* Break out any preevaluations from cp_build_modify_expr. */
6747 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6748 expr = TREE_OPERAND (expr, 1))
6749 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6750 *expr_p = expr;
6751 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6752 default:
6753 break;
6755 break;
6756 default:
6757 break;
6760 if (saw_lhs == 0)
6762 enum gimplify_status gs;
6763 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6764 if (gs != GS_ALL_DONE)
6765 saw_lhs = -1;
6768 return saw_lhs;
6771 /* Gimplify an OMP_ATOMIC statement. */
6773 static enum gimplify_status
6774 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6776 tree addr = TREE_OPERAND (*expr_p, 0);
6777 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6778 ? NULL : TREE_OPERAND (*expr_p, 1);
6779 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6780 tree tmp_load;
6781 gimple loadstmt, storestmt;
6783 tmp_load = create_tmp_reg (type, NULL);
6784 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6785 return GS_ERROR;
6787 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6788 != GS_ALL_DONE)
6789 return GS_ERROR;
6791 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6792 gimplify_seq_add_stmt (pre_p, loadstmt);
6793 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6794 != GS_ALL_DONE)
6795 return GS_ERROR;
6797 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6798 rhs = tmp_load;
6799 storestmt = gimple_build_omp_atomic_store (rhs);
6800 gimplify_seq_add_stmt (pre_p, storestmt);
6801 switch (TREE_CODE (*expr_p))
6803 case OMP_ATOMIC_READ:
6804 case OMP_ATOMIC_CAPTURE_OLD:
6805 *expr_p = tmp_load;
6806 gimple_omp_atomic_set_need_value (loadstmt);
6807 break;
6808 case OMP_ATOMIC_CAPTURE_NEW:
6809 *expr_p = rhs;
6810 gimple_omp_atomic_set_need_value (storestmt);
6811 break;
6812 default:
6813 *expr_p = NULL;
6814 break;
6817 return GS_ALL_DONE;
6820 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6821 body, and adding some EH bits. */
6823 static enum gimplify_status
6824 gimplify_transaction (tree *expr_p, gimple_seq *pre_p)
6826 tree expr = *expr_p, temp, tbody = TRANSACTION_EXPR_BODY (expr);
6827 gimple g;
6828 gimple_seq body = NULL;
6829 struct gimplify_ctx gctx;
6830 int subcode = 0;
6832 /* Wrap the transaction body in a BIND_EXPR so we have a context
6833 where to put decls for OpenMP. */
6834 if (TREE_CODE (tbody) != BIND_EXPR)
6836 tree bind = build3 (BIND_EXPR, void_type_node, NULL, tbody, NULL);
6837 TREE_SIDE_EFFECTS (bind) = 1;
6838 SET_EXPR_LOCATION (bind, EXPR_LOCATION (tbody));
6839 TRANSACTION_EXPR_BODY (expr) = bind;
6842 push_gimplify_context (&gctx);
6843 temp = voidify_wrapper_expr (*expr_p, NULL);
6845 g = gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr), &body);
6846 pop_gimplify_context (g);
6848 g = gimple_build_transaction (body, NULL);
6849 if (TRANSACTION_EXPR_OUTER (expr))
6850 subcode = GTMA_IS_OUTER;
6851 else if (TRANSACTION_EXPR_RELAXED (expr))
6852 subcode = GTMA_IS_RELAXED;
6853 gimple_transaction_set_subcode (g, subcode);
6855 gimplify_seq_add_stmt (pre_p, g);
6857 if (temp)
6859 *expr_p = temp;
6860 return GS_OK;
6863 *expr_p = NULL_TREE;
6864 return GS_ALL_DONE;
6867 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6868 expression produces a value to be used as an operand inside a GIMPLE
6869 statement, the value will be stored back in *EXPR_P. This value will
6870 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6871 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6872 emitted in PRE_P and POST_P.
6874 Additionally, this process may overwrite parts of the input
6875 expression during gimplification. Ideally, it should be
6876 possible to do non-destructive gimplification.
6878 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6879 the expression needs to evaluate to a value to be used as
6880 an operand in a GIMPLE statement, this value will be stored in
6881 *EXPR_P on exit. This happens when the caller specifies one
6882 of fb_lvalue or fb_rvalue fallback flags.
6884 PRE_P will contain the sequence of GIMPLE statements corresponding
6885 to the evaluation of EXPR and all the side-effects that must
6886 be executed before the main expression. On exit, the last
6887 statement of PRE_P is the core statement being gimplified. For
6888 instance, when gimplifying 'if (++a)' the last statement in
6889 PRE_P will be 'if (t.1)' where t.1 is the result of
6890 pre-incrementing 'a'.
6892 POST_P will contain the sequence of GIMPLE statements corresponding
6893 to the evaluation of all the side-effects that must be executed
6894 after the main expression. If this is NULL, the post
6895 side-effects are stored at the end of PRE_P.
6897 The reason why the output is split in two is to handle post
6898 side-effects explicitly. In some cases, an expression may have
6899 inner and outer post side-effects which need to be emitted in
6900 an order different from the one given by the recursive
6901 traversal. For instance, for the expression (*p--)++ the post
6902 side-effects of '--' must actually occur *after* the post
6903 side-effects of '++'. However, gimplification will first visit
6904 the inner expression, so if a separate POST sequence was not
6905 used, the resulting sequence would be:
6907 1 t.1 = *p
6908 2 p = p - 1
6909 3 t.2 = t.1 + 1
6910 4 *p = t.2
6912 However, the post-decrement operation in line #2 must not be
6913 evaluated until after the store to *p at line #4, so the
6914 correct sequence should be:
6916 1 t.1 = *p
6917 2 t.2 = t.1 + 1
6918 3 *p = t.2
6919 4 p = p - 1
6921 So, by specifying a separate post queue, it is possible
6922 to emit the post side-effects in the correct order.
6923 If POST_P is NULL, an internal queue will be used. Before
6924 returning to the caller, the sequence POST_P is appended to
6925 the main output sequence PRE_P.
6927 GIMPLE_TEST_F points to a function that takes a tree T and
6928 returns nonzero if T is in the GIMPLE form requested by the
6929 caller. The GIMPLE predicates are in gimple.c.
6931 FALLBACK tells the function what sort of a temporary we want if
6932 gimplification cannot produce an expression that complies with
6933 GIMPLE_TEST_F.
6935 fb_none means that no temporary should be generated
6936 fb_rvalue means that an rvalue is OK to generate
6937 fb_lvalue means that an lvalue is OK to generate
6938 fb_either means that either is OK, but an lvalue is preferable.
6939 fb_mayfail means that gimplification may fail (in which case
6940 GS_ERROR will be returned)
6942 The return value is either GS_ERROR or GS_ALL_DONE, since this
6943 function iterates until EXPR is completely gimplified or an error
6944 occurs. */
6946 enum gimplify_status
6947 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6948 bool (*gimple_test_f) (tree), fallback_t fallback)
6950 tree tmp;
6951 gimple_seq internal_pre = NULL;
6952 gimple_seq internal_post = NULL;
6953 tree save_expr;
6954 bool is_statement;
6955 location_t saved_location;
6956 enum gimplify_status ret;
6957 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6959 save_expr = *expr_p;
6960 if (save_expr == NULL_TREE)
6961 return GS_ALL_DONE;
6963 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
6964 is_statement = gimple_test_f == is_gimple_stmt;
6965 if (is_statement)
6966 gcc_assert (pre_p);
6968 /* Consistency checks. */
6969 if (gimple_test_f == is_gimple_reg)
6970 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
6971 else if (gimple_test_f == is_gimple_val
6972 || gimple_test_f == is_gimple_call_addr
6973 || gimple_test_f == is_gimple_condexpr
6974 || gimple_test_f == is_gimple_mem_rhs
6975 || gimple_test_f == is_gimple_mem_rhs_or_call
6976 || gimple_test_f == is_gimple_reg_rhs
6977 || gimple_test_f == is_gimple_reg_rhs_or_call
6978 || gimple_test_f == is_gimple_asm_val
6979 || gimple_test_f == is_gimple_mem_ref_addr)
6980 gcc_assert (fallback & fb_rvalue);
6981 else if (gimple_test_f == is_gimple_min_lval
6982 || gimple_test_f == is_gimple_lvalue)
6983 gcc_assert (fallback & fb_lvalue);
6984 else if (gimple_test_f == is_gimple_addressable)
6985 gcc_assert (fallback & fb_either);
6986 else if (gimple_test_f == is_gimple_stmt)
6987 gcc_assert (fallback == fb_none);
6988 else
6990 /* We should have recognized the GIMPLE_TEST_F predicate to
6991 know what kind of fallback to use in case a temporary is
6992 needed to hold the value or address of *EXPR_P. */
6993 gcc_unreachable ();
6996 /* We used to check the predicate here and return immediately if it
6997 succeeds. This is wrong; the design is for gimplification to be
6998 idempotent, and for the predicates to only test for valid forms, not
6999 whether they are fully simplified. */
7000 if (pre_p == NULL)
7001 pre_p = &internal_pre;
7003 if (post_p == NULL)
7004 post_p = &internal_post;
7006 /* Remember the last statements added to PRE_P and POST_P. Every
7007 new statement added by the gimplification helpers needs to be
7008 annotated with location information. To centralize the
7009 responsibility, we remember the last statement that had been
7010 added to both queues before gimplifying *EXPR_P. If
7011 gimplification produces new statements in PRE_P and POST_P, those
7012 statements will be annotated with the same location information
7013 as *EXPR_P. */
7014 pre_last_gsi = gsi_last (*pre_p);
7015 post_last_gsi = gsi_last (*post_p);
7017 saved_location = input_location;
7018 if (save_expr != error_mark_node
7019 && EXPR_HAS_LOCATION (*expr_p))
7020 input_location = EXPR_LOCATION (*expr_p);
7022 /* Loop over the specific gimplifiers until the toplevel node
7023 remains the same. */
7026 /* Strip away as many useless type conversions as possible
7027 at the toplevel. */
7028 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
7030 /* Remember the expr. */
7031 save_expr = *expr_p;
7033 /* Die, die, die, my darling. */
7034 if (save_expr == error_mark_node
7035 || (TREE_TYPE (save_expr)
7036 && TREE_TYPE (save_expr) == error_mark_node))
7038 ret = GS_ERROR;
7039 break;
7042 /* Do any language-specific gimplification. */
7043 ret = ((enum gimplify_status)
7044 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
7045 if (ret == GS_OK)
7047 if (*expr_p == NULL_TREE)
7048 break;
7049 if (*expr_p != save_expr)
7050 continue;
7052 else if (ret != GS_UNHANDLED)
7053 break;
7055 /* Make sure that all the cases set 'ret' appropriately. */
7056 ret = GS_UNHANDLED;
7057 switch (TREE_CODE (*expr_p))
7059 /* First deal with the special cases. */
7061 case POSTINCREMENT_EXPR:
7062 case POSTDECREMENT_EXPR:
7063 case PREINCREMENT_EXPR:
7064 case PREDECREMENT_EXPR:
7065 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
7066 fallback != fb_none);
7067 break;
7069 case ARRAY_REF:
7070 case ARRAY_RANGE_REF:
7071 case REALPART_EXPR:
7072 case IMAGPART_EXPR:
7073 case COMPONENT_REF:
7074 case VIEW_CONVERT_EXPR:
7075 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
7076 fallback ? fallback : fb_rvalue);
7077 break;
7079 case COND_EXPR:
7080 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
7082 /* C99 code may assign to an array in a structure value of a
7083 conditional expression, and this has undefined behavior
7084 only on execution, so create a temporary if an lvalue is
7085 required. */
7086 if (fallback == fb_lvalue)
7088 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7089 mark_addressable (*expr_p);
7090 ret = GS_OK;
7092 break;
7094 case CALL_EXPR:
7095 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
7097 /* C99 code may assign to an array in a structure returned
7098 from a function, and this has undefined behavior only on
7099 execution, so create a temporary if an lvalue is
7100 required. */
7101 if (fallback == fb_lvalue)
7103 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7104 mark_addressable (*expr_p);
7105 ret = GS_OK;
7107 break;
7109 case TREE_LIST:
7110 gcc_unreachable ();
7112 case COMPOUND_EXPR:
7113 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
7114 break;
7116 case COMPOUND_LITERAL_EXPR:
7117 ret = gimplify_compound_literal_expr (expr_p, pre_p, fallback);
7118 break;
7120 case MODIFY_EXPR:
7121 case INIT_EXPR:
7122 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
7123 fallback != fb_none);
7124 break;
7126 case TRUTH_ANDIF_EXPR:
7127 case TRUTH_ORIF_EXPR:
7129 /* Preserve the original type of the expression and the
7130 source location of the outer expression. */
7131 tree org_type = TREE_TYPE (*expr_p);
7132 *expr_p = gimple_boolify (*expr_p);
7133 *expr_p = build3_loc (input_location, COND_EXPR,
7134 org_type, *expr_p,
7135 fold_convert_loc
7136 (input_location,
7137 org_type, boolean_true_node),
7138 fold_convert_loc
7139 (input_location,
7140 org_type, boolean_false_node));
7141 ret = GS_OK;
7142 break;
7145 case TRUTH_NOT_EXPR:
7147 tree type = TREE_TYPE (*expr_p);
7148 /* The parsers are careful to generate TRUTH_NOT_EXPR
7149 only with operands that are always zero or one.
7150 We do not fold here but handle the only interesting case
7151 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
7152 *expr_p = gimple_boolify (*expr_p);
7153 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
7154 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
7155 TREE_TYPE (*expr_p),
7156 TREE_OPERAND (*expr_p, 0));
7157 else
7158 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
7159 TREE_TYPE (*expr_p),
7160 TREE_OPERAND (*expr_p, 0),
7161 build_int_cst (TREE_TYPE (*expr_p), 1));
7162 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
7163 *expr_p = fold_convert_loc (input_location, type, *expr_p);
7164 ret = GS_OK;
7165 break;
7168 case ADDR_EXPR:
7169 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
7170 break;
7172 case VA_ARG_EXPR:
7173 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
7174 break;
7176 CASE_CONVERT:
7177 if (IS_EMPTY_STMT (*expr_p))
7179 ret = GS_ALL_DONE;
7180 break;
7183 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
7184 || fallback == fb_none)
7186 /* Just strip a conversion to void (or in void context) and
7187 try again. */
7188 *expr_p = TREE_OPERAND (*expr_p, 0);
7189 ret = GS_OK;
7190 break;
7193 ret = gimplify_conversion (expr_p);
7194 if (ret == GS_ERROR)
7195 break;
7196 if (*expr_p != save_expr)
7197 break;
7198 /* FALLTHRU */
7200 case FIX_TRUNC_EXPR:
7201 /* unary_expr: ... | '(' cast ')' val | ... */
7202 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7203 is_gimple_val, fb_rvalue);
7204 recalculate_side_effects (*expr_p);
7205 break;
7207 case INDIRECT_REF:
7209 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
7210 bool notrap = TREE_THIS_NOTRAP (*expr_p);
7211 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
7213 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
7214 if (*expr_p != save_expr)
7216 ret = GS_OK;
7217 break;
7220 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7221 is_gimple_reg, fb_rvalue);
7222 if (ret == GS_ERROR)
7223 break;
7225 recalculate_side_effects (*expr_p);
7226 *expr_p = fold_build2_loc (input_location, MEM_REF,
7227 TREE_TYPE (*expr_p),
7228 TREE_OPERAND (*expr_p, 0),
7229 build_int_cst (saved_ptr_type, 0));
7230 TREE_THIS_VOLATILE (*expr_p) = volatilep;
7231 TREE_THIS_NOTRAP (*expr_p) = notrap;
7232 ret = GS_OK;
7233 break;
7236 /* We arrive here through the various re-gimplifcation paths. */
7237 case MEM_REF:
7238 /* First try re-folding the whole thing. */
7239 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
7240 TREE_OPERAND (*expr_p, 0),
7241 TREE_OPERAND (*expr_p, 1));
7242 if (tmp)
7244 *expr_p = tmp;
7245 recalculate_side_effects (*expr_p);
7246 ret = GS_OK;
7247 break;
7249 /* Avoid re-gimplifying the address operand if it is already
7250 in suitable form. Re-gimplifying would mark the address
7251 operand addressable. Always gimplify when not in SSA form
7252 as we still may have to gimplify decls with value-exprs. */
7253 if (!gimplify_ctxp || !gimplify_ctxp->into_ssa
7254 || !is_gimple_mem_ref_addr (TREE_OPERAND (*expr_p, 0)))
7256 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7257 is_gimple_mem_ref_addr, fb_rvalue);
7258 if (ret == GS_ERROR)
7259 break;
7261 recalculate_side_effects (*expr_p);
7262 ret = GS_ALL_DONE;
7263 break;
7265 /* Constants need not be gimplified. */
7266 case INTEGER_CST:
7267 case REAL_CST:
7268 case FIXED_CST:
7269 case STRING_CST:
7270 case COMPLEX_CST:
7271 case VECTOR_CST:
7272 ret = GS_ALL_DONE;
7273 break;
7275 case CONST_DECL:
7276 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7277 CONST_DECL node. Otherwise the decl is replaceable by its
7278 value. */
7279 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7280 if (fallback & fb_lvalue)
7281 ret = GS_ALL_DONE;
7282 else
7284 *expr_p = DECL_INITIAL (*expr_p);
7285 ret = GS_OK;
7287 break;
7289 case DECL_EXPR:
7290 ret = gimplify_decl_expr (expr_p, pre_p);
7291 break;
7293 case BIND_EXPR:
7294 ret = gimplify_bind_expr (expr_p, pre_p);
7295 break;
7297 case LOOP_EXPR:
7298 ret = gimplify_loop_expr (expr_p, pre_p);
7299 break;
7301 case SWITCH_EXPR:
7302 ret = gimplify_switch_expr (expr_p, pre_p);
7303 break;
7305 case EXIT_EXPR:
7306 ret = gimplify_exit_expr (expr_p);
7307 break;
7309 case GOTO_EXPR:
7310 /* If the target is not LABEL, then it is a computed jump
7311 and the target needs to be gimplified. */
7312 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
7314 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
7315 NULL, is_gimple_val, fb_rvalue);
7316 if (ret == GS_ERROR)
7317 break;
7319 gimplify_seq_add_stmt (pre_p,
7320 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
7321 ret = GS_ALL_DONE;
7322 break;
7324 case PREDICT_EXPR:
7325 gimplify_seq_add_stmt (pre_p,
7326 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
7327 PREDICT_EXPR_OUTCOME (*expr_p)));
7328 ret = GS_ALL_DONE;
7329 break;
7331 case LABEL_EXPR:
7332 ret = GS_ALL_DONE;
7333 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
7334 == current_function_decl);
7335 gimplify_seq_add_stmt (pre_p,
7336 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
7337 break;
7339 case CASE_LABEL_EXPR:
7340 ret = gimplify_case_label_expr (expr_p, pre_p);
7341 break;
7343 case RETURN_EXPR:
7344 ret = gimplify_return_expr (*expr_p, pre_p);
7345 break;
7347 case CONSTRUCTOR:
7348 /* Don't reduce this in place; let gimplify_init_constructor work its
7349 magic. Buf if we're just elaborating this for side effects, just
7350 gimplify any element that has side-effects. */
7351 if (fallback == fb_none)
7353 unsigned HOST_WIDE_INT ix;
7354 tree val;
7355 tree temp = NULL_TREE;
7356 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7357 if (TREE_SIDE_EFFECTS (val))
7358 append_to_statement_list (val, &temp);
7360 *expr_p = temp;
7361 ret = temp ? GS_OK : GS_ALL_DONE;
7363 /* C99 code may assign to an array in a constructed
7364 structure or union, and this has undefined behavior only
7365 on execution, so create a temporary if an lvalue is
7366 required. */
7367 else if (fallback == fb_lvalue)
7369 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7370 mark_addressable (*expr_p);
7371 ret = GS_OK;
7373 else
7374 ret = GS_ALL_DONE;
7375 break;
7377 /* The following are special cases that are not handled by the
7378 original GIMPLE grammar. */
7380 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7381 eliminated. */
7382 case SAVE_EXPR:
7383 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7384 break;
7386 case BIT_FIELD_REF:
7388 enum gimplify_status r0, r1, r2;
7390 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7391 post_p, is_gimple_lvalue, fb_either);
7392 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7393 post_p, is_gimple_val, fb_rvalue);
7394 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7395 post_p, is_gimple_val, fb_rvalue);
7396 recalculate_side_effects (*expr_p);
7398 ret = MIN (r0, MIN (r1, r2));
7400 break;
7402 case TARGET_MEM_REF:
7404 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7406 if (TMR_BASE (*expr_p))
7407 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7408 post_p, is_gimple_mem_ref_addr, fb_either);
7409 if (TMR_INDEX (*expr_p))
7410 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7411 post_p, is_gimple_val, fb_rvalue);
7412 if (TMR_INDEX2 (*expr_p))
7413 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7414 post_p, is_gimple_val, fb_rvalue);
7415 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7416 ret = MIN (r0, r1);
7418 break;
7420 case NON_LVALUE_EXPR:
7421 /* This should have been stripped above. */
7422 gcc_unreachable ();
7424 case ASM_EXPR:
7425 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7426 break;
7428 case TRY_FINALLY_EXPR:
7429 case TRY_CATCH_EXPR:
7431 gimple_seq eval, cleanup;
7432 gimple try_;
7434 eval = cleanup = NULL;
7435 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7436 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7437 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7438 if (gimple_seq_empty_p (cleanup))
7440 gimple_seq_add_seq (pre_p, eval);
7441 ret = GS_ALL_DONE;
7442 break;
7444 try_ = gimple_build_try (eval, cleanup,
7445 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7446 ? GIMPLE_TRY_FINALLY
7447 : GIMPLE_TRY_CATCH);
7448 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7449 gimple_try_set_catch_is_cleanup (try_,
7450 TRY_CATCH_IS_CLEANUP (*expr_p));
7451 gimplify_seq_add_stmt (pre_p, try_);
7452 ret = GS_ALL_DONE;
7453 break;
7456 case CLEANUP_POINT_EXPR:
7457 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7458 break;
7460 case TARGET_EXPR:
7461 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7462 break;
7464 case CATCH_EXPR:
7466 gimple c;
7467 gimple_seq handler = NULL;
7468 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7469 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7470 gimplify_seq_add_stmt (pre_p, c);
7471 ret = GS_ALL_DONE;
7472 break;
7475 case EH_FILTER_EXPR:
7477 gimple ehf;
7478 gimple_seq failure = NULL;
7480 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7481 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7482 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7483 gimplify_seq_add_stmt (pre_p, ehf);
7484 ret = GS_ALL_DONE;
7485 break;
7488 case OBJ_TYPE_REF:
7490 enum gimplify_status r0, r1;
7491 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7492 post_p, is_gimple_val, fb_rvalue);
7493 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7494 post_p, is_gimple_val, fb_rvalue);
7495 TREE_SIDE_EFFECTS (*expr_p) = 0;
7496 ret = MIN (r0, r1);
7498 break;
7500 case LABEL_DECL:
7501 /* We get here when taking the address of a label. We mark
7502 the label as "forced"; meaning it can never be removed and
7503 it is a potential target for any computed goto. */
7504 FORCED_LABEL (*expr_p) = 1;
7505 ret = GS_ALL_DONE;
7506 break;
7508 case STATEMENT_LIST:
7509 ret = gimplify_statement_list (expr_p, pre_p);
7510 break;
7512 case WITH_SIZE_EXPR:
7514 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7515 post_p == &internal_post ? NULL : post_p,
7516 gimple_test_f, fallback);
7517 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7518 is_gimple_val, fb_rvalue);
7519 ret = GS_ALL_DONE;
7521 break;
7523 case VAR_DECL:
7524 case PARM_DECL:
7525 ret = gimplify_var_or_parm_decl (expr_p);
7526 break;
7528 case RESULT_DECL:
7529 /* When within an OpenMP context, notice uses of variables. */
7530 if (gimplify_omp_ctxp)
7531 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7532 ret = GS_ALL_DONE;
7533 break;
7535 case SSA_NAME:
7536 /* Allow callbacks into the gimplifier during optimization. */
7537 ret = GS_ALL_DONE;
7538 break;
7540 case OMP_PARALLEL:
7541 gimplify_omp_parallel (expr_p, pre_p);
7542 ret = GS_ALL_DONE;
7543 break;
7545 case OMP_TASK:
7546 gimplify_omp_task (expr_p, pre_p);
7547 ret = GS_ALL_DONE;
7548 break;
7550 case OMP_FOR:
7551 ret = gimplify_omp_for (expr_p, pre_p);
7552 break;
7554 case OMP_SECTIONS:
7555 case OMP_SINGLE:
7556 gimplify_omp_workshare (expr_p, pre_p);
7557 ret = GS_ALL_DONE;
7558 break;
7560 case OMP_SECTION:
7561 case OMP_MASTER:
7562 case OMP_ORDERED:
7563 case OMP_CRITICAL:
7565 gimple_seq body = NULL;
7566 gimple g;
7568 gimplify_and_add (OMP_BODY (*expr_p), &body);
7569 switch (TREE_CODE (*expr_p))
7571 case OMP_SECTION:
7572 g = gimple_build_omp_section (body);
7573 break;
7574 case OMP_MASTER:
7575 g = gimple_build_omp_master (body);
7576 break;
7577 case OMP_ORDERED:
7578 g = gimple_build_omp_ordered (body);
7579 break;
7580 case OMP_CRITICAL:
7581 g = gimple_build_omp_critical (body,
7582 OMP_CRITICAL_NAME (*expr_p));
7583 break;
7584 default:
7585 gcc_unreachable ();
7587 gimplify_seq_add_stmt (pre_p, g);
7588 ret = GS_ALL_DONE;
7589 break;
7592 case OMP_ATOMIC:
7593 case OMP_ATOMIC_READ:
7594 case OMP_ATOMIC_CAPTURE_OLD:
7595 case OMP_ATOMIC_CAPTURE_NEW:
7596 ret = gimplify_omp_atomic (expr_p, pre_p);
7597 break;
7599 case TRANSACTION_EXPR:
7600 ret = gimplify_transaction (expr_p, pre_p);
7601 break;
7603 case TRUTH_AND_EXPR:
7604 case TRUTH_OR_EXPR:
7605 case TRUTH_XOR_EXPR:
7607 tree orig_type = TREE_TYPE (*expr_p);
7608 tree new_type, xop0, xop1;
7609 *expr_p = gimple_boolify (*expr_p);
7610 new_type = TREE_TYPE (*expr_p);
7611 if (!useless_type_conversion_p (orig_type, new_type))
7613 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7614 ret = GS_OK;
7615 break;
7618 /* Boolified binary truth expressions are semantically equivalent
7619 to bitwise binary expressions. Canonicalize them to the
7620 bitwise variant. */
7621 switch (TREE_CODE (*expr_p))
7623 case TRUTH_AND_EXPR:
7624 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7625 break;
7626 case TRUTH_OR_EXPR:
7627 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7628 break;
7629 case TRUTH_XOR_EXPR:
7630 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7631 break;
7632 default:
7633 break;
7635 /* Now make sure that operands have compatible type to
7636 expression's new_type. */
7637 xop0 = TREE_OPERAND (*expr_p, 0);
7638 xop1 = TREE_OPERAND (*expr_p, 1);
7639 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7640 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7641 new_type,
7642 xop0);
7643 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7644 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7645 new_type,
7646 xop1);
7647 /* Continue classified as tcc_binary. */
7648 goto expr_2;
7651 case FMA_EXPR:
7652 case VEC_PERM_EXPR:
7653 /* Classified as tcc_expression. */
7654 goto expr_3;
7656 case POINTER_PLUS_EXPR:
7658 enum gimplify_status r0, r1;
7659 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7660 post_p, is_gimple_val, fb_rvalue);
7661 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7662 post_p, is_gimple_val, fb_rvalue);
7663 recalculate_side_effects (*expr_p);
7664 ret = MIN (r0, r1);
7665 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7666 after gimplifying operands - this is similar to how
7667 it would be folding all gimplified stmts on creation
7668 to have them canonicalized, which is what we eventually
7669 should do anyway. */
7670 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7671 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7673 *expr_p = build_fold_addr_expr_with_type_loc
7674 (input_location,
7675 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7676 TREE_OPERAND (*expr_p, 0),
7677 fold_convert (ptr_type_node,
7678 TREE_OPERAND (*expr_p, 1))),
7679 TREE_TYPE (*expr_p));
7680 ret = MIN (ret, GS_OK);
7682 break;
7685 default:
7686 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7688 case tcc_comparison:
7689 /* Handle comparison of objects of non scalar mode aggregates
7690 with a call to memcmp. It would be nice to only have to do
7691 this for variable-sized objects, but then we'd have to allow
7692 the same nest of reference nodes we allow for MODIFY_EXPR and
7693 that's too complex.
7695 Compare scalar mode aggregates as scalar mode values. Using
7696 memcmp for them would be very inefficient at best, and is
7697 plain wrong if bitfields are involved. */
7699 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7701 /* Vector comparisons need no boolification. */
7702 if (TREE_CODE (type) == VECTOR_TYPE)
7703 goto expr_2;
7704 else if (!AGGREGATE_TYPE_P (type))
7706 tree org_type = TREE_TYPE (*expr_p);
7707 *expr_p = gimple_boolify (*expr_p);
7708 if (!useless_type_conversion_p (org_type,
7709 TREE_TYPE (*expr_p)))
7711 *expr_p = fold_convert_loc (input_location,
7712 org_type, *expr_p);
7713 ret = GS_OK;
7715 else
7716 goto expr_2;
7718 else if (TYPE_MODE (type) != BLKmode)
7719 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7720 else
7721 ret = gimplify_variable_sized_compare (expr_p);
7723 break;
7726 /* If *EXPR_P does not need to be special-cased, handle it
7727 according to its class. */
7728 case tcc_unary:
7729 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7730 post_p, is_gimple_val, fb_rvalue);
7731 break;
7733 case tcc_binary:
7734 expr_2:
7736 enum gimplify_status r0, r1;
7738 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7739 post_p, is_gimple_val, fb_rvalue);
7740 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7741 post_p, is_gimple_val, fb_rvalue);
7743 ret = MIN (r0, r1);
7744 break;
7747 expr_3:
7749 enum gimplify_status r0, r1, r2;
7751 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7752 post_p, is_gimple_val, fb_rvalue);
7753 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7754 post_p, is_gimple_val, fb_rvalue);
7755 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7756 post_p, is_gimple_val, fb_rvalue);
7758 ret = MIN (MIN (r0, r1), r2);
7759 break;
7762 case tcc_declaration:
7763 case tcc_constant:
7764 ret = GS_ALL_DONE;
7765 goto dont_recalculate;
7767 default:
7768 gcc_unreachable ();
7771 recalculate_side_effects (*expr_p);
7773 dont_recalculate:
7774 break;
7777 gcc_assert (*expr_p || ret != GS_OK);
7779 while (ret == GS_OK);
7781 /* If we encountered an error_mark somewhere nested inside, either
7782 stub out the statement or propagate the error back out. */
7783 if (ret == GS_ERROR)
7785 if (is_statement)
7786 *expr_p = NULL;
7787 goto out;
7790 /* This was only valid as a return value from the langhook, which
7791 we handled. Make sure it doesn't escape from any other context. */
7792 gcc_assert (ret != GS_UNHANDLED);
7794 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7796 /* We aren't looking for a value, and we don't have a valid
7797 statement. If it doesn't have side-effects, throw it away. */
7798 if (!TREE_SIDE_EFFECTS (*expr_p))
7799 *expr_p = NULL;
7800 else if (!TREE_THIS_VOLATILE (*expr_p))
7802 /* This is probably a _REF that contains something nested that
7803 has side effects. Recurse through the operands to find it. */
7804 enum tree_code code = TREE_CODE (*expr_p);
7806 switch (code)
7808 case COMPONENT_REF:
7809 case REALPART_EXPR:
7810 case IMAGPART_EXPR:
7811 case VIEW_CONVERT_EXPR:
7812 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7813 gimple_test_f, fallback);
7814 break;
7816 case ARRAY_REF:
7817 case ARRAY_RANGE_REF:
7818 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7819 gimple_test_f, fallback);
7820 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7821 gimple_test_f, fallback);
7822 break;
7824 default:
7825 /* Anything else with side-effects must be converted to
7826 a valid statement before we get here. */
7827 gcc_unreachable ();
7830 *expr_p = NULL;
7832 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7833 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7835 /* Historically, the compiler has treated a bare reference
7836 to a non-BLKmode volatile lvalue as forcing a load. */
7837 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7839 /* Normally, we do not want to create a temporary for a
7840 TREE_ADDRESSABLE type because such a type should not be
7841 copied by bitwise-assignment. However, we make an
7842 exception here, as all we are doing here is ensuring that
7843 we read the bytes that make up the type. We use
7844 create_tmp_var_raw because create_tmp_var will abort when
7845 given a TREE_ADDRESSABLE type. */
7846 tree tmp = create_tmp_var_raw (type, "vol");
7847 gimple_add_tmp_var (tmp);
7848 gimplify_assign (tmp, *expr_p, pre_p);
7849 *expr_p = NULL;
7851 else
7852 /* We can't do anything useful with a volatile reference to
7853 an incomplete type, so just throw it away. Likewise for
7854 a BLKmode type, since any implicit inner load should
7855 already have been turned into an explicit one by the
7856 gimplification process. */
7857 *expr_p = NULL;
7860 /* If we are gimplifying at the statement level, we're done. Tack
7861 everything together and return. */
7862 if (fallback == fb_none || is_statement)
7864 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7865 it out for GC to reclaim it. */
7866 *expr_p = NULL_TREE;
7868 if (!gimple_seq_empty_p (internal_pre)
7869 || !gimple_seq_empty_p (internal_post))
7871 gimplify_seq_add_seq (&internal_pre, internal_post);
7872 gimplify_seq_add_seq (pre_p, internal_pre);
7875 /* The result of gimplifying *EXPR_P is going to be the last few
7876 statements in *PRE_P and *POST_P. Add location information
7877 to all the statements that were added by the gimplification
7878 helpers. */
7879 if (!gimple_seq_empty_p (*pre_p))
7880 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7882 if (!gimple_seq_empty_p (*post_p))
7883 annotate_all_with_location_after (*post_p, post_last_gsi,
7884 input_location);
7886 goto out;
7889 #ifdef ENABLE_GIMPLE_CHECKING
7890 if (*expr_p)
7892 enum tree_code code = TREE_CODE (*expr_p);
7893 /* These expressions should already be in gimple IR form. */
7894 gcc_assert (code != MODIFY_EXPR
7895 && code != ASM_EXPR
7896 && code != BIND_EXPR
7897 && code != CATCH_EXPR
7898 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7899 && code != EH_FILTER_EXPR
7900 && code != GOTO_EXPR
7901 && code != LABEL_EXPR
7902 && code != LOOP_EXPR
7903 && code != SWITCH_EXPR
7904 && code != TRY_FINALLY_EXPR
7905 && code != OMP_CRITICAL
7906 && code != OMP_FOR
7907 && code != OMP_MASTER
7908 && code != OMP_ORDERED
7909 && code != OMP_PARALLEL
7910 && code != OMP_SECTIONS
7911 && code != OMP_SECTION
7912 && code != OMP_SINGLE);
7914 #endif
7916 /* Otherwise we're gimplifying a subexpression, so the resulting
7917 value is interesting. If it's a valid operand that matches
7918 GIMPLE_TEST_F, we're done. Unless we are handling some
7919 post-effects internally; if that's the case, we need to copy into
7920 a temporary before adding the post-effects to POST_P. */
7921 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7922 goto out;
7924 /* Otherwise, we need to create a new temporary for the gimplified
7925 expression. */
7927 /* We can't return an lvalue if we have an internal postqueue. The
7928 object the lvalue refers to would (probably) be modified by the
7929 postqueue; we need to copy the value out first, which means an
7930 rvalue. */
7931 if ((fallback & fb_lvalue)
7932 && gimple_seq_empty_p (internal_post)
7933 && is_gimple_addressable (*expr_p))
7935 /* An lvalue will do. Take the address of the expression, store it
7936 in a temporary, and replace the expression with an INDIRECT_REF of
7937 that temporary. */
7938 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7939 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7940 *expr_p = build_simple_mem_ref (tmp);
7942 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7944 /* An rvalue will do. Assign the gimplified expression into a
7945 new temporary TMP and replace the original expression with
7946 TMP. First, make sure that the expression has a type so that
7947 it can be assigned into a temporary. */
7948 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7950 if (!gimple_seq_empty_p (internal_post) || (fallback & fb_lvalue))
7951 /* The postqueue might change the value of the expression between
7952 the initialization and use of the temporary, so we can't use a
7953 formal temp. FIXME do we care? */
7955 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7956 if (TREE_CODE (TREE_TYPE (*expr_p)) == COMPLEX_TYPE
7957 || TREE_CODE (TREE_TYPE (*expr_p)) == VECTOR_TYPE)
7958 DECL_GIMPLE_REG_P (*expr_p) = 1;
7960 else
7961 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7963 else
7965 #ifdef ENABLE_GIMPLE_CHECKING
7966 if (!(fallback & fb_mayfail))
7968 fprintf (stderr, "gimplification failed:\n");
7969 print_generic_expr (stderr, *expr_p, 0);
7970 debug_tree (*expr_p);
7971 internal_error ("gimplification failed");
7973 #endif
7974 gcc_assert (fallback & fb_mayfail);
7976 /* If this is an asm statement, and the user asked for the
7977 impossible, don't die. Fail and let gimplify_asm_expr
7978 issue an error. */
7979 ret = GS_ERROR;
7980 goto out;
7983 /* Make sure the temporary matches our predicate. */
7984 gcc_assert ((*gimple_test_f) (*expr_p));
7986 if (!gimple_seq_empty_p (internal_post))
7988 annotate_all_with_location (internal_post, input_location);
7989 gimplify_seq_add_seq (pre_p, internal_post);
7992 out:
7993 input_location = saved_location;
7994 return ret;
7997 /* Look through TYPE for variable-sized objects and gimplify each such
7998 size that we find. Add to LIST_P any statements generated. */
8000 void
8001 gimplify_type_sizes (tree type, gimple_seq *list_p)
8003 tree field, t;
8005 if (type == NULL || type == error_mark_node)
8006 return;
8008 /* We first do the main variant, then copy into any other variants. */
8009 type = TYPE_MAIN_VARIANT (type);
8011 /* Avoid infinite recursion. */
8012 if (TYPE_SIZES_GIMPLIFIED (type))
8013 return;
8015 TYPE_SIZES_GIMPLIFIED (type) = 1;
8017 switch (TREE_CODE (type))
8019 case INTEGER_TYPE:
8020 case ENUMERAL_TYPE:
8021 case BOOLEAN_TYPE:
8022 case REAL_TYPE:
8023 case FIXED_POINT_TYPE:
8024 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
8025 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
8027 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8029 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
8030 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
8032 break;
8034 case ARRAY_TYPE:
8035 /* These types may not have declarations, so handle them here. */
8036 gimplify_type_sizes (TREE_TYPE (type), list_p);
8037 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
8038 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
8039 with assigned stack slots, for -O1+ -g they should be tracked
8040 by VTA. */
8041 if (!(TYPE_NAME (type)
8042 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
8043 && DECL_IGNORED_P (TYPE_NAME (type)))
8044 && TYPE_DOMAIN (type)
8045 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
8047 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
8048 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8049 DECL_IGNORED_P (t) = 0;
8050 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
8051 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8052 DECL_IGNORED_P (t) = 0;
8054 break;
8056 case RECORD_TYPE:
8057 case UNION_TYPE:
8058 case QUAL_UNION_TYPE:
8059 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8060 if (TREE_CODE (field) == FIELD_DECL)
8062 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
8063 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
8064 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
8065 gimplify_type_sizes (TREE_TYPE (field), list_p);
8067 break;
8069 case POINTER_TYPE:
8070 case REFERENCE_TYPE:
8071 /* We used to recurse on the pointed-to type here, which turned out to
8072 be incorrect because its definition might refer to variables not
8073 yet initialized at this point if a forward declaration is involved.
8075 It was actually useful for anonymous pointed-to types to ensure
8076 that the sizes evaluation dominates every possible later use of the
8077 values. Restricting to such types here would be safe since there
8078 is no possible forward declaration around, but would introduce an
8079 undesirable middle-end semantic to anonymity. We then defer to
8080 front-ends the responsibility of ensuring that the sizes are
8081 evaluated both early and late enough, e.g. by attaching artificial
8082 type declarations to the tree. */
8083 break;
8085 default:
8086 break;
8089 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
8090 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
8092 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8094 TYPE_SIZE (t) = TYPE_SIZE (type);
8095 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
8096 TYPE_SIZES_GIMPLIFIED (t) = 1;
8100 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
8101 a size or position, has had all of its SAVE_EXPRs evaluated.
8102 We add any required statements to *STMT_P. */
8104 void
8105 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
8107 tree type, expr = *expr_p;
8109 /* We don't do anything if the value isn't there, is constant, or contains
8110 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
8111 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
8112 will want to replace it with a new variable, but that will cause problems
8113 if this type is from outside the function. It's OK to have that here. */
8114 if (expr == NULL_TREE || TREE_CONSTANT (expr)
8115 || TREE_CODE (expr) == VAR_DECL
8116 || CONTAINS_PLACEHOLDER_P (expr))
8117 return;
8119 type = TREE_TYPE (expr);
8120 *expr_p = unshare_expr (expr);
8122 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
8123 expr = *expr_p;
8125 /* Verify that we've an exact type match with the original expression.
8126 In particular, we do not wish to drop a "sizetype" in favour of a
8127 type of similar dimensions. We don't want to pollute the generic
8128 type-stripping code with this knowledge because it doesn't matter
8129 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
8130 and friends retain their "sizetype-ness". */
8131 if (TREE_TYPE (expr) != type
8132 && TREE_CODE (type) == INTEGER_TYPE
8133 && TYPE_IS_SIZETYPE (type))
8135 tree tmp;
8136 gimple stmt;
8138 *expr_p = create_tmp_var (type, NULL);
8139 tmp = build1 (NOP_EXPR, type, expr);
8140 stmt = gimplify_assign (*expr_p, tmp, stmt_p);
8141 gimple_set_location (stmt, EXPR_LOC_OR_HERE (expr));
8145 /* Gimplify the body of statements of FNDECL and return a GIMPLE_BIND node
8146 containing the sequence of corresponding GIMPLE statements. If DO_PARMS
8147 is true, also gimplify the parameters. */
8149 gimple
8150 gimplify_body (tree fndecl, bool do_parms)
8152 location_t saved_location = input_location;
8153 gimple_seq parm_stmts, seq;
8154 gimple outer_bind;
8155 struct gimplify_ctx gctx;
8156 struct cgraph_node *cgn;
8158 timevar_push (TV_TREE_GIMPLIFY);
8160 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
8161 gimplification. */
8162 default_rtl_profile ();
8164 gcc_assert (gimplify_ctxp == NULL);
8165 push_gimplify_context (&gctx);
8167 /* Unshare most shared trees in the body and in that of any nested functions.
8168 It would seem we don't have to do this for nested functions because
8169 they are supposed to be output and then the outer function gimplified
8170 first, but the g++ front end doesn't always do it that way. */
8171 unshare_body (fndecl);
8172 unvisit_body (fndecl);
8174 cgn = cgraph_get_node (fndecl);
8175 if (cgn && cgn->origin)
8176 nonlocal_vlas = pointer_set_create ();
8178 /* Make sure input_location isn't set to something weird. */
8179 input_location = DECL_SOURCE_LOCATION (fndecl);
8181 /* Resolve callee-copies. This has to be done before processing
8182 the body so that DECL_VALUE_EXPR gets processed correctly. */
8183 parm_stmts = do_parms ? gimplify_parameters () : NULL;
8185 /* Gimplify the function's body. */
8186 seq = NULL;
8187 gimplify_stmt (&DECL_SAVED_TREE (fndecl), &seq);
8188 outer_bind = gimple_seq_first_stmt (seq);
8189 if (!outer_bind)
8191 outer_bind = gimple_build_nop ();
8192 gimplify_seq_add_stmt (&seq, outer_bind);
8195 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
8196 not the case, wrap everything in a GIMPLE_BIND to make it so. */
8197 if (gimple_code (outer_bind) == GIMPLE_BIND
8198 && gimple_seq_first (seq) == gimple_seq_last (seq))
8200 else
8201 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
8203 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8205 /* If we had callee-copies statements, insert them at the beginning
8206 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8207 if (!gimple_seq_empty_p (parm_stmts))
8209 tree parm;
8211 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
8212 gimple_bind_set_body (outer_bind, parm_stmts);
8214 for (parm = DECL_ARGUMENTS (current_function_decl);
8215 parm; parm = DECL_CHAIN (parm))
8216 if (DECL_HAS_VALUE_EXPR_P (parm))
8218 DECL_HAS_VALUE_EXPR_P (parm) = 0;
8219 DECL_IGNORED_P (parm) = 0;
8223 if (nonlocal_vlas)
8225 pointer_set_destroy (nonlocal_vlas);
8226 nonlocal_vlas = NULL;
8229 pop_gimplify_context (outer_bind);
8230 gcc_assert (gimplify_ctxp == NULL);
8232 if (!seen_error ())
8233 verify_gimple_in_seq (gimple_bind_body (outer_bind));
8235 timevar_pop (TV_TREE_GIMPLIFY);
8236 input_location = saved_location;
8238 return outer_bind;
8241 typedef char *char_p; /* For DEF_VEC_P. */
8242 DEF_VEC_P(char_p);
8243 DEF_VEC_ALLOC_P(char_p,heap);
8245 /* Return whether we should exclude FNDECL from instrumentation. */
8247 static bool
8248 flag_instrument_functions_exclude_p (tree fndecl)
8250 VEC(char_p,heap) *vec;
8252 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_functions;
8253 if (VEC_length (char_p, vec) > 0)
8255 const char *name;
8256 int i;
8257 char *s;
8259 name = lang_hooks.decl_printable_name (fndecl, 0);
8260 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8261 if (strstr (name, s) != NULL)
8262 return true;
8265 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_files;
8266 if (VEC_length (char_p, vec) > 0)
8268 const char *name;
8269 int i;
8270 char *s;
8272 name = DECL_SOURCE_FILE (fndecl);
8273 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8274 if (strstr (name, s) != NULL)
8275 return true;
8278 return false;
8281 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8282 node for the function we want to gimplify.
8284 Return the sequence of GIMPLE statements corresponding to the body
8285 of FNDECL. */
8287 void
8288 gimplify_function_tree (tree fndecl)
8290 tree oldfn, parm, ret;
8291 gimple_seq seq;
8292 gimple bind;
8294 gcc_assert (!gimple_body (fndecl));
8296 oldfn = current_function_decl;
8297 current_function_decl = fndecl;
8298 if (DECL_STRUCT_FUNCTION (fndecl))
8299 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
8300 else
8301 push_struct_function (fndecl);
8303 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
8305 /* Preliminarily mark non-addressed complex variables as eligible
8306 for promotion to gimple registers. We'll transform their uses
8307 as we find them. */
8308 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
8309 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
8310 && !TREE_THIS_VOLATILE (parm)
8311 && !needs_to_live_in_memory (parm))
8312 DECL_GIMPLE_REG_P (parm) = 1;
8315 ret = DECL_RESULT (fndecl);
8316 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
8317 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
8318 && !needs_to_live_in_memory (ret))
8319 DECL_GIMPLE_REG_P (ret) = 1;
8321 bind = gimplify_body (fndecl, true);
8323 /* The tree body of the function is no longer needed, replace it
8324 with the new GIMPLE body. */
8325 seq = gimple_seq_alloc ();
8326 gimple_seq_add_stmt (&seq, bind);
8327 gimple_set_body (fndecl, seq);
8329 /* If we're instrumenting function entry/exit, then prepend the call to
8330 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8331 catch the exit hook. */
8332 /* ??? Add some way to ignore exceptions for this TFE. */
8333 if (flag_instrument_function_entry_exit
8334 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
8335 && !flag_instrument_functions_exclude_p (fndecl))
8337 tree x;
8338 gimple new_bind;
8339 gimple tf;
8340 gimple_seq cleanup = NULL, body = NULL;
8341 tree tmp_var;
8342 gimple call;
8344 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8345 call = gimple_build_call (x, 1, integer_zero_node);
8346 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8347 gimple_call_set_lhs (call, tmp_var);
8348 gimplify_seq_add_stmt (&cleanup, call);
8349 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8350 call = gimple_build_call (x, 2,
8351 build_fold_addr_expr (current_function_decl),
8352 tmp_var);
8353 gimplify_seq_add_stmt (&cleanup, call);
8354 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8356 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8357 call = gimple_build_call (x, 1, integer_zero_node);
8358 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8359 gimple_call_set_lhs (call, tmp_var);
8360 gimplify_seq_add_stmt (&body, call);
8361 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8362 call = gimple_build_call (x, 2,
8363 build_fold_addr_expr (current_function_decl),
8364 tmp_var);
8365 gimplify_seq_add_stmt (&body, call);
8366 gimplify_seq_add_stmt (&body, tf);
8367 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8368 /* Clear the block for BIND, since it is no longer directly inside
8369 the function, but within a try block. */
8370 gimple_bind_set_block (bind, NULL);
8372 /* Replace the current function body with the body
8373 wrapped in the try/finally TF. */
8374 seq = gimple_seq_alloc ();
8375 gimple_seq_add_stmt (&seq, new_bind);
8376 gimple_set_body (fndecl, seq);
8379 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8380 cfun->curr_properties = PROP_gimple_any;
8382 current_function_decl = oldfn;
8383 pop_cfun ();
8386 /* Some transformations like inlining may invalidate the GIMPLE form
8387 for operands. This function traverses all the operands in STMT and
8388 gimplifies anything that is not a valid gimple operand. Any new
8389 GIMPLE statements are inserted before *GSI_P. */
8391 void
8392 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8394 size_t i, num_ops;
8395 tree orig_lhs = NULL_TREE, lhs, t;
8396 gimple_seq pre = NULL;
8397 gimple post_stmt = NULL;
8398 struct gimplify_ctx gctx;
8400 push_gimplify_context (&gctx);
8401 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8403 switch (gimple_code (stmt))
8405 case GIMPLE_COND:
8406 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8407 is_gimple_val, fb_rvalue);
8408 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8409 is_gimple_val, fb_rvalue);
8410 break;
8411 case GIMPLE_SWITCH:
8412 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8413 is_gimple_val, fb_rvalue);
8414 break;
8415 case GIMPLE_OMP_ATOMIC_LOAD:
8416 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8417 is_gimple_val, fb_rvalue);
8418 break;
8419 case GIMPLE_ASM:
8421 size_t i, noutputs = gimple_asm_noutputs (stmt);
8422 const char *constraint, **oconstraints;
8423 bool allows_mem, allows_reg, is_inout;
8425 oconstraints
8426 = (const char **) alloca ((noutputs) * sizeof (const char *));
8427 for (i = 0; i < noutputs; i++)
8429 tree op = gimple_asm_output_op (stmt, i);
8430 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8431 oconstraints[i] = constraint;
8432 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8433 &allows_reg, &is_inout);
8434 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8435 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8436 fb_lvalue | fb_mayfail);
8438 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8440 tree op = gimple_asm_input_op (stmt, i);
8441 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8442 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8443 oconstraints, &allows_mem, &allows_reg);
8444 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8445 allows_reg = 0;
8446 if (!allows_reg && allows_mem)
8447 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8448 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8449 else
8450 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8451 is_gimple_asm_val, fb_rvalue);
8454 break;
8455 default:
8456 /* NOTE: We start gimplifying operands from last to first to
8457 make sure that side-effects on the RHS of calls, assignments
8458 and ASMs are executed before the LHS. The ordering is not
8459 important for other statements. */
8460 num_ops = gimple_num_ops (stmt);
8461 orig_lhs = gimple_get_lhs (stmt);
8462 for (i = num_ops; i > 0; i--)
8464 tree op = gimple_op (stmt, i - 1);
8465 if (op == NULL_TREE)
8466 continue;
8467 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8468 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8469 else if (i == 2
8470 && is_gimple_assign (stmt)
8471 && num_ops == 2
8472 && get_gimple_rhs_class (gimple_expr_code (stmt))
8473 == GIMPLE_SINGLE_RHS)
8474 gimplify_expr (&op, &pre, NULL,
8475 rhs_predicate_for (gimple_assign_lhs (stmt)),
8476 fb_rvalue);
8477 else if (i == 2 && is_gimple_call (stmt))
8479 if (TREE_CODE (op) == FUNCTION_DECL)
8480 continue;
8481 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8483 else
8484 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8485 gimple_set_op (stmt, i - 1, op);
8488 lhs = gimple_get_lhs (stmt);
8489 /* If the LHS changed it in a way that requires a simple RHS,
8490 create temporary. */
8491 if (lhs && !is_gimple_reg (lhs))
8493 bool need_temp = false;
8495 if (is_gimple_assign (stmt)
8496 && num_ops == 2
8497 && get_gimple_rhs_class (gimple_expr_code (stmt))
8498 == GIMPLE_SINGLE_RHS)
8499 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8500 rhs_predicate_for (gimple_assign_lhs (stmt)),
8501 fb_rvalue);
8502 else if (is_gimple_reg (lhs))
8504 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8506 if (is_gimple_call (stmt))
8508 i = gimple_call_flags (stmt);
8509 if ((i & ECF_LOOPING_CONST_OR_PURE)
8510 || !(i & (ECF_CONST | ECF_PURE)))
8511 need_temp = true;
8513 if (stmt_can_throw_internal (stmt))
8514 need_temp = true;
8517 else
8519 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8520 need_temp = true;
8521 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8523 if (is_gimple_call (stmt))
8525 tree fndecl = gimple_call_fndecl (stmt);
8527 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8528 && !(fndecl && DECL_RESULT (fndecl)
8529 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8530 need_temp = true;
8532 else
8533 need_temp = true;
8536 if (need_temp)
8538 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8540 if (TREE_CODE (orig_lhs) == SSA_NAME)
8541 orig_lhs = SSA_NAME_VAR (orig_lhs);
8543 if (gimple_in_ssa_p (cfun))
8544 temp = make_ssa_name (temp, NULL);
8545 gimple_set_lhs (stmt, temp);
8546 post_stmt = gimple_build_assign (lhs, temp);
8547 if (TREE_CODE (lhs) == SSA_NAME)
8548 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8551 break;
8554 if (gimple_referenced_vars (cfun))
8555 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
8556 add_referenced_var (t);
8558 if (!gimple_seq_empty_p (pre))
8560 if (gimple_in_ssa_p (cfun))
8562 gimple_stmt_iterator i;
8564 for (i = gsi_start (pre); !gsi_end_p (i); gsi_next (&i))
8565 mark_symbols_for_renaming (gsi_stmt (i));
8567 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8569 if (post_stmt)
8570 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8572 pop_gimplify_context (NULL);
8575 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8576 the predicate that will hold for the result. If VAR is not NULL, make the
8577 base variable of the final destination be VAR if suitable. */
8579 tree
8580 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8581 gimple_predicate gimple_test_f, tree var)
8583 tree t;
8584 enum gimplify_status ret;
8585 struct gimplify_ctx gctx;
8587 *stmts = NULL;
8589 /* gimple_test_f might be more strict than is_gimple_val, make
8590 sure we pass both. Just checking gimple_test_f doesn't work
8591 because most gimple predicates do not work recursively. */
8592 if (is_gimple_val (expr)
8593 && (*gimple_test_f) (expr))
8594 return expr;
8596 push_gimplify_context (&gctx);
8597 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8598 gimplify_ctxp->allow_rhs_cond_expr = true;
8600 if (var)
8601 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8603 if (TREE_CODE (expr) != MODIFY_EXPR
8604 && TREE_TYPE (expr) == void_type_node)
8606 gimplify_and_add (expr, stmts);
8607 expr = NULL_TREE;
8609 else
8611 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8612 gcc_assert (ret != GS_ERROR);
8615 if (gimple_referenced_vars (cfun))
8616 for (t = gimplify_ctxp->temps; t ; t = DECL_CHAIN (t))
8617 add_referenced_var (t);
8619 pop_gimplify_context (NULL);
8621 return expr;
8624 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8625 force the result to be either ssa_name or an invariant, otherwise
8626 just force it to be a rhs expression. If VAR is not NULL, make the
8627 base variable of the final destination be VAR if suitable. */
8629 tree
8630 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8632 return force_gimple_operand_1 (expr, stmts,
8633 simple ? is_gimple_val : is_gimple_reg_rhs,
8634 var);
8637 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8638 and VAR. If some statements are produced, emits them at GSI.
8639 If BEFORE is true. the statements are appended before GSI, otherwise
8640 they are appended after it. M specifies the way GSI moves after
8641 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8643 tree
8644 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8645 gimple_predicate gimple_test_f,
8646 tree var, bool before,
8647 enum gsi_iterator_update m)
8649 gimple_seq stmts;
8651 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8653 if (!gimple_seq_empty_p (stmts))
8655 if (gimple_in_ssa_p (cfun))
8657 gimple_stmt_iterator i;
8659 for (i = gsi_start (stmts); !gsi_end_p (i); gsi_next (&i))
8660 mark_symbols_for_renaming (gsi_stmt (i));
8663 if (before)
8664 gsi_insert_seq_before (gsi, stmts, m);
8665 else
8666 gsi_insert_seq_after (gsi, stmts, m);
8669 return expr;
8672 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8673 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8674 otherwise just force it to be a rhs expression. If some statements are
8675 produced, emits them at GSI. If BEFORE is true, the statements are
8676 appended before GSI, otherwise they are appended after it. M specifies
8677 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8678 are the usual values). */
8680 tree
8681 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8682 bool simple_p, tree var, bool before,
8683 enum gsi_iterator_update m)
8685 return force_gimple_operand_gsi_1 (gsi, expr,
8686 simple_p
8687 ? is_gimple_val : is_gimple_reg_rhs,
8688 var, before, m);
8692 #include "gt-gimplify.h"