* include/ext/array_allocator.h: Replace uses of
[official-gcc.git] / gcc / gimplify.c
blob8d555f833b9b60ce746508a5a99612da48a9891b
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 "ggc.h"
41 #include "diagnostic-core.h"
42 #include "target.h"
43 #include "pointer-set.h"
44 #include "splay-tree.h"
45 #include "vec.h"
46 #include "gimple.h"
48 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name */
49 #include "tree-pass.h" /* FIXME: only for PROP_gimple_any */
51 enum gimplify_omp_var_data
53 GOVD_SEEN = 1,
54 GOVD_EXPLICIT = 2,
55 GOVD_SHARED = 4,
56 GOVD_PRIVATE = 8,
57 GOVD_FIRSTPRIVATE = 16,
58 GOVD_LASTPRIVATE = 32,
59 GOVD_REDUCTION = 64,
60 GOVD_LOCAL = 128,
61 GOVD_DEBUG_PRIVATE = 256,
62 GOVD_PRIVATE_OUTER_REF = 512,
63 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
64 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
68 enum omp_region_type
70 ORT_WORKSHARE = 0,
71 ORT_PARALLEL = 2,
72 ORT_COMBINED_PARALLEL = 3,
73 ORT_TASK = 4,
74 ORT_UNTIED_TASK = 5
77 struct gimplify_omp_ctx
79 struct gimplify_omp_ctx *outer_context;
80 splay_tree variables;
81 struct pointer_set_t *privatized_types;
82 location_t location;
83 enum omp_clause_default_kind default_kind;
84 enum omp_region_type region_type;
87 static struct gimplify_ctx *gimplify_ctxp;
88 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
91 /* Formal (expression) temporary table handling: multiple occurrences of
92 the same scalar expression are evaluated into the same temporary. */
94 typedef struct gimple_temp_hash_elt
96 tree val; /* Key */
97 tree temp; /* Value */
98 } elt_t;
100 /* Forward declaration. */
101 static enum gimplify_status gimplify_compound_expr (tree *, gimple_seq *, bool);
103 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
104 form and we don't do any syntax checking. */
106 void
107 mark_addressable (tree x)
109 while (handled_component_p (x))
110 x = TREE_OPERAND (x, 0);
111 if (TREE_CODE (x) == MEM_REF
112 && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
113 x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
114 if (TREE_CODE (x) != VAR_DECL
115 && TREE_CODE (x) != PARM_DECL
116 && TREE_CODE (x) != RESULT_DECL)
117 return;
118 TREE_ADDRESSABLE (x) = 1;
120 /* Also mark the artificial SSA_NAME that points to the partition of X. */
121 if (TREE_CODE (x) == VAR_DECL
122 && !DECL_EXTERNAL (x)
123 && !TREE_STATIC (x)
124 && cfun->gimple_df != NULL
125 && cfun->gimple_df->decls_to_pointers != NULL)
127 void *namep
128 = pointer_map_contains (cfun->gimple_df->decls_to_pointers, x);
129 if (namep)
130 TREE_ADDRESSABLE (*(tree *)namep) = 1;
134 /* Return a hash value for a formal temporary table entry. */
136 static hashval_t
137 gimple_tree_hash (const void *p)
139 tree t = ((const elt_t *) p)->val;
140 return iterative_hash_expr (t, 0);
143 /* Compare two formal temporary table entries. */
145 static int
146 gimple_tree_eq (const void *p1, const void *p2)
148 tree t1 = ((const elt_t *) p1)->val;
149 tree t2 = ((const elt_t *) p2)->val;
150 enum tree_code code = TREE_CODE (t1);
152 if (TREE_CODE (t2) != code
153 || TREE_TYPE (t1) != TREE_TYPE (t2))
154 return 0;
156 if (!operand_equal_p (t1, t2, 0))
157 return 0;
159 #ifdef ENABLE_CHECKING
160 /* Only allow them to compare equal if they also hash equal; otherwise
161 results are nondeterminate, and we fail bootstrap comparison. */
162 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
163 #endif
165 return 1;
168 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
169 *SEQ_P is NULL, a new sequence is allocated. This function is
170 similar to gimple_seq_add_stmt, but does not scan the operands.
171 During gimplification, we need to manipulate statement sequences
172 before the def/use vectors have been constructed. */
174 void
175 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple gs)
177 gimple_stmt_iterator si;
179 if (gs == NULL)
180 return;
182 si = gsi_last (*seq_p);
183 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
186 /* Shorter alias name for the above function for use in gimplify.c
187 only. */
189 static inline void
190 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
192 gimple_seq_add_stmt_without_update (seq_p, gs);
195 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
196 NULL, a new sequence is allocated. This function is
197 similar to gimple_seq_add_seq, but does not scan the operands.
198 During gimplification, we need to manipulate statement sequences
199 before the def/use vectors have been constructed. */
201 static void
202 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
204 gimple_stmt_iterator si;
206 if (src == NULL)
207 return;
209 si = gsi_last (*dst_p);
210 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
213 /* Set up a context for the gimplifier. */
215 void
216 push_gimplify_context (struct gimplify_ctx *c)
218 memset (c, '\0', sizeof (*c));
219 c->prev_context = gimplify_ctxp;
220 gimplify_ctxp = c;
223 /* Tear down a context for the gimplifier. If BODY is non-null, then
224 put the temporaries into the outer BIND_EXPR. Otherwise, put them
225 in the local_decls.
227 BODY is not a sequence, but the first tuple in a sequence. */
229 void
230 pop_gimplify_context (gimple body)
232 struct gimplify_ctx *c = gimplify_ctxp;
234 gcc_assert (c
235 && (!c->bind_expr_stack.exists ()
236 || c->bind_expr_stack.is_empty ()));
237 c->bind_expr_stack.release ();
238 gimplify_ctxp = c->prev_context;
240 if (body)
241 declare_vars (c->temps, body, false);
242 else
243 record_vars (c->temps);
245 if (c->temp_htab)
246 htab_delete (c->temp_htab);
249 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
251 static void
252 gimple_push_bind_expr (gimple gimple_bind)
254 gimplify_ctxp->bind_expr_stack.reserve (8);
255 gimplify_ctxp->bind_expr_stack.safe_push (gimple_bind);
258 /* Pop the first element off the stack of bindings. */
260 static void
261 gimple_pop_bind_expr (void)
263 gimplify_ctxp->bind_expr_stack.pop ();
266 /* Return the first element of the stack of bindings. */
268 gimple
269 gimple_current_bind_expr (void)
271 return gimplify_ctxp->bind_expr_stack.last ();
274 /* Return the stack of bindings created during gimplification. */
276 vec<gimple>
277 gimple_bind_expr_stack (void)
279 return gimplify_ctxp->bind_expr_stack;
282 /* Return true iff there is a COND_EXPR between us and the innermost
283 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
285 static bool
286 gimple_conditional_context (void)
288 return gimplify_ctxp->conditions > 0;
291 /* Note that we've entered a COND_EXPR. */
293 static void
294 gimple_push_condition (void)
296 #ifdef ENABLE_GIMPLE_CHECKING
297 if (gimplify_ctxp->conditions == 0)
298 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
299 #endif
300 ++(gimplify_ctxp->conditions);
303 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
304 now, add any conditional cleanups we've seen to the prequeue. */
306 static void
307 gimple_pop_condition (gimple_seq *pre_p)
309 int conds = --(gimplify_ctxp->conditions);
311 gcc_assert (conds >= 0);
312 if (conds == 0)
314 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
315 gimplify_ctxp->conditional_cleanups = NULL;
319 /* A stable comparison routine for use with splay trees and DECLs. */
321 static int
322 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
324 tree a = (tree) xa;
325 tree b = (tree) xb;
327 return DECL_UID (a) - DECL_UID (b);
330 /* Create a new omp construct that deals with variable remapping. */
332 static struct gimplify_omp_ctx *
333 new_omp_context (enum omp_region_type region_type)
335 struct gimplify_omp_ctx *c;
337 c = XCNEW (struct gimplify_omp_ctx);
338 c->outer_context = gimplify_omp_ctxp;
339 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
340 c->privatized_types = pointer_set_create ();
341 c->location = input_location;
342 c->region_type = region_type;
343 if ((region_type & ORT_TASK) == 0)
344 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
345 else
346 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
348 return c;
351 /* Destroy an omp construct that deals with variable remapping. */
353 static void
354 delete_omp_context (struct gimplify_omp_ctx *c)
356 splay_tree_delete (c->variables);
357 pointer_set_destroy (c->privatized_types);
358 XDELETE (c);
361 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
362 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
364 /* Both gimplify the statement T and append it to *SEQ_P. This function
365 behaves exactly as gimplify_stmt, but you don't have to pass T as a
366 reference. */
368 void
369 gimplify_and_add (tree t, gimple_seq *seq_p)
371 gimplify_stmt (&t, seq_p);
374 /* Gimplify statement T into sequence *SEQ_P, and return the first
375 tuple in the sequence of generated tuples for this statement.
376 Return NULL if gimplifying T produced no tuples. */
378 static gimple
379 gimplify_and_return_first (tree t, gimple_seq *seq_p)
381 gimple_stmt_iterator last = gsi_last (*seq_p);
383 gimplify_and_add (t, seq_p);
385 if (!gsi_end_p (last))
387 gsi_next (&last);
388 return gsi_stmt (last);
390 else
391 return gimple_seq_first_stmt (*seq_p);
394 /* Strip off a legitimate source ending from the input string NAME of
395 length LEN. Rather than having to know the names used by all of
396 our front ends, we strip off an ending of a period followed by
397 up to five characters. (Java uses ".class".) */
399 static inline void
400 remove_suffix (char *name, int len)
402 int i;
404 for (i = 2; i < 8 && len > i; i++)
406 if (name[len - i] == '.')
408 name[len - i] = '\0';
409 break;
414 /* Create a new temporary name with PREFIX. Return an identifier. */
416 static GTY(()) unsigned int tmp_var_id_num;
418 tree
419 create_tmp_var_name (const char *prefix)
421 char *tmp_name;
423 if (prefix)
425 char *preftmp = ASTRDUP (prefix);
427 remove_suffix (preftmp, strlen (preftmp));
428 clean_symbol_name (preftmp);
430 prefix = preftmp;
433 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
434 return get_identifier (tmp_name);
437 /* Create a new temporary variable declaration of type TYPE.
438 Do NOT push it into the current binding. */
440 tree
441 create_tmp_var_raw (tree type, const char *prefix)
443 tree tmp_var;
445 tmp_var = build_decl (input_location,
446 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
447 type);
449 /* The variable was declared by the compiler. */
450 DECL_ARTIFICIAL (tmp_var) = 1;
451 /* And we don't want debug info for it. */
452 DECL_IGNORED_P (tmp_var) = 1;
454 /* Make the variable writable. */
455 TREE_READONLY (tmp_var) = 0;
457 DECL_EXTERNAL (tmp_var) = 0;
458 TREE_STATIC (tmp_var) = 0;
459 TREE_USED (tmp_var) = 1;
461 return tmp_var;
464 /* Create a new temporary variable declaration of type TYPE. DO push the
465 variable into the current binding. Further, assume that this is called
466 only from gimplification or optimization, at which point the creation of
467 certain types are bugs. */
469 tree
470 create_tmp_var (tree type, const char *prefix)
472 tree tmp_var;
474 /* We don't allow types that are addressable (meaning we can't make copies),
475 or incomplete. We also used to reject every variable size objects here,
476 but now support those for which a constant upper bound can be obtained.
477 The processing for variable sizes is performed in gimple_add_tmp_var,
478 point at which it really matters and possibly reached via paths not going
479 through this function, e.g. after direct calls to create_tmp_var_raw. */
480 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
482 tmp_var = create_tmp_var_raw (type, prefix);
483 gimple_add_tmp_var (tmp_var);
484 return tmp_var;
487 /* Create a new temporary variable declaration of type TYPE by calling
488 create_tmp_var and if TYPE is a vector or a complex number, mark the new
489 temporary as gimple register. */
491 tree
492 create_tmp_reg (tree type, const char *prefix)
494 tree tmp;
496 tmp = create_tmp_var (type, prefix);
497 if (TREE_CODE (type) == COMPLEX_TYPE
498 || TREE_CODE (type) == VECTOR_TYPE)
499 DECL_GIMPLE_REG_P (tmp) = 1;
501 return tmp;
504 /* Returns true iff T is a valid RHS for an assignment to a renamed
505 user -- or front-end generated artificial -- variable. */
507 static bool
508 is_gimple_reg_rhs (tree t)
510 return get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS;
513 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
514 LHS, or for a call argument. */
516 static bool
517 is_gimple_mem_rhs (tree t)
519 /* If we're dealing with a renamable type, either source or dest must be
520 a renamed variable. */
521 if (is_gimple_reg_type (TREE_TYPE (t)))
522 return is_gimple_val (t);
523 else
524 return is_gimple_val (t) || is_gimple_lvalue (t);
527 /* Return true if T is a CALL_EXPR or an expression that can be
528 assigned to a temporary. Note that this predicate should only be
529 used during gimplification. See the rationale for this in
530 gimplify_modify_expr. */
532 static bool
533 is_gimple_reg_rhs_or_call (tree t)
535 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
536 || TREE_CODE (t) == CALL_EXPR);
539 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
540 this predicate should only be used during gimplification. See the
541 rationale for this in gimplify_modify_expr. */
543 static bool
544 is_gimple_mem_rhs_or_call (tree t)
546 /* If we're dealing with a renamable type, either source or dest must be
547 a renamed variable. */
548 if (is_gimple_reg_type (TREE_TYPE (t)))
549 return is_gimple_val (t);
550 else
551 return (is_gimple_val (t) || is_gimple_lvalue (t)
552 || TREE_CODE (t) == CALL_EXPR);
555 /* Create a temporary with a name derived from VAL. Subroutine of
556 lookup_tmp_var; nobody else should call this function. */
558 static inline tree
559 create_tmp_from_val (tree val, bool is_formal)
561 /* Drop all qualifiers and address-space information from the value type. */
562 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (val));
563 tree var = create_tmp_var (type, get_name (val));
564 if (is_formal
565 && (TREE_CODE (TREE_TYPE (var)) == COMPLEX_TYPE
566 || TREE_CODE (TREE_TYPE (var)) == VECTOR_TYPE))
567 DECL_GIMPLE_REG_P (var) = 1;
568 return var;
571 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
572 an existing expression temporary. */
574 static tree
575 lookup_tmp_var (tree val, bool is_formal)
577 tree ret;
579 /* If not optimizing, never really reuse a temporary. local-alloc
580 won't allocate any variable that is used in more than one basic
581 block, which means it will go into memory, causing much extra
582 work in reload and final and poorer code generation, outweighing
583 the extra memory allocation here. */
584 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
585 ret = create_tmp_from_val (val, is_formal);
586 else
588 elt_t elt, *elt_p;
589 void **slot;
591 elt.val = val;
592 if (gimplify_ctxp->temp_htab == NULL)
593 gimplify_ctxp->temp_htab
594 = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
595 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
596 if (*slot == NULL)
598 elt_p = XNEW (elt_t);
599 elt_p->val = val;
600 elt_p->temp = ret = create_tmp_from_val (val, is_formal);
601 *slot = (void *) elt_p;
603 else
605 elt_p = (elt_t *) *slot;
606 ret = elt_p->temp;
610 return ret;
613 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
615 static tree
616 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
617 bool is_formal)
619 tree t, mod;
621 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
622 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
623 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
624 fb_rvalue);
626 if (gimplify_ctxp->into_ssa
627 && is_gimple_reg_type (TREE_TYPE (val)))
628 t = make_ssa_name (TYPE_MAIN_VARIANT (TREE_TYPE (val)), NULL);
629 else
630 t = lookup_tmp_var (val, is_formal);
632 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
634 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
636 /* gimplify_modify_expr might want to reduce this further. */
637 gimplify_and_add (mod, pre_p);
638 ggc_free (mod);
640 return t;
643 /* Return a formal temporary variable initialized with VAL. PRE_P is as
644 in gimplify_expr. Only use this function if:
646 1) The value of the unfactored expression represented by VAL will not
647 change between the initialization and use of the temporary, and
648 2) The temporary will not be otherwise modified.
650 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
651 and #2 means it is inappropriate for && temps.
653 For other cases, use get_initialized_tmp_var instead. */
655 tree
656 get_formal_tmp_var (tree val, gimple_seq *pre_p)
658 return internal_get_tmp_var (val, pre_p, NULL, true);
661 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
662 are as in gimplify_expr. */
664 tree
665 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
667 return internal_get_tmp_var (val, pre_p, post_p, false);
670 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
671 generate debug info for them; otherwise don't. */
673 void
674 declare_vars (tree vars, gimple scope, bool debug_info)
676 tree last = vars;
677 if (last)
679 tree temps, block;
681 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
683 temps = nreverse (last);
685 block = gimple_bind_block (scope);
686 gcc_assert (!block || TREE_CODE (block) == BLOCK);
687 if (!block || !debug_info)
689 DECL_CHAIN (last) = gimple_bind_vars (scope);
690 gimple_bind_set_vars (scope, temps);
692 else
694 /* We need to attach the nodes both to the BIND_EXPR and to its
695 associated BLOCK for debugging purposes. The key point here
696 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
697 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
698 if (BLOCK_VARS (block))
699 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
700 else
702 gimple_bind_set_vars (scope,
703 chainon (gimple_bind_vars (scope), temps));
704 BLOCK_VARS (block) = temps;
710 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
711 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
712 no such upper bound can be obtained. */
714 static void
715 force_constant_size (tree var)
717 /* The only attempt we make is by querying the maximum size of objects
718 of the variable's type. */
720 HOST_WIDE_INT max_size;
722 gcc_assert (TREE_CODE (var) == VAR_DECL);
724 max_size = max_int_size_in_bytes (TREE_TYPE (var));
726 gcc_assert (max_size >= 0);
728 DECL_SIZE_UNIT (var)
729 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
730 DECL_SIZE (var)
731 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
734 /* Push the temporary variable TMP into the current binding. */
736 void
737 gimple_add_tmp_var (tree tmp)
739 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
741 /* Later processing assumes that the object size is constant, which might
742 not be true at this point. Force the use of a constant upper bound in
743 this case. */
744 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
745 force_constant_size (tmp);
747 DECL_CONTEXT (tmp) = current_function_decl;
748 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
750 if (gimplify_ctxp)
752 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
753 gimplify_ctxp->temps = tmp;
755 /* Mark temporaries local within the nearest enclosing parallel. */
756 if (gimplify_omp_ctxp)
758 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
759 while (ctx && ctx->region_type == ORT_WORKSHARE)
760 ctx = ctx->outer_context;
761 if (ctx)
762 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
765 else if (cfun)
766 record_vars (tmp);
767 else
769 gimple_seq body_seq;
771 /* This case is for nested functions. We need to expose the locals
772 they create. */
773 body_seq = gimple_body (current_function_decl);
774 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
778 /* Determine whether to assign a location to the statement GS. */
780 static bool
781 should_carry_location_p (gimple gs)
783 /* Don't emit a line note for a label. We particularly don't want to
784 emit one for the break label, since it doesn't actually correspond
785 to the beginning of the loop/switch. */
786 if (gimple_code (gs) == GIMPLE_LABEL)
787 return false;
789 return true;
792 /* Return true if a location should not be emitted for this statement
793 by annotate_one_with_location. */
795 static inline bool
796 gimple_do_not_emit_location_p (gimple g)
798 return gimple_plf (g, GF_PLF_1);
801 /* Mark statement G so a location will not be emitted by
802 annotate_one_with_location. */
804 static inline void
805 gimple_set_do_not_emit_location (gimple g)
807 /* The PLF flags are initialized to 0 when a new tuple is created,
808 so no need to initialize it anywhere. */
809 gimple_set_plf (g, GF_PLF_1, true);
812 /* Set the location for gimple statement GS to LOCATION. */
814 static void
815 annotate_one_with_location (gimple gs, location_t location)
817 if (!gimple_has_location (gs)
818 && !gimple_do_not_emit_location_p (gs)
819 && should_carry_location_p (gs))
820 gimple_set_location (gs, location);
823 /* Set LOCATION for all the statements after iterator GSI in sequence
824 SEQ. If GSI is pointing to the end of the sequence, start with the
825 first statement in SEQ. */
827 static void
828 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
829 location_t location)
831 if (gsi_end_p (gsi))
832 gsi = gsi_start (seq);
833 else
834 gsi_next (&gsi);
836 for (; !gsi_end_p (gsi); gsi_next (&gsi))
837 annotate_one_with_location (gsi_stmt (gsi), location);
840 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
842 void
843 annotate_all_with_location (gimple_seq stmt_p, location_t location)
845 gimple_stmt_iterator i;
847 if (gimple_seq_empty_p (stmt_p))
848 return;
850 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
852 gimple gs = gsi_stmt (i);
853 annotate_one_with_location (gs, location);
857 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
858 nodes that are referenced more than once in GENERIC functions. This is
859 necessary because gimplification (translation into GIMPLE) is performed
860 by modifying tree nodes in-place, so gimplication of a shared node in a
861 first context could generate an invalid GIMPLE form in a second context.
863 This is achieved with a simple mark/copy/unmark algorithm that walks the
864 GENERIC representation top-down, marks nodes with TREE_VISITED the first
865 time it encounters them, duplicates them if they already have TREE_VISITED
866 set, and finally removes the TREE_VISITED marks it has set.
868 The algorithm works only at the function level, i.e. it generates a GENERIC
869 representation of a function with no nodes shared within the function when
870 passed a GENERIC function (except for nodes that are allowed to be shared).
872 At the global level, it is also necessary to unshare tree nodes that are
873 referenced in more than one function, for the same aforementioned reason.
874 This requires some cooperation from the front-end. There are 2 strategies:
876 1. Manual unsharing. The front-end needs to call unshare_expr on every
877 expression that might end up being shared across functions.
879 2. Deep unsharing. This is an extension of regular unsharing. Instead
880 of calling unshare_expr on expressions that might be shared across
881 functions, the front-end pre-marks them with TREE_VISITED. This will
882 ensure that they are unshared on the first reference within functions
883 when the regular unsharing algorithm runs. The counterpart is that
884 this algorithm must look deeper than for manual unsharing, which is
885 specified by LANG_HOOKS_DEEP_UNSHARING.
887 If there are only few specific cases of node sharing across functions, it is
888 probably easier for a front-end to unshare the expressions manually. On the
889 contrary, if the expressions generated at the global level are as widespread
890 as expressions generated within functions, deep unsharing is very likely the
891 way to go. */
893 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
894 These nodes model computations that must be done once. If we were to
895 unshare something like SAVE_EXPR(i++), the gimplification process would
896 create wrong code. However, if DATA is non-null, it must hold a pointer
897 set that is used to unshare the subtrees of these nodes. */
899 static tree
900 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
902 tree t = *tp;
903 enum tree_code code = TREE_CODE (t);
905 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
906 copy their subtrees if we can make sure to do it only once. */
907 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
909 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
911 else
912 *walk_subtrees = 0;
915 /* Stop at types, decls, constants like copy_tree_r. */
916 else if (TREE_CODE_CLASS (code) == tcc_type
917 || TREE_CODE_CLASS (code) == tcc_declaration
918 || TREE_CODE_CLASS (code) == tcc_constant
919 /* We can't do anything sensible with a BLOCK used as an
920 expression, but we also can't just die when we see it
921 because of non-expression uses. So we avert our eyes
922 and cross our fingers. Silly Java. */
923 || code == BLOCK)
924 *walk_subtrees = 0;
926 /* Cope with the statement expression extension. */
927 else if (code == STATEMENT_LIST)
930 /* Leave the bulk of the work to copy_tree_r itself. */
931 else
932 copy_tree_r (tp, walk_subtrees, NULL);
934 return NULL_TREE;
937 /* Callback for walk_tree to unshare most of the shared trees rooted at *TP.
938 If *TP has been visited already, then *TP is deeply copied by calling
939 mostly_copy_tree_r. DATA is passed to mostly_copy_tree_r unmodified. */
941 static tree
942 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
944 tree t = *tp;
945 enum tree_code code = TREE_CODE (t);
947 /* Skip types, decls, and constants. But we do want to look at their
948 types and the bounds of types. Mark them as visited so we properly
949 unmark their subtrees on the unmark pass. If we've already seen them,
950 don't look down further. */
951 if (TREE_CODE_CLASS (code) == tcc_type
952 || TREE_CODE_CLASS (code) == tcc_declaration
953 || TREE_CODE_CLASS (code) == tcc_constant)
955 if (TREE_VISITED (t))
956 *walk_subtrees = 0;
957 else
958 TREE_VISITED (t) = 1;
961 /* If this node has been visited already, unshare it and don't look
962 any deeper. */
963 else if (TREE_VISITED (t))
965 walk_tree (tp, mostly_copy_tree_r, data, NULL);
966 *walk_subtrees = 0;
969 /* Otherwise, mark the node as visited and keep looking. */
970 else
971 TREE_VISITED (t) = 1;
973 return NULL_TREE;
976 /* Unshare most of the shared trees rooted at *TP. DATA is passed to the
977 copy_if_shared_r callback unmodified. */
979 static inline void
980 copy_if_shared (tree *tp, void *data)
982 walk_tree (tp, copy_if_shared_r, data, NULL);
985 /* Unshare all the trees in the body of FNDECL, as well as in the bodies of
986 any nested functions. */
988 static void
989 unshare_body (tree fndecl)
991 struct cgraph_node *cgn = cgraph_get_node (fndecl);
992 /* If the language requires deep unsharing, we need a pointer set to make
993 sure we don't repeatedly unshare subtrees of unshareable nodes. */
994 struct pointer_set_t *visited
995 = lang_hooks.deep_unsharing ? pointer_set_create () : NULL;
997 copy_if_shared (&DECL_SAVED_TREE (fndecl), visited);
998 copy_if_shared (&DECL_SIZE (DECL_RESULT (fndecl)), visited);
999 copy_if_shared (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)), visited);
1001 if (visited)
1002 pointer_set_destroy (visited);
1004 if (cgn)
1005 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1006 unshare_body (cgn->symbol.decl);
1009 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
1010 Subtrees are walked until the first unvisited node is encountered. */
1012 static tree
1013 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1015 tree t = *tp;
1017 /* If this node has been visited, unmark it and keep looking. */
1018 if (TREE_VISITED (t))
1019 TREE_VISITED (t) = 0;
1021 /* Otherwise, don't look any deeper. */
1022 else
1023 *walk_subtrees = 0;
1025 return NULL_TREE;
1028 /* Unmark the visited trees rooted at *TP. */
1030 static inline void
1031 unmark_visited (tree *tp)
1033 walk_tree (tp, unmark_visited_r, NULL, NULL);
1036 /* Likewise, but mark all trees as not visited. */
1038 static void
1039 unvisit_body (tree fndecl)
1041 struct cgraph_node *cgn = cgraph_get_node (fndecl);
1043 unmark_visited (&DECL_SAVED_TREE (fndecl));
1044 unmark_visited (&DECL_SIZE (DECL_RESULT (fndecl)));
1045 unmark_visited (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)));
1047 if (cgn)
1048 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1049 unvisit_body (cgn->symbol.decl);
1052 /* Unconditionally make an unshared copy of EXPR. This is used when using
1053 stored expressions which span multiple functions, such as BINFO_VTABLE,
1054 as the normal unsharing process can't tell that they're shared. */
1056 tree
1057 unshare_expr (tree expr)
1059 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1060 return expr;
1063 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1064 contain statements and have a value. Assign its value to a temporary
1065 and give it void_type_node. Return the temporary, or NULL_TREE if
1066 WRAPPER was already void. */
1068 tree
1069 voidify_wrapper_expr (tree wrapper, tree temp)
1071 tree type = TREE_TYPE (wrapper);
1072 if (type && !VOID_TYPE_P (type))
1074 tree *p;
1076 /* Set p to point to the body of the wrapper. Loop until we find
1077 something that isn't a wrapper. */
1078 for (p = &wrapper; p && *p; )
1080 switch (TREE_CODE (*p))
1082 case BIND_EXPR:
1083 TREE_SIDE_EFFECTS (*p) = 1;
1084 TREE_TYPE (*p) = void_type_node;
1085 /* For a BIND_EXPR, the body is operand 1. */
1086 p = &BIND_EXPR_BODY (*p);
1087 break;
1089 case CLEANUP_POINT_EXPR:
1090 case TRY_FINALLY_EXPR:
1091 case TRY_CATCH_EXPR:
1092 TREE_SIDE_EFFECTS (*p) = 1;
1093 TREE_TYPE (*p) = void_type_node;
1094 p = &TREE_OPERAND (*p, 0);
1095 break;
1097 case STATEMENT_LIST:
1099 tree_stmt_iterator i = tsi_last (*p);
1100 TREE_SIDE_EFFECTS (*p) = 1;
1101 TREE_TYPE (*p) = void_type_node;
1102 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1104 break;
1106 case COMPOUND_EXPR:
1107 /* Advance to the last statement. Set all container types to
1108 void. */
1109 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1111 TREE_SIDE_EFFECTS (*p) = 1;
1112 TREE_TYPE (*p) = void_type_node;
1114 break;
1116 case TRANSACTION_EXPR:
1117 TREE_SIDE_EFFECTS (*p) = 1;
1118 TREE_TYPE (*p) = void_type_node;
1119 p = &TRANSACTION_EXPR_BODY (*p);
1120 break;
1122 default:
1123 /* Assume that any tree upon which voidify_wrapper_expr is
1124 directly called is a wrapper, and that its body is op0. */
1125 if (p == &wrapper)
1127 TREE_SIDE_EFFECTS (*p) = 1;
1128 TREE_TYPE (*p) = void_type_node;
1129 p = &TREE_OPERAND (*p, 0);
1130 break;
1132 goto out;
1136 out:
1137 if (p == NULL || IS_EMPTY_STMT (*p))
1138 temp = NULL_TREE;
1139 else if (temp)
1141 /* The wrapper is on the RHS of an assignment that we're pushing
1142 down. */
1143 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1144 || TREE_CODE (temp) == MODIFY_EXPR);
1145 TREE_OPERAND (temp, 1) = *p;
1146 *p = temp;
1148 else
1150 temp = create_tmp_var (type, "retval");
1151 *p = build2 (INIT_EXPR, type, temp, *p);
1154 return temp;
1157 return NULL_TREE;
1160 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1161 a temporary through which they communicate. */
1163 static void
1164 build_stack_save_restore (gimple *save, gimple *restore)
1166 tree tmp_var;
1168 *save = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0);
1169 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1170 gimple_call_set_lhs (*save, tmp_var);
1172 *restore
1173 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE),
1174 1, tmp_var);
1177 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1179 static enum gimplify_status
1180 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1182 tree bind_expr = *expr_p;
1183 bool old_save_stack = gimplify_ctxp->save_stack;
1184 tree t;
1185 gimple gimple_bind;
1186 gimple_seq body, cleanup;
1187 gimple stack_save;
1189 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1191 /* Mark variables seen in this bind expr. */
1192 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1194 if (TREE_CODE (t) == VAR_DECL)
1196 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1198 /* Mark variable as local. */
1199 if (ctx && !DECL_EXTERNAL (t)
1200 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1201 || splay_tree_lookup (ctx->variables,
1202 (splay_tree_key) t) == NULL))
1203 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1205 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1207 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1208 cfun->has_local_explicit_reg_vars = true;
1211 /* Preliminarily mark non-addressed complex variables as eligible
1212 for promotion to gimple registers. We'll transform their uses
1213 as we find them. */
1214 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1215 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1216 && !TREE_THIS_VOLATILE (t)
1217 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1218 && !needs_to_live_in_memory (t))
1219 DECL_GIMPLE_REG_P (t) = 1;
1222 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1223 BIND_EXPR_BLOCK (bind_expr));
1224 gimple_push_bind_expr (gimple_bind);
1226 gimplify_ctxp->save_stack = false;
1228 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1229 body = NULL;
1230 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1231 gimple_bind_set_body (gimple_bind, body);
1233 cleanup = NULL;
1234 stack_save = NULL;
1235 if (gimplify_ctxp->save_stack)
1237 gimple stack_restore;
1239 /* Save stack on entry and restore it on exit. Add a try_finally
1240 block to achieve this. Note that mudflap depends on the
1241 format of the emitted code: see mx_register_decls(). */
1242 build_stack_save_restore (&stack_save, &stack_restore);
1244 gimplify_seq_add_stmt (&cleanup, stack_restore);
1247 /* Add clobbers for all variables that go out of scope. */
1248 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1250 if (TREE_CODE (t) == VAR_DECL
1251 && !is_global_var (t)
1252 && DECL_CONTEXT (t) == current_function_decl
1253 && !DECL_HARD_REGISTER (t)
1254 && !TREE_THIS_VOLATILE (t)
1255 && !DECL_HAS_VALUE_EXPR_P (t)
1256 /* Only care for variables that have to be in memory. Others
1257 will be rewritten into SSA names, hence moved to the top-level. */
1258 && !is_gimple_reg (t)
1259 && flag_stack_reuse != SR_NONE)
1261 tree clobber = build_constructor (TREE_TYPE (t),
1262 NULL);
1263 TREE_THIS_VOLATILE (clobber) = 1;
1264 gimplify_seq_add_stmt (&cleanup, gimple_build_assign (t, clobber));
1268 if (cleanup)
1270 gimple gs;
1271 gimple_seq new_body;
1273 new_body = NULL;
1274 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1275 GIMPLE_TRY_FINALLY);
1277 if (stack_save)
1278 gimplify_seq_add_stmt (&new_body, stack_save);
1279 gimplify_seq_add_stmt (&new_body, gs);
1280 gimple_bind_set_body (gimple_bind, new_body);
1283 gimplify_ctxp->save_stack = old_save_stack;
1284 gimple_pop_bind_expr ();
1286 gimplify_seq_add_stmt (pre_p, gimple_bind);
1288 if (temp)
1290 *expr_p = temp;
1291 return GS_OK;
1294 *expr_p = NULL_TREE;
1295 return GS_ALL_DONE;
1298 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1299 GIMPLE value, it is assigned to a new temporary and the statement is
1300 re-written to return the temporary.
1302 PRE_P points to the sequence where side effects that must happen before
1303 STMT should be stored. */
1305 static enum gimplify_status
1306 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1308 gimple ret;
1309 tree ret_expr = TREE_OPERAND (stmt, 0);
1310 tree result_decl, result;
1312 if (ret_expr == error_mark_node)
1313 return GS_ERROR;
1315 if (!ret_expr
1316 || TREE_CODE (ret_expr) == RESULT_DECL
1317 || ret_expr == error_mark_node)
1319 gimple ret = gimple_build_return (ret_expr);
1320 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1321 gimplify_seq_add_stmt (pre_p, ret);
1322 return GS_ALL_DONE;
1325 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1326 result_decl = NULL_TREE;
1327 else
1329 result_decl = TREE_OPERAND (ret_expr, 0);
1331 /* See through a return by reference. */
1332 if (TREE_CODE (result_decl) == INDIRECT_REF)
1333 result_decl = TREE_OPERAND (result_decl, 0);
1335 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1336 || TREE_CODE (ret_expr) == INIT_EXPR)
1337 && TREE_CODE (result_decl) == RESULT_DECL);
1340 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1341 Recall that aggregate_value_p is FALSE for any aggregate type that is
1342 returned in registers. If we're returning values in registers, then
1343 we don't want to extend the lifetime of the RESULT_DECL, particularly
1344 across another call. In addition, for those aggregates for which
1345 hard_function_value generates a PARALLEL, we'll die during normal
1346 expansion of structure assignments; there's special code in expand_return
1347 to handle this case that does not exist in expand_expr. */
1348 if (!result_decl)
1349 result = NULL_TREE;
1350 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1352 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1354 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1355 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1356 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1357 should be effectively allocated by the caller, i.e. all calls to
1358 this function must be subject to the Return Slot Optimization. */
1359 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1360 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1362 result = result_decl;
1364 else if (gimplify_ctxp->return_temp)
1365 result = gimplify_ctxp->return_temp;
1366 else
1368 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1370 /* ??? With complex control flow (usually involving abnormal edges),
1371 we can wind up warning about an uninitialized value for this. Due
1372 to how this variable is constructed and initialized, this is never
1373 true. Give up and never warn. */
1374 TREE_NO_WARNING (result) = 1;
1376 gimplify_ctxp->return_temp = result;
1379 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1380 Then gimplify the whole thing. */
1381 if (result != result_decl)
1382 TREE_OPERAND (ret_expr, 0) = result;
1384 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1386 ret = gimple_build_return (result);
1387 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1388 gimplify_seq_add_stmt (pre_p, ret);
1390 return GS_ALL_DONE;
1393 /* Gimplify a variable-length array DECL. */
1395 static void
1396 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1398 /* This is a variable-sized decl. Simplify its size and mark it
1399 for deferred expansion. Note that mudflap depends on the format
1400 of the emitted code: see mx_register_decls(). */
1401 tree t, addr, ptr_type;
1403 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1404 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1406 /* All occurrences of this decl in final gimplified code will be
1407 replaced by indirection. Setting DECL_VALUE_EXPR does two
1408 things: First, it lets the rest of the gimplifier know what
1409 replacement to use. Second, it lets the debug info know
1410 where to find the value. */
1411 ptr_type = build_pointer_type (TREE_TYPE (decl));
1412 addr = create_tmp_var (ptr_type, get_name (decl));
1413 DECL_IGNORED_P (addr) = 0;
1414 t = build_fold_indirect_ref (addr);
1415 TREE_THIS_NOTRAP (t) = 1;
1416 SET_DECL_VALUE_EXPR (decl, t);
1417 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1419 t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
1420 t = build_call_expr (t, 2, DECL_SIZE_UNIT (decl),
1421 size_int (DECL_ALIGN (decl)));
1422 /* The call has been built for a variable-sized object. */
1423 CALL_ALLOCA_FOR_VAR_P (t) = 1;
1424 t = fold_convert (ptr_type, t);
1425 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1427 gimplify_and_add (t, seq_p);
1429 /* Indicate that we need to restore the stack level when the
1430 enclosing BIND_EXPR is exited. */
1431 gimplify_ctxp->save_stack = true;
1434 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1435 and initialization explicit. */
1437 static enum gimplify_status
1438 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1440 tree stmt = *stmt_p;
1441 tree decl = DECL_EXPR_DECL (stmt);
1443 *stmt_p = NULL_TREE;
1445 if (TREE_TYPE (decl) == error_mark_node)
1446 return GS_ERROR;
1448 if ((TREE_CODE (decl) == TYPE_DECL
1449 || TREE_CODE (decl) == VAR_DECL)
1450 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1451 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1453 /* ??? DECL_ORIGINAL_TYPE is streamed for LTO so it needs to be gimplified
1454 in case its size expressions contain problematic nodes like CALL_EXPR. */
1455 if (TREE_CODE (decl) == TYPE_DECL
1456 && DECL_ORIGINAL_TYPE (decl)
1457 && !TYPE_SIZES_GIMPLIFIED (DECL_ORIGINAL_TYPE (decl)))
1458 gimplify_type_sizes (DECL_ORIGINAL_TYPE (decl), seq_p);
1460 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1462 tree init = DECL_INITIAL (decl);
1464 if (TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1465 || (!TREE_STATIC (decl)
1466 && flag_stack_check == GENERIC_STACK_CHECK
1467 && compare_tree_int (DECL_SIZE_UNIT (decl),
1468 STACK_CHECK_MAX_VAR_SIZE) > 0))
1469 gimplify_vla_decl (decl, seq_p);
1471 /* Some front ends do not explicitly declare all anonymous
1472 artificial variables. We compensate here by declaring the
1473 variables, though it would be better if the front ends would
1474 explicitly declare them. */
1475 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1476 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1477 gimple_add_tmp_var (decl);
1479 if (init && init != error_mark_node)
1481 if (!TREE_STATIC (decl))
1483 DECL_INITIAL (decl) = NULL_TREE;
1484 init = build2 (INIT_EXPR, void_type_node, decl, init);
1485 gimplify_and_add (init, seq_p);
1486 ggc_free (init);
1488 else
1489 /* We must still examine initializers for static variables
1490 as they may contain a label address. */
1491 walk_tree (&init, force_labels_r, NULL, NULL);
1495 return GS_ALL_DONE;
1498 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1499 and replacing the LOOP_EXPR with goto, but if the loop contains an
1500 EXIT_EXPR, we need to append a label for it to jump to. */
1502 static enum gimplify_status
1503 gimplify_loop_expr (tree *expr_p, gimple_seq *pre_p)
1505 tree saved_label = gimplify_ctxp->exit_label;
1506 tree start_label = create_artificial_label (UNKNOWN_LOCATION);
1508 gimplify_seq_add_stmt (pre_p, gimple_build_label (start_label));
1510 gimplify_ctxp->exit_label = NULL_TREE;
1512 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1514 gimplify_seq_add_stmt (pre_p, gimple_build_goto (start_label));
1516 if (gimplify_ctxp->exit_label)
1517 gimplify_seq_add_stmt (pre_p,
1518 gimple_build_label (gimplify_ctxp->exit_label));
1520 gimplify_ctxp->exit_label = saved_label;
1522 *expr_p = NULL;
1523 return GS_ALL_DONE;
1526 /* Gimplify a statement list onto a sequence. These may be created either
1527 by an enlightened front-end, or by shortcut_cond_expr. */
1529 static enum gimplify_status
1530 gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
1532 tree temp = voidify_wrapper_expr (*expr_p, NULL);
1534 tree_stmt_iterator i = tsi_start (*expr_p);
1536 while (!tsi_end_p (i))
1538 gimplify_stmt (tsi_stmt_ptr (i), pre_p);
1539 tsi_delink (&i);
1542 if (temp)
1544 *expr_p = temp;
1545 return GS_OK;
1548 return GS_ALL_DONE;
1551 /* Compare two case labels. Because the front end should already have
1552 made sure that case ranges do not overlap, it is enough to only compare
1553 the CASE_LOW values of each case label. */
1555 static int
1556 compare_case_labels (const void *p1, const void *p2)
1558 const_tree const case1 = *(const_tree const*)p1;
1559 const_tree const case2 = *(const_tree const*)p2;
1561 /* The 'default' case label always goes first. */
1562 if (!CASE_LOW (case1))
1563 return -1;
1564 else if (!CASE_LOW (case2))
1565 return 1;
1566 else
1567 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1570 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1572 void
1573 sort_case_labels (vec<tree> label_vec)
1575 label_vec.qsort (compare_case_labels);
1578 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
1580 LABELS is a vector that contains all case labels to look at.
1582 INDEX_TYPE is the type of the switch index expression. Case labels
1583 in LABELS are discarded if their values are not in the value range
1584 covered by INDEX_TYPE. The remaining case label values are folded
1585 to INDEX_TYPE.
1587 If a default case exists in LABELS, it is removed from LABELS and
1588 returned in DEFAULT_CASEP. If no default case exists, but the
1589 case labels already cover the whole range of INDEX_TYPE, a default
1590 case is returned pointing to one of the existing case labels.
1591 Otherwise DEFAULT_CASEP is set to NULL_TREE.
1593 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
1594 apply and no action is taken regardless of whether a default case is
1595 found or not. */
1597 void
1598 preprocess_case_label_vec_for_gimple (vec<tree> labels,
1599 tree index_type,
1600 tree *default_casep)
1602 tree min_value, max_value;
1603 tree default_case = NULL_TREE;
1604 size_t i, len;
1606 i = 0;
1607 min_value = TYPE_MIN_VALUE (index_type);
1608 max_value = TYPE_MAX_VALUE (index_type);
1609 while (i < labels.length ())
1611 tree elt = labels[i];
1612 tree low = CASE_LOW (elt);
1613 tree high = CASE_HIGH (elt);
1614 bool remove_element = FALSE;
1616 if (low)
1618 gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
1619 gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
1621 /* This is a non-default case label, i.e. it has a value.
1623 See if the case label is reachable within the range of
1624 the index type. Remove out-of-range case values. Turn
1625 case ranges into a canonical form (high > low strictly)
1626 and convert the case label values to the index type.
1628 NB: The type of gimple_switch_index() may be the promoted
1629 type, but the case labels retain the original type. */
1631 if (high)
1633 /* This is a case range. Discard empty ranges.
1634 If the bounds or the range are equal, turn this
1635 into a simple (one-value) case. */
1636 int cmp = tree_int_cst_compare (high, low);
1637 if (cmp < 0)
1638 remove_element = TRUE;
1639 else if (cmp == 0)
1640 high = NULL_TREE;
1643 if (! high)
1645 /* If the simple case value is unreachable, ignore it. */
1646 if ((TREE_CODE (min_value) == INTEGER_CST
1647 && tree_int_cst_compare (low, min_value) < 0)
1648 || (TREE_CODE (max_value) == INTEGER_CST
1649 && tree_int_cst_compare (low, max_value) > 0))
1650 remove_element = TRUE;
1651 else
1652 low = fold_convert (index_type, low);
1654 else
1656 /* If the entire case range is unreachable, ignore it. */
1657 if ((TREE_CODE (min_value) == INTEGER_CST
1658 && tree_int_cst_compare (high, min_value) < 0)
1659 || (TREE_CODE (max_value) == INTEGER_CST
1660 && tree_int_cst_compare (low, max_value) > 0))
1661 remove_element = TRUE;
1662 else
1664 /* If the lower bound is less than the index type's
1665 minimum value, truncate the range bounds. */
1666 if (TREE_CODE (min_value) == INTEGER_CST
1667 && tree_int_cst_compare (low, min_value) < 0)
1668 low = min_value;
1669 low = fold_convert (index_type, low);
1671 /* If the upper bound is greater than the index type's
1672 maximum value, truncate the range bounds. */
1673 if (TREE_CODE (max_value) == INTEGER_CST
1674 && tree_int_cst_compare (high, max_value) > 0)
1675 high = max_value;
1676 high = fold_convert (index_type, high);
1678 /* We may have folded a case range to a one-value case. */
1679 if (tree_int_cst_equal (low, high))
1680 high = NULL_TREE;
1684 CASE_LOW (elt) = low;
1685 CASE_HIGH (elt) = high;
1687 else
1689 gcc_assert (!default_case);
1690 default_case = elt;
1691 /* The default case must be passed separately to the
1692 gimple_build_switch routine. But if DEFAULT_CASEP
1693 is NULL, we do not remove the default case (it would
1694 be completely lost). */
1695 if (default_casep)
1696 remove_element = TRUE;
1699 if (remove_element)
1700 labels.ordered_remove (i);
1701 else
1702 i++;
1704 len = i;
1706 if (!labels.is_empty ())
1707 sort_case_labels (labels);
1709 if (default_casep && !default_case)
1711 /* If the switch has no default label, add one, so that we jump
1712 around the switch body. If the labels already cover the whole
1713 range of the switch index_type, add the default label pointing
1714 to one of the existing labels. */
1715 if (len
1716 && TYPE_MIN_VALUE (index_type)
1717 && TYPE_MAX_VALUE (index_type)
1718 && tree_int_cst_equal (CASE_LOW (labels[0]),
1719 TYPE_MIN_VALUE (index_type)))
1721 tree low, high = CASE_HIGH (labels[len - 1]);
1722 if (!high)
1723 high = CASE_LOW (labels[len - 1]);
1724 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
1726 for (i = 1; i < len; i++)
1728 high = CASE_LOW (labels[i]);
1729 low = CASE_HIGH (labels[i - 1]);
1730 if (!low)
1731 low = CASE_LOW (labels[i - 1]);
1732 if ((TREE_INT_CST_LOW (low) + 1
1733 != TREE_INT_CST_LOW (high))
1734 || (TREE_INT_CST_HIGH (low)
1735 + (TREE_INT_CST_LOW (high) == 0)
1736 != TREE_INT_CST_HIGH (high)))
1737 break;
1739 if (i == len)
1741 tree label = CASE_LABEL (labels[0]);
1742 default_case = build_case_label (NULL_TREE, NULL_TREE,
1743 label);
1749 if (default_casep)
1750 *default_casep = default_case;
1753 /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
1754 branch to. */
1756 static enum gimplify_status
1757 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1759 tree switch_expr = *expr_p;
1760 gimple_seq switch_body_seq = NULL;
1761 enum gimplify_status ret;
1762 tree index_type = TREE_TYPE (switch_expr);
1763 if (index_type == NULL_TREE)
1764 index_type = TREE_TYPE (SWITCH_COND (switch_expr));
1766 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1767 fb_rvalue);
1768 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1769 return ret;
1771 if (SWITCH_BODY (switch_expr))
1773 vec<tree> labels;
1774 vec<tree> saved_labels;
1775 tree default_case = NULL_TREE;
1776 gimple gimple_switch;
1778 /* If someone can be bothered to fill in the labels, they can
1779 be bothered to null out the body too. */
1780 gcc_assert (!SWITCH_LABELS (switch_expr));
1782 /* Save old labels, get new ones from body, then restore the old
1783 labels. Save all the things from the switch body to append after. */
1784 saved_labels = gimplify_ctxp->case_labels;
1785 gimplify_ctxp->case_labels.create (8);
1787 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1788 labels = gimplify_ctxp->case_labels;
1789 gimplify_ctxp->case_labels = saved_labels;
1791 preprocess_case_label_vec_for_gimple (labels, index_type,
1792 &default_case);
1794 if (!default_case)
1796 gimple new_default;
1798 default_case
1799 = build_case_label (NULL_TREE, NULL_TREE,
1800 create_artificial_label (UNKNOWN_LOCATION));
1801 new_default = gimple_build_label (CASE_LABEL (default_case));
1802 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1805 gimple_switch = gimple_build_switch (SWITCH_COND (switch_expr),
1806 default_case, labels);
1807 gimplify_seq_add_stmt (pre_p, gimple_switch);
1808 gimplify_seq_add_seq (pre_p, switch_body_seq);
1809 labels.release ();
1811 else
1812 gcc_assert (SWITCH_LABELS (switch_expr));
1814 return GS_ALL_DONE;
1817 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1819 static enum gimplify_status
1820 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1822 struct gimplify_ctx *ctxp;
1823 gimple gimple_label;
1825 /* Invalid OpenMP programs can play Duff's Device type games with
1826 #pragma omp parallel. At least in the C front end, we don't
1827 detect such invalid branches until after gimplification. */
1828 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1829 if (ctxp->case_labels.exists ())
1830 break;
1832 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1833 ctxp->case_labels.safe_push (*expr_p);
1834 gimplify_seq_add_stmt (pre_p, gimple_label);
1836 return GS_ALL_DONE;
1839 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1840 if necessary. */
1842 tree
1843 build_and_jump (tree *label_p)
1845 if (label_p == NULL)
1846 /* If there's nowhere to jump, just fall through. */
1847 return NULL_TREE;
1849 if (*label_p == NULL_TREE)
1851 tree label = create_artificial_label (UNKNOWN_LOCATION);
1852 *label_p = label;
1855 return build1 (GOTO_EXPR, void_type_node, *label_p);
1858 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1859 This also involves building a label to jump to and communicating it to
1860 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1862 static enum gimplify_status
1863 gimplify_exit_expr (tree *expr_p)
1865 tree cond = TREE_OPERAND (*expr_p, 0);
1866 tree expr;
1868 expr = build_and_jump (&gimplify_ctxp->exit_label);
1869 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1870 *expr_p = expr;
1872 return GS_OK;
1875 /* A helper function to be called via walk_tree. Mark all labels under *TP
1876 as being forced. To be called for DECL_INITIAL of static variables. */
1878 tree
1879 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1881 if (TYPE_P (*tp))
1882 *walk_subtrees = 0;
1883 if (TREE_CODE (*tp) == LABEL_DECL)
1884 FORCED_LABEL (*tp) = 1;
1886 return NULL_TREE;
1889 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1890 different from its canonical type, wrap the whole thing inside a
1891 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1892 type.
1894 The canonical type of a COMPONENT_REF is the type of the field being
1895 referenced--unless the field is a bit-field which can be read directly
1896 in a smaller mode, in which case the canonical type is the
1897 sign-appropriate type corresponding to that mode. */
1899 static void
1900 canonicalize_component_ref (tree *expr_p)
1902 tree expr = *expr_p;
1903 tree type;
1905 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1907 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1908 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1909 else
1910 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1912 /* One could argue that all the stuff below is not necessary for
1913 the non-bitfield case and declare it a FE error if type
1914 adjustment would be needed. */
1915 if (TREE_TYPE (expr) != type)
1917 #ifdef ENABLE_TYPES_CHECKING
1918 tree old_type = TREE_TYPE (expr);
1919 #endif
1920 int type_quals;
1922 /* We need to preserve qualifiers and propagate them from
1923 operand 0. */
1924 type_quals = TYPE_QUALS (type)
1925 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1926 if (TYPE_QUALS (type) != type_quals)
1927 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1929 /* Set the type of the COMPONENT_REF to the underlying type. */
1930 TREE_TYPE (expr) = type;
1932 #ifdef ENABLE_TYPES_CHECKING
1933 /* It is now a FE error, if the conversion from the canonical
1934 type to the original expression type is not useless. */
1935 gcc_assert (useless_type_conversion_p (old_type, type));
1936 #endif
1940 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1941 to foo, embed that change in the ADDR_EXPR by converting
1942 T array[U];
1943 (T *)&array
1945 &array[L]
1946 where L is the lower bound. For simplicity, only do this for constant
1947 lower bound.
1948 The constraint is that the type of &array[L] is trivially convertible
1949 to T *. */
1951 static void
1952 canonicalize_addr_expr (tree *expr_p)
1954 tree expr = *expr_p;
1955 tree addr_expr = TREE_OPERAND (expr, 0);
1956 tree datype, ddatype, pddatype;
1958 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1959 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1960 || TREE_CODE (addr_expr) != ADDR_EXPR)
1961 return;
1963 /* The addr_expr type should be a pointer to an array. */
1964 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1965 if (TREE_CODE (datype) != ARRAY_TYPE)
1966 return;
1968 /* The pointer to element type shall be trivially convertible to
1969 the expression pointer type. */
1970 ddatype = TREE_TYPE (datype);
1971 pddatype = build_pointer_type (ddatype);
1972 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1973 pddatype))
1974 return;
1976 /* The lower bound and element sizes must be constant. */
1977 if (!TYPE_SIZE_UNIT (ddatype)
1978 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1979 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1980 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1981 return;
1983 /* All checks succeeded. Build a new node to merge the cast. */
1984 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1985 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1986 NULL_TREE, NULL_TREE);
1987 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1989 /* We can have stripped a required restrict qualifier above. */
1990 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1991 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1994 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1995 underneath as appropriate. */
1997 static enum gimplify_status
1998 gimplify_conversion (tree *expr_p)
2000 location_t loc = EXPR_LOCATION (*expr_p);
2001 gcc_assert (CONVERT_EXPR_P (*expr_p));
2003 /* Then strip away all but the outermost conversion. */
2004 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
2006 /* And remove the outermost conversion if it's useless. */
2007 if (tree_ssa_useless_type_conversion (*expr_p))
2008 *expr_p = TREE_OPERAND (*expr_p, 0);
2010 /* If we still have a conversion at the toplevel,
2011 then canonicalize some constructs. */
2012 if (CONVERT_EXPR_P (*expr_p))
2014 tree sub = TREE_OPERAND (*expr_p, 0);
2016 /* If a NOP conversion is changing the type of a COMPONENT_REF
2017 expression, then canonicalize its type now in order to expose more
2018 redundant conversions. */
2019 if (TREE_CODE (sub) == COMPONENT_REF)
2020 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
2022 /* If a NOP conversion is changing a pointer to array of foo
2023 to a pointer to foo, embed that change in the ADDR_EXPR. */
2024 else if (TREE_CODE (sub) == ADDR_EXPR)
2025 canonicalize_addr_expr (expr_p);
2028 /* If we have a conversion to a non-register type force the
2029 use of a VIEW_CONVERT_EXPR instead. */
2030 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
2031 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
2032 TREE_OPERAND (*expr_p, 0));
2034 return GS_OK;
2037 /* Nonlocal VLAs seen in the current function. */
2038 static struct pointer_set_t *nonlocal_vlas;
2040 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
2041 DECL_VALUE_EXPR, and it's worth re-examining things. */
2043 static enum gimplify_status
2044 gimplify_var_or_parm_decl (tree *expr_p)
2046 tree decl = *expr_p;
2048 /* ??? If this is a local variable, and it has not been seen in any
2049 outer BIND_EXPR, then it's probably the result of a duplicate
2050 declaration, for which we've already issued an error. It would
2051 be really nice if the front end wouldn't leak these at all.
2052 Currently the only known culprit is C++ destructors, as seen
2053 in g++.old-deja/g++.jason/binding.C. */
2054 if (TREE_CODE (decl) == VAR_DECL
2055 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
2056 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
2057 && decl_function_context (decl) == current_function_decl)
2059 gcc_assert (seen_error ());
2060 return GS_ERROR;
2063 /* When within an OpenMP context, notice uses of variables. */
2064 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
2065 return GS_ALL_DONE;
2067 /* If the decl is an alias for another expression, substitute it now. */
2068 if (DECL_HAS_VALUE_EXPR_P (decl))
2070 tree value_expr = DECL_VALUE_EXPR (decl);
2072 /* For referenced nonlocal VLAs add a decl for debugging purposes
2073 to the current function. */
2074 if (TREE_CODE (decl) == VAR_DECL
2075 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
2076 && nonlocal_vlas != NULL
2077 && TREE_CODE (value_expr) == INDIRECT_REF
2078 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
2079 && decl_function_context (decl) != current_function_decl)
2081 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
2082 while (ctx && ctx->region_type == ORT_WORKSHARE)
2083 ctx = ctx->outer_context;
2084 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
2086 tree copy = copy_node (decl), block;
2088 lang_hooks.dup_lang_specific_decl (copy);
2089 SET_DECL_RTL (copy, 0);
2090 TREE_USED (copy) = 1;
2091 block = DECL_INITIAL (current_function_decl);
2092 DECL_CHAIN (copy) = BLOCK_VARS (block);
2093 BLOCK_VARS (block) = copy;
2094 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
2095 DECL_HAS_VALUE_EXPR_P (copy) = 1;
2099 *expr_p = unshare_expr (value_expr);
2100 return GS_OK;
2103 return GS_ALL_DONE;
2106 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
2107 node *EXPR_P.
2109 compound_lval
2110 : min_lval '[' val ']'
2111 | min_lval '.' ID
2112 | compound_lval '[' val ']'
2113 | compound_lval '.' ID
2115 This is not part of the original SIMPLE definition, which separates
2116 array and member references, but it seems reasonable to handle them
2117 together. Also, this way we don't run into problems with union
2118 aliasing; gcc requires that for accesses through a union to alias, the
2119 union reference must be explicit, which was not always the case when we
2120 were splitting up array and member refs.
2122 PRE_P points to the sequence where side effects that must happen before
2123 *EXPR_P should be stored.
2125 POST_P points to the sequence where side effects that must happen after
2126 *EXPR_P should be stored. */
2128 static enum gimplify_status
2129 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2130 fallback_t fallback)
2132 tree *p;
2133 vec<tree> expr_stack;
2134 enum gimplify_status ret = GS_ALL_DONE, tret;
2135 int i;
2136 location_t loc = EXPR_LOCATION (*expr_p);
2137 tree expr = *expr_p;
2139 /* Create a stack of the subexpressions so later we can walk them in
2140 order from inner to outer. */
2141 expr_stack.create (10);
2143 /* We can handle anything that get_inner_reference can deal with. */
2144 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
2146 restart:
2147 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2148 if (TREE_CODE (*p) == INDIRECT_REF)
2149 *p = fold_indirect_ref_loc (loc, *p);
2151 if (handled_component_p (*p))
2153 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2154 additional COMPONENT_REFs. */
2155 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
2156 && gimplify_var_or_parm_decl (p) == GS_OK)
2157 goto restart;
2158 else
2159 break;
2161 expr_stack.safe_push (*p);
2164 gcc_assert (expr_stack.length ());
2166 /* Now EXPR_STACK is a stack of pointers to all the refs we've
2167 walked through and P points to the innermost expression.
2169 Java requires that we elaborated nodes in source order. That
2170 means we must gimplify the inner expression followed by each of
2171 the indices, in order. But we can't gimplify the inner
2172 expression until we deal with any variable bounds, sizes, or
2173 positions in order to deal with PLACEHOLDER_EXPRs.
2175 So we do this in three steps. First we deal with the annotations
2176 for any variables in the components, then we gimplify the base,
2177 then we gimplify any indices, from left to right. */
2178 for (i = expr_stack.length () - 1; i >= 0; i--)
2180 tree t = expr_stack[i];
2182 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2184 /* Gimplify the low bound and element type size and put them into
2185 the ARRAY_REF. If these values are set, they have already been
2186 gimplified. */
2187 if (TREE_OPERAND (t, 2) == NULL_TREE)
2189 tree low = unshare_expr (array_ref_low_bound (t));
2190 if (!is_gimple_min_invariant (low))
2192 TREE_OPERAND (t, 2) = low;
2193 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2194 post_p, is_gimple_reg,
2195 fb_rvalue);
2196 ret = MIN (ret, tret);
2199 else
2201 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2202 is_gimple_reg, fb_rvalue);
2203 ret = MIN (ret, tret);
2206 if (TREE_OPERAND (t, 3) == NULL_TREE)
2208 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2209 tree elmt_size = unshare_expr (array_ref_element_size (t));
2210 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2212 /* Divide the element size by the alignment of the element
2213 type (above). */
2214 elmt_size
2215 = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2217 if (!is_gimple_min_invariant (elmt_size))
2219 TREE_OPERAND (t, 3) = elmt_size;
2220 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2221 post_p, is_gimple_reg,
2222 fb_rvalue);
2223 ret = MIN (ret, tret);
2226 else
2228 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
2229 is_gimple_reg, fb_rvalue);
2230 ret = MIN (ret, tret);
2233 else if (TREE_CODE (t) == COMPONENT_REF)
2235 /* Set the field offset into T and gimplify it. */
2236 if (TREE_OPERAND (t, 2) == NULL_TREE)
2238 tree offset = unshare_expr (component_ref_field_offset (t));
2239 tree field = TREE_OPERAND (t, 1);
2240 tree factor
2241 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2243 /* Divide the offset by its alignment. */
2244 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2246 if (!is_gimple_min_invariant (offset))
2248 TREE_OPERAND (t, 2) = offset;
2249 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2250 post_p, is_gimple_reg,
2251 fb_rvalue);
2252 ret = MIN (ret, tret);
2255 else
2257 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2258 is_gimple_reg, fb_rvalue);
2259 ret = MIN (ret, tret);
2264 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2265 so as to match the min_lval predicate. Failure to do so may result
2266 in the creation of large aggregate temporaries. */
2267 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2268 fallback | fb_lvalue);
2269 ret = MIN (ret, tret);
2271 /* And finally, the indices and operands of ARRAY_REF. During this
2272 loop we also remove any useless conversions. */
2273 for (; expr_stack.length () > 0; )
2275 tree t = expr_stack.pop ();
2277 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2279 /* Gimplify the dimension. */
2280 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2282 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2283 is_gimple_val, fb_rvalue);
2284 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 expr_stack.release ();
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
2516 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
2517 switch (DECL_FUNCTION_CODE (fndecl))
2519 case BUILT_IN_VA_START:
2521 builtin_va_start_p = TRUE;
2522 if (call_expr_nargs (*expr_p) < 2)
2524 error ("too few arguments to function %<va_start%>");
2525 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2526 return GS_OK;
2529 if (fold_builtin_next_arg (*expr_p, true))
2531 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2532 return GS_OK;
2534 break;
2536 case BUILT_IN_LINE:
2538 expanded_location loc = expand_location (EXPR_LOCATION (*expr_p));
2539 *expr_p = build_int_cst (TREE_TYPE (*expr_p), loc.line);
2540 return GS_OK;
2542 case BUILT_IN_FILE:
2544 expanded_location loc = expand_location (EXPR_LOCATION (*expr_p));
2545 *expr_p = build_string_literal (strlen (loc.file) + 1, loc.file);
2546 return GS_OK;
2548 case BUILT_IN_FUNCTION:
2550 const char *function;
2551 function = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
2552 *expr_p = build_string_literal (strlen (function) + 1, function);
2553 return GS_OK;
2555 default:
2558 if (fndecl && DECL_BUILT_IN (fndecl))
2560 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2561 if (new_tree && new_tree != *expr_p)
2563 /* There was a transformation of this call which computes the
2564 same value, but in a more efficient way. Return and try
2565 again. */
2566 *expr_p = new_tree;
2567 return GS_OK;
2571 /* Remember the original function pointer type. */
2572 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2574 /* There is a sequence point before the call, so any side effects in
2575 the calling expression must occur before the actual call. Force
2576 gimplify_expr to use an internal post queue. */
2577 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2578 is_gimple_call_addr, fb_rvalue);
2580 nargs = call_expr_nargs (*expr_p);
2582 /* Get argument types for verification. */
2583 fndecl = get_callee_fndecl (*expr_p);
2584 parms = NULL_TREE;
2585 if (fndecl)
2586 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2587 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2588 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2590 if (fndecl && DECL_ARGUMENTS (fndecl))
2591 p = DECL_ARGUMENTS (fndecl);
2592 else if (parms)
2593 p = parms;
2594 else
2595 p = NULL_TREE;
2596 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2599 /* If the last argument is __builtin_va_arg_pack () and it is not
2600 passed as a named argument, decrease the number of CALL_EXPR
2601 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2602 if (!p
2603 && i < nargs
2604 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2606 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2607 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2609 if (last_arg_fndecl
2610 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2611 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2612 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2614 tree call = *expr_p;
2616 --nargs;
2617 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2618 CALL_EXPR_FN (call),
2619 nargs, CALL_EXPR_ARGP (call));
2621 /* Copy all CALL_EXPR flags, location and block, except
2622 CALL_EXPR_VA_ARG_PACK flag. */
2623 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2624 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2625 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2626 = CALL_EXPR_RETURN_SLOT_OPT (call);
2627 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2628 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2630 /* Set CALL_EXPR_VA_ARG_PACK. */
2631 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2635 /* Finally, gimplify the function arguments. */
2636 if (nargs > 0)
2638 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2639 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2640 PUSH_ARGS_REVERSED ? i-- : i++)
2642 enum gimplify_status t;
2644 /* Avoid gimplifying the second argument to va_start, which needs to
2645 be the plain PARM_DECL. */
2646 if ((i != 1) || !builtin_va_start_p)
2648 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2649 EXPR_LOCATION (*expr_p));
2651 if (t == GS_ERROR)
2652 ret = GS_ERROR;
2657 /* Verify the function result. */
2658 if (want_value && fndecl
2659 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2661 error_at (loc, "using result of function returning %<void%>");
2662 ret = GS_ERROR;
2665 /* Try this again in case gimplification exposed something. */
2666 if (ret != GS_ERROR)
2668 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2670 if (new_tree && new_tree != *expr_p)
2672 /* There was a transformation of this call which computes the
2673 same value, but in a more efficient way. Return and try
2674 again. */
2675 *expr_p = new_tree;
2676 return GS_OK;
2679 else
2681 *expr_p = error_mark_node;
2682 return GS_ERROR;
2685 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2686 decl. This allows us to eliminate redundant or useless
2687 calls to "const" functions. */
2688 if (TREE_CODE (*expr_p) == CALL_EXPR)
2690 int flags = call_expr_flags (*expr_p);
2691 if (flags & (ECF_CONST | ECF_PURE)
2692 /* An infinite loop is considered a side effect. */
2693 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2694 TREE_SIDE_EFFECTS (*expr_p) = 0;
2697 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2698 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2699 form and delegate the creation of a GIMPLE_CALL to
2700 gimplify_modify_expr. This is always possible because when
2701 WANT_VALUE is true, the caller wants the result of this call into
2702 a temporary, which means that we will emit an INIT_EXPR in
2703 internal_get_tmp_var which will then be handled by
2704 gimplify_modify_expr. */
2705 if (!want_value)
2707 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2708 have to do is replicate it as a GIMPLE_CALL tuple. */
2709 gimple_stmt_iterator gsi;
2710 call = gimple_build_call_from_tree (*expr_p);
2711 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2712 gimplify_seq_add_stmt (pre_p, call);
2713 gsi = gsi_last (*pre_p);
2714 fold_stmt (&gsi);
2715 *expr_p = NULL_TREE;
2717 else
2718 /* Remember the original function type. */
2719 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2720 CALL_EXPR_FN (*expr_p));
2722 return ret;
2725 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2726 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2728 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2729 condition is true or false, respectively. If null, we should generate
2730 our own to skip over the evaluation of this specific expression.
2732 LOCUS is the source location of the COND_EXPR.
2734 This function is the tree equivalent of do_jump.
2736 shortcut_cond_r should only be called by shortcut_cond_expr. */
2738 static tree
2739 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2740 location_t locus)
2742 tree local_label = NULL_TREE;
2743 tree t, expr = NULL;
2745 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2746 retain the shortcut semantics. Just insert the gotos here;
2747 shortcut_cond_expr will append the real blocks later. */
2748 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2750 location_t new_locus;
2752 /* Turn if (a && b) into
2754 if (a); else goto no;
2755 if (b) goto yes; else goto no;
2756 (no:) */
2758 if (false_label_p == NULL)
2759 false_label_p = &local_label;
2761 /* Keep the original source location on the first 'if'. */
2762 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, 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) == TRUTH_ORIF_EXPR)
2773 location_t new_locus;
2775 /* Turn if (a || b) into
2777 if (a) goto yes;
2778 if (b) goto yes; else goto no;
2779 (yes:) */
2781 if (true_label_p == NULL)
2782 true_label_p = &local_label;
2784 /* Keep the original source location on the first 'if'. */
2785 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2786 append_to_statement_list (t, &expr);
2788 /* Set the source location of the || on the second 'if'. */
2789 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2790 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2791 new_locus);
2792 append_to_statement_list (t, &expr);
2794 else if (TREE_CODE (pred) == COND_EXPR
2795 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 1)))
2796 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 2))))
2798 location_t new_locus;
2800 /* As long as we're messing with gotos, turn if (a ? b : c) into
2801 if (a)
2802 if (b) goto yes; else goto no;
2803 else
2804 if (c) goto yes; else goto no;
2806 Don't do this if one of the arms has void type, which can happen
2807 in C++ when the arm is throw. */
2809 /* Keep the original source location on the first 'if'. Set the source
2810 location of the ? on the second 'if'. */
2811 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2812 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2813 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2814 false_label_p, locus),
2815 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2816 false_label_p, new_locus));
2818 else
2820 expr = build3 (COND_EXPR, void_type_node, pred,
2821 build_and_jump (true_label_p),
2822 build_and_jump (false_label_p));
2823 SET_EXPR_LOCATION (expr, locus);
2826 if (local_label)
2828 t = build1 (LABEL_EXPR, void_type_node, local_label);
2829 append_to_statement_list (t, &expr);
2832 return expr;
2835 /* Given a conditional expression EXPR with short-circuit boolean
2836 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2837 predicate apart into the equivalent sequence of conditionals. */
2839 static tree
2840 shortcut_cond_expr (tree expr)
2842 tree pred = TREE_OPERAND (expr, 0);
2843 tree then_ = TREE_OPERAND (expr, 1);
2844 tree else_ = TREE_OPERAND (expr, 2);
2845 tree true_label, false_label, end_label, t;
2846 tree *true_label_p;
2847 tree *false_label_p;
2848 bool emit_end, emit_false, jump_over_else;
2849 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2850 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2852 /* First do simple transformations. */
2853 if (!else_se)
2855 /* If there is no 'else', turn
2856 if (a && b) then c
2857 into
2858 if (a) if (b) then c. */
2859 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2861 /* Keep the original source location on the first 'if'. */
2862 location_t locus = EXPR_LOC_OR_HERE (expr);
2863 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2864 /* Set the source location of the && on the second 'if'. */
2865 if (EXPR_HAS_LOCATION (pred))
2866 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2867 then_ = shortcut_cond_expr (expr);
2868 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2869 pred = TREE_OPERAND (pred, 0);
2870 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2871 SET_EXPR_LOCATION (expr, locus);
2875 if (!then_se)
2877 /* If there is no 'then', turn
2878 if (a || b); else d
2879 into
2880 if (a); else if (b); else d. */
2881 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2883 /* Keep the original source location on the first 'if'. */
2884 location_t locus = EXPR_LOC_OR_HERE (expr);
2885 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2886 /* Set the source location of the || on the second 'if'. */
2887 if (EXPR_HAS_LOCATION (pred))
2888 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2889 else_ = shortcut_cond_expr (expr);
2890 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2891 pred = TREE_OPERAND (pred, 0);
2892 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2893 SET_EXPR_LOCATION (expr, locus);
2897 /* If we're done, great. */
2898 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2899 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2900 return expr;
2902 /* Otherwise we need to mess with gotos. Change
2903 if (a) c; else d;
2905 if (a); else goto no;
2906 c; goto end;
2907 no: d; end:
2908 and recursively gimplify the condition. */
2910 true_label = false_label = end_label = NULL_TREE;
2912 /* If our arms just jump somewhere, hijack those labels so we don't
2913 generate jumps to jumps. */
2915 if (then_
2916 && TREE_CODE (then_) == GOTO_EXPR
2917 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2919 true_label = GOTO_DESTINATION (then_);
2920 then_ = NULL;
2921 then_se = false;
2924 if (else_
2925 && TREE_CODE (else_) == GOTO_EXPR
2926 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2928 false_label = GOTO_DESTINATION (else_);
2929 else_ = NULL;
2930 else_se = false;
2933 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2934 if (true_label)
2935 true_label_p = &true_label;
2936 else
2937 true_label_p = NULL;
2939 /* The 'else' branch also needs a label if it contains interesting code. */
2940 if (false_label || else_se)
2941 false_label_p = &false_label;
2942 else
2943 false_label_p = NULL;
2945 /* If there was nothing else in our arms, just forward the label(s). */
2946 if (!then_se && !else_se)
2947 return shortcut_cond_r (pred, true_label_p, false_label_p,
2948 EXPR_LOC_OR_HERE (expr));
2950 /* If our last subexpression already has a terminal label, reuse it. */
2951 if (else_se)
2952 t = expr_last (else_);
2953 else if (then_se)
2954 t = expr_last (then_);
2955 else
2956 t = NULL;
2957 if (t && TREE_CODE (t) == LABEL_EXPR)
2958 end_label = LABEL_EXPR_LABEL (t);
2960 /* If we don't care about jumping to the 'else' branch, jump to the end
2961 if the condition is false. */
2962 if (!false_label_p)
2963 false_label_p = &end_label;
2965 /* We only want to emit these labels if we aren't hijacking them. */
2966 emit_end = (end_label == NULL_TREE);
2967 emit_false = (false_label == NULL_TREE);
2969 /* We only emit the jump over the else clause if we have to--if the
2970 then clause may fall through. Otherwise we can wind up with a
2971 useless jump and a useless label at the end of gimplified code,
2972 which will cause us to think that this conditional as a whole
2973 falls through even if it doesn't. If we then inline a function
2974 which ends with such a condition, that can cause us to issue an
2975 inappropriate warning about control reaching the end of a
2976 non-void function. */
2977 jump_over_else = block_may_fallthru (then_);
2979 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2980 EXPR_LOC_OR_HERE (expr));
2982 expr = NULL;
2983 append_to_statement_list (pred, &expr);
2985 append_to_statement_list (then_, &expr);
2986 if (else_se)
2988 if (jump_over_else)
2990 tree last = expr_last (expr);
2991 t = build_and_jump (&end_label);
2992 if (EXPR_HAS_LOCATION (last))
2993 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2994 append_to_statement_list (t, &expr);
2996 if (emit_false)
2998 t = build1 (LABEL_EXPR, void_type_node, false_label);
2999 append_to_statement_list (t, &expr);
3001 append_to_statement_list (else_, &expr);
3003 if (emit_end && end_label)
3005 t = build1 (LABEL_EXPR, void_type_node, end_label);
3006 append_to_statement_list (t, &expr);
3009 return expr;
3012 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
3014 tree
3015 gimple_boolify (tree expr)
3017 tree type = TREE_TYPE (expr);
3018 location_t loc = EXPR_LOCATION (expr);
3020 if (TREE_CODE (expr) == NE_EXPR
3021 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
3022 && integer_zerop (TREE_OPERAND (expr, 1)))
3024 tree call = TREE_OPERAND (expr, 0);
3025 tree fn = get_callee_fndecl (call);
3027 /* For __builtin_expect ((long) (x), y) recurse into x as well
3028 if x is truth_value_p. */
3029 if (fn
3030 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
3031 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
3032 && call_expr_nargs (call) == 2)
3034 tree arg = CALL_EXPR_ARG (call, 0);
3035 if (arg)
3037 if (TREE_CODE (arg) == NOP_EXPR
3038 && TREE_TYPE (arg) == TREE_TYPE (call))
3039 arg = TREE_OPERAND (arg, 0);
3040 if (truth_value_p (TREE_CODE (arg)))
3042 arg = gimple_boolify (arg);
3043 CALL_EXPR_ARG (call, 0)
3044 = fold_convert_loc (loc, TREE_TYPE (call), arg);
3050 switch (TREE_CODE (expr))
3052 case TRUTH_AND_EXPR:
3053 case TRUTH_OR_EXPR:
3054 case TRUTH_XOR_EXPR:
3055 case TRUTH_ANDIF_EXPR:
3056 case TRUTH_ORIF_EXPR:
3057 /* Also boolify the arguments of truth exprs. */
3058 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
3059 /* FALLTHRU */
3061 case TRUTH_NOT_EXPR:
3062 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3064 /* These expressions always produce boolean results. */
3065 if (TREE_CODE (type) != BOOLEAN_TYPE)
3066 TREE_TYPE (expr) = boolean_type_node;
3067 return expr;
3069 default:
3070 if (COMPARISON_CLASS_P (expr))
3072 /* There expressions always prduce boolean results. */
3073 if (TREE_CODE (type) != BOOLEAN_TYPE)
3074 TREE_TYPE (expr) = boolean_type_node;
3075 return expr;
3077 /* Other expressions that get here must have boolean values, but
3078 might need to be converted to the appropriate mode. */
3079 if (TREE_CODE (type) == BOOLEAN_TYPE)
3080 return expr;
3081 return fold_convert_loc (loc, boolean_type_node, expr);
3085 /* Given a conditional expression *EXPR_P without side effects, gimplify
3086 its operands. New statements are inserted to PRE_P. */
3088 static enum gimplify_status
3089 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
3091 tree expr = *expr_p, cond;
3092 enum gimplify_status ret, tret;
3093 enum tree_code code;
3095 cond = gimple_boolify (COND_EXPR_COND (expr));
3097 /* We need to handle && and || specially, as their gimplification
3098 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
3099 code = TREE_CODE (cond);
3100 if (code == TRUTH_ANDIF_EXPR)
3101 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
3102 else if (code == TRUTH_ORIF_EXPR)
3103 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
3104 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
3105 COND_EXPR_COND (*expr_p) = cond;
3107 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
3108 is_gimple_val, fb_rvalue);
3109 ret = MIN (ret, tret);
3110 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
3111 is_gimple_val, fb_rvalue);
3113 return MIN (ret, tret);
3116 /* Return true if evaluating EXPR could trap.
3117 EXPR is GENERIC, while tree_could_trap_p can be called
3118 only on GIMPLE. */
3120 static bool
3121 generic_expr_could_trap_p (tree expr)
3123 unsigned i, n;
3125 if (!expr || is_gimple_val (expr))
3126 return false;
3128 if (!EXPR_P (expr) || tree_could_trap_p (expr))
3129 return true;
3131 n = TREE_OPERAND_LENGTH (expr);
3132 for (i = 0; i < n; i++)
3133 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
3134 return true;
3136 return false;
3139 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
3140 into
3142 if (p) if (p)
3143 t1 = a; a;
3144 else or else
3145 t1 = b; b;
3148 The second form is used when *EXPR_P is of type void.
3150 PRE_P points to the list where side effects that must happen before
3151 *EXPR_P should be stored. */
3153 static enum gimplify_status
3154 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
3156 tree expr = *expr_p;
3157 tree type = TREE_TYPE (expr);
3158 location_t loc = EXPR_LOCATION (expr);
3159 tree tmp, arm1, arm2;
3160 enum gimplify_status ret;
3161 tree label_true, label_false, label_cont;
3162 bool have_then_clause_p, have_else_clause_p;
3163 gimple gimple_cond;
3164 enum tree_code pred_code;
3165 gimple_seq seq = NULL;
3167 /* If this COND_EXPR has a value, copy the values into a temporary within
3168 the arms. */
3169 if (!VOID_TYPE_P (type))
3171 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
3172 tree result;
3174 /* If either an rvalue is ok or we do not require an lvalue, create the
3175 temporary. But we cannot do that if the type is addressable. */
3176 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
3177 && !TREE_ADDRESSABLE (type))
3179 if (gimplify_ctxp->allow_rhs_cond_expr
3180 /* If either branch has side effects or could trap, it can't be
3181 evaluated unconditionally. */
3182 && !TREE_SIDE_EFFECTS (then_)
3183 && !generic_expr_could_trap_p (then_)
3184 && !TREE_SIDE_EFFECTS (else_)
3185 && !generic_expr_could_trap_p (else_))
3186 return gimplify_pure_cond_expr (expr_p, pre_p);
3188 tmp = create_tmp_var (type, "iftmp");
3189 result = tmp;
3192 /* Otherwise, only create and copy references to the values. */
3193 else
3195 type = build_pointer_type (type);
3197 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3198 then_ = build_fold_addr_expr_loc (loc, then_);
3200 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3201 else_ = build_fold_addr_expr_loc (loc, else_);
3203 expr
3204 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
3206 tmp = create_tmp_var (type, "iftmp");
3207 result = build_simple_mem_ref_loc (loc, tmp);
3210 /* Build the new then clause, `tmp = then_;'. But don't build the
3211 assignment if the value is void; in C++ it can be if it's a throw. */
3212 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3213 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
3215 /* Similarly, build the new else clause, `tmp = else_;'. */
3216 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3217 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
3219 TREE_TYPE (expr) = void_type_node;
3220 recalculate_side_effects (expr);
3222 /* Move the COND_EXPR to the prequeue. */
3223 gimplify_stmt (&expr, pre_p);
3225 *expr_p = result;
3226 return GS_ALL_DONE;
3229 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3230 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3231 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3232 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3234 /* Make sure the condition has BOOLEAN_TYPE. */
3235 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3237 /* Break apart && and || conditions. */
3238 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3239 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3241 expr = shortcut_cond_expr (expr);
3243 if (expr != *expr_p)
3245 *expr_p = expr;
3247 /* We can't rely on gimplify_expr to re-gimplify the expanded
3248 form properly, as cleanups might cause the target labels to be
3249 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3250 set up a conditional context. */
3251 gimple_push_condition ();
3252 gimplify_stmt (expr_p, &seq);
3253 gimple_pop_condition (pre_p);
3254 gimple_seq_add_seq (pre_p, seq);
3256 return GS_ALL_DONE;
3260 /* Now do the normal gimplification. */
3262 /* Gimplify condition. */
3263 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3264 fb_rvalue);
3265 if (ret == GS_ERROR)
3266 return GS_ERROR;
3267 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3269 gimple_push_condition ();
3271 have_then_clause_p = have_else_clause_p = false;
3272 if (TREE_OPERAND (expr, 1) != NULL
3273 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3274 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3275 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3276 == current_function_decl)
3277 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3278 have different locations, otherwise we end up with incorrect
3279 location information on the branches. */
3280 && (optimize
3281 || !EXPR_HAS_LOCATION (expr)
3282 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3283 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3285 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3286 have_then_clause_p = true;
3288 else
3289 label_true = create_artificial_label (UNKNOWN_LOCATION);
3290 if (TREE_OPERAND (expr, 2) != NULL
3291 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3292 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3293 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3294 == current_function_decl)
3295 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3296 have different locations, otherwise we end up with incorrect
3297 location information on the branches. */
3298 && (optimize
3299 || !EXPR_HAS_LOCATION (expr)
3300 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3301 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3303 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3304 have_else_clause_p = true;
3306 else
3307 label_false = create_artificial_label (UNKNOWN_LOCATION);
3309 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3310 &arm2);
3312 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3313 label_false);
3315 gimplify_seq_add_stmt (&seq, gimple_cond);
3316 label_cont = NULL_TREE;
3317 if (!have_then_clause_p)
3319 /* For if (...) {} else { code; } put label_true after
3320 the else block. */
3321 if (TREE_OPERAND (expr, 1) == NULL_TREE
3322 && !have_else_clause_p
3323 && TREE_OPERAND (expr, 2) != NULL_TREE)
3324 label_cont = label_true;
3325 else
3327 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3328 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3329 /* For if (...) { code; } else {} or
3330 if (...) { code; } else goto label; or
3331 if (...) { code; return; } else { ... }
3332 label_cont isn't needed. */
3333 if (!have_else_clause_p
3334 && TREE_OPERAND (expr, 2) != NULL_TREE
3335 && gimple_seq_may_fallthru (seq))
3337 gimple g;
3338 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3340 g = gimple_build_goto (label_cont);
3342 /* GIMPLE_COND's are very low level; they have embedded
3343 gotos. This particular embedded goto should not be marked
3344 with the location of the original COND_EXPR, as it would
3345 correspond to the COND_EXPR's condition, not the ELSE or the
3346 THEN arms. To avoid marking it with the wrong location, flag
3347 it as "no location". */
3348 gimple_set_do_not_emit_location (g);
3350 gimplify_seq_add_stmt (&seq, g);
3354 if (!have_else_clause_p)
3356 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3357 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3359 if (label_cont)
3360 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3362 gimple_pop_condition (pre_p);
3363 gimple_seq_add_seq (pre_p, seq);
3365 if (ret == GS_ERROR)
3366 ; /* Do nothing. */
3367 else if (have_then_clause_p || have_else_clause_p)
3368 ret = GS_ALL_DONE;
3369 else
3371 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3372 expr = TREE_OPERAND (expr, 0);
3373 gimplify_stmt (&expr, pre_p);
3376 *expr_p = NULL;
3377 return ret;
3380 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3381 to be marked addressable.
3383 We cannot rely on such an expression being directly markable if a temporary
3384 has been created by the gimplification. In this case, we create another
3385 temporary and initialize it with a copy, which will become a store after we
3386 mark it addressable. This can happen if the front-end passed us something
3387 that it could not mark addressable yet, like a Fortran pass-by-reference
3388 parameter (int) floatvar. */
3390 static void
3391 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3393 while (handled_component_p (*expr_p))
3394 expr_p = &TREE_OPERAND (*expr_p, 0);
3395 if (is_gimple_reg (*expr_p))
3396 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3399 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3400 a call to __builtin_memcpy. */
3402 static enum gimplify_status
3403 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3404 gimple_seq *seq_p)
3406 tree t, to, to_ptr, from, from_ptr;
3407 gimple gs;
3408 location_t loc = EXPR_LOCATION (*expr_p);
3410 to = TREE_OPERAND (*expr_p, 0);
3411 from = TREE_OPERAND (*expr_p, 1);
3413 /* Mark the RHS addressable. Beware that it may not be possible to do so
3414 directly if a temporary has been created by the gimplification. */
3415 prepare_gimple_addressable (&from, seq_p);
3417 mark_addressable (from);
3418 from_ptr = build_fold_addr_expr_loc (loc, from);
3419 gimplify_arg (&from_ptr, seq_p, loc);
3421 mark_addressable (to);
3422 to_ptr = build_fold_addr_expr_loc (loc, to);
3423 gimplify_arg (&to_ptr, seq_p, loc);
3425 t = builtin_decl_implicit (BUILT_IN_MEMCPY);
3427 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3429 if (want_value)
3431 /* tmp = memcpy() */
3432 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3433 gimple_call_set_lhs (gs, t);
3434 gimplify_seq_add_stmt (seq_p, gs);
3436 *expr_p = build_simple_mem_ref (t);
3437 return GS_ALL_DONE;
3440 gimplify_seq_add_stmt (seq_p, gs);
3441 *expr_p = NULL;
3442 return GS_ALL_DONE;
3445 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3446 a call to __builtin_memset. In this case we know that the RHS is
3447 a CONSTRUCTOR with an empty element list. */
3449 static enum gimplify_status
3450 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3451 gimple_seq *seq_p)
3453 tree t, from, to, to_ptr;
3454 gimple gs;
3455 location_t loc = EXPR_LOCATION (*expr_p);
3457 /* Assert our assumptions, to abort instead of producing wrong code
3458 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3459 not be immediately exposed. */
3460 from = TREE_OPERAND (*expr_p, 1);
3461 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3462 from = TREE_OPERAND (from, 0);
3464 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3465 && vec_safe_is_empty (CONSTRUCTOR_ELTS (from)));
3467 /* Now proceed. */
3468 to = TREE_OPERAND (*expr_p, 0);
3470 to_ptr = build_fold_addr_expr_loc (loc, to);
3471 gimplify_arg (&to_ptr, seq_p, loc);
3472 t = builtin_decl_implicit (BUILT_IN_MEMSET);
3474 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3476 if (want_value)
3478 /* tmp = memset() */
3479 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3480 gimple_call_set_lhs (gs, t);
3481 gimplify_seq_add_stmt (seq_p, gs);
3483 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3484 return GS_ALL_DONE;
3487 gimplify_seq_add_stmt (seq_p, gs);
3488 *expr_p = NULL;
3489 return GS_ALL_DONE;
3492 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3493 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3494 assignment. Return non-null if we detect a potential overlap. */
3496 struct gimplify_init_ctor_preeval_data
3498 /* The base decl of the lhs object. May be NULL, in which case we
3499 have to assume the lhs is indirect. */
3500 tree lhs_base_decl;
3502 /* The alias set of the lhs object. */
3503 alias_set_type lhs_alias_set;
3506 static tree
3507 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3509 struct gimplify_init_ctor_preeval_data *data
3510 = (struct gimplify_init_ctor_preeval_data *) xdata;
3511 tree t = *tp;
3513 /* If we find the base object, obviously we have overlap. */
3514 if (data->lhs_base_decl == t)
3515 return t;
3517 /* If the constructor component is indirect, determine if we have a
3518 potential overlap with the lhs. The only bits of information we
3519 have to go on at this point are addressability and alias sets. */
3520 if ((INDIRECT_REF_P (t)
3521 || TREE_CODE (t) == MEM_REF)
3522 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3523 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3524 return t;
3526 /* If the constructor component is a call, determine if it can hide a
3527 potential overlap with the lhs through an INDIRECT_REF like above.
3528 ??? Ugh - this is completely broken. In fact this whole analysis
3529 doesn't look conservative. */
3530 if (TREE_CODE (t) == CALL_EXPR)
3532 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3534 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3535 if (POINTER_TYPE_P (TREE_VALUE (type))
3536 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3537 && alias_sets_conflict_p (data->lhs_alias_set,
3538 get_alias_set
3539 (TREE_TYPE (TREE_VALUE (type)))))
3540 return t;
3543 if (IS_TYPE_OR_DECL_P (t))
3544 *walk_subtrees = 0;
3545 return NULL;
3548 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3549 force values that overlap with the lhs (as described by *DATA)
3550 into temporaries. */
3552 static void
3553 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3554 struct gimplify_init_ctor_preeval_data *data)
3556 enum gimplify_status one;
3558 /* If the value is constant, then there's nothing to pre-evaluate. */
3559 if (TREE_CONSTANT (*expr_p))
3561 /* Ensure it does not have side effects, it might contain a reference to
3562 the object we're initializing. */
3563 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3564 return;
3567 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3568 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3569 return;
3571 /* Recurse for nested constructors. */
3572 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3574 unsigned HOST_WIDE_INT ix;
3575 constructor_elt *ce;
3576 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (*expr_p);
3578 FOR_EACH_VEC_SAFE_ELT (v, ix, ce)
3579 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3581 return;
3584 /* If this is a variable sized type, we must remember the size. */
3585 maybe_with_size_expr (expr_p);
3587 /* Gimplify the constructor element to something appropriate for the rhs
3588 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3589 the gimplifier will consider this a store to memory. Doing this
3590 gimplification now means that we won't have to deal with complicated
3591 language-specific trees, nor trees like SAVE_EXPR that can induce
3592 exponential search behavior. */
3593 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3594 if (one == GS_ERROR)
3596 *expr_p = NULL;
3597 return;
3600 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3601 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3602 always be true for all scalars, since is_gimple_mem_rhs insists on a
3603 temporary variable for them. */
3604 if (DECL_P (*expr_p))
3605 return;
3607 /* If this is of variable size, we have no choice but to assume it doesn't
3608 overlap since we can't make a temporary for it. */
3609 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3610 return;
3612 /* Otherwise, we must search for overlap ... */
3613 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3614 return;
3616 /* ... and if found, force the value into a temporary. */
3617 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3620 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3621 a RANGE_EXPR in a CONSTRUCTOR for an array.
3623 var = lower;
3624 loop_entry:
3625 object[var] = value;
3626 if (var == upper)
3627 goto loop_exit;
3628 var = var + 1;
3629 goto loop_entry;
3630 loop_exit:
3632 We increment var _after_ the loop exit check because we might otherwise
3633 fail if upper == TYPE_MAX_VALUE (type for upper).
3635 Note that we never have to deal with SAVE_EXPRs here, because this has
3636 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3638 static void gimplify_init_ctor_eval (tree, vec<constructor_elt, va_gc> *,
3639 gimple_seq *, bool);
3641 static void
3642 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3643 tree value, tree array_elt_type,
3644 gimple_seq *pre_p, bool cleared)
3646 tree loop_entry_label, loop_exit_label, fall_thru_label;
3647 tree var, var_type, cref, tmp;
3649 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3650 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3651 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3653 /* Create and initialize the index variable. */
3654 var_type = TREE_TYPE (upper);
3655 var = create_tmp_var (var_type, NULL);
3656 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3658 /* Add the loop entry label. */
3659 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3661 /* Build the reference. */
3662 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3663 var, NULL_TREE, NULL_TREE);
3665 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3666 the store. Otherwise just assign value to the reference. */
3668 if (TREE_CODE (value) == CONSTRUCTOR)
3669 /* NB we might have to call ourself recursively through
3670 gimplify_init_ctor_eval if the value is a constructor. */
3671 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3672 pre_p, cleared);
3673 else
3674 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3676 /* We exit the loop when the index var is equal to the upper bound. */
3677 gimplify_seq_add_stmt (pre_p,
3678 gimple_build_cond (EQ_EXPR, var, upper,
3679 loop_exit_label, fall_thru_label));
3681 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3683 /* Otherwise, increment the index var... */
3684 tmp = build2 (PLUS_EXPR, var_type, var,
3685 fold_convert (var_type, integer_one_node));
3686 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3688 /* ...and jump back to the loop entry. */
3689 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3691 /* Add the loop exit label. */
3692 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3695 /* Return true if FDECL is accessing a field that is zero sized. */
3697 static bool
3698 zero_sized_field_decl (const_tree fdecl)
3700 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3701 && integer_zerop (DECL_SIZE (fdecl)))
3702 return true;
3703 return false;
3706 /* Return true if TYPE is zero sized. */
3708 static bool
3709 zero_sized_type (const_tree type)
3711 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3712 && integer_zerop (TYPE_SIZE (type)))
3713 return true;
3714 return false;
3717 /* A subroutine of gimplify_init_constructor. Generate individual
3718 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3719 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3720 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3721 zeroed first. */
3723 static void
3724 gimplify_init_ctor_eval (tree object, vec<constructor_elt, va_gc> *elts,
3725 gimple_seq *pre_p, bool cleared)
3727 tree array_elt_type = NULL;
3728 unsigned HOST_WIDE_INT ix;
3729 tree purpose, value;
3731 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3732 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3734 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3736 tree cref;
3738 /* NULL values are created above for gimplification errors. */
3739 if (value == NULL)
3740 continue;
3742 if (cleared && initializer_zerop (value))
3743 continue;
3745 /* ??? Here's to hoping the front end fills in all of the indices,
3746 so we don't have to figure out what's missing ourselves. */
3747 gcc_assert (purpose);
3749 /* Skip zero-sized fields, unless value has side-effects. This can
3750 happen with calls to functions returning a zero-sized type, which
3751 we shouldn't discard. As a number of downstream passes don't
3752 expect sets of zero-sized fields, we rely on the gimplification of
3753 the MODIFY_EXPR we make below to drop the assignment statement. */
3754 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3755 continue;
3757 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3758 whole range. */
3759 if (TREE_CODE (purpose) == RANGE_EXPR)
3761 tree lower = TREE_OPERAND (purpose, 0);
3762 tree upper = TREE_OPERAND (purpose, 1);
3764 /* If the lower bound is equal to upper, just treat it as if
3765 upper was the index. */
3766 if (simple_cst_equal (lower, upper))
3767 purpose = upper;
3768 else
3770 gimplify_init_ctor_eval_range (object, lower, upper, value,
3771 array_elt_type, pre_p, cleared);
3772 continue;
3776 if (array_elt_type)
3778 /* Do not use bitsizetype for ARRAY_REF indices. */
3779 if (TYPE_DOMAIN (TREE_TYPE (object)))
3780 purpose
3781 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3782 purpose);
3783 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3784 purpose, NULL_TREE, NULL_TREE);
3786 else
3788 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3789 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3790 unshare_expr (object), purpose, NULL_TREE);
3793 if (TREE_CODE (value) == CONSTRUCTOR
3794 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3795 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3796 pre_p, cleared);
3797 else
3799 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3800 gimplify_and_add (init, pre_p);
3801 ggc_free (init);
3806 /* Return the appropriate RHS predicate for this LHS. */
3808 gimple_predicate
3809 rhs_predicate_for (tree lhs)
3811 if (is_gimple_reg (lhs))
3812 return is_gimple_reg_rhs_or_call;
3813 else
3814 return is_gimple_mem_rhs_or_call;
3817 /* Gimplify a C99 compound literal expression. This just means adding
3818 the DECL_EXPR before the current statement and using its anonymous
3819 decl instead. */
3821 static enum gimplify_status
3822 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p,
3823 bool (*gimple_test_f) (tree),
3824 fallback_t fallback)
3826 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3827 tree decl = DECL_EXPR_DECL (decl_s);
3828 tree init = DECL_INITIAL (decl);
3829 /* Mark the decl as addressable if the compound literal
3830 expression is addressable now, otherwise it is marked too late
3831 after we gimplify the initialization expression. */
3832 if (TREE_ADDRESSABLE (*expr_p))
3833 TREE_ADDRESSABLE (decl) = 1;
3834 /* Otherwise, if we don't need an lvalue and have a literal directly
3835 substitute it. Check if it matches the gimple predicate, as
3836 otherwise we'd generate a new temporary, and we can as well just
3837 use the decl we already have. */
3838 else if (!TREE_ADDRESSABLE (decl)
3839 && init
3840 && (fallback & fb_lvalue) == 0
3841 && gimple_test_f (init))
3843 *expr_p = init;
3844 return GS_OK;
3847 /* Preliminarily mark non-addressed complex variables as eligible
3848 for promotion to gimple registers. We'll transform their uses
3849 as we find them. */
3850 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3851 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3852 && !TREE_THIS_VOLATILE (decl)
3853 && !needs_to_live_in_memory (decl))
3854 DECL_GIMPLE_REG_P (decl) = 1;
3856 /* If the decl is not addressable, then it is being used in some
3857 expression or on the right hand side of a statement, and it can
3858 be put into a readonly data section. */
3859 if (!TREE_ADDRESSABLE (decl) && (fallback & fb_lvalue) == 0)
3860 TREE_READONLY (decl) = 1;
3862 /* This decl isn't mentioned in the enclosing block, so add it to the
3863 list of temps. FIXME it seems a bit of a kludge to say that
3864 anonymous artificial vars aren't pushed, but everything else is. */
3865 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3866 gimple_add_tmp_var (decl);
3868 gimplify_and_add (decl_s, pre_p);
3869 *expr_p = decl;
3870 return GS_OK;
3873 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3874 return a new CONSTRUCTOR if something changed. */
3876 static tree
3877 optimize_compound_literals_in_ctor (tree orig_ctor)
3879 tree ctor = orig_ctor;
3880 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ctor);
3881 unsigned int idx, num = vec_safe_length (elts);
3883 for (idx = 0; idx < num; idx++)
3885 tree value = (*elts)[idx].value;
3886 tree newval = value;
3887 if (TREE_CODE (value) == CONSTRUCTOR)
3888 newval = optimize_compound_literals_in_ctor (value);
3889 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3891 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3892 tree decl = DECL_EXPR_DECL (decl_s);
3893 tree init = DECL_INITIAL (decl);
3895 if (!TREE_ADDRESSABLE (value)
3896 && !TREE_ADDRESSABLE (decl)
3897 && init
3898 && TREE_CODE (init) == CONSTRUCTOR)
3899 newval = optimize_compound_literals_in_ctor (init);
3901 if (newval == value)
3902 continue;
3904 if (ctor == orig_ctor)
3906 ctor = copy_node (orig_ctor);
3907 CONSTRUCTOR_ELTS (ctor) = vec_safe_copy (elts);
3908 elts = CONSTRUCTOR_ELTS (ctor);
3910 (*elts)[idx].value = newval;
3912 return ctor;
3915 /* A subroutine of gimplify_modify_expr. Break out elements of a
3916 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3918 Note that we still need to clear any elements that don't have explicit
3919 initializers, so if not all elements are initialized we keep the
3920 original MODIFY_EXPR, we just remove all of the constructor elements.
3922 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3923 GS_ERROR if we would have to create a temporary when gimplifying
3924 this constructor. Otherwise, return GS_OK.
3926 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3928 static enum gimplify_status
3929 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3930 bool want_value, bool notify_temp_creation)
3932 tree object, ctor, type;
3933 enum gimplify_status ret;
3934 vec<constructor_elt, va_gc> *elts;
3936 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3938 if (!notify_temp_creation)
3940 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3941 is_gimple_lvalue, fb_lvalue);
3942 if (ret == GS_ERROR)
3943 return ret;
3946 object = TREE_OPERAND (*expr_p, 0);
3947 ctor = TREE_OPERAND (*expr_p, 1) =
3948 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3949 type = TREE_TYPE (ctor);
3950 elts = CONSTRUCTOR_ELTS (ctor);
3951 ret = GS_ALL_DONE;
3953 switch (TREE_CODE (type))
3955 case RECORD_TYPE:
3956 case UNION_TYPE:
3957 case QUAL_UNION_TYPE:
3958 case ARRAY_TYPE:
3960 struct gimplify_init_ctor_preeval_data preeval_data;
3961 HOST_WIDE_INT num_ctor_elements, num_nonzero_elements;
3962 bool cleared, complete_p, valid_const_initializer;
3964 /* Aggregate types must lower constructors to initialization of
3965 individual elements. The exception is that a CONSTRUCTOR node
3966 with no elements indicates zero-initialization of the whole. */
3967 if (vec_safe_is_empty (elts))
3969 if (notify_temp_creation)
3970 return GS_OK;
3971 break;
3974 /* Fetch information about the constructor to direct later processing.
3975 We might want to make static versions of it in various cases, and
3976 can only do so if it known to be a valid constant initializer. */
3977 valid_const_initializer
3978 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3979 &num_ctor_elements, &complete_p);
3981 /* If a const aggregate variable is being initialized, then it
3982 should never be a lose to promote the variable to be static. */
3983 if (valid_const_initializer
3984 && num_nonzero_elements > 1
3985 && TREE_READONLY (object)
3986 && TREE_CODE (object) == VAR_DECL
3987 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3989 if (notify_temp_creation)
3990 return GS_ERROR;
3991 DECL_INITIAL (object) = ctor;
3992 TREE_STATIC (object) = 1;
3993 if (!DECL_NAME (object))
3994 DECL_NAME (object) = create_tmp_var_name ("C");
3995 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3997 /* ??? C++ doesn't automatically append a .<number> to the
3998 assembler name, and even when it does, it looks at FE private
3999 data structures to figure out what that number should be,
4000 which are not set for this variable. I suppose this is
4001 important for local statics for inline functions, which aren't
4002 "local" in the object file sense. So in order to get a unique
4003 TU-local symbol, we must invoke the lhd version now. */
4004 lhd_set_decl_assembler_name (object);
4006 *expr_p = NULL_TREE;
4007 break;
4010 /* If there are "lots" of initialized elements, even discounting
4011 those that are not address constants (and thus *must* be
4012 computed at runtime), then partition the constructor into
4013 constant and non-constant parts. Block copy the constant
4014 parts in, then generate code for the non-constant parts. */
4015 /* TODO. There's code in cp/typeck.c to do this. */
4017 if (int_size_in_bytes (TREE_TYPE (ctor)) < 0)
4018 /* store_constructor will ignore the clearing of variable-sized
4019 objects. Initializers for such objects must explicitly set
4020 every field that needs to be set. */
4021 cleared = false;
4022 else if (!complete_p)
4023 /* If the constructor isn't complete, clear the whole object
4024 beforehand.
4026 ??? This ought not to be needed. For any element not present
4027 in the initializer, we should simply set them to zero. Except
4028 we'd need to *find* the elements that are not present, and that
4029 requires trickery to avoid quadratic compile-time behavior in
4030 large cases or excessive memory use in small cases. */
4031 cleared = true;
4032 else if (num_ctor_elements - num_nonzero_elements
4033 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
4034 && num_nonzero_elements < num_ctor_elements / 4)
4035 /* If there are "lots" of zeros, it's more efficient to clear
4036 the memory and then set the nonzero elements. */
4037 cleared = true;
4038 else
4039 cleared = false;
4041 /* If there are "lots" of initialized elements, and all of them
4042 are valid address constants, then the entire initializer can
4043 be dropped to memory, and then memcpy'd out. Don't do this
4044 for sparse arrays, though, as it's more efficient to follow
4045 the standard CONSTRUCTOR behavior of memset followed by
4046 individual element initialization. Also don't do this for small
4047 all-zero initializers (which aren't big enough to merit
4048 clearing), and don't try to make bitwise copies of
4049 TREE_ADDRESSABLE types. */
4050 if (valid_const_initializer
4051 && !(cleared || num_nonzero_elements == 0)
4052 && !TREE_ADDRESSABLE (type))
4054 HOST_WIDE_INT size = int_size_in_bytes (type);
4055 unsigned int align;
4057 /* ??? We can still get unbounded array types, at least
4058 from the C++ front end. This seems wrong, but attempt
4059 to work around it for now. */
4060 if (size < 0)
4062 size = int_size_in_bytes (TREE_TYPE (object));
4063 if (size >= 0)
4064 TREE_TYPE (ctor) = type = TREE_TYPE (object);
4067 /* Find the maximum alignment we can assume for the object. */
4068 /* ??? Make use of DECL_OFFSET_ALIGN. */
4069 if (DECL_P (object))
4070 align = DECL_ALIGN (object);
4071 else
4072 align = TYPE_ALIGN (type);
4074 /* Do a block move either if the size is so small as to make
4075 each individual move a sub-unit move on average, or if it
4076 is so large as to make individual moves inefficient. */
4077 if (size > 0
4078 && num_nonzero_elements > 1
4079 && (size < num_nonzero_elements
4080 || !can_move_by_pieces (size, align)))
4082 if (notify_temp_creation)
4083 return GS_ERROR;
4085 walk_tree (&ctor, force_labels_r, NULL, NULL);
4086 ctor = tree_output_constant_def (ctor);
4087 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
4088 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
4089 TREE_OPERAND (*expr_p, 1) = ctor;
4091 /* This is no longer an assignment of a CONSTRUCTOR, but
4092 we still may have processing to do on the LHS. So
4093 pretend we didn't do anything here to let that happen. */
4094 return GS_UNHANDLED;
4098 /* If the target is volatile, we have non-zero elements and more than
4099 one field to assign, initialize the target from a temporary. */
4100 if (TREE_THIS_VOLATILE (object)
4101 && !TREE_ADDRESSABLE (type)
4102 && num_nonzero_elements > 0
4103 && vec_safe_length (elts) > 1)
4105 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
4106 TREE_OPERAND (*expr_p, 0) = temp;
4107 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
4108 *expr_p,
4109 build2 (MODIFY_EXPR, void_type_node,
4110 object, temp));
4111 return GS_OK;
4114 if (notify_temp_creation)
4115 return GS_OK;
4117 /* If there are nonzero elements and if needed, pre-evaluate to capture
4118 elements overlapping with the lhs into temporaries. We must do this
4119 before clearing to fetch the values before they are zeroed-out. */
4120 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
4122 preeval_data.lhs_base_decl = get_base_address (object);
4123 if (!DECL_P (preeval_data.lhs_base_decl))
4124 preeval_data.lhs_base_decl = NULL;
4125 preeval_data.lhs_alias_set = get_alias_set (object);
4127 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
4128 pre_p, post_p, &preeval_data);
4131 if (cleared)
4133 /* Zap the CONSTRUCTOR element list, which simplifies this case.
4134 Note that we still have to gimplify, in order to handle the
4135 case of variable sized types. Avoid shared tree structures. */
4136 CONSTRUCTOR_ELTS (ctor) = NULL;
4137 TREE_SIDE_EFFECTS (ctor) = 0;
4138 object = unshare_expr (object);
4139 gimplify_stmt (expr_p, pre_p);
4142 /* If we have not block cleared the object, or if there are nonzero
4143 elements in the constructor, add assignments to the individual
4144 scalar fields of the object. */
4145 if (!cleared || num_nonzero_elements > 0)
4146 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
4148 *expr_p = NULL_TREE;
4150 break;
4152 case COMPLEX_TYPE:
4154 tree r, i;
4156 if (notify_temp_creation)
4157 return GS_OK;
4159 /* Extract the real and imaginary parts out of the ctor. */
4160 gcc_assert (elts->length () == 2);
4161 r = (*elts)[0].value;
4162 i = (*elts)[1].value;
4163 if (r == NULL || i == NULL)
4165 tree zero = build_zero_cst (TREE_TYPE (type));
4166 if (r == NULL)
4167 r = zero;
4168 if (i == NULL)
4169 i = zero;
4172 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
4173 represent creation of a complex value. */
4174 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
4176 ctor = build_complex (type, r, i);
4177 TREE_OPERAND (*expr_p, 1) = ctor;
4179 else
4181 ctor = build2 (COMPLEX_EXPR, type, r, i);
4182 TREE_OPERAND (*expr_p, 1) = ctor;
4183 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
4184 pre_p,
4185 post_p,
4186 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
4187 fb_rvalue);
4190 break;
4192 case VECTOR_TYPE:
4194 unsigned HOST_WIDE_INT ix;
4195 constructor_elt *ce;
4197 if (notify_temp_creation)
4198 return GS_OK;
4200 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4201 if (TREE_CONSTANT (ctor))
4203 bool constant_p = true;
4204 tree value;
4206 /* Even when ctor is constant, it might contain non-*_CST
4207 elements, such as addresses or trapping values like
4208 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4209 in VECTOR_CST nodes. */
4210 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
4211 if (!CONSTANT_CLASS_P (value))
4213 constant_p = false;
4214 break;
4217 if (constant_p)
4219 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
4220 break;
4223 /* Don't reduce an initializer constant even if we can't
4224 make a VECTOR_CST. It won't do anything for us, and it'll
4225 prevent us from representing it as a single constant. */
4226 if (initializer_constant_valid_p (ctor, type))
4227 break;
4229 TREE_CONSTANT (ctor) = 0;
4232 /* Vector types use CONSTRUCTOR all the way through gimple
4233 compilation as a general initializer. */
4234 FOR_EACH_VEC_SAFE_ELT (elts, ix, ce)
4236 enum gimplify_status tret;
4237 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
4238 fb_rvalue);
4239 if (tret == GS_ERROR)
4240 ret = GS_ERROR;
4242 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
4243 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4245 break;
4247 default:
4248 /* So how did we get a CONSTRUCTOR for a scalar type? */
4249 gcc_unreachable ();
4252 if (ret == GS_ERROR)
4253 return GS_ERROR;
4254 else if (want_value)
4256 *expr_p = object;
4257 return GS_OK;
4259 else
4261 /* If we have gimplified both sides of the initializer but have
4262 not emitted an assignment, do so now. */
4263 if (*expr_p)
4265 tree lhs = TREE_OPERAND (*expr_p, 0);
4266 tree rhs = TREE_OPERAND (*expr_p, 1);
4267 gimple init = gimple_build_assign (lhs, rhs);
4268 gimplify_seq_add_stmt (pre_p, init);
4269 *expr_p = NULL;
4272 return GS_ALL_DONE;
4276 /* Given a pointer value OP0, return a simplified version of an
4277 indirection through OP0, or NULL_TREE if no simplification is
4278 possible. Note that the resulting type may be different from
4279 the type pointed to in the sense that it is still compatible
4280 from the langhooks point of view. */
4282 tree
4283 gimple_fold_indirect_ref (tree t)
4285 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4286 tree sub = t;
4287 tree subtype;
4289 STRIP_NOPS (sub);
4290 subtype = TREE_TYPE (sub);
4291 if (!POINTER_TYPE_P (subtype))
4292 return NULL_TREE;
4294 if (TREE_CODE (sub) == ADDR_EXPR)
4296 tree op = TREE_OPERAND (sub, 0);
4297 tree optype = TREE_TYPE (op);
4298 /* *&p => p */
4299 if (useless_type_conversion_p (type, optype))
4300 return op;
4302 /* *(foo *)&fooarray => fooarray[0] */
4303 if (TREE_CODE (optype) == ARRAY_TYPE
4304 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4305 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4307 tree type_domain = TYPE_DOMAIN (optype);
4308 tree min_val = size_zero_node;
4309 if (type_domain && TYPE_MIN_VALUE (type_domain))
4310 min_val = TYPE_MIN_VALUE (type_domain);
4311 if (TREE_CODE (min_val) == INTEGER_CST)
4312 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4314 /* *(foo *)&complexfoo => __real__ complexfoo */
4315 else if (TREE_CODE (optype) == COMPLEX_TYPE
4316 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4317 return fold_build1 (REALPART_EXPR, type, op);
4318 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4319 else if (TREE_CODE (optype) == VECTOR_TYPE
4320 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4322 tree part_width = TYPE_SIZE (type);
4323 tree index = bitsize_int (0);
4324 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4328 /* *(p + CST) -> ... */
4329 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4330 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4332 tree addr = TREE_OPERAND (sub, 0);
4333 tree off = TREE_OPERAND (sub, 1);
4334 tree addrtype;
4336 STRIP_NOPS (addr);
4337 addrtype = TREE_TYPE (addr);
4339 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4340 if (TREE_CODE (addr) == ADDR_EXPR
4341 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4342 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4343 && host_integerp (off, 1))
4345 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4346 tree part_width = TYPE_SIZE (type);
4347 unsigned HOST_WIDE_INT part_widthi
4348 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4349 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4350 tree index = bitsize_int (indexi);
4351 if (offset / part_widthi
4352 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4353 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4354 part_width, index);
4357 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4358 if (TREE_CODE (addr) == ADDR_EXPR
4359 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4360 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4362 tree size = TYPE_SIZE_UNIT (type);
4363 if (tree_int_cst_equal (size, off))
4364 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4367 /* *(p + CST) -> MEM_REF <p, CST>. */
4368 if (TREE_CODE (addr) != ADDR_EXPR
4369 || DECL_P (TREE_OPERAND (addr, 0)))
4370 return fold_build2 (MEM_REF, type,
4371 addr,
4372 build_int_cst_wide (ptype,
4373 TREE_INT_CST_LOW (off),
4374 TREE_INT_CST_HIGH (off)));
4377 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4378 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4379 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4380 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4382 tree type_domain;
4383 tree min_val = size_zero_node;
4384 tree osub = sub;
4385 sub = gimple_fold_indirect_ref (sub);
4386 if (! sub)
4387 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4388 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4389 if (type_domain && TYPE_MIN_VALUE (type_domain))
4390 min_val = TYPE_MIN_VALUE (type_domain);
4391 if (TREE_CODE (min_val) == INTEGER_CST)
4392 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4395 return NULL_TREE;
4398 /* Given a pointer value OP0, return a simplified version of an
4399 indirection through OP0, or NULL_TREE if no simplification is
4400 possible. This may only be applied to a rhs of an expression.
4401 Note that the resulting type may be different from the type pointed
4402 to in the sense that it is still compatible from the langhooks
4403 point of view. */
4405 static tree
4406 gimple_fold_indirect_ref_rhs (tree t)
4408 return gimple_fold_indirect_ref (t);
4411 /* Subroutine of gimplify_modify_expr to do simplifications of
4412 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4413 something changes. */
4415 static enum gimplify_status
4416 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4417 gimple_seq *pre_p, gimple_seq *post_p,
4418 bool want_value)
4420 enum gimplify_status ret = GS_UNHANDLED;
4421 bool changed;
4425 changed = false;
4426 switch (TREE_CODE (*from_p))
4428 case VAR_DECL:
4429 /* If we're assigning from a read-only variable initialized with
4430 a constructor, do the direct assignment from the constructor,
4431 but only if neither source nor target are volatile since this
4432 latter assignment might end up being done on a per-field basis. */
4433 if (DECL_INITIAL (*from_p)
4434 && TREE_READONLY (*from_p)
4435 && !TREE_THIS_VOLATILE (*from_p)
4436 && !TREE_THIS_VOLATILE (*to_p)
4437 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4439 tree old_from = *from_p;
4440 enum gimplify_status subret;
4442 /* Move the constructor into the RHS. */
4443 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4445 /* Let's see if gimplify_init_constructor will need to put
4446 it in memory. */
4447 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4448 false, true);
4449 if (subret == GS_ERROR)
4451 /* If so, revert the change. */
4452 *from_p = old_from;
4454 else
4456 ret = GS_OK;
4457 changed = true;
4460 break;
4461 case INDIRECT_REF:
4463 /* If we have code like
4465 *(const A*)(A*)&x
4467 where the type of "x" is a (possibly cv-qualified variant
4468 of "A"), treat the entire expression as identical to "x".
4469 This kind of code arises in C++ when an object is bound
4470 to a const reference, and if "x" is a TARGET_EXPR we want
4471 to take advantage of the optimization below. */
4472 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4473 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4474 if (t)
4476 if (TREE_THIS_VOLATILE (t) != volatile_p)
4478 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4479 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4480 build_fold_addr_expr (t));
4481 if (REFERENCE_CLASS_P (t))
4482 TREE_THIS_VOLATILE (t) = volatile_p;
4484 *from_p = t;
4485 ret = GS_OK;
4486 changed = true;
4488 break;
4491 case TARGET_EXPR:
4493 /* If we are initializing something from a TARGET_EXPR, strip the
4494 TARGET_EXPR and initialize it directly, if possible. This can't
4495 be done if the initializer is void, since that implies that the
4496 temporary is set in some non-trivial way.
4498 ??? What about code that pulls out the temp and uses it
4499 elsewhere? I think that such code never uses the TARGET_EXPR as
4500 an initializer. If I'm wrong, we'll die because the temp won't
4501 have any RTL. In that case, I guess we'll need to replace
4502 references somehow. */
4503 tree init = TARGET_EXPR_INITIAL (*from_p);
4505 if (init
4506 && !VOID_TYPE_P (TREE_TYPE (init)))
4508 *from_p = init;
4509 ret = GS_OK;
4510 changed = true;
4513 break;
4515 case COMPOUND_EXPR:
4516 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4517 caught. */
4518 gimplify_compound_expr (from_p, pre_p, true);
4519 ret = GS_OK;
4520 changed = true;
4521 break;
4523 case CONSTRUCTOR:
4524 /* If we already made some changes, let the front end have a
4525 crack at this before we break it down. */
4526 if (ret != GS_UNHANDLED)
4527 break;
4528 /* If we're initializing from a CONSTRUCTOR, break this into
4529 individual MODIFY_EXPRs. */
4530 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4531 false);
4533 case COND_EXPR:
4534 /* If we're assigning to a non-register type, push the assignment
4535 down into the branches. This is mandatory for ADDRESSABLE types,
4536 since we cannot generate temporaries for such, but it saves a
4537 copy in other cases as well. */
4538 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4540 /* This code should mirror the code in gimplify_cond_expr. */
4541 enum tree_code code = TREE_CODE (*expr_p);
4542 tree cond = *from_p;
4543 tree result = *to_p;
4545 ret = gimplify_expr (&result, pre_p, post_p,
4546 is_gimple_lvalue, fb_lvalue);
4547 if (ret != GS_ERROR)
4548 ret = GS_OK;
4550 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4551 TREE_OPERAND (cond, 1)
4552 = build2 (code, void_type_node, result,
4553 TREE_OPERAND (cond, 1));
4554 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4555 TREE_OPERAND (cond, 2)
4556 = build2 (code, void_type_node, unshare_expr (result),
4557 TREE_OPERAND (cond, 2));
4559 TREE_TYPE (cond) = void_type_node;
4560 recalculate_side_effects (cond);
4562 if (want_value)
4564 gimplify_and_add (cond, pre_p);
4565 *expr_p = unshare_expr (result);
4567 else
4568 *expr_p = cond;
4569 return ret;
4571 break;
4573 case CALL_EXPR:
4574 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4575 return slot so that we don't generate a temporary. */
4576 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4577 && aggregate_value_p (*from_p, *from_p))
4579 bool use_target;
4581 if (!(rhs_predicate_for (*to_p))(*from_p))
4582 /* If we need a temporary, *to_p isn't accurate. */
4583 use_target = false;
4584 /* It's OK to use the return slot directly unless it's an NRV. */
4585 else if (TREE_CODE (*to_p) == RESULT_DECL
4586 && DECL_NAME (*to_p) == NULL_TREE
4587 && needs_to_live_in_memory (*to_p))
4588 use_target = true;
4589 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4590 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4591 /* Don't force regs into memory. */
4592 use_target = false;
4593 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4594 /* It's OK to use the target directly if it's being
4595 initialized. */
4596 use_target = true;
4597 else if (variably_modified_type_p (TREE_TYPE (*to_p), NULL_TREE))
4598 /* Always use the target and thus RSO for variable-sized types.
4599 GIMPLE cannot deal with a variable-sized assignment
4600 embedded in a call statement. */
4601 use_target = true;
4602 else if (TREE_CODE (*to_p) != SSA_NAME
4603 && (!is_gimple_variable (*to_p)
4604 || needs_to_live_in_memory (*to_p)))
4605 /* Don't use the original target if it's already addressable;
4606 if its address escapes, and the called function uses the
4607 NRV optimization, a conforming program could see *to_p
4608 change before the called function returns; see c++/19317.
4609 When optimizing, the return_slot pass marks more functions
4610 as safe after we have escape info. */
4611 use_target = false;
4612 else
4613 use_target = true;
4615 if (use_target)
4617 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4618 mark_addressable (*to_p);
4621 break;
4623 case WITH_SIZE_EXPR:
4624 /* Likewise for calls that return an aggregate of non-constant size,
4625 since we would not be able to generate a temporary at all. */
4626 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4628 *from_p = TREE_OPERAND (*from_p, 0);
4629 /* We don't change ret in this case because the
4630 WITH_SIZE_EXPR might have been added in
4631 gimplify_modify_expr, so returning GS_OK would lead to an
4632 infinite loop. */
4633 changed = true;
4635 break;
4637 /* If we're initializing from a container, push the initialization
4638 inside it. */
4639 case CLEANUP_POINT_EXPR:
4640 case BIND_EXPR:
4641 case STATEMENT_LIST:
4643 tree wrap = *from_p;
4644 tree t;
4646 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4647 fb_lvalue);
4648 if (ret != GS_ERROR)
4649 ret = GS_OK;
4651 t = voidify_wrapper_expr (wrap, *expr_p);
4652 gcc_assert (t == *expr_p);
4654 if (want_value)
4656 gimplify_and_add (wrap, pre_p);
4657 *expr_p = unshare_expr (*to_p);
4659 else
4660 *expr_p = wrap;
4661 return GS_OK;
4664 case COMPOUND_LITERAL_EXPR:
4666 tree complit = TREE_OPERAND (*expr_p, 1);
4667 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4668 tree decl = DECL_EXPR_DECL (decl_s);
4669 tree init = DECL_INITIAL (decl);
4671 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4672 into struct T x = { 0, 1, 2 } if the address of the
4673 compound literal has never been taken. */
4674 if (!TREE_ADDRESSABLE (complit)
4675 && !TREE_ADDRESSABLE (decl)
4676 && init)
4678 *expr_p = copy_node (*expr_p);
4679 TREE_OPERAND (*expr_p, 1) = init;
4680 return GS_OK;
4684 default:
4685 break;
4688 while (changed);
4690 return ret;
4694 /* Return true if T looks like a valid GIMPLE statement. */
4696 static bool
4697 is_gimple_stmt (tree t)
4699 const enum tree_code code = TREE_CODE (t);
4701 switch (code)
4703 case NOP_EXPR:
4704 /* The only valid NOP_EXPR is the empty statement. */
4705 return IS_EMPTY_STMT (t);
4707 case BIND_EXPR:
4708 case COND_EXPR:
4709 /* These are only valid if they're void. */
4710 return TREE_TYPE (t) == NULL || VOID_TYPE_P (TREE_TYPE (t));
4712 case SWITCH_EXPR:
4713 case GOTO_EXPR:
4714 case RETURN_EXPR:
4715 case LABEL_EXPR:
4716 case CASE_LABEL_EXPR:
4717 case TRY_CATCH_EXPR:
4718 case TRY_FINALLY_EXPR:
4719 case EH_FILTER_EXPR:
4720 case CATCH_EXPR:
4721 case ASM_EXPR:
4722 case STATEMENT_LIST:
4723 case OMP_PARALLEL:
4724 case OMP_FOR:
4725 case OMP_SECTIONS:
4726 case OMP_SECTION:
4727 case OMP_SINGLE:
4728 case OMP_MASTER:
4729 case OMP_ORDERED:
4730 case OMP_CRITICAL:
4731 case OMP_TASK:
4732 /* These are always void. */
4733 return true;
4735 case CALL_EXPR:
4736 case MODIFY_EXPR:
4737 case PREDICT_EXPR:
4738 /* These are valid regardless of their type. */
4739 return true;
4741 default:
4742 return false;
4747 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4748 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4749 DECL_GIMPLE_REG_P set.
4751 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4752 other, unmodified part of the complex object just before the total store.
4753 As a consequence, if the object is still uninitialized, an undefined value
4754 will be loaded into a register, which may result in a spurious exception
4755 if the register is floating-point and the value happens to be a signaling
4756 NaN for example. Then the fully-fledged complex operations lowering pass
4757 followed by a DCE pass are necessary in order to fix things up. */
4759 static enum gimplify_status
4760 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4761 bool want_value)
4763 enum tree_code code, ocode;
4764 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4766 lhs = TREE_OPERAND (*expr_p, 0);
4767 rhs = TREE_OPERAND (*expr_p, 1);
4768 code = TREE_CODE (lhs);
4769 lhs = TREE_OPERAND (lhs, 0);
4771 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4772 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4773 TREE_NO_WARNING (other) = 1;
4774 other = get_formal_tmp_var (other, pre_p);
4776 realpart = code == REALPART_EXPR ? rhs : other;
4777 imagpart = code == REALPART_EXPR ? other : rhs;
4779 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4780 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4781 else
4782 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4784 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4785 *expr_p = (want_value) ? rhs : NULL_TREE;
4787 return GS_ALL_DONE;
4790 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4792 modify_expr
4793 : varname '=' rhs
4794 | '*' ID '=' rhs
4796 PRE_P points to the list where side effects that must happen before
4797 *EXPR_P should be stored.
4799 POST_P points to the list where side effects that must happen after
4800 *EXPR_P should be stored.
4802 WANT_VALUE is nonzero iff we want to use the value of this expression
4803 in another expression. */
4805 static enum gimplify_status
4806 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4807 bool want_value)
4809 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4810 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4811 enum gimplify_status ret = GS_UNHANDLED;
4812 gimple assign;
4813 location_t loc = EXPR_LOCATION (*expr_p);
4814 gimple_stmt_iterator gsi;
4816 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4817 || TREE_CODE (*expr_p) == INIT_EXPR);
4819 /* Trying to simplify a clobber using normal logic doesn't work,
4820 so handle it here. */
4821 if (TREE_CLOBBER_P (*from_p))
4823 gcc_assert (!want_value && TREE_CODE (*to_p) == VAR_DECL);
4824 gimplify_seq_add_stmt (pre_p, gimple_build_assign (*to_p, *from_p));
4825 *expr_p = NULL;
4826 return GS_ALL_DONE;
4829 /* Insert pointer conversions required by the middle-end that are not
4830 required by the frontend. This fixes middle-end type checking for
4831 for example gcc.dg/redecl-6.c. */
4832 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4834 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4835 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4836 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4839 /* See if any simplifications can be done based on what the RHS is. */
4840 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4841 want_value);
4842 if (ret != GS_UNHANDLED)
4843 return ret;
4845 /* For zero sized types only gimplify the left hand side and right hand
4846 side as statements and throw away the assignment. Do this after
4847 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4848 types properly. */
4849 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4851 gimplify_stmt (from_p, pre_p);
4852 gimplify_stmt (to_p, pre_p);
4853 *expr_p = NULL_TREE;
4854 return GS_ALL_DONE;
4857 /* If the value being copied is of variable width, compute the length
4858 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4859 before gimplifying any of the operands so that we can resolve any
4860 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4861 the size of the expression to be copied, not of the destination, so
4862 that is what we must do here. */
4863 maybe_with_size_expr (from_p);
4865 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4866 if (ret == GS_ERROR)
4867 return ret;
4869 /* As a special case, we have to temporarily allow for assignments
4870 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4871 a toplevel statement, when gimplifying the GENERIC expression
4872 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4873 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4875 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4876 prevent gimplify_expr from trying to create a new temporary for
4877 foo's LHS, we tell it that it should only gimplify until it
4878 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4879 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4880 and all we need to do here is set 'a' to be its LHS. */
4881 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4882 fb_rvalue);
4883 if (ret == GS_ERROR)
4884 return ret;
4886 /* Now see if the above changed *from_p to something we handle specially. */
4887 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4888 want_value);
4889 if (ret != GS_UNHANDLED)
4890 return ret;
4892 /* If we've got a variable sized assignment between two lvalues (i.e. does
4893 not involve a call), then we can make things a bit more straightforward
4894 by converting the assignment to memcpy or memset. */
4895 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4897 tree from = TREE_OPERAND (*from_p, 0);
4898 tree size = TREE_OPERAND (*from_p, 1);
4900 if (TREE_CODE (from) == CONSTRUCTOR)
4901 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4903 if (is_gimple_addressable (from))
4905 *from_p = from;
4906 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4907 pre_p);
4911 /* Transform partial stores to non-addressable complex variables into
4912 total stores. This allows us to use real instead of virtual operands
4913 for these variables, which improves optimization. */
4914 if ((TREE_CODE (*to_p) == REALPART_EXPR
4915 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4916 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4917 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4919 /* Try to alleviate the effects of the gimplification creating artificial
4920 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4921 if (!gimplify_ctxp->into_ssa
4922 && TREE_CODE (*from_p) == VAR_DECL
4923 && DECL_IGNORED_P (*from_p)
4924 && DECL_P (*to_p)
4925 && !DECL_IGNORED_P (*to_p))
4927 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4928 DECL_NAME (*from_p)
4929 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4930 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
4931 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4934 if (want_value && TREE_THIS_VOLATILE (*to_p))
4935 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4937 if (TREE_CODE (*from_p) == CALL_EXPR)
4939 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4940 instead of a GIMPLE_ASSIGN. */
4941 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4942 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4943 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4944 assign = gimple_build_call_from_tree (*from_p);
4945 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4946 if (!gimple_call_noreturn_p (assign))
4947 gimple_call_set_lhs (assign, *to_p);
4949 else
4951 assign = gimple_build_assign (*to_p, *from_p);
4952 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4955 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4957 /* We should have got an SSA name from the start. */
4958 gcc_assert (TREE_CODE (*to_p) == SSA_NAME);
4961 gimplify_seq_add_stmt (pre_p, assign);
4962 gsi = gsi_last (*pre_p);
4963 fold_stmt (&gsi);
4965 if (want_value)
4967 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4968 return GS_OK;
4970 else
4971 *expr_p = NULL;
4973 return GS_ALL_DONE;
4976 /* Gimplify a comparison between two variable-sized objects. Do this
4977 with a call to BUILT_IN_MEMCMP. */
4979 static enum gimplify_status
4980 gimplify_variable_sized_compare (tree *expr_p)
4982 location_t loc = EXPR_LOCATION (*expr_p);
4983 tree op0 = TREE_OPERAND (*expr_p, 0);
4984 tree op1 = TREE_OPERAND (*expr_p, 1);
4985 tree t, arg, dest, src, expr;
4987 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4988 arg = unshare_expr (arg);
4989 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4990 src = build_fold_addr_expr_loc (loc, op1);
4991 dest = build_fold_addr_expr_loc (loc, op0);
4992 t = builtin_decl_implicit (BUILT_IN_MEMCMP);
4993 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4995 expr
4996 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4997 SET_EXPR_LOCATION (expr, loc);
4998 *expr_p = expr;
5000 return GS_OK;
5003 /* Gimplify a comparison between two aggregate objects of integral scalar
5004 mode as a comparison between the bitwise equivalent scalar values. */
5006 static enum gimplify_status
5007 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
5009 location_t loc = EXPR_LOCATION (*expr_p);
5010 tree op0 = TREE_OPERAND (*expr_p, 0);
5011 tree op1 = TREE_OPERAND (*expr_p, 1);
5013 tree type = TREE_TYPE (op0);
5014 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
5016 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
5017 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
5019 *expr_p
5020 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
5022 return GS_OK;
5025 /* Gimplify an expression sequence. This function gimplifies each
5026 expression and rewrites the original expression with the last
5027 expression of the sequence in GIMPLE form.
5029 PRE_P points to the list where the side effects for all the
5030 expressions in the sequence will be emitted.
5032 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
5034 static enum gimplify_status
5035 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
5037 tree t = *expr_p;
5041 tree *sub_p = &TREE_OPERAND (t, 0);
5043 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
5044 gimplify_compound_expr (sub_p, pre_p, false);
5045 else
5046 gimplify_stmt (sub_p, pre_p);
5048 t = TREE_OPERAND (t, 1);
5050 while (TREE_CODE (t) == COMPOUND_EXPR);
5052 *expr_p = t;
5053 if (want_value)
5054 return GS_OK;
5055 else
5057 gimplify_stmt (expr_p, pre_p);
5058 return GS_ALL_DONE;
5062 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
5063 gimplify. After gimplification, EXPR_P will point to a new temporary
5064 that holds the original value of the SAVE_EXPR node.
5066 PRE_P points to the list where side effects that must happen before
5067 *EXPR_P should be stored. */
5069 static enum gimplify_status
5070 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5072 enum gimplify_status ret = GS_ALL_DONE;
5073 tree val;
5075 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
5076 val = TREE_OPERAND (*expr_p, 0);
5078 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
5079 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
5081 /* The operand may be a void-valued expression such as SAVE_EXPRs
5082 generated by the Java frontend for class initialization. It is
5083 being executed only for its side-effects. */
5084 if (TREE_TYPE (val) == void_type_node)
5086 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5087 is_gimple_stmt, fb_none);
5088 val = NULL;
5090 else
5091 val = get_initialized_tmp_var (val, pre_p, post_p);
5093 TREE_OPERAND (*expr_p, 0) = val;
5094 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
5097 *expr_p = val;
5099 return ret;
5102 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
5104 unary_expr
5105 : ...
5106 | '&' varname
5109 PRE_P points to the list where side effects that must happen before
5110 *EXPR_P should be stored.
5112 POST_P points to the list where side effects that must happen after
5113 *EXPR_P should be stored. */
5115 static enum gimplify_status
5116 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5118 tree expr = *expr_p;
5119 tree op0 = TREE_OPERAND (expr, 0);
5120 enum gimplify_status ret;
5121 location_t loc = EXPR_LOCATION (*expr_p);
5123 switch (TREE_CODE (op0))
5125 case INDIRECT_REF:
5126 do_indirect_ref:
5127 /* Check if we are dealing with an expression of the form '&*ptr'.
5128 While the front end folds away '&*ptr' into 'ptr', these
5129 expressions may be generated internally by the compiler (e.g.,
5130 builtins like __builtin_va_end). */
5131 /* Caution: the silent array decomposition semantics we allow for
5132 ADDR_EXPR means we can't always discard the pair. */
5133 /* Gimplification of the ADDR_EXPR operand may drop
5134 cv-qualification conversions, so make sure we add them if
5135 needed. */
5137 tree op00 = TREE_OPERAND (op0, 0);
5138 tree t_expr = TREE_TYPE (expr);
5139 tree t_op00 = TREE_TYPE (op00);
5141 if (!useless_type_conversion_p (t_expr, t_op00))
5142 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
5143 *expr_p = op00;
5144 ret = GS_OK;
5146 break;
5148 case VIEW_CONVERT_EXPR:
5149 /* Take the address of our operand and then convert it to the type of
5150 this ADDR_EXPR.
5152 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
5153 all clear. The impact of this transformation is even less clear. */
5155 /* If the operand is a useless conversion, look through it. Doing so
5156 guarantees that the ADDR_EXPR and its operand will remain of the
5157 same type. */
5158 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
5159 op0 = TREE_OPERAND (op0, 0);
5161 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
5162 build_fold_addr_expr_loc (loc,
5163 TREE_OPERAND (op0, 0)));
5164 ret = GS_OK;
5165 break;
5167 default:
5168 /* We use fb_either here because the C frontend sometimes takes
5169 the address of a call that returns a struct; see
5170 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
5171 the implied temporary explicit. */
5173 /* Make the operand addressable. */
5174 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
5175 is_gimple_addressable, fb_either);
5176 if (ret == GS_ERROR)
5177 break;
5179 /* Then mark it. Beware that it may not be possible to do so directly
5180 if a temporary has been created by the gimplification. */
5181 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
5183 op0 = TREE_OPERAND (expr, 0);
5185 /* For various reasons, the gimplification of the expression
5186 may have made a new INDIRECT_REF. */
5187 if (TREE_CODE (op0) == INDIRECT_REF)
5188 goto do_indirect_ref;
5190 mark_addressable (TREE_OPERAND (expr, 0));
5192 /* The FEs may end up building ADDR_EXPRs early on a decl with
5193 an incomplete type. Re-build ADDR_EXPRs in canonical form
5194 here. */
5195 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
5196 *expr_p = build_fold_addr_expr (op0);
5198 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
5199 recompute_tree_invariant_for_addr_expr (*expr_p);
5201 /* If we re-built the ADDR_EXPR add a conversion to the original type
5202 if required. */
5203 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
5204 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
5206 break;
5209 return ret;
5212 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
5213 value; output operands should be a gimple lvalue. */
5215 static enum gimplify_status
5216 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5218 tree expr;
5219 int noutputs;
5220 const char **oconstraints;
5221 int i;
5222 tree link;
5223 const char *constraint;
5224 bool allows_mem, allows_reg, is_inout;
5225 enum gimplify_status ret, tret;
5226 gimple stmt;
5227 vec<tree, va_gc> *inputs;
5228 vec<tree, va_gc> *outputs;
5229 vec<tree, va_gc> *clobbers;
5230 vec<tree, va_gc> *labels;
5231 tree link_next;
5233 expr = *expr_p;
5234 noutputs = list_length (ASM_OUTPUTS (expr));
5235 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
5237 inputs = NULL;
5238 outputs = NULL;
5239 clobbers = NULL;
5240 labels = NULL;
5242 ret = GS_ALL_DONE;
5243 link_next = NULL_TREE;
5244 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
5246 bool ok;
5247 size_t constraint_len;
5249 link_next = TREE_CHAIN (link);
5251 oconstraints[i]
5252 = constraint
5253 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5254 constraint_len = strlen (constraint);
5255 if (constraint_len == 0)
5256 continue;
5258 ok = parse_output_constraint (&constraint, i, 0, 0,
5259 &allows_mem, &allows_reg, &is_inout);
5260 if (!ok)
5262 ret = GS_ERROR;
5263 is_inout = false;
5266 if (!allows_reg && allows_mem)
5267 mark_addressable (TREE_VALUE (link));
5269 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5270 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
5271 fb_lvalue | fb_mayfail);
5272 if (tret == GS_ERROR)
5274 error ("invalid lvalue in asm output %d", i);
5275 ret = tret;
5278 vec_safe_push (outputs, link);
5279 TREE_CHAIN (link) = NULL_TREE;
5281 if (is_inout)
5283 /* An input/output operand. To give the optimizers more
5284 flexibility, split it into separate input and output
5285 operands. */
5286 tree input;
5287 char buf[10];
5289 /* Turn the in/out constraint into an output constraint. */
5290 char *p = xstrdup (constraint);
5291 p[0] = '=';
5292 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
5294 /* And add a matching input constraint. */
5295 if (allows_reg)
5297 sprintf (buf, "%d", i);
5299 /* If there are multiple alternatives in the constraint,
5300 handle each of them individually. Those that allow register
5301 will be replaced with operand number, the others will stay
5302 unchanged. */
5303 if (strchr (p, ',') != NULL)
5305 size_t len = 0, buflen = strlen (buf);
5306 char *beg, *end, *str, *dst;
5308 for (beg = p + 1;;)
5310 end = strchr (beg, ',');
5311 if (end == NULL)
5312 end = strchr (beg, '\0');
5313 if ((size_t) (end - beg) < buflen)
5314 len += buflen + 1;
5315 else
5316 len += end - beg + 1;
5317 if (*end)
5318 beg = end + 1;
5319 else
5320 break;
5323 str = (char *) alloca (len);
5324 for (beg = p + 1, dst = str;;)
5326 const char *tem;
5327 bool mem_p, reg_p, inout_p;
5329 end = strchr (beg, ',');
5330 if (end)
5331 *end = '\0';
5332 beg[-1] = '=';
5333 tem = beg - 1;
5334 parse_output_constraint (&tem, i, 0, 0,
5335 &mem_p, &reg_p, &inout_p);
5336 if (dst != str)
5337 *dst++ = ',';
5338 if (reg_p)
5340 memcpy (dst, buf, buflen);
5341 dst += buflen;
5343 else
5345 if (end)
5346 len = end - beg;
5347 else
5348 len = strlen (beg);
5349 memcpy (dst, beg, len);
5350 dst += len;
5352 if (end)
5353 beg = end + 1;
5354 else
5355 break;
5357 *dst = '\0';
5358 input = build_string (dst - str, str);
5360 else
5361 input = build_string (strlen (buf), buf);
5363 else
5364 input = build_string (constraint_len - 1, constraint + 1);
5366 free (p);
5368 input = build_tree_list (build_tree_list (NULL_TREE, input),
5369 unshare_expr (TREE_VALUE (link)));
5370 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5374 link_next = NULL_TREE;
5375 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5377 link_next = TREE_CHAIN (link);
5378 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5379 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5380 oconstraints, &allows_mem, &allows_reg);
5382 /* If we can't make copies, we can only accept memory. */
5383 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5385 if (allows_mem)
5386 allows_reg = 0;
5387 else
5389 error ("impossible constraint in %<asm%>");
5390 error ("non-memory input %d must stay in memory", i);
5391 return GS_ERROR;
5395 /* If the operand is a memory input, it should be an lvalue. */
5396 if (!allows_reg && allows_mem)
5398 tree inputv = TREE_VALUE (link);
5399 STRIP_NOPS (inputv);
5400 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5401 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5402 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5403 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5404 TREE_VALUE (link) = error_mark_node;
5405 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5406 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5407 mark_addressable (TREE_VALUE (link));
5408 if (tret == GS_ERROR)
5410 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5411 input_location = EXPR_LOCATION (TREE_VALUE (link));
5412 error ("memory input %d is not directly addressable", i);
5413 ret = tret;
5416 else
5418 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5419 is_gimple_asm_val, fb_rvalue);
5420 if (tret == GS_ERROR)
5421 ret = tret;
5424 TREE_CHAIN (link) = NULL_TREE;
5425 vec_safe_push (inputs, link);
5428 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5429 vec_safe_push (clobbers, link);
5431 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5432 vec_safe_push (labels, link);
5434 /* Do not add ASMs with errors to the gimple IL stream. */
5435 if (ret != GS_ERROR)
5437 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5438 inputs, outputs, clobbers, labels);
5440 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5441 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5443 gimplify_seq_add_stmt (pre_p, stmt);
5446 return ret;
5449 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5450 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5451 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5452 return to this function.
5454 FIXME should we complexify the prequeue handling instead? Or use flags
5455 for all the cleanups and let the optimizer tighten them up? The current
5456 code seems pretty fragile; it will break on a cleanup within any
5457 non-conditional nesting. But any such nesting would be broken, anyway;
5458 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5459 and continues out of it. We can do that at the RTL level, though, so
5460 having an optimizer to tighten up try/finally regions would be a Good
5461 Thing. */
5463 static enum gimplify_status
5464 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5466 gimple_stmt_iterator iter;
5467 gimple_seq body_sequence = NULL;
5469 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5471 /* We only care about the number of conditions between the innermost
5472 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5473 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5474 int old_conds = gimplify_ctxp->conditions;
5475 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5476 bool old_in_cleanup_point_expr = gimplify_ctxp->in_cleanup_point_expr;
5477 gimplify_ctxp->conditions = 0;
5478 gimplify_ctxp->conditional_cleanups = NULL;
5479 gimplify_ctxp->in_cleanup_point_expr = true;
5481 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5483 gimplify_ctxp->conditions = old_conds;
5484 gimplify_ctxp->conditional_cleanups = old_cleanups;
5485 gimplify_ctxp->in_cleanup_point_expr = old_in_cleanup_point_expr;
5487 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5489 gimple wce = gsi_stmt (iter);
5491 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5493 if (gsi_one_before_end_p (iter))
5495 /* Note that gsi_insert_seq_before and gsi_remove do not
5496 scan operands, unlike some other sequence mutators. */
5497 if (!gimple_wce_cleanup_eh_only (wce))
5498 gsi_insert_seq_before_without_update (&iter,
5499 gimple_wce_cleanup (wce),
5500 GSI_SAME_STMT);
5501 gsi_remove (&iter, true);
5502 break;
5504 else
5506 gimple gtry;
5507 gimple_seq seq;
5508 enum gimple_try_flags kind;
5510 if (gimple_wce_cleanup_eh_only (wce))
5511 kind = GIMPLE_TRY_CATCH;
5512 else
5513 kind = GIMPLE_TRY_FINALLY;
5514 seq = gsi_split_seq_after (iter);
5516 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5517 /* Do not use gsi_replace here, as it may scan operands.
5518 We want to do a simple structural modification only. */
5519 gsi_set_stmt (&iter, gtry);
5520 iter = gsi_start (gtry->gimple_try.eval);
5523 else
5524 gsi_next (&iter);
5527 gimplify_seq_add_seq (pre_p, body_sequence);
5528 if (temp)
5530 *expr_p = temp;
5531 return GS_OK;
5533 else
5535 *expr_p = NULL;
5536 return GS_ALL_DONE;
5540 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5541 is the cleanup action required. EH_ONLY is true if the cleanup should
5542 only be executed if an exception is thrown, not on normal exit. */
5544 static void
5545 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5547 gimple wce;
5548 gimple_seq cleanup_stmts = NULL;
5550 /* Errors can result in improperly nested cleanups. Which results in
5551 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5552 if (seen_error ())
5553 return;
5555 if (gimple_conditional_context ())
5557 /* If we're in a conditional context, this is more complex. We only
5558 want to run the cleanup if we actually ran the initialization that
5559 necessitates it, but we want to run it after the end of the
5560 conditional context. So we wrap the try/finally around the
5561 condition and use a flag to determine whether or not to actually
5562 run the destructor. Thus
5564 test ? f(A()) : 0
5566 becomes (approximately)
5568 flag = 0;
5569 try {
5570 if (test) { A::A(temp); flag = 1; val = f(temp); }
5571 else { val = 0; }
5572 } finally {
5573 if (flag) A::~A(temp);
5577 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5578 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5579 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5581 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5582 gimplify_stmt (&cleanup, &cleanup_stmts);
5583 wce = gimple_build_wce (cleanup_stmts);
5585 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5586 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5587 gimplify_seq_add_stmt (pre_p, ftrue);
5589 /* Because of this manipulation, and the EH edges that jump
5590 threading cannot redirect, the temporary (VAR) will appear
5591 to be used uninitialized. Don't warn. */
5592 TREE_NO_WARNING (var) = 1;
5594 else
5596 gimplify_stmt (&cleanup, &cleanup_stmts);
5597 wce = gimple_build_wce (cleanup_stmts);
5598 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5599 gimplify_seq_add_stmt (pre_p, wce);
5603 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5605 static enum gimplify_status
5606 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5608 tree targ = *expr_p;
5609 tree temp = TARGET_EXPR_SLOT (targ);
5610 tree init = TARGET_EXPR_INITIAL (targ);
5611 enum gimplify_status ret;
5613 if (init)
5615 tree cleanup = NULL_TREE;
5617 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5618 to the temps list. Handle also variable length TARGET_EXPRs. */
5619 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5621 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5622 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5623 gimplify_vla_decl (temp, pre_p);
5625 else
5626 gimple_add_tmp_var (temp);
5628 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5629 expression is supposed to initialize the slot. */
5630 if (VOID_TYPE_P (TREE_TYPE (init)))
5631 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5632 else
5634 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5635 init = init_expr;
5636 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5637 init = NULL;
5638 ggc_free (init_expr);
5640 if (ret == GS_ERROR)
5642 /* PR c++/28266 Make sure this is expanded only once. */
5643 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5644 return GS_ERROR;
5646 if (init)
5647 gimplify_and_add (init, pre_p);
5649 /* If needed, push the cleanup for the temp. */
5650 if (TARGET_EXPR_CLEANUP (targ))
5652 if (CLEANUP_EH_ONLY (targ))
5653 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5654 CLEANUP_EH_ONLY (targ), pre_p);
5655 else
5656 cleanup = TARGET_EXPR_CLEANUP (targ);
5659 /* Add a clobber for the temporary going out of scope, like
5660 gimplify_bind_expr. */
5661 if (gimplify_ctxp->in_cleanup_point_expr
5662 && needs_to_live_in_memory (temp)
5663 && flag_stack_reuse == SR_ALL)
5665 tree clobber = build_constructor (TREE_TYPE (temp),
5666 NULL);
5667 TREE_THIS_VOLATILE (clobber) = true;
5668 clobber = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, clobber);
5669 if (cleanup)
5670 cleanup = build2 (COMPOUND_EXPR, void_type_node, cleanup,
5671 clobber);
5672 else
5673 cleanup = clobber;
5676 if (cleanup)
5677 gimple_push_cleanup (temp, cleanup, false, pre_p);
5679 /* Only expand this once. */
5680 TREE_OPERAND (targ, 3) = init;
5681 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5683 else
5684 /* We should have expanded this before. */
5685 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5687 *expr_p = temp;
5688 return GS_OK;
5691 /* Gimplification of expression trees. */
5693 /* Gimplify an expression which appears at statement context. The
5694 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5695 NULL, a new sequence is allocated.
5697 Return true if we actually added a statement to the queue. */
5699 bool
5700 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5702 gimple_seq_node last;
5704 last = gimple_seq_last (*seq_p);
5705 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5706 return last != gimple_seq_last (*seq_p);
5709 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5710 to CTX. If entries already exist, force them to be some flavor of private.
5711 If there is no enclosing parallel, do nothing. */
5713 void
5714 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5716 splay_tree_node n;
5718 if (decl == NULL || !DECL_P (decl))
5719 return;
5723 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5724 if (n != NULL)
5726 if (n->value & GOVD_SHARED)
5727 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5728 else
5729 return;
5731 else if (ctx->region_type != ORT_WORKSHARE)
5732 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5734 ctx = ctx->outer_context;
5736 while (ctx);
5739 /* Similarly for each of the type sizes of TYPE. */
5741 static void
5742 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5744 if (type == NULL || type == error_mark_node)
5745 return;
5746 type = TYPE_MAIN_VARIANT (type);
5748 if (pointer_set_insert (ctx->privatized_types, type))
5749 return;
5751 switch (TREE_CODE (type))
5753 case INTEGER_TYPE:
5754 case ENUMERAL_TYPE:
5755 case BOOLEAN_TYPE:
5756 case REAL_TYPE:
5757 case FIXED_POINT_TYPE:
5758 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5759 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5760 break;
5762 case ARRAY_TYPE:
5763 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5764 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5765 break;
5767 case RECORD_TYPE:
5768 case UNION_TYPE:
5769 case QUAL_UNION_TYPE:
5771 tree field;
5772 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5773 if (TREE_CODE (field) == FIELD_DECL)
5775 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5776 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5779 break;
5781 case POINTER_TYPE:
5782 case REFERENCE_TYPE:
5783 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5784 break;
5786 default:
5787 break;
5790 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5791 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5792 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5795 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5797 static void
5798 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5800 splay_tree_node n;
5801 unsigned int nflags;
5802 tree t;
5804 if (error_operand_p (decl))
5805 return;
5807 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5808 there are constructors involved somewhere. */
5809 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5810 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5811 flags |= GOVD_SEEN;
5813 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5814 if (n != NULL)
5816 /* We shouldn't be re-adding the decl with the same data
5817 sharing class. */
5818 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5819 /* The only combination of data sharing classes we should see is
5820 FIRSTPRIVATE and LASTPRIVATE. */
5821 nflags = n->value | flags;
5822 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5823 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5824 n->value = nflags;
5825 return;
5828 /* When adding a variable-sized variable, we have to handle all sorts
5829 of additional bits of data: the pointer replacement variable, and
5830 the parameters of the type. */
5831 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5833 /* Add the pointer replacement variable as PRIVATE if the variable
5834 replacement is private, else FIRSTPRIVATE since we'll need the
5835 address of the original variable either for SHARED, or for the
5836 copy into or out of the context. */
5837 if (!(flags & GOVD_LOCAL))
5839 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5840 nflags |= flags & GOVD_SEEN;
5841 t = DECL_VALUE_EXPR (decl);
5842 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5843 t = TREE_OPERAND (t, 0);
5844 gcc_assert (DECL_P (t));
5845 omp_add_variable (ctx, t, nflags);
5848 /* Add all of the variable and type parameters (which should have
5849 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5850 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5851 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5852 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5854 /* The variable-sized variable itself is never SHARED, only some form
5855 of PRIVATE. The sharing would take place via the pointer variable
5856 which we remapped above. */
5857 if (flags & GOVD_SHARED)
5858 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5859 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5861 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5862 alloca statement we generate for the variable, so make sure it
5863 is available. This isn't automatically needed for the SHARED
5864 case, since we won't be allocating local storage then.
5865 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5866 in this case omp_notice_variable will be called later
5867 on when it is gimplified. */
5868 else if (! (flags & GOVD_LOCAL)
5869 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5870 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5872 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5874 gcc_assert ((flags & GOVD_LOCAL) == 0);
5875 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5877 /* Similar to the direct variable sized case above, we'll need the
5878 size of references being privatized. */
5879 if ((flags & GOVD_SHARED) == 0)
5881 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5882 if (TREE_CODE (t) != INTEGER_CST)
5883 omp_notice_variable (ctx, t, true);
5887 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5890 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5891 This just prints out diagnostics about threadprivate variable uses
5892 in untied tasks. If DECL2 is non-NULL, prevent this warning
5893 on that variable. */
5895 static bool
5896 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5897 tree decl2)
5899 splay_tree_node n;
5901 if (ctx->region_type != ORT_UNTIED_TASK)
5902 return false;
5903 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5904 if (n == NULL)
5906 error ("threadprivate variable %qE used in untied task",
5907 DECL_NAME (decl));
5908 error_at (ctx->location, "enclosing task");
5909 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5911 if (decl2)
5912 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5913 return false;
5916 /* Record the fact that DECL was used within the OpenMP context CTX.
5917 IN_CODE is true when real code uses DECL, and false when we should
5918 merely emit default(none) errors. Return true if DECL is going to
5919 be remapped and thus DECL shouldn't be gimplified into its
5920 DECL_VALUE_EXPR (if any). */
5922 static bool
5923 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5925 splay_tree_node n;
5926 unsigned flags = in_code ? GOVD_SEEN : 0;
5927 bool ret = false, shared;
5929 if (error_operand_p (decl))
5930 return false;
5932 /* Threadprivate variables are predetermined. */
5933 if (is_global_var (decl))
5935 if (DECL_THREAD_LOCAL_P (decl))
5936 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5938 if (DECL_HAS_VALUE_EXPR_P (decl))
5940 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5942 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5943 return omp_notice_threadprivate_variable (ctx, decl, value);
5947 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5948 if (n == NULL)
5950 enum omp_clause_default_kind default_kind, kind;
5951 struct gimplify_omp_ctx *octx;
5953 if (ctx->region_type == ORT_WORKSHARE)
5954 goto do_outer;
5956 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5957 remapped firstprivate instead of shared. To some extent this is
5958 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5959 default_kind = ctx->default_kind;
5960 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5961 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5962 default_kind = kind;
5964 switch (default_kind)
5966 case OMP_CLAUSE_DEFAULT_NONE:
5967 error ("%qE not specified in enclosing parallel",
5968 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5969 if ((ctx->region_type & ORT_TASK) != 0)
5970 error_at (ctx->location, "enclosing task");
5971 else
5972 error_at (ctx->location, "enclosing parallel");
5973 /* FALLTHRU */
5974 case OMP_CLAUSE_DEFAULT_SHARED:
5975 flags |= GOVD_SHARED;
5976 break;
5977 case OMP_CLAUSE_DEFAULT_PRIVATE:
5978 flags |= GOVD_PRIVATE;
5979 break;
5980 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5981 flags |= GOVD_FIRSTPRIVATE;
5982 break;
5983 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5984 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5985 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5986 if (ctx->outer_context)
5987 omp_notice_variable (ctx->outer_context, decl, in_code);
5988 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5990 splay_tree_node n2;
5992 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5993 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5995 flags |= GOVD_FIRSTPRIVATE;
5996 break;
5998 if ((octx->region_type & ORT_PARALLEL) != 0)
5999 break;
6001 if (flags & GOVD_FIRSTPRIVATE)
6002 break;
6003 if (octx == NULL
6004 && (TREE_CODE (decl) == PARM_DECL
6005 || (!is_global_var (decl)
6006 && DECL_CONTEXT (decl) == current_function_decl)))
6008 flags |= GOVD_FIRSTPRIVATE;
6009 break;
6011 flags |= GOVD_SHARED;
6012 break;
6013 default:
6014 gcc_unreachable ();
6017 if ((flags & GOVD_PRIVATE)
6018 && lang_hooks.decls.omp_private_outer_ref (decl))
6019 flags |= GOVD_PRIVATE_OUTER_REF;
6021 omp_add_variable (ctx, decl, flags);
6023 shared = (flags & GOVD_SHARED) != 0;
6024 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
6025 goto do_outer;
6028 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
6029 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
6030 && DECL_SIZE (decl)
6031 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
6033 splay_tree_node n2;
6034 tree t = DECL_VALUE_EXPR (decl);
6035 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
6036 t = TREE_OPERAND (t, 0);
6037 gcc_assert (DECL_P (t));
6038 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
6039 n2->value |= GOVD_SEEN;
6042 shared = ((flags | n->value) & GOVD_SHARED) != 0;
6043 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
6045 /* If nothing changed, there's nothing left to do. */
6046 if ((n->value & flags) == flags)
6047 return ret;
6048 flags |= n->value;
6049 n->value = flags;
6051 do_outer:
6052 /* If the variable is private in the current context, then we don't
6053 need to propagate anything to an outer context. */
6054 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
6055 return ret;
6056 if (ctx->outer_context
6057 && omp_notice_variable (ctx->outer_context, decl, in_code))
6058 return true;
6059 return ret;
6062 /* Verify that DECL is private within CTX. If there's specific information
6063 to the contrary in the innermost scope, generate an error. */
6065 static bool
6066 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
6068 splay_tree_node n;
6070 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
6071 if (n != NULL)
6073 if (n->value & GOVD_SHARED)
6075 if (ctx == gimplify_omp_ctxp)
6077 error ("iteration variable %qE should be private",
6078 DECL_NAME (decl));
6079 n->value = GOVD_PRIVATE;
6080 return true;
6082 else
6083 return false;
6085 else if ((n->value & GOVD_EXPLICIT) != 0
6086 && (ctx == gimplify_omp_ctxp
6087 || (ctx->region_type == ORT_COMBINED_PARALLEL
6088 && gimplify_omp_ctxp->outer_context == ctx)))
6090 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
6091 error ("iteration variable %qE should not be firstprivate",
6092 DECL_NAME (decl));
6093 else if ((n->value & GOVD_REDUCTION) != 0)
6094 error ("iteration variable %qE should not be reduction",
6095 DECL_NAME (decl));
6097 return (ctx == gimplify_omp_ctxp
6098 || (ctx->region_type == ORT_COMBINED_PARALLEL
6099 && gimplify_omp_ctxp->outer_context == ctx));
6102 if (ctx->region_type != ORT_WORKSHARE)
6103 return false;
6104 else if (ctx->outer_context)
6105 return omp_is_private (ctx->outer_context, decl);
6106 return false;
6109 /* Return true if DECL is private within a parallel region
6110 that binds to the current construct's context or in parallel
6111 region's REDUCTION clause. */
6113 static bool
6114 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
6116 splay_tree_node n;
6120 ctx = ctx->outer_context;
6121 if (ctx == NULL)
6122 return !(is_global_var (decl)
6123 /* References might be private, but might be shared too. */
6124 || lang_hooks.decls.omp_privatize_by_reference (decl));
6126 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6127 if (n != NULL)
6128 return (n->value & GOVD_SHARED) == 0;
6130 while (ctx->region_type == ORT_WORKSHARE);
6131 return false;
6134 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
6135 and previous omp contexts. */
6137 static void
6138 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
6139 enum omp_region_type region_type)
6141 struct gimplify_omp_ctx *ctx, *outer_ctx;
6142 struct gimplify_ctx gctx;
6143 tree c;
6145 ctx = new_omp_context (region_type);
6146 outer_ctx = ctx->outer_context;
6148 while ((c = *list_p) != NULL)
6150 bool remove = false;
6151 bool notice_outer = true;
6152 const char *check_non_private = NULL;
6153 unsigned int flags;
6154 tree decl;
6156 switch (OMP_CLAUSE_CODE (c))
6158 case OMP_CLAUSE_PRIVATE:
6159 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
6160 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
6162 flags |= GOVD_PRIVATE_OUTER_REF;
6163 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
6165 else
6166 notice_outer = false;
6167 goto do_add;
6168 case OMP_CLAUSE_SHARED:
6169 flags = GOVD_SHARED | GOVD_EXPLICIT;
6170 goto do_add;
6171 case OMP_CLAUSE_FIRSTPRIVATE:
6172 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
6173 check_non_private = "firstprivate";
6174 goto do_add;
6175 case OMP_CLAUSE_LASTPRIVATE:
6176 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
6177 check_non_private = "lastprivate";
6178 goto do_add;
6179 case OMP_CLAUSE_REDUCTION:
6180 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
6181 check_non_private = "reduction";
6182 goto do_add;
6184 do_add:
6185 decl = OMP_CLAUSE_DECL (c);
6186 if (error_operand_p (decl))
6188 remove = true;
6189 break;
6191 omp_add_variable (ctx, decl, flags);
6192 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6193 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
6195 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
6196 GOVD_LOCAL | GOVD_SEEN);
6197 gimplify_omp_ctxp = ctx;
6198 push_gimplify_context (&gctx);
6200 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = NULL;
6201 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
6203 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
6204 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
6205 pop_gimplify_context
6206 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
6207 push_gimplify_context (&gctx);
6208 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
6209 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
6210 pop_gimplify_context
6211 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
6212 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
6213 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
6215 gimplify_omp_ctxp = outer_ctx;
6217 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6218 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
6220 gimplify_omp_ctxp = ctx;
6221 push_gimplify_context (&gctx);
6222 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
6224 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
6225 NULL, NULL);
6226 TREE_SIDE_EFFECTS (bind) = 1;
6227 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
6228 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
6230 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
6231 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6232 pop_gimplify_context
6233 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
6234 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
6236 gimplify_omp_ctxp = outer_ctx;
6238 if (notice_outer)
6239 goto do_notice;
6240 break;
6242 case OMP_CLAUSE_COPYIN:
6243 case OMP_CLAUSE_COPYPRIVATE:
6244 decl = OMP_CLAUSE_DECL (c);
6245 if (error_operand_p (decl))
6247 remove = true;
6248 break;
6250 do_notice:
6251 if (outer_ctx)
6252 omp_notice_variable (outer_ctx, decl, true);
6253 if (check_non_private
6254 && region_type == ORT_WORKSHARE
6255 && omp_check_private (ctx, decl))
6257 error ("%s variable %qE is private in outer context",
6258 check_non_private, DECL_NAME (decl));
6259 remove = true;
6261 break;
6263 case OMP_CLAUSE_FINAL:
6264 case OMP_CLAUSE_IF:
6265 OMP_CLAUSE_OPERAND (c, 0)
6266 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
6267 /* Fall through. */
6269 case OMP_CLAUSE_SCHEDULE:
6270 case OMP_CLAUSE_NUM_THREADS:
6271 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
6272 is_gimple_val, fb_rvalue) == GS_ERROR)
6273 remove = true;
6274 break;
6276 case OMP_CLAUSE_NOWAIT:
6277 case OMP_CLAUSE_ORDERED:
6278 case OMP_CLAUSE_UNTIED:
6279 case OMP_CLAUSE_COLLAPSE:
6280 case OMP_CLAUSE_MERGEABLE:
6281 break;
6283 case OMP_CLAUSE_DEFAULT:
6284 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
6285 break;
6287 default:
6288 gcc_unreachable ();
6291 if (remove)
6292 *list_p = OMP_CLAUSE_CHAIN (c);
6293 else
6294 list_p = &OMP_CLAUSE_CHAIN (c);
6297 gimplify_omp_ctxp = ctx;
6300 /* For all variables that were not actually used within the context,
6301 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6303 static int
6304 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
6306 tree *list_p = (tree *) data;
6307 tree decl = (tree) n->key;
6308 unsigned flags = n->value;
6309 enum omp_clause_code code;
6310 tree clause;
6311 bool private_debug;
6313 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
6314 return 0;
6315 if ((flags & GOVD_SEEN) == 0)
6316 return 0;
6317 if (flags & GOVD_DEBUG_PRIVATE)
6319 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
6320 private_debug = true;
6322 else
6323 private_debug
6324 = lang_hooks.decls.omp_private_debug_clause (decl,
6325 !!(flags & GOVD_SHARED));
6326 if (private_debug)
6327 code = OMP_CLAUSE_PRIVATE;
6328 else if (flags & GOVD_SHARED)
6330 if (is_global_var (decl))
6332 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6333 while (ctx != NULL)
6335 splay_tree_node on
6336 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6337 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6338 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6339 break;
6340 ctx = ctx->outer_context;
6342 if (ctx == NULL)
6343 return 0;
6345 code = OMP_CLAUSE_SHARED;
6347 else if (flags & GOVD_PRIVATE)
6348 code = OMP_CLAUSE_PRIVATE;
6349 else if (flags & GOVD_FIRSTPRIVATE)
6350 code = OMP_CLAUSE_FIRSTPRIVATE;
6351 else
6352 gcc_unreachable ();
6354 clause = build_omp_clause (input_location, code);
6355 OMP_CLAUSE_DECL (clause) = decl;
6356 OMP_CLAUSE_CHAIN (clause) = *list_p;
6357 if (private_debug)
6358 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6359 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6360 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6361 *list_p = clause;
6362 lang_hooks.decls.omp_finish_clause (clause);
6364 return 0;
6367 static void
6368 gimplify_adjust_omp_clauses (tree *list_p)
6370 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6371 tree c, decl;
6373 while ((c = *list_p) != NULL)
6375 splay_tree_node n;
6376 bool remove = false;
6378 switch (OMP_CLAUSE_CODE (c))
6380 case OMP_CLAUSE_PRIVATE:
6381 case OMP_CLAUSE_SHARED:
6382 case OMP_CLAUSE_FIRSTPRIVATE:
6383 decl = OMP_CLAUSE_DECL (c);
6384 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6385 remove = !(n->value & GOVD_SEEN);
6386 if (! remove)
6388 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6389 if ((n->value & GOVD_DEBUG_PRIVATE)
6390 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6392 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6393 || ((n->value & GOVD_DATA_SHARE_CLASS)
6394 == GOVD_PRIVATE));
6395 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6396 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6399 break;
6401 case OMP_CLAUSE_LASTPRIVATE:
6402 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6403 accurately reflect the presence of a FIRSTPRIVATE clause. */
6404 decl = OMP_CLAUSE_DECL (c);
6405 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6406 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6407 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6408 break;
6410 case OMP_CLAUSE_REDUCTION:
6411 case OMP_CLAUSE_COPYIN:
6412 case OMP_CLAUSE_COPYPRIVATE:
6413 case OMP_CLAUSE_IF:
6414 case OMP_CLAUSE_NUM_THREADS:
6415 case OMP_CLAUSE_SCHEDULE:
6416 case OMP_CLAUSE_NOWAIT:
6417 case OMP_CLAUSE_ORDERED:
6418 case OMP_CLAUSE_DEFAULT:
6419 case OMP_CLAUSE_UNTIED:
6420 case OMP_CLAUSE_COLLAPSE:
6421 case OMP_CLAUSE_FINAL:
6422 case OMP_CLAUSE_MERGEABLE:
6423 break;
6425 default:
6426 gcc_unreachable ();
6429 if (remove)
6430 *list_p = OMP_CLAUSE_CHAIN (c);
6431 else
6432 list_p = &OMP_CLAUSE_CHAIN (c);
6435 /* Add in any implicit data sharing. */
6436 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6438 gimplify_omp_ctxp = ctx->outer_context;
6439 delete_omp_context (ctx);
6442 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6443 gimplification of the body, as well as scanning the body for used
6444 variables. We need to do this scan now, because variable-sized
6445 decls will be decomposed during gimplification. */
6447 static void
6448 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6450 tree expr = *expr_p;
6451 gimple g;
6452 gimple_seq body = NULL;
6453 struct gimplify_ctx gctx;
6455 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6456 OMP_PARALLEL_COMBINED (expr)
6457 ? ORT_COMBINED_PARALLEL
6458 : ORT_PARALLEL);
6460 push_gimplify_context (&gctx);
6462 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6463 if (gimple_code (g) == GIMPLE_BIND)
6464 pop_gimplify_context (g);
6465 else
6466 pop_gimplify_context (NULL);
6468 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6470 g = gimple_build_omp_parallel (body,
6471 OMP_PARALLEL_CLAUSES (expr),
6472 NULL_TREE, NULL_TREE);
6473 if (OMP_PARALLEL_COMBINED (expr))
6474 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6475 gimplify_seq_add_stmt (pre_p, g);
6476 *expr_p = NULL_TREE;
6479 /* Gimplify the contents of an OMP_TASK statement. This involves
6480 gimplification of the body, as well as scanning the body for used
6481 variables. We need to do this scan now, because variable-sized
6482 decls will be decomposed during gimplification. */
6484 static void
6485 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6487 tree expr = *expr_p;
6488 gimple g;
6489 gimple_seq body = NULL;
6490 struct gimplify_ctx gctx;
6492 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6493 find_omp_clause (OMP_TASK_CLAUSES (expr),
6494 OMP_CLAUSE_UNTIED)
6495 ? ORT_UNTIED_TASK : ORT_TASK);
6497 push_gimplify_context (&gctx);
6499 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6500 if (gimple_code (g) == GIMPLE_BIND)
6501 pop_gimplify_context (g);
6502 else
6503 pop_gimplify_context (NULL);
6505 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6507 g = gimple_build_omp_task (body,
6508 OMP_TASK_CLAUSES (expr),
6509 NULL_TREE, NULL_TREE,
6510 NULL_TREE, NULL_TREE, NULL_TREE);
6511 gimplify_seq_add_stmt (pre_p, g);
6512 *expr_p = NULL_TREE;
6515 /* Gimplify the gross structure of an OMP_FOR statement. */
6517 static enum gimplify_status
6518 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6520 tree for_stmt, decl, var, t;
6521 enum gimplify_status ret = GS_ALL_DONE;
6522 enum gimplify_status tret;
6523 gimple gfor;
6524 gimple_seq for_body, for_pre_body;
6525 int i;
6527 for_stmt = *expr_p;
6529 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6530 ORT_WORKSHARE);
6532 /* Handle OMP_FOR_INIT. */
6533 for_pre_body = NULL;
6534 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6535 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6537 for_body = NULL;
6538 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6539 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6540 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6541 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6542 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6544 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6545 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6546 decl = TREE_OPERAND (t, 0);
6547 gcc_assert (DECL_P (decl));
6548 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6549 || POINTER_TYPE_P (TREE_TYPE (decl)));
6551 /* Make sure the iteration variable is private. */
6552 if (omp_is_private (gimplify_omp_ctxp, decl))
6553 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6554 else
6555 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6557 /* If DECL is not a gimple register, create a temporary variable to act
6558 as an iteration counter. This is valid, since DECL cannot be
6559 modified in the body of the loop. */
6560 if (!is_gimple_reg (decl))
6562 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6563 TREE_OPERAND (t, 0) = var;
6565 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6567 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6569 else
6570 var = decl;
6572 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6573 is_gimple_val, fb_rvalue);
6574 ret = MIN (ret, tret);
6575 if (ret == GS_ERROR)
6576 return ret;
6578 /* Handle OMP_FOR_COND. */
6579 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6580 gcc_assert (COMPARISON_CLASS_P (t));
6581 gcc_assert (TREE_OPERAND (t, 0) == decl);
6583 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6584 is_gimple_val, fb_rvalue);
6585 ret = MIN (ret, tret);
6587 /* Handle OMP_FOR_INCR. */
6588 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6589 switch (TREE_CODE (t))
6591 case PREINCREMENT_EXPR:
6592 case POSTINCREMENT_EXPR:
6593 t = build_int_cst (TREE_TYPE (decl), 1);
6594 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6595 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6596 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6597 break;
6599 case PREDECREMENT_EXPR:
6600 case POSTDECREMENT_EXPR:
6601 t = build_int_cst (TREE_TYPE (decl), -1);
6602 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6603 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6604 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6605 break;
6607 case MODIFY_EXPR:
6608 gcc_assert (TREE_OPERAND (t, 0) == decl);
6609 TREE_OPERAND (t, 0) = var;
6611 t = TREE_OPERAND (t, 1);
6612 switch (TREE_CODE (t))
6614 case PLUS_EXPR:
6615 if (TREE_OPERAND (t, 1) == decl)
6617 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6618 TREE_OPERAND (t, 0) = var;
6619 break;
6622 /* Fallthru. */
6623 case MINUS_EXPR:
6624 case POINTER_PLUS_EXPR:
6625 gcc_assert (TREE_OPERAND (t, 0) == decl);
6626 TREE_OPERAND (t, 0) = var;
6627 break;
6628 default:
6629 gcc_unreachable ();
6632 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6633 is_gimple_val, fb_rvalue);
6634 ret = MIN (ret, tret);
6635 break;
6637 default:
6638 gcc_unreachable ();
6641 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6643 tree c;
6644 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6645 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6646 && OMP_CLAUSE_DECL (c) == decl
6647 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6649 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6650 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6651 gcc_assert (TREE_OPERAND (t, 0) == var);
6652 t = TREE_OPERAND (t, 1);
6653 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6654 || TREE_CODE (t) == MINUS_EXPR
6655 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6656 gcc_assert (TREE_OPERAND (t, 0) == var);
6657 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6658 TREE_OPERAND (t, 1));
6659 gimplify_assign (decl, t,
6660 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6665 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6667 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6669 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6670 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6671 for_pre_body);
6673 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6675 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6676 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6677 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6678 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6679 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6680 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6681 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6682 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6685 gimplify_seq_add_stmt (pre_p, gfor);
6686 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6689 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6690 In particular, OMP_SECTIONS and OMP_SINGLE. */
6692 static void
6693 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6695 tree expr = *expr_p;
6696 gimple stmt;
6697 gimple_seq body = NULL;
6699 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6700 gimplify_and_add (OMP_BODY (expr), &body);
6701 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6703 if (TREE_CODE (expr) == OMP_SECTIONS)
6704 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6705 else if (TREE_CODE (expr) == OMP_SINGLE)
6706 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6707 else
6708 gcc_unreachable ();
6710 gimplify_seq_add_stmt (pre_p, stmt);
6713 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6714 stabilized the lhs of the atomic operation as *ADDR. Return true if
6715 EXPR is this stabilized form. */
6717 static bool
6718 goa_lhs_expr_p (tree expr, tree addr)
6720 /* Also include casts to other type variants. The C front end is fond
6721 of adding these for e.g. volatile variables. This is like
6722 STRIP_TYPE_NOPS but includes the main variant lookup. */
6723 STRIP_USELESS_TYPE_CONVERSION (expr);
6725 if (TREE_CODE (expr) == INDIRECT_REF)
6727 expr = TREE_OPERAND (expr, 0);
6728 while (expr != addr
6729 && (CONVERT_EXPR_P (expr)
6730 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6731 && TREE_CODE (expr) == TREE_CODE (addr)
6732 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6734 expr = TREE_OPERAND (expr, 0);
6735 addr = TREE_OPERAND (addr, 0);
6737 if (expr == addr)
6738 return true;
6739 return (TREE_CODE (addr) == ADDR_EXPR
6740 && TREE_CODE (expr) == ADDR_EXPR
6741 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6743 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6744 return true;
6745 return false;
6748 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6749 expression does not involve the lhs, evaluate it into a temporary.
6750 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6751 or -1 if an error was encountered. */
6753 static int
6754 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6755 tree lhs_var)
6757 tree expr = *expr_p;
6758 int saw_lhs;
6760 if (goa_lhs_expr_p (expr, lhs_addr))
6762 *expr_p = lhs_var;
6763 return 1;
6765 if (is_gimple_val (expr))
6766 return 0;
6768 saw_lhs = 0;
6769 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6771 case tcc_binary:
6772 case tcc_comparison:
6773 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6774 lhs_var);
6775 case tcc_unary:
6776 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6777 lhs_var);
6778 break;
6779 case tcc_expression:
6780 switch (TREE_CODE (expr))
6782 case TRUTH_ANDIF_EXPR:
6783 case TRUTH_ORIF_EXPR:
6784 case TRUTH_AND_EXPR:
6785 case TRUTH_OR_EXPR:
6786 case TRUTH_XOR_EXPR:
6787 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6788 lhs_addr, lhs_var);
6789 case TRUTH_NOT_EXPR:
6790 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6791 lhs_addr, lhs_var);
6792 break;
6793 case COMPOUND_EXPR:
6794 /* Break out any preevaluations from cp_build_modify_expr. */
6795 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6796 expr = TREE_OPERAND (expr, 1))
6797 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6798 *expr_p = expr;
6799 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6800 default:
6801 break;
6803 break;
6804 default:
6805 break;
6808 if (saw_lhs == 0)
6810 enum gimplify_status gs;
6811 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6812 if (gs != GS_ALL_DONE)
6813 saw_lhs = -1;
6816 return saw_lhs;
6819 /* Gimplify an OMP_ATOMIC statement. */
6821 static enum gimplify_status
6822 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6824 tree addr = TREE_OPERAND (*expr_p, 0);
6825 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6826 ? NULL : TREE_OPERAND (*expr_p, 1);
6827 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6828 tree tmp_load;
6829 gimple loadstmt, storestmt;
6831 tmp_load = create_tmp_reg (type, NULL);
6832 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6833 return GS_ERROR;
6835 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6836 != GS_ALL_DONE)
6837 return GS_ERROR;
6839 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6840 gimplify_seq_add_stmt (pre_p, loadstmt);
6841 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6842 != GS_ALL_DONE)
6843 return GS_ERROR;
6845 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6846 rhs = tmp_load;
6847 storestmt = gimple_build_omp_atomic_store (rhs);
6848 gimplify_seq_add_stmt (pre_p, storestmt);
6849 switch (TREE_CODE (*expr_p))
6851 case OMP_ATOMIC_READ:
6852 case OMP_ATOMIC_CAPTURE_OLD:
6853 *expr_p = tmp_load;
6854 gimple_omp_atomic_set_need_value (loadstmt);
6855 break;
6856 case OMP_ATOMIC_CAPTURE_NEW:
6857 *expr_p = rhs;
6858 gimple_omp_atomic_set_need_value (storestmt);
6859 break;
6860 default:
6861 *expr_p = NULL;
6862 break;
6865 return GS_ALL_DONE;
6868 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6869 body, and adding some EH bits. */
6871 static enum gimplify_status
6872 gimplify_transaction (tree *expr_p, gimple_seq *pre_p)
6874 tree expr = *expr_p, temp, tbody = TRANSACTION_EXPR_BODY (expr);
6875 gimple g;
6876 gimple_seq body = NULL;
6877 struct gimplify_ctx gctx;
6878 int subcode = 0;
6880 /* Wrap the transaction body in a BIND_EXPR so we have a context
6881 where to put decls for OpenMP. */
6882 if (TREE_CODE (tbody) != BIND_EXPR)
6884 tree bind = build3 (BIND_EXPR, void_type_node, NULL, tbody, NULL);
6885 TREE_SIDE_EFFECTS (bind) = 1;
6886 SET_EXPR_LOCATION (bind, EXPR_LOCATION (tbody));
6887 TRANSACTION_EXPR_BODY (expr) = bind;
6890 push_gimplify_context (&gctx);
6891 temp = voidify_wrapper_expr (*expr_p, NULL);
6893 g = gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr), &body);
6894 pop_gimplify_context (g);
6896 g = gimple_build_transaction (body, NULL);
6897 if (TRANSACTION_EXPR_OUTER (expr))
6898 subcode = GTMA_IS_OUTER;
6899 else if (TRANSACTION_EXPR_RELAXED (expr))
6900 subcode = GTMA_IS_RELAXED;
6901 gimple_transaction_set_subcode (g, subcode);
6903 gimplify_seq_add_stmt (pre_p, g);
6905 if (temp)
6907 *expr_p = temp;
6908 return GS_OK;
6911 *expr_p = NULL_TREE;
6912 return GS_ALL_DONE;
6915 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6916 expression produces a value to be used as an operand inside a GIMPLE
6917 statement, the value will be stored back in *EXPR_P. This value will
6918 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6919 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6920 emitted in PRE_P and POST_P.
6922 Additionally, this process may overwrite parts of the input
6923 expression during gimplification. Ideally, it should be
6924 possible to do non-destructive gimplification.
6926 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6927 the expression needs to evaluate to a value to be used as
6928 an operand in a GIMPLE statement, this value will be stored in
6929 *EXPR_P on exit. This happens when the caller specifies one
6930 of fb_lvalue or fb_rvalue fallback flags.
6932 PRE_P will contain the sequence of GIMPLE statements corresponding
6933 to the evaluation of EXPR and all the side-effects that must
6934 be executed before the main expression. On exit, the last
6935 statement of PRE_P is the core statement being gimplified. For
6936 instance, when gimplifying 'if (++a)' the last statement in
6937 PRE_P will be 'if (t.1)' where t.1 is the result of
6938 pre-incrementing 'a'.
6940 POST_P will contain the sequence of GIMPLE statements corresponding
6941 to the evaluation of all the side-effects that must be executed
6942 after the main expression. If this is NULL, the post
6943 side-effects are stored at the end of PRE_P.
6945 The reason why the output is split in two is to handle post
6946 side-effects explicitly. In some cases, an expression may have
6947 inner and outer post side-effects which need to be emitted in
6948 an order different from the one given by the recursive
6949 traversal. For instance, for the expression (*p--)++ the post
6950 side-effects of '--' must actually occur *after* the post
6951 side-effects of '++'. However, gimplification will first visit
6952 the inner expression, so if a separate POST sequence was not
6953 used, the resulting sequence would be:
6955 1 t.1 = *p
6956 2 p = p - 1
6957 3 t.2 = t.1 + 1
6958 4 *p = t.2
6960 However, the post-decrement operation in line #2 must not be
6961 evaluated until after the store to *p at line #4, so the
6962 correct sequence should be:
6964 1 t.1 = *p
6965 2 t.2 = t.1 + 1
6966 3 *p = t.2
6967 4 p = p - 1
6969 So, by specifying a separate post queue, it is possible
6970 to emit the post side-effects in the correct order.
6971 If POST_P is NULL, an internal queue will be used. Before
6972 returning to the caller, the sequence POST_P is appended to
6973 the main output sequence PRE_P.
6975 GIMPLE_TEST_F points to a function that takes a tree T and
6976 returns nonzero if T is in the GIMPLE form requested by the
6977 caller. The GIMPLE predicates are in gimple.c.
6979 FALLBACK tells the function what sort of a temporary we want if
6980 gimplification cannot produce an expression that complies with
6981 GIMPLE_TEST_F.
6983 fb_none means that no temporary should be generated
6984 fb_rvalue means that an rvalue is OK to generate
6985 fb_lvalue means that an lvalue is OK to generate
6986 fb_either means that either is OK, but an lvalue is preferable.
6987 fb_mayfail means that gimplification may fail (in which case
6988 GS_ERROR will be returned)
6990 The return value is either GS_ERROR or GS_ALL_DONE, since this
6991 function iterates until EXPR is completely gimplified or an error
6992 occurs. */
6994 enum gimplify_status
6995 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6996 bool (*gimple_test_f) (tree), fallback_t fallback)
6998 tree tmp;
6999 gimple_seq internal_pre = NULL;
7000 gimple_seq internal_post = NULL;
7001 tree save_expr;
7002 bool is_statement;
7003 location_t saved_location;
7004 enum gimplify_status ret;
7005 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
7007 save_expr = *expr_p;
7008 if (save_expr == NULL_TREE)
7009 return GS_ALL_DONE;
7011 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
7012 is_statement = gimple_test_f == is_gimple_stmt;
7013 if (is_statement)
7014 gcc_assert (pre_p);
7016 /* Consistency checks. */
7017 if (gimple_test_f == is_gimple_reg)
7018 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
7019 else if (gimple_test_f == is_gimple_val
7020 || gimple_test_f == is_gimple_call_addr
7021 || gimple_test_f == is_gimple_condexpr
7022 || gimple_test_f == is_gimple_mem_rhs
7023 || gimple_test_f == is_gimple_mem_rhs_or_call
7024 || gimple_test_f == is_gimple_reg_rhs
7025 || gimple_test_f == is_gimple_reg_rhs_or_call
7026 || gimple_test_f == is_gimple_asm_val
7027 || gimple_test_f == is_gimple_mem_ref_addr)
7028 gcc_assert (fallback & fb_rvalue);
7029 else if (gimple_test_f == is_gimple_min_lval
7030 || gimple_test_f == is_gimple_lvalue)
7031 gcc_assert (fallback & fb_lvalue);
7032 else if (gimple_test_f == is_gimple_addressable)
7033 gcc_assert (fallback & fb_either);
7034 else if (gimple_test_f == is_gimple_stmt)
7035 gcc_assert (fallback == fb_none);
7036 else
7038 /* We should have recognized the GIMPLE_TEST_F predicate to
7039 know what kind of fallback to use in case a temporary is
7040 needed to hold the value or address of *EXPR_P. */
7041 gcc_unreachable ();
7044 /* We used to check the predicate here and return immediately if it
7045 succeeds. This is wrong; the design is for gimplification to be
7046 idempotent, and for the predicates to only test for valid forms, not
7047 whether they are fully simplified. */
7048 if (pre_p == NULL)
7049 pre_p = &internal_pre;
7051 if (post_p == NULL)
7052 post_p = &internal_post;
7054 /* Remember the last statements added to PRE_P and POST_P. Every
7055 new statement added by the gimplification helpers needs to be
7056 annotated with location information. To centralize the
7057 responsibility, we remember the last statement that had been
7058 added to both queues before gimplifying *EXPR_P. If
7059 gimplification produces new statements in PRE_P and POST_P, those
7060 statements will be annotated with the same location information
7061 as *EXPR_P. */
7062 pre_last_gsi = gsi_last (*pre_p);
7063 post_last_gsi = gsi_last (*post_p);
7065 saved_location = input_location;
7066 if (save_expr != error_mark_node
7067 && EXPR_HAS_LOCATION (*expr_p))
7068 input_location = EXPR_LOCATION (*expr_p);
7070 /* Loop over the specific gimplifiers until the toplevel node
7071 remains the same. */
7074 /* Strip away as many useless type conversions as possible
7075 at the toplevel. */
7076 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
7078 /* Remember the expr. */
7079 save_expr = *expr_p;
7081 /* Die, die, die, my darling. */
7082 if (save_expr == error_mark_node
7083 || (TREE_TYPE (save_expr)
7084 && TREE_TYPE (save_expr) == error_mark_node))
7086 ret = GS_ERROR;
7087 break;
7090 /* Do any language-specific gimplification. */
7091 ret = ((enum gimplify_status)
7092 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
7093 if (ret == GS_OK)
7095 if (*expr_p == NULL_TREE)
7096 break;
7097 if (*expr_p != save_expr)
7098 continue;
7100 else if (ret != GS_UNHANDLED)
7101 break;
7103 /* Make sure that all the cases set 'ret' appropriately. */
7104 ret = GS_UNHANDLED;
7105 switch (TREE_CODE (*expr_p))
7107 /* First deal with the special cases. */
7109 case POSTINCREMENT_EXPR:
7110 case POSTDECREMENT_EXPR:
7111 case PREINCREMENT_EXPR:
7112 case PREDECREMENT_EXPR:
7113 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
7114 fallback != fb_none);
7115 break;
7117 case ARRAY_REF:
7118 case ARRAY_RANGE_REF:
7119 case REALPART_EXPR:
7120 case IMAGPART_EXPR:
7121 case COMPONENT_REF:
7122 case VIEW_CONVERT_EXPR:
7123 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
7124 fallback ? fallback : fb_rvalue);
7125 break;
7127 case COND_EXPR:
7128 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
7130 /* C99 code may assign to an array in a structure value of a
7131 conditional expression, and this has undefined behavior
7132 only on execution, so create a temporary if an lvalue is
7133 required. */
7134 if (fallback == fb_lvalue)
7136 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7137 mark_addressable (*expr_p);
7138 ret = GS_OK;
7140 break;
7142 case CALL_EXPR:
7143 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
7145 /* C99 code may assign to an array in a structure returned
7146 from a function, and this has undefined behavior only on
7147 execution, so create a temporary if an lvalue is
7148 required. */
7149 if (fallback == fb_lvalue)
7151 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7152 mark_addressable (*expr_p);
7153 ret = GS_OK;
7155 break;
7157 case TREE_LIST:
7158 gcc_unreachable ();
7160 case COMPOUND_EXPR:
7161 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
7162 break;
7164 case COMPOUND_LITERAL_EXPR:
7165 ret = gimplify_compound_literal_expr (expr_p, pre_p,
7166 gimple_test_f, fallback);
7167 break;
7169 case MODIFY_EXPR:
7170 case INIT_EXPR:
7171 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
7172 fallback != fb_none);
7173 break;
7175 case TRUTH_ANDIF_EXPR:
7176 case TRUTH_ORIF_EXPR:
7178 /* Preserve the original type of the expression and the
7179 source location of the outer expression. */
7180 tree org_type = TREE_TYPE (*expr_p);
7181 *expr_p = gimple_boolify (*expr_p);
7182 *expr_p = build3_loc (input_location, COND_EXPR,
7183 org_type, *expr_p,
7184 fold_convert_loc
7185 (input_location,
7186 org_type, boolean_true_node),
7187 fold_convert_loc
7188 (input_location,
7189 org_type, boolean_false_node));
7190 ret = GS_OK;
7191 break;
7194 case TRUTH_NOT_EXPR:
7196 tree type = TREE_TYPE (*expr_p);
7197 /* The parsers are careful to generate TRUTH_NOT_EXPR
7198 only with operands that are always zero or one.
7199 We do not fold here but handle the only interesting case
7200 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
7201 *expr_p = gimple_boolify (*expr_p);
7202 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
7203 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
7204 TREE_TYPE (*expr_p),
7205 TREE_OPERAND (*expr_p, 0));
7206 else
7207 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
7208 TREE_TYPE (*expr_p),
7209 TREE_OPERAND (*expr_p, 0),
7210 build_int_cst (TREE_TYPE (*expr_p), 1));
7211 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
7212 *expr_p = fold_convert_loc (input_location, type, *expr_p);
7213 ret = GS_OK;
7214 break;
7217 case ADDR_EXPR:
7218 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
7219 break;
7221 case VA_ARG_EXPR:
7222 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
7223 break;
7225 CASE_CONVERT:
7226 if (IS_EMPTY_STMT (*expr_p))
7228 ret = GS_ALL_DONE;
7229 break;
7232 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
7233 || fallback == fb_none)
7235 /* Just strip a conversion to void (or in void context) and
7236 try again. */
7237 *expr_p = TREE_OPERAND (*expr_p, 0);
7238 ret = GS_OK;
7239 break;
7242 ret = gimplify_conversion (expr_p);
7243 if (ret == GS_ERROR)
7244 break;
7245 if (*expr_p != save_expr)
7246 break;
7247 /* FALLTHRU */
7249 case FIX_TRUNC_EXPR:
7250 /* unary_expr: ... | '(' cast ')' val | ... */
7251 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7252 is_gimple_val, fb_rvalue);
7253 recalculate_side_effects (*expr_p);
7254 break;
7256 case INDIRECT_REF:
7258 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
7259 bool notrap = TREE_THIS_NOTRAP (*expr_p);
7260 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
7262 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
7263 if (*expr_p != save_expr)
7265 ret = GS_OK;
7266 break;
7269 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7270 is_gimple_reg, fb_rvalue);
7271 if (ret == GS_ERROR)
7272 break;
7274 recalculate_side_effects (*expr_p);
7275 *expr_p = fold_build2_loc (input_location, MEM_REF,
7276 TREE_TYPE (*expr_p),
7277 TREE_OPERAND (*expr_p, 0),
7278 build_int_cst (saved_ptr_type, 0));
7279 TREE_THIS_VOLATILE (*expr_p) = volatilep;
7280 TREE_THIS_NOTRAP (*expr_p) = notrap;
7281 ret = GS_OK;
7282 break;
7285 /* We arrive here through the various re-gimplifcation paths. */
7286 case MEM_REF:
7287 /* First try re-folding the whole thing. */
7288 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
7289 TREE_OPERAND (*expr_p, 0),
7290 TREE_OPERAND (*expr_p, 1));
7291 if (tmp)
7293 *expr_p = tmp;
7294 recalculate_side_effects (*expr_p);
7295 ret = GS_OK;
7296 break;
7298 /* Avoid re-gimplifying the address operand if it is already
7299 in suitable form. Re-gimplifying would mark the address
7300 operand addressable. Always gimplify when not in SSA form
7301 as we still may have to gimplify decls with value-exprs. */
7302 if (!gimplify_ctxp || !gimplify_ctxp->into_ssa
7303 || !is_gimple_mem_ref_addr (TREE_OPERAND (*expr_p, 0)))
7305 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7306 is_gimple_mem_ref_addr, fb_rvalue);
7307 if (ret == GS_ERROR)
7308 break;
7310 recalculate_side_effects (*expr_p);
7311 ret = GS_ALL_DONE;
7312 break;
7314 /* Constants need not be gimplified. */
7315 case INTEGER_CST:
7316 case REAL_CST:
7317 case FIXED_CST:
7318 case STRING_CST:
7319 case COMPLEX_CST:
7320 case VECTOR_CST:
7321 ret = GS_ALL_DONE;
7322 break;
7324 case CONST_DECL:
7325 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7326 CONST_DECL node. Otherwise the decl is replaceable by its
7327 value. */
7328 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7329 if (fallback & fb_lvalue)
7330 ret = GS_ALL_DONE;
7331 else
7333 *expr_p = DECL_INITIAL (*expr_p);
7334 ret = GS_OK;
7336 break;
7338 case DECL_EXPR:
7339 ret = gimplify_decl_expr (expr_p, pre_p);
7340 break;
7342 case BIND_EXPR:
7343 ret = gimplify_bind_expr (expr_p, pre_p);
7344 break;
7346 case LOOP_EXPR:
7347 ret = gimplify_loop_expr (expr_p, pre_p);
7348 break;
7350 case SWITCH_EXPR:
7351 ret = gimplify_switch_expr (expr_p, pre_p);
7352 break;
7354 case EXIT_EXPR:
7355 ret = gimplify_exit_expr (expr_p);
7356 break;
7358 case GOTO_EXPR:
7359 /* If the target is not LABEL, then it is a computed jump
7360 and the target needs to be gimplified. */
7361 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
7363 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
7364 NULL, is_gimple_val, fb_rvalue);
7365 if (ret == GS_ERROR)
7366 break;
7368 gimplify_seq_add_stmt (pre_p,
7369 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
7370 ret = GS_ALL_DONE;
7371 break;
7373 case PREDICT_EXPR:
7374 gimplify_seq_add_stmt (pre_p,
7375 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
7376 PREDICT_EXPR_OUTCOME (*expr_p)));
7377 ret = GS_ALL_DONE;
7378 break;
7380 case LABEL_EXPR:
7381 ret = GS_ALL_DONE;
7382 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
7383 == current_function_decl);
7384 gimplify_seq_add_stmt (pre_p,
7385 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
7386 break;
7388 case CASE_LABEL_EXPR:
7389 ret = gimplify_case_label_expr (expr_p, pre_p);
7390 break;
7392 case RETURN_EXPR:
7393 ret = gimplify_return_expr (*expr_p, pre_p);
7394 break;
7396 case CONSTRUCTOR:
7397 /* Don't reduce this in place; let gimplify_init_constructor work its
7398 magic. Buf if we're just elaborating this for side effects, just
7399 gimplify any element that has side-effects. */
7400 if (fallback == fb_none)
7402 unsigned HOST_WIDE_INT ix;
7403 tree val;
7404 tree temp = NULL_TREE;
7405 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7406 if (TREE_SIDE_EFFECTS (val))
7407 append_to_statement_list (val, &temp);
7409 *expr_p = temp;
7410 ret = temp ? GS_OK : GS_ALL_DONE;
7412 /* C99 code may assign to an array in a constructed
7413 structure or union, and this has undefined behavior only
7414 on execution, so create a temporary if an lvalue is
7415 required. */
7416 else if (fallback == fb_lvalue)
7418 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7419 mark_addressable (*expr_p);
7420 ret = GS_OK;
7422 else
7423 ret = GS_ALL_DONE;
7424 break;
7426 /* The following are special cases that are not handled by the
7427 original GIMPLE grammar. */
7429 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7430 eliminated. */
7431 case SAVE_EXPR:
7432 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7433 break;
7435 case BIT_FIELD_REF:
7436 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7437 post_p, is_gimple_lvalue, fb_either);
7438 recalculate_side_effects (*expr_p);
7439 break;
7441 case TARGET_MEM_REF:
7443 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7445 if (TMR_BASE (*expr_p))
7446 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7447 post_p, is_gimple_mem_ref_addr, fb_either);
7448 if (TMR_INDEX (*expr_p))
7449 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7450 post_p, is_gimple_val, fb_rvalue);
7451 if (TMR_INDEX2 (*expr_p))
7452 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7453 post_p, is_gimple_val, fb_rvalue);
7454 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7455 ret = MIN (r0, r1);
7457 break;
7459 case NON_LVALUE_EXPR:
7460 /* This should have been stripped above. */
7461 gcc_unreachable ();
7463 case ASM_EXPR:
7464 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7465 break;
7467 case TRY_FINALLY_EXPR:
7468 case TRY_CATCH_EXPR:
7470 gimple_seq eval, cleanup;
7471 gimple try_;
7473 /* Calls to destructors are generated automatically in FINALLY/CATCH
7474 block. They should have location as UNKNOWN_LOCATION. However,
7475 gimplify_call_expr will reset these call stmts to input_location
7476 if it finds stmt's location is unknown. To prevent resetting for
7477 destructors, we set the input_location to unknown.
7478 Note that this only affects the destructor calls in FINALLY/CATCH
7479 block, and will automatically reset to its original value by the
7480 end of gimplify_expr. */
7481 input_location = UNKNOWN_LOCATION;
7482 eval = cleanup = NULL;
7483 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7484 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7485 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7486 if (gimple_seq_empty_p (cleanup))
7488 gimple_seq_add_seq (pre_p, eval);
7489 ret = GS_ALL_DONE;
7490 break;
7492 try_ = gimple_build_try (eval, cleanup,
7493 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7494 ? GIMPLE_TRY_FINALLY
7495 : GIMPLE_TRY_CATCH);
7496 if (LOCATION_LOCUS (saved_location) != UNKNOWN_LOCATION)
7497 gimple_set_location (try_, saved_location);
7498 else
7499 gimple_set_location (try_, EXPR_LOCATION (save_expr));
7500 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7501 gimple_try_set_catch_is_cleanup (try_,
7502 TRY_CATCH_IS_CLEANUP (*expr_p));
7503 gimplify_seq_add_stmt (pre_p, try_);
7504 ret = GS_ALL_DONE;
7505 break;
7508 case CLEANUP_POINT_EXPR:
7509 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7510 break;
7512 case TARGET_EXPR:
7513 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7514 break;
7516 case CATCH_EXPR:
7518 gimple c;
7519 gimple_seq handler = NULL;
7520 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7521 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7522 gimplify_seq_add_stmt (pre_p, c);
7523 ret = GS_ALL_DONE;
7524 break;
7527 case EH_FILTER_EXPR:
7529 gimple ehf;
7530 gimple_seq failure = NULL;
7532 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7533 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7534 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7535 gimplify_seq_add_stmt (pre_p, ehf);
7536 ret = GS_ALL_DONE;
7537 break;
7540 case OBJ_TYPE_REF:
7542 enum gimplify_status r0, r1;
7543 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7544 post_p, is_gimple_val, fb_rvalue);
7545 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7546 post_p, is_gimple_val, fb_rvalue);
7547 TREE_SIDE_EFFECTS (*expr_p) = 0;
7548 ret = MIN (r0, r1);
7550 break;
7552 case LABEL_DECL:
7553 /* We get here when taking the address of a label. We mark
7554 the label as "forced"; meaning it can never be removed and
7555 it is a potential target for any computed goto. */
7556 FORCED_LABEL (*expr_p) = 1;
7557 ret = GS_ALL_DONE;
7558 break;
7560 case STATEMENT_LIST:
7561 ret = gimplify_statement_list (expr_p, pre_p);
7562 break;
7564 case WITH_SIZE_EXPR:
7566 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7567 post_p == &internal_post ? NULL : post_p,
7568 gimple_test_f, fallback);
7569 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7570 is_gimple_val, fb_rvalue);
7571 ret = GS_ALL_DONE;
7573 break;
7575 case VAR_DECL:
7576 case PARM_DECL:
7577 ret = gimplify_var_or_parm_decl (expr_p);
7578 break;
7580 case RESULT_DECL:
7581 /* When within an OpenMP context, notice uses of variables. */
7582 if (gimplify_omp_ctxp)
7583 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7584 ret = GS_ALL_DONE;
7585 break;
7587 case SSA_NAME:
7588 /* Allow callbacks into the gimplifier during optimization. */
7589 ret = GS_ALL_DONE;
7590 break;
7592 case OMP_PARALLEL:
7593 gimplify_omp_parallel (expr_p, pre_p);
7594 ret = GS_ALL_DONE;
7595 break;
7597 case OMP_TASK:
7598 gimplify_omp_task (expr_p, pre_p);
7599 ret = GS_ALL_DONE;
7600 break;
7602 case OMP_FOR:
7603 ret = gimplify_omp_for (expr_p, pre_p);
7604 break;
7606 case OMP_SECTIONS:
7607 case OMP_SINGLE:
7608 gimplify_omp_workshare (expr_p, pre_p);
7609 ret = GS_ALL_DONE;
7610 break;
7612 case OMP_SECTION:
7613 case OMP_MASTER:
7614 case OMP_ORDERED:
7615 case OMP_CRITICAL:
7617 gimple_seq body = NULL;
7618 gimple g;
7620 gimplify_and_add (OMP_BODY (*expr_p), &body);
7621 switch (TREE_CODE (*expr_p))
7623 case OMP_SECTION:
7624 g = gimple_build_omp_section (body);
7625 break;
7626 case OMP_MASTER:
7627 g = gimple_build_omp_master (body);
7628 break;
7629 case OMP_ORDERED:
7630 g = gimple_build_omp_ordered (body);
7631 break;
7632 case OMP_CRITICAL:
7633 g = gimple_build_omp_critical (body,
7634 OMP_CRITICAL_NAME (*expr_p));
7635 break;
7636 default:
7637 gcc_unreachable ();
7639 gimplify_seq_add_stmt (pre_p, g);
7640 ret = GS_ALL_DONE;
7641 break;
7644 case OMP_ATOMIC:
7645 case OMP_ATOMIC_READ:
7646 case OMP_ATOMIC_CAPTURE_OLD:
7647 case OMP_ATOMIC_CAPTURE_NEW:
7648 ret = gimplify_omp_atomic (expr_p, pre_p);
7649 break;
7651 case TRANSACTION_EXPR:
7652 ret = gimplify_transaction (expr_p, pre_p);
7653 break;
7655 case TRUTH_AND_EXPR:
7656 case TRUTH_OR_EXPR:
7657 case TRUTH_XOR_EXPR:
7659 tree orig_type = TREE_TYPE (*expr_p);
7660 tree new_type, xop0, xop1;
7661 *expr_p = gimple_boolify (*expr_p);
7662 new_type = TREE_TYPE (*expr_p);
7663 if (!useless_type_conversion_p (orig_type, new_type))
7665 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7666 ret = GS_OK;
7667 break;
7670 /* Boolified binary truth expressions are semantically equivalent
7671 to bitwise binary expressions. Canonicalize them to the
7672 bitwise variant. */
7673 switch (TREE_CODE (*expr_p))
7675 case TRUTH_AND_EXPR:
7676 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7677 break;
7678 case TRUTH_OR_EXPR:
7679 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7680 break;
7681 case TRUTH_XOR_EXPR:
7682 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7683 break;
7684 default:
7685 break;
7687 /* Now make sure that operands have compatible type to
7688 expression's new_type. */
7689 xop0 = TREE_OPERAND (*expr_p, 0);
7690 xop1 = TREE_OPERAND (*expr_p, 1);
7691 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7692 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7693 new_type,
7694 xop0);
7695 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7696 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7697 new_type,
7698 xop1);
7699 /* Continue classified as tcc_binary. */
7700 goto expr_2;
7703 case FMA_EXPR:
7704 case VEC_COND_EXPR:
7705 case VEC_PERM_EXPR:
7706 /* Classified as tcc_expression. */
7707 goto expr_3;
7709 case POINTER_PLUS_EXPR:
7711 enum gimplify_status r0, r1;
7712 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7713 post_p, is_gimple_val, fb_rvalue);
7714 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7715 post_p, is_gimple_val, fb_rvalue);
7716 recalculate_side_effects (*expr_p);
7717 ret = MIN (r0, r1);
7718 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7719 after gimplifying operands - this is similar to how
7720 it would be folding all gimplified stmts on creation
7721 to have them canonicalized, which is what we eventually
7722 should do anyway. */
7723 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7724 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7726 *expr_p = build_fold_addr_expr_with_type_loc
7727 (input_location,
7728 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7729 TREE_OPERAND (*expr_p, 0),
7730 fold_convert (ptr_type_node,
7731 TREE_OPERAND (*expr_p, 1))),
7732 TREE_TYPE (*expr_p));
7733 ret = MIN (ret, GS_OK);
7735 break;
7738 default:
7739 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7741 case tcc_comparison:
7742 /* Handle comparison of objects of non scalar mode aggregates
7743 with a call to memcmp. It would be nice to only have to do
7744 this for variable-sized objects, but then we'd have to allow
7745 the same nest of reference nodes we allow for MODIFY_EXPR and
7746 that's too complex.
7748 Compare scalar mode aggregates as scalar mode values. Using
7749 memcmp for them would be very inefficient at best, and is
7750 plain wrong if bitfields are involved. */
7752 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7754 /* Vector comparisons need no boolification. */
7755 if (TREE_CODE (type) == VECTOR_TYPE)
7756 goto expr_2;
7757 else if (!AGGREGATE_TYPE_P (type))
7759 tree org_type = TREE_TYPE (*expr_p);
7760 *expr_p = gimple_boolify (*expr_p);
7761 if (!useless_type_conversion_p (org_type,
7762 TREE_TYPE (*expr_p)))
7764 *expr_p = fold_convert_loc (input_location,
7765 org_type, *expr_p);
7766 ret = GS_OK;
7768 else
7769 goto expr_2;
7771 else if (TYPE_MODE (type) != BLKmode)
7772 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7773 else
7774 ret = gimplify_variable_sized_compare (expr_p);
7776 break;
7779 /* If *EXPR_P does not need to be special-cased, handle it
7780 according to its class. */
7781 case tcc_unary:
7782 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7783 post_p, is_gimple_val, fb_rvalue);
7784 break;
7786 case tcc_binary:
7787 expr_2:
7789 enum gimplify_status r0, r1;
7791 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7792 post_p, is_gimple_val, fb_rvalue);
7793 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7794 post_p, is_gimple_val, fb_rvalue);
7796 ret = MIN (r0, r1);
7797 break;
7800 expr_3:
7802 enum gimplify_status r0, r1, r2;
7804 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7805 post_p, is_gimple_val, fb_rvalue);
7806 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7807 post_p, is_gimple_val, fb_rvalue);
7808 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7809 post_p, is_gimple_val, fb_rvalue);
7811 ret = MIN (MIN (r0, r1), r2);
7812 break;
7815 case tcc_declaration:
7816 case tcc_constant:
7817 ret = GS_ALL_DONE;
7818 goto dont_recalculate;
7820 default:
7821 gcc_unreachable ();
7824 recalculate_side_effects (*expr_p);
7826 dont_recalculate:
7827 break;
7830 gcc_assert (*expr_p || ret != GS_OK);
7832 while (ret == GS_OK);
7834 /* If we encountered an error_mark somewhere nested inside, either
7835 stub out the statement or propagate the error back out. */
7836 if (ret == GS_ERROR)
7838 if (is_statement)
7839 *expr_p = NULL;
7840 goto out;
7843 /* This was only valid as a return value from the langhook, which
7844 we handled. Make sure it doesn't escape from any other context. */
7845 gcc_assert (ret != GS_UNHANDLED);
7847 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7849 /* We aren't looking for a value, and we don't have a valid
7850 statement. If it doesn't have side-effects, throw it away. */
7851 if (!TREE_SIDE_EFFECTS (*expr_p))
7852 *expr_p = NULL;
7853 else if (!TREE_THIS_VOLATILE (*expr_p))
7855 /* This is probably a _REF that contains something nested that
7856 has side effects. Recurse through the operands to find it. */
7857 enum tree_code code = TREE_CODE (*expr_p);
7859 switch (code)
7861 case COMPONENT_REF:
7862 case REALPART_EXPR:
7863 case IMAGPART_EXPR:
7864 case VIEW_CONVERT_EXPR:
7865 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7866 gimple_test_f, fallback);
7867 break;
7869 case ARRAY_REF:
7870 case ARRAY_RANGE_REF:
7871 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7872 gimple_test_f, fallback);
7873 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7874 gimple_test_f, fallback);
7875 break;
7877 default:
7878 /* Anything else with side-effects must be converted to
7879 a valid statement before we get here. */
7880 gcc_unreachable ();
7883 *expr_p = NULL;
7885 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7886 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7888 /* Historically, the compiler has treated a bare reference
7889 to a non-BLKmode volatile lvalue as forcing a load. */
7890 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7892 /* Normally, we do not want to create a temporary for a
7893 TREE_ADDRESSABLE type because such a type should not be
7894 copied by bitwise-assignment. However, we make an
7895 exception here, as all we are doing here is ensuring that
7896 we read the bytes that make up the type. We use
7897 create_tmp_var_raw because create_tmp_var will abort when
7898 given a TREE_ADDRESSABLE type. */
7899 tree tmp = create_tmp_var_raw (type, "vol");
7900 gimple_add_tmp_var (tmp);
7901 gimplify_assign (tmp, *expr_p, pre_p);
7902 *expr_p = NULL;
7904 else
7905 /* We can't do anything useful with a volatile reference to
7906 an incomplete type, so just throw it away. Likewise for
7907 a BLKmode type, since any implicit inner load should
7908 already have been turned into an explicit one by the
7909 gimplification process. */
7910 *expr_p = NULL;
7913 /* If we are gimplifying at the statement level, we're done. Tack
7914 everything together and return. */
7915 if (fallback == fb_none || is_statement)
7917 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7918 it out for GC to reclaim it. */
7919 *expr_p = NULL_TREE;
7921 if (!gimple_seq_empty_p (internal_pre)
7922 || !gimple_seq_empty_p (internal_post))
7924 gimplify_seq_add_seq (&internal_pre, internal_post);
7925 gimplify_seq_add_seq (pre_p, internal_pre);
7928 /* The result of gimplifying *EXPR_P is going to be the last few
7929 statements in *PRE_P and *POST_P. Add location information
7930 to all the statements that were added by the gimplification
7931 helpers. */
7932 if (!gimple_seq_empty_p (*pre_p))
7933 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7935 if (!gimple_seq_empty_p (*post_p))
7936 annotate_all_with_location_after (*post_p, post_last_gsi,
7937 input_location);
7939 goto out;
7942 #ifdef ENABLE_GIMPLE_CHECKING
7943 if (*expr_p)
7945 enum tree_code code = TREE_CODE (*expr_p);
7946 /* These expressions should already be in gimple IR form. */
7947 gcc_assert (code != MODIFY_EXPR
7948 && code != ASM_EXPR
7949 && code != BIND_EXPR
7950 && code != CATCH_EXPR
7951 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7952 && code != EH_FILTER_EXPR
7953 && code != GOTO_EXPR
7954 && code != LABEL_EXPR
7955 && code != LOOP_EXPR
7956 && code != SWITCH_EXPR
7957 && code != TRY_FINALLY_EXPR
7958 && code != OMP_CRITICAL
7959 && code != OMP_FOR
7960 && code != OMP_MASTER
7961 && code != OMP_ORDERED
7962 && code != OMP_PARALLEL
7963 && code != OMP_SECTIONS
7964 && code != OMP_SECTION
7965 && code != OMP_SINGLE);
7967 #endif
7969 /* Otherwise we're gimplifying a subexpression, so the resulting
7970 value is interesting. If it's a valid operand that matches
7971 GIMPLE_TEST_F, we're done. Unless we are handling some
7972 post-effects internally; if that's the case, we need to copy into
7973 a temporary before adding the post-effects to POST_P. */
7974 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7975 goto out;
7977 /* Otherwise, we need to create a new temporary for the gimplified
7978 expression. */
7980 /* We can't return an lvalue if we have an internal postqueue. The
7981 object the lvalue refers to would (probably) be modified by the
7982 postqueue; we need to copy the value out first, which means an
7983 rvalue. */
7984 if ((fallback & fb_lvalue)
7985 && gimple_seq_empty_p (internal_post)
7986 && is_gimple_addressable (*expr_p))
7988 /* An lvalue will do. Take the address of the expression, store it
7989 in a temporary, and replace the expression with an INDIRECT_REF of
7990 that temporary. */
7991 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7992 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7993 *expr_p = build_simple_mem_ref (tmp);
7995 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7997 /* An rvalue will do. Assign the gimplified expression into a
7998 new temporary TMP and replace the original expression with
7999 TMP. First, make sure that the expression has a type so that
8000 it can be assigned into a temporary. */
8001 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
8002 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
8004 else
8006 #ifdef ENABLE_GIMPLE_CHECKING
8007 if (!(fallback & fb_mayfail))
8009 fprintf (stderr, "gimplification failed:\n");
8010 print_generic_expr (stderr, *expr_p, 0);
8011 debug_tree (*expr_p);
8012 internal_error ("gimplification failed");
8014 #endif
8015 gcc_assert (fallback & fb_mayfail);
8017 /* If this is an asm statement, and the user asked for the
8018 impossible, don't die. Fail and let gimplify_asm_expr
8019 issue an error. */
8020 ret = GS_ERROR;
8021 goto out;
8024 /* Make sure the temporary matches our predicate. */
8025 gcc_assert ((*gimple_test_f) (*expr_p));
8027 if (!gimple_seq_empty_p (internal_post))
8029 annotate_all_with_location (internal_post, input_location);
8030 gimplify_seq_add_seq (pre_p, internal_post);
8033 out:
8034 input_location = saved_location;
8035 return ret;
8038 /* Look through TYPE for variable-sized objects and gimplify each such
8039 size that we find. Add to LIST_P any statements generated. */
8041 void
8042 gimplify_type_sizes (tree type, gimple_seq *list_p)
8044 tree field, t;
8046 if (type == NULL || type == error_mark_node)
8047 return;
8049 /* We first do the main variant, then copy into any other variants. */
8050 type = TYPE_MAIN_VARIANT (type);
8052 /* Avoid infinite recursion. */
8053 if (TYPE_SIZES_GIMPLIFIED (type))
8054 return;
8056 TYPE_SIZES_GIMPLIFIED (type) = 1;
8058 switch (TREE_CODE (type))
8060 case INTEGER_TYPE:
8061 case ENUMERAL_TYPE:
8062 case BOOLEAN_TYPE:
8063 case REAL_TYPE:
8064 case FIXED_POINT_TYPE:
8065 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
8066 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
8068 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8070 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
8071 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
8073 break;
8075 case ARRAY_TYPE:
8076 /* These types may not have declarations, so handle them here. */
8077 gimplify_type_sizes (TREE_TYPE (type), list_p);
8078 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
8079 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
8080 with assigned stack slots, for -O1+ -g they should be tracked
8081 by VTA. */
8082 if (!(TYPE_NAME (type)
8083 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
8084 && DECL_IGNORED_P (TYPE_NAME (type)))
8085 && TYPE_DOMAIN (type)
8086 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
8088 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
8089 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8090 DECL_IGNORED_P (t) = 0;
8091 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
8092 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8093 DECL_IGNORED_P (t) = 0;
8095 break;
8097 case RECORD_TYPE:
8098 case UNION_TYPE:
8099 case QUAL_UNION_TYPE:
8100 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8101 if (TREE_CODE (field) == FIELD_DECL)
8103 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
8104 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
8105 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
8106 gimplify_type_sizes (TREE_TYPE (field), list_p);
8108 break;
8110 case POINTER_TYPE:
8111 case REFERENCE_TYPE:
8112 /* We used to recurse on the pointed-to type here, which turned out to
8113 be incorrect because its definition might refer to variables not
8114 yet initialized at this point if a forward declaration is involved.
8116 It was actually useful for anonymous pointed-to types to ensure
8117 that the sizes evaluation dominates every possible later use of the
8118 values. Restricting to such types here would be safe since there
8119 is no possible forward declaration around, but would introduce an
8120 undesirable middle-end semantic to anonymity. We then defer to
8121 front-ends the responsibility of ensuring that the sizes are
8122 evaluated both early and late enough, e.g. by attaching artificial
8123 type declarations to the tree. */
8124 break;
8126 default:
8127 break;
8130 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
8131 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
8133 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8135 TYPE_SIZE (t) = TYPE_SIZE (type);
8136 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
8137 TYPE_SIZES_GIMPLIFIED (t) = 1;
8141 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
8142 a size or position, has had all of its SAVE_EXPRs evaluated.
8143 We add any required statements to *STMT_P. */
8145 void
8146 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
8148 tree expr = *expr_p;
8150 /* We don't do anything if the value isn't there, is constant, or contains
8151 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
8152 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
8153 will want to replace it with a new variable, but that will cause problems
8154 if this type is from outside the function. It's OK to have that here. */
8155 if (is_gimple_sizepos (expr))
8156 return;
8158 *expr_p = unshare_expr (expr);
8160 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
8163 /* Gimplify the body of statements of FNDECL and return a GIMPLE_BIND node
8164 containing the sequence of corresponding GIMPLE statements. If DO_PARMS
8165 is true, also gimplify the parameters. */
8167 gimple
8168 gimplify_body (tree fndecl, bool do_parms)
8170 location_t saved_location = input_location;
8171 gimple_seq parm_stmts, seq;
8172 gimple outer_bind;
8173 struct gimplify_ctx gctx;
8174 struct cgraph_node *cgn;
8176 timevar_push (TV_TREE_GIMPLIFY);
8178 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
8179 gimplification. */
8180 default_rtl_profile ();
8182 gcc_assert (gimplify_ctxp == NULL);
8183 push_gimplify_context (&gctx);
8185 /* Unshare most shared trees in the body and in that of any nested functions.
8186 It would seem we don't have to do this for nested functions because
8187 they are supposed to be output and then the outer function gimplified
8188 first, but the g++ front end doesn't always do it that way. */
8189 unshare_body (fndecl);
8190 unvisit_body (fndecl);
8192 cgn = cgraph_get_node (fndecl);
8193 if (cgn && cgn->origin)
8194 nonlocal_vlas = pointer_set_create ();
8196 /* Make sure input_location isn't set to something weird. */
8197 input_location = DECL_SOURCE_LOCATION (fndecl);
8199 /* Resolve callee-copies. This has to be done before processing
8200 the body so that DECL_VALUE_EXPR gets processed correctly. */
8201 parm_stmts = do_parms ? gimplify_parameters () : NULL;
8203 /* Gimplify the function's body. */
8204 seq = NULL;
8205 gimplify_stmt (&DECL_SAVED_TREE (fndecl), &seq);
8206 outer_bind = gimple_seq_first_stmt (seq);
8207 if (!outer_bind)
8209 outer_bind = gimple_build_nop ();
8210 gimplify_seq_add_stmt (&seq, outer_bind);
8213 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
8214 not the case, wrap everything in a GIMPLE_BIND to make it so. */
8215 if (gimple_code (outer_bind) == GIMPLE_BIND
8216 && gimple_seq_first (seq) == gimple_seq_last (seq))
8218 else
8219 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
8221 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8223 /* If we had callee-copies statements, insert them at the beginning
8224 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8225 if (!gimple_seq_empty_p (parm_stmts))
8227 tree parm;
8229 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
8230 gimple_bind_set_body (outer_bind, parm_stmts);
8232 for (parm = DECL_ARGUMENTS (current_function_decl);
8233 parm; parm = DECL_CHAIN (parm))
8234 if (DECL_HAS_VALUE_EXPR_P (parm))
8236 DECL_HAS_VALUE_EXPR_P (parm) = 0;
8237 DECL_IGNORED_P (parm) = 0;
8241 if (nonlocal_vlas)
8243 pointer_set_destroy (nonlocal_vlas);
8244 nonlocal_vlas = NULL;
8247 pop_gimplify_context (outer_bind);
8248 gcc_assert (gimplify_ctxp == NULL);
8250 #ifdef ENABLE_CHECKING
8251 if (!seen_error ())
8252 verify_gimple_in_seq (gimple_bind_body (outer_bind));
8253 #endif
8255 timevar_pop (TV_TREE_GIMPLIFY);
8256 input_location = saved_location;
8258 return outer_bind;
8261 typedef char *char_p; /* For DEF_VEC_P. */
8263 /* Return whether we should exclude FNDECL from instrumentation. */
8265 static bool
8266 flag_instrument_functions_exclude_p (tree fndecl)
8268 vec<char_p> *v;
8270 v = (vec<char_p> *) flag_instrument_functions_exclude_functions;
8271 if (v && v->length () > 0)
8273 const char *name;
8274 int i;
8275 char *s;
8277 name = lang_hooks.decl_printable_name (fndecl, 0);
8278 FOR_EACH_VEC_ELT (*v, i, s)
8279 if (strstr (name, s) != NULL)
8280 return true;
8283 v = (vec<char_p> *) flag_instrument_functions_exclude_files;
8284 if (v && v->length () > 0)
8286 const char *name;
8287 int i;
8288 char *s;
8290 name = DECL_SOURCE_FILE (fndecl);
8291 FOR_EACH_VEC_ELT (*v, i, s)
8292 if (strstr (name, s) != NULL)
8293 return true;
8296 return false;
8299 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8300 node for the function we want to gimplify.
8302 Return the sequence of GIMPLE statements corresponding to the body
8303 of FNDECL. */
8305 void
8306 gimplify_function_tree (tree fndecl)
8308 tree parm, ret;
8309 gimple_seq seq;
8310 gimple bind;
8312 gcc_assert (!gimple_body (fndecl));
8314 if (DECL_STRUCT_FUNCTION (fndecl))
8315 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
8316 else
8317 push_struct_function (fndecl);
8319 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
8321 /* Preliminarily mark non-addressed complex variables as eligible
8322 for promotion to gimple registers. We'll transform their uses
8323 as we find them. */
8324 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
8325 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
8326 && !TREE_THIS_VOLATILE (parm)
8327 && !needs_to_live_in_memory (parm))
8328 DECL_GIMPLE_REG_P (parm) = 1;
8331 ret = DECL_RESULT (fndecl);
8332 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
8333 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
8334 && !needs_to_live_in_memory (ret))
8335 DECL_GIMPLE_REG_P (ret) = 1;
8337 bind = gimplify_body (fndecl, true);
8339 /* The tree body of the function is no longer needed, replace it
8340 with the new GIMPLE body. */
8341 seq = NULL;
8342 gimple_seq_add_stmt (&seq, bind);
8343 gimple_set_body (fndecl, seq);
8345 /* If we're instrumenting function entry/exit, then prepend the call to
8346 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8347 catch the exit hook. */
8348 /* ??? Add some way to ignore exceptions for this TFE. */
8349 if (flag_instrument_function_entry_exit
8350 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
8351 && !flag_instrument_functions_exclude_p (fndecl))
8353 tree x;
8354 gimple new_bind;
8355 gimple tf;
8356 gimple_seq cleanup = NULL, body = NULL;
8357 tree tmp_var;
8358 gimple call;
8360 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8361 call = gimple_build_call (x, 1, integer_zero_node);
8362 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8363 gimple_call_set_lhs (call, tmp_var);
8364 gimplify_seq_add_stmt (&cleanup, call);
8365 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8366 call = gimple_build_call (x, 2,
8367 build_fold_addr_expr (current_function_decl),
8368 tmp_var);
8369 gimplify_seq_add_stmt (&cleanup, call);
8370 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8372 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8373 call = gimple_build_call (x, 1, integer_zero_node);
8374 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8375 gimple_call_set_lhs (call, tmp_var);
8376 gimplify_seq_add_stmt (&body, call);
8377 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8378 call = gimple_build_call (x, 2,
8379 build_fold_addr_expr (current_function_decl),
8380 tmp_var);
8381 gimplify_seq_add_stmt (&body, call);
8382 gimplify_seq_add_stmt (&body, tf);
8383 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8384 /* Clear the block for BIND, since it is no longer directly inside
8385 the function, but within a try block. */
8386 gimple_bind_set_block (bind, NULL);
8388 /* Replace the current function body with the body
8389 wrapped in the try/finally TF. */
8390 seq = NULL;
8391 gimple_seq_add_stmt (&seq, new_bind);
8392 gimple_set_body (fndecl, seq);
8395 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8396 cfun->curr_properties = PROP_gimple_any;
8398 pop_cfun ();
8401 /* Some transformations like inlining may invalidate the GIMPLE form
8402 for operands. This function traverses all the operands in STMT and
8403 gimplifies anything that is not a valid gimple operand. Any new
8404 GIMPLE statements are inserted before *GSI_P. */
8406 void
8407 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8409 size_t i, num_ops;
8410 tree lhs;
8411 gimple_seq pre = NULL;
8412 gimple post_stmt = NULL;
8413 struct gimplify_ctx gctx;
8415 push_gimplify_context (&gctx);
8416 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8418 switch (gimple_code (stmt))
8420 case GIMPLE_COND:
8421 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8422 is_gimple_val, fb_rvalue);
8423 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8424 is_gimple_val, fb_rvalue);
8425 break;
8426 case GIMPLE_SWITCH:
8427 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8428 is_gimple_val, fb_rvalue);
8429 break;
8430 case GIMPLE_OMP_ATOMIC_LOAD:
8431 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8432 is_gimple_val, fb_rvalue);
8433 break;
8434 case GIMPLE_ASM:
8436 size_t i, noutputs = gimple_asm_noutputs (stmt);
8437 const char *constraint, **oconstraints;
8438 bool allows_mem, allows_reg, is_inout;
8440 oconstraints
8441 = (const char **) alloca ((noutputs) * sizeof (const char *));
8442 for (i = 0; i < noutputs; i++)
8444 tree op = gimple_asm_output_op (stmt, i);
8445 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8446 oconstraints[i] = constraint;
8447 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8448 &allows_reg, &is_inout);
8449 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8450 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8451 fb_lvalue | fb_mayfail);
8453 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8455 tree op = gimple_asm_input_op (stmt, i);
8456 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8457 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8458 oconstraints, &allows_mem, &allows_reg);
8459 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8460 allows_reg = 0;
8461 if (!allows_reg && allows_mem)
8462 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8463 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8464 else
8465 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8466 is_gimple_asm_val, fb_rvalue);
8469 break;
8470 default:
8471 /* NOTE: We start gimplifying operands from last to first to
8472 make sure that side-effects on the RHS of calls, assignments
8473 and ASMs are executed before the LHS. The ordering is not
8474 important for other statements. */
8475 num_ops = gimple_num_ops (stmt);
8476 for (i = num_ops; i > 0; i--)
8478 tree op = gimple_op (stmt, i - 1);
8479 if (op == NULL_TREE)
8480 continue;
8481 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8482 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8483 else if (i == 2
8484 && is_gimple_assign (stmt)
8485 && num_ops == 2
8486 && get_gimple_rhs_class (gimple_expr_code (stmt))
8487 == GIMPLE_SINGLE_RHS)
8488 gimplify_expr (&op, &pre, NULL,
8489 rhs_predicate_for (gimple_assign_lhs (stmt)),
8490 fb_rvalue);
8491 else if (i == 2 && is_gimple_call (stmt))
8493 if (TREE_CODE (op) == FUNCTION_DECL)
8494 continue;
8495 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8497 else
8498 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8499 gimple_set_op (stmt, i - 1, op);
8502 lhs = gimple_get_lhs (stmt);
8503 /* If the LHS changed it in a way that requires a simple RHS,
8504 create temporary. */
8505 if (lhs && !is_gimple_reg (lhs))
8507 bool need_temp = false;
8509 if (is_gimple_assign (stmt)
8510 && num_ops == 2
8511 && get_gimple_rhs_class (gimple_expr_code (stmt))
8512 == GIMPLE_SINGLE_RHS)
8513 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8514 rhs_predicate_for (gimple_assign_lhs (stmt)),
8515 fb_rvalue);
8516 else if (is_gimple_reg (lhs))
8518 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8520 if (is_gimple_call (stmt))
8522 i = gimple_call_flags (stmt);
8523 if ((i & ECF_LOOPING_CONST_OR_PURE)
8524 || !(i & (ECF_CONST | ECF_PURE)))
8525 need_temp = true;
8527 if (stmt_can_throw_internal (stmt))
8528 need_temp = true;
8531 else
8533 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8534 need_temp = true;
8535 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8537 if (is_gimple_call (stmt))
8539 tree fndecl = gimple_call_fndecl (stmt);
8541 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8542 && !(fndecl && DECL_RESULT (fndecl)
8543 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8544 need_temp = true;
8546 else
8547 need_temp = true;
8550 if (need_temp)
8552 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8553 if (gimple_in_ssa_p (cfun))
8554 temp = make_ssa_name (temp, NULL);
8555 gimple_set_lhs (stmt, temp);
8556 post_stmt = gimple_build_assign (lhs, temp);
8557 if (TREE_CODE (lhs) == SSA_NAME)
8558 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8561 break;
8564 if (!gimple_seq_empty_p (pre))
8565 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8566 if (post_stmt)
8567 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8569 pop_gimplify_context (NULL);
8572 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8573 the predicate that will hold for the result. If VAR is not NULL, make the
8574 base variable of the final destination be VAR if suitable. */
8576 tree
8577 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8578 gimple_predicate gimple_test_f, tree var)
8580 enum gimplify_status ret;
8581 struct gimplify_ctx gctx;
8583 *stmts = NULL;
8585 /* gimple_test_f might be more strict than is_gimple_val, make
8586 sure we pass both. Just checking gimple_test_f doesn't work
8587 because most gimple predicates do not work recursively. */
8588 if (is_gimple_val (expr)
8589 && (*gimple_test_f) (expr))
8590 return expr;
8592 push_gimplify_context (&gctx);
8593 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8594 gimplify_ctxp->allow_rhs_cond_expr = true;
8596 if (var)
8598 if (gimplify_ctxp->into_ssa
8599 && is_gimple_reg (var))
8600 var = make_ssa_name (var, NULL);
8601 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8604 if (TREE_CODE (expr) != MODIFY_EXPR
8605 && TREE_TYPE (expr) == void_type_node)
8607 gimplify_and_add (expr, stmts);
8608 expr = NULL_TREE;
8610 else
8612 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8613 gcc_assert (ret != GS_ERROR);
8616 pop_gimplify_context (NULL);
8618 return expr;
8621 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8622 force the result to be either ssa_name or an invariant, otherwise
8623 just force it to be a rhs expression. If VAR is not NULL, make the
8624 base variable of the final destination be VAR if suitable. */
8626 tree
8627 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8629 return force_gimple_operand_1 (expr, stmts,
8630 simple ? is_gimple_val : is_gimple_reg_rhs,
8631 var);
8634 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8635 and VAR. If some statements are produced, emits them at GSI.
8636 If BEFORE is true. the statements are appended before GSI, otherwise
8637 they are appended after it. M specifies the way GSI moves after
8638 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8640 tree
8641 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8642 gimple_predicate gimple_test_f,
8643 tree var, bool before,
8644 enum gsi_iterator_update m)
8646 gimple_seq stmts;
8648 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8650 if (!gimple_seq_empty_p (stmts))
8652 if (before)
8653 gsi_insert_seq_before (gsi, stmts, m);
8654 else
8655 gsi_insert_seq_after (gsi, stmts, m);
8658 return expr;
8661 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8662 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8663 otherwise just force it to be a rhs expression. If some statements are
8664 produced, emits them at GSI. If BEFORE is true, the statements are
8665 appended before GSI, otherwise they are appended after it. M specifies
8666 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8667 are the usual values). */
8669 tree
8670 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8671 bool simple_p, tree var, bool before,
8672 enum gsi_iterator_update m)
8674 return force_gimple_operand_gsi_1 (gsi, expr,
8675 simple_p
8676 ? is_gimple_val : is_gimple_reg_rhs,
8677 var, before, m);
8681 #include "gt-gimplify.h"