aix.h (FP_SAVE_INLINE, [...]): Delete.
[official-gcc.git] / gcc / gimplify.c
blobd7f1f82345b874ea99fb915c126eefe805199c8f
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 si = gsi_last (*seq_p);
173 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
176 /* Shorter alias name for the above function for use in gimplify.c
177 only. */
179 static inline void
180 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
182 gimple_seq_add_stmt_without_update (seq_p, gs);
185 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
186 NULL, a new sequence is allocated. This function is
187 similar to gimple_seq_add_seq, but does not scan the operands.
188 During gimplification, we need to manipulate statement sequences
189 before the def/use vectors have been constructed. */
191 static void
192 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
194 gimple_stmt_iterator si;
196 if (src == NULL)
197 return;
199 si = gsi_last (*dst_p);
200 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
203 /* Set up a context for the gimplifier. */
205 void
206 push_gimplify_context (struct gimplify_ctx *c)
208 memset (c, '\0', sizeof (*c));
209 c->prev_context = gimplify_ctxp;
210 gimplify_ctxp = c;
213 /* Tear down a context for the gimplifier. If BODY is non-null, then
214 put the temporaries into the outer BIND_EXPR. Otherwise, put them
215 in the local_decls.
217 BODY is not a sequence, but the first tuple in a sequence. */
219 void
220 pop_gimplify_context (gimple body)
222 struct gimplify_ctx *c = gimplify_ctxp;
224 gcc_assert (c && (c->bind_expr_stack == NULL
225 || VEC_empty (gimple, c->bind_expr_stack)));
226 VEC_free (gimple, heap, c->bind_expr_stack);
227 gimplify_ctxp = c->prev_context;
229 if (body)
230 declare_vars (c->temps, body, false);
231 else
232 record_vars (c->temps);
234 if (c->temp_htab)
235 htab_delete (c->temp_htab);
238 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
240 static void
241 gimple_push_bind_expr (gimple gimple_bind)
243 if (gimplify_ctxp->bind_expr_stack == NULL)
244 gimplify_ctxp->bind_expr_stack = VEC_alloc (gimple, heap, 8);
245 VEC_safe_push (gimple, heap, gimplify_ctxp->bind_expr_stack, gimple_bind);
248 /* Pop the first element off the stack of bindings. */
250 static void
251 gimple_pop_bind_expr (void)
253 VEC_pop (gimple, gimplify_ctxp->bind_expr_stack);
256 /* Return the first element of the stack of bindings. */
258 gimple
259 gimple_current_bind_expr (void)
261 return VEC_last (gimple, gimplify_ctxp->bind_expr_stack);
264 /* Return the stack of bindings created during gimplification. */
266 VEC(gimple, heap) *
267 gimple_bind_expr_stack (void)
269 return gimplify_ctxp->bind_expr_stack;
272 /* Return true iff there is a COND_EXPR between us and the innermost
273 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
275 static bool
276 gimple_conditional_context (void)
278 return gimplify_ctxp->conditions > 0;
281 /* Note that we've entered a COND_EXPR. */
283 static void
284 gimple_push_condition (void)
286 #ifdef ENABLE_GIMPLE_CHECKING
287 if (gimplify_ctxp->conditions == 0)
288 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
289 #endif
290 ++(gimplify_ctxp->conditions);
293 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
294 now, add any conditional cleanups we've seen to the prequeue. */
296 static void
297 gimple_pop_condition (gimple_seq *pre_p)
299 int conds = --(gimplify_ctxp->conditions);
301 gcc_assert (conds >= 0);
302 if (conds == 0)
304 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
305 gimplify_ctxp->conditional_cleanups = NULL;
309 /* A stable comparison routine for use with splay trees and DECLs. */
311 static int
312 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
314 tree a = (tree) xa;
315 tree b = (tree) xb;
317 return DECL_UID (a) - DECL_UID (b);
320 /* Create a new omp construct that deals with variable remapping. */
322 static struct gimplify_omp_ctx *
323 new_omp_context (enum omp_region_type region_type)
325 struct gimplify_omp_ctx *c;
327 c = XCNEW (struct gimplify_omp_ctx);
328 c->outer_context = gimplify_omp_ctxp;
329 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
330 c->privatized_types = pointer_set_create ();
331 c->location = input_location;
332 c->region_type = region_type;
333 if ((region_type & ORT_TASK) == 0)
334 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
335 else
336 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
338 return c;
341 /* Destroy an omp construct that deals with variable remapping. */
343 static void
344 delete_omp_context (struct gimplify_omp_ctx *c)
346 splay_tree_delete (c->variables);
347 pointer_set_destroy (c->privatized_types);
348 XDELETE (c);
351 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
352 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
354 /* Both gimplify the statement T and append it to *SEQ_P. This function
355 behaves exactly as gimplify_stmt, but you don't have to pass T as a
356 reference. */
358 void
359 gimplify_and_add (tree t, gimple_seq *seq_p)
361 gimplify_stmt (&t, seq_p);
364 /* Gimplify statement T into sequence *SEQ_P, and return the first
365 tuple in the sequence of generated tuples for this statement.
366 Return NULL if gimplifying T produced no tuples. */
368 static gimple
369 gimplify_and_return_first (tree t, gimple_seq *seq_p)
371 gimple_stmt_iterator last = gsi_last (*seq_p);
373 gimplify_and_add (t, seq_p);
375 if (!gsi_end_p (last))
377 gsi_next (&last);
378 return gsi_stmt (last);
380 else
381 return gimple_seq_first_stmt (*seq_p);
384 /* Strip off a legitimate source ending from the input string NAME of
385 length LEN. Rather than having to know the names used by all of
386 our front ends, we strip off an ending of a period followed by
387 up to five characters. (Java uses ".class".) */
389 static inline void
390 remove_suffix (char *name, int len)
392 int i;
394 for (i = 2; i < 8 && len > i; i++)
396 if (name[len - i] == '.')
398 name[len - i] = '\0';
399 break;
404 /* Create a new temporary name with PREFIX. Return an identifier. */
406 static GTY(()) unsigned int tmp_var_id_num;
408 tree
409 create_tmp_var_name (const char *prefix)
411 char *tmp_name;
413 if (prefix)
415 char *preftmp = ASTRDUP (prefix);
417 remove_suffix (preftmp, strlen (preftmp));
418 clean_symbol_name (preftmp);
420 prefix = preftmp;
423 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
424 return get_identifier (tmp_name);
427 /* Create a new temporary variable declaration of type TYPE.
428 Do NOT push it into the current binding. */
430 tree
431 create_tmp_var_raw (tree type, const char *prefix)
433 tree tmp_var;
435 tmp_var = build_decl (input_location,
436 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
437 type);
439 /* The variable was declared by the compiler. */
440 DECL_ARTIFICIAL (tmp_var) = 1;
441 /* And we don't want debug info for it. */
442 DECL_IGNORED_P (tmp_var) = 1;
444 /* Make the variable writable. */
445 TREE_READONLY (tmp_var) = 0;
447 DECL_EXTERNAL (tmp_var) = 0;
448 TREE_STATIC (tmp_var) = 0;
449 TREE_USED (tmp_var) = 1;
451 return tmp_var;
454 /* Create a new temporary variable declaration of type TYPE. DO push the
455 variable into the current binding. Further, assume that this is called
456 only from gimplification or optimization, at which point the creation of
457 certain types are bugs. */
459 tree
460 create_tmp_var (tree type, const char *prefix)
462 tree tmp_var;
464 /* We don't allow types that are addressable (meaning we can't make copies),
465 or incomplete. We also used to reject every variable size objects here,
466 but now support those for which a constant upper bound can be obtained.
467 The processing for variable sizes is performed in gimple_add_tmp_var,
468 point at which it really matters and possibly reached via paths not going
469 through this function, e.g. after direct calls to create_tmp_var_raw. */
470 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
472 tmp_var = create_tmp_var_raw (type, prefix);
473 gimple_add_tmp_var (tmp_var);
474 return tmp_var;
477 /* Create a new temporary variable declaration of type TYPE by calling
478 create_tmp_var and if TYPE is a vector or a complex number, mark the new
479 temporary as gimple register. */
481 tree
482 create_tmp_reg (tree type, const char *prefix)
484 tree tmp;
486 tmp = create_tmp_var (type, prefix);
487 if (TREE_CODE (type) == COMPLEX_TYPE
488 || TREE_CODE (type) == VECTOR_TYPE)
489 DECL_GIMPLE_REG_P (tmp) = 1;
491 return tmp;
494 /* Create a temporary with a name derived from VAL. Subroutine of
495 lookup_tmp_var; nobody else should call this function. */
497 static inline tree
498 create_tmp_from_val (tree val)
500 /* Drop all qualifiers and address-space information from the value type. */
501 return create_tmp_var (TYPE_MAIN_VARIANT (TREE_TYPE (val)), get_name (val));
504 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
505 an existing expression temporary. */
507 static tree
508 lookup_tmp_var (tree val, bool is_formal)
510 tree ret;
512 /* If not optimizing, never really reuse a temporary. local-alloc
513 won't allocate any variable that is used in more than one basic
514 block, which means it will go into memory, causing much extra
515 work in reload and final and poorer code generation, outweighing
516 the extra memory allocation here. */
517 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
518 ret = create_tmp_from_val (val);
519 else
521 elt_t elt, *elt_p;
522 void **slot;
524 elt.val = val;
525 if (gimplify_ctxp->temp_htab == NULL)
526 gimplify_ctxp->temp_htab
527 = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
528 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
529 if (*slot == NULL)
531 elt_p = XNEW (elt_t);
532 elt_p->val = val;
533 elt_p->temp = ret = create_tmp_from_val (val);
534 *slot = (void *) elt_p;
536 else
538 elt_p = (elt_t *) *slot;
539 ret = elt_p->temp;
543 return ret;
546 /* Returns true iff T is a valid RHS for an assignment to a renamed
547 user -- or front-end generated artificial -- variable. */
549 static bool
550 is_gimple_reg_rhs (tree t)
552 return get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS;
555 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
556 LHS, or for a call argument. */
558 static bool
559 is_gimple_mem_rhs (tree t)
561 /* If we're dealing with a renamable type, either source or dest must be
562 a renamed variable. */
563 if (is_gimple_reg_type (TREE_TYPE (t)))
564 return is_gimple_val (t);
565 else
566 return is_gimple_val (t) || is_gimple_lvalue (t);
569 /* Return true if T is a CALL_EXPR or an expression that can be
570 assigned to a temporary. Note that this predicate should only be
571 used during gimplification. See the rationale for this in
572 gimplify_modify_expr. */
574 static bool
575 is_gimple_reg_rhs_or_call (tree t)
577 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
578 || TREE_CODE (t) == CALL_EXPR);
581 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
582 this predicate should only be used during gimplification. See the
583 rationale for this in gimplify_modify_expr. */
585 static bool
586 is_gimple_mem_rhs_or_call (tree t)
588 /* If we're dealing with a renamable type, either source or dest must be
589 a renamed variable. */
590 if (is_gimple_reg_type (TREE_TYPE (t)))
591 return is_gimple_val (t);
592 else
593 return (is_gimple_val (t) || is_gimple_lvalue (t)
594 || TREE_CODE (t) == CALL_EXPR);
597 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
599 static tree
600 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
601 bool is_formal)
603 tree t, mod;
605 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
606 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
607 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
608 fb_rvalue);
610 t = lookup_tmp_var (val, is_formal);
612 if (is_formal
613 && (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
614 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE))
615 DECL_GIMPLE_REG_P (t) = 1;
617 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
619 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
621 /* gimplify_modify_expr might want to reduce this further. */
622 gimplify_and_add (mod, pre_p);
623 ggc_free (mod);
625 /* If we're gimplifying into ssa, gimplify_modify_expr will have
626 given our temporary an SSA name. Find and return it. */
627 if (gimplify_ctxp->into_ssa)
629 gimple last = gimple_seq_last_stmt (*pre_p);
630 t = gimple_get_lhs (last);
633 return t;
636 /* Return a formal temporary variable initialized with VAL. PRE_P is as
637 in gimplify_expr. Only use this function if:
639 1) The value of the unfactored expression represented by VAL will not
640 change between the initialization and use of the temporary, and
641 2) The temporary will not be otherwise modified.
643 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
644 and #2 means it is inappropriate for && temps.
646 For other cases, use get_initialized_tmp_var instead. */
648 tree
649 get_formal_tmp_var (tree val, gimple_seq *pre_p)
651 return internal_get_tmp_var (val, pre_p, NULL, true);
654 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
655 are as in gimplify_expr. */
657 tree
658 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
660 return internal_get_tmp_var (val, pre_p, post_p, false);
663 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
664 generate debug info for them; otherwise don't. */
666 void
667 declare_vars (tree vars, gimple scope, bool debug_info)
669 tree last = vars;
670 if (last)
672 tree temps, block;
674 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
676 temps = nreverse (last);
678 block = gimple_bind_block (scope);
679 gcc_assert (!block || TREE_CODE (block) == BLOCK);
680 if (!block || !debug_info)
682 DECL_CHAIN (last) = gimple_bind_vars (scope);
683 gimple_bind_set_vars (scope, temps);
685 else
687 /* We need to attach the nodes both to the BIND_EXPR and to its
688 associated BLOCK for debugging purposes. The key point here
689 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
690 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
691 if (BLOCK_VARS (block))
692 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
693 else
695 gimple_bind_set_vars (scope,
696 chainon (gimple_bind_vars (scope), temps));
697 BLOCK_VARS (block) = temps;
703 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
704 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
705 no such upper bound can be obtained. */
707 static void
708 force_constant_size (tree var)
710 /* The only attempt we make is by querying the maximum size of objects
711 of the variable's type. */
713 HOST_WIDE_INT max_size;
715 gcc_assert (TREE_CODE (var) == VAR_DECL);
717 max_size = max_int_size_in_bytes (TREE_TYPE (var));
719 gcc_assert (max_size >= 0);
721 DECL_SIZE_UNIT (var)
722 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
723 DECL_SIZE (var)
724 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
727 /* Push the temporary variable TMP into the current binding. */
729 void
730 gimple_add_tmp_var (tree tmp)
732 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
734 /* Later processing assumes that the object size is constant, which might
735 not be true at this point. Force the use of a constant upper bound in
736 this case. */
737 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
738 force_constant_size (tmp);
740 DECL_CONTEXT (tmp) = current_function_decl;
741 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
743 if (gimplify_ctxp)
745 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
746 gimplify_ctxp->temps = tmp;
748 /* Mark temporaries local within the nearest enclosing parallel. */
749 if (gimplify_omp_ctxp)
751 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
752 while (ctx && ctx->region_type == ORT_WORKSHARE)
753 ctx = ctx->outer_context;
754 if (ctx)
755 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
758 else if (cfun)
759 record_vars (tmp);
760 else
762 gimple_seq body_seq;
764 /* This case is for nested functions. We need to expose the locals
765 they create. */
766 body_seq = gimple_body (current_function_decl);
767 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
771 /* Determine whether to assign a location to the statement GS. */
773 static bool
774 should_carry_location_p (gimple gs)
776 /* Don't emit a line note for a label. We particularly don't want to
777 emit one for the break label, since it doesn't actually correspond
778 to the beginning of the loop/switch. */
779 if (gimple_code (gs) == GIMPLE_LABEL)
780 return false;
782 return true;
785 /* Return true if a location should not be emitted for this statement
786 by annotate_one_with_location. */
788 static inline bool
789 gimple_do_not_emit_location_p (gimple g)
791 return gimple_plf (g, GF_PLF_1);
794 /* Mark statement G so a location will not be emitted by
795 annotate_one_with_location. */
797 static inline void
798 gimple_set_do_not_emit_location (gimple g)
800 /* The PLF flags are initialized to 0 when a new tuple is created,
801 so no need to initialize it anywhere. */
802 gimple_set_plf (g, GF_PLF_1, true);
805 /* Set the location for gimple statement GS to LOCATION. */
807 static void
808 annotate_one_with_location (gimple gs, location_t location)
810 if (!gimple_has_location (gs)
811 && !gimple_do_not_emit_location_p (gs)
812 && should_carry_location_p (gs))
813 gimple_set_location (gs, location);
816 /* Set LOCATION for all the statements after iterator GSI in sequence
817 SEQ. If GSI is pointing to the end of the sequence, start with the
818 first statement in SEQ. */
820 static void
821 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
822 location_t location)
824 if (gsi_end_p (gsi))
825 gsi = gsi_start (seq);
826 else
827 gsi_next (&gsi);
829 for (; !gsi_end_p (gsi); gsi_next (&gsi))
830 annotate_one_with_location (gsi_stmt (gsi), location);
833 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
835 void
836 annotate_all_with_location (gimple_seq stmt_p, location_t location)
838 gimple_stmt_iterator i;
840 if (gimple_seq_empty_p (stmt_p))
841 return;
843 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
845 gimple gs = gsi_stmt (i);
846 annotate_one_with_location (gs, location);
850 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
851 nodes that are referenced more than once in GENERIC functions. This is
852 necessary because gimplification (translation into GIMPLE) is performed
853 by modifying tree nodes in-place, so gimplication of a shared node in a
854 first context could generate an invalid GIMPLE form in a second context.
856 This is achieved with a simple mark/copy/unmark algorithm that walks the
857 GENERIC representation top-down, marks nodes with TREE_VISITED the first
858 time it encounters them, duplicates them if they already have TREE_VISITED
859 set, and finally removes the TREE_VISITED marks it has set.
861 The algorithm works only at the function level, i.e. it generates a GENERIC
862 representation of a function with no nodes shared within the function when
863 passed a GENERIC function (except for nodes that are allowed to be shared).
865 At the global level, it is also necessary to unshare tree nodes that are
866 referenced in more than one function, for the same aforementioned reason.
867 This requires some cooperation from the front-end. There are 2 strategies:
869 1. Manual unsharing. The front-end needs to call unshare_expr on every
870 expression that might end up being shared across functions.
872 2. Deep unsharing. This is an extension of regular unsharing. Instead
873 of calling unshare_expr on expressions that might be shared across
874 functions, the front-end pre-marks them with TREE_VISITED. This will
875 ensure that they are unshared on the first reference within functions
876 when the regular unsharing algorithm runs. The counterpart is that
877 this algorithm must look deeper than for manual unsharing, which is
878 specified by LANG_HOOKS_DEEP_UNSHARING.
880 If there are only few specific cases of node sharing across functions, it is
881 probably easier for a front-end to unshare the expressions manually. On the
882 contrary, if the expressions generated at the global level are as widespread
883 as expressions generated within functions, deep unsharing is very likely the
884 way to go. */
886 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
887 These nodes model computations that must be done once. If we were to
888 unshare something like SAVE_EXPR(i++), the gimplification process would
889 create wrong code. However, if DATA is non-null, it must hold a pointer
890 set that is used to unshare the subtrees of these nodes. */
892 static tree
893 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
895 tree t = *tp;
896 enum tree_code code = TREE_CODE (t);
898 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
899 copy their subtrees if we can make sure to do it only once. */
900 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
902 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
904 else
905 *walk_subtrees = 0;
908 /* Stop at types, decls, constants like copy_tree_r. */
909 else if (TREE_CODE_CLASS (code) == tcc_type
910 || TREE_CODE_CLASS (code) == tcc_declaration
911 || TREE_CODE_CLASS (code) == tcc_constant
912 /* We can't do anything sensible with a BLOCK used as an
913 expression, but we also can't just die when we see it
914 because of non-expression uses. So we avert our eyes
915 and cross our fingers. Silly Java. */
916 || code == BLOCK)
917 *walk_subtrees = 0;
919 /* Cope with the statement expression extension. */
920 else if (code == STATEMENT_LIST)
923 /* Leave the bulk of the work to copy_tree_r itself. */
924 else
925 copy_tree_r (tp, walk_subtrees, NULL);
927 return NULL_TREE;
930 /* Callback for walk_tree to unshare most of the shared trees rooted at *TP.
931 If *TP has been visited already, then *TP is deeply copied by calling
932 mostly_copy_tree_r. DATA is passed to mostly_copy_tree_r unmodified. */
934 static tree
935 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
937 tree t = *tp;
938 enum tree_code code = TREE_CODE (t);
940 /* Skip types, decls, and constants. But we do want to look at their
941 types and the bounds of types. Mark them as visited so we properly
942 unmark their subtrees on the unmark pass. If we've already seen them,
943 don't look down further. */
944 if (TREE_CODE_CLASS (code) == tcc_type
945 || TREE_CODE_CLASS (code) == tcc_declaration
946 || TREE_CODE_CLASS (code) == tcc_constant)
948 if (TREE_VISITED (t))
949 *walk_subtrees = 0;
950 else
951 TREE_VISITED (t) = 1;
954 /* If this node has been visited already, unshare it and don't look
955 any deeper. */
956 else if (TREE_VISITED (t))
958 walk_tree (tp, mostly_copy_tree_r, data, NULL);
959 *walk_subtrees = 0;
962 /* Otherwise, mark the node as visited and keep looking. */
963 else
964 TREE_VISITED (t) = 1;
966 return NULL_TREE;
969 /* Unshare most of the shared trees rooted at *TP. DATA is passed to the
970 copy_if_shared_r callback unmodified. */
972 static inline void
973 copy_if_shared (tree *tp, void *data)
975 walk_tree (tp, copy_if_shared_r, data, NULL);
978 /* Unshare all the trees in the body of FNDECL, as well as in the bodies of
979 any nested functions. */
981 static void
982 unshare_body (tree fndecl)
984 struct cgraph_node *cgn = cgraph_get_node (fndecl);
985 /* If the language requires deep unsharing, we need a pointer set to make
986 sure we don't repeatedly unshare subtrees of unshareable nodes. */
987 struct pointer_set_t *visited
988 = lang_hooks.deep_unsharing ? pointer_set_create () : NULL;
990 copy_if_shared (&DECL_SAVED_TREE (fndecl), visited);
991 copy_if_shared (&DECL_SIZE (DECL_RESULT (fndecl)), visited);
992 copy_if_shared (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)), visited);
994 if (visited)
995 pointer_set_destroy (visited);
997 if (cgn)
998 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
999 unshare_body (cgn->symbol.decl);
1002 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
1003 Subtrees are walked until the first unvisited node is encountered. */
1005 static tree
1006 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1008 tree t = *tp;
1010 /* If this node has been visited, unmark it and keep looking. */
1011 if (TREE_VISITED (t))
1012 TREE_VISITED (t) = 0;
1014 /* Otherwise, don't look any deeper. */
1015 else
1016 *walk_subtrees = 0;
1018 return NULL_TREE;
1021 /* Unmark the visited trees rooted at *TP. */
1023 static inline void
1024 unmark_visited (tree *tp)
1026 walk_tree (tp, unmark_visited_r, NULL, NULL);
1029 /* Likewise, but mark all trees as not visited. */
1031 static void
1032 unvisit_body (tree fndecl)
1034 struct cgraph_node *cgn = cgraph_get_node (fndecl);
1036 unmark_visited (&DECL_SAVED_TREE (fndecl));
1037 unmark_visited (&DECL_SIZE (DECL_RESULT (fndecl)));
1038 unmark_visited (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)));
1040 if (cgn)
1041 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1042 unvisit_body (cgn->symbol.decl);
1045 /* Unconditionally make an unshared copy of EXPR. This is used when using
1046 stored expressions which span multiple functions, such as BINFO_VTABLE,
1047 as the normal unsharing process can't tell that they're shared. */
1049 tree
1050 unshare_expr (tree expr)
1052 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1053 return expr;
1056 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1057 contain statements and have a value. Assign its value to a temporary
1058 and give it void_type_node. Return the temporary, or NULL_TREE if
1059 WRAPPER was already void. */
1061 tree
1062 voidify_wrapper_expr (tree wrapper, tree temp)
1064 tree type = TREE_TYPE (wrapper);
1065 if (type && !VOID_TYPE_P (type))
1067 tree *p;
1069 /* Set p to point to the body of the wrapper. Loop until we find
1070 something that isn't a wrapper. */
1071 for (p = &wrapper; p && *p; )
1073 switch (TREE_CODE (*p))
1075 case BIND_EXPR:
1076 TREE_SIDE_EFFECTS (*p) = 1;
1077 TREE_TYPE (*p) = void_type_node;
1078 /* For a BIND_EXPR, the body is operand 1. */
1079 p = &BIND_EXPR_BODY (*p);
1080 break;
1082 case CLEANUP_POINT_EXPR:
1083 case TRY_FINALLY_EXPR:
1084 case TRY_CATCH_EXPR:
1085 TREE_SIDE_EFFECTS (*p) = 1;
1086 TREE_TYPE (*p) = void_type_node;
1087 p = &TREE_OPERAND (*p, 0);
1088 break;
1090 case STATEMENT_LIST:
1092 tree_stmt_iterator i = tsi_last (*p);
1093 TREE_SIDE_EFFECTS (*p) = 1;
1094 TREE_TYPE (*p) = void_type_node;
1095 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1097 break;
1099 case COMPOUND_EXPR:
1100 /* Advance to the last statement. Set all container types to
1101 void. */
1102 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1104 TREE_SIDE_EFFECTS (*p) = 1;
1105 TREE_TYPE (*p) = void_type_node;
1107 break;
1109 case TRANSACTION_EXPR:
1110 TREE_SIDE_EFFECTS (*p) = 1;
1111 TREE_TYPE (*p) = void_type_node;
1112 p = &TRANSACTION_EXPR_BODY (*p);
1113 break;
1115 default:
1116 /* Assume that any tree upon which voidify_wrapper_expr is
1117 directly called is a wrapper, and that its body is op0. */
1118 if (p == &wrapper)
1120 TREE_SIDE_EFFECTS (*p) = 1;
1121 TREE_TYPE (*p) = void_type_node;
1122 p = &TREE_OPERAND (*p, 0);
1123 break;
1125 goto out;
1129 out:
1130 if (p == NULL || IS_EMPTY_STMT (*p))
1131 temp = NULL_TREE;
1132 else if (temp)
1134 /* The wrapper is on the RHS of an assignment that we're pushing
1135 down. */
1136 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1137 || TREE_CODE (temp) == MODIFY_EXPR);
1138 TREE_OPERAND (temp, 1) = *p;
1139 *p = temp;
1141 else
1143 temp = create_tmp_var (type, "retval");
1144 *p = build2 (INIT_EXPR, type, temp, *p);
1147 return temp;
1150 return NULL_TREE;
1153 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1154 a temporary through which they communicate. */
1156 static void
1157 build_stack_save_restore (gimple *save, gimple *restore)
1159 tree tmp_var;
1161 *save = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0);
1162 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1163 gimple_call_set_lhs (*save, tmp_var);
1165 *restore
1166 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE),
1167 1, tmp_var);
1170 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1172 static enum gimplify_status
1173 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1175 tree bind_expr = *expr_p;
1176 bool old_save_stack = gimplify_ctxp->save_stack;
1177 tree t;
1178 gimple gimple_bind;
1179 gimple_seq body, cleanup;
1180 gimple stack_save;
1182 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1184 /* Mark variables seen in this bind expr. */
1185 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1187 if (TREE_CODE (t) == VAR_DECL)
1189 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1191 /* Mark variable as local. */
1192 if (ctx && !DECL_EXTERNAL (t)
1193 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1194 || splay_tree_lookup (ctx->variables,
1195 (splay_tree_key) t) == NULL))
1196 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1198 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1200 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1201 cfun->has_local_explicit_reg_vars = true;
1204 /* Preliminarily mark non-addressed complex variables as eligible
1205 for promotion to gimple registers. We'll transform their uses
1206 as we find them. */
1207 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1208 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1209 && !TREE_THIS_VOLATILE (t)
1210 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1211 && !needs_to_live_in_memory (t))
1212 DECL_GIMPLE_REG_P (t) = 1;
1215 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1216 BIND_EXPR_BLOCK (bind_expr));
1217 gimple_push_bind_expr (gimple_bind);
1219 gimplify_ctxp->save_stack = false;
1221 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1222 body = NULL;
1223 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1224 gimple_bind_set_body (gimple_bind, body);
1226 cleanup = NULL;
1227 stack_save = NULL;
1228 if (gimplify_ctxp->save_stack)
1230 gimple stack_restore;
1232 /* Save stack on entry and restore it on exit. Add a try_finally
1233 block to achieve this. Note that mudflap depends on the
1234 format of the emitted code: see mx_register_decls(). */
1235 build_stack_save_restore (&stack_save, &stack_restore);
1237 gimplify_seq_add_stmt (&cleanup, stack_restore);
1240 /* Add clobbers for all variables that go out of scope. */
1241 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1243 if (TREE_CODE (t) == VAR_DECL
1244 && !is_global_var (t)
1245 && DECL_CONTEXT (t) == current_function_decl
1246 && !DECL_HARD_REGISTER (t)
1247 && !TREE_THIS_VOLATILE (t)
1248 && !DECL_HAS_VALUE_EXPR_P (t)
1249 /* Only care for variables that have to be in memory. Others
1250 will be rewritten into SSA names, hence moved to the top-level. */
1251 && !is_gimple_reg (t))
1253 tree clobber = build_constructor (TREE_TYPE (t), NULL);
1254 TREE_THIS_VOLATILE (clobber) = 1;
1255 gimplify_seq_add_stmt (&cleanup, gimple_build_assign (t, clobber));
1259 if (cleanup)
1261 gimple gs;
1262 gimple_seq new_body;
1264 new_body = NULL;
1265 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1266 GIMPLE_TRY_FINALLY);
1268 if (stack_save)
1269 gimplify_seq_add_stmt (&new_body, stack_save);
1270 gimplify_seq_add_stmt (&new_body, gs);
1271 gimple_bind_set_body (gimple_bind, new_body);
1274 gimplify_ctxp->save_stack = old_save_stack;
1275 gimple_pop_bind_expr ();
1277 gimplify_seq_add_stmt (pre_p, gimple_bind);
1279 if (temp)
1281 *expr_p = temp;
1282 return GS_OK;
1285 *expr_p = NULL_TREE;
1286 return GS_ALL_DONE;
1289 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1290 GIMPLE value, it is assigned to a new temporary and the statement is
1291 re-written to return the temporary.
1293 PRE_P points to the sequence where side effects that must happen before
1294 STMT should be stored. */
1296 static enum gimplify_status
1297 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1299 gimple ret;
1300 tree ret_expr = TREE_OPERAND (stmt, 0);
1301 tree result_decl, result;
1303 if (ret_expr == error_mark_node)
1304 return GS_ERROR;
1306 if (!ret_expr
1307 || TREE_CODE (ret_expr) == RESULT_DECL
1308 || ret_expr == error_mark_node)
1310 gimple ret = gimple_build_return (ret_expr);
1311 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1312 gimplify_seq_add_stmt (pre_p, ret);
1313 return GS_ALL_DONE;
1316 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1317 result_decl = NULL_TREE;
1318 else
1320 result_decl = TREE_OPERAND (ret_expr, 0);
1322 /* See through a return by reference. */
1323 if (TREE_CODE (result_decl) == INDIRECT_REF)
1324 result_decl = TREE_OPERAND (result_decl, 0);
1326 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1327 || TREE_CODE (ret_expr) == INIT_EXPR)
1328 && TREE_CODE (result_decl) == RESULT_DECL);
1331 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1332 Recall that aggregate_value_p is FALSE for any aggregate type that is
1333 returned in registers. If we're returning values in registers, then
1334 we don't want to extend the lifetime of the RESULT_DECL, particularly
1335 across another call. In addition, for those aggregates for which
1336 hard_function_value generates a PARALLEL, we'll die during normal
1337 expansion of structure assignments; there's special code in expand_return
1338 to handle this case that does not exist in expand_expr. */
1339 if (!result_decl)
1340 result = NULL_TREE;
1341 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1343 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1345 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1346 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1347 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1348 should be effectively allocated by the caller, i.e. all calls to
1349 this function must be subject to the Return Slot Optimization. */
1350 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1351 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1353 result = result_decl;
1355 else if (gimplify_ctxp->return_temp)
1356 result = gimplify_ctxp->return_temp;
1357 else
1359 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1361 /* ??? With complex control flow (usually involving abnormal edges),
1362 we can wind up warning about an uninitialized value for this. Due
1363 to how this variable is constructed and initialized, this is never
1364 true. Give up and never warn. */
1365 TREE_NO_WARNING (result) = 1;
1367 gimplify_ctxp->return_temp = result;
1370 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1371 Then gimplify the whole thing. */
1372 if (result != result_decl)
1373 TREE_OPERAND (ret_expr, 0) = result;
1375 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1377 ret = gimple_build_return (result);
1378 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1379 gimplify_seq_add_stmt (pre_p, ret);
1381 return GS_ALL_DONE;
1384 /* Gimplify a variable-length array DECL. */
1386 static void
1387 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1389 /* This is a variable-sized decl. Simplify its size and mark it
1390 for deferred expansion. Note that mudflap depends on the format
1391 of the emitted code: see mx_register_decls(). */
1392 tree t, addr, ptr_type;
1394 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1395 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1397 /* All occurrences of this decl in final gimplified code will be
1398 replaced by indirection. Setting DECL_VALUE_EXPR does two
1399 things: First, it lets the rest of the gimplifier know what
1400 replacement to use. Second, it lets the debug info know
1401 where to find the value. */
1402 ptr_type = build_pointer_type (TREE_TYPE (decl));
1403 addr = create_tmp_var (ptr_type, get_name (decl));
1404 DECL_IGNORED_P (addr) = 0;
1405 t = build_fold_indirect_ref (addr);
1406 TREE_THIS_NOTRAP (t) = 1;
1407 SET_DECL_VALUE_EXPR (decl, t);
1408 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1410 t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
1411 t = build_call_expr (t, 2, DECL_SIZE_UNIT (decl),
1412 size_int (DECL_ALIGN (decl)));
1413 /* The call has been built for a variable-sized object. */
1414 CALL_ALLOCA_FOR_VAR_P (t) = 1;
1415 t = fold_convert (ptr_type, t);
1416 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1418 gimplify_and_add (t, seq_p);
1420 /* Indicate that we need to restore the stack level when the
1421 enclosing BIND_EXPR is exited. */
1422 gimplify_ctxp->save_stack = true;
1425 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1426 and initialization explicit. */
1428 static enum gimplify_status
1429 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1431 tree stmt = *stmt_p;
1432 tree decl = DECL_EXPR_DECL (stmt);
1434 *stmt_p = NULL_TREE;
1436 if (TREE_TYPE (decl) == error_mark_node)
1437 return GS_ERROR;
1439 if ((TREE_CODE (decl) == TYPE_DECL
1440 || TREE_CODE (decl) == VAR_DECL)
1441 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1442 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1444 /* ??? DECL_ORIGINAL_TYPE is streamed for LTO so it needs to be gimplified
1445 in case its size expressions contain problematic nodes like CALL_EXPR. */
1446 if (TREE_CODE (decl) == TYPE_DECL
1447 && DECL_ORIGINAL_TYPE (decl)
1448 && !TYPE_SIZES_GIMPLIFIED (DECL_ORIGINAL_TYPE (decl)))
1449 gimplify_type_sizes (DECL_ORIGINAL_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);
1669 /* We may have folded a case range to a one-value case. */
1670 if (tree_int_cst_equal (low, high))
1671 high = NULL_TREE;
1675 CASE_LOW (elt) = low;
1676 CASE_HIGH (elt) = high;
1678 else
1680 gcc_assert (!default_case);
1681 default_case = elt;
1682 /* The default case must be passed separately to the
1683 gimple_build_switch routines. But if DEFAULT_CASEP
1684 is NULL, we do not remove the default case (it would
1685 be completely lost). */
1686 if (default_casep)
1687 remove_element = TRUE;
1690 if (remove_element)
1691 VEC_ordered_remove (tree, labels, i);
1692 else
1693 i++;
1695 len = i;
1697 if (!VEC_empty (tree, labels))
1698 sort_case_labels (labels);
1700 if (default_casep && !default_case)
1702 /* If the switch has no default label, add one, so that we jump
1703 around the switch body. If the labels already cover the whole
1704 range of the switch index_type, add the default label pointing
1705 to one of the existing labels. */
1706 if (len
1707 && TYPE_MIN_VALUE (index_type)
1708 && TYPE_MAX_VALUE (index_type)
1709 && tree_int_cst_equal (CASE_LOW (VEC_index (tree, labels, 0)),
1710 TYPE_MIN_VALUE (index_type)))
1712 tree low, high = CASE_HIGH (VEC_index (tree, labels, len - 1));
1713 if (!high)
1714 high = CASE_LOW (VEC_index (tree, labels, len - 1));
1715 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
1717 for (i = 1; i < len; i++)
1719 high = CASE_LOW (VEC_index (tree, labels, i));
1720 low = CASE_HIGH (VEC_index (tree, labels, i - 1));
1721 if (!low)
1722 low = CASE_LOW (VEC_index (tree, labels, i - 1));
1723 if ((TREE_INT_CST_LOW (low) + 1
1724 != TREE_INT_CST_LOW (high))
1725 || (TREE_INT_CST_HIGH (low)
1726 + (TREE_INT_CST_LOW (high) == 0)
1727 != TREE_INT_CST_HIGH (high)))
1728 break;
1730 if (i == len)
1732 tree label = CASE_LABEL (VEC_index (tree, labels, 0));
1733 default_case = build_case_label (NULL_TREE, NULL_TREE,
1734 label);
1740 if (default_casep)
1741 *default_casep = default_case;
1744 /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
1745 branch to. */
1747 static enum gimplify_status
1748 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1750 tree switch_expr = *expr_p;
1751 gimple_seq switch_body_seq = NULL;
1752 enum gimplify_status ret;
1753 tree index_type = TREE_TYPE (switch_expr);
1754 if (index_type == NULL_TREE)
1755 index_type = TREE_TYPE (SWITCH_COND (switch_expr));
1757 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1758 fb_rvalue);
1759 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1760 return ret;
1762 if (SWITCH_BODY (switch_expr))
1764 VEC (tree,heap) *labels;
1765 VEC (tree,heap) *saved_labels;
1766 tree default_case = NULL_TREE;
1767 gimple gimple_switch;
1769 /* If someone can be bothered to fill in the labels, they can
1770 be bothered to null out the body too. */
1771 gcc_assert (!SWITCH_LABELS (switch_expr));
1773 /* Save old labels, get new ones from body, then restore the old
1774 labels. Save all the things from the switch body to append after. */
1775 saved_labels = gimplify_ctxp->case_labels;
1776 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1778 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1779 labels = gimplify_ctxp->case_labels;
1780 gimplify_ctxp->case_labels = saved_labels;
1782 preprocess_case_label_vec_for_gimple (labels, index_type,
1783 &default_case);
1785 if (!default_case)
1787 gimple new_default;
1789 default_case
1790 = build_case_label (NULL_TREE, NULL_TREE,
1791 create_artificial_label (UNKNOWN_LOCATION));
1792 new_default = gimple_build_label (CASE_LABEL (default_case));
1793 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1796 gimple_switch = gimple_build_switch_vec (SWITCH_COND (switch_expr),
1797 default_case, labels);
1798 gimplify_seq_add_stmt (pre_p, gimple_switch);
1799 gimplify_seq_add_seq (pre_p, switch_body_seq);
1800 VEC_free(tree, heap, labels);
1802 else
1803 gcc_assert (SWITCH_LABELS (switch_expr));
1805 return GS_ALL_DONE;
1808 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1810 static enum gimplify_status
1811 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1813 struct gimplify_ctx *ctxp;
1814 gimple gimple_label;
1816 /* Invalid OpenMP programs can play Duff's Device type games with
1817 #pragma omp parallel. At least in the C front end, we don't
1818 detect such invalid branches until after gimplification. */
1819 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1820 if (ctxp->case_labels)
1821 break;
1823 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1824 VEC_safe_push (tree, heap, ctxp->case_labels, *expr_p);
1825 gimplify_seq_add_stmt (pre_p, gimple_label);
1827 return GS_ALL_DONE;
1830 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1831 if necessary. */
1833 tree
1834 build_and_jump (tree *label_p)
1836 if (label_p == NULL)
1837 /* If there's nowhere to jump, just fall through. */
1838 return NULL_TREE;
1840 if (*label_p == NULL_TREE)
1842 tree label = create_artificial_label (UNKNOWN_LOCATION);
1843 *label_p = label;
1846 return build1 (GOTO_EXPR, void_type_node, *label_p);
1849 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1850 This also involves building a label to jump to and communicating it to
1851 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1853 static enum gimplify_status
1854 gimplify_exit_expr (tree *expr_p)
1856 tree cond = TREE_OPERAND (*expr_p, 0);
1857 tree expr;
1859 expr = build_and_jump (&gimplify_ctxp->exit_label);
1860 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1861 *expr_p = expr;
1863 return GS_OK;
1866 /* A helper function to be called via walk_tree. Mark all labels under *TP
1867 as being forced. To be called for DECL_INITIAL of static variables. */
1869 tree
1870 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1872 if (TYPE_P (*tp))
1873 *walk_subtrees = 0;
1874 if (TREE_CODE (*tp) == LABEL_DECL)
1875 FORCED_LABEL (*tp) = 1;
1877 return NULL_TREE;
1880 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1881 different from its canonical type, wrap the whole thing inside a
1882 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1883 type.
1885 The canonical type of a COMPONENT_REF is the type of the field being
1886 referenced--unless the field is a bit-field which can be read directly
1887 in a smaller mode, in which case the canonical type is the
1888 sign-appropriate type corresponding to that mode. */
1890 static void
1891 canonicalize_component_ref (tree *expr_p)
1893 tree expr = *expr_p;
1894 tree type;
1896 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1898 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1899 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1900 else
1901 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1903 /* One could argue that all the stuff below is not necessary for
1904 the non-bitfield case and declare it a FE error if type
1905 adjustment would be needed. */
1906 if (TREE_TYPE (expr) != type)
1908 #ifdef ENABLE_TYPES_CHECKING
1909 tree old_type = TREE_TYPE (expr);
1910 #endif
1911 int type_quals;
1913 /* We need to preserve qualifiers and propagate them from
1914 operand 0. */
1915 type_quals = TYPE_QUALS (type)
1916 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1917 if (TYPE_QUALS (type) != type_quals)
1918 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1920 /* Set the type of the COMPONENT_REF to the underlying type. */
1921 TREE_TYPE (expr) = type;
1923 #ifdef ENABLE_TYPES_CHECKING
1924 /* It is now a FE error, if the conversion from the canonical
1925 type to the original expression type is not useless. */
1926 gcc_assert (useless_type_conversion_p (old_type, type));
1927 #endif
1931 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1932 to foo, embed that change in the ADDR_EXPR by converting
1933 T array[U];
1934 (T *)&array
1936 &array[L]
1937 where L is the lower bound. For simplicity, only do this for constant
1938 lower bound.
1939 The constraint is that the type of &array[L] is trivially convertible
1940 to T *. */
1942 static void
1943 canonicalize_addr_expr (tree *expr_p)
1945 tree expr = *expr_p;
1946 tree addr_expr = TREE_OPERAND (expr, 0);
1947 tree datype, ddatype, pddatype;
1949 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1950 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1951 || TREE_CODE (addr_expr) != ADDR_EXPR)
1952 return;
1954 /* The addr_expr type should be a pointer to an array. */
1955 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1956 if (TREE_CODE (datype) != ARRAY_TYPE)
1957 return;
1959 /* The pointer to element type shall be trivially convertible to
1960 the expression pointer type. */
1961 ddatype = TREE_TYPE (datype);
1962 pddatype = build_pointer_type (ddatype);
1963 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1964 pddatype))
1965 return;
1967 /* The lower bound and element sizes must be constant. */
1968 if (!TYPE_SIZE_UNIT (ddatype)
1969 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1970 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1971 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1972 return;
1974 /* All checks succeeded. Build a new node to merge the cast. */
1975 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1976 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1977 NULL_TREE, NULL_TREE);
1978 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1980 /* We can have stripped a required restrict qualifier above. */
1981 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1982 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1985 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1986 underneath as appropriate. */
1988 static enum gimplify_status
1989 gimplify_conversion (tree *expr_p)
1991 location_t loc = EXPR_LOCATION (*expr_p);
1992 gcc_assert (CONVERT_EXPR_P (*expr_p));
1994 /* Then strip away all but the outermost conversion. */
1995 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1997 /* And remove the outermost conversion if it's useless. */
1998 if (tree_ssa_useless_type_conversion (*expr_p))
1999 *expr_p = TREE_OPERAND (*expr_p, 0);
2001 /* If we still have a conversion at the toplevel,
2002 then canonicalize some constructs. */
2003 if (CONVERT_EXPR_P (*expr_p))
2005 tree sub = TREE_OPERAND (*expr_p, 0);
2007 /* If a NOP conversion is changing the type of a COMPONENT_REF
2008 expression, then canonicalize its type now in order to expose more
2009 redundant conversions. */
2010 if (TREE_CODE (sub) == COMPONENT_REF)
2011 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
2013 /* If a NOP conversion is changing a pointer to array of foo
2014 to a pointer to foo, embed that change in the ADDR_EXPR. */
2015 else if (TREE_CODE (sub) == ADDR_EXPR)
2016 canonicalize_addr_expr (expr_p);
2019 /* If we have a conversion to a non-register type force the
2020 use of a VIEW_CONVERT_EXPR instead. */
2021 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
2022 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
2023 TREE_OPERAND (*expr_p, 0));
2025 return GS_OK;
2028 /* Nonlocal VLAs seen in the current function. */
2029 static struct pointer_set_t *nonlocal_vlas;
2031 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
2032 DECL_VALUE_EXPR, and it's worth re-examining things. */
2034 static enum gimplify_status
2035 gimplify_var_or_parm_decl (tree *expr_p)
2037 tree decl = *expr_p;
2039 /* ??? If this is a local variable, and it has not been seen in any
2040 outer BIND_EXPR, then it's probably the result of a duplicate
2041 declaration, for which we've already issued an error. It would
2042 be really nice if the front end wouldn't leak these at all.
2043 Currently the only known culprit is C++ destructors, as seen
2044 in g++.old-deja/g++.jason/binding.C. */
2045 if (TREE_CODE (decl) == VAR_DECL
2046 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
2047 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
2048 && decl_function_context (decl) == current_function_decl)
2050 gcc_assert (seen_error ());
2051 return GS_ERROR;
2054 /* When within an OpenMP context, notice uses of variables. */
2055 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
2056 return GS_ALL_DONE;
2058 /* If the decl is an alias for another expression, substitute it now. */
2059 if (DECL_HAS_VALUE_EXPR_P (decl))
2061 tree value_expr = DECL_VALUE_EXPR (decl);
2063 /* For referenced nonlocal VLAs add a decl for debugging purposes
2064 to the current function. */
2065 if (TREE_CODE (decl) == VAR_DECL
2066 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
2067 && nonlocal_vlas != NULL
2068 && TREE_CODE (value_expr) == INDIRECT_REF
2069 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
2070 && decl_function_context (decl) != current_function_decl)
2072 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
2073 while (ctx && ctx->region_type == ORT_WORKSHARE)
2074 ctx = ctx->outer_context;
2075 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
2077 tree copy = copy_node (decl), block;
2079 lang_hooks.dup_lang_specific_decl (copy);
2080 SET_DECL_RTL (copy, 0);
2081 TREE_USED (copy) = 1;
2082 block = DECL_INITIAL (current_function_decl);
2083 DECL_CHAIN (copy) = BLOCK_VARS (block);
2084 BLOCK_VARS (block) = copy;
2085 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
2086 DECL_HAS_VALUE_EXPR_P (copy) = 1;
2090 *expr_p = unshare_expr (value_expr);
2091 return GS_OK;
2094 return GS_ALL_DONE;
2097 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
2098 node *EXPR_P.
2100 compound_lval
2101 : min_lval '[' val ']'
2102 | min_lval '.' ID
2103 | compound_lval '[' val ']'
2104 | compound_lval '.' ID
2106 This is not part of the original SIMPLE definition, which separates
2107 array and member references, but it seems reasonable to handle them
2108 together. Also, this way we don't run into problems with union
2109 aliasing; gcc requires that for accesses through a union to alias, the
2110 union reference must be explicit, which was not always the case when we
2111 were splitting up array and member refs.
2113 PRE_P points to the sequence where side effects that must happen before
2114 *EXPR_P should be stored.
2116 POST_P points to the sequence where side effects that must happen after
2117 *EXPR_P should be stored. */
2119 static enum gimplify_status
2120 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2121 fallback_t fallback)
2123 tree *p;
2124 VEC(tree,heap) *stack;
2125 enum gimplify_status ret = GS_ALL_DONE, tret;
2126 int i;
2127 location_t loc = EXPR_LOCATION (*expr_p);
2128 tree expr = *expr_p;
2130 /* Create a stack of the subexpressions so later we can walk them in
2131 order from inner to outer. */
2132 stack = VEC_alloc (tree, heap, 10);
2134 /* We can handle anything that get_inner_reference can deal with. */
2135 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
2137 restart:
2138 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2139 if (TREE_CODE (*p) == INDIRECT_REF)
2140 *p = fold_indirect_ref_loc (loc, *p);
2142 if (handled_component_p (*p))
2144 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2145 additional COMPONENT_REFs. */
2146 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
2147 && gimplify_var_or_parm_decl (p) == GS_OK)
2148 goto restart;
2149 else
2150 break;
2152 VEC_safe_push (tree, heap, stack, *p);
2155 gcc_assert (VEC_length (tree, stack));
2157 /* Now STACK is a stack of pointers to all the refs we've walked through
2158 and P points to the innermost expression.
2160 Java requires that we elaborated nodes in source order. That
2161 means we must gimplify the inner expression followed by each of
2162 the indices, in order. But we can't gimplify the inner
2163 expression until we deal with any variable bounds, sizes, or
2164 positions in order to deal with PLACEHOLDER_EXPRs.
2166 So we do this in three steps. First we deal with the annotations
2167 for any variables in the components, then we gimplify the base,
2168 then we gimplify any indices, from left to right. */
2169 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
2171 tree t = VEC_index (tree, stack, i);
2173 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2175 /* Gimplify the low bound and element type size and put them into
2176 the ARRAY_REF. If these values are set, they have already been
2177 gimplified. */
2178 if (TREE_OPERAND (t, 2) == NULL_TREE)
2180 tree low = unshare_expr (array_ref_low_bound (t));
2181 if (!is_gimple_min_invariant (low))
2183 TREE_OPERAND (t, 2) = low;
2184 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2185 post_p, is_gimple_reg,
2186 fb_rvalue);
2187 ret = MIN (ret, tret);
2190 else
2192 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2193 is_gimple_reg, fb_rvalue);
2194 ret = MIN (ret, tret);
2197 if (TREE_OPERAND (t, 3) == NULL_TREE)
2199 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2200 tree elmt_size = unshare_expr (array_ref_element_size (t));
2201 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2203 /* Divide the element size by the alignment of the element
2204 type (above). */
2205 elmt_size
2206 = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2208 if (!is_gimple_min_invariant (elmt_size))
2210 TREE_OPERAND (t, 3) = elmt_size;
2211 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2212 post_p, is_gimple_reg,
2213 fb_rvalue);
2214 ret = MIN (ret, tret);
2217 else
2219 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
2220 is_gimple_reg, fb_rvalue);
2221 ret = MIN (ret, tret);
2224 else if (TREE_CODE (t) == COMPONENT_REF)
2226 /* Set the field offset into T and gimplify it. */
2227 if (TREE_OPERAND (t, 2) == NULL_TREE)
2229 tree offset = unshare_expr (component_ref_field_offset (t));
2230 tree field = TREE_OPERAND (t, 1);
2231 tree factor
2232 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2234 /* Divide the offset by its alignment. */
2235 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2237 if (!is_gimple_min_invariant (offset))
2239 TREE_OPERAND (t, 2) = offset;
2240 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2241 post_p, is_gimple_reg,
2242 fb_rvalue);
2243 ret = MIN (ret, tret);
2246 else
2248 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2249 is_gimple_reg, fb_rvalue);
2250 ret = MIN (ret, tret);
2255 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2256 so as to match the min_lval predicate. Failure to do so may result
2257 in the creation of large aggregate temporaries. */
2258 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2259 fallback | fb_lvalue);
2260 ret = MIN (ret, tret);
2262 /* And finally, the indices and operands to BIT_FIELD_REF. During this
2263 loop we also remove any useless conversions. */
2264 for (; VEC_length (tree, stack) > 0; )
2266 tree t = VEC_pop (tree, stack);
2268 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2270 /* Gimplify the dimension. */
2271 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2273 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2274 is_gimple_val, fb_rvalue);
2275 ret = MIN (ret, tret);
2278 else if (TREE_CODE (t) == BIT_FIELD_REF)
2280 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2281 is_gimple_val, fb_rvalue);
2282 ret = MIN (ret, tret);
2283 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2284 is_gimple_val, fb_rvalue);
2285 ret = MIN (ret, tret);
2288 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
2290 /* The innermost expression P may have originally had
2291 TREE_SIDE_EFFECTS set which would have caused all the outer
2292 expressions in *EXPR_P leading to P to also have had
2293 TREE_SIDE_EFFECTS set. */
2294 recalculate_side_effects (t);
2297 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2298 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
2300 canonicalize_component_ref (expr_p);
2303 VEC_free (tree, heap, stack);
2305 gcc_assert (*expr_p == expr || ret != GS_ALL_DONE);
2307 return ret;
2310 /* Gimplify the self modifying expression pointed to by EXPR_P
2311 (++, --, +=, -=).
2313 PRE_P points to the list where side effects that must happen before
2314 *EXPR_P should be stored.
2316 POST_P points to the list where side effects that must happen after
2317 *EXPR_P should be stored.
2319 WANT_VALUE is nonzero iff we want to use the value of this expression
2320 in another expression. */
2322 static enum gimplify_status
2323 gimplify_self_mod_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2324 bool want_value)
2326 enum tree_code code;
2327 tree lhs, lvalue, rhs, t1;
2328 gimple_seq post = NULL, *orig_post_p = post_p;
2329 bool postfix;
2330 enum tree_code arith_code;
2331 enum gimplify_status ret;
2332 location_t loc = EXPR_LOCATION (*expr_p);
2334 code = TREE_CODE (*expr_p);
2336 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
2337 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
2339 /* Prefix or postfix? */
2340 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
2341 /* Faster to treat as prefix if result is not used. */
2342 postfix = want_value;
2343 else
2344 postfix = false;
2346 /* For postfix, make sure the inner expression's post side effects
2347 are executed after side effects from this expression. */
2348 if (postfix)
2349 post_p = &post;
2351 /* Add or subtract? */
2352 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2353 arith_code = PLUS_EXPR;
2354 else
2355 arith_code = MINUS_EXPR;
2357 /* Gimplify the LHS into a GIMPLE lvalue. */
2358 lvalue = TREE_OPERAND (*expr_p, 0);
2359 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2360 if (ret == GS_ERROR)
2361 return ret;
2363 /* Extract the operands to the arithmetic operation. */
2364 lhs = lvalue;
2365 rhs = TREE_OPERAND (*expr_p, 1);
2367 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2368 that as the result value and in the postqueue operation. We also
2369 make sure to make lvalue a minimal lval, see
2370 gcc.c-torture/execute/20040313-1.c for an example where this matters. */
2371 if (postfix)
2373 if (!is_gimple_min_lval (lvalue))
2375 mark_addressable (lvalue);
2376 lvalue = build_fold_addr_expr_loc (input_location, lvalue);
2377 gimplify_expr (&lvalue, pre_p, post_p, is_gimple_val, fb_rvalue);
2378 lvalue = build_fold_indirect_ref_loc (input_location, lvalue);
2380 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
2381 if (ret == GS_ERROR)
2382 return ret;
2385 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2386 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
2388 rhs = convert_to_ptrofftype_loc (loc, rhs);
2389 if (arith_code == MINUS_EXPR)
2390 rhs = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (rhs), rhs);
2391 arith_code = POINTER_PLUS_EXPR;
2394 if (postfix)
2396 tree t2 = get_initialized_tmp_var (lhs, pre_p, NULL);
2397 t1 = build2 (arith_code, TREE_TYPE (*expr_p), t2, rhs);
2398 gimplify_assign (lvalue, t1, pre_p);
2399 gimplify_seq_add_seq (orig_post_p, post);
2400 *expr_p = t2;
2401 return GS_ALL_DONE;
2403 else
2405 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
2406 *expr_p = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
2407 return GS_OK;
2411 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2413 static void
2414 maybe_with_size_expr (tree *expr_p)
2416 tree expr = *expr_p;
2417 tree type = TREE_TYPE (expr);
2418 tree size;
2420 /* If we've already wrapped this or the type is error_mark_node, we can't do
2421 anything. */
2422 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2423 || type == error_mark_node)
2424 return;
2426 /* If the size isn't known or is a constant, we have nothing to do. */
2427 size = TYPE_SIZE_UNIT (type);
2428 if (!size || TREE_CODE (size) == INTEGER_CST)
2429 return;
2431 /* Otherwise, make a WITH_SIZE_EXPR. */
2432 size = unshare_expr (size);
2433 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2434 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2437 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2438 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2439 the CALL_EXPR. */
2441 static enum gimplify_status
2442 gimplify_arg (tree *arg_p, gimple_seq *pre_p, location_t call_location)
2444 bool (*test) (tree);
2445 fallback_t fb;
2447 /* In general, we allow lvalues for function arguments to avoid
2448 extra overhead of copying large aggregates out of even larger
2449 aggregates into temporaries only to copy the temporaries to
2450 the argument list. Make optimizers happy by pulling out to
2451 temporaries those types that fit in registers. */
2452 if (is_gimple_reg_type (TREE_TYPE (*arg_p)))
2453 test = is_gimple_val, fb = fb_rvalue;
2454 else
2456 test = is_gimple_lvalue, fb = fb_either;
2457 /* Also strip a TARGET_EXPR that would force an extra copy. */
2458 if (TREE_CODE (*arg_p) == TARGET_EXPR)
2460 tree init = TARGET_EXPR_INITIAL (*arg_p);
2461 if (init
2462 && !VOID_TYPE_P (TREE_TYPE (init)))
2463 *arg_p = init;
2467 /* If this is a variable sized type, we must remember the size. */
2468 maybe_with_size_expr (arg_p);
2470 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2471 /* Make sure arguments have the same location as the function call
2472 itself. */
2473 protected_set_expr_location (*arg_p, call_location);
2475 /* There is a sequence point before a function call. Side effects in
2476 the argument list must occur before the actual call. So, when
2477 gimplifying arguments, force gimplify_expr to use an internal
2478 post queue which is then appended to the end of PRE_P. */
2479 return gimplify_expr (arg_p, pre_p, NULL, test, fb);
2482 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2483 WANT_VALUE is true if the result of the call is desired. */
2485 static enum gimplify_status
2486 gimplify_call_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
2488 tree fndecl, parms, p, fnptrtype;
2489 enum gimplify_status ret;
2490 int i, nargs;
2491 gimple call;
2492 bool builtin_va_start_p = FALSE;
2493 location_t loc = EXPR_LOCATION (*expr_p);
2495 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2497 /* For reliable diagnostics during inlining, it is necessary that
2498 every call_expr be annotated with file and line. */
2499 if (! EXPR_HAS_LOCATION (*expr_p))
2500 SET_EXPR_LOCATION (*expr_p, input_location);
2502 /* This may be a call to a builtin function.
2504 Builtin function calls may be transformed into different
2505 (and more efficient) builtin function calls under certain
2506 circumstances. Unfortunately, gimplification can muck things
2507 up enough that the builtin expanders are not aware that certain
2508 transformations are still valid.
2510 So we attempt transformation/gimplification of the call before
2511 we gimplify the CALL_EXPR. At this time we do not manage to
2512 transform all calls in the same manner as the expanders do, but
2513 we do transform most of them. */
2514 fndecl = get_callee_fndecl (*expr_p);
2515 if (fndecl && DECL_BUILT_IN (fndecl))
2517 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2519 if (new_tree && new_tree != *expr_p)
2521 /* There was a transformation of this call which computes the
2522 same value, but in a more efficient way. Return and try
2523 again. */
2524 *expr_p = new_tree;
2525 return GS_OK;
2528 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
2529 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_VA_START)
2531 builtin_va_start_p = TRUE;
2532 if (call_expr_nargs (*expr_p) < 2)
2534 error ("too few arguments to function %<va_start%>");
2535 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2536 return GS_OK;
2539 if (fold_builtin_next_arg (*expr_p, true))
2541 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2542 return GS_OK;
2547 /* Remember the original function pointer type. */
2548 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2550 /* There is a sequence point before the call, so any side effects in
2551 the calling expression must occur before the actual call. Force
2552 gimplify_expr to use an internal post queue. */
2553 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2554 is_gimple_call_addr, fb_rvalue);
2556 nargs = call_expr_nargs (*expr_p);
2558 /* Get argument types for verification. */
2559 fndecl = get_callee_fndecl (*expr_p);
2560 parms = NULL_TREE;
2561 if (fndecl)
2562 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2563 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2564 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2566 if (fndecl && DECL_ARGUMENTS (fndecl))
2567 p = DECL_ARGUMENTS (fndecl);
2568 else if (parms)
2569 p = parms;
2570 else
2571 p = NULL_TREE;
2572 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2575 /* If the last argument is __builtin_va_arg_pack () and it is not
2576 passed as a named argument, decrease the number of CALL_EXPR
2577 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2578 if (!p
2579 && i < nargs
2580 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2582 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2583 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2585 if (last_arg_fndecl
2586 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2587 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2588 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2590 tree call = *expr_p;
2592 --nargs;
2593 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2594 CALL_EXPR_FN (call),
2595 nargs, CALL_EXPR_ARGP (call));
2597 /* Copy all CALL_EXPR flags, location and block, except
2598 CALL_EXPR_VA_ARG_PACK flag. */
2599 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2600 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2601 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2602 = CALL_EXPR_RETURN_SLOT_OPT (call);
2603 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2604 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2605 TREE_BLOCK (*expr_p) = TREE_BLOCK (call);
2607 /* Set CALL_EXPR_VA_ARG_PACK. */
2608 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2612 /* Finally, gimplify the function arguments. */
2613 if (nargs > 0)
2615 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2616 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2617 PUSH_ARGS_REVERSED ? i-- : i++)
2619 enum gimplify_status t;
2621 /* Avoid gimplifying the second argument to va_start, which needs to
2622 be the plain PARM_DECL. */
2623 if ((i != 1) || !builtin_va_start_p)
2625 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2626 EXPR_LOCATION (*expr_p));
2628 if (t == GS_ERROR)
2629 ret = GS_ERROR;
2634 /* Verify the function result. */
2635 if (want_value && fndecl
2636 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2638 error_at (loc, "using result of function returning %<void%>");
2639 ret = GS_ERROR;
2642 /* Try this again in case gimplification exposed something. */
2643 if (ret != GS_ERROR)
2645 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2647 if (new_tree && new_tree != *expr_p)
2649 /* There was a transformation of this call which computes the
2650 same value, but in a more efficient way. Return and try
2651 again. */
2652 *expr_p = new_tree;
2653 return GS_OK;
2656 else
2658 *expr_p = error_mark_node;
2659 return GS_ERROR;
2662 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2663 decl. This allows us to eliminate redundant or useless
2664 calls to "const" functions. */
2665 if (TREE_CODE (*expr_p) == CALL_EXPR)
2667 int flags = call_expr_flags (*expr_p);
2668 if (flags & (ECF_CONST | ECF_PURE)
2669 /* An infinite loop is considered a side effect. */
2670 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2671 TREE_SIDE_EFFECTS (*expr_p) = 0;
2674 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2675 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2676 form and delegate the creation of a GIMPLE_CALL to
2677 gimplify_modify_expr. This is always possible because when
2678 WANT_VALUE is true, the caller wants the result of this call into
2679 a temporary, which means that we will emit an INIT_EXPR in
2680 internal_get_tmp_var which will then be handled by
2681 gimplify_modify_expr. */
2682 if (!want_value)
2684 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2685 have to do is replicate it as a GIMPLE_CALL tuple. */
2686 gimple_stmt_iterator gsi;
2687 call = gimple_build_call_from_tree (*expr_p);
2688 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2689 gimplify_seq_add_stmt (pre_p, call);
2690 gsi = gsi_last (*pre_p);
2691 fold_stmt (&gsi);
2692 *expr_p = NULL_TREE;
2694 else
2695 /* Remember the original function type. */
2696 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2697 CALL_EXPR_FN (*expr_p));
2699 return ret;
2702 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2703 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2705 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2706 condition is true or false, respectively. If null, we should generate
2707 our own to skip over the evaluation of this specific expression.
2709 LOCUS is the source location of the COND_EXPR.
2711 This function is the tree equivalent of do_jump.
2713 shortcut_cond_r should only be called by shortcut_cond_expr. */
2715 static tree
2716 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2717 location_t locus)
2719 tree local_label = NULL_TREE;
2720 tree t, expr = NULL;
2722 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2723 retain the shortcut semantics. Just insert the gotos here;
2724 shortcut_cond_expr will append the real blocks later. */
2725 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2727 location_t new_locus;
2729 /* Turn if (a && b) into
2731 if (a); else goto no;
2732 if (b) goto yes; else goto no;
2733 (no:) */
2735 if (false_label_p == NULL)
2736 false_label_p = &local_label;
2738 /* Keep the original source location on the first 'if'. */
2739 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, locus);
2740 append_to_statement_list (t, &expr);
2742 /* Set the source location of the && on the second 'if'. */
2743 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2744 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2745 new_locus);
2746 append_to_statement_list (t, &expr);
2748 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2750 location_t new_locus;
2752 /* Turn if (a || b) into
2754 if (a) goto yes;
2755 if (b) goto yes; else goto no;
2756 (yes:) */
2758 if (true_label_p == NULL)
2759 true_label_p = &local_label;
2761 /* Keep the original source location on the first 'if'. */
2762 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2763 append_to_statement_list (t, &expr);
2765 /* Set the source location of the || on the second 'if'. */
2766 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2767 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2768 new_locus);
2769 append_to_statement_list (t, &expr);
2771 else if (TREE_CODE (pred) == COND_EXPR
2772 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 1)))
2773 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 2))))
2775 location_t new_locus;
2777 /* As long as we're messing with gotos, turn if (a ? b : c) into
2778 if (a)
2779 if (b) goto yes; else goto no;
2780 else
2781 if (c) goto yes; else goto no;
2783 Don't do this if one of the arms has void type, which can happen
2784 in C++ when the arm is throw. */
2786 /* Keep the original source location on the first 'if'. Set the source
2787 location of the ? on the second 'if'. */
2788 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2789 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2790 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2791 false_label_p, locus),
2792 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2793 false_label_p, new_locus));
2795 else
2797 expr = build3 (COND_EXPR, void_type_node, pred,
2798 build_and_jump (true_label_p),
2799 build_and_jump (false_label_p));
2800 SET_EXPR_LOCATION (expr, locus);
2803 if (local_label)
2805 t = build1 (LABEL_EXPR, void_type_node, local_label);
2806 append_to_statement_list (t, &expr);
2809 return expr;
2812 /* Given a conditional expression EXPR with short-circuit boolean
2813 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2814 predicate appart into the equivalent sequence of conditionals. */
2816 static tree
2817 shortcut_cond_expr (tree expr)
2819 tree pred = TREE_OPERAND (expr, 0);
2820 tree then_ = TREE_OPERAND (expr, 1);
2821 tree else_ = TREE_OPERAND (expr, 2);
2822 tree true_label, false_label, end_label, t;
2823 tree *true_label_p;
2824 tree *false_label_p;
2825 bool emit_end, emit_false, jump_over_else;
2826 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2827 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2829 /* First do simple transformations. */
2830 if (!else_se)
2832 /* If there is no 'else', turn
2833 if (a && b) then c
2834 into
2835 if (a) if (b) then c. */
2836 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2838 /* Keep the original source location on the first 'if'. */
2839 location_t locus = EXPR_LOC_OR_HERE (expr);
2840 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2841 /* Set the source location of the && on the second 'if'. */
2842 if (EXPR_HAS_LOCATION (pred))
2843 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2844 then_ = shortcut_cond_expr (expr);
2845 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2846 pred = TREE_OPERAND (pred, 0);
2847 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2848 SET_EXPR_LOCATION (expr, locus);
2852 if (!then_se)
2854 /* If there is no 'then', turn
2855 if (a || b); else d
2856 into
2857 if (a); else if (b); else d. */
2858 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2860 /* Keep the original source location on the first 'if'. */
2861 location_t locus = EXPR_LOC_OR_HERE (expr);
2862 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2863 /* Set the source location of the || on the second 'if'. */
2864 if (EXPR_HAS_LOCATION (pred))
2865 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2866 else_ = shortcut_cond_expr (expr);
2867 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2868 pred = TREE_OPERAND (pred, 0);
2869 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2870 SET_EXPR_LOCATION (expr, locus);
2874 /* If we're done, great. */
2875 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2876 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2877 return expr;
2879 /* Otherwise we need to mess with gotos. Change
2880 if (a) c; else d;
2882 if (a); else goto no;
2883 c; goto end;
2884 no: d; end:
2885 and recursively gimplify the condition. */
2887 true_label = false_label = end_label = NULL_TREE;
2889 /* If our arms just jump somewhere, hijack those labels so we don't
2890 generate jumps to jumps. */
2892 if (then_
2893 && TREE_CODE (then_) == GOTO_EXPR
2894 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2896 true_label = GOTO_DESTINATION (then_);
2897 then_ = NULL;
2898 then_se = false;
2901 if (else_
2902 && TREE_CODE (else_) == GOTO_EXPR
2903 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2905 false_label = GOTO_DESTINATION (else_);
2906 else_ = NULL;
2907 else_se = false;
2910 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2911 if (true_label)
2912 true_label_p = &true_label;
2913 else
2914 true_label_p = NULL;
2916 /* The 'else' branch also needs a label if it contains interesting code. */
2917 if (false_label || else_se)
2918 false_label_p = &false_label;
2919 else
2920 false_label_p = NULL;
2922 /* If there was nothing else in our arms, just forward the label(s). */
2923 if (!then_se && !else_se)
2924 return shortcut_cond_r (pred, true_label_p, false_label_p,
2925 EXPR_LOC_OR_HERE (expr));
2927 /* If our last subexpression already has a terminal label, reuse it. */
2928 if (else_se)
2929 t = expr_last (else_);
2930 else if (then_se)
2931 t = expr_last (then_);
2932 else
2933 t = NULL;
2934 if (t && TREE_CODE (t) == LABEL_EXPR)
2935 end_label = LABEL_EXPR_LABEL (t);
2937 /* If we don't care about jumping to the 'else' branch, jump to the end
2938 if the condition is false. */
2939 if (!false_label_p)
2940 false_label_p = &end_label;
2942 /* We only want to emit these labels if we aren't hijacking them. */
2943 emit_end = (end_label == NULL_TREE);
2944 emit_false = (false_label == NULL_TREE);
2946 /* We only emit the jump over the else clause if we have to--if the
2947 then clause may fall through. Otherwise we can wind up with a
2948 useless jump and a useless label at the end of gimplified code,
2949 which will cause us to think that this conditional as a whole
2950 falls through even if it doesn't. If we then inline a function
2951 which ends with such a condition, that can cause us to issue an
2952 inappropriate warning about control reaching the end of a
2953 non-void function. */
2954 jump_over_else = block_may_fallthru (then_);
2956 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2957 EXPR_LOC_OR_HERE (expr));
2959 expr = NULL;
2960 append_to_statement_list (pred, &expr);
2962 append_to_statement_list (then_, &expr);
2963 if (else_se)
2965 if (jump_over_else)
2967 tree last = expr_last (expr);
2968 t = build_and_jump (&end_label);
2969 if (EXPR_HAS_LOCATION (last))
2970 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2971 append_to_statement_list (t, &expr);
2973 if (emit_false)
2975 t = build1 (LABEL_EXPR, void_type_node, false_label);
2976 append_to_statement_list (t, &expr);
2978 append_to_statement_list (else_, &expr);
2980 if (emit_end && end_label)
2982 t = build1 (LABEL_EXPR, void_type_node, end_label);
2983 append_to_statement_list (t, &expr);
2986 return expr;
2989 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2991 tree
2992 gimple_boolify (tree expr)
2994 tree type = TREE_TYPE (expr);
2995 location_t loc = EXPR_LOCATION (expr);
2997 if (TREE_CODE (expr) == NE_EXPR
2998 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
2999 && integer_zerop (TREE_OPERAND (expr, 1)))
3001 tree call = TREE_OPERAND (expr, 0);
3002 tree fn = get_callee_fndecl (call);
3004 /* For __builtin_expect ((long) (x), y) recurse into x as well
3005 if x is truth_value_p. */
3006 if (fn
3007 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
3008 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
3009 && call_expr_nargs (call) == 2)
3011 tree arg = CALL_EXPR_ARG (call, 0);
3012 if (arg)
3014 if (TREE_CODE (arg) == NOP_EXPR
3015 && TREE_TYPE (arg) == TREE_TYPE (call))
3016 arg = TREE_OPERAND (arg, 0);
3017 if (truth_value_p (TREE_CODE (arg)))
3019 arg = gimple_boolify (arg);
3020 CALL_EXPR_ARG (call, 0)
3021 = fold_convert_loc (loc, TREE_TYPE (call), arg);
3027 switch (TREE_CODE (expr))
3029 case TRUTH_AND_EXPR:
3030 case TRUTH_OR_EXPR:
3031 case TRUTH_XOR_EXPR:
3032 case TRUTH_ANDIF_EXPR:
3033 case TRUTH_ORIF_EXPR:
3034 /* Also boolify the arguments of truth exprs. */
3035 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
3036 /* FALLTHRU */
3038 case TRUTH_NOT_EXPR:
3039 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3041 /* These expressions always produce boolean results. */
3042 if (TREE_CODE (type) != BOOLEAN_TYPE)
3043 TREE_TYPE (expr) = boolean_type_node;
3044 return expr;
3046 default:
3047 if (COMPARISON_CLASS_P (expr))
3049 /* There expressions always prduce boolean results. */
3050 if (TREE_CODE (type) != BOOLEAN_TYPE)
3051 TREE_TYPE (expr) = boolean_type_node;
3052 return expr;
3054 /* Other expressions that get here must have boolean values, but
3055 might need to be converted to the appropriate mode. */
3056 if (TREE_CODE (type) == BOOLEAN_TYPE)
3057 return expr;
3058 return fold_convert_loc (loc, boolean_type_node, expr);
3062 /* Given a conditional expression *EXPR_P without side effects, gimplify
3063 its operands. New statements are inserted to PRE_P. */
3065 static enum gimplify_status
3066 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
3068 tree expr = *expr_p, cond;
3069 enum gimplify_status ret, tret;
3070 enum tree_code code;
3072 cond = gimple_boolify (COND_EXPR_COND (expr));
3074 /* We need to handle && and || specially, as their gimplification
3075 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
3076 code = TREE_CODE (cond);
3077 if (code == TRUTH_ANDIF_EXPR)
3078 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
3079 else if (code == TRUTH_ORIF_EXPR)
3080 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
3081 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
3082 COND_EXPR_COND (*expr_p) = cond;
3084 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
3085 is_gimple_val, fb_rvalue);
3086 ret = MIN (ret, tret);
3087 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
3088 is_gimple_val, fb_rvalue);
3090 return MIN (ret, tret);
3093 /* Return true if evaluating EXPR could trap.
3094 EXPR is GENERIC, while tree_could_trap_p can be called
3095 only on GIMPLE. */
3097 static bool
3098 generic_expr_could_trap_p (tree expr)
3100 unsigned i, n;
3102 if (!expr || is_gimple_val (expr))
3103 return false;
3105 if (!EXPR_P (expr) || tree_could_trap_p (expr))
3106 return true;
3108 n = TREE_OPERAND_LENGTH (expr);
3109 for (i = 0; i < n; i++)
3110 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
3111 return true;
3113 return false;
3116 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
3117 into
3119 if (p) if (p)
3120 t1 = a; a;
3121 else or else
3122 t1 = b; b;
3125 The second form is used when *EXPR_P is of type void.
3127 PRE_P points to the list where side effects that must happen before
3128 *EXPR_P should be stored. */
3130 static enum gimplify_status
3131 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
3133 tree expr = *expr_p;
3134 tree type = TREE_TYPE (expr);
3135 location_t loc = EXPR_LOCATION (expr);
3136 tree tmp, arm1, arm2;
3137 enum gimplify_status ret;
3138 tree label_true, label_false, label_cont;
3139 bool have_then_clause_p, have_else_clause_p;
3140 gimple gimple_cond;
3141 enum tree_code pred_code;
3142 gimple_seq seq = NULL;
3144 /* If this COND_EXPR has a value, copy the values into a temporary within
3145 the arms. */
3146 if (!VOID_TYPE_P (type))
3148 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
3149 tree result;
3151 /* If either an rvalue is ok or we do not require an lvalue, create the
3152 temporary. But we cannot do that if the type is addressable. */
3153 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
3154 && !TREE_ADDRESSABLE (type))
3156 if (gimplify_ctxp->allow_rhs_cond_expr
3157 /* If either branch has side effects or could trap, it can't be
3158 evaluated unconditionally. */
3159 && !TREE_SIDE_EFFECTS (then_)
3160 && !generic_expr_could_trap_p (then_)
3161 && !TREE_SIDE_EFFECTS (else_)
3162 && !generic_expr_could_trap_p (else_))
3163 return gimplify_pure_cond_expr (expr_p, pre_p);
3165 tmp = create_tmp_var (type, "iftmp");
3166 result = tmp;
3169 /* Otherwise, only create and copy references to the values. */
3170 else
3172 type = build_pointer_type (type);
3174 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3175 then_ = build_fold_addr_expr_loc (loc, then_);
3177 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3178 else_ = build_fold_addr_expr_loc (loc, else_);
3180 expr
3181 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
3183 tmp = create_tmp_var (type, "iftmp");
3184 result = build_simple_mem_ref_loc (loc, tmp);
3187 /* Build the new then clause, `tmp = then_;'. But don't build the
3188 assignment if the value is void; in C++ it can be if it's a throw. */
3189 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3190 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
3192 /* Similarly, build the new else clause, `tmp = else_;'. */
3193 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3194 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
3196 TREE_TYPE (expr) = void_type_node;
3197 recalculate_side_effects (expr);
3199 /* Move the COND_EXPR to the prequeue. */
3200 gimplify_stmt (&expr, pre_p);
3202 *expr_p = result;
3203 return GS_ALL_DONE;
3206 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3207 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3208 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3209 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3211 /* Make sure the condition has BOOLEAN_TYPE. */
3212 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3214 /* Break apart && and || conditions. */
3215 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3216 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3218 expr = shortcut_cond_expr (expr);
3220 if (expr != *expr_p)
3222 *expr_p = expr;
3224 /* We can't rely on gimplify_expr to re-gimplify the expanded
3225 form properly, as cleanups might cause the target labels to be
3226 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3227 set up a conditional context. */
3228 gimple_push_condition ();
3229 gimplify_stmt (expr_p, &seq);
3230 gimple_pop_condition (pre_p);
3231 gimple_seq_add_seq (pre_p, seq);
3233 return GS_ALL_DONE;
3237 /* Now do the normal gimplification. */
3239 /* Gimplify condition. */
3240 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3241 fb_rvalue);
3242 if (ret == GS_ERROR)
3243 return GS_ERROR;
3244 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3246 gimple_push_condition ();
3248 have_then_clause_p = have_else_clause_p = false;
3249 if (TREE_OPERAND (expr, 1) != NULL
3250 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3251 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3252 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3253 == current_function_decl)
3254 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3255 have different locations, otherwise we end up with incorrect
3256 location information on the branches. */
3257 && (optimize
3258 || !EXPR_HAS_LOCATION (expr)
3259 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3260 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3262 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3263 have_then_clause_p = true;
3265 else
3266 label_true = create_artificial_label (UNKNOWN_LOCATION);
3267 if (TREE_OPERAND (expr, 2) != NULL
3268 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3269 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3270 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3271 == current_function_decl)
3272 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3273 have different locations, otherwise we end up with incorrect
3274 location information on the branches. */
3275 && (optimize
3276 || !EXPR_HAS_LOCATION (expr)
3277 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3278 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3280 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3281 have_else_clause_p = true;
3283 else
3284 label_false = create_artificial_label (UNKNOWN_LOCATION);
3286 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3287 &arm2);
3289 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3290 label_false);
3292 gimplify_seq_add_stmt (&seq, gimple_cond);
3293 label_cont = NULL_TREE;
3294 if (!have_then_clause_p)
3296 /* For if (...) {} else { code; } put label_true after
3297 the else block. */
3298 if (TREE_OPERAND (expr, 1) == NULL_TREE
3299 && !have_else_clause_p
3300 && TREE_OPERAND (expr, 2) != NULL_TREE)
3301 label_cont = label_true;
3302 else
3304 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3305 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3306 /* For if (...) { code; } else {} or
3307 if (...) { code; } else goto label; or
3308 if (...) { code; return; } else { ... }
3309 label_cont isn't needed. */
3310 if (!have_else_clause_p
3311 && TREE_OPERAND (expr, 2) != NULL_TREE
3312 && gimple_seq_may_fallthru (seq))
3314 gimple g;
3315 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3317 g = gimple_build_goto (label_cont);
3319 /* GIMPLE_COND's are very low level; they have embedded
3320 gotos. This particular embedded goto should not be marked
3321 with the location of the original COND_EXPR, as it would
3322 correspond to the COND_EXPR's condition, not the ELSE or the
3323 THEN arms. To avoid marking it with the wrong location, flag
3324 it as "no location". */
3325 gimple_set_do_not_emit_location (g);
3327 gimplify_seq_add_stmt (&seq, g);
3331 if (!have_else_clause_p)
3333 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3334 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3336 if (label_cont)
3337 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3339 gimple_pop_condition (pre_p);
3340 gimple_seq_add_seq (pre_p, seq);
3342 if (ret == GS_ERROR)
3343 ; /* Do nothing. */
3344 else if (have_then_clause_p || have_else_clause_p)
3345 ret = GS_ALL_DONE;
3346 else
3348 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3349 expr = TREE_OPERAND (expr, 0);
3350 gimplify_stmt (&expr, pre_p);
3353 *expr_p = NULL;
3354 return ret;
3357 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3358 to be marked addressable.
3360 We cannot rely on such an expression being directly markable if a temporary
3361 has been created by the gimplification. In this case, we create another
3362 temporary and initialize it with a copy, which will become a store after we
3363 mark it addressable. This can happen if the front-end passed us something
3364 that it could not mark addressable yet, like a Fortran pass-by-reference
3365 parameter (int) floatvar. */
3367 static void
3368 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3370 while (handled_component_p (*expr_p))
3371 expr_p = &TREE_OPERAND (*expr_p, 0);
3372 if (is_gimple_reg (*expr_p))
3373 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3376 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3377 a call to __builtin_memcpy. */
3379 static enum gimplify_status
3380 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3381 gimple_seq *seq_p)
3383 tree t, to, to_ptr, from, from_ptr;
3384 gimple gs;
3385 location_t loc = EXPR_LOCATION (*expr_p);
3387 to = TREE_OPERAND (*expr_p, 0);
3388 from = TREE_OPERAND (*expr_p, 1);
3390 /* Mark the RHS addressable. Beware that it may not be possible to do so
3391 directly if a temporary has been created by the gimplification. */
3392 prepare_gimple_addressable (&from, seq_p);
3394 mark_addressable (from);
3395 from_ptr = build_fold_addr_expr_loc (loc, from);
3396 gimplify_arg (&from_ptr, seq_p, loc);
3398 mark_addressable (to);
3399 to_ptr = build_fold_addr_expr_loc (loc, to);
3400 gimplify_arg (&to_ptr, seq_p, loc);
3402 t = builtin_decl_implicit (BUILT_IN_MEMCPY);
3404 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3406 if (want_value)
3408 /* tmp = memcpy() */
3409 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3410 gimple_call_set_lhs (gs, t);
3411 gimplify_seq_add_stmt (seq_p, gs);
3413 *expr_p = build_simple_mem_ref (t);
3414 return GS_ALL_DONE;
3417 gimplify_seq_add_stmt (seq_p, gs);
3418 *expr_p = NULL;
3419 return GS_ALL_DONE;
3422 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3423 a call to __builtin_memset. In this case we know that the RHS is
3424 a CONSTRUCTOR with an empty element list. */
3426 static enum gimplify_status
3427 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3428 gimple_seq *seq_p)
3430 tree t, from, to, to_ptr;
3431 gimple gs;
3432 location_t loc = EXPR_LOCATION (*expr_p);
3434 /* Assert our assumptions, to abort instead of producing wrong code
3435 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3436 not be immediately exposed. */
3437 from = TREE_OPERAND (*expr_p, 1);
3438 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3439 from = TREE_OPERAND (from, 0);
3441 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3442 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (from)));
3444 /* Now proceed. */
3445 to = TREE_OPERAND (*expr_p, 0);
3447 to_ptr = build_fold_addr_expr_loc (loc, to);
3448 gimplify_arg (&to_ptr, seq_p, loc);
3449 t = builtin_decl_implicit (BUILT_IN_MEMSET);
3451 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3453 if (want_value)
3455 /* tmp = memset() */
3456 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3457 gimple_call_set_lhs (gs, t);
3458 gimplify_seq_add_stmt (seq_p, gs);
3460 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3461 return GS_ALL_DONE;
3464 gimplify_seq_add_stmt (seq_p, gs);
3465 *expr_p = NULL;
3466 return GS_ALL_DONE;
3469 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3470 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3471 assignment. Return non-null if we detect a potential overlap. */
3473 struct gimplify_init_ctor_preeval_data
3475 /* The base decl of the lhs object. May be NULL, in which case we
3476 have to assume the lhs is indirect. */
3477 tree lhs_base_decl;
3479 /* The alias set of the lhs object. */
3480 alias_set_type lhs_alias_set;
3483 static tree
3484 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3486 struct gimplify_init_ctor_preeval_data *data
3487 = (struct gimplify_init_ctor_preeval_data *) xdata;
3488 tree t = *tp;
3490 /* If we find the base object, obviously we have overlap. */
3491 if (data->lhs_base_decl == t)
3492 return t;
3494 /* If the constructor component is indirect, determine if we have a
3495 potential overlap with the lhs. The only bits of information we
3496 have to go on at this point are addressability and alias sets. */
3497 if ((INDIRECT_REF_P (t)
3498 || TREE_CODE (t) == MEM_REF)
3499 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3500 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3501 return t;
3503 /* If the constructor component is a call, determine if it can hide a
3504 potential overlap with the lhs through an INDIRECT_REF like above.
3505 ??? Ugh - this is completely broken. In fact this whole analysis
3506 doesn't look conservative. */
3507 if (TREE_CODE (t) == CALL_EXPR)
3509 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3511 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3512 if (POINTER_TYPE_P (TREE_VALUE (type))
3513 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3514 && alias_sets_conflict_p (data->lhs_alias_set,
3515 get_alias_set
3516 (TREE_TYPE (TREE_VALUE (type)))))
3517 return t;
3520 if (IS_TYPE_OR_DECL_P (t))
3521 *walk_subtrees = 0;
3522 return NULL;
3525 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3526 force values that overlap with the lhs (as described by *DATA)
3527 into temporaries. */
3529 static void
3530 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3531 struct gimplify_init_ctor_preeval_data *data)
3533 enum gimplify_status one;
3535 /* If the value is constant, then there's nothing to pre-evaluate. */
3536 if (TREE_CONSTANT (*expr_p))
3538 /* Ensure it does not have side effects, it might contain a reference to
3539 the object we're initializing. */
3540 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3541 return;
3544 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3545 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3546 return;
3548 /* Recurse for nested constructors. */
3549 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3551 unsigned HOST_WIDE_INT ix;
3552 constructor_elt *ce;
3553 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
3555 FOR_EACH_VEC_ELT (constructor_elt, v, ix, ce)
3556 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3558 return;
3561 /* If this is a variable sized type, we must remember the size. */
3562 maybe_with_size_expr (expr_p);
3564 /* Gimplify the constructor element to something appropriate for the rhs
3565 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3566 the gimplifier will consider this a store to memory. Doing this
3567 gimplification now means that we won't have to deal with complicated
3568 language-specific trees, nor trees like SAVE_EXPR that can induce
3569 exponential search behavior. */
3570 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3571 if (one == GS_ERROR)
3573 *expr_p = NULL;
3574 return;
3577 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3578 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3579 always be true for all scalars, since is_gimple_mem_rhs insists on a
3580 temporary variable for them. */
3581 if (DECL_P (*expr_p))
3582 return;
3584 /* If this is of variable size, we have no choice but to assume it doesn't
3585 overlap since we can't make a temporary for it. */
3586 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3587 return;
3589 /* Otherwise, we must search for overlap ... */
3590 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3591 return;
3593 /* ... and if found, force the value into a temporary. */
3594 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3597 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3598 a RANGE_EXPR in a CONSTRUCTOR for an array.
3600 var = lower;
3601 loop_entry:
3602 object[var] = value;
3603 if (var == upper)
3604 goto loop_exit;
3605 var = var + 1;
3606 goto loop_entry;
3607 loop_exit:
3609 We increment var _after_ the loop exit check because we might otherwise
3610 fail if upper == TYPE_MAX_VALUE (type for upper).
3612 Note that we never have to deal with SAVE_EXPRs here, because this has
3613 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3615 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
3616 gimple_seq *, bool);
3618 static void
3619 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3620 tree value, tree array_elt_type,
3621 gimple_seq *pre_p, bool cleared)
3623 tree loop_entry_label, loop_exit_label, fall_thru_label;
3624 tree var, var_type, cref, tmp;
3626 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3627 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3628 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3630 /* Create and initialize the index variable. */
3631 var_type = TREE_TYPE (upper);
3632 var = create_tmp_var (var_type, NULL);
3633 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3635 /* Add the loop entry label. */
3636 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3638 /* Build the reference. */
3639 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3640 var, NULL_TREE, NULL_TREE);
3642 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3643 the store. Otherwise just assign value to the reference. */
3645 if (TREE_CODE (value) == CONSTRUCTOR)
3646 /* NB we might have to call ourself recursively through
3647 gimplify_init_ctor_eval if the value is a constructor. */
3648 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3649 pre_p, cleared);
3650 else
3651 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3653 /* We exit the loop when the index var is equal to the upper bound. */
3654 gimplify_seq_add_stmt (pre_p,
3655 gimple_build_cond (EQ_EXPR, var, upper,
3656 loop_exit_label, fall_thru_label));
3658 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3660 /* Otherwise, increment the index var... */
3661 tmp = build2 (PLUS_EXPR, var_type, var,
3662 fold_convert (var_type, integer_one_node));
3663 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3665 /* ...and jump back to the loop entry. */
3666 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3668 /* Add the loop exit label. */
3669 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3672 /* Return true if FDECL is accessing a field that is zero sized. */
3674 static bool
3675 zero_sized_field_decl (const_tree fdecl)
3677 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3678 && integer_zerop (DECL_SIZE (fdecl)))
3679 return true;
3680 return false;
3683 /* Return true if TYPE is zero sized. */
3685 static bool
3686 zero_sized_type (const_tree type)
3688 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3689 && integer_zerop (TYPE_SIZE (type)))
3690 return true;
3691 return false;
3694 /* A subroutine of gimplify_init_constructor. Generate individual
3695 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3696 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3697 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3698 zeroed first. */
3700 static void
3701 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
3702 gimple_seq *pre_p, bool cleared)
3704 tree array_elt_type = NULL;
3705 unsigned HOST_WIDE_INT ix;
3706 tree purpose, value;
3708 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3709 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3711 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3713 tree cref;
3715 /* NULL values are created above for gimplification errors. */
3716 if (value == NULL)
3717 continue;
3719 if (cleared && initializer_zerop (value))
3720 continue;
3722 /* ??? Here's to hoping the front end fills in all of the indices,
3723 so we don't have to figure out what's missing ourselves. */
3724 gcc_assert (purpose);
3726 /* Skip zero-sized fields, unless value has side-effects. This can
3727 happen with calls to functions returning a zero-sized type, which
3728 we shouldn't discard. As a number of downstream passes don't
3729 expect sets of zero-sized fields, we rely on the gimplification of
3730 the MODIFY_EXPR we make below to drop the assignment statement. */
3731 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3732 continue;
3734 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3735 whole range. */
3736 if (TREE_CODE (purpose) == RANGE_EXPR)
3738 tree lower = TREE_OPERAND (purpose, 0);
3739 tree upper = TREE_OPERAND (purpose, 1);
3741 /* If the lower bound is equal to upper, just treat it as if
3742 upper was the index. */
3743 if (simple_cst_equal (lower, upper))
3744 purpose = upper;
3745 else
3747 gimplify_init_ctor_eval_range (object, lower, upper, value,
3748 array_elt_type, pre_p, cleared);
3749 continue;
3753 if (array_elt_type)
3755 /* Do not use bitsizetype for ARRAY_REF indices. */
3756 if (TYPE_DOMAIN (TREE_TYPE (object)))
3757 purpose
3758 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3759 purpose);
3760 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3761 purpose, NULL_TREE, NULL_TREE);
3763 else
3765 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3766 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3767 unshare_expr (object), purpose, NULL_TREE);
3770 if (TREE_CODE (value) == CONSTRUCTOR
3771 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3772 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3773 pre_p, cleared);
3774 else
3776 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3777 gimplify_and_add (init, pre_p);
3778 ggc_free (init);
3783 /* Return the appropriate RHS predicate for this LHS. */
3785 gimple_predicate
3786 rhs_predicate_for (tree lhs)
3788 if (is_gimple_reg (lhs))
3789 return is_gimple_reg_rhs_or_call;
3790 else
3791 return is_gimple_mem_rhs_or_call;
3794 /* Gimplify a C99 compound literal expression. This just means adding
3795 the DECL_EXPR before the current statement and using its anonymous
3796 decl instead. */
3798 static enum gimplify_status
3799 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p,
3800 fallback_t fallback)
3802 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3803 tree decl = DECL_EXPR_DECL (decl_s);
3804 /* Mark the decl as addressable if the compound literal
3805 expression is addressable now, otherwise it is marked too late
3806 after we gimplify the initialization expression. */
3807 if (TREE_ADDRESSABLE (*expr_p))
3808 TREE_ADDRESSABLE (decl) = 1;
3810 /* Preliminarily mark non-addressed complex variables as eligible
3811 for promotion to gimple registers. We'll transform their uses
3812 as we find them. */
3813 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3814 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3815 && !TREE_THIS_VOLATILE (decl)
3816 && !needs_to_live_in_memory (decl))
3817 DECL_GIMPLE_REG_P (decl) = 1;
3819 /* If the decl is not addressable, then it is being used in some
3820 expression or on the right hand side of a statement, and it can
3821 be put into a readonly data section. */
3822 if (!TREE_ADDRESSABLE (decl) && (fallback & fb_lvalue) == 0)
3823 TREE_READONLY (decl) = 1;
3825 /* This decl isn't mentioned in the enclosing block, so add it to the
3826 list of temps. FIXME it seems a bit of a kludge to say that
3827 anonymous artificial vars aren't pushed, but everything else is. */
3828 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3829 gimple_add_tmp_var (decl);
3831 gimplify_and_add (decl_s, pre_p);
3832 *expr_p = decl;
3833 return GS_OK;
3836 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3837 return a new CONSTRUCTOR if something changed. */
3839 static tree
3840 optimize_compound_literals_in_ctor (tree orig_ctor)
3842 tree ctor = orig_ctor;
3843 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (ctor);
3844 unsigned int idx, num = VEC_length (constructor_elt, elts);
3846 for (idx = 0; idx < num; idx++)
3848 tree value = VEC_index (constructor_elt, elts, idx)->value;
3849 tree newval = value;
3850 if (TREE_CODE (value) == CONSTRUCTOR)
3851 newval = optimize_compound_literals_in_ctor (value);
3852 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3854 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3855 tree decl = DECL_EXPR_DECL (decl_s);
3856 tree init = DECL_INITIAL (decl);
3858 if (!TREE_ADDRESSABLE (value)
3859 && !TREE_ADDRESSABLE (decl)
3860 && init)
3861 newval = optimize_compound_literals_in_ctor (init);
3863 if (newval == value)
3864 continue;
3866 if (ctor == orig_ctor)
3868 ctor = copy_node (orig_ctor);
3869 CONSTRUCTOR_ELTS (ctor) = VEC_copy (constructor_elt, gc, elts);
3870 elts = CONSTRUCTOR_ELTS (ctor);
3872 VEC_index (constructor_elt, elts, idx)->value = newval;
3874 return ctor;
3877 /* A subroutine of gimplify_modify_expr. Break out elements of a
3878 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3880 Note that we still need to clear any elements that don't have explicit
3881 initializers, so if not all elements are initialized we keep the
3882 original MODIFY_EXPR, we just remove all of the constructor elements.
3884 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3885 GS_ERROR if we would have to create a temporary when gimplifying
3886 this constructor. Otherwise, return GS_OK.
3888 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3890 static enum gimplify_status
3891 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3892 bool want_value, bool notify_temp_creation)
3894 tree object, ctor, type;
3895 enum gimplify_status ret;
3896 VEC(constructor_elt,gc) *elts;
3898 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3900 if (!notify_temp_creation)
3902 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3903 is_gimple_lvalue, fb_lvalue);
3904 if (ret == GS_ERROR)
3905 return ret;
3908 object = TREE_OPERAND (*expr_p, 0);
3909 ctor = TREE_OPERAND (*expr_p, 1) =
3910 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3911 type = TREE_TYPE (ctor);
3912 elts = CONSTRUCTOR_ELTS (ctor);
3913 ret = GS_ALL_DONE;
3915 switch (TREE_CODE (type))
3917 case RECORD_TYPE:
3918 case UNION_TYPE:
3919 case QUAL_UNION_TYPE:
3920 case ARRAY_TYPE:
3922 struct gimplify_init_ctor_preeval_data preeval_data;
3923 HOST_WIDE_INT num_ctor_elements, num_nonzero_elements;
3924 bool cleared, complete_p, valid_const_initializer;
3926 /* Aggregate types must lower constructors to initialization of
3927 individual elements. The exception is that a CONSTRUCTOR node
3928 with no elements indicates zero-initialization of the whole. */
3929 if (VEC_empty (constructor_elt, elts))
3931 if (notify_temp_creation)
3932 return GS_OK;
3933 break;
3936 /* Fetch information about the constructor to direct later processing.
3937 We might want to make static versions of it in various cases, and
3938 can only do so if it known to be a valid constant initializer. */
3939 valid_const_initializer
3940 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3941 &num_ctor_elements, &complete_p);
3943 /* If a const aggregate variable is being initialized, then it
3944 should never be a lose to promote the variable to be static. */
3945 if (valid_const_initializer
3946 && num_nonzero_elements > 1
3947 && TREE_READONLY (object)
3948 && TREE_CODE (object) == VAR_DECL
3949 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3951 if (notify_temp_creation)
3952 return GS_ERROR;
3953 DECL_INITIAL (object) = ctor;
3954 TREE_STATIC (object) = 1;
3955 if (!DECL_NAME (object))
3956 DECL_NAME (object) = create_tmp_var_name ("C");
3957 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3959 /* ??? C++ doesn't automatically append a .<number> to the
3960 assembler name, and even when it does, it looks a FE private
3961 data structures to figure out what that number should be,
3962 which are not set for this variable. I suppose this is
3963 important for local statics for inline functions, which aren't
3964 "local" in the object file sense. So in order to get a unique
3965 TU-local symbol, we must invoke the lhd version now. */
3966 lhd_set_decl_assembler_name (object);
3968 *expr_p = NULL_TREE;
3969 break;
3972 /* If there are "lots" of initialized elements, even discounting
3973 those that are not address constants (and thus *must* be
3974 computed at runtime), then partition the constructor into
3975 constant and non-constant parts. Block copy the constant
3976 parts in, then generate code for the non-constant parts. */
3977 /* TODO. There's code in cp/typeck.c to do this. */
3979 if (int_size_in_bytes (TREE_TYPE (ctor)) < 0)
3980 /* store_constructor will ignore the clearing of variable-sized
3981 objects. Initializers for such objects must explicitly set
3982 every field that needs to be set. */
3983 cleared = false;
3984 else if (!complete_p)
3985 /* If the constructor isn't complete, clear the whole object
3986 beforehand.
3988 ??? This ought not to be needed. For any element not present
3989 in the initializer, we should simply set them to zero. Except
3990 we'd need to *find* the elements that are not present, and that
3991 requires trickery to avoid quadratic compile-time behavior in
3992 large cases or excessive memory use in small cases. */
3993 cleared = true;
3994 else if (num_ctor_elements - num_nonzero_elements
3995 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
3996 && num_nonzero_elements < num_ctor_elements / 4)
3997 /* If there are "lots" of zeros, it's more efficient to clear
3998 the memory and then set the nonzero elements. */
3999 cleared = true;
4000 else
4001 cleared = false;
4003 /* If there are "lots" of initialized elements, and all of them
4004 are valid address constants, then the entire initializer can
4005 be dropped to memory, and then memcpy'd out. Don't do this
4006 for sparse arrays, though, as it's more efficient to follow
4007 the standard CONSTRUCTOR behavior of memset followed by
4008 individual element initialization. Also don't do this for small
4009 all-zero initializers (which aren't big enough to merit
4010 clearing), and don't try to make bitwise copies of
4011 TREE_ADDRESSABLE types. */
4012 if (valid_const_initializer
4013 && !(cleared || num_nonzero_elements == 0)
4014 && !TREE_ADDRESSABLE (type))
4016 HOST_WIDE_INT size = int_size_in_bytes (type);
4017 unsigned int align;
4019 /* ??? We can still get unbounded array types, at least
4020 from the C++ front end. This seems wrong, but attempt
4021 to work around it for now. */
4022 if (size < 0)
4024 size = int_size_in_bytes (TREE_TYPE (object));
4025 if (size >= 0)
4026 TREE_TYPE (ctor) = type = TREE_TYPE (object);
4029 /* Find the maximum alignment we can assume for the object. */
4030 /* ??? Make use of DECL_OFFSET_ALIGN. */
4031 if (DECL_P (object))
4032 align = DECL_ALIGN (object);
4033 else
4034 align = TYPE_ALIGN (type);
4036 /* Do a block move either if the size is so small as to make
4037 each individual move a sub-unit move on average, or if it
4038 is so large as to make individual moves inefficient. */
4039 if (size > 0
4040 && num_nonzero_elements > 1
4041 && (size < num_nonzero_elements
4042 || !can_move_by_pieces (size, align)))
4044 if (notify_temp_creation)
4045 return GS_ERROR;
4047 walk_tree (&ctor, force_labels_r, NULL, NULL);
4048 ctor = tree_output_constant_def (ctor);
4049 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
4050 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
4051 TREE_OPERAND (*expr_p, 1) = ctor;
4053 /* This is no longer an assignment of a CONSTRUCTOR, but
4054 we still may have processing to do on the LHS. So
4055 pretend we didn't do anything here to let that happen. */
4056 return GS_UNHANDLED;
4060 /* If the target is volatile, we have non-zero elements and more than
4061 one field to assign, initialize the target from a temporary. */
4062 if (TREE_THIS_VOLATILE (object)
4063 && !TREE_ADDRESSABLE (type)
4064 && num_nonzero_elements > 0
4065 && VEC_length (constructor_elt, elts) > 1)
4067 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
4068 TREE_OPERAND (*expr_p, 0) = temp;
4069 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
4070 *expr_p,
4071 build2 (MODIFY_EXPR, void_type_node,
4072 object, temp));
4073 return GS_OK;
4076 if (notify_temp_creation)
4077 return GS_OK;
4079 /* If there are nonzero elements and if needed, pre-evaluate to capture
4080 elements overlapping with the lhs into temporaries. We must do this
4081 before clearing to fetch the values before they are zeroed-out. */
4082 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
4084 preeval_data.lhs_base_decl = get_base_address (object);
4085 if (!DECL_P (preeval_data.lhs_base_decl))
4086 preeval_data.lhs_base_decl = NULL;
4087 preeval_data.lhs_alias_set = get_alias_set (object);
4089 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
4090 pre_p, post_p, &preeval_data);
4093 if (cleared)
4095 /* Zap the CONSTRUCTOR element list, which simplifies this case.
4096 Note that we still have to gimplify, in order to handle the
4097 case of variable sized types. Avoid shared tree structures. */
4098 CONSTRUCTOR_ELTS (ctor) = NULL;
4099 TREE_SIDE_EFFECTS (ctor) = 0;
4100 object = unshare_expr (object);
4101 gimplify_stmt (expr_p, pre_p);
4104 /* If we have not block cleared the object, or if there are nonzero
4105 elements in the constructor, add assignments to the individual
4106 scalar fields of the object. */
4107 if (!cleared || num_nonzero_elements > 0)
4108 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
4110 *expr_p = NULL_TREE;
4112 break;
4114 case COMPLEX_TYPE:
4116 tree r, i;
4118 if (notify_temp_creation)
4119 return GS_OK;
4121 /* Extract the real and imaginary parts out of the ctor. */
4122 gcc_assert (VEC_length (constructor_elt, elts) == 2);
4123 r = VEC_index (constructor_elt, elts, 0)->value;
4124 i = VEC_index (constructor_elt, elts, 1)->value;
4125 if (r == NULL || i == NULL)
4127 tree zero = build_zero_cst (TREE_TYPE (type));
4128 if (r == NULL)
4129 r = zero;
4130 if (i == NULL)
4131 i = zero;
4134 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
4135 represent creation of a complex value. */
4136 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
4138 ctor = build_complex (type, r, i);
4139 TREE_OPERAND (*expr_p, 1) = ctor;
4141 else
4143 ctor = build2 (COMPLEX_EXPR, type, r, i);
4144 TREE_OPERAND (*expr_p, 1) = ctor;
4145 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
4146 pre_p,
4147 post_p,
4148 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
4149 fb_rvalue);
4152 break;
4154 case VECTOR_TYPE:
4156 unsigned HOST_WIDE_INT ix;
4157 constructor_elt *ce;
4159 if (notify_temp_creation)
4160 return GS_OK;
4162 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4163 if (TREE_CONSTANT (ctor))
4165 bool constant_p = true;
4166 tree value;
4168 /* Even when ctor is constant, it might contain non-*_CST
4169 elements, such as addresses or trapping values like
4170 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4171 in VECTOR_CST nodes. */
4172 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
4173 if (!CONSTANT_CLASS_P (value))
4175 constant_p = false;
4176 break;
4179 if (constant_p)
4181 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
4182 break;
4185 /* Don't reduce an initializer constant even if we can't
4186 make a VECTOR_CST. It won't do anything for us, and it'll
4187 prevent us from representing it as a single constant. */
4188 if (initializer_constant_valid_p (ctor, type))
4189 break;
4191 TREE_CONSTANT (ctor) = 0;
4194 /* Vector types use CONSTRUCTOR all the way through gimple
4195 compilation as a general initializer. */
4196 FOR_EACH_VEC_ELT (constructor_elt, elts, ix, ce)
4198 enum gimplify_status tret;
4199 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
4200 fb_rvalue);
4201 if (tret == GS_ERROR)
4202 ret = GS_ERROR;
4204 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
4205 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4207 break;
4209 default:
4210 /* So how did we get a CONSTRUCTOR for a scalar type? */
4211 gcc_unreachable ();
4214 if (ret == GS_ERROR)
4215 return GS_ERROR;
4216 else if (want_value)
4218 *expr_p = object;
4219 return GS_OK;
4221 else
4223 /* If we have gimplified both sides of the initializer but have
4224 not emitted an assignment, do so now. */
4225 if (*expr_p)
4227 tree lhs = TREE_OPERAND (*expr_p, 0);
4228 tree rhs = TREE_OPERAND (*expr_p, 1);
4229 gimple init = gimple_build_assign (lhs, rhs);
4230 gimplify_seq_add_stmt (pre_p, init);
4231 *expr_p = NULL;
4234 return GS_ALL_DONE;
4238 /* Given a pointer value OP0, return a simplified version of an
4239 indirection through OP0, or NULL_TREE if no simplification is
4240 possible. Note that the resulting type may be different from
4241 the type pointed to in the sense that it is still compatible
4242 from the langhooks point of view. */
4244 tree
4245 gimple_fold_indirect_ref (tree t)
4247 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4248 tree sub = t;
4249 tree subtype;
4251 STRIP_NOPS (sub);
4252 subtype = TREE_TYPE (sub);
4253 if (!POINTER_TYPE_P (subtype))
4254 return NULL_TREE;
4256 if (TREE_CODE (sub) == ADDR_EXPR)
4258 tree op = TREE_OPERAND (sub, 0);
4259 tree optype = TREE_TYPE (op);
4260 /* *&p => p */
4261 if (useless_type_conversion_p (type, optype))
4262 return op;
4264 /* *(foo *)&fooarray => fooarray[0] */
4265 if (TREE_CODE (optype) == ARRAY_TYPE
4266 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4267 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4269 tree type_domain = TYPE_DOMAIN (optype);
4270 tree min_val = size_zero_node;
4271 if (type_domain && TYPE_MIN_VALUE (type_domain))
4272 min_val = TYPE_MIN_VALUE (type_domain);
4273 if (TREE_CODE (min_val) == INTEGER_CST)
4274 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4276 /* *(foo *)&complexfoo => __real__ complexfoo */
4277 else if (TREE_CODE (optype) == COMPLEX_TYPE
4278 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4279 return fold_build1 (REALPART_EXPR, type, op);
4280 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4281 else if (TREE_CODE (optype) == VECTOR_TYPE
4282 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4284 tree part_width = TYPE_SIZE (type);
4285 tree index = bitsize_int (0);
4286 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4290 /* *(p + CST) -> ... */
4291 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4292 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4294 tree addr = TREE_OPERAND (sub, 0);
4295 tree off = TREE_OPERAND (sub, 1);
4296 tree addrtype;
4298 STRIP_NOPS (addr);
4299 addrtype = TREE_TYPE (addr);
4301 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4302 if (TREE_CODE (addr) == ADDR_EXPR
4303 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4304 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4305 && host_integerp (off, 1))
4307 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4308 tree part_width = TYPE_SIZE (type);
4309 unsigned HOST_WIDE_INT part_widthi
4310 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4311 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4312 tree index = bitsize_int (indexi);
4313 if (offset / part_widthi
4314 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4315 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4316 part_width, index);
4319 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4320 if (TREE_CODE (addr) == ADDR_EXPR
4321 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4322 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4324 tree size = TYPE_SIZE_UNIT (type);
4325 if (tree_int_cst_equal (size, off))
4326 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4329 /* *(p + CST) -> MEM_REF <p, CST>. */
4330 if (TREE_CODE (addr) != ADDR_EXPR
4331 || DECL_P (TREE_OPERAND (addr, 0)))
4332 return fold_build2 (MEM_REF, type,
4333 addr,
4334 build_int_cst_wide (ptype,
4335 TREE_INT_CST_LOW (off),
4336 TREE_INT_CST_HIGH (off)));
4339 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4340 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4341 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4342 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4344 tree type_domain;
4345 tree min_val = size_zero_node;
4346 tree osub = sub;
4347 sub = gimple_fold_indirect_ref (sub);
4348 if (! sub)
4349 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4350 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4351 if (type_domain && TYPE_MIN_VALUE (type_domain))
4352 min_val = TYPE_MIN_VALUE (type_domain);
4353 if (TREE_CODE (min_val) == INTEGER_CST)
4354 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4357 return NULL_TREE;
4360 /* Given a pointer value OP0, return a simplified version of an
4361 indirection through OP0, or NULL_TREE if no simplification is
4362 possible. This may only be applied to a rhs of an expression.
4363 Note that the resulting type may be different from the type pointed
4364 to in the sense that it is still compatible from the langhooks
4365 point of view. */
4367 static tree
4368 gimple_fold_indirect_ref_rhs (tree t)
4370 return gimple_fold_indirect_ref (t);
4373 /* Subroutine of gimplify_modify_expr to do simplifications of
4374 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4375 something changes. */
4377 static enum gimplify_status
4378 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4379 gimple_seq *pre_p, gimple_seq *post_p,
4380 bool want_value)
4382 enum gimplify_status ret = GS_UNHANDLED;
4383 bool changed;
4387 changed = false;
4388 switch (TREE_CODE (*from_p))
4390 case VAR_DECL:
4391 /* If we're assigning from a read-only variable initialized with
4392 a constructor, do the direct assignment from the constructor,
4393 but only if neither source nor target are volatile since this
4394 latter assignment might end up being done on a per-field basis. */
4395 if (DECL_INITIAL (*from_p)
4396 && TREE_READONLY (*from_p)
4397 && !TREE_THIS_VOLATILE (*from_p)
4398 && !TREE_THIS_VOLATILE (*to_p)
4399 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4401 tree old_from = *from_p;
4402 enum gimplify_status subret;
4404 /* Move the constructor into the RHS. */
4405 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4407 /* Let's see if gimplify_init_constructor will need to put
4408 it in memory. */
4409 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4410 false, true);
4411 if (subret == GS_ERROR)
4413 /* If so, revert the change. */
4414 *from_p = old_from;
4416 else
4418 ret = GS_OK;
4419 changed = true;
4422 break;
4423 case INDIRECT_REF:
4425 /* If we have code like
4427 *(const A*)(A*)&x
4429 where the type of "x" is a (possibly cv-qualified variant
4430 of "A"), treat the entire expression as identical to "x".
4431 This kind of code arises in C++ when an object is bound
4432 to a const reference, and if "x" is a TARGET_EXPR we want
4433 to take advantage of the optimization below. */
4434 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4435 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4436 if (t)
4438 if (TREE_THIS_VOLATILE (t) != volatile_p)
4440 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4441 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4442 build_fold_addr_expr (t));
4443 if (REFERENCE_CLASS_P (t))
4444 TREE_THIS_VOLATILE (t) = volatile_p;
4446 *from_p = t;
4447 ret = GS_OK;
4448 changed = true;
4450 break;
4453 case TARGET_EXPR:
4455 /* If we are initializing something from a TARGET_EXPR, strip the
4456 TARGET_EXPR and initialize it directly, if possible. This can't
4457 be done if the initializer is void, since that implies that the
4458 temporary is set in some non-trivial way.
4460 ??? What about code that pulls out the temp and uses it
4461 elsewhere? I think that such code never uses the TARGET_EXPR as
4462 an initializer. If I'm wrong, we'll die because the temp won't
4463 have any RTL. In that case, I guess we'll need to replace
4464 references somehow. */
4465 tree init = TARGET_EXPR_INITIAL (*from_p);
4467 if (init
4468 && !VOID_TYPE_P (TREE_TYPE (init)))
4470 *from_p = init;
4471 ret = GS_OK;
4472 changed = true;
4475 break;
4477 case COMPOUND_EXPR:
4478 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4479 caught. */
4480 gimplify_compound_expr (from_p, pre_p, true);
4481 ret = GS_OK;
4482 changed = true;
4483 break;
4485 case CONSTRUCTOR:
4486 /* If we already made some changes, let the front end have a
4487 crack at this before we break it down. */
4488 if (ret != GS_UNHANDLED)
4489 break;
4490 /* If we're initializing from a CONSTRUCTOR, break this into
4491 individual MODIFY_EXPRs. */
4492 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4493 false);
4495 case COND_EXPR:
4496 /* If we're assigning to a non-register type, push the assignment
4497 down into the branches. This is mandatory for ADDRESSABLE types,
4498 since we cannot generate temporaries for such, but it saves a
4499 copy in other cases as well. */
4500 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4502 /* This code should mirror the code in gimplify_cond_expr. */
4503 enum tree_code code = TREE_CODE (*expr_p);
4504 tree cond = *from_p;
4505 tree result = *to_p;
4507 ret = gimplify_expr (&result, pre_p, post_p,
4508 is_gimple_lvalue, fb_lvalue);
4509 if (ret != GS_ERROR)
4510 ret = GS_OK;
4512 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4513 TREE_OPERAND (cond, 1)
4514 = build2 (code, void_type_node, result,
4515 TREE_OPERAND (cond, 1));
4516 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4517 TREE_OPERAND (cond, 2)
4518 = build2 (code, void_type_node, unshare_expr (result),
4519 TREE_OPERAND (cond, 2));
4521 TREE_TYPE (cond) = void_type_node;
4522 recalculate_side_effects (cond);
4524 if (want_value)
4526 gimplify_and_add (cond, pre_p);
4527 *expr_p = unshare_expr (result);
4529 else
4530 *expr_p = cond;
4531 return ret;
4533 break;
4535 case CALL_EXPR:
4536 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4537 return slot so that we don't generate a temporary. */
4538 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4539 && aggregate_value_p (*from_p, *from_p))
4541 bool use_target;
4543 if (!(rhs_predicate_for (*to_p))(*from_p))
4544 /* If we need a temporary, *to_p isn't accurate. */
4545 use_target = false;
4546 /* It's OK to use the return slot directly unless it's an NRV. */
4547 else if (TREE_CODE (*to_p) == RESULT_DECL
4548 && DECL_NAME (*to_p) == NULL_TREE
4549 && needs_to_live_in_memory (*to_p))
4550 use_target = true;
4551 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4552 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4553 /* Don't force regs into memory. */
4554 use_target = false;
4555 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4556 /* It's OK to use the target directly if it's being
4557 initialized. */
4558 use_target = true;
4559 else if (variably_modified_type_p (TREE_TYPE (*to_p), NULL_TREE))
4560 /* Always use the target and thus RSO for variable-sized types.
4561 GIMPLE cannot deal with a variable-sized assignment
4562 embedded in a call statement. */
4563 use_target = true;
4564 else if (TREE_CODE (*to_p) != SSA_NAME
4565 && (!is_gimple_variable (*to_p)
4566 || needs_to_live_in_memory (*to_p)))
4567 /* Don't use the original target if it's already addressable;
4568 if its address escapes, and the called function uses the
4569 NRV optimization, a conforming program could see *to_p
4570 change before the called function returns; see c++/19317.
4571 When optimizing, the return_slot pass marks more functions
4572 as safe after we have escape info. */
4573 use_target = false;
4574 else
4575 use_target = true;
4577 if (use_target)
4579 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4580 mark_addressable (*to_p);
4583 break;
4585 case WITH_SIZE_EXPR:
4586 /* Likewise for calls that return an aggregate of non-constant size,
4587 since we would not be able to generate a temporary at all. */
4588 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4590 *from_p = TREE_OPERAND (*from_p, 0);
4591 /* We don't change ret in this case because the
4592 WITH_SIZE_EXPR might have been added in
4593 gimplify_modify_expr, so returning GS_OK would lead to an
4594 infinite loop. */
4595 changed = true;
4597 break;
4599 /* If we're initializing from a container, push the initialization
4600 inside it. */
4601 case CLEANUP_POINT_EXPR:
4602 case BIND_EXPR:
4603 case STATEMENT_LIST:
4605 tree wrap = *from_p;
4606 tree t;
4608 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4609 fb_lvalue);
4610 if (ret != GS_ERROR)
4611 ret = GS_OK;
4613 t = voidify_wrapper_expr (wrap, *expr_p);
4614 gcc_assert (t == *expr_p);
4616 if (want_value)
4618 gimplify_and_add (wrap, pre_p);
4619 *expr_p = unshare_expr (*to_p);
4621 else
4622 *expr_p = wrap;
4623 return GS_OK;
4626 case COMPOUND_LITERAL_EXPR:
4628 tree complit = TREE_OPERAND (*expr_p, 1);
4629 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4630 tree decl = DECL_EXPR_DECL (decl_s);
4631 tree init = DECL_INITIAL (decl);
4633 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4634 into struct T x = { 0, 1, 2 } if the address of the
4635 compound literal has never been taken. */
4636 if (!TREE_ADDRESSABLE (complit)
4637 && !TREE_ADDRESSABLE (decl)
4638 && init)
4640 *expr_p = copy_node (*expr_p);
4641 TREE_OPERAND (*expr_p, 1) = init;
4642 return GS_OK;
4646 default:
4647 break;
4650 while (changed);
4652 return ret;
4656 /* Return true if T looks like a valid GIMPLE statement. */
4658 static bool
4659 is_gimple_stmt (tree t)
4661 const enum tree_code code = TREE_CODE (t);
4663 switch (code)
4665 case NOP_EXPR:
4666 /* The only valid NOP_EXPR is the empty statement. */
4667 return IS_EMPTY_STMT (t);
4669 case BIND_EXPR:
4670 case COND_EXPR:
4671 /* These are only valid if they're void. */
4672 return TREE_TYPE (t) == NULL || VOID_TYPE_P (TREE_TYPE (t));
4674 case SWITCH_EXPR:
4675 case GOTO_EXPR:
4676 case RETURN_EXPR:
4677 case LABEL_EXPR:
4678 case CASE_LABEL_EXPR:
4679 case TRY_CATCH_EXPR:
4680 case TRY_FINALLY_EXPR:
4681 case EH_FILTER_EXPR:
4682 case CATCH_EXPR:
4683 case ASM_EXPR:
4684 case STATEMENT_LIST:
4685 case OMP_PARALLEL:
4686 case OMP_FOR:
4687 case OMP_SECTIONS:
4688 case OMP_SECTION:
4689 case OMP_SINGLE:
4690 case OMP_MASTER:
4691 case OMP_ORDERED:
4692 case OMP_CRITICAL:
4693 case OMP_TASK:
4694 /* These are always void. */
4695 return true;
4697 case CALL_EXPR:
4698 case MODIFY_EXPR:
4699 case PREDICT_EXPR:
4700 /* These are valid regardless of their type. */
4701 return true;
4703 default:
4704 return false;
4709 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4710 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4711 DECL_GIMPLE_REG_P set.
4713 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4714 other, unmodified part of the complex object just before the total store.
4715 As a consequence, if the object is still uninitialized, an undefined value
4716 will be loaded into a register, which may result in a spurious exception
4717 if the register is floating-point and the value happens to be a signaling
4718 NaN for example. Then the fully-fledged complex operations lowering pass
4719 followed by a DCE pass are necessary in order to fix things up. */
4721 static enum gimplify_status
4722 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4723 bool want_value)
4725 enum tree_code code, ocode;
4726 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4728 lhs = TREE_OPERAND (*expr_p, 0);
4729 rhs = TREE_OPERAND (*expr_p, 1);
4730 code = TREE_CODE (lhs);
4731 lhs = TREE_OPERAND (lhs, 0);
4733 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4734 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4735 TREE_NO_WARNING (other) = 1;
4736 other = get_formal_tmp_var (other, pre_p);
4738 realpart = code == REALPART_EXPR ? rhs : other;
4739 imagpart = code == REALPART_EXPR ? other : rhs;
4741 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4742 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4743 else
4744 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4746 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4747 *expr_p = (want_value) ? rhs : NULL_TREE;
4749 return GS_ALL_DONE;
4752 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4754 modify_expr
4755 : varname '=' rhs
4756 | '*' ID '=' rhs
4758 PRE_P points to the list where side effects that must happen before
4759 *EXPR_P should be stored.
4761 POST_P points to the list where side effects that must happen after
4762 *EXPR_P should be stored.
4764 WANT_VALUE is nonzero iff we want to use the value of this expression
4765 in another expression. */
4767 static enum gimplify_status
4768 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4769 bool want_value)
4771 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4772 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4773 enum gimplify_status ret = GS_UNHANDLED;
4774 gimple assign;
4775 location_t loc = EXPR_LOCATION (*expr_p);
4777 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4778 || TREE_CODE (*expr_p) == INIT_EXPR);
4780 /* Trying to simplify a clobber using normal logic doesn't work,
4781 so handle it here. */
4782 if (TREE_CLOBBER_P (*from_p))
4784 gcc_assert (!want_value && TREE_CODE (*to_p) == VAR_DECL);
4785 gimplify_seq_add_stmt (pre_p, gimple_build_assign (*to_p, *from_p));
4786 *expr_p = NULL;
4787 return GS_ALL_DONE;
4790 /* Insert pointer conversions required by the middle-end that are not
4791 required by the frontend. This fixes middle-end type checking for
4792 for example gcc.dg/redecl-6.c. */
4793 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4795 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4796 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4797 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4800 /* See if any simplifications can be done based on what the RHS is. */
4801 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4802 want_value);
4803 if (ret != GS_UNHANDLED)
4804 return ret;
4806 /* For zero sized types only gimplify the left hand side and right hand
4807 side as statements and throw away the assignment. Do this after
4808 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4809 types properly. */
4810 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4812 gimplify_stmt (from_p, pre_p);
4813 gimplify_stmt (to_p, pre_p);
4814 *expr_p = NULL_TREE;
4815 return GS_ALL_DONE;
4818 /* If the value being copied is of variable width, compute the length
4819 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4820 before gimplifying any of the operands so that we can resolve any
4821 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4822 the size of the expression to be copied, not of the destination, so
4823 that is what we must do here. */
4824 maybe_with_size_expr (from_p);
4826 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4827 if (ret == GS_ERROR)
4828 return ret;
4830 /* As a special case, we have to temporarily allow for assignments
4831 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4832 a toplevel statement, when gimplifying the GENERIC expression
4833 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4834 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4836 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4837 prevent gimplify_expr from trying to create a new temporary for
4838 foo's LHS, we tell it that it should only gimplify until it
4839 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4840 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4841 and all we need to do here is set 'a' to be its LHS. */
4842 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4843 fb_rvalue);
4844 if (ret == GS_ERROR)
4845 return ret;
4847 /* Now see if the above changed *from_p to something we handle specially. */
4848 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4849 want_value);
4850 if (ret != GS_UNHANDLED)
4851 return ret;
4853 /* If we've got a variable sized assignment between two lvalues (i.e. does
4854 not involve a call), then we can make things a bit more straightforward
4855 by converting the assignment to memcpy or memset. */
4856 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4858 tree from = TREE_OPERAND (*from_p, 0);
4859 tree size = TREE_OPERAND (*from_p, 1);
4861 if (TREE_CODE (from) == CONSTRUCTOR)
4862 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4864 if (is_gimple_addressable (from))
4866 *from_p = from;
4867 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4868 pre_p);
4872 /* Transform partial stores to non-addressable complex variables into
4873 total stores. This allows us to use real instead of virtual operands
4874 for these variables, which improves optimization. */
4875 if ((TREE_CODE (*to_p) == REALPART_EXPR
4876 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4877 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4878 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4880 /* Try to alleviate the effects of the gimplification creating artificial
4881 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4882 if (!gimplify_ctxp->into_ssa
4883 && TREE_CODE (*from_p) == VAR_DECL
4884 && DECL_IGNORED_P (*from_p)
4885 && DECL_P (*to_p)
4886 && !DECL_IGNORED_P (*to_p))
4888 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4889 DECL_NAME (*from_p)
4890 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4891 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
4892 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4895 if (want_value && TREE_THIS_VOLATILE (*to_p))
4896 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4898 if (TREE_CODE (*from_p) == CALL_EXPR)
4900 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4901 instead of a GIMPLE_ASSIGN. */
4902 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4903 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4904 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4905 assign = gimple_build_call_from_tree (*from_p);
4906 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4907 if (!gimple_call_noreturn_p (assign))
4908 gimple_call_set_lhs (assign, *to_p);
4910 else
4912 assign = gimple_build_assign (*to_p, *from_p);
4913 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4916 gimplify_seq_add_stmt (pre_p, assign);
4918 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4920 /* If we've somehow already got an SSA_NAME on the LHS, then
4921 we've probably modified it twice. Not good. */
4922 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
4923 *to_p = make_ssa_name (*to_p, assign);
4924 gimple_set_lhs (assign, *to_p);
4927 if (want_value)
4929 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4930 return GS_OK;
4932 else
4933 *expr_p = NULL;
4935 return GS_ALL_DONE;
4938 /* Gimplify a comparison between two variable-sized objects. Do this
4939 with a call to BUILT_IN_MEMCMP. */
4941 static enum gimplify_status
4942 gimplify_variable_sized_compare (tree *expr_p)
4944 location_t loc = EXPR_LOCATION (*expr_p);
4945 tree op0 = TREE_OPERAND (*expr_p, 0);
4946 tree op1 = TREE_OPERAND (*expr_p, 1);
4947 tree t, arg, dest, src, expr;
4949 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4950 arg = unshare_expr (arg);
4951 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4952 src = build_fold_addr_expr_loc (loc, op1);
4953 dest = build_fold_addr_expr_loc (loc, op0);
4954 t = builtin_decl_implicit (BUILT_IN_MEMCMP);
4955 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4957 expr
4958 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4959 SET_EXPR_LOCATION (expr, loc);
4960 *expr_p = expr;
4962 return GS_OK;
4965 /* Gimplify a comparison between two aggregate objects of integral scalar
4966 mode as a comparison between the bitwise equivalent scalar values. */
4968 static enum gimplify_status
4969 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4971 location_t loc = EXPR_LOCATION (*expr_p);
4972 tree op0 = TREE_OPERAND (*expr_p, 0);
4973 tree op1 = TREE_OPERAND (*expr_p, 1);
4975 tree type = TREE_TYPE (op0);
4976 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
4978 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
4979 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
4981 *expr_p
4982 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
4984 return GS_OK;
4987 /* Gimplify an expression sequence. This function gimplifies each
4988 expression and rewrites the original expression with the last
4989 expression of the sequence in GIMPLE form.
4991 PRE_P points to the list where the side effects for all the
4992 expressions in the sequence will be emitted.
4994 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
4996 static enum gimplify_status
4997 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
4999 tree t = *expr_p;
5003 tree *sub_p = &TREE_OPERAND (t, 0);
5005 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
5006 gimplify_compound_expr (sub_p, pre_p, false);
5007 else
5008 gimplify_stmt (sub_p, pre_p);
5010 t = TREE_OPERAND (t, 1);
5012 while (TREE_CODE (t) == COMPOUND_EXPR);
5014 *expr_p = t;
5015 if (want_value)
5016 return GS_OK;
5017 else
5019 gimplify_stmt (expr_p, pre_p);
5020 return GS_ALL_DONE;
5024 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
5025 gimplify. After gimplification, EXPR_P will point to a new temporary
5026 that holds the original value of the SAVE_EXPR node.
5028 PRE_P points to the list where side effects that must happen before
5029 *EXPR_P should be stored. */
5031 static enum gimplify_status
5032 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5034 enum gimplify_status ret = GS_ALL_DONE;
5035 tree val;
5037 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
5038 val = TREE_OPERAND (*expr_p, 0);
5040 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
5041 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
5043 /* The operand may be a void-valued expression such as SAVE_EXPRs
5044 generated by the Java frontend for class initialization. It is
5045 being executed only for its side-effects. */
5046 if (TREE_TYPE (val) == void_type_node)
5048 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5049 is_gimple_stmt, fb_none);
5050 val = NULL;
5052 else
5053 val = get_initialized_tmp_var (val, pre_p, post_p);
5055 TREE_OPERAND (*expr_p, 0) = val;
5056 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
5059 *expr_p = val;
5061 return ret;
5064 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
5066 unary_expr
5067 : ...
5068 | '&' varname
5071 PRE_P points to the list where side effects that must happen before
5072 *EXPR_P should be stored.
5074 POST_P points to the list where side effects that must happen after
5075 *EXPR_P should be stored. */
5077 static enum gimplify_status
5078 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5080 tree expr = *expr_p;
5081 tree op0 = TREE_OPERAND (expr, 0);
5082 enum gimplify_status ret;
5083 location_t loc = EXPR_LOCATION (*expr_p);
5085 switch (TREE_CODE (op0))
5087 case INDIRECT_REF:
5088 do_indirect_ref:
5089 /* Check if we are dealing with an expression of the form '&*ptr'.
5090 While the front end folds away '&*ptr' into 'ptr', these
5091 expressions may be generated internally by the compiler (e.g.,
5092 builtins like __builtin_va_end). */
5093 /* Caution: the silent array decomposition semantics we allow for
5094 ADDR_EXPR means we can't always discard the pair. */
5095 /* Gimplification of the ADDR_EXPR operand may drop
5096 cv-qualification conversions, so make sure we add them if
5097 needed. */
5099 tree op00 = TREE_OPERAND (op0, 0);
5100 tree t_expr = TREE_TYPE (expr);
5101 tree t_op00 = TREE_TYPE (op00);
5103 if (!useless_type_conversion_p (t_expr, t_op00))
5104 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
5105 *expr_p = op00;
5106 ret = GS_OK;
5108 break;
5110 case VIEW_CONVERT_EXPR:
5111 /* Take the address of our operand and then convert it to the type of
5112 this ADDR_EXPR.
5114 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
5115 all clear. The impact of this transformation is even less clear. */
5117 /* If the operand is a useless conversion, look through it. Doing so
5118 guarantees that the ADDR_EXPR and its operand will remain of the
5119 same type. */
5120 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
5121 op0 = TREE_OPERAND (op0, 0);
5123 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
5124 build_fold_addr_expr_loc (loc,
5125 TREE_OPERAND (op0, 0)));
5126 ret = GS_OK;
5127 break;
5129 default:
5130 /* We use fb_either here because the C frontend sometimes takes
5131 the address of a call that returns a struct; see
5132 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
5133 the implied temporary explicit. */
5135 /* Make the operand addressable. */
5136 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
5137 is_gimple_addressable, fb_either);
5138 if (ret == GS_ERROR)
5139 break;
5141 /* Then mark it. Beware that it may not be possible to do so directly
5142 if a temporary has been created by the gimplification. */
5143 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
5145 op0 = TREE_OPERAND (expr, 0);
5147 /* For various reasons, the gimplification of the expression
5148 may have made a new INDIRECT_REF. */
5149 if (TREE_CODE (op0) == INDIRECT_REF)
5150 goto do_indirect_ref;
5152 mark_addressable (TREE_OPERAND (expr, 0));
5154 /* The FEs may end up building ADDR_EXPRs early on a decl with
5155 an incomplete type. Re-build ADDR_EXPRs in canonical form
5156 here. */
5157 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
5158 *expr_p = build_fold_addr_expr (op0);
5160 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
5161 recompute_tree_invariant_for_addr_expr (*expr_p);
5163 /* If we re-built the ADDR_EXPR add a conversion to the original type
5164 if required. */
5165 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
5166 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
5168 break;
5171 return ret;
5174 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
5175 value; output operands should be a gimple lvalue. */
5177 static enum gimplify_status
5178 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5180 tree expr;
5181 int noutputs;
5182 const char **oconstraints;
5183 int i;
5184 tree link;
5185 const char *constraint;
5186 bool allows_mem, allows_reg, is_inout;
5187 enum gimplify_status ret, tret;
5188 gimple stmt;
5189 VEC(tree, gc) *inputs;
5190 VEC(tree, gc) *outputs;
5191 VEC(tree, gc) *clobbers;
5192 VEC(tree, gc) *labels;
5193 tree link_next;
5195 expr = *expr_p;
5196 noutputs = list_length (ASM_OUTPUTS (expr));
5197 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
5199 inputs = outputs = clobbers = labels = NULL;
5201 ret = GS_ALL_DONE;
5202 link_next = NULL_TREE;
5203 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
5205 bool ok;
5206 size_t constraint_len;
5208 link_next = TREE_CHAIN (link);
5210 oconstraints[i]
5211 = constraint
5212 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5213 constraint_len = strlen (constraint);
5214 if (constraint_len == 0)
5215 continue;
5217 ok = parse_output_constraint (&constraint, i, 0, 0,
5218 &allows_mem, &allows_reg, &is_inout);
5219 if (!ok)
5221 ret = GS_ERROR;
5222 is_inout = false;
5225 if (!allows_reg && allows_mem)
5226 mark_addressable (TREE_VALUE (link));
5228 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5229 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
5230 fb_lvalue | fb_mayfail);
5231 if (tret == GS_ERROR)
5233 error ("invalid lvalue in asm output %d", i);
5234 ret = tret;
5237 VEC_safe_push (tree, gc, outputs, link);
5238 TREE_CHAIN (link) = NULL_TREE;
5240 if (is_inout)
5242 /* An input/output operand. To give the optimizers more
5243 flexibility, split it into separate input and output
5244 operands. */
5245 tree input;
5246 char buf[10];
5248 /* Turn the in/out constraint into an output constraint. */
5249 char *p = xstrdup (constraint);
5250 p[0] = '=';
5251 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
5253 /* And add a matching input constraint. */
5254 if (allows_reg)
5256 sprintf (buf, "%d", i);
5258 /* If there are multiple alternatives in the constraint,
5259 handle each of them individually. Those that allow register
5260 will be replaced with operand number, the others will stay
5261 unchanged. */
5262 if (strchr (p, ',') != NULL)
5264 size_t len = 0, buflen = strlen (buf);
5265 char *beg, *end, *str, *dst;
5267 for (beg = p + 1;;)
5269 end = strchr (beg, ',');
5270 if (end == NULL)
5271 end = strchr (beg, '\0');
5272 if ((size_t) (end - beg) < buflen)
5273 len += buflen + 1;
5274 else
5275 len += end - beg + 1;
5276 if (*end)
5277 beg = end + 1;
5278 else
5279 break;
5282 str = (char *) alloca (len);
5283 for (beg = p + 1, dst = str;;)
5285 const char *tem;
5286 bool mem_p, reg_p, inout_p;
5288 end = strchr (beg, ',');
5289 if (end)
5290 *end = '\0';
5291 beg[-1] = '=';
5292 tem = beg - 1;
5293 parse_output_constraint (&tem, i, 0, 0,
5294 &mem_p, &reg_p, &inout_p);
5295 if (dst != str)
5296 *dst++ = ',';
5297 if (reg_p)
5299 memcpy (dst, buf, buflen);
5300 dst += buflen;
5302 else
5304 if (end)
5305 len = end - beg;
5306 else
5307 len = strlen (beg);
5308 memcpy (dst, beg, len);
5309 dst += len;
5311 if (end)
5312 beg = end + 1;
5313 else
5314 break;
5316 *dst = '\0';
5317 input = build_string (dst - str, str);
5319 else
5320 input = build_string (strlen (buf), buf);
5322 else
5323 input = build_string (constraint_len - 1, constraint + 1);
5325 free (p);
5327 input = build_tree_list (build_tree_list (NULL_TREE, input),
5328 unshare_expr (TREE_VALUE (link)));
5329 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5333 link_next = NULL_TREE;
5334 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5336 link_next = TREE_CHAIN (link);
5337 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5338 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5339 oconstraints, &allows_mem, &allows_reg);
5341 /* If we can't make copies, we can only accept memory. */
5342 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5344 if (allows_mem)
5345 allows_reg = 0;
5346 else
5348 error ("impossible constraint in %<asm%>");
5349 error ("non-memory input %d must stay in memory", i);
5350 return GS_ERROR;
5354 /* If the operand is a memory input, it should be an lvalue. */
5355 if (!allows_reg && allows_mem)
5357 tree inputv = TREE_VALUE (link);
5358 STRIP_NOPS (inputv);
5359 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5360 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5361 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5362 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5363 TREE_VALUE (link) = error_mark_node;
5364 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5365 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5366 mark_addressable (TREE_VALUE (link));
5367 if (tret == GS_ERROR)
5369 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5370 input_location = EXPR_LOCATION (TREE_VALUE (link));
5371 error ("memory input %d is not directly addressable", i);
5372 ret = tret;
5375 else
5377 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5378 is_gimple_asm_val, fb_rvalue);
5379 if (tret == GS_ERROR)
5380 ret = tret;
5383 TREE_CHAIN (link) = NULL_TREE;
5384 VEC_safe_push (tree, gc, inputs, link);
5387 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5388 VEC_safe_push (tree, gc, clobbers, link);
5390 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5391 VEC_safe_push (tree, gc, labels, link);
5393 /* Do not add ASMs with errors to the gimple IL stream. */
5394 if (ret != GS_ERROR)
5396 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5397 inputs, outputs, clobbers, labels);
5399 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5400 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5402 gimplify_seq_add_stmt (pre_p, stmt);
5405 return ret;
5408 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5409 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5410 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5411 return to this function.
5413 FIXME should we complexify the prequeue handling instead? Or use flags
5414 for all the cleanups and let the optimizer tighten them up? The current
5415 code seems pretty fragile; it will break on a cleanup within any
5416 non-conditional nesting. But any such nesting would be broken, anyway;
5417 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5418 and continues out of it. We can do that at the RTL level, though, so
5419 having an optimizer to tighten up try/finally regions would be a Good
5420 Thing. */
5422 static enum gimplify_status
5423 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5425 gimple_stmt_iterator iter;
5426 gimple_seq body_sequence = NULL;
5428 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5430 /* We only care about the number of conditions between the innermost
5431 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5432 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5433 int old_conds = gimplify_ctxp->conditions;
5434 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5435 bool old_in_cleanup_point_expr = gimplify_ctxp->in_cleanup_point_expr;
5436 gimplify_ctxp->conditions = 0;
5437 gimplify_ctxp->conditional_cleanups = NULL;
5438 gimplify_ctxp->in_cleanup_point_expr = true;
5440 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5442 gimplify_ctxp->conditions = old_conds;
5443 gimplify_ctxp->conditional_cleanups = old_cleanups;
5444 gimplify_ctxp->in_cleanup_point_expr = old_in_cleanup_point_expr;
5446 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5448 gimple wce = gsi_stmt (iter);
5450 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5452 if (gsi_one_before_end_p (iter))
5454 /* Note that gsi_insert_seq_before and gsi_remove do not
5455 scan operands, unlike some other sequence mutators. */
5456 if (!gimple_wce_cleanup_eh_only (wce))
5457 gsi_insert_seq_before_without_update (&iter,
5458 gimple_wce_cleanup (wce),
5459 GSI_SAME_STMT);
5460 gsi_remove (&iter, true);
5461 break;
5463 else
5465 gimple gtry;
5466 gimple_seq seq;
5467 enum gimple_try_flags kind;
5469 if (gimple_wce_cleanup_eh_only (wce))
5470 kind = GIMPLE_TRY_CATCH;
5471 else
5472 kind = GIMPLE_TRY_FINALLY;
5473 seq = gsi_split_seq_after (iter);
5475 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5476 /* Do not use gsi_replace here, as it may scan operands.
5477 We want to do a simple structural modification only. */
5478 gsi_set_stmt (&iter, gtry);
5479 iter = gsi_start (gtry->gimple_try.eval);
5482 else
5483 gsi_next (&iter);
5486 gimplify_seq_add_seq (pre_p, body_sequence);
5487 if (temp)
5489 *expr_p = temp;
5490 return GS_OK;
5492 else
5494 *expr_p = NULL;
5495 return GS_ALL_DONE;
5499 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5500 is the cleanup action required. EH_ONLY is true if the cleanup should
5501 only be executed if an exception is thrown, not on normal exit. */
5503 static void
5504 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5506 gimple wce;
5507 gimple_seq cleanup_stmts = NULL;
5509 /* Errors can result in improperly nested cleanups. Which results in
5510 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5511 if (seen_error ())
5512 return;
5514 if (gimple_conditional_context ())
5516 /* If we're in a conditional context, this is more complex. We only
5517 want to run the cleanup if we actually ran the initialization that
5518 necessitates it, but we want to run it after the end of the
5519 conditional context. So we wrap the try/finally around the
5520 condition and use a flag to determine whether or not to actually
5521 run the destructor. Thus
5523 test ? f(A()) : 0
5525 becomes (approximately)
5527 flag = 0;
5528 try {
5529 if (test) { A::A(temp); flag = 1; val = f(temp); }
5530 else { val = 0; }
5531 } finally {
5532 if (flag) A::~A(temp);
5536 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5537 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5538 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5540 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5541 gimplify_stmt (&cleanup, &cleanup_stmts);
5542 wce = gimple_build_wce (cleanup_stmts);
5544 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5545 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5546 gimplify_seq_add_stmt (pre_p, ftrue);
5548 /* Because of this manipulation, and the EH edges that jump
5549 threading cannot redirect, the temporary (VAR) will appear
5550 to be used uninitialized. Don't warn. */
5551 TREE_NO_WARNING (var) = 1;
5553 else
5555 gimplify_stmt (&cleanup, &cleanup_stmts);
5556 wce = gimple_build_wce (cleanup_stmts);
5557 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5558 gimplify_seq_add_stmt (pre_p, wce);
5562 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5564 static enum gimplify_status
5565 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5567 tree targ = *expr_p;
5568 tree temp = TARGET_EXPR_SLOT (targ);
5569 tree init = TARGET_EXPR_INITIAL (targ);
5570 enum gimplify_status ret;
5572 if (init)
5574 tree cleanup = NULL_TREE;
5576 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5577 to the temps list. Handle also variable length TARGET_EXPRs. */
5578 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5580 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5581 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5582 gimplify_vla_decl (temp, pre_p);
5584 else
5585 gimple_add_tmp_var (temp);
5587 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5588 expression is supposed to initialize the slot. */
5589 if (VOID_TYPE_P (TREE_TYPE (init)))
5590 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5591 else
5593 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5594 init = init_expr;
5595 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5596 init = NULL;
5597 ggc_free (init_expr);
5599 if (ret == GS_ERROR)
5601 /* PR c++/28266 Make sure this is expanded only once. */
5602 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5603 return GS_ERROR;
5605 if (init)
5606 gimplify_and_add (init, pre_p);
5608 /* If needed, push the cleanup for the temp. */
5609 if (TARGET_EXPR_CLEANUP (targ))
5611 if (CLEANUP_EH_ONLY (targ))
5612 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5613 CLEANUP_EH_ONLY (targ), pre_p);
5614 else
5615 cleanup = TARGET_EXPR_CLEANUP (targ);
5618 /* Add a clobber for the temporary going out of scope, like
5619 gimplify_bind_expr. */
5620 if (gimplify_ctxp->in_cleanup_point_expr
5621 && needs_to_live_in_memory (temp))
5623 tree clobber = build_constructor (TREE_TYPE (temp), NULL);
5624 TREE_THIS_VOLATILE (clobber) = true;
5625 clobber = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, clobber);
5626 if (cleanup)
5627 cleanup = build2 (COMPOUND_EXPR, void_type_node, cleanup,
5628 clobber);
5629 else
5630 cleanup = clobber;
5633 if (cleanup)
5634 gimple_push_cleanup (temp, cleanup, false, pre_p);
5636 /* Only expand this once. */
5637 TREE_OPERAND (targ, 3) = init;
5638 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5640 else
5641 /* We should have expanded this before. */
5642 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5644 *expr_p = temp;
5645 return GS_OK;
5648 /* Gimplification of expression trees. */
5650 /* Gimplify an expression which appears at statement context. The
5651 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5652 NULL, a new sequence is allocated.
5654 Return true if we actually added a statement to the queue. */
5656 bool
5657 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5659 gimple_seq_node last;
5661 last = gimple_seq_last (*seq_p);
5662 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5663 return last != gimple_seq_last (*seq_p);
5666 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5667 to CTX. If entries already exist, force them to be some flavor of private.
5668 If there is no enclosing parallel, do nothing. */
5670 void
5671 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5673 splay_tree_node n;
5675 if (decl == NULL || !DECL_P (decl))
5676 return;
5680 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5681 if (n != NULL)
5683 if (n->value & GOVD_SHARED)
5684 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5685 else
5686 return;
5688 else if (ctx->region_type != ORT_WORKSHARE)
5689 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5691 ctx = ctx->outer_context;
5693 while (ctx);
5696 /* Similarly for each of the type sizes of TYPE. */
5698 static void
5699 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5701 if (type == NULL || type == error_mark_node)
5702 return;
5703 type = TYPE_MAIN_VARIANT (type);
5705 if (pointer_set_insert (ctx->privatized_types, type))
5706 return;
5708 switch (TREE_CODE (type))
5710 case INTEGER_TYPE:
5711 case ENUMERAL_TYPE:
5712 case BOOLEAN_TYPE:
5713 case REAL_TYPE:
5714 case FIXED_POINT_TYPE:
5715 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5716 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5717 break;
5719 case ARRAY_TYPE:
5720 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5721 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5722 break;
5724 case RECORD_TYPE:
5725 case UNION_TYPE:
5726 case QUAL_UNION_TYPE:
5728 tree field;
5729 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5730 if (TREE_CODE (field) == FIELD_DECL)
5732 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5733 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5736 break;
5738 case POINTER_TYPE:
5739 case REFERENCE_TYPE:
5740 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5741 break;
5743 default:
5744 break;
5747 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5748 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5749 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5752 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5754 static void
5755 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5757 splay_tree_node n;
5758 unsigned int nflags;
5759 tree t;
5761 if (error_operand_p (decl))
5762 return;
5764 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5765 there are constructors involved somewhere. */
5766 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5767 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5768 flags |= GOVD_SEEN;
5770 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5771 if (n != NULL)
5773 /* We shouldn't be re-adding the decl with the same data
5774 sharing class. */
5775 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5776 /* The only combination of data sharing classes we should see is
5777 FIRSTPRIVATE and LASTPRIVATE. */
5778 nflags = n->value | flags;
5779 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5780 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5781 n->value = nflags;
5782 return;
5785 /* When adding a variable-sized variable, we have to handle all sorts
5786 of additional bits of data: the pointer replacement variable, and
5787 the parameters of the type. */
5788 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5790 /* Add the pointer replacement variable as PRIVATE if the variable
5791 replacement is private, else FIRSTPRIVATE since we'll need the
5792 address of the original variable either for SHARED, or for the
5793 copy into or out of the context. */
5794 if (!(flags & GOVD_LOCAL))
5796 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5797 nflags |= flags & GOVD_SEEN;
5798 t = DECL_VALUE_EXPR (decl);
5799 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5800 t = TREE_OPERAND (t, 0);
5801 gcc_assert (DECL_P (t));
5802 omp_add_variable (ctx, t, nflags);
5805 /* Add all of the variable and type parameters (which should have
5806 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5807 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5808 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5809 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5811 /* The variable-sized variable itself is never SHARED, only some form
5812 of PRIVATE. The sharing would take place via the pointer variable
5813 which we remapped above. */
5814 if (flags & GOVD_SHARED)
5815 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5816 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5818 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5819 alloca statement we generate for the variable, so make sure it
5820 is available. This isn't automatically needed for the SHARED
5821 case, since we won't be allocating local storage then.
5822 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5823 in this case omp_notice_variable will be called later
5824 on when it is gimplified. */
5825 else if (! (flags & GOVD_LOCAL)
5826 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5827 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5829 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5831 gcc_assert ((flags & GOVD_LOCAL) == 0);
5832 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5834 /* Similar to the direct variable sized case above, we'll need the
5835 size of references being privatized. */
5836 if ((flags & GOVD_SHARED) == 0)
5838 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5839 if (TREE_CODE (t) != INTEGER_CST)
5840 omp_notice_variable (ctx, t, true);
5844 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5847 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5848 This just prints out diagnostics about threadprivate variable uses
5849 in untied tasks. If DECL2 is non-NULL, prevent this warning
5850 on that variable. */
5852 static bool
5853 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5854 tree decl2)
5856 splay_tree_node n;
5858 if (ctx->region_type != ORT_UNTIED_TASK)
5859 return false;
5860 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5861 if (n == NULL)
5863 error ("threadprivate variable %qE used in untied task",
5864 DECL_NAME (decl));
5865 error_at (ctx->location, "enclosing task");
5866 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5868 if (decl2)
5869 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5870 return false;
5873 /* Record the fact that DECL was used within the OpenMP context CTX.
5874 IN_CODE is true when real code uses DECL, and false when we should
5875 merely emit default(none) errors. Return true if DECL is going to
5876 be remapped and thus DECL shouldn't be gimplified into its
5877 DECL_VALUE_EXPR (if any). */
5879 static bool
5880 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5882 splay_tree_node n;
5883 unsigned flags = in_code ? GOVD_SEEN : 0;
5884 bool ret = false, shared;
5886 if (error_operand_p (decl))
5887 return false;
5889 /* Threadprivate variables are predetermined. */
5890 if (is_global_var (decl))
5892 if (DECL_THREAD_LOCAL_P (decl))
5893 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5895 if (DECL_HAS_VALUE_EXPR_P (decl))
5897 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5899 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5900 return omp_notice_threadprivate_variable (ctx, decl, value);
5904 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5905 if (n == NULL)
5907 enum omp_clause_default_kind default_kind, kind;
5908 struct gimplify_omp_ctx *octx;
5910 if (ctx->region_type == ORT_WORKSHARE)
5911 goto do_outer;
5913 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5914 remapped firstprivate instead of shared. To some extent this is
5915 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5916 default_kind = ctx->default_kind;
5917 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5918 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5919 default_kind = kind;
5921 switch (default_kind)
5923 case OMP_CLAUSE_DEFAULT_NONE:
5924 error ("%qE not specified in enclosing parallel",
5925 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5926 if ((ctx->region_type & ORT_TASK) != 0)
5927 error_at (ctx->location, "enclosing task");
5928 else
5929 error_at (ctx->location, "enclosing parallel");
5930 /* FALLTHRU */
5931 case OMP_CLAUSE_DEFAULT_SHARED:
5932 flags |= GOVD_SHARED;
5933 break;
5934 case OMP_CLAUSE_DEFAULT_PRIVATE:
5935 flags |= GOVD_PRIVATE;
5936 break;
5937 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5938 flags |= GOVD_FIRSTPRIVATE;
5939 break;
5940 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5941 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5942 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5943 if (ctx->outer_context)
5944 omp_notice_variable (ctx->outer_context, decl, in_code);
5945 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5947 splay_tree_node n2;
5949 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5950 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5952 flags |= GOVD_FIRSTPRIVATE;
5953 break;
5955 if ((octx->region_type & ORT_PARALLEL) != 0)
5956 break;
5958 if (flags & GOVD_FIRSTPRIVATE)
5959 break;
5960 if (octx == NULL
5961 && (TREE_CODE (decl) == PARM_DECL
5962 || (!is_global_var (decl)
5963 && DECL_CONTEXT (decl) == current_function_decl)))
5965 flags |= GOVD_FIRSTPRIVATE;
5966 break;
5968 flags |= GOVD_SHARED;
5969 break;
5970 default:
5971 gcc_unreachable ();
5974 if ((flags & GOVD_PRIVATE)
5975 && lang_hooks.decls.omp_private_outer_ref (decl))
5976 flags |= GOVD_PRIVATE_OUTER_REF;
5978 omp_add_variable (ctx, decl, flags);
5980 shared = (flags & GOVD_SHARED) != 0;
5981 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5982 goto do_outer;
5985 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
5986 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
5987 && DECL_SIZE (decl)
5988 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5990 splay_tree_node n2;
5991 tree t = DECL_VALUE_EXPR (decl);
5992 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5993 t = TREE_OPERAND (t, 0);
5994 gcc_assert (DECL_P (t));
5995 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
5996 n2->value |= GOVD_SEEN;
5999 shared = ((flags | n->value) & GOVD_SHARED) != 0;
6000 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
6002 /* If nothing changed, there's nothing left to do. */
6003 if ((n->value & flags) == flags)
6004 return ret;
6005 flags |= n->value;
6006 n->value = flags;
6008 do_outer:
6009 /* If the variable is private in the current context, then we don't
6010 need to propagate anything to an outer context. */
6011 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
6012 return ret;
6013 if (ctx->outer_context
6014 && omp_notice_variable (ctx->outer_context, decl, in_code))
6015 return true;
6016 return ret;
6019 /* Verify that DECL is private within CTX. If there's specific information
6020 to the contrary in the innermost scope, generate an error. */
6022 static bool
6023 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
6025 splay_tree_node n;
6027 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
6028 if (n != NULL)
6030 if (n->value & GOVD_SHARED)
6032 if (ctx == gimplify_omp_ctxp)
6034 error ("iteration variable %qE should be private",
6035 DECL_NAME (decl));
6036 n->value = GOVD_PRIVATE;
6037 return true;
6039 else
6040 return false;
6042 else if ((n->value & GOVD_EXPLICIT) != 0
6043 && (ctx == gimplify_omp_ctxp
6044 || (ctx->region_type == ORT_COMBINED_PARALLEL
6045 && gimplify_omp_ctxp->outer_context == ctx)))
6047 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
6048 error ("iteration variable %qE should not be firstprivate",
6049 DECL_NAME (decl));
6050 else if ((n->value & GOVD_REDUCTION) != 0)
6051 error ("iteration variable %qE should not be reduction",
6052 DECL_NAME (decl));
6054 return (ctx == gimplify_omp_ctxp
6055 || (ctx->region_type == ORT_COMBINED_PARALLEL
6056 && gimplify_omp_ctxp->outer_context == ctx));
6059 if (ctx->region_type != ORT_WORKSHARE)
6060 return false;
6061 else if (ctx->outer_context)
6062 return omp_is_private (ctx->outer_context, decl);
6063 return false;
6066 /* Return true if DECL is private within a parallel region
6067 that binds to the current construct's context or in parallel
6068 region's REDUCTION clause. */
6070 static bool
6071 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
6073 splay_tree_node n;
6077 ctx = ctx->outer_context;
6078 if (ctx == NULL)
6079 return !(is_global_var (decl)
6080 /* References might be private, but might be shared too. */
6081 || lang_hooks.decls.omp_privatize_by_reference (decl));
6083 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6084 if (n != NULL)
6085 return (n->value & GOVD_SHARED) == 0;
6087 while (ctx->region_type == ORT_WORKSHARE);
6088 return false;
6091 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
6092 and previous omp contexts. */
6094 static void
6095 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
6096 enum omp_region_type region_type)
6098 struct gimplify_omp_ctx *ctx, *outer_ctx;
6099 struct gimplify_ctx gctx;
6100 tree c;
6102 ctx = new_omp_context (region_type);
6103 outer_ctx = ctx->outer_context;
6105 while ((c = *list_p) != NULL)
6107 bool remove = false;
6108 bool notice_outer = true;
6109 const char *check_non_private = NULL;
6110 unsigned int flags;
6111 tree decl;
6113 switch (OMP_CLAUSE_CODE (c))
6115 case OMP_CLAUSE_PRIVATE:
6116 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
6117 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
6119 flags |= GOVD_PRIVATE_OUTER_REF;
6120 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
6122 else
6123 notice_outer = false;
6124 goto do_add;
6125 case OMP_CLAUSE_SHARED:
6126 flags = GOVD_SHARED | GOVD_EXPLICIT;
6127 goto do_add;
6128 case OMP_CLAUSE_FIRSTPRIVATE:
6129 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
6130 check_non_private = "firstprivate";
6131 goto do_add;
6132 case OMP_CLAUSE_LASTPRIVATE:
6133 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
6134 check_non_private = "lastprivate";
6135 goto do_add;
6136 case OMP_CLAUSE_REDUCTION:
6137 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
6138 check_non_private = "reduction";
6139 goto do_add;
6141 do_add:
6142 decl = OMP_CLAUSE_DECL (c);
6143 if (error_operand_p (decl))
6145 remove = true;
6146 break;
6148 omp_add_variable (ctx, decl, flags);
6149 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6150 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
6152 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
6153 GOVD_LOCAL | GOVD_SEEN);
6154 gimplify_omp_ctxp = ctx;
6155 push_gimplify_context (&gctx);
6157 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = NULL;
6158 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
6160 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
6161 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
6162 pop_gimplify_context
6163 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
6164 push_gimplify_context (&gctx);
6165 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
6166 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
6167 pop_gimplify_context
6168 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
6169 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
6170 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
6172 gimplify_omp_ctxp = outer_ctx;
6174 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6175 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
6177 gimplify_omp_ctxp = ctx;
6178 push_gimplify_context (&gctx);
6179 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
6181 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
6182 NULL, NULL);
6183 TREE_SIDE_EFFECTS (bind) = 1;
6184 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
6185 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
6187 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
6188 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6189 pop_gimplify_context
6190 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
6191 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
6193 gimplify_omp_ctxp = outer_ctx;
6195 if (notice_outer)
6196 goto do_notice;
6197 break;
6199 case OMP_CLAUSE_COPYIN:
6200 case OMP_CLAUSE_COPYPRIVATE:
6201 decl = OMP_CLAUSE_DECL (c);
6202 if (error_operand_p (decl))
6204 remove = true;
6205 break;
6207 do_notice:
6208 if (outer_ctx)
6209 omp_notice_variable (outer_ctx, decl, true);
6210 if (check_non_private
6211 && region_type == ORT_WORKSHARE
6212 && omp_check_private (ctx, decl))
6214 error ("%s variable %qE is private in outer context",
6215 check_non_private, DECL_NAME (decl));
6216 remove = true;
6218 break;
6220 case OMP_CLAUSE_FINAL:
6221 case OMP_CLAUSE_IF:
6222 OMP_CLAUSE_OPERAND (c, 0)
6223 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
6224 /* Fall through. */
6226 case OMP_CLAUSE_SCHEDULE:
6227 case OMP_CLAUSE_NUM_THREADS:
6228 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
6229 is_gimple_val, fb_rvalue) == GS_ERROR)
6230 remove = true;
6231 break;
6233 case OMP_CLAUSE_NOWAIT:
6234 case OMP_CLAUSE_ORDERED:
6235 case OMP_CLAUSE_UNTIED:
6236 case OMP_CLAUSE_COLLAPSE:
6237 case OMP_CLAUSE_MERGEABLE:
6238 break;
6240 case OMP_CLAUSE_DEFAULT:
6241 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
6242 break;
6244 default:
6245 gcc_unreachable ();
6248 if (remove)
6249 *list_p = OMP_CLAUSE_CHAIN (c);
6250 else
6251 list_p = &OMP_CLAUSE_CHAIN (c);
6254 gimplify_omp_ctxp = ctx;
6257 /* For all variables that were not actually used within the context,
6258 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6260 static int
6261 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
6263 tree *list_p = (tree *) data;
6264 tree decl = (tree) n->key;
6265 unsigned flags = n->value;
6266 enum omp_clause_code code;
6267 tree clause;
6268 bool private_debug;
6270 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
6271 return 0;
6272 if ((flags & GOVD_SEEN) == 0)
6273 return 0;
6274 if (flags & GOVD_DEBUG_PRIVATE)
6276 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
6277 private_debug = true;
6279 else
6280 private_debug
6281 = lang_hooks.decls.omp_private_debug_clause (decl,
6282 !!(flags & GOVD_SHARED));
6283 if (private_debug)
6284 code = OMP_CLAUSE_PRIVATE;
6285 else if (flags & GOVD_SHARED)
6287 if (is_global_var (decl))
6289 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6290 while (ctx != NULL)
6292 splay_tree_node on
6293 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6294 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6295 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6296 break;
6297 ctx = ctx->outer_context;
6299 if (ctx == NULL)
6300 return 0;
6302 code = OMP_CLAUSE_SHARED;
6304 else if (flags & GOVD_PRIVATE)
6305 code = OMP_CLAUSE_PRIVATE;
6306 else if (flags & GOVD_FIRSTPRIVATE)
6307 code = OMP_CLAUSE_FIRSTPRIVATE;
6308 else
6309 gcc_unreachable ();
6311 clause = build_omp_clause (input_location, code);
6312 OMP_CLAUSE_DECL (clause) = decl;
6313 OMP_CLAUSE_CHAIN (clause) = *list_p;
6314 if (private_debug)
6315 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6316 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6317 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6318 *list_p = clause;
6319 lang_hooks.decls.omp_finish_clause (clause);
6321 return 0;
6324 static void
6325 gimplify_adjust_omp_clauses (tree *list_p)
6327 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6328 tree c, decl;
6330 while ((c = *list_p) != NULL)
6332 splay_tree_node n;
6333 bool remove = false;
6335 switch (OMP_CLAUSE_CODE (c))
6337 case OMP_CLAUSE_PRIVATE:
6338 case OMP_CLAUSE_SHARED:
6339 case OMP_CLAUSE_FIRSTPRIVATE:
6340 decl = OMP_CLAUSE_DECL (c);
6341 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6342 remove = !(n->value & GOVD_SEEN);
6343 if (! remove)
6345 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6346 if ((n->value & GOVD_DEBUG_PRIVATE)
6347 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6349 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6350 || ((n->value & GOVD_DATA_SHARE_CLASS)
6351 == GOVD_PRIVATE));
6352 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6353 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6356 break;
6358 case OMP_CLAUSE_LASTPRIVATE:
6359 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6360 accurately reflect the presence of a FIRSTPRIVATE clause. */
6361 decl = OMP_CLAUSE_DECL (c);
6362 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6363 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6364 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6365 break;
6367 case OMP_CLAUSE_REDUCTION:
6368 case OMP_CLAUSE_COPYIN:
6369 case OMP_CLAUSE_COPYPRIVATE:
6370 case OMP_CLAUSE_IF:
6371 case OMP_CLAUSE_NUM_THREADS:
6372 case OMP_CLAUSE_SCHEDULE:
6373 case OMP_CLAUSE_NOWAIT:
6374 case OMP_CLAUSE_ORDERED:
6375 case OMP_CLAUSE_DEFAULT:
6376 case OMP_CLAUSE_UNTIED:
6377 case OMP_CLAUSE_COLLAPSE:
6378 case OMP_CLAUSE_FINAL:
6379 case OMP_CLAUSE_MERGEABLE:
6380 break;
6382 default:
6383 gcc_unreachable ();
6386 if (remove)
6387 *list_p = OMP_CLAUSE_CHAIN (c);
6388 else
6389 list_p = &OMP_CLAUSE_CHAIN (c);
6392 /* Add in any implicit data sharing. */
6393 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6395 gimplify_omp_ctxp = ctx->outer_context;
6396 delete_omp_context (ctx);
6399 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6400 gimplification of the body, as well as scanning the body for used
6401 variables. We need to do this scan now, because variable-sized
6402 decls will be decomposed during gimplification. */
6404 static void
6405 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6407 tree expr = *expr_p;
6408 gimple g;
6409 gimple_seq body = NULL;
6410 struct gimplify_ctx gctx;
6412 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6413 OMP_PARALLEL_COMBINED (expr)
6414 ? ORT_COMBINED_PARALLEL
6415 : ORT_PARALLEL);
6417 push_gimplify_context (&gctx);
6419 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6420 if (gimple_code (g) == GIMPLE_BIND)
6421 pop_gimplify_context (g);
6422 else
6423 pop_gimplify_context (NULL);
6425 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6427 g = gimple_build_omp_parallel (body,
6428 OMP_PARALLEL_CLAUSES (expr),
6429 NULL_TREE, NULL_TREE);
6430 if (OMP_PARALLEL_COMBINED (expr))
6431 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6432 gimplify_seq_add_stmt (pre_p, g);
6433 *expr_p = NULL_TREE;
6436 /* Gimplify the contents of an OMP_TASK statement. This involves
6437 gimplification of the body, as well as scanning the body for used
6438 variables. We need to do this scan now, because variable-sized
6439 decls will be decomposed during gimplification. */
6441 static void
6442 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6444 tree expr = *expr_p;
6445 gimple g;
6446 gimple_seq body = NULL;
6447 struct gimplify_ctx gctx;
6449 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6450 find_omp_clause (OMP_TASK_CLAUSES (expr),
6451 OMP_CLAUSE_UNTIED)
6452 ? ORT_UNTIED_TASK : ORT_TASK);
6454 push_gimplify_context (&gctx);
6456 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6457 if (gimple_code (g) == GIMPLE_BIND)
6458 pop_gimplify_context (g);
6459 else
6460 pop_gimplify_context (NULL);
6462 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6464 g = gimple_build_omp_task (body,
6465 OMP_TASK_CLAUSES (expr),
6466 NULL_TREE, NULL_TREE,
6467 NULL_TREE, NULL_TREE, NULL_TREE);
6468 gimplify_seq_add_stmt (pre_p, g);
6469 *expr_p = NULL_TREE;
6472 /* Gimplify the gross structure of an OMP_FOR statement. */
6474 static enum gimplify_status
6475 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6477 tree for_stmt, decl, var, t;
6478 enum gimplify_status ret = GS_ALL_DONE;
6479 enum gimplify_status tret;
6480 gimple gfor;
6481 gimple_seq for_body, for_pre_body;
6482 int i;
6484 for_stmt = *expr_p;
6486 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6487 ORT_WORKSHARE);
6489 /* Handle OMP_FOR_INIT. */
6490 for_pre_body = NULL;
6491 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6492 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6494 for_body = NULL;
6495 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6496 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6497 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6498 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6499 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6501 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6502 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6503 decl = TREE_OPERAND (t, 0);
6504 gcc_assert (DECL_P (decl));
6505 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6506 || POINTER_TYPE_P (TREE_TYPE (decl)));
6508 /* Make sure the iteration variable is private. */
6509 if (omp_is_private (gimplify_omp_ctxp, decl))
6510 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6511 else
6512 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6514 /* If DECL is not a gimple register, create a temporary variable to act
6515 as an iteration counter. This is valid, since DECL cannot be
6516 modified in the body of the loop. */
6517 if (!is_gimple_reg (decl))
6519 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6520 TREE_OPERAND (t, 0) = var;
6522 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6524 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6526 else
6527 var = decl;
6529 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6530 is_gimple_val, fb_rvalue);
6531 ret = MIN (ret, tret);
6532 if (ret == GS_ERROR)
6533 return ret;
6535 /* Handle OMP_FOR_COND. */
6536 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6537 gcc_assert (COMPARISON_CLASS_P (t));
6538 gcc_assert (TREE_OPERAND (t, 0) == decl);
6540 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6541 is_gimple_val, fb_rvalue);
6542 ret = MIN (ret, tret);
6544 /* Handle OMP_FOR_INCR. */
6545 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6546 switch (TREE_CODE (t))
6548 case PREINCREMENT_EXPR:
6549 case POSTINCREMENT_EXPR:
6550 t = build_int_cst (TREE_TYPE (decl), 1);
6551 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6552 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6553 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6554 break;
6556 case PREDECREMENT_EXPR:
6557 case POSTDECREMENT_EXPR:
6558 t = build_int_cst (TREE_TYPE (decl), -1);
6559 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6560 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6561 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6562 break;
6564 case MODIFY_EXPR:
6565 gcc_assert (TREE_OPERAND (t, 0) == decl);
6566 TREE_OPERAND (t, 0) = var;
6568 t = TREE_OPERAND (t, 1);
6569 switch (TREE_CODE (t))
6571 case PLUS_EXPR:
6572 if (TREE_OPERAND (t, 1) == decl)
6574 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6575 TREE_OPERAND (t, 0) = var;
6576 break;
6579 /* Fallthru. */
6580 case MINUS_EXPR:
6581 case POINTER_PLUS_EXPR:
6582 gcc_assert (TREE_OPERAND (t, 0) == decl);
6583 TREE_OPERAND (t, 0) = var;
6584 break;
6585 default:
6586 gcc_unreachable ();
6589 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6590 is_gimple_val, fb_rvalue);
6591 ret = MIN (ret, tret);
6592 break;
6594 default:
6595 gcc_unreachable ();
6598 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6600 tree c;
6601 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6602 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6603 && OMP_CLAUSE_DECL (c) == decl
6604 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6606 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6607 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6608 gcc_assert (TREE_OPERAND (t, 0) == var);
6609 t = TREE_OPERAND (t, 1);
6610 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6611 || TREE_CODE (t) == MINUS_EXPR
6612 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6613 gcc_assert (TREE_OPERAND (t, 0) == var);
6614 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6615 TREE_OPERAND (t, 1));
6616 gimplify_assign (decl, t,
6617 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6622 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6624 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6626 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6627 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6628 for_pre_body);
6630 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6632 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6633 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6634 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6635 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6636 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6637 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6638 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6639 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6642 gimplify_seq_add_stmt (pre_p, gfor);
6643 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6646 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6647 In particular, OMP_SECTIONS and OMP_SINGLE. */
6649 static void
6650 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6652 tree expr = *expr_p;
6653 gimple stmt;
6654 gimple_seq body = NULL;
6656 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6657 gimplify_and_add (OMP_BODY (expr), &body);
6658 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6660 if (TREE_CODE (expr) == OMP_SECTIONS)
6661 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6662 else if (TREE_CODE (expr) == OMP_SINGLE)
6663 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6664 else
6665 gcc_unreachable ();
6667 gimplify_seq_add_stmt (pre_p, stmt);
6670 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6671 stabilized the lhs of the atomic operation as *ADDR. Return true if
6672 EXPR is this stabilized form. */
6674 static bool
6675 goa_lhs_expr_p (tree expr, tree addr)
6677 /* Also include casts to other type variants. The C front end is fond
6678 of adding these for e.g. volatile variables. This is like
6679 STRIP_TYPE_NOPS but includes the main variant lookup. */
6680 STRIP_USELESS_TYPE_CONVERSION (expr);
6682 if (TREE_CODE (expr) == INDIRECT_REF)
6684 expr = TREE_OPERAND (expr, 0);
6685 while (expr != addr
6686 && (CONVERT_EXPR_P (expr)
6687 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6688 && TREE_CODE (expr) == TREE_CODE (addr)
6689 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6691 expr = TREE_OPERAND (expr, 0);
6692 addr = TREE_OPERAND (addr, 0);
6694 if (expr == addr)
6695 return true;
6696 return (TREE_CODE (addr) == ADDR_EXPR
6697 && TREE_CODE (expr) == ADDR_EXPR
6698 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6700 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6701 return true;
6702 return false;
6705 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6706 expression does not involve the lhs, evaluate it into a temporary.
6707 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6708 or -1 if an error was encountered. */
6710 static int
6711 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6712 tree lhs_var)
6714 tree expr = *expr_p;
6715 int saw_lhs;
6717 if (goa_lhs_expr_p (expr, lhs_addr))
6719 *expr_p = lhs_var;
6720 return 1;
6722 if (is_gimple_val (expr))
6723 return 0;
6725 saw_lhs = 0;
6726 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6728 case tcc_binary:
6729 case tcc_comparison:
6730 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6731 lhs_var);
6732 case tcc_unary:
6733 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6734 lhs_var);
6735 break;
6736 case tcc_expression:
6737 switch (TREE_CODE (expr))
6739 case TRUTH_ANDIF_EXPR:
6740 case TRUTH_ORIF_EXPR:
6741 case TRUTH_AND_EXPR:
6742 case TRUTH_OR_EXPR:
6743 case TRUTH_XOR_EXPR:
6744 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6745 lhs_addr, lhs_var);
6746 case TRUTH_NOT_EXPR:
6747 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6748 lhs_addr, lhs_var);
6749 break;
6750 case COMPOUND_EXPR:
6751 /* Break out any preevaluations from cp_build_modify_expr. */
6752 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6753 expr = TREE_OPERAND (expr, 1))
6754 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6755 *expr_p = expr;
6756 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6757 default:
6758 break;
6760 break;
6761 default:
6762 break;
6765 if (saw_lhs == 0)
6767 enum gimplify_status gs;
6768 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6769 if (gs != GS_ALL_DONE)
6770 saw_lhs = -1;
6773 return saw_lhs;
6776 /* Gimplify an OMP_ATOMIC statement. */
6778 static enum gimplify_status
6779 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6781 tree addr = TREE_OPERAND (*expr_p, 0);
6782 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6783 ? NULL : TREE_OPERAND (*expr_p, 1);
6784 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6785 tree tmp_load;
6786 gimple loadstmt, storestmt;
6788 tmp_load = create_tmp_reg (type, NULL);
6789 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6790 return GS_ERROR;
6792 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6793 != GS_ALL_DONE)
6794 return GS_ERROR;
6796 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6797 gimplify_seq_add_stmt (pre_p, loadstmt);
6798 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6799 != GS_ALL_DONE)
6800 return GS_ERROR;
6802 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6803 rhs = tmp_load;
6804 storestmt = gimple_build_omp_atomic_store (rhs);
6805 gimplify_seq_add_stmt (pre_p, storestmt);
6806 switch (TREE_CODE (*expr_p))
6808 case OMP_ATOMIC_READ:
6809 case OMP_ATOMIC_CAPTURE_OLD:
6810 *expr_p = tmp_load;
6811 gimple_omp_atomic_set_need_value (loadstmt);
6812 break;
6813 case OMP_ATOMIC_CAPTURE_NEW:
6814 *expr_p = rhs;
6815 gimple_omp_atomic_set_need_value (storestmt);
6816 break;
6817 default:
6818 *expr_p = NULL;
6819 break;
6822 return GS_ALL_DONE;
6825 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6826 body, and adding some EH bits. */
6828 static enum gimplify_status
6829 gimplify_transaction (tree *expr_p, gimple_seq *pre_p)
6831 tree expr = *expr_p, temp, tbody = TRANSACTION_EXPR_BODY (expr);
6832 gimple g;
6833 gimple_seq body = NULL;
6834 struct gimplify_ctx gctx;
6835 int subcode = 0;
6837 /* Wrap the transaction body in a BIND_EXPR so we have a context
6838 where to put decls for OpenMP. */
6839 if (TREE_CODE (tbody) != BIND_EXPR)
6841 tree bind = build3 (BIND_EXPR, void_type_node, NULL, tbody, NULL);
6842 TREE_SIDE_EFFECTS (bind) = 1;
6843 SET_EXPR_LOCATION (bind, EXPR_LOCATION (tbody));
6844 TRANSACTION_EXPR_BODY (expr) = bind;
6847 push_gimplify_context (&gctx);
6848 temp = voidify_wrapper_expr (*expr_p, NULL);
6850 g = gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr), &body);
6851 pop_gimplify_context (g);
6853 g = gimple_build_transaction (body, NULL);
6854 if (TRANSACTION_EXPR_OUTER (expr))
6855 subcode = GTMA_IS_OUTER;
6856 else if (TRANSACTION_EXPR_RELAXED (expr))
6857 subcode = GTMA_IS_RELAXED;
6858 gimple_transaction_set_subcode (g, subcode);
6860 gimplify_seq_add_stmt (pre_p, g);
6862 if (temp)
6864 *expr_p = temp;
6865 return GS_OK;
6868 *expr_p = NULL_TREE;
6869 return GS_ALL_DONE;
6872 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6873 expression produces a value to be used as an operand inside a GIMPLE
6874 statement, the value will be stored back in *EXPR_P. This value will
6875 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6876 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6877 emitted in PRE_P and POST_P.
6879 Additionally, this process may overwrite parts of the input
6880 expression during gimplification. Ideally, it should be
6881 possible to do non-destructive gimplification.
6883 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6884 the expression needs to evaluate to a value to be used as
6885 an operand in a GIMPLE statement, this value will be stored in
6886 *EXPR_P on exit. This happens when the caller specifies one
6887 of fb_lvalue or fb_rvalue fallback flags.
6889 PRE_P will contain the sequence of GIMPLE statements corresponding
6890 to the evaluation of EXPR and all the side-effects that must
6891 be executed before the main expression. On exit, the last
6892 statement of PRE_P is the core statement being gimplified. For
6893 instance, when gimplifying 'if (++a)' the last statement in
6894 PRE_P will be 'if (t.1)' where t.1 is the result of
6895 pre-incrementing 'a'.
6897 POST_P will contain the sequence of GIMPLE statements corresponding
6898 to the evaluation of all the side-effects that must be executed
6899 after the main expression. If this is NULL, the post
6900 side-effects are stored at the end of PRE_P.
6902 The reason why the output is split in two is to handle post
6903 side-effects explicitly. In some cases, an expression may have
6904 inner and outer post side-effects which need to be emitted in
6905 an order different from the one given by the recursive
6906 traversal. For instance, for the expression (*p--)++ the post
6907 side-effects of '--' must actually occur *after* the post
6908 side-effects of '++'. However, gimplification will first visit
6909 the inner expression, so if a separate POST sequence was not
6910 used, the resulting sequence would be:
6912 1 t.1 = *p
6913 2 p = p - 1
6914 3 t.2 = t.1 + 1
6915 4 *p = t.2
6917 However, the post-decrement operation in line #2 must not be
6918 evaluated until after the store to *p at line #4, so the
6919 correct sequence should be:
6921 1 t.1 = *p
6922 2 t.2 = t.1 + 1
6923 3 *p = t.2
6924 4 p = p - 1
6926 So, by specifying a separate post queue, it is possible
6927 to emit the post side-effects in the correct order.
6928 If POST_P is NULL, an internal queue will be used. Before
6929 returning to the caller, the sequence POST_P is appended to
6930 the main output sequence PRE_P.
6932 GIMPLE_TEST_F points to a function that takes a tree T and
6933 returns nonzero if T is in the GIMPLE form requested by the
6934 caller. The GIMPLE predicates are in gimple.c.
6936 FALLBACK tells the function what sort of a temporary we want if
6937 gimplification cannot produce an expression that complies with
6938 GIMPLE_TEST_F.
6940 fb_none means that no temporary should be generated
6941 fb_rvalue means that an rvalue is OK to generate
6942 fb_lvalue means that an lvalue is OK to generate
6943 fb_either means that either is OK, but an lvalue is preferable.
6944 fb_mayfail means that gimplification may fail (in which case
6945 GS_ERROR will be returned)
6947 The return value is either GS_ERROR or GS_ALL_DONE, since this
6948 function iterates until EXPR is completely gimplified or an error
6949 occurs. */
6951 enum gimplify_status
6952 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6953 bool (*gimple_test_f) (tree), fallback_t fallback)
6955 tree tmp;
6956 gimple_seq internal_pre = NULL;
6957 gimple_seq internal_post = NULL;
6958 tree save_expr;
6959 bool is_statement;
6960 location_t saved_location;
6961 enum gimplify_status ret;
6962 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6964 save_expr = *expr_p;
6965 if (save_expr == NULL_TREE)
6966 return GS_ALL_DONE;
6968 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
6969 is_statement = gimple_test_f == is_gimple_stmt;
6970 if (is_statement)
6971 gcc_assert (pre_p);
6973 /* Consistency checks. */
6974 if (gimple_test_f == is_gimple_reg)
6975 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
6976 else if (gimple_test_f == is_gimple_val
6977 || gimple_test_f == is_gimple_call_addr
6978 || gimple_test_f == is_gimple_condexpr
6979 || gimple_test_f == is_gimple_mem_rhs
6980 || gimple_test_f == is_gimple_mem_rhs_or_call
6981 || gimple_test_f == is_gimple_reg_rhs
6982 || gimple_test_f == is_gimple_reg_rhs_or_call
6983 || gimple_test_f == is_gimple_asm_val
6984 || gimple_test_f == is_gimple_mem_ref_addr)
6985 gcc_assert (fallback & fb_rvalue);
6986 else if (gimple_test_f == is_gimple_min_lval
6987 || gimple_test_f == is_gimple_lvalue)
6988 gcc_assert (fallback & fb_lvalue);
6989 else if (gimple_test_f == is_gimple_addressable)
6990 gcc_assert (fallback & fb_either);
6991 else if (gimple_test_f == is_gimple_stmt)
6992 gcc_assert (fallback == fb_none);
6993 else
6995 /* We should have recognized the GIMPLE_TEST_F predicate to
6996 know what kind of fallback to use in case a temporary is
6997 needed to hold the value or address of *EXPR_P. */
6998 gcc_unreachable ();
7001 /* We used to check the predicate here and return immediately if it
7002 succeeds. This is wrong; the design is for gimplification to be
7003 idempotent, and for the predicates to only test for valid forms, not
7004 whether they are fully simplified. */
7005 if (pre_p == NULL)
7006 pre_p = &internal_pre;
7008 if (post_p == NULL)
7009 post_p = &internal_post;
7011 /* Remember the last statements added to PRE_P and POST_P. Every
7012 new statement added by the gimplification helpers needs to be
7013 annotated with location information. To centralize the
7014 responsibility, we remember the last statement that had been
7015 added to both queues before gimplifying *EXPR_P. If
7016 gimplification produces new statements in PRE_P and POST_P, those
7017 statements will be annotated with the same location information
7018 as *EXPR_P. */
7019 pre_last_gsi = gsi_last (*pre_p);
7020 post_last_gsi = gsi_last (*post_p);
7022 saved_location = input_location;
7023 if (save_expr != error_mark_node
7024 && EXPR_HAS_LOCATION (*expr_p))
7025 input_location = EXPR_LOCATION (*expr_p);
7027 /* Loop over the specific gimplifiers until the toplevel node
7028 remains the same. */
7031 /* Strip away as many useless type conversions as possible
7032 at the toplevel. */
7033 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
7035 /* Remember the expr. */
7036 save_expr = *expr_p;
7038 /* Die, die, die, my darling. */
7039 if (save_expr == error_mark_node
7040 || (TREE_TYPE (save_expr)
7041 && TREE_TYPE (save_expr) == error_mark_node))
7043 ret = GS_ERROR;
7044 break;
7047 /* Do any language-specific gimplification. */
7048 ret = ((enum gimplify_status)
7049 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
7050 if (ret == GS_OK)
7052 if (*expr_p == NULL_TREE)
7053 break;
7054 if (*expr_p != save_expr)
7055 continue;
7057 else if (ret != GS_UNHANDLED)
7058 break;
7060 /* Make sure that all the cases set 'ret' appropriately. */
7061 ret = GS_UNHANDLED;
7062 switch (TREE_CODE (*expr_p))
7064 /* First deal with the special cases. */
7066 case POSTINCREMENT_EXPR:
7067 case POSTDECREMENT_EXPR:
7068 case PREINCREMENT_EXPR:
7069 case PREDECREMENT_EXPR:
7070 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
7071 fallback != fb_none);
7072 break;
7074 case ARRAY_REF:
7075 case ARRAY_RANGE_REF:
7076 case REALPART_EXPR:
7077 case IMAGPART_EXPR:
7078 case COMPONENT_REF:
7079 case VIEW_CONVERT_EXPR:
7080 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
7081 fallback ? fallback : fb_rvalue);
7082 break;
7084 case COND_EXPR:
7085 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
7087 /* C99 code may assign to an array in a structure value of a
7088 conditional expression, and this has undefined behavior
7089 only on execution, so create a temporary if an lvalue is
7090 required. */
7091 if (fallback == fb_lvalue)
7093 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7094 mark_addressable (*expr_p);
7095 ret = GS_OK;
7097 break;
7099 case CALL_EXPR:
7100 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
7102 /* C99 code may assign to an array in a structure returned
7103 from a function, and this has undefined behavior only on
7104 execution, so create a temporary if an lvalue is
7105 required. */
7106 if (fallback == fb_lvalue)
7108 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7109 mark_addressable (*expr_p);
7110 ret = GS_OK;
7112 break;
7114 case TREE_LIST:
7115 gcc_unreachable ();
7117 case COMPOUND_EXPR:
7118 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
7119 break;
7121 case COMPOUND_LITERAL_EXPR:
7122 ret = gimplify_compound_literal_expr (expr_p, pre_p, fallback);
7123 break;
7125 case MODIFY_EXPR:
7126 case INIT_EXPR:
7127 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
7128 fallback != fb_none);
7129 break;
7131 case TRUTH_ANDIF_EXPR:
7132 case TRUTH_ORIF_EXPR:
7134 /* Preserve the original type of the expression and the
7135 source location of the outer expression. */
7136 tree org_type = TREE_TYPE (*expr_p);
7137 *expr_p = gimple_boolify (*expr_p);
7138 *expr_p = build3_loc (input_location, COND_EXPR,
7139 org_type, *expr_p,
7140 fold_convert_loc
7141 (input_location,
7142 org_type, boolean_true_node),
7143 fold_convert_loc
7144 (input_location,
7145 org_type, boolean_false_node));
7146 ret = GS_OK;
7147 break;
7150 case TRUTH_NOT_EXPR:
7152 tree type = TREE_TYPE (*expr_p);
7153 /* The parsers are careful to generate TRUTH_NOT_EXPR
7154 only with operands that are always zero or one.
7155 We do not fold here but handle the only interesting case
7156 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
7157 *expr_p = gimple_boolify (*expr_p);
7158 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
7159 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
7160 TREE_TYPE (*expr_p),
7161 TREE_OPERAND (*expr_p, 0));
7162 else
7163 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
7164 TREE_TYPE (*expr_p),
7165 TREE_OPERAND (*expr_p, 0),
7166 build_int_cst (TREE_TYPE (*expr_p), 1));
7167 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
7168 *expr_p = fold_convert_loc (input_location, type, *expr_p);
7169 ret = GS_OK;
7170 break;
7173 case ADDR_EXPR:
7174 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
7175 break;
7177 case VA_ARG_EXPR:
7178 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
7179 break;
7181 CASE_CONVERT:
7182 if (IS_EMPTY_STMT (*expr_p))
7184 ret = GS_ALL_DONE;
7185 break;
7188 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
7189 || fallback == fb_none)
7191 /* Just strip a conversion to void (or in void context) and
7192 try again. */
7193 *expr_p = TREE_OPERAND (*expr_p, 0);
7194 ret = GS_OK;
7195 break;
7198 ret = gimplify_conversion (expr_p);
7199 if (ret == GS_ERROR)
7200 break;
7201 if (*expr_p != save_expr)
7202 break;
7203 /* FALLTHRU */
7205 case FIX_TRUNC_EXPR:
7206 /* unary_expr: ... | '(' cast ')' val | ... */
7207 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7208 is_gimple_val, fb_rvalue);
7209 recalculate_side_effects (*expr_p);
7210 break;
7212 case INDIRECT_REF:
7214 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
7215 bool notrap = TREE_THIS_NOTRAP (*expr_p);
7216 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
7218 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
7219 if (*expr_p != save_expr)
7221 ret = GS_OK;
7222 break;
7225 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7226 is_gimple_reg, fb_rvalue);
7227 if (ret == GS_ERROR)
7228 break;
7230 recalculate_side_effects (*expr_p);
7231 *expr_p = fold_build2_loc (input_location, MEM_REF,
7232 TREE_TYPE (*expr_p),
7233 TREE_OPERAND (*expr_p, 0),
7234 build_int_cst (saved_ptr_type, 0));
7235 TREE_THIS_VOLATILE (*expr_p) = volatilep;
7236 TREE_THIS_NOTRAP (*expr_p) = notrap;
7237 ret = GS_OK;
7238 break;
7241 /* We arrive here through the various re-gimplifcation paths. */
7242 case MEM_REF:
7243 /* First try re-folding the whole thing. */
7244 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
7245 TREE_OPERAND (*expr_p, 0),
7246 TREE_OPERAND (*expr_p, 1));
7247 if (tmp)
7249 *expr_p = tmp;
7250 recalculate_side_effects (*expr_p);
7251 ret = GS_OK;
7252 break;
7254 /* Avoid re-gimplifying the address operand if it is already
7255 in suitable form. Re-gimplifying would mark the address
7256 operand addressable. Always gimplify when not in SSA form
7257 as we still may have to gimplify decls with value-exprs. */
7258 if (!gimplify_ctxp || !gimplify_ctxp->into_ssa
7259 || !is_gimple_mem_ref_addr (TREE_OPERAND (*expr_p, 0)))
7261 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7262 is_gimple_mem_ref_addr, fb_rvalue);
7263 if (ret == GS_ERROR)
7264 break;
7266 recalculate_side_effects (*expr_p);
7267 ret = GS_ALL_DONE;
7268 break;
7270 /* Constants need not be gimplified. */
7271 case INTEGER_CST:
7272 case REAL_CST:
7273 case FIXED_CST:
7274 case STRING_CST:
7275 case COMPLEX_CST:
7276 case VECTOR_CST:
7277 ret = GS_ALL_DONE;
7278 break;
7280 case CONST_DECL:
7281 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7282 CONST_DECL node. Otherwise the decl is replaceable by its
7283 value. */
7284 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7285 if (fallback & fb_lvalue)
7286 ret = GS_ALL_DONE;
7287 else
7289 *expr_p = DECL_INITIAL (*expr_p);
7290 ret = GS_OK;
7292 break;
7294 case DECL_EXPR:
7295 ret = gimplify_decl_expr (expr_p, pre_p);
7296 break;
7298 case BIND_EXPR:
7299 ret = gimplify_bind_expr (expr_p, pre_p);
7300 break;
7302 case LOOP_EXPR:
7303 ret = gimplify_loop_expr (expr_p, pre_p);
7304 break;
7306 case SWITCH_EXPR:
7307 ret = gimplify_switch_expr (expr_p, pre_p);
7308 break;
7310 case EXIT_EXPR:
7311 ret = gimplify_exit_expr (expr_p);
7312 break;
7314 case GOTO_EXPR:
7315 /* If the target is not LABEL, then it is a computed jump
7316 and the target needs to be gimplified. */
7317 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
7319 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
7320 NULL, is_gimple_val, fb_rvalue);
7321 if (ret == GS_ERROR)
7322 break;
7324 gimplify_seq_add_stmt (pre_p,
7325 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
7326 ret = GS_ALL_DONE;
7327 break;
7329 case PREDICT_EXPR:
7330 gimplify_seq_add_stmt (pre_p,
7331 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
7332 PREDICT_EXPR_OUTCOME (*expr_p)));
7333 ret = GS_ALL_DONE;
7334 break;
7336 case LABEL_EXPR:
7337 ret = GS_ALL_DONE;
7338 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
7339 == current_function_decl);
7340 gimplify_seq_add_stmt (pre_p,
7341 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
7342 break;
7344 case CASE_LABEL_EXPR:
7345 ret = gimplify_case_label_expr (expr_p, pre_p);
7346 break;
7348 case RETURN_EXPR:
7349 ret = gimplify_return_expr (*expr_p, pre_p);
7350 break;
7352 case CONSTRUCTOR:
7353 /* Don't reduce this in place; let gimplify_init_constructor work its
7354 magic. Buf if we're just elaborating this for side effects, just
7355 gimplify any element that has side-effects. */
7356 if (fallback == fb_none)
7358 unsigned HOST_WIDE_INT ix;
7359 tree val;
7360 tree temp = NULL_TREE;
7361 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7362 if (TREE_SIDE_EFFECTS (val))
7363 append_to_statement_list (val, &temp);
7365 *expr_p = temp;
7366 ret = temp ? GS_OK : GS_ALL_DONE;
7368 /* C99 code may assign to an array in a constructed
7369 structure or union, and this has undefined behavior only
7370 on execution, so create a temporary if an lvalue is
7371 required. */
7372 else if (fallback == fb_lvalue)
7374 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7375 mark_addressable (*expr_p);
7376 ret = GS_OK;
7378 else
7379 ret = GS_ALL_DONE;
7380 break;
7382 /* The following are special cases that are not handled by the
7383 original GIMPLE grammar. */
7385 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7386 eliminated. */
7387 case SAVE_EXPR:
7388 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7389 break;
7391 case BIT_FIELD_REF:
7393 enum gimplify_status r0, r1, r2;
7395 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7396 post_p, is_gimple_lvalue, fb_either);
7397 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7398 post_p, is_gimple_val, fb_rvalue);
7399 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7400 post_p, is_gimple_val, fb_rvalue);
7401 recalculate_side_effects (*expr_p);
7403 ret = MIN (r0, MIN (r1, r2));
7405 break;
7407 case TARGET_MEM_REF:
7409 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7411 if (TMR_BASE (*expr_p))
7412 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7413 post_p, is_gimple_mem_ref_addr, fb_either);
7414 if (TMR_INDEX (*expr_p))
7415 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7416 post_p, is_gimple_val, fb_rvalue);
7417 if (TMR_INDEX2 (*expr_p))
7418 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7419 post_p, is_gimple_val, fb_rvalue);
7420 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7421 ret = MIN (r0, r1);
7423 break;
7425 case NON_LVALUE_EXPR:
7426 /* This should have been stripped above. */
7427 gcc_unreachable ();
7429 case ASM_EXPR:
7430 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7431 break;
7433 case TRY_FINALLY_EXPR:
7434 case TRY_CATCH_EXPR:
7436 gimple_seq eval, cleanup;
7437 gimple try_;
7439 eval = cleanup = NULL;
7440 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7441 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7442 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7443 if (gimple_seq_empty_p (cleanup))
7445 gimple_seq_add_seq (pre_p, eval);
7446 ret = GS_ALL_DONE;
7447 break;
7449 try_ = gimple_build_try (eval, cleanup,
7450 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7451 ? GIMPLE_TRY_FINALLY
7452 : GIMPLE_TRY_CATCH);
7453 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7454 gimple_try_set_catch_is_cleanup (try_,
7455 TRY_CATCH_IS_CLEANUP (*expr_p));
7456 gimplify_seq_add_stmt (pre_p, try_);
7457 ret = GS_ALL_DONE;
7458 break;
7461 case CLEANUP_POINT_EXPR:
7462 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7463 break;
7465 case TARGET_EXPR:
7466 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7467 break;
7469 case CATCH_EXPR:
7471 gimple c;
7472 gimple_seq handler = NULL;
7473 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7474 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7475 gimplify_seq_add_stmt (pre_p, c);
7476 ret = GS_ALL_DONE;
7477 break;
7480 case EH_FILTER_EXPR:
7482 gimple ehf;
7483 gimple_seq failure = NULL;
7485 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7486 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7487 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7488 gimplify_seq_add_stmt (pre_p, ehf);
7489 ret = GS_ALL_DONE;
7490 break;
7493 case OBJ_TYPE_REF:
7495 enum gimplify_status r0, r1;
7496 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7497 post_p, is_gimple_val, fb_rvalue);
7498 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7499 post_p, is_gimple_val, fb_rvalue);
7500 TREE_SIDE_EFFECTS (*expr_p) = 0;
7501 ret = MIN (r0, r1);
7503 break;
7505 case LABEL_DECL:
7506 /* We get here when taking the address of a label. We mark
7507 the label as "forced"; meaning it can never be removed and
7508 it is a potential target for any computed goto. */
7509 FORCED_LABEL (*expr_p) = 1;
7510 ret = GS_ALL_DONE;
7511 break;
7513 case STATEMENT_LIST:
7514 ret = gimplify_statement_list (expr_p, pre_p);
7515 break;
7517 case WITH_SIZE_EXPR:
7519 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7520 post_p == &internal_post ? NULL : post_p,
7521 gimple_test_f, fallback);
7522 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7523 is_gimple_val, fb_rvalue);
7524 ret = GS_ALL_DONE;
7526 break;
7528 case VAR_DECL:
7529 case PARM_DECL:
7530 ret = gimplify_var_or_parm_decl (expr_p);
7531 break;
7533 case RESULT_DECL:
7534 /* When within an OpenMP context, notice uses of variables. */
7535 if (gimplify_omp_ctxp)
7536 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7537 ret = GS_ALL_DONE;
7538 break;
7540 case SSA_NAME:
7541 /* Allow callbacks into the gimplifier during optimization. */
7542 ret = GS_ALL_DONE;
7543 break;
7545 case OMP_PARALLEL:
7546 gimplify_omp_parallel (expr_p, pre_p);
7547 ret = GS_ALL_DONE;
7548 break;
7550 case OMP_TASK:
7551 gimplify_omp_task (expr_p, pre_p);
7552 ret = GS_ALL_DONE;
7553 break;
7555 case OMP_FOR:
7556 ret = gimplify_omp_for (expr_p, pre_p);
7557 break;
7559 case OMP_SECTIONS:
7560 case OMP_SINGLE:
7561 gimplify_omp_workshare (expr_p, pre_p);
7562 ret = GS_ALL_DONE;
7563 break;
7565 case OMP_SECTION:
7566 case OMP_MASTER:
7567 case OMP_ORDERED:
7568 case OMP_CRITICAL:
7570 gimple_seq body = NULL;
7571 gimple g;
7573 gimplify_and_add (OMP_BODY (*expr_p), &body);
7574 switch (TREE_CODE (*expr_p))
7576 case OMP_SECTION:
7577 g = gimple_build_omp_section (body);
7578 break;
7579 case OMP_MASTER:
7580 g = gimple_build_omp_master (body);
7581 break;
7582 case OMP_ORDERED:
7583 g = gimple_build_omp_ordered (body);
7584 break;
7585 case OMP_CRITICAL:
7586 g = gimple_build_omp_critical (body,
7587 OMP_CRITICAL_NAME (*expr_p));
7588 break;
7589 default:
7590 gcc_unreachable ();
7592 gimplify_seq_add_stmt (pre_p, g);
7593 ret = GS_ALL_DONE;
7594 break;
7597 case OMP_ATOMIC:
7598 case OMP_ATOMIC_READ:
7599 case OMP_ATOMIC_CAPTURE_OLD:
7600 case OMP_ATOMIC_CAPTURE_NEW:
7601 ret = gimplify_omp_atomic (expr_p, pre_p);
7602 break;
7604 case TRANSACTION_EXPR:
7605 ret = gimplify_transaction (expr_p, pre_p);
7606 break;
7608 case TRUTH_AND_EXPR:
7609 case TRUTH_OR_EXPR:
7610 case TRUTH_XOR_EXPR:
7612 tree orig_type = TREE_TYPE (*expr_p);
7613 tree new_type, xop0, xop1;
7614 *expr_p = gimple_boolify (*expr_p);
7615 new_type = TREE_TYPE (*expr_p);
7616 if (!useless_type_conversion_p (orig_type, new_type))
7618 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7619 ret = GS_OK;
7620 break;
7623 /* Boolified binary truth expressions are semantically equivalent
7624 to bitwise binary expressions. Canonicalize them to the
7625 bitwise variant. */
7626 switch (TREE_CODE (*expr_p))
7628 case TRUTH_AND_EXPR:
7629 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7630 break;
7631 case TRUTH_OR_EXPR:
7632 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7633 break;
7634 case TRUTH_XOR_EXPR:
7635 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7636 break;
7637 default:
7638 break;
7640 /* Now make sure that operands have compatible type to
7641 expression's new_type. */
7642 xop0 = TREE_OPERAND (*expr_p, 0);
7643 xop1 = TREE_OPERAND (*expr_p, 1);
7644 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7645 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7646 new_type,
7647 xop0);
7648 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7649 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7650 new_type,
7651 xop1);
7652 /* Continue classified as tcc_binary. */
7653 goto expr_2;
7656 case FMA_EXPR:
7657 case VEC_PERM_EXPR:
7658 /* Classified as tcc_expression. */
7659 goto expr_3;
7661 case POINTER_PLUS_EXPR:
7663 enum gimplify_status r0, r1;
7664 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7665 post_p, is_gimple_val, fb_rvalue);
7666 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7667 post_p, is_gimple_val, fb_rvalue);
7668 recalculate_side_effects (*expr_p);
7669 ret = MIN (r0, r1);
7670 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7671 after gimplifying operands - this is similar to how
7672 it would be folding all gimplified stmts on creation
7673 to have them canonicalized, which is what we eventually
7674 should do anyway. */
7675 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7676 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7678 *expr_p = build_fold_addr_expr_with_type_loc
7679 (input_location,
7680 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7681 TREE_OPERAND (*expr_p, 0),
7682 fold_convert (ptr_type_node,
7683 TREE_OPERAND (*expr_p, 1))),
7684 TREE_TYPE (*expr_p));
7685 ret = MIN (ret, GS_OK);
7687 break;
7690 default:
7691 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7693 case tcc_comparison:
7694 /* Handle comparison of objects of non scalar mode aggregates
7695 with a call to memcmp. It would be nice to only have to do
7696 this for variable-sized objects, but then we'd have to allow
7697 the same nest of reference nodes we allow for MODIFY_EXPR and
7698 that's too complex.
7700 Compare scalar mode aggregates as scalar mode values. Using
7701 memcmp for them would be very inefficient at best, and is
7702 plain wrong if bitfields are involved. */
7704 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7706 /* Vector comparisons need no boolification. */
7707 if (TREE_CODE (type) == VECTOR_TYPE)
7708 goto expr_2;
7709 else if (!AGGREGATE_TYPE_P (type))
7711 tree org_type = TREE_TYPE (*expr_p);
7712 *expr_p = gimple_boolify (*expr_p);
7713 if (!useless_type_conversion_p (org_type,
7714 TREE_TYPE (*expr_p)))
7716 *expr_p = fold_convert_loc (input_location,
7717 org_type, *expr_p);
7718 ret = GS_OK;
7720 else
7721 goto expr_2;
7723 else if (TYPE_MODE (type) != BLKmode)
7724 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7725 else
7726 ret = gimplify_variable_sized_compare (expr_p);
7728 break;
7731 /* If *EXPR_P does not need to be special-cased, handle it
7732 according to its class. */
7733 case tcc_unary:
7734 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7735 post_p, is_gimple_val, fb_rvalue);
7736 break;
7738 case tcc_binary:
7739 expr_2:
7741 enum gimplify_status r0, r1;
7743 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7744 post_p, is_gimple_val, fb_rvalue);
7745 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7746 post_p, is_gimple_val, fb_rvalue);
7748 ret = MIN (r0, r1);
7749 break;
7752 expr_3:
7754 enum gimplify_status r0, r1, r2;
7756 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7757 post_p, is_gimple_val, fb_rvalue);
7758 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7759 post_p, is_gimple_val, fb_rvalue);
7760 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7761 post_p, is_gimple_val, fb_rvalue);
7763 ret = MIN (MIN (r0, r1), r2);
7764 break;
7767 case tcc_declaration:
7768 case tcc_constant:
7769 ret = GS_ALL_DONE;
7770 goto dont_recalculate;
7772 default:
7773 gcc_unreachable ();
7776 recalculate_side_effects (*expr_p);
7778 dont_recalculate:
7779 break;
7782 gcc_assert (*expr_p || ret != GS_OK);
7784 while (ret == GS_OK);
7786 /* If we encountered an error_mark somewhere nested inside, either
7787 stub out the statement or propagate the error back out. */
7788 if (ret == GS_ERROR)
7790 if (is_statement)
7791 *expr_p = NULL;
7792 goto out;
7795 /* This was only valid as a return value from the langhook, which
7796 we handled. Make sure it doesn't escape from any other context. */
7797 gcc_assert (ret != GS_UNHANDLED);
7799 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7801 /* We aren't looking for a value, and we don't have a valid
7802 statement. If it doesn't have side-effects, throw it away. */
7803 if (!TREE_SIDE_EFFECTS (*expr_p))
7804 *expr_p = NULL;
7805 else if (!TREE_THIS_VOLATILE (*expr_p))
7807 /* This is probably a _REF that contains something nested that
7808 has side effects. Recurse through the operands to find it. */
7809 enum tree_code code = TREE_CODE (*expr_p);
7811 switch (code)
7813 case COMPONENT_REF:
7814 case REALPART_EXPR:
7815 case IMAGPART_EXPR:
7816 case VIEW_CONVERT_EXPR:
7817 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7818 gimple_test_f, fallback);
7819 break;
7821 case ARRAY_REF:
7822 case ARRAY_RANGE_REF:
7823 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7824 gimple_test_f, fallback);
7825 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7826 gimple_test_f, fallback);
7827 break;
7829 default:
7830 /* Anything else with side-effects must be converted to
7831 a valid statement before we get here. */
7832 gcc_unreachable ();
7835 *expr_p = NULL;
7837 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7838 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7840 /* Historically, the compiler has treated a bare reference
7841 to a non-BLKmode volatile lvalue as forcing a load. */
7842 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7844 /* Normally, we do not want to create a temporary for a
7845 TREE_ADDRESSABLE type because such a type should not be
7846 copied by bitwise-assignment. However, we make an
7847 exception here, as all we are doing here is ensuring that
7848 we read the bytes that make up the type. We use
7849 create_tmp_var_raw because create_tmp_var will abort when
7850 given a TREE_ADDRESSABLE type. */
7851 tree tmp = create_tmp_var_raw (type, "vol");
7852 gimple_add_tmp_var (tmp);
7853 gimplify_assign (tmp, *expr_p, pre_p);
7854 *expr_p = NULL;
7856 else
7857 /* We can't do anything useful with a volatile reference to
7858 an incomplete type, so just throw it away. Likewise for
7859 a BLKmode type, since any implicit inner load should
7860 already have been turned into an explicit one by the
7861 gimplification process. */
7862 *expr_p = NULL;
7865 /* If we are gimplifying at the statement level, we're done. Tack
7866 everything together and return. */
7867 if (fallback == fb_none || is_statement)
7869 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7870 it out for GC to reclaim it. */
7871 *expr_p = NULL_TREE;
7873 if (!gimple_seq_empty_p (internal_pre)
7874 || !gimple_seq_empty_p (internal_post))
7876 gimplify_seq_add_seq (&internal_pre, internal_post);
7877 gimplify_seq_add_seq (pre_p, internal_pre);
7880 /* The result of gimplifying *EXPR_P is going to be the last few
7881 statements in *PRE_P and *POST_P. Add location information
7882 to all the statements that were added by the gimplification
7883 helpers. */
7884 if (!gimple_seq_empty_p (*pre_p))
7885 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7887 if (!gimple_seq_empty_p (*post_p))
7888 annotate_all_with_location_after (*post_p, post_last_gsi,
7889 input_location);
7891 goto out;
7894 #ifdef ENABLE_GIMPLE_CHECKING
7895 if (*expr_p)
7897 enum tree_code code = TREE_CODE (*expr_p);
7898 /* These expressions should already be in gimple IR form. */
7899 gcc_assert (code != MODIFY_EXPR
7900 && code != ASM_EXPR
7901 && code != BIND_EXPR
7902 && code != CATCH_EXPR
7903 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7904 && code != EH_FILTER_EXPR
7905 && code != GOTO_EXPR
7906 && code != LABEL_EXPR
7907 && code != LOOP_EXPR
7908 && code != SWITCH_EXPR
7909 && code != TRY_FINALLY_EXPR
7910 && code != OMP_CRITICAL
7911 && code != OMP_FOR
7912 && code != OMP_MASTER
7913 && code != OMP_ORDERED
7914 && code != OMP_PARALLEL
7915 && code != OMP_SECTIONS
7916 && code != OMP_SECTION
7917 && code != OMP_SINGLE);
7919 #endif
7921 /* Otherwise we're gimplifying a subexpression, so the resulting
7922 value is interesting. If it's a valid operand that matches
7923 GIMPLE_TEST_F, we're done. Unless we are handling some
7924 post-effects internally; if that's the case, we need to copy into
7925 a temporary before adding the post-effects to POST_P. */
7926 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7927 goto out;
7929 /* Otherwise, we need to create a new temporary for the gimplified
7930 expression. */
7932 /* We can't return an lvalue if we have an internal postqueue. The
7933 object the lvalue refers to would (probably) be modified by the
7934 postqueue; we need to copy the value out first, which means an
7935 rvalue. */
7936 if ((fallback & fb_lvalue)
7937 && gimple_seq_empty_p (internal_post)
7938 && is_gimple_addressable (*expr_p))
7940 /* An lvalue will do. Take the address of the expression, store it
7941 in a temporary, and replace the expression with an INDIRECT_REF of
7942 that temporary. */
7943 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7944 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7945 *expr_p = build_simple_mem_ref (tmp);
7947 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7949 /* An rvalue will do. Assign the gimplified expression into a
7950 new temporary TMP and replace the original expression with
7951 TMP. First, make sure that the expression has a type so that
7952 it can be assigned into a temporary. */
7953 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7954 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7956 else
7958 #ifdef ENABLE_GIMPLE_CHECKING
7959 if (!(fallback & fb_mayfail))
7961 fprintf (stderr, "gimplification failed:\n");
7962 print_generic_expr (stderr, *expr_p, 0);
7963 debug_tree (*expr_p);
7964 internal_error ("gimplification failed");
7966 #endif
7967 gcc_assert (fallback & fb_mayfail);
7969 /* If this is an asm statement, and the user asked for the
7970 impossible, don't die. Fail and let gimplify_asm_expr
7971 issue an error. */
7972 ret = GS_ERROR;
7973 goto out;
7976 /* Make sure the temporary matches our predicate. */
7977 gcc_assert ((*gimple_test_f) (*expr_p));
7979 if (!gimple_seq_empty_p (internal_post))
7981 annotate_all_with_location (internal_post, input_location);
7982 gimplify_seq_add_seq (pre_p, internal_post);
7985 out:
7986 input_location = saved_location;
7987 return ret;
7990 /* Look through TYPE for variable-sized objects and gimplify each such
7991 size that we find. Add to LIST_P any statements generated. */
7993 void
7994 gimplify_type_sizes (tree type, gimple_seq *list_p)
7996 tree field, t;
7998 if (type == NULL || type == error_mark_node)
7999 return;
8001 /* We first do the main variant, then copy into any other variants. */
8002 type = TYPE_MAIN_VARIANT (type);
8004 /* Avoid infinite recursion. */
8005 if (TYPE_SIZES_GIMPLIFIED (type))
8006 return;
8008 TYPE_SIZES_GIMPLIFIED (type) = 1;
8010 switch (TREE_CODE (type))
8012 case INTEGER_TYPE:
8013 case ENUMERAL_TYPE:
8014 case BOOLEAN_TYPE:
8015 case REAL_TYPE:
8016 case FIXED_POINT_TYPE:
8017 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
8018 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
8020 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8022 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
8023 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
8025 break;
8027 case ARRAY_TYPE:
8028 /* These types may not have declarations, so handle them here. */
8029 gimplify_type_sizes (TREE_TYPE (type), list_p);
8030 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
8031 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
8032 with assigned stack slots, for -O1+ -g they should be tracked
8033 by VTA. */
8034 if (!(TYPE_NAME (type)
8035 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
8036 && DECL_IGNORED_P (TYPE_NAME (type)))
8037 && TYPE_DOMAIN (type)
8038 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
8040 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
8041 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8042 DECL_IGNORED_P (t) = 0;
8043 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
8044 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8045 DECL_IGNORED_P (t) = 0;
8047 break;
8049 case RECORD_TYPE:
8050 case UNION_TYPE:
8051 case QUAL_UNION_TYPE:
8052 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8053 if (TREE_CODE (field) == FIELD_DECL)
8055 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
8056 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
8057 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
8058 gimplify_type_sizes (TREE_TYPE (field), list_p);
8060 break;
8062 case POINTER_TYPE:
8063 case REFERENCE_TYPE:
8064 /* We used to recurse on the pointed-to type here, which turned out to
8065 be incorrect because its definition might refer to variables not
8066 yet initialized at this point if a forward declaration is involved.
8068 It was actually useful for anonymous pointed-to types to ensure
8069 that the sizes evaluation dominates every possible later use of the
8070 values. Restricting to such types here would be safe since there
8071 is no possible forward declaration around, but would introduce an
8072 undesirable middle-end semantic to anonymity. We then defer to
8073 front-ends the responsibility of ensuring that the sizes are
8074 evaluated both early and late enough, e.g. by attaching artificial
8075 type declarations to the tree. */
8076 break;
8078 default:
8079 break;
8082 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
8083 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
8085 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8087 TYPE_SIZE (t) = TYPE_SIZE (type);
8088 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
8089 TYPE_SIZES_GIMPLIFIED (t) = 1;
8093 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
8094 a size or position, has had all of its SAVE_EXPRs evaluated.
8095 We add any required statements to *STMT_P. */
8097 void
8098 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
8100 tree expr = *expr_p;
8102 /* We don't do anything if the value isn't there, is constant, or contains
8103 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
8104 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
8105 will want to replace it with a new variable, but that will cause problems
8106 if this type is from outside the function. It's OK to have that here. */
8107 if (expr == NULL_TREE || TREE_CONSTANT (expr)
8108 || TREE_CODE (expr) == VAR_DECL
8109 || CONTAINS_PLACEHOLDER_P (expr))
8110 return;
8112 *expr_p = unshare_expr (expr);
8114 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
8115 expr = *expr_p;
8118 /* Gimplify the body of statements of FNDECL and return a GIMPLE_BIND node
8119 containing the sequence of corresponding GIMPLE statements. If DO_PARMS
8120 is true, also gimplify the parameters. */
8122 gimple
8123 gimplify_body (tree fndecl, bool do_parms)
8125 location_t saved_location = input_location;
8126 gimple_seq parm_stmts, seq;
8127 gimple outer_bind;
8128 struct gimplify_ctx gctx;
8129 struct cgraph_node *cgn;
8131 timevar_push (TV_TREE_GIMPLIFY);
8133 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
8134 gimplification. */
8135 default_rtl_profile ();
8137 gcc_assert (gimplify_ctxp == NULL);
8138 push_gimplify_context (&gctx);
8140 /* Unshare most shared trees in the body and in that of any nested functions.
8141 It would seem we don't have to do this for nested functions because
8142 they are supposed to be output and then the outer function gimplified
8143 first, but the g++ front end doesn't always do it that way. */
8144 unshare_body (fndecl);
8145 unvisit_body (fndecl);
8147 cgn = cgraph_get_node (fndecl);
8148 if (cgn && cgn->origin)
8149 nonlocal_vlas = pointer_set_create ();
8151 /* Make sure input_location isn't set to something weird. */
8152 input_location = DECL_SOURCE_LOCATION (fndecl);
8154 /* Resolve callee-copies. This has to be done before processing
8155 the body so that DECL_VALUE_EXPR gets processed correctly. */
8156 parm_stmts = do_parms ? gimplify_parameters () : NULL;
8158 /* Gimplify the function's body. */
8159 seq = NULL;
8160 gimplify_stmt (&DECL_SAVED_TREE (fndecl), &seq);
8161 outer_bind = gimple_seq_first_stmt (seq);
8162 if (!outer_bind)
8164 outer_bind = gimple_build_nop ();
8165 gimplify_seq_add_stmt (&seq, outer_bind);
8168 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
8169 not the case, wrap everything in a GIMPLE_BIND to make it so. */
8170 if (gimple_code (outer_bind) == GIMPLE_BIND
8171 && gimple_seq_first (seq) == gimple_seq_last (seq))
8173 else
8174 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
8176 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8178 /* If we had callee-copies statements, insert them at the beginning
8179 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8180 if (!gimple_seq_empty_p (parm_stmts))
8182 tree parm;
8184 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
8185 gimple_bind_set_body (outer_bind, parm_stmts);
8187 for (parm = DECL_ARGUMENTS (current_function_decl);
8188 parm; parm = DECL_CHAIN (parm))
8189 if (DECL_HAS_VALUE_EXPR_P (parm))
8191 DECL_HAS_VALUE_EXPR_P (parm) = 0;
8192 DECL_IGNORED_P (parm) = 0;
8196 if (nonlocal_vlas)
8198 pointer_set_destroy (nonlocal_vlas);
8199 nonlocal_vlas = NULL;
8202 pop_gimplify_context (outer_bind);
8203 gcc_assert (gimplify_ctxp == NULL);
8205 if (!seen_error ())
8206 verify_gimple_in_seq (gimple_bind_body (outer_bind));
8208 timevar_pop (TV_TREE_GIMPLIFY);
8209 input_location = saved_location;
8211 return outer_bind;
8214 typedef char *char_p; /* For DEF_VEC_P. */
8215 DEF_VEC_P(char_p);
8216 DEF_VEC_ALLOC_P(char_p,heap);
8218 /* Return whether we should exclude FNDECL from instrumentation. */
8220 static bool
8221 flag_instrument_functions_exclude_p (tree fndecl)
8223 VEC(char_p,heap) *vec;
8225 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_functions;
8226 if (VEC_length (char_p, vec) > 0)
8228 const char *name;
8229 int i;
8230 char *s;
8232 name = lang_hooks.decl_printable_name (fndecl, 0);
8233 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8234 if (strstr (name, s) != NULL)
8235 return true;
8238 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_files;
8239 if (VEC_length (char_p, vec) > 0)
8241 const char *name;
8242 int i;
8243 char *s;
8245 name = DECL_SOURCE_FILE (fndecl);
8246 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8247 if (strstr (name, s) != NULL)
8248 return true;
8251 return false;
8254 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8255 node for the function we want to gimplify.
8257 Return the sequence of GIMPLE statements corresponding to the body
8258 of FNDECL. */
8260 void
8261 gimplify_function_tree (tree fndecl)
8263 tree oldfn, parm, ret;
8264 gimple_seq seq;
8265 gimple bind;
8267 gcc_assert (!gimple_body (fndecl));
8269 oldfn = current_function_decl;
8270 current_function_decl = fndecl;
8271 if (DECL_STRUCT_FUNCTION (fndecl))
8272 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
8273 else
8274 push_struct_function (fndecl);
8276 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
8278 /* Preliminarily mark non-addressed complex variables as eligible
8279 for promotion to gimple registers. We'll transform their uses
8280 as we find them. */
8281 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
8282 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
8283 && !TREE_THIS_VOLATILE (parm)
8284 && !needs_to_live_in_memory (parm))
8285 DECL_GIMPLE_REG_P (parm) = 1;
8288 ret = DECL_RESULT (fndecl);
8289 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
8290 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
8291 && !needs_to_live_in_memory (ret))
8292 DECL_GIMPLE_REG_P (ret) = 1;
8294 bind = gimplify_body (fndecl, true);
8296 /* The tree body of the function is no longer needed, replace it
8297 with the new GIMPLE body. */
8298 seq = NULL;
8299 gimple_seq_add_stmt (&seq, bind);
8300 gimple_set_body (fndecl, seq);
8302 /* If we're instrumenting function entry/exit, then prepend the call to
8303 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8304 catch the exit hook. */
8305 /* ??? Add some way to ignore exceptions for this TFE. */
8306 if (flag_instrument_function_entry_exit
8307 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
8308 && !flag_instrument_functions_exclude_p (fndecl))
8310 tree x;
8311 gimple new_bind;
8312 gimple tf;
8313 gimple_seq cleanup = NULL, body = NULL;
8314 tree tmp_var;
8315 gimple call;
8317 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8318 call = gimple_build_call (x, 1, integer_zero_node);
8319 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8320 gimple_call_set_lhs (call, tmp_var);
8321 gimplify_seq_add_stmt (&cleanup, call);
8322 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8323 call = gimple_build_call (x, 2,
8324 build_fold_addr_expr (current_function_decl),
8325 tmp_var);
8326 gimplify_seq_add_stmt (&cleanup, call);
8327 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8329 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8330 call = gimple_build_call (x, 1, integer_zero_node);
8331 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8332 gimple_call_set_lhs (call, tmp_var);
8333 gimplify_seq_add_stmt (&body, call);
8334 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8335 call = gimple_build_call (x, 2,
8336 build_fold_addr_expr (current_function_decl),
8337 tmp_var);
8338 gimplify_seq_add_stmt (&body, call);
8339 gimplify_seq_add_stmt (&body, tf);
8340 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8341 /* Clear the block for BIND, since it is no longer directly inside
8342 the function, but within a try block. */
8343 gimple_bind_set_block (bind, NULL);
8345 /* Replace the current function body with the body
8346 wrapped in the try/finally TF. */
8347 seq = NULL;
8348 gimple_seq_add_stmt (&seq, new_bind);
8349 gimple_set_body (fndecl, seq);
8352 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8353 cfun->curr_properties = PROP_gimple_any;
8355 current_function_decl = oldfn;
8356 pop_cfun ();
8359 /* Some transformations like inlining may invalidate the GIMPLE form
8360 for operands. This function traverses all the operands in STMT and
8361 gimplifies anything that is not a valid gimple operand. Any new
8362 GIMPLE statements are inserted before *GSI_P. */
8364 void
8365 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8367 size_t i, num_ops;
8368 tree orig_lhs = NULL_TREE, lhs, t;
8369 gimple_seq pre = NULL;
8370 gimple post_stmt = NULL;
8371 struct gimplify_ctx gctx;
8373 push_gimplify_context (&gctx);
8374 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8376 switch (gimple_code (stmt))
8378 case GIMPLE_COND:
8379 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8380 is_gimple_val, fb_rvalue);
8381 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8382 is_gimple_val, fb_rvalue);
8383 break;
8384 case GIMPLE_SWITCH:
8385 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8386 is_gimple_val, fb_rvalue);
8387 break;
8388 case GIMPLE_OMP_ATOMIC_LOAD:
8389 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8390 is_gimple_val, fb_rvalue);
8391 break;
8392 case GIMPLE_ASM:
8394 size_t i, noutputs = gimple_asm_noutputs (stmt);
8395 const char *constraint, **oconstraints;
8396 bool allows_mem, allows_reg, is_inout;
8398 oconstraints
8399 = (const char **) alloca ((noutputs) * sizeof (const char *));
8400 for (i = 0; i < noutputs; i++)
8402 tree op = gimple_asm_output_op (stmt, i);
8403 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8404 oconstraints[i] = constraint;
8405 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8406 &allows_reg, &is_inout);
8407 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8408 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8409 fb_lvalue | fb_mayfail);
8411 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8413 tree op = gimple_asm_input_op (stmt, i);
8414 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8415 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8416 oconstraints, &allows_mem, &allows_reg);
8417 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8418 allows_reg = 0;
8419 if (!allows_reg && allows_mem)
8420 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8421 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8422 else
8423 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8424 is_gimple_asm_val, fb_rvalue);
8427 break;
8428 default:
8429 /* NOTE: We start gimplifying operands from last to first to
8430 make sure that side-effects on the RHS of calls, assignments
8431 and ASMs are executed before the LHS. The ordering is not
8432 important for other statements. */
8433 num_ops = gimple_num_ops (stmt);
8434 orig_lhs = gimple_get_lhs (stmt);
8435 for (i = num_ops; i > 0; i--)
8437 tree op = gimple_op (stmt, i - 1);
8438 if (op == NULL_TREE)
8439 continue;
8440 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8441 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8442 else if (i == 2
8443 && is_gimple_assign (stmt)
8444 && num_ops == 2
8445 && get_gimple_rhs_class (gimple_expr_code (stmt))
8446 == GIMPLE_SINGLE_RHS)
8447 gimplify_expr (&op, &pre, NULL,
8448 rhs_predicate_for (gimple_assign_lhs (stmt)),
8449 fb_rvalue);
8450 else if (i == 2 && is_gimple_call (stmt))
8452 if (TREE_CODE (op) == FUNCTION_DECL)
8453 continue;
8454 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8456 else
8457 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8458 gimple_set_op (stmt, i - 1, op);
8461 lhs = gimple_get_lhs (stmt);
8462 /* If the LHS changed it in a way that requires a simple RHS,
8463 create temporary. */
8464 if (lhs && !is_gimple_reg (lhs))
8466 bool need_temp = false;
8468 if (is_gimple_assign (stmt)
8469 && num_ops == 2
8470 && get_gimple_rhs_class (gimple_expr_code (stmt))
8471 == GIMPLE_SINGLE_RHS)
8472 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8473 rhs_predicate_for (gimple_assign_lhs (stmt)),
8474 fb_rvalue);
8475 else if (is_gimple_reg (lhs))
8477 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8479 if (is_gimple_call (stmt))
8481 i = gimple_call_flags (stmt);
8482 if ((i & ECF_LOOPING_CONST_OR_PURE)
8483 || !(i & (ECF_CONST | ECF_PURE)))
8484 need_temp = true;
8486 if (stmt_can_throw_internal (stmt))
8487 need_temp = true;
8490 else
8492 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8493 need_temp = true;
8494 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8496 if (is_gimple_call (stmt))
8498 tree fndecl = gimple_call_fndecl (stmt);
8500 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8501 && !(fndecl && DECL_RESULT (fndecl)
8502 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8503 need_temp = true;
8505 else
8506 need_temp = true;
8509 if (need_temp)
8511 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8513 if (TREE_CODE (orig_lhs) == SSA_NAME)
8514 orig_lhs = SSA_NAME_VAR (orig_lhs);
8516 if (gimple_in_ssa_p (cfun))
8517 temp = make_ssa_name (temp, NULL);
8518 gimple_set_lhs (stmt, temp);
8519 post_stmt = gimple_build_assign (lhs, temp);
8520 if (TREE_CODE (lhs) == SSA_NAME)
8521 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8524 break;
8527 if (gimple_referenced_vars (cfun))
8528 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
8529 add_referenced_var (t);
8531 if (!gimple_seq_empty_p (pre))
8533 if (gimple_in_ssa_p (cfun))
8535 gimple_stmt_iterator i;
8537 for (i = gsi_start (pre); !gsi_end_p (i); gsi_next (&i))
8539 tree lhs = gimple_get_lhs (gsi_stmt (i));
8540 if (lhs
8541 && TREE_CODE (lhs) != SSA_NAME
8542 && is_gimple_reg (lhs))
8543 mark_sym_for_renaming (lhs);
8546 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8548 if (post_stmt)
8549 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8551 pop_gimplify_context (NULL);
8554 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8555 the predicate that will hold for the result. If VAR is not NULL, make the
8556 base variable of the final destination be VAR if suitable. */
8558 tree
8559 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8560 gimple_predicate gimple_test_f, tree var)
8562 tree t;
8563 enum gimplify_status ret;
8564 struct gimplify_ctx gctx;
8566 *stmts = NULL;
8568 /* gimple_test_f might be more strict than is_gimple_val, make
8569 sure we pass both. Just checking gimple_test_f doesn't work
8570 because most gimple predicates do not work recursively. */
8571 if (is_gimple_val (expr)
8572 && (*gimple_test_f) (expr))
8573 return expr;
8575 push_gimplify_context (&gctx);
8576 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8577 gimplify_ctxp->allow_rhs_cond_expr = true;
8579 if (var)
8580 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8582 if (TREE_CODE (expr) != MODIFY_EXPR
8583 && TREE_TYPE (expr) == void_type_node)
8585 gimplify_and_add (expr, stmts);
8586 expr = NULL_TREE;
8588 else
8590 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8591 gcc_assert (ret != GS_ERROR);
8594 if (gimple_referenced_vars (cfun))
8595 for (t = gimplify_ctxp->temps; t ; t = DECL_CHAIN (t))
8596 add_referenced_var (t);
8598 if (!gimple_seq_empty_p (*stmts)
8599 && gimplify_ctxp->into_ssa)
8601 gimple_stmt_iterator i;
8603 for (i = gsi_start (*stmts); !gsi_end_p (i); gsi_next (&i))
8605 tree lhs = gimple_get_lhs (gsi_stmt (i));
8606 if (lhs
8607 && TREE_CODE (lhs) != SSA_NAME
8608 && is_gimple_reg (lhs))
8609 mark_sym_for_renaming (lhs);
8613 pop_gimplify_context (NULL);
8615 return expr;
8618 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8619 force the result to be either ssa_name or an invariant, otherwise
8620 just force it to be a rhs expression. If VAR is not NULL, make the
8621 base variable of the final destination be VAR if suitable. */
8623 tree
8624 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8626 return force_gimple_operand_1 (expr, stmts,
8627 simple ? is_gimple_val : is_gimple_reg_rhs,
8628 var);
8631 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8632 and VAR. If some statements are produced, emits them at GSI.
8633 If BEFORE is true. the statements are appended before GSI, otherwise
8634 they are appended after it. M specifies the way GSI moves after
8635 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8637 tree
8638 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8639 gimple_predicate gimple_test_f,
8640 tree var, bool before,
8641 enum gsi_iterator_update m)
8643 gimple_seq stmts;
8645 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8647 if (!gimple_seq_empty_p (stmts))
8649 if (before)
8650 gsi_insert_seq_before (gsi, stmts, m);
8651 else
8652 gsi_insert_seq_after (gsi, stmts, m);
8655 return expr;
8658 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8659 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8660 otherwise just force it to be a rhs expression. If some statements are
8661 produced, emits them at GSI. If BEFORE is true, the statements are
8662 appended before GSI, otherwise they are appended after it. M specifies
8663 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8664 are the usual values). */
8666 tree
8667 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8668 bool simple_p, tree var, bool before,
8669 enum gsi_iterator_update m)
8671 return force_gimple_operand_gsi_1 (gsi, expr,
8672 simple_p
8673 ? is_gimple_val : is_gimple_reg_rhs,
8674 var, before, m);
8678 #include "gt-gimplify.h"