Added myself under Write after Approval Maintainer.
[official-gcc.git] / gcc / gimplify.c
blob14d627e7254f256b22df287a44fecc10e4b505b2
1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
5 Major work done by Sebastian Pop <s.pop@laposte.net>,
6 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "tree-iterator.h"
31 #include "tree-inline.h"
32 #include "tree-pretty-print.h"
33 #include "langhooks.h"
34 #include "tree-flow.h"
35 #include "cgraph.h"
36 #include "timevar.h"
37 #include "hashtab.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "output.h"
41 #include "ggc.h"
42 #include "diagnostic-core.h"
43 #include "target.h"
44 #include "pointer-set.h"
45 #include "splay-tree.h"
46 #include "vec.h"
47 #include "gimple.h"
48 #include "tree-pass.h"
50 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name. */
51 #include "expr.h" /* FIXME: for can_move_by_pieces
52 and STACK_CHECK_MAX_VAR_SIZE. */
54 enum gimplify_omp_var_data
56 GOVD_SEEN = 1,
57 GOVD_EXPLICIT = 2,
58 GOVD_SHARED = 4,
59 GOVD_PRIVATE = 8,
60 GOVD_FIRSTPRIVATE = 16,
61 GOVD_LASTPRIVATE = 32,
62 GOVD_REDUCTION = 64,
63 GOVD_LOCAL = 128,
64 GOVD_DEBUG_PRIVATE = 256,
65 GOVD_PRIVATE_OUTER_REF = 512,
66 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
67 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
71 enum omp_region_type
73 ORT_WORKSHARE = 0,
74 ORT_PARALLEL = 2,
75 ORT_COMBINED_PARALLEL = 3,
76 ORT_TASK = 4,
77 ORT_UNTIED_TASK = 5
80 struct gimplify_omp_ctx
82 struct gimplify_omp_ctx *outer_context;
83 splay_tree variables;
84 struct pointer_set_t *privatized_types;
85 location_t location;
86 enum omp_clause_default_kind default_kind;
87 enum omp_region_type region_type;
90 static struct gimplify_ctx *gimplify_ctxp;
91 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
94 /* Formal (expression) temporary table handling: multiple occurrences of
95 the same scalar expression are evaluated into the same temporary. */
97 typedef struct gimple_temp_hash_elt
99 tree val; /* Key */
100 tree temp; /* Value */
101 } elt_t;
103 /* Forward declaration. */
104 static enum gimplify_status gimplify_compound_expr (tree *, gimple_seq *, bool);
106 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
107 form and we don't do any syntax checking. */
109 void
110 mark_addressable (tree x)
112 while (handled_component_p (x))
113 x = TREE_OPERAND (x, 0);
114 if (TREE_CODE (x) == MEM_REF
115 && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
116 x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
117 if (TREE_CODE (x) != VAR_DECL
118 && TREE_CODE (x) != PARM_DECL
119 && TREE_CODE (x) != RESULT_DECL)
120 return;
121 TREE_ADDRESSABLE (x) = 1;
124 /* Return a hash value for a formal temporary table entry. */
126 static hashval_t
127 gimple_tree_hash (const void *p)
129 tree t = ((const elt_t *) p)->val;
130 return iterative_hash_expr (t, 0);
133 /* Compare two formal temporary table entries. */
135 static int
136 gimple_tree_eq (const void *p1, const void *p2)
138 tree t1 = ((const elt_t *) p1)->val;
139 tree t2 = ((const elt_t *) p2)->val;
140 enum tree_code code = TREE_CODE (t1);
142 if (TREE_CODE (t2) != code
143 || TREE_TYPE (t1) != TREE_TYPE (t2))
144 return 0;
146 if (!operand_equal_p (t1, t2, 0))
147 return 0;
149 #ifdef ENABLE_CHECKING
150 /* Only allow them to compare equal if they also hash equal; otherwise
151 results are nondeterminate, and we fail bootstrap comparison. */
152 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
153 #endif
155 return 1;
158 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
159 *SEQ_P is NULL, a new sequence is allocated. This function is
160 similar to gimple_seq_add_stmt, but does not scan the operands.
161 During gimplification, we need to manipulate statement sequences
162 before the def/use vectors have been constructed. */
164 void
165 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple gs)
167 gimple_stmt_iterator si;
169 if (gs == NULL)
170 return;
172 if (*seq_p == NULL)
173 *seq_p = gimple_seq_alloc ();
175 si = gsi_last (*seq_p);
177 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
180 /* Shorter alias name for the above function for use in gimplify.c
181 only. */
183 static inline void
184 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
186 gimple_seq_add_stmt_without_update (seq_p, gs);
189 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
190 NULL, a new sequence is allocated. This function is
191 similar to gimple_seq_add_seq, but does not scan the operands.
192 During gimplification, we need to manipulate statement sequences
193 before the def/use vectors have been constructed. */
195 static void
196 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
198 gimple_stmt_iterator si;
200 if (src == NULL)
201 return;
203 if (*dst_p == NULL)
204 *dst_p = gimple_seq_alloc ();
206 si = gsi_last (*dst_p);
207 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
210 /* Set up a context for the gimplifier. */
212 void
213 push_gimplify_context (struct gimplify_ctx *c)
215 memset (c, '\0', sizeof (*c));
216 c->prev_context = gimplify_ctxp;
217 gimplify_ctxp = c;
220 /* Tear down a context for the gimplifier. If BODY is non-null, then
221 put the temporaries into the outer BIND_EXPR. Otherwise, put them
222 in the local_decls.
224 BODY is not a sequence, but the first tuple in a sequence. */
226 void
227 pop_gimplify_context (gimple body)
229 struct gimplify_ctx *c = gimplify_ctxp;
231 gcc_assert (c && (c->bind_expr_stack == NULL
232 || VEC_empty (gimple, c->bind_expr_stack)));
233 VEC_free (gimple, heap, c->bind_expr_stack);
234 gimplify_ctxp = c->prev_context;
236 if (body)
237 declare_vars (c->temps, body, false);
238 else
239 record_vars (c->temps);
241 if (c->temp_htab)
242 htab_delete (c->temp_htab);
245 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
247 static void
248 gimple_push_bind_expr (gimple gimple_bind)
250 if (gimplify_ctxp->bind_expr_stack == NULL)
251 gimplify_ctxp->bind_expr_stack = VEC_alloc (gimple, heap, 8);
252 VEC_safe_push (gimple, heap, gimplify_ctxp->bind_expr_stack, gimple_bind);
255 /* Pop the first element off the stack of bindings. */
257 static void
258 gimple_pop_bind_expr (void)
260 VEC_pop (gimple, gimplify_ctxp->bind_expr_stack);
263 /* Return the first element of the stack of bindings. */
265 gimple
266 gimple_current_bind_expr (void)
268 return VEC_last (gimple, gimplify_ctxp->bind_expr_stack);
271 /* Return the stack of bindings created during gimplification. */
273 VEC(gimple, heap) *
274 gimple_bind_expr_stack (void)
276 return gimplify_ctxp->bind_expr_stack;
279 /* Return true iff there is a COND_EXPR between us and the innermost
280 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
282 static bool
283 gimple_conditional_context (void)
285 return gimplify_ctxp->conditions > 0;
288 /* Note that we've entered a COND_EXPR. */
290 static void
291 gimple_push_condition (void)
293 #ifdef ENABLE_GIMPLE_CHECKING
294 if (gimplify_ctxp->conditions == 0)
295 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
296 #endif
297 ++(gimplify_ctxp->conditions);
300 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
301 now, add any conditional cleanups we've seen to the prequeue. */
303 static void
304 gimple_pop_condition (gimple_seq *pre_p)
306 int conds = --(gimplify_ctxp->conditions);
308 gcc_assert (conds >= 0);
309 if (conds == 0)
311 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
312 gimplify_ctxp->conditional_cleanups = NULL;
316 /* A stable comparison routine for use with splay trees and DECLs. */
318 static int
319 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
321 tree a = (tree) xa;
322 tree b = (tree) xb;
324 return DECL_UID (a) - DECL_UID (b);
327 /* Create a new omp construct that deals with variable remapping. */
329 static struct gimplify_omp_ctx *
330 new_omp_context (enum omp_region_type region_type)
332 struct gimplify_omp_ctx *c;
334 c = XCNEW (struct gimplify_omp_ctx);
335 c->outer_context = gimplify_omp_ctxp;
336 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
337 c->privatized_types = pointer_set_create ();
338 c->location = input_location;
339 c->region_type = region_type;
340 if ((region_type & ORT_TASK) == 0)
341 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
342 else
343 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
345 return c;
348 /* Destroy an omp construct that deals with variable remapping. */
350 static void
351 delete_omp_context (struct gimplify_omp_ctx *c)
353 splay_tree_delete (c->variables);
354 pointer_set_destroy (c->privatized_types);
355 XDELETE (c);
358 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
359 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
361 /* Both gimplify the statement T and append it to *SEQ_P. This function
362 behaves exactly as gimplify_stmt, but you don't have to pass T as a
363 reference. */
365 void
366 gimplify_and_add (tree t, gimple_seq *seq_p)
368 gimplify_stmt (&t, seq_p);
371 /* Gimplify statement T into sequence *SEQ_P, and return the first
372 tuple in the sequence of generated tuples for this statement.
373 Return NULL if gimplifying T produced no tuples. */
375 static gimple
376 gimplify_and_return_first (tree t, gimple_seq *seq_p)
378 gimple_stmt_iterator last = gsi_last (*seq_p);
380 gimplify_and_add (t, seq_p);
382 if (!gsi_end_p (last))
384 gsi_next (&last);
385 return gsi_stmt (last);
387 else
388 return gimple_seq_first_stmt (*seq_p);
391 /* Strip off a legitimate source ending from the input string NAME of
392 length LEN. Rather than having to know the names used by all of
393 our front ends, we strip off an ending of a period followed by
394 up to five characters. (Java uses ".class".) */
396 static inline void
397 remove_suffix (char *name, int len)
399 int i;
401 for (i = 2; i < 8 && len > i; i++)
403 if (name[len - i] == '.')
405 name[len - i] = '\0';
406 break;
411 /* Create a new temporary name with PREFIX. Return an identifier. */
413 static GTY(()) unsigned int tmp_var_id_num;
415 tree
416 create_tmp_var_name (const char *prefix)
418 char *tmp_name;
420 if (prefix)
422 char *preftmp = ASTRDUP (prefix);
424 remove_suffix (preftmp, strlen (preftmp));
425 clean_symbol_name (preftmp);
427 prefix = preftmp;
430 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
431 return get_identifier (tmp_name);
434 /* Create a new temporary variable declaration of type TYPE.
435 Do NOT push it into the current binding. */
437 tree
438 create_tmp_var_raw (tree type, const char *prefix)
440 tree tmp_var;
442 tmp_var = build_decl (input_location,
443 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
444 type);
446 /* The variable was declared by the compiler. */
447 DECL_ARTIFICIAL (tmp_var) = 1;
448 /* And we don't want debug info for it. */
449 DECL_IGNORED_P (tmp_var) = 1;
451 /* Make the variable writable. */
452 TREE_READONLY (tmp_var) = 0;
454 DECL_EXTERNAL (tmp_var) = 0;
455 TREE_STATIC (tmp_var) = 0;
456 TREE_USED (tmp_var) = 1;
458 return tmp_var;
461 /* Create a new temporary variable declaration of type TYPE. DO push the
462 variable into the current binding. Further, assume that this is called
463 only from gimplification or optimization, at which point the creation of
464 certain types are bugs. */
466 tree
467 create_tmp_var (tree type, const char *prefix)
469 tree tmp_var;
471 /* We don't allow types that are addressable (meaning we can't make copies),
472 or incomplete. We also used to reject every variable size objects here,
473 but now support those for which a constant upper bound can be obtained.
474 The processing for variable sizes is performed in gimple_add_tmp_var,
475 point at which it really matters and possibly reached via paths not going
476 through this function, e.g. after direct calls to create_tmp_var_raw. */
477 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
479 tmp_var = create_tmp_var_raw (type, prefix);
480 gimple_add_tmp_var (tmp_var);
481 return tmp_var;
484 /* Create a new temporary variable declaration of type TYPE by calling
485 create_tmp_var and if TYPE is a vector or a complex number, mark the new
486 temporary as gimple register. */
488 tree
489 create_tmp_reg (tree type, const char *prefix)
491 tree tmp;
493 tmp = create_tmp_var (type, prefix);
494 if (TREE_CODE (type) == COMPLEX_TYPE
495 || TREE_CODE (type) == VECTOR_TYPE)
496 DECL_GIMPLE_REG_P (tmp) = 1;
498 return tmp;
501 /* Create a temporary with a name derived from VAL. Subroutine of
502 lookup_tmp_var; nobody else should call this function. */
504 static inline tree
505 create_tmp_from_val (tree val)
507 return create_tmp_var (TREE_TYPE (val), get_name (val));
510 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
511 an existing expression temporary. */
513 static tree
514 lookup_tmp_var (tree val, bool is_formal)
516 tree ret;
518 /* If not optimizing, never really reuse a temporary. local-alloc
519 won't allocate any variable that is used in more than one basic
520 block, which means it will go into memory, causing much extra
521 work in reload and final and poorer code generation, outweighing
522 the extra memory allocation here. */
523 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
524 ret = create_tmp_from_val (val);
525 else
527 elt_t elt, *elt_p;
528 void **slot;
530 elt.val = val;
531 if (gimplify_ctxp->temp_htab == NULL)
532 gimplify_ctxp->temp_htab
533 = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
534 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
535 if (*slot == NULL)
537 elt_p = XNEW (elt_t);
538 elt_p->val = val;
539 elt_p->temp = ret = create_tmp_from_val (val);
540 *slot = (void *) elt_p;
542 else
544 elt_p = (elt_t *) *slot;
545 ret = elt_p->temp;
549 return ret;
552 /* Return true if T is a CALL_EXPR or an expression that can be
553 assigned to a temporary. Note that this predicate should only be
554 used during gimplification. See the rationale for this in
555 gimplify_modify_expr. */
557 static bool
558 is_gimple_reg_rhs_or_call (tree t)
560 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
561 || TREE_CODE (t) == CALL_EXPR);
564 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
565 this predicate should only be used during gimplification. See the
566 rationale for this in gimplify_modify_expr. */
568 static bool
569 is_gimple_mem_rhs_or_call (tree t)
571 /* If we're dealing with a renamable type, either source or dest must be
572 a renamed variable. */
573 if (is_gimple_reg_type (TREE_TYPE (t)))
574 return is_gimple_val (t);
575 else
576 return (is_gimple_val (t) || is_gimple_lvalue (t)
577 || TREE_CODE (t) == CALL_EXPR);
580 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
582 static tree
583 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
584 bool is_formal)
586 tree t, mod;
588 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
589 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
590 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
591 fb_rvalue);
593 t = lookup_tmp_var (val, is_formal);
595 if (is_formal
596 && (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
597 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE))
598 DECL_GIMPLE_REG_P (t) = 1;
600 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
602 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
604 /* gimplify_modify_expr might want to reduce this further. */
605 gimplify_and_add (mod, pre_p);
606 ggc_free (mod);
608 /* If we're gimplifying into ssa, gimplify_modify_expr will have
609 given our temporary an SSA name. Find and return it. */
610 if (gimplify_ctxp->into_ssa)
612 gimple last = gimple_seq_last_stmt (*pre_p);
613 t = gimple_get_lhs (last);
616 return t;
619 /* Return a formal temporary variable initialized with VAL. PRE_P is as
620 in gimplify_expr. Only use this function if:
622 1) The value of the unfactored expression represented by VAL will not
623 change between the initialization and use of the temporary, and
624 2) The temporary will not be otherwise modified.
626 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
627 and #2 means it is inappropriate for && temps.
629 For other cases, use get_initialized_tmp_var instead. */
631 tree
632 get_formal_tmp_var (tree val, gimple_seq *pre_p)
634 return internal_get_tmp_var (val, pre_p, NULL, true);
637 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
638 are as in gimplify_expr. */
640 tree
641 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
643 return internal_get_tmp_var (val, pre_p, post_p, false);
646 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
647 generate debug info for them; otherwise don't. */
649 void
650 declare_vars (tree vars, gimple scope, bool debug_info)
652 tree last = vars;
653 if (last)
655 tree temps, block;
657 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
659 temps = nreverse (last);
661 block = gimple_bind_block (scope);
662 gcc_assert (!block || TREE_CODE (block) == BLOCK);
663 if (!block || !debug_info)
665 DECL_CHAIN (last) = gimple_bind_vars (scope);
666 gimple_bind_set_vars (scope, temps);
668 else
670 /* We need to attach the nodes both to the BIND_EXPR and to its
671 associated BLOCK for debugging purposes. The key point here
672 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
673 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
674 if (BLOCK_VARS (block))
675 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
676 else
678 gimple_bind_set_vars (scope,
679 chainon (gimple_bind_vars (scope), temps));
680 BLOCK_VARS (block) = temps;
686 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
687 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
688 no such upper bound can be obtained. */
690 static void
691 force_constant_size (tree var)
693 /* The only attempt we make is by querying the maximum size of objects
694 of the variable's type. */
696 HOST_WIDE_INT max_size;
698 gcc_assert (TREE_CODE (var) == VAR_DECL);
700 max_size = max_int_size_in_bytes (TREE_TYPE (var));
702 gcc_assert (max_size >= 0);
704 DECL_SIZE_UNIT (var)
705 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
706 DECL_SIZE (var)
707 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
710 /* Push the temporary variable TMP into the current binding. */
712 void
713 gimple_add_tmp_var (tree tmp)
715 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
717 /* Later processing assumes that the object size is constant, which might
718 not be true at this point. Force the use of a constant upper bound in
719 this case. */
720 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
721 force_constant_size (tmp);
723 DECL_CONTEXT (tmp) = current_function_decl;
724 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
726 if (gimplify_ctxp)
728 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
729 gimplify_ctxp->temps = tmp;
731 /* Mark temporaries local within the nearest enclosing parallel. */
732 if (gimplify_omp_ctxp)
734 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
735 while (ctx && ctx->region_type == ORT_WORKSHARE)
736 ctx = ctx->outer_context;
737 if (ctx)
738 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
741 else if (cfun)
742 record_vars (tmp);
743 else
745 gimple_seq body_seq;
747 /* This case is for nested functions. We need to expose the locals
748 they create. */
749 body_seq = gimple_body (current_function_decl);
750 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
754 /* Determine whether to assign a location to the statement GS. */
756 static bool
757 should_carry_location_p (gimple gs)
759 /* Don't emit a line note for a label. We particularly don't want to
760 emit one for the break label, since it doesn't actually correspond
761 to the beginning of the loop/switch. */
762 if (gimple_code (gs) == GIMPLE_LABEL)
763 return false;
765 return true;
768 /* Return true if a location should not be emitted for this statement
769 by annotate_one_with_location. */
771 static inline bool
772 gimple_do_not_emit_location_p (gimple g)
774 return gimple_plf (g, GF_PLF_1);
777 /* Mark statement G so a location will not be emitted by
778 annotate_one_with_location. */
780 static inline void
781 gimple_set_do_not_emit_location (gimple g)
783 /* The PLF flags are initialized to 0 when a new tuple is created,
784 so no need to initialize it anywhere. */
785 gimple_set_plf (g, GF_PLF_1, true);
788 /* Set the location for gimple statement GS to LOCATION. */
790 static void
791 annotate_one_with_location (gimple gs, location_t location)
793 if (!gimple_has_location (gs)
794 && !gimple_do_not_emit_location_p (gs)
795 && should_carry_location_p (gs))
796 gimple_set_location (gs, location);
799 /* Set LOCATION for all the statements after iterator GSI in sequence
800 SEQ. If GSI is pointing to the end of the sequence, start with the
801 first statement in SEQ. */
803 static void
804 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
805 location_t location)
807 if (gsi_end_p (gsi))
808 gsi = gsi_start (seq);
809 else
810 gsi_next (&gsi);
812 for (; !gsi_end_p (gsi); gsi_next (&gsi))
813 annotate_one_with_location (gsi_stmt (gsi), location);
816 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
818 void
819 annotate_all_with_location (gimple_seq stmt_p, location_t location)
821 gimple_stmt_iterator i;
823 if (gimple_seq_empty_p (stmt_p))
824 return;
826 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
828 gimple gs = gsi_stmt (i);
829 annotate_one_with_location (gs, location);
833 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
834 nodes that are referenced more than once in GENERIC functions. This is
835 necessary because gimplification (translation into GIMPLE) is performed
836 by modifying tree nodes in-place, so gimplication of a shared node in a
837 first context could generate an invalid GIMPLE form in a second context.
839 This is achieved with a simple mark/copy/unmark algorithm that walks the
840 GENERIC representation top-down, marks nodes with TREE_VISITED the first
841 time it encounters them, duplicates them if they already have TREE_VISITED
842 set, and finally removes the TREE_VISITED marks it has set.
844 The algorithm works only at the function level, i.e. it generates a GENERIC
845 representation of a function with no nodes shared within the function when
846 passed a GENERIC function (except for nodes that are allowed to be shared).
848 At the global level, it is also necessary to unshare tree nodes that are
849 referenced in more than one function, for the same aforementioned reason.
850 This requires some cooperation from the front-end. There are 2 strategies:
852 1. Manual unsharing. The front-end needs to call unshare_expr on every
853 expression that might end up being shared across functions.
855 2. Deep unsharing. This is an extension of regular unsharing. Instead
856 of calling unshare_expr on expressions that might be shared across
857 functions, the front-end pre-marks them with TREE_VISITED. This will
858 ensure that they are unshared on the first reference within functions
859 when the regular unsharing algorithm runs. The counterpart is that
860 this algorithm must look deeper than for manual unsharing, which is
861 specified by LANG_HOOKS_DEEP_UNSHARING.
863 If there are only few specific cases of node sharing across functions, it is
864 probably easier for a front-end to unshare the expressions manually. On the
865 contrary, if the expressions generated at the global level are as widespread
866 as expressions generated within functions, deep unsharing is very likely the
867 way to go. */
869 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
870 These nodes model computations that should only be done once. If we
871 were to unshare something like SAVE_EXPR(i++), the gimplification
872 process would create wrong code. */
874 static tree
875 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
877 tree t = *tp;
878 enum tree_code code = TREE_CODE (t);
880 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
881 copy their subtrees if we can make sure to do it only once. */
882 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
884 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
886 else
887 *walk_subtrees = 0;
890 /* Stop at types, decls, constants like copy_tree_r. */
891 else if (TREE_CODE_CLASS (code) == tcc_type
892 || TREE_CODE_CLASS (code) == tcc_declaration
893 || TREE_CODE_CLASS (code) == tcc_constant
894 /* We can't do anything sensible with a BLOCK used as an
895 expression, but we also can't just die when we see it
896 because of non-expression uses. So we avert our eyes
897 and cross our fingers. Silly Java. */
898 || code == BLOCK)
899 *walk_subtrees = 0;
901 /* Cope with the statement expression extension. */
902 else if (code == STATEMENT_LIST)
905 /* Leave the bulk of the work to copy_tree_r itself. */
906 else
907 copy_tree_r (tp, walk_subtrees, NULL);
909 return NULL_TREE;
912 /* Callback for walk_tree to unshare most of the shared trees rooted at
913 *TP. If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
914 then *TP is deep copied by calling mostly_copy_tree_r. */
916 static tree
917 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
919 tree t = *tp;
920 enum tree_code code = TREE_CODE (t);
922 /* Skip types, decls, and constants. But we do want to look at their
923 types and the bounds of types. Mark them as visited so we properly
924 unmark their subtrees on the unmark pass. If we've already seen them,
925 don't look down further. */
926 if (TREE_CODE_CLASS (code) == tcc_type
927 || TREE_CODE_CLASS (code) == tcc_declaration
928 || TREE_CODE_CLASS (code) == tcc_constant)
930 if (TREE_VISITED (t))
931 *walk_subtrees = 0;
932 else
933 TREE_VISITED (t) = 1;
936 /* If this node has been visited already, unshare it and don't look
937 any deeper. */
938 else if (TREE_VISITED (t))
940 walk_tree (tp, mostly_copy_tree_r, data, NULL);
941 *walk_subtrees = 0;
944 /* Otherwise, mark the node as visited and keep looking. */
945 else
946 TREE_VISITED (t) = 1;
948 return NULL_TREE;
951 /* Unshare most of the shared trees rooted at *TP. */
953 static inline void
954 copy_if_shared (tree *tp)
956 /* If the language requires deep unsharing, we need a pointer set to make
957 sure we don't repeatedly unshare subtrees of unshareable nodes. */
958 struct pointer_set_t *visited
959 = lang_hooks.deep_unsharing ? pointer_set_create () : NULL;
960 walk_tree (tp, copy_if_shared_r, visited, NULL);
961 if (visited)
962 pointer_set_destroy (visited);
965 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
966 bodies of any nested functions if we are unsharing the entire body of
967 FNDECL. */
969 static void
970 unshare_body (tree *body_p, tree fndecl)
972 struct cgraph_node *cgn = cgraph_get_node (fndecl);
974 copy_if_shared (body_p);
976 if (cgn && body_p == &DECL_SAVED_TREE (fndecl))
977 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
978 unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
981 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
982 Subtrees are walked until the first unvisited node is encountered. */
984 static tree
985 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
987 tree t = *tp;
989 /* If this node has been visited, unmark it and keep looking. */
990 if (TREE_VISITED (t))
991 TREE_VISITED (t) = 0;
993 /* Otherwise, don't look any deeper. */
994 else
995 *walk_subtrees = 0;
997 return NULL_TREE;
1000 /* Unmark the visited trees rooted at *TP. */
1002 static inline void
1003 unmark_visited (tree *tp)
1005 walk_tree (tp, unmark_visited_r, NULL, NULL);
1008 /* Likewise, but mark all trees as not visited. */
1010 static void
1011 unvisit_body (tree *body_p, tree fndecl)
1013 struct cgraph_node *cgn = cgraph_get_node (fndecl);
1015 unmark_visited (body_p);
1017 if (cgn && body_p == &DECL_SAVED_TREE (fndecl))
1018 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1019 unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
1022 /* Unconditionally make an unshared copy of EXPR. This is used when using
1023 stored expressions which span multiple functions, such as BINFO_VTABLE,
1024 as the normal unsharing process can't tell that they're shared. */
1026 tree
1027 unshare_expr (tree expr)
1029 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1030 return expr;
1033 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1034 contain statements and have a value. Assign its value to a temporary
1035 and give it void_type_node. Return the temporary, or NULL_TREE if
1036 WRAPPER was already void. */
1038 tree
1039 voidify_wrapper_expr (tree wrapper, tree temp)
1041 tree type = TREE_TYPE (wrapper);
1042 if (type && !VOID_TYPE_P (type))
1044 tree *p;
1046 /* Set p to point to the body of the wrapper. Loop until we find
1047 something that isn't a wrapper. */
1048 for (p = &wrapper; p && *p; )
1050 switch (TREE_CODE (*p))
1052 case BIND_EXPR:
1053 TREE_SIDE_EFFECTS (*p) = 1;
1054 TREE_TYPE (*p) = void_type_node;
1055 /* For a BIND_EXPR, the body is operand 1. */
1056 p = &BIND_EXPR_BODY (*p);
1057 break;
1059 case CLEANUP_POINT_EXPR:
1060 case TRY_FINALLY_EXPR:
1061 case TRY_CATCH_EXPR:
1062 TREE_SIDE_EFFECTS (*p) = 1;
1063 TREE_TYPE (*p) = void_type_node;
1064 p = &TREE_OPERAND (*p, 0);
1065 break;
1067 case STATEMENT_LIST:
1069 tree_stmt_iterator i = tsi_last (*p);
1070 TREE_SIDE_EFFECTS (*p) = 1;
1071 TREE_TYPE (*p) = void_type_node;
1072 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1074 break;
1076 case COMPOUND_EXPR:
1077 /* Advance to the last statement. Set all container types to
1078 void. */
1079 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1081 TREE_SIDE_EFFECTS (*p) = 1;
1082 TREE_TYPE (*p) = void_type_node;
1084 break;
1086 case TRANSACTION_EXPR:
1087 TREE_SIDE_EFFECTS (*p) = 1;
1088 TREE_TYPE (*p) = void_type_node;
1089 p = &TRANSACTION_EXPR_BODY (*p);
1090 break;
1092 default:
1093 /* Assume that any tree upon which voidify_wrapper_expr is
1094 directly called is a wrapper, and that its body is op0. */
1095 if (p == &wrapper)
1097 TREE_SIDE_EFFECTS (*p) = 1;
1098 TREE_TYPE (*p) = void_type_node;
1099 p = &TREE_OPERAND (*p, 0);
1100 break;
1102 goto out;
1106 out:
1107 if (p == NULL || IS_EMPTY_STMT (*p))
1108 temp = NULL_TREE;
1109 else if (temp)
1111 /* The wrapper is on the RHS of an assignment that we're pushing
1112 down. */
1113 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1114 || TREE_CODE (temp) == MODIFY_EXPR);
1115 TREE_OPERAND (temp, 1) = *p;
1116 *p = temp;
1118 else
1120 temp = create_tmp_var (type, "retval");
1121 *p = build2 (INIT_EXPR, type, temp, *p);
1124 return temp;
1127 return NULL_TREE;
1130 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1131 a temporary through which they communicate. */
1133 static void
1134 build_stack_save_restore (gimple *save, gimple *restore)
1136 tree tmp_var;
1138 *save = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0);
1139 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1140 gimple_call_set_lhs (*save, tmp_var);
1142 *restore
1143 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE),
1144 1, tmp_var);
1147 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1149 static enum gimplify_status
1150 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1152 tree bind_expr = *expr_p;
1153 bool old_save_stack = gimplify_ctxp->save_stack;
1154 tree t;
1155 gimple gimple_bind;
1156 gimple_seq body, cleanup;
1157 gimple stack_save;
1159 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1161 /* Mark variables seen in this bind expr. */
1162 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1164 if (TREE_CODE (t) == VAR_DECL)
1166 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1168 /* Mark variable as local. */
1169 if (ctx && !DECL_EXTERNAL (t)
1170 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1171 || splay_tree_lookup (ctx->variables,
1172 (splay_tree_key) t) == NULL))
1173 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1175 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1177 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1178 cfun->has_local_explicit_reg_vars = true;
1181 /* Preliminarily mark non-addressed complex variables as eligible
1182 for promotion to gimple registers. We'll transform their uses
1183 as we find them. */
1184 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1185 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1186 && !TREE_THIS_VOLATILE (t)
1187 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1188 && !needs_to_live_in_memory (t))
1189 DECL_GIMPLE_REG_P (t) = 1;
1192 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1193 BIND_EXPR_BLOCK (bind_expr));
1194 gimple_push_bind_expr (gimple_bind);
1196 gimplify_ctxp->save_stack = false;
1198 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1199 body = NULL;
1200 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1201 gimple_bind_set_body (gimple_bind, body);
1203 cleanup = NULL;
1204 stack_save = NULL;
1205 if (gimplify_ctxp->save_stack)
1207 gimple stack_restore;
1209 /* Save stack on entry and restore it on exit. Add a try_finally
1210 block to achieve this. Note that mudflap depends on the
1211 format of the emitted code: see mx_register_decls(). */
1212 build_stack_save_restore (&stack_save, &stack_restore);
1214 gimplify_seq_add_stmt (&cleanup, stack_restore);
1217 /* Add clobbers for all variables that go out of scope. */
1218 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1220 if (TREE_CODE (t) == VAR_DECL
1221 && !is_global_var (t)
1222 && DECL_CONTEXT (t) == current_function_decl
1223 && !DECL_HARD_REGISTER (t)
1224 && !TREE_THIS_VOLATILE (t)
1225 && !DECL_HAS_VALUE_EXPR_P (t)
1226 /* Only care for variables that have to be in memory. Others
1227 will be rewritten into SSA names, hence moved to the top-level. */
1228 && needs_to_live_in_memory (t))
1230 tree clobber = build_constructor (TREE_TYPE (t), NULL);
1231 TREE_THIS_VOLATILE (clobber) = 1;
1232 gimplify_seq_add_stmt (&cleanup, gimple_build_assign (t, clobber));
1236 if (cleanup)
1238 gimple gs;
1239 gimple_seq new_body;
1241 new_body = NULL;
1242 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1243 GIMPLE_TRY_FINALLY);
1245 if (stack_save)
1246 gimplify_seq_add_stmt (&new_body, stack_save);
1247 gimplify_seq_add_stmt (&new_body, gs);
1248 gimple_bind_set_body (gimple_bind, new_body);
1251 gimplify_ctxp->save_stack = old_save_stack;
1252 gimple_pop_bind_expr ();
1254 gimplify_seq_add_stmt (pre_p, gimple_bind);
1256 if (temp)
1258 *expr_p = temp;
1259 return GS_OK;
1262 *expr_p = NULL_TREE;
1263 return GS_ALL_DONE;
1266 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1267 GIMPLE value, it is assigned to a new temporary and the statement is
1268 re-written to return the temporary.
1270 PRE_P points to the sequence where side effects that must happen before
1271 STMT should be stored. */
1273 static enum gimplify_status
1274 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1276 gimple ret;
1277 tree ret_expr = TREE_OPERAND (stmt, 0);
1278 tree result_decl, result;
1280 if (ret_expr == error_mark_node)
1281 return GS_ERROR;
1283 if (!ret_expr
1284 || TREE_CODE (ret_expr) == RESULT_DECL
1285 || ret_expr == error_mark_node)
1287 gimple ret = gimple_build_return (ret_expr);
1288 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1289 gimplify_seq_add_stmt (pre_p, ret);
1290 return GS_ALL_DONE;
1293 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1294 result_decl = NULL_TREE;
1295 else
1297 result_decl = TREE_OPERAND (ret_expr, 0);
1299 /* See through a return by reference. */
1300 if (TREE_CODE (result_decl) == INDIRECT_REF)
1301 result_decl = TREE_OPERAND (result_decl, 0);
1303 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1304 || TREE_CODE (ret_expr) == INIT_EXPR)
1305 && TREE_CODE (result_decl) == RESULT_DECL);
1308 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1309 Recall that aggregate_value_p is FALSE for any aggregate type that is
1310 returned in registers. If we're returning values in registers, then
1311 we don't want to extend the lifetime of the RESULT_DECL, particularly
1312 across another call. In addition, for those aggregates for which
1313 hard_function_value generates a PARALLEL, we'll die during normal
1314 expansion of structure assignments; there's special code in expand_return
1315 to handle this case that does not exist in expand_expr. */
1316 if (!result_decl)
1317 result = NULL_TREE;
1318 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1320 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1322 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1323 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1324 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1325 should be effectively allocated by the caller, i.e. all calls to
1326 this function must be subject to the Return Slot Optimization. */
1327 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1328 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1330 result = result_decl;
1332 else if (gimplify_ctxp->return_temp)
1333 result = gimplify_ctxp->return_temp;
1334 else
1336 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1338 /* ??? With complex control flow (usually involving abnormal edges),
1339 we can wind up warning about an uninitialized value for this. Due
1340 to how this variable is constructed and initialized, this is never
1341 true. Give up and never warn. */
1342 TREE_NO_WARNING (result) = 1;
1344 gimplify_ctxp->return_temp = result;
1347 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1348 Then gimplify the whole thing. */
1349 if (result != result_decl)
1350 TREE_OPERAND (ret_expr, 0) = result;
1352 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1354 ret = gimple_build_return (result);
1355 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1356 gimplify_seq_add_stmt (pre_p, ret);
1358 return GS_ALL_DONE;
1361 /* Gimplify a variable-length array DECL. */
1363 static void
1364 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1366 /* This is a variable-sized decl. Simplify its size and mark it
1367 for deferred expansion. Note that mudflap depends on the format
1368 of the emitted code: see mx_register_decls(). */
1369 tree t, addr, ptr_type;
1371 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1372 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1374 /* All occurrences of this decl in final gimplified code will be
1375 replaced by indirection. Setting DECL_VALUE_EXPR does two
1376 things: First, it lets the rest of the gimplifier know what
1377 replacement to use. Second, it lets the debug info know
1378 where to find the value. */
1379 ptr_type = build_pointer_type (TREE_TYPE (decl));
1380 addr = create_tmp_var (ptr_type, get_name (decl));
1381 DECL_IGNORED_P (addr) = 0;
1382 t = build_fold_indirect_ref (addr);
1383 TREE_THIS_NOTRAP (t) = 1;
1384 SET_DECL_VALUE_EXPR (decl, t);
1385 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1387 t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
1388 t = build_call_expr (t, 2, DECL_SIZE_UNIT (decl),
1389 size_int (DECL_ALIGN (decl)));
1390 /* The call has been built for a variable-sized object. */
1391 CALL_ALLOCA_FOR_VAR_P (t) = 1;
1392 t = fold_convert (ptr_type, t);
1393 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1395 gimplify_and_add (t, seq_p);
1397 /* Indicate that we need to restore the stack level when the
1398 enclosing BIND_EXPR is exited. */
1399 gimplify_ctxp->save_stack = true;
1402 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1403 and initialization explicit. */
1405 static enum gimplify_status
1406 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1408 tree stmt = *stmt_p;
1409 tree decl = DECL_EXPR_DECL (stmt);
1411 *stmt_p = NULL_TREE;
1413 if (TREE_TYPE (decl) == error_mark_node)
1414 return GS_ERROR;
1416 if ((TREE_CODE (decl) == TYPE_DECL
1417 || TREE_CODE (decl) == VAR_DECL)
1418 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1419 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1421 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1423 tree init = DECL_INITIAL (decl);
1425 if (TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1426 || (!TREE_STATIC (decl)
1427 && flag_stack_check == GENERIC_STACK_CHECK
1428 && compare_tree_int (DECL_SIZE_UNIT (decl),
1429 STACK_CHECK_MAX_VAR_SIZE) > 0))
1430 gimplify_vla_decl (decl, seq_p);
1432 /* Some front ends do not explicitly declare all anonymous
1433 artificial variables. We compensate here by declaring the
1434 variables, though it would be better if the front ends would
1435 explicitly declare them. */
1436 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1437 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1438 gimple_add_tmp_var (decl);
1440 if (init && init != error_mark_node)
1442 if (!TREE_STATIC (decl))
1444 DECL_INITIAL (decl) = NULL_TREE;
1445 init = build2 (INIT_EXPR, void_type_node, decl, init);
1446 gimplify_and_add (init, seq_p);
1447 ggc_free (init);
1449 else
1450 /* We must still examine initializers for static variables
1451 as they may contain a label address. */
1452 walk_tree (&init, force_labels_r, NULL, NULL);
1456 return GS_ALL_DONE;
1459 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1460 and replacing the LOOP_EXPR with goto, but if the loop contains an
1461 EXIT_EXPR, we need to append a label for it to jump to. */
1463 static enum gimplify_status
1464 gimplify_loop_expr (tree *expr_p, gimple_seq *pre_p)
1466 tree saved_label = gimplify_ctxp->exit_label;
1467 tree start_label = create_artificial_label (UNKNOWN_LOCATION);
1469 gimplify_seq_add_stmt (pre_p, gimple_build_label (start_label));
1471 gimplify_ctxp->exit_label = NULL_TREE;
1473 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1475 gimplify_seq_add_stmt (pre_p, gimple_build_goto (start_label));
1477 if (gimplify_ctxp->exit_label)
1478 gimplify_seq_add_stmt (pre_p,
1479 gimple_build_label (gimplify_ctxp->exit_label));
1481 gimplify_ctxp->exit_label = saved_label;
1483 *expr_p = NULL;
1484 return GS_ALL_DONE;
1487 /* Gimplify a statement list onto a sequence. These may be created either
1488 by an enlightened front-end, or by shortcut_cond_expr. */
1490 static enum gimplify_status
1491 gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
1493 tree temp = voidify_wrapper_expr (*expr_p, NULL);
1495 tree_stmt_iterator i = tsi_start (*expr_p);
1497 while (!tsi_end_p (i))
1499 gimplify_stmt (tsi_stmt_ptr (i), pre_p);
1500 tsi_delink (&i);
1503 if (temp)
1505 *expr_p = temp;
1506 return GS_OK;
1509 return GS_ALL_DONE;
1512 /* Compare two case labels. Because the front end should already have
1513 made sure that case ranges do not overlap, it is enough to only compare
1514 the CASE_LOW values of each case label. */
1516 static int
1517 compare_case_labels (const void *p1, const void *p2)
1519 const_tree const case1 = *(const_tree const*)p1;
1520 const_tree const case2 = *(const_tree const*)p2;
1522 /* The 'default' case label always goes first. */
1523 if (!CASE_LOW (case1))
1524 return -1;
1525 else if (!CASE_LOW (case2))
1526 return 1;
1527 else
1528 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1531 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1533 void
1534 sort_case_labels (VEC(tree,heap)* label_vec)
1536 VEC_qsort (tree, label_vec, compare_case_labels);
1539 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1540 branch to. */
1542 static enum gimplify_status
1543 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1545 tree switch_expr = *expr_p;
1546 gimple_seq switch_body_seq = NULL;
1547 enum gimplify_status ret;
1549 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1550 fb_rvalue);
1551 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1552 return ret;
1554 if (SWITCH_BODY (switch_expr))
1556 VEC (tree,heap) *labels;
1557 VEC (tree,heap) *saved_labels;
1558 tree default_case = NULL_TREE;
1559 size_t i, len;
1560 gimple gimple_switch;
1562 /* If someone can be bothered to fill in the labels, they can
1563 be bothered to null out the body too. */
1564 gcc_assert (!SWITCH_LABELS (switch_expr));
1566 /* save old labels, get new ones from body, then restore the old
1567 labels. Save all the things from the switch body to append after. */
1568 saved_labels = gimplify_ctxp->case_labels;
1569 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1571 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1572 labels = gimplify_ctxp->case_labels;
1573 gimplify_ctxp->case_labels = saved_labels;
1575 i = 0;
1576 while (i < VEC_length (tree, labels))
1578 tree elt = VEC_index (tree, labels, i);
1579 tree low = CASE_LOW (elt);
1580 bool remove_element = FALSE;
1582 if (low)
1584 /* Discard empty ranges. */
1585 tree high = CASE_HIGH (elt);
1586 if (high && tree_int_cst_lt (high, low))
1587 remove_element = TRUE;
1589 else
1591 /* The default case must be the last label in the list. */
1592 gcc_assert (!default_case);
1593 default_case = elt;
1594 remove_element = TRUE;
1597 if (remove_element)
1598 VEC_ordered_remove (tree, labels, i);
1599 else
1600 i++;
1602 len = i;
1604 if (!VEC_empty (tree, labels))
1605 sort_case_labels (labels);
1607 if (!default_case)
1609 tree type = TREE_TYPE (switch_expr);
1611 /* If the switch has no default label, add one, so that we jump
1612 around the switch body. If the labels already cover the whole
1613 range of type, add the default label pointing to one of the
1614 existing labels. */
1615 if (type == void_type_node)
1616 type = TREE_TYPE (SWITCH_COND (switch_expr));
1617 if (len
1618 && INTEGRAL_TYPE_P (type)
1619 && TYPE_MIN_VALUE (type)
1620 && TYPE_MAX_VALUE (type)
1621 && tree_int_cst_equal (CASE_LOW (VEC_index (tree, labels, 0)),
1622 TYPE_MIN_VALUE (type)))
1624 tree low, high = CASE_HIGH (VEC_index (tree, labels, len - 1));
1625 if (!high)
1626 high = CASE_LOW (VEC_index (tree, labels, len - 1));
1627 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (type)))
1629 for (i = 1; i < len; i++)
1631 high = CASE_LOW (VEC_index (tree, labels, i));
1632 low = CASE_HIGH (VEC_index (tree, labels, i - 1));
1633 if (!low)
1634 low = CASE_LOW (VEC_index (tree, labels, i - 1));
1635 if ((TREE_INT_CST_LOW (low) + 1
1636 != TREE_INT_CST_LOW (high))
1637 || (TREE_INT_CST_HIGH (low)
1638 + (TREE_INT_CST_LOW (high) == 0)
1639 != TREE_INT_CST_HIGH (high)))
1640 break;
1642 if (i == len)
1644 tree label = CASE_LABEL (VEC_index (tree, labels, 0));
1645 default_case = build_case_label (NULL_TREE, NULL_TREE,
1646 label);
1651 if (!default_case)
1653 gimple new_default;
1655 default_case
1656 = build_case_label (NULL_TREE, NULL_TREE,
1657 create_artificial_label (UNKNOWN_LOCATION));
1658 new_default = gimple_build_label (CASE_LABEL (default_case));
1659 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1663 gimple_switch = gimple_build_switch_vec (SWITCH_COND (switch_expr),
1664 default_case, labels);
1665 gimplify_seq_add_stmt (pre_p, gimple_switch);
1666 gimplify_seq_add_seq (pre_p, switch_body_seq);
1667 VEC_free(tree, heap, labels);
1669 else
1670 gcc_assert (SWITCH_LABELS (switch_expr));
1672 return GS_ALL_DONE;
1675 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1677 static enum gimplify_status
1678 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1680 struct gimplify_ctx *ctxp;
1681 gimple gimple_label;
1683 /* Invalid OpenMP programs can play Duff's Device type games with
1684 #pragma omp parallel. At least in the C front end, we don't
1685 detect such invalid branches until after gimplification. */
1686 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1687 if (ctxp->case_labels)
1688 break;
1690 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1691 VEC_safe_push (tree, heap, ctxp->case_labels, *expr_p);
1692 gimplify_seq_add_stmt (pre_p, gimple_label);
1694 return GS_ALL_DONE;
1697 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1698 if necessary. */
1700 tree
1701 build_and_jump (tree *label_p)
1703 if (label_p == NULL)
1704 /* If there's nowhere to jump, just fall through. */
1705 return NULL_TREE;
1707 if (*label_p == NULL_TREE)
1709 tree label = create_artificial_label (UNKNOWN_LOCATION);
1710 *label_p = label;
1713 return build1 (GOTO_EXPR, void_type_node, *label_p);
1716 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1717 This also involves building a label to jump to and communicating it to
1718 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1720 static enum gimplify_status
1721 gimplify_exit_expr (tree *expr_p)
1723 tree cond = TREE_OPERAND (*expr_p, 0);
1724 tree expr;
1726 expr = build_and_jump (&gimplify_ctxp->exit_label);
1727 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1728 *expr_p = expr;
1730 return GS_OK;
1733 /* A helper function to be called via walk_tree. Mark all labels under *TP
1734 as being forced. To be called for DECL_INITIAL of static variables. */
1736 tree
1737 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1739 if (TYPE_P (*tp))
1740 *walk_subtrees = 0;
1741 if (TREE_CODE (*tp) == LABEL_DECL)
1742 FORCED_LABEL (*tp) = 1;
1744 return NULL_TREE;
1747 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1748 different from its canonical type, wrap the whole thing inside a
1749 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1750 type.
1752 The canonical type of a COMPONENT_REF is the type of the field being
1753 referenced--unless the field is a bit-field which can be read directly
1754 in a smaller mode, in which case the canonical type is the
1755 sign-appropriate type corresponding to that mode. */
1757 static void
1758 canonicalize_component_ref (tree *expr_p)
1760 tree expr = *expr_p;
1761 tree type;
1763 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1765 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1766 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1767 else
1768 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1770 /* One could argue that all the stuff below is not necessary for
1771 the non-bitfield case and declare it a FE error if type
1772 adjustment would be needed. */
1773 if (TREE_TYPE (expr) != type)
1775 #ifdef ENABLE_TYPES_CHECKING
1776 tree old_type = TREE_TYPE (expr);
1777 #endif
1778 int type_quals;
1780 /* We need to preserve qualifiers and propagate them from
1781 operand 0. */
1782 type_quals = TYPE_QUALS (type)
1783 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1784 if (TYPE_QUALS (type) != type_quals)
1785 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1787 /* Set the type of the COMPONENT_REF to the underlying type. */
1788 TREE_TYPE (expr) = type;
1790 #ifdef ENABLE_TYPES_CHECKING
1791 /* It is now a FE error, if the conversion from the canonical
1792 type to the original expression type is not useless. */
1793 gcc_assert (useless_type_conversion_p (old_type, type));
1794 #endif
1798 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1799 to foo, embed that change in the ADDR_EXPR by converting
1800 T array[U];
1801 (T *)&array
1803 &array[L]
1804 where L is the lower bound. For simplicity, only do this for constant
1805 lower bound.
1806 The constraint is that the type of &array[L] is trivially convertible
1807 to T *. */
1809 static void
1810 canonicalize_addr_expr (tree *expr_p)
1812 tree expr = *expr_p;
1813 tree addr_expr = TREE_OPERAND (expr, 0);
1814 tree datype, ddatype, pddatype;
1816 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1817 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1818 || TREE_CODE (addr_expr) != ADDR_EXPR)
1819 return;
1821 /* The addr_expr type should be a pointer to an array. */
1822 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1823 if (TREE_CODE (datype) != ARRAY_TYPE)
1824 return;
1826 /* The pointer to element type shall be trivially convertible to
1827 the expression pointer type. */
1828 ddatype = TREE_TYPE (datype);
1829 pddatype = build_pointer_type (ddatype);
1830 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1831 pddatype))
1832 return;
1834 /* The lower bound and element sizes must be constant. */
1835 if (!TYPE_SIZE_UNIT (ddatype)
1836 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1837 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1838 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1839 return;
1841 /* All checks succeeded. Build a new node to merge the cast. */
1842 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1843 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1844 NULL_TREE, NULL_TREE);
1845 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1847 /* We can have stripped a required restrict qualifier above. */
1848 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1849 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1852 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1853 underneath as appropriate. */
1855 static enum gimplify_status
1856 gimplify_conversion (tree *expr_p)
1858 location_t loc = EXPR_LOCATION (*expr_p);
1859 gcc_assert (CONVERT_EXPR_P (*expr_p));
1861 /* Then strip away all but the outermost conversion. */
1862 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1864 /* And remove the outermost conversion if it's useless. */
1865 if (tree_ssa_useless_type_conversion (*expr_p))
1866 *expr_p = TREE_OPERAND (*expr_p, 0);
1868 /* If we still have a conversion at the toplevel,
1869 then canonicalize some constructs. */
1870 if (CONVERT_EXPR_P (*expr_p))
1872 tree sub = TREE_OPERAND (*expr_p, 0);
1874 /* If a NOP conversion is changing the type of a COMPONENT_REF
1875 expression, then canonicalize its type now in order to expose more
1876 redundant conversions. */
1877 if (TREE_CODE (sub) == COMPONENT_REF)
1878 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1880 /* If a NOP conversion is changing a pointer to array of foo
1881 to a pointer to foo, embed that change in the ADDR_EXPR. */
1882 else if (TREE_CODE (sub) == ADDR_EXPR)
1883 canonicalize_addr_expr (expr_p);
1886 /* If we have a conversion to a non-register type force the
1887 use of a VIEW_CONVERT_EXPR instead. */
1888 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
1889 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
1890 TREE_OPERAND (*expr_p, 0));
1892 return GS_OK;
1895 /* Nonlocal VLAs seen in the current function. */
1896 static struct pointer_set_t *nonlocal_vlas;
1898 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
1899 DECL_VALUE_EXPR, and it's worth re-examining things. */
1901 static enum gimplify_status
1902 gimplify_var_or_parm_decl (tree *expr_p)
1904 tree decl = *expr_p;
1906 /* ??? If this is a local variable, and it has not been seen in any
1907 outer BIND_EXPR, then it's probably the result of a duplicate
1908 declaration, for which we've already issued an error. It would
1909 be really nice if the front end wouldn't leak these at all.
1910 Currently the only known culprit is C++ destructors, as seen
1911 in g++.old-deja/g++.jason/binding.C. */
1912 if (TREE_CODE (decl) == VAR_DECL
1913 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
1914 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
1915 && decl_function_context (decl) == current_function_decl)
1917 gcc_assert (seen_error ());
1918 return GS_ERROR;
1921 /* When within an OpenMP context, notice uses of variables. */
1922 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
1923 return GS_ALL_DONE;
1925 /* If the decl is an alias for another expression, substitute it now. */
1926 if (DECL_HAS_VALUE_EXPR_P (decl))
1928 tree value_expr = DECL_VALUE_EXPR (decl);
1930 /* For referenced nonlocal VLAs add a decl for debugging purposes
1931 to the current function. */
1932 if (TREE_CODE (decl) == VAR_DECL
1933 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1934 && nonlocal_vlas != NULL
1935 && TREE_CODE (value_expr) == INDIRECT_REF
1936 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
1937 && decl_function_context (decl) != current_function_decl)
1939 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1940 while (ctx && ctx->region_type == ORT_WORKSHARE)
1941 ctx = ctx->outer_context;
1942 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
1944 tree copy = copy_node (decl), block;
1946 lang_hooks.dup_lang_specific_decl (copy);
1947 SET_DECL_RTL (copy, 0);
1948 TREE_USED (copy) = 1;
1949 block = DECL_INITIAL (current_function_decl);
1950 DECL_CHAIN (copy) = BLOCK_VARS (block);
1951 BLOCK_VARS (block) = copy;
1952 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
1953 DECL_HAS_VALUE_EXPR_P (copy) = 1;
1957 *expr_p = unshare_expr (value_expr);
1958 return GS_OK;
1961 return GS_ALL_DONE;
1964 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1965 node *EXPR_P.
1967 compound_lval
1968 : min_lval '[' val ']'
1969 | min_lval '.' ID
1970 | compound_lval '[' val ']'
1971 | compound_lval '.' ID
1973 This is not part of the original SIMPLE definition, which separates
1974 array and member references, but it seems reasonable to handle them
1975 together. Also, this way we don't run into problems with union
1976 aliasing; gcc requires that for accesses through a union to alias, the
1977 union reference must be explicit, which was not always the case when we
1978 were splitting up array and member refs.
1980 PRE_P points to the sequence where side effects that must happen before
1981 *EXPR_P should be stored.
1983 POST_P points to the sequence where side effects that must happen after
1984 *EXPR_P should be stored. */
1986 static enum gimplify_status
1987 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
1988 fallback_t fallback)
1990 tree *p;
1991 VEC(tree,heap) *stack;
1992 enum gimplify_status ret = GS_ALL_DONE, tret;
1993 int i;
1994 location_t loc = EXPR_LOCATION (*expr_p);
1995 tree expr = *expr_p;
1997 /* Create a stack of the subexpressions so later we can walk them in
1998 order from inner to outer. */
1999 stack = VEC_alloc (tree, heap, 10);
2001 /* We can handle anything that get_inner_reference can deal with. */
2002 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
2004 restart:
2005 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2006 if (TREE_CODE (*p) == INDIRECT_REF)
2007 *p = fold_indirect_ref_loc (loc, *p);
2009 if (handled_component_p (*p))
2011 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2012 additional COMPONENT_REFs. */
2013 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
2014 && gimplify_var_or_parm_decl (p) == GS_OK)
2015 goto restart;
2016 else
2017 break;
2019 VEC_safe_push (tree, heap, stack, *p);
2022 gcc_assert (VEC_length (tree, stack));
2024 /* Now STACK is a stack of pointers to all the refs we've walked through
2025 and P points to the innermost expression.
2027 Java requires that we elaborated nodes in source order. That
2028 means we must gimplify the inner expression followed by each of
2029 the indices, in order. But we can't gimplify the inner
2030 expression until we deal with any variable bounds, sizes, or
2031 positions in order to deal with PLACEHOLDER_EXPRs.
2033 So we do this in three steps. First we deal with the annotations
2034 for any variables in the components, then we gimplify the base,
2035 then we gimplify any indices, from left to right. */
2036 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
2038 tree t = VEC_index (tree, stack, i);
2040 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2042 /* Gimplify the low bound and element type size and put them into
2043 the ARRAY_REF. If these values are set, they have already been
2044 gimplified. */
2045 if (TREE_OPERAND (t, 2) == NULL_TREE)
2047 tree low = unshare_expr (array_ref_low_bound (t));
2048 if (!is_gimple_min_invariant (low))
2050 TREE_OPERAND (t, 2) = low;
2051 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2052 post_p, is_gimple_reg,
2053 fb_rvalue);
2054 ret = MIN (ret, tret);
2057 else
2059 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2060 is_gimple_reg, fb_rvalue);
2061 ret = MIN (ret, tret);
2064 if (TREE_OPERAND (t, 3) == NULL_TREE)
2066 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2067 tree elmt_size = unshare_expr (array_ref_element_size (t));
2068 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2070 /* Divide the element size by the alignment of the element
2071 type (above). */
2072 elmt_size
2073 = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2075 if (!is_gimple_min_invariant (elmt_size))
2077 TREE_OPERAND (t, 3) = elmt_size;
2078 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2079 post_p, is_gimple_reg,
2080 fb_rvalue);
2081 ret = MIN (ret, tret);
2084 else
2086 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
2087 is_gimple_reg, fb_rvalue);
2088 ret = MIN (ret, tret);
2091 else if (TREE_CODE (t) == COMPONENT_REF)
2093 /* Set the field offset into T and gimplify it. */
2094 if (TREE_OPERAND (t, 2) == NULL_TREE)
2096 tree offset = unshare_expr (component_ref_field_offset (t));
2097 tree field = TREE_OPERAND (t, 1);
2098 tree factor
2099 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2101 /* Divide the offset by its alignment. */
2102 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2104 if (!is_gimple_min_invariant (offset))
2106 TREE_OPERAND (t, 2) = offset;
2107 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2108 post_p, is_gimple_reg,
2109 fb_rvalue);
2110 ret = MIN (ret, tret);
2113 else
2115 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2116 is_gimple_reg, fb_rvalue);
2117 ret = MIN (ret, tret);
2122 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2123 so as to match the min_lval predicate. Failure to do so may result
2124 in the creation of large aggregate temporaries. */
2125 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2126 fallback | fb_lvalue);
2127 ret = MIN (ret, tret);
2129 /* And finally, the indices and operands to BIT_FIELD_REF. During this
2130 loop we also remove any useless conversions. */
2131 for (; VEC_length (tree, stack) > 0; )
2133 tree t = VEC_pop (tree, stack);
2135 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2137 /* Gimplify the dimension. */
2138 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2140 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2141 is_gimple_val, fb_rvalue);
2142 ret = MIN (ret, tret);
2145 else if (TREE_CODE (t) == BIT_FIELD_REF)
2147 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2148 is_gimple_val, fb_rvalue);
2149 ret = MIN (ret, tret);
2150 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2151 is_gimple_val, fb_rvalue);
2152 ret = MIN (ret, tret);
2155 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
2157 /* The innermost expression P may have originally had
2158 TREE_SIDE_EFFECTS set which would have caused all the outer
2159 expressions in *EXPR_P leading to P to also have had
2160 TREE_SIDE_EFFECTS set. */
2161 recalculate_side_effects (t);
2164 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2165 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
2167 canonicalize_component_ref (expr_p);
2170 VEC_free (tree, heap, stack);
2172 gcc_assert (*expr_p == expr || ret != GS_ALL_DONE);
2174 return ret;
2177 /* Gimplify the self modifying expression pointed to by EXPR_P
2178 (++, --, +=, -=).
2180 PRE_P points to the list where side effects that must happen before
2181 *EXPR_P should be stored.
2183 POST_P points to the list where side effects that must happen after
2184 *EXPR_P should be stored.
2186 WANT_VALUE is nonzero iff we want to use the value of this expression
2187 in another expression. */
2189 static enum gimplify_status
2190 gimplify_self_mod_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2191 bool want_value)
2193 enum tree_code code;
2194 tree lhs, lvalue, rhs, t1;
2195 gimple_seq post = NULL, *orig_post_p = post_p;
2196 bool postfix;
2197 enum tree_code arith_code;
2198 enum gimplify_status ret;
2199 location_t loc = EXPR_LOCATION (*expr_p);
2201 code = TREE_CODE (*expr_p);
2203 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
2204 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
2206 /* Prefix or postfix? */
2207 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
2208 /* Faster to treat as prefix if result is not used. */
2209 postfix = want_value;
2210 else
2211 postfix = false;
2213 /* For postfix, make sure the inner expression's post side effects
2214 are executed after side effects from this expression. */
2215 if (postfix)
2216 post_p = &post;
2218 /* Add or subtract? */
2219 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2220 arith_code = PLUS_EXPR;
2221 else
2222 arith_code = MINUS_EXPR;
2224 /* Gimplify the LHS into a GIMPLE lvalue. */
2225 lvalue = TREE_OPERAND (*expr_p, 0);
2226 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2227 if (ret == GS_ERROR)
2228 return ret;
2230 /* Extract the operands to the arithmetic operation. */
2231 lhs = lvalue;
2232 rhs = TREE_OPERAND (*expr_p, 1);
2234 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2235 that as the result value and in the postqueue operation. We also
2236 make sure to make lvalue a minimal lval, see
2237 gcc.c-torture/execute/20040313-1.c for an example where this matters. */
2238 if (postfix)
2240 if (!is_gimple_min_lval (lvalue))
2242 mark_addressable (lvalue);
2243 lvalue = build_fold_addr_expr_loc (input_location, lvalue);
2244 gimplify_expr (&lvalue, pre_p, post_p, is_gimple_val, fb_rvalue);
2245 lvalue = build_fold_indirect_ref_loc (input_location, lvalue);
2247 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
2248 if (ret == GS_ERROR)
2249 return ret;
2252 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2253 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
2255 rhs = convert_to_ptrofftype_loc (loc, rhs);
2256 if (arith_code == MINUS_EXPR)
2257 rhs = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (rhs), rhs);
2258 arith_code = POINTER_PLUS_EXPR;
2261 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
2263 if (postfix)
2265 gimplify_assign (lvalue, t1, orig_post_p);
2266 gimplify_seq_add_seq (orig_post_p, post);
2267 *expr_p = lhs;
2268 return GS_ALL_DONE;
2270 else
2272 *expr_p = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
2273 return GS_OK;
2277 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2279 static void
2280 maybe_with_size_expr (tree *expr_p)
2282 tree expr = *expr_p;
2283 tree type = TREE_TYPE (expr);
2284 tree size;
2286 /* If we've already wrapped this or the type is error_mark_node, we can't do
2287 anything. */
2288 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2289 || type == error_mark_node)
2290 return;
2292 /* If the size isn't known or is a constant, we have nothing to do. */
2293 size = TYPE_SIZE_UNIT (type);
2294 if (!size || TREE_CODE (size) == INTEGER_CST)
2295 return;
2297 /* Otherwise, make a WITH_SIZE_EXPR. */
2298 size = unshare_expr (size);
2299 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2300 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2303 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2304 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2305 the CALL_EXPR. */
2307 static enum gimplify_status
2308 gimplify_arg (tree *arg_p, gimple_seq *pre_p, location_t call_location)
2310 bool (*test) (tree);
2311 fallback_t fb;
2313 /* In general, we allow lvalues for function arguments to avoid
2314 extra overhead of copying large aggregates out of even larger
2315 aggregates into temporaries only to copy the temporaries to
2316 the argument list. Make optimizers happy by pulling out to
2317 temporaries those types that fit in registers. */
2318 if (is_gimple_reg_type (TREE_TYPE (*arg_p)))
2319 test = is_gimple_val, fb = fb_rvalue;
2320 else
2322 test = is_gimple_lvalue, fb = fb_either;
2323 /* Also strip a TARGET_EXPR that would force an extra copy. */
2324 if (TREE_CODE (*arg_p) == TARGET_EXPR)
2326 tree init = TARGET_EXPR_INITIAL (*arg_p);
2327 if (init
2328 && !VOID_TYPE_P (TREE_TYPE (init)))
2329 *arg_p = init;
2333 /* If this is a variable sized type, we must remember the size. */
2334 maybe_with_size_expr (arg_p);
2336 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2337 /* Make sure arguments have the same location as the function call
2338 itself. */
2339 protected_set_expr_location (*arg_p, call_location);
2341 /* There is a sequence point before a function call. Side effects in
2342 the argument list must occur before the actual call. So, when
2343 gimplifying arguments, force gimplify_expr to use an internal
2344 post queue which is then appended to the end of PRE_P. */
2345 return gimplify_expr (arg_p, pre_p, NULL, test, fb);
2348 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2349 WANT_VALUE is true if the result of the call is desired. */
2351 static enum gimplify_status
2352 gimplify_call_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
2354 tree fndecl, parms, p, fnptrtype;
2355 enum gimplify_status ret;
2356 int i, nargs;
2357 gimple call;
2358 bool builtin_va_start_p = FALSE;
2359 location_t loc = EXPR_LOCATION (*expr_p);
2361 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2363 /* For reliable diagnostics during inlining, it is necessary that
2364 every call_expr be annotated with file and line. */
2365 if (! EXPR_HAS_LOCATION (*expr_p))
2366 SET_EXPR_LOCATION (*expr_p, input_location);
2368 /* This may be a call to a builtin function.
2370 Builtin function calls may be transformed into different
2371 (and more efficient) builtin function calls under certain
2372 circumstances. Unfortunately, gimplification can muck things
2373 up enough that the builtin expanders are not aware that certain
2374 transformations are still valid.
2376 So we attempt transformation/gimplification of the call before
2377 we gimplify the CALL_EXPR. At this time we do not manage to
2378 transform all calls in the same manner as the expanders do, but
2379 we do transform most of them. */
2380 fndecl = get_callee_fndecl (*expr_p);
2381 if (fndecl && DECL_BUILT_IN (fndecl))
2383 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2385 if (new_tree && new_tree != *expr_p)
2387 /* There was a transformation of this call which computes the
2388 same value, but in a more efficient way. Return and try
2389 again. */
2390 *expr_p = new_tree;
2391 return GS_OK;
2394 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
2395 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_VA_START)
2397 builtin_va_start_p = TRUE;
2398 if (call_expr_nargs (*expr_p) < 2)
2400 error ("too few arguments to function %<va_start%>");
2401 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2402 return GS_OK;
2405 if (fold_builtin_next_arg (*expr_p, true))
2407 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2408 return GS_OK;
2413 /* Remember the original function pointer type. */
2414 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2416 /* There is a sequence point before the call, so any side effects in
2417 the calling expression must occur before the actual call. Force
2418 gimplify_expr to use an internal post queue. */
2419 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2420 is_gimple_call_addr, fb_rvalue);
2422 nargs = call_expr_nargs (*expr_p);
2424 /* Get argument types for verification. */
2425 fndecl = get_callee_fndecl (*expr_p);
2426 parms = NULL_TREE;
2427 if (fndecl)
2428 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2429 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2430 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2432 if (fndecl && DECL_ARGUMENTS (fndecl))
2433 p = DECL_ARGUMENTS (fndecl);
2434 else if (parms)
2435 p = parms;
2436 else
2437 p = NULL_TREE;
2438 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2441 /* If the last argument is __builtin_va_arg_pack () and it is not
2442 passed as a named argument, decrease the number of CALL_EXPR
2443 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2444 if (!p
2445 && i < nargs
2446 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2448 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2449 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2451 if (last_arg_fndecl
2452 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2453 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2454 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2456 tree call = *expr_p;
2458 --nargs;
2459 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2460 CALL_EXPR_FN (call),
2461 nargs, CALL_EXPR_ARGP (call));
2463 /* Copy all CALL_EXPR flags, location and block, except
2464 CALL_EXPR_VA_ARG_PACK flag. */
2465 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2466 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2467 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2468 = CALL_EXPR_RETURN_SLOT_OPT (call);
2469 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2470 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2471 TREE_BLOCK (*expr_p) = TREE_BLOCK (call);
2473 /* Set CALL_EXPR_VA_ARG_PACK. */
2474 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2478 /* Finally, gimplify the function arguments. */
2479 if (nargs > 0)
2481 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2482 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2483 PUSH_ARGS_REVERSED ? i-- : i++)
2485 enum gimplify_status t;
2487 /* Avoid gimplifying the second argument to va_start, which needs to
2488 be the plain PARM_DECL. */
2489 if ((i != 1) || !builtin_va_start_p)
2491 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2492 EXPR_LOCATION (*expr_p));
2494 if (t == GS_ERROR)
2495 ret = GS_ERROR;
2500 /* Verify the function result. */
2501 if (want_value && fndecl
2502 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2504 error_at (loc, "using result of function returning %<void%>");
2505 ret = GS_ERROR;
2508 /* Try this again in case gimplification exposed something. */
2509 if (ret != GS_ERROR)
2511 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2513 if (new_tree && new_tree != *expr_p)
2515 /* There was a transformation of this call which computes the
2516 same value, but in a more efficient way. Return and try
2517 again. */
2518 *expr_p = new_tree;
2519 return GS_OK;
2522 else
2524 *expr_p = error_mark_node;
2525 return GS_ERROR;
2528 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2529 decl. This allows us to eliminate redundant or useless
2530 calls to "const" functions. */
2531 if (TREE_CODE (*expr_p) == CALL_EXPR)
2533 int flags = call_expr_flags (*expr_p);
2534 if (flags & (ECF_CONST | ECF_PURE)
2535 /* An infinite loop is considered a side effect. */
2536 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2537 TREE_SIDE_EFFECTS (*expr_p) = 0;
2540 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2541 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2542 form and delegate the creation of a GIMPLE_CALL to
2543 gimplify_modify_expr. This is always possible because when
2544 WANT_VALUE is true, the caller wants the result of this call into
2545 a temporary, which means that we will emit an INIT_EXPR in
2546 internal_get_tmp_var which will then be handled by
2547 gimplify_modify_expr. */
2548 if (!want_value)
2550 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2551 have to do is replicate it as a GIMPLE_CALL tuple. */
2552 gimple_stmt_iterator gsi;
2553 call = gimple_build_call_from_tree (*expr_p);
2554 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2555 gimplify_seq_add_stmt (pre_p, call);
2556 gsi = gsi_last (*pre_p);
2557 fold_stmt (&gsi);
2558 *expr_p = NULL_TREE;
2560 else
2561 /* Remember the original function type. */
2562 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2563 CALL_EXPR_FN (*expr_p));
2565 return ret;
2568 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2569 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2571 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2572 condition is true or false, respectively. If null, we should generate
2573 our own to skip over the evaluation of this specific expression.
2575 LOCUS is the source location of the COND_EXPR.
2577 This function is the tree equivalent of do_jump.
2579 shortcut_cond_r should only be called by shortcut_cond_expr. */
2581 static tree
2582 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2583 location_t locus)
2585 tree local_label = NULL_TREE;
2586 tree t, expr = NULL;
2588 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2589 retain the shortcut semantics. Just insert the gotos here;
2590 shortcut_cond_expr will append the real blocks later. */
2591 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2593 location_t new_locus;
2595 /* Turn if (a && b) into
2597 if (a); else goto no;
2598 if (b) goto yes; else goto no;
2599 (no:) */
2601 if (false_label_p == NULL)
2602 false_label_p = &local_label;
2604 /* Keep the original source location on the first 'if'. */
2605 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, locus);
2606 append_to_statement_list (t, &expr);
2608 /* Set the source location of the && on the second 'if'. */
2609 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2610 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2611 new_locus);
2612 append_to_statement_list (t, &expr);
2614 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2616 location_t new_locus;
2618 /* Turn if (a || b) into
2620 if (a) goto yes;
2621 if (b) goto yes; else goto no;
2622 (yes:) */
2624 if (true_label_p == NULL)
2625 true_label_p = &local_label;
2627 /* Keep the original source location on the first 'if'. */
2628 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2629 append_to_statement_list (t, &expr);
2631 /* Set the source location of the || on the second 'if'. */
2632 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2633 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2634 new_locus);
2635 append_to_statement_list (t, &expr);
2637 else if (TREE_CODE (pred) == COND_EXPR
2638 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 1)))
2639 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 2))))
2641 location_t new_locus;
2643 /* As long as we're messing with gotos, turn if (a ? b : c) into
2644 if (a)
2645 if (b) goto yes; else goto no;
2646 else
2647 if (c) goto yes; else goto no;
2649 Don't do this if one of the arms has void type, which can happen
2650 in C++ when the arm is throw. */
2652 /* Keep the original source location on the first 'if'. Set the source
2653 location of the ? on the second 'if'. */
2654 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2655 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2656 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2657 false_label_p, locus),
2658 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2659 false_label_p, new_locus));
2661 else
2663 expr = build3 (COND_EXPR, void_type_node, pred,
2664 build_and_jump (true_label_p),
2665 build_and_jump (false_label_p));
2666 SET_EXPR_LOCATION (expr, locus);
2669 if (local_label)
2671 t = build1 (LABEL_EXPR, void_type_node, local_label);
2672 append_to_statement_list (t, &expr);
2675 return expr;
2678 /* Given a conditional expression EXPR with short-circuit boolean
2679 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2680 predicate appart into the equivalent sequence of conditionals. */
2682 static tree
2683 shortcut_cond_expr (tree expr)
2685 tree pred = TREE_OPERAND (expr, 0);
2686 tree then_ = TREE_OPERAND (expr, 1);
2687 tree else_ = TREE_OPERAND (expr, 2);
2688 tree true_label, false_label, end_label, t;
2689 tree *true_label_p;
2690 tree *false_label_p;
2691 bool emit_end, emit_false, jump_over_else;
2692 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2693 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2695 /* First do simple transformations. */
2696 if (!else_se)
2698 /* If there is no 'else', turn
2699 if (a && b) then c
2700 into
2701 if (a) if (b) then c. */
2702 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2704 /* Keep the original source location on the first 'if'. */
2705 location_t locus = EXPR_LOC_OR_HERE (expr);
2706 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2707 /* Set the source location of the && on the second 'if'. */
2708 if (EXPR_HAS_LOCATION (pred))
2709 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2710 then_ = shortcut_cond_expr (expr);
2711 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2712 pred = TREE_OPERAND (pred, 0);
2713 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2714 SET_EXPR_LOCATION (expr, locus);
2718 if (!then_se)
2720 /* If there is no 'then', turn
2721 if (a || b); else d
2722 into
2723 if (a); else if (b); else d. */
2724 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2726 /* Keep the original source location on the first 'if'. */
2727 location_t locus = EXPR_LOC_OR_HERE (expr);
2728 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2729 /* Set the source location of the || on the second 'if'. */
2730 if (EXPR_HAS_LOCATION (pred))
2731 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2732 else_ = shortcut_cond_expr (expr);
2733 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2734 pred = TREE_OPERAND (pred, 0);
2735 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2736 SET_EXPR_LOCATION (expr, locus);
2740 /* If we're done, great. */
2741 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2742 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2743 return expr;
2745 /* Otherwise we need to mess with gotos. Change
2746 if (a) c; else d;
2748 if (a); else goto no;
2749 c; goto end;
2750 no: d; end:
2751 and recursively gimplify the condition. */
2753 true_label = false_label = end_label = NULL_TREE;
2755 /* If our arms just jump somewhere, hijack those labels so we don't
2756 generate jumps to jumps. */
2758 if (then_
2759 && TREE_CODE (then_) == GOTO_EXPR
2760 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2762 true_label = GOTO_DESTINATION (then_);
2763 then_ = NULL;
2764 then_se = false;
2767 if (else_
2768 && TREE_CODE (else_) == GOTO_EXPR
2769 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2771 false_label = GOTO_DESTINATION (else_);
2772 else_ = NULL;
2773 else_se = false;
2776 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2777 if (true_label)
2778 true_label_p = &true_label;
2779 else
2780 true_label_p = NULL;
2782 /* The 'else' branch also needs a label if it contains interesting code. */
2783 if (false_label || else_se)
2784 false_label_p = &false_label;
2785 else
2786 false_label_p = NULL;
2788 /* If there was nothing else in our arms, just forward the label(s). */
2789 if (!then_se && !else_se)
2790 return shortcut_cond_r (pred, true_label_p, false_label_p,
2791 EXPR_LOC_OR_HERE (expr));
2793 /* If our last subexpression already has a terminal label, reuse it. */
2794 if (else_se)
2795 t = expr_last (else_);
2796 else if (then_se)
2797 t = expr_last (then_);
2798 else
2799 t = NULL;
2800 if (t && TREE_CODE (t) == LABEL_EXPR)
2801 end_label = LABEL_EXPR_LABEL (t);
2803 /* If we don't care about jumping to the 'else' branch, jump to the end
2804 if the condition is false. */
2805 if (!false_label_p)
2806 false_label_p = &end_label;
2808 /* We only want to emit these labels if we aren't hijacking them. */
2809 emit_end = (end_label == NULL_TREE);
2810 emit_false = (false_label == NULL_TREE);
2812 /* We only emit the jump over the else clause if we have to--if the
2813 then clause may fall through. Otherwise we can wind up with a
2814 useless jump and a useless label at the end of gimplified code,
2815 which will cause us to think that this conditional as a whole
2816 falls through even if it doesn't. If we then inline a function
2817 which ends with such a condition, that can cause us to issue an
2818 inappropriate warning about control reaching the end of a
2819 non-void function. */
2820 jump_over_else = block_may_fallthru (then_);
2822 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2823 EXPR_LOC_OR_HERE (expr));
2825 expr = NULL;
2826 append_to_statement_list (pred, &expr);
2828 append_to_statement_list (then_, &expr);
2829 if (else_se)
2831 if (jump_over_else)
2833 tree last = expr_last (expr);
2834 t = build_and_jump (&end_label);
2835 if (EXPR_HAS_LOCATION (last))
2836 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2837 append_to_statement_list (t, &expr);
2839 if (emit_false)
2841 t = build1 (LABEL_EXPR, void_type_node, false_label);
2842 append_to_statement_list (t, &expr);
2844 append_to_statement_list (else_, &expr);
2846 if (emit_end && end_label)
2848 t = build1 (LABEL_EXPR, void_type_node, end_label);
2849 append_to_statement_list (t, &expr);
2852 return expr;
2855 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2857 tree
2858 gimple_boolify (tree expr)
2860 tree type = TREE_TYPE (expr);
2861 location_t loc = EXPR_LOCATION (expr);
2863 if (TREE_CODE (expr) == NE_EXPR
2864 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
2865 && integer_zerop (TREE_OPERAND (expr, 1)))
2867 tree call = TREE_OPERAND (expr, 0);
2868 tree fn = get_callee_fndecl (call);
2870 /* For __builtin_expect ((long) (x), y) recurse into x as well
2871 if x is truth_value_p. */
2872 if (fn
2873 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2874 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
2875 && call_expr_nargs (call) == 2)
2877 tree arg = CALL_EXPR_ARG (call, 0);
2878 if (arg)
2880 if (TREE_CODE (arg) == NOP_EXPR
2881 && TREE_TYPE (arg) == TREE_TYPE (call))
2882 arg = TREE_OPERAND (arg, 0);
2883 if (truth_value_p (TREE_CODE (arg)))
2885 arg = gimple_boolify (arg);
2886 CALL_EXPR_ARG (call, 0)
2887 = fold_convert_loc (loc, TREE_TYPE (call), arg);
2893 switch (TREE_CODE (expr))
2895 case TRUTH_AND_EXPR:
2896 case TRUTH_OR_EXPR:
2897 case TRUTH_XOR_EXPR:
2898 case TRUTH_ANDIF_EXPR:
2899 case TRUTH_ORIF_EXPR:
2900 /* Also boolify the arguments of truth exprs. */
2901 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2902 /* FALLTHRU */
2904 case TRUTH_NOT_EXPR:
2905 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2907 /* These expressions always produce boolean results. */
2908 if (TREE_CODE (type) != BOOLEAN_TYPE)
2909 TREE_TYPE (expr) = boolean_type_node;
2910 return expr;
2912 default:
2913 if (COMPARISON_CLASS_P (expr))
2915 /* There expressions always prduce boolean results. */
2916 if (TREE_CODE (type) != BOOLEAN_TYPE)
2917 TREE_TYPE (expr) = boolean_type_node;
2918 return expr;
2920 /* Other expressions that get here must have boolean values, but
2921 might need to be converted to the appropriate mode. */
2922 if (TREE_CODE (type) == BOOLEAN_TYPE)
2923 return expr;
2924 return fold_convert_loc (loc, boolean_type_node, expr);
2928 /* Given a conditional expression *EXPR_P without side effects, gimplify
2929 its operands. New statements are inserted to PRE_P. */
2931 static enum gimplify_status
2932 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
2934 tree expr = *expr_p, cond;
2935 enum gimplify_status ret, tret;
2936 enum tree_code code;
2938 cond = gimple_boolify (COND_EXPR_COND (expr));
2940 /* We need to handle && and || specially, as their gimplification
2941 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
2942 code = TREE_CODE (cond);
2943 if (code == TRUTH_ANDIF_EXPR)
2944 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
2945 else if (code == TRUTH_ORIF_EXPR)
2946 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
2947 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
2948 COND_EXPR_COND (*expr_p) = cond;
2950 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
2951 is_gimple_val, fb_rvalue);
2952 ret = MIN (ret, tret);
2953 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
2954 is_gimple_val, fb_rvalue);
2956 return MIN (ret, tret);
2959 /* Return true if evaluating EXPR could trap.
2960 EXPR is GENERIC, while tree_could_trap_p can be called
2961 only on GIMPLE. */
2963 static bool
2964 generic_expr_could_trap_p (tree expr)
2966 unsigned i, n;
2968 if (!expr || is_gimple_val (expr))
2969 return false;
2971 if (!EXPR_P (expr) || tree_could_trap_p (expr))
2972 return true;
2974 n = TREE_OPERAND_LENGTH (expr);
2975 for (i = 0; i < n; i++)
2976 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
2977 return true;
2979 return false;
2982 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
2983 into
2985 if (p) if (p)
2986 t1 = a; a;
2987 else or else
2988 t1 = b; b;
2991 The second form is used when *EXPR_P is of type void.
2993 PRE_P points to the list where side effects that must happen before
2994 *EXPR_P should be stored. */
2996 static enum gimplify_status
2997 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
2999 tree expr = *expr_p;
3000 tree type = TREE_TYPE (expr);
3001 location_t loc = EXPR_LOCATION (expr);
3002 tree tmp, arm1, arm2;
3003 enum gimplify_status ret;
3004 tree label_true, label_false, label_cont;
3005 bool have_then_clause_p, have_else_clause_p;
3006 gimple gimple_cond;
3007 enum tree_code pred_code;
3008 gimple_seq seq = NULL;
3010 /* If this COND_EXPR has a value, copy the values into a temporary within
3011 the arms. */
3012 if (!VOID_TYPE_P (type))
3014 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
3015 tree result;
3017 /* If either an rvalue is ok or we do not require an lvalue, create the
3018 temporary. But we cannot do that if the type is addressable. */
3019 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
3020 && !TREE_ADDRESSABLE (type))
3022 if (gimplify_ctxp->allow_rhs_cond_expr
3023 /* If either branch has side effects or could trap, it can't be
3024 evaluated unconditionally. */
3025 && !TREE_SIDE_EFFECTS (then_)
3026 && !generic_expr_could_trap_p (then_)
3027 && !TREE_SIDE_EFFECTS (else_)
3028 && !generic_expr_could_trap_p (else_))
3029 return gimplify_pure_cond_expr (expr_p, pre_p);
3031 tmp = create_tmp_var (type, "iftmp");
3032 result = tmp;
3035 /* Otherwise, only create and copy references to the values. */
3036 else
3038 type = build_pointer_type (type);
3040 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3041 then_ = build_fold_addr_expr_loc (loc, then_);
3043 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3044 else_ = build_fold_addr_expr_loc (loc, else_);
3046 expr
3047 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
3049 tmp = create_tmp_var (type, "iftmp");
3050 result = build_simple_mem_ref_loc (loc, tmp);
3053 /* Build the new then clause, `tmp = then_;'. But don't build the
3054 assignment if the value is void; in C++ it can be if it's a throw. */
3055 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3056 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
3058 /* Similarly, build the new else clause, `tmp = else_;'. */
3059 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3060 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
3062 TREE_TYPE (expr) = void_type_node;
3063 recalculate_side_effects (expr);
3065 /* Move the COND_EXPR to the prequeue. */
3066 gimplify_stmt (&expr, pre_p);
3068 *expr_p = result;
3069 return GS_ALL_DONE;
3072 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3073 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3074 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3075 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3077 /* Make sure the condition has BOOLEAN_TYPE. */
3078 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3080 /* Break apart && and || conditions. */
3081 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3082 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3084 expr = shortcut_cond_expr (expr);
3086 if (expr != *expr_p)
3088 *expr_p = expr;
3090 /* We can't rely on gimplify_expr to re-gimplify the expanded
3091 form properly, as cleanups might cause the target labels to be
3092 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3093 set up a conditional context. */
3094 gimple_push_condition ();
3095 gimplify_stmt (expr_p, &seq);
3096 gimple_pop_condition (pre_p);
3097 gimple_seq_add_seq (pre_p, seq);
3099 return GS_ALL_DONE;
3103 /* Now do the normal gimplification. */
3105 /* Gimplify condition. */
3106 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3107 fb_rvalue);
3108 if (ret == GS_ERROR)
3109 return GS_ERROR;
3110 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3112 gimple_push_condition ();
3114 have_then_clause_p = have_else_clause_p = false;
3115 if (TREE_OPERAND (expr, 1) != NULL
3116 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3117 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3118 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3119 == current_function_decl)
3120 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3121 have different locations, otherwise we end up with incorrect
3122 location information on the branches. */
3123 && (optimize
3124 || !EXPR_HAS_LOCATION (expr)
3125 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3126 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3128 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3129 have_then_clause_p = true;
3131 else
3132 label_true = create_artificial_label (UNKNOWN_LOCATION);
3133 if (TREE_OPERAND (expr, 2) != NULL
3134 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3135 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3136 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3137 == current_function_decl)
3138 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3139 have different locations, otherwise we end up with incorrect
3140 location information on the branches. */
3141 && (optimize
3142 || !EXPR_HAS_LOCATION (expr)
3143 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3144 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3146 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3147 have_else_clause_p = true;
3149 else
3150 label_false = create_artificial_label (UNKNOWN_LOCATION);
3152 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3153 &arm2);
3155 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3156 label_false);
3158 gimplify_seq_add_stmt (&seq, gimple_cond);
3159 label_cont = NULL_TREE;
3160 if (!have_then_clause_p)
3162 /* For if (...) {} else { code; } put label_true after
3163 the else block. */
3164 if (TREE_OPERAND (expr, 1) == NULL_TREE
3165 && !have_else_clause_p
3166 && TREE_OPERAND (expr, 2) != NULL_TREE)
3167 label_cont = label_true;
3168 else
3170 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3171 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3172 /* For if (...) { code; } else {} or
3173 if (...) { code; } else goto label; or
3174 if (...) { code; return; } else { ... }
3175 label_cont isn't needed. */
3176 if (!have_else_clause_p
3177 && TREE_OPERAND (expr, 2) != NULL_TREE
3178 && gimple_seq_may_fallthru (seq))
3180 gimple g;
3181 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3183 g = gimple_build_goto (label_cont);
3185 /* GIMPLE_COND's are very low level; they have embedded
3186 gotos. This particular embedded goto should not be marked
3187 with the location of the original COND_EXPR, as it would
3188 correspond to the COND_EXPR's condition, not the ELSE or the
3189 THEN arms. To avoid marking it with the wrong location, flag
3190 it as "no location". */
3191 gimple_set_do_not_emit_location (g);
3193 gimplify_seq_add_stmt (&seq, g);
3197 if (!have_else_clause_p)
3199 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3200 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3202 if (label_cont)
3203 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3205 gimple_pop_condition (pre_p);
3206 gimple_seq_add_seq (pre_p, seq);
3208 if (ret == GS_ERROR)
3209 ; /* Do nothing. */
3210 else if (have_then_clause_p || have_else_clause_p)
3211 ret = GS_ALL_DONE;
3212 else
3214 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3215 expr = TREE_OPERAND (expr, 0);
3216 gimplify_stmt (&expr, pre_p);
3219 *expr_p = NULL;
3220 return ret;
3223 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3224 to be marked addressable.
3226 We cannot rely on such an expression being directly markable if a temporary
3227 has been created by the gimplification. In this case, we create another
3228 temporary and initialize it with a copy, which will become a store after we
3229 mark it addressable. This can happen if the front-end passed us something
3230 that it could not mark addressable yet, like a Fortran pass-by-reference
3231 parameter (int) floatvar. */
3233 static void
3234 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3236 while (handled_component_p (*expr_p))
3237 expr_p = &TREE_OPERAND (*expr_p, 0);
3238 if (is_gimple_reg (*expr_p))
3239 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3242 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3243 a call to __builtin_memcpy. */
3245 static enum gimplify_status
3246 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3247 gimple_seq *seq_p)
3249 tree t, to, to_ptr, from, from_ptr;
3250 gimple gs;
3251 location_t loc = EXPR_LOCATION (*expr_p);
3253 to = TREE_OPERAND (*expr_p, 0);
3254 from = TREE_OPERAND (*expr_p, 1);
3256 /* Mark the RHS addressable. Beware that it may not be possible to do so
3257 directly if a temporary has been created by the gimplification. */
3258 prepare_gimple_addressable (&from, seq_p);
3260 mark_addressable (from);
3261 from_ptr = build_fold_addr_expr_loc (loc, from);
3262 gimplify_arg (&from_ptr, seq_p, loc);
3264 mark_addressable (to);
3265 to_ptr = build_fold_addr_expr_loc (loc, to);
3266 gimplify_arg (&to_ptr, seq_p, loc);
3268 t = builtin_decl_implicit (BUILT_IN_MEMCPY);
3270 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3272 if (want_value)
3274 /* tmp = memcpy() */
3275 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3276 gimple_call_set_lhs (gs, t);
3277 gimplify_seq_add_stmt (seq_p, gs);
3279 *expr_p = build_simple_mem_ref (t);
3280 return GS_ALL_DONE;
3283 gimplify_seq_add_stmt (seq_p, gs);
3284 *expr_p = NULL;
3285 return GS_ALL_DONE;
3288 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3289 a call to __builtin_memset. In this case we know that the RHS is
3290 a CONSTRUCTOR with an empty element list. */
3292 static enum gimplify_status
3293 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3294 gimple_seq *seq_p)
3296 tree t, from, to, to_ptr;
3297 gimple gs;
3298 location_t loc = EXPR_LOCATION (*expr_p);
3300 /* Assert our assumptions, to abort instead of producing wrong code
3301 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3302 not be immediately exposed. */
3303 from = TREE_OPERAND (*expr_p, 1);
3304 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3305 from = TREE_OPERAND (from, 0);
3307 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3308 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (from)));
3310 /* Now proceed. */
3311 to = TREE_OPERAND (*expr_p, 0);
3313 to_ptr = build_fold_addr_expr_loc (loc, to);
3314 gimplify_arg (&to_ptr, seq_p, loc);
3315 t = builtin_decl_implicit (BUILT_IN_MEMSET);
3317 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3319 if (want_value)
3321 /* tmp = memset() */
3322 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3323 gimple_call_set_lhs (gs, t);
3324 gimplify_seq_add_stmt (seq_p, gs);
3326 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3327 return GS_ALL_DONE;
3330 gimplify_seq_add_stmt (seq_p, gs);
3331 *expr_p = NULL;
3332 return GS_ALL_DONE;
3335 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3336 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3337 assignment. Return non-null if we detect a potential overlap. */
3339 struct gimplify_init_ctor_preeval_data
3341 /* The base decl of the lhs object. May be NULL, in which case we
3342 have to assume the lhs is indirect. */
3343 tree lhs_base_decl;
3345 /* The alias set of the lhs object. */
3346 alias_set_type lhs_alias_set;
3349 static tree
3350 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3352 struct gimplify_init_ctor_preeval_data *data
3353 = (struct gimplify_init_ctor_preeval_data *) xdata;
3354 tree t = *tp;
3356 /* If we find the base object, obviously we have overlap. */
3357 if (data->lhs_base_decl == t)
3358 return t;
3360 /* If the constructor component is indirect, determine if we have a
3361 potential overlap with the lhs. The only bits of information we
3362 have to go on at this point are addressability and alias sets. */
3363 if ((INDIRECT_REF_P (t)
3364 || TREE_CODE (t) == MEM_REF)
3365 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3366 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3367 return t;
3369 /* If the constructor component is a call, determine if it can hide a
3370 potential overlap with the lhs through an INDIRECT_REF like above.
3371 ??? Ugh - this is completely broken. In fact this whole analysis
3372 doesn't look conservative. */
3373 if (TREE_CODE (t) == CALL_EXPR)
3375 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3377 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3378 if (POINTER_TYPE_P (TREE_VALUE (type))
3379 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3380 && alias_sets_conflict_p (data->lhs_alias_set,
3381 get_alias_set
3382 (TREE_TYPE (TREE_VALUE (type)))))
3383 return t;
3386 if (IS_TYPE_OR_DECL_P (t))
3387 *walk_subtrees = 0;
3388 return NULL;
3391 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3392 force values that overlap with the lhs (as described by *DATA)
3393 into temporaries. */
3395 static void
3396 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3397 struct gimplify_init_ctor_preeval_data *data)
3399 enum gimplify_status one;
3401 /* If the value is constant, then there's nothing to pre-evaluate. */
3402 if (TREE_CONSTANT (*expr_p))
3404 /* Ensure it does not have side effects, it might contain a reference to
3405 the object we're initializing. */
3406 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3407 return;
3410 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3411 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3412 return;
3414 /* Recurse for nested constructors. */
3415 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3417 unsigned HOST_WIDE_INT ix;
3418 constructor_elt *ce;
3419 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
3421 FOR_EACH_VEC_ELT (constructor_elt, v, ix, ce)
3422 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3424 return;
3427 /* If this is a variable sized type, we must remember the size. */
3428 maybe_with_size_expr (expr_p);
3430 /* Gimplify the constructor element to something appropriate for the rhs
3431 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3432 the gimplifier will consider this a store to memory. Doing this
3433 gimplification now means that we won't have to deal with complicated
3434 language-specific trees, nor trees like SAVE_EXPR that can induce
3435 exponential search behavior. */
3436 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3437 if (one == GS_ERROR)
3439 *expr_p = NULL;
3440 return;
3443 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3444 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3445 always be true for all scalars, since is_gimple_mem_rhs insists on a
3446 temporary variable for them. */
3447 if (DECL_P (*expr_p))
3448 return;
3450 /* If this is of variable size, we have no choice but to assume it doesn't
3451 overlap since we can't make a temporary for it. */
3452 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3453 return;
3455 /* Otherwise, we must search for overlap ... */
3456 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3457 return;
3459 /* ... and if found, force the value into a temporary. */
3460 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3463 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3464 a RANGE_EXPR in a CONSTRUCTOR for an array.
3466 var = lower;
3467 loop_entry:
3468 object[var] = value;
3469 if (var == upper)
3470 goto loop_exit;
3471 var = var + 1;
3472 goto loop_entry;
3473 loop_exit:
3475 We increment var _after_ the loop exit check because we might otherwise
3476 fail if upper == TYPE_MAX_VALUE (type for upper).
3478 Note that we never have to deal with SAVE_EXPRs here, because this has
3479 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3481 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
3482 gimple_seq *, bool);
3484 static void
3485 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3486 tree value, tree array_elt_type,
3487 gimple_seq *pre_p, bool cleared)
3489 tree loop_entry_label, loop_exit_label, fall_thru_label;
3490 tree var, var_type, cref, tmp;
3492 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3493 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3494 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3496 /* Create and initialize the index variable. */
3497 var_type = TREE_TYPE (upper);
3498 var = create_tmp_var (var_type, NULL);
3499 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3501 /* Add the loop entry label. */
3502 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3504 /* Build the reference. */
3505 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3506 var, NULL_TREE, NULL_TREE);
3508 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3509 the store. Otherwise just assign value to the reference. */
3511 if (TREE_CODE (value) == CONSTRUCTOR)
3512 /* NB we might have to call ourself recursively through
3513 gimplify_init_ctor_eval if the value is a constructor. */
3514 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3515 pre_p, cleared);
3516 else
3517 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3519 /* We exit the loop when the index var is equal to the upper bound. */
3520 gimplify_seq_add_stmt (pre_p,
3521 gimple_build_cond (EQ_EXPR, var, upper,
3522 loop_exit_label, fall_thru_label));
3524 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3526 /* Otherwise, increment the index var... */
3527 tmp = build2 (PLUS_EXPR, var_type, var,
3528 fold_convert (var_type, integer_one_node));
3529 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3531 /* ...and jump back to the loop entry. */
3532 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3534 /* Add the loop exit label. */
3535 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3538 /* Return true if FDECL is accessing a field that is zero sized. */
3540 static bool
3541 zero_sized_field_decl (const_tree fdecl)
3543 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3544 && integer_zerop (DECL_SIZE (fdecl)))
3545 return true;
3546 return false;
3549 /* Return true if TYPE is zero sized. */
3551 static bool
3552 zero_sized_type (const_tree type)
3554 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3555 && integer_zerop (TYPE_SIZE (type)))
3556 return true;
3557 return false;
3560 /* A subroutine of gimplify_init_constructor. Generate individual
3561 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3562 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3563 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3564 zeroed first. */
3566 static void
3567 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
3568 gimple_seq *pre_p, bool cleared)
3570 tree array_elt_type = NULL;
3571 unsigned HOST_WIDE_INT ix;
3572 tree purpose, value;
3574 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3575 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3577 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3579 tree cref;
3581 /* NULL values are created above for gimplification errors. */
3582 if (value == NULL)
3583 continue;
3585 if (cleared && initializer_zerop (value))
3586 continue;
3588 /* ??? Here's to hoping the front end fills in all of the indices,
3589 so we don't have to figure out what's missing ourselves. */
3590 gcc_assert (purpose);
3592 /* Skip zero-sized fields, unless value has side-effects. This can
3593 happen with calls to functions returning a zero-sized type, which
3594 we shouldn't discard. As a number of downstream passes don't
3595 expect sets of zero-sized fields, we rely on the gimplification of
3596 the MODIFY_EXPR we make below to drop the assignment statement. */
3597 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3598 continue;
3600 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3601 whole range. */
3602 if (TREE_CODE (purpose) == RANGE_EXPR)
3604 tree lower = TREE_OPERAND (purpose, 0);
3605 tree upper = TREE_OPERAND (purpose, 1);
3607 /* If the lower bound is equal to upper, just treat it as if
3608 upper was the index. */
3609 if (simple_cst_equal (lower, upper))
3610 purpose = upper;
3611 else
3613 gimplify_init_ctor_eval_range (object, lower, upper, value,
3614 array_elt_type, pre_p, cleared);
3615 continue;
3619 if (array_elt_type)
3621 /* Do not use bitsizetype for ARRAY_REF indices. */
3622 if (TYPE_DOMAIN (TREE_TYPE (object)))
3623 purpose
3624 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3625 purpose);
3626 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3627 purpose, NULL_TREE, NULL_TREE);
3629 else
3631 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3632 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3633 unshare_expr (object), purpose, NULL_TREE);
3636 if (TREE_CODE (value) == CONSTRUCTOR
3637 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3638 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3639 pre_p, cleared);
3640 else
3642 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3643 gimplify_and_add (init, pre_p);
3644 ggc_free (init);
3649 /* Return the appropriate RHS predicate for this LHS. */
3651 gimple_predicate
3652 rhs_predicate_for (tree lhs)
3654 if (is_gimple_reg (lhs))
3655 return is_gimple_reg_rhs_or_call;
3656 else
3657 return is_gimple_mem_rhs_or_call;
3660 /* Gimplify a C99 compound literal expression. This just means adding
3661 the DECL_EXPR before the current statement and using its anonymous
3662 decl instead. */
3664 static enum gimplify_status
3665 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p)
3667 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3668 tree decl = DECL_EXPR_DECL (decl_s);
3669 /* Mark the decl as addressable if the compound literal
3670 expression is addressable now, otherwise it is marked too late
3671 after we gimplify the initialization expression. */
3672 if (TREE_ADDRESSABLE (*expr_p))
3673 TREE_ADDRESSABLE (decl) = 1;
3675 /* Preliminarily mark non-addressed complex variables as eligible
3676 for promotion to gimple registers. We'll transform their uses
3677 as we find them. */
3678 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3679 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3680 && !TREE_THIS_VOLATILE (decl)
3681 && !needs_to_live_in_memory (decl))
3682 DECL_GIMPLE_REG_P (decl) = 1;
3684 /* This decl isn't mentioned in the enclosing block, so add it to the
3685 list of temps. FIXME it seems a bit of a kludge to say that
3686 anonymous artificial vars aren't pushed, but everything else is. */
3687 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3688 gimple_add_tmp_var (decl);
3690 gimplify_and_add (decl_s, pre_p);
3691 *expr_p = decl;
3692 return GS_OK;
3695 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3696 return a new CONSTRUCTOR if something changed. */
3698 static tree
3699 optimize_compound_literals_in_ctor (tree orig_ctor)
3701 tree ctor = orig_ctor;
3702 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (ctor);
3703 unsigned int idx, num = VEC_length (constructor_elt, elts);
3705 for (idx = 0; idx < num; idx++)
3707 tree value = VEC_index (constructor_elt, elts, idx)->value;
3708 tree newval = value;
3709 if (TREE_CODE (value) == CONSTRUCTOR)
3710 newval = optimize_compound_literals_in_ctor (value);
3711 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3713 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3714 tree decl = DECL_EXPR_DECL (decl_s);
3715 tree init = DECL_INITIAL (decl);
3717 if (!TREE_ADDRESSABLE (value)
3718 && !TREE_ADDRESSABLE (decl)
3719 && init)
3720 newval = optimize_compound_literals_in_ctor (init);
3722 if (newval == value)
3723 continue;
3725 if (ctor == orig_ctor)
3727 ctor = copy_node (orig_ctor);
3728 CONSTRUCTOR_ELTS (ctor) = VEC_copy (constructor_elt, gc, elts);
3729 elts = CONSTRUCTOR_ELTS (ctor);
3731 VEC_index (constructor_elt, elts, idx)->value = newval;
3733 return ctor;
3736 /* A subroutine of gimplify_modify_expr. Break out elements of a
3737 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3739 Note that we still need to clear any elements that don't have explicit
3740 initializers, so if not all elements are initialized we keep the
3741 original MODIFY_EXPR, we just remove all of the constructor elements.
3743 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3744 GS_ERROR if we would have to create a temporary when gimplifying
3745 this constructor. Otherwise, return GS_OK.
3747 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3749 static enum gimplify_status
3750 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3751 bool want_value, bool notify_temp_creation)
3753 tree object, ctor, type;
3754 enum gimplify_status ret;
3755 VEC(constructor_elt,gc) *elts;
3757 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3759 if (!notify_temp_creation)
3761 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3762 is_gimple_lvalue, fb_lvalue);
3763 if (ret == GS_ERROR)
3764 return ret;
3767 object = TREE_OPERAND (*expr_p, 0);
3768 ctor = TREE_OPERAND (*expr_p, 1) =
3769 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3770 type = TREE_TYPE (ctor);
3771 elts = CONSTRUCTOR_ELTS (ctor);
3772 ret = GS_ALL_DONE;
3774 switch (TREE_CODE (type))
3776 case RECORD_TYPE:
3777 case UNION_TYPE:
3778 case QUAL_UNION_TYPE:
3779 case ARRAY_TYPE:
3781 struct gimplify_init_ctor_preeval_data preeval_data;
3782 HOST_WIDE_INT num_ctor_elements, num_nonzero_elements;
3783 bool cleared, complete_p, valid_const_initializer;
3785 /* Aggregate types must lower constructors to initialization of
3786 individual elements. The exception is that a CONSTRUCTOR node
3787 with no elements indicates zero-initialization of the whole. */
3788 if (VEC_empty (constructor_elt, elts))
3790 if (notify_temp_creation)
3791 return GS_OK;
3792 break;
3795 /* Fetch information about the constructor to direct later processing.
3796 We might want to make static versions of it in various cases, and
3797 can only do so if it known to be a valid constant initializer. */
3798 valid_const_initializer
3799 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3800 &num_ctor_elements, &complete_p);
3802 /* If a const aggregate variable is being initialized, then it
3803 should never be a lose to promote the variable to be static. */
3804 if (valid_const_initializer
3805 && num_nonzero_elements > 1
3806 && TREE_READONLY (object)
3807 && TREE_CODE (object) == VAR_DECL
3808 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3810 if (notify_temp_creation)
3811 return GS_ERROR;
3812 DECL_INITIAL (object) = ctor;
3813 TREE_STATIC (object) = 1;
3814 if (!DECL_NAME (object))
3815 DECL_NAME (object) = create_tmp_var_name ("C");
3816 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3818 /* ??? C++ doesn't automatically append a .<number> to the
3819 assembler name, and even when it does, it looks a FE private
3820 data structures to figure out what that number should be,
3821 which are not set for this variable. I suppose this is
3822 important for local statics for inline functions, which aren't
3823 "local" in the object file sense. So in order to get a unique
3824 TU-local symbol, we must invoke the lhd version now. */
3825 lhd_set_decl_assembler_name (object);
3827 *expr_p = NULL_TREE;
3828 break;
3831 /* If there are "lots" of initialized elements, even discounting
3832 those that are not address constants (and thus *must* be
3833 computed at runtime), then partition the constructor into
3834 constant and non-constant parts. Block copy the constant
3835 parts in, then generate code for the non-constant parts. */
3836 /* TODO. There's code in cp/typeck.c to do this. */
3838 if (int_size_in_bytes (TREE_TYPE (ctor)) < 0)
3839 /* store_constructor will ignore the clearing of variable-sized
3840 objects. Initializers for such objects must explicitly set
3841 every field that needs to be set. */
3842 cleared = false;
3843 else if (!complete_p)
3844 /* If the constructor isn't complete, clear the whole object
3845 beforehand.
3847 ??? This ought not to be needed. For any element not present
3848 in the initializer, we should simply set them to zero. Except
3849 we'd need to *find* the elements that are not present, and that
3850 requires trickery to avoid quadratic compile-time behavior in
3851 large cases or excessive memory use in small cases. */
3852 cleared = true;
3853 else if (num_ctor_elements - num_nonzero_elements
3854 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
3855 && num_nonzero_elements < num_ctor_elements / 4)
3856 /* If there are "lots" of zeros, it's more efficient to clear
3857 the memory and then set the nonzero elements. */
3858 cleared = true;
3859 else
3860 cleared = false;
3862 /* If there are "lots" of initialized elements, and all of them
3863 are valid address constants, then the entire initializer can
3864 be dropped to memory, and then memcpy'd out. Don't do this
3865 for sparse arrays, though, as it's more efficient to follow
3866 the standard CONSTRUCTOR behavior of memset followed by
3867 individual element initialization. Also don't do this for small
3868 all-zero initializers (which aren't big enough to merit
3869 clearing), and don't try to make bitwise copies of
3870 TREE_ADDRESSABLE types. */
3871 if (valid_const_initializer
3872 && !(cleared || num_nonzero_elements == 0)
3873 && !TREE_ADDRESSABLE (type))
3875 HOST_WIDE_INT size = int_size_in_bytes (type);
3876 unsigned int align;
3878 /* ??? We can still get unbounded array types, at least
3879 from the C++ front end. This seems wrong, but attempt
3880 to work around it for now. */
3881 if (size < 0)
3883 size = int_size_in_bytes (TREE_TYPE (object));
3884 if (size >= 0)
3885 TREE_TYPE (ctor) = type = TREE_TYPE (object);
3888 /* Find the maximum alignment we can assume for the object. */
3889 /* ??? Make use of DECL_OFFSET_ALIGN. */
3890 if (DECL_P (object))
3891 align = DECL_ALIGN (object);
3892 else
3893 align = TYPE_ALIGN (type);
3895 if (size > 0
3896 && num_nonzero_elements > 1
3897 && !can_move_by_pieces (size, align))
3899 if (notify_temp_creation)
3900 return GS_ERROR;
3902 walk_tree (&ctor, force_labels_r, NULL, NULL);
3903 ctor = tree_output_constant_def (ctor);
3904 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
3905 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
3906 TREE_OPERAND (*expr_p, 1) = ctor;
3908 /* This is no longer an assignment of a CONSTRUCTOR, but
3909 we still may have processing to do on the LHS. So
3910 pretend we didn't do anything here to let that happen. */
3911 return GS_UNHANDLED;
3915 /* If the target is volatile, we have non-zero elements and more than
3916 one field to assign, initialize the target from a temporary. */
3917 if (TREE_THIS_VOLATILE (object)
3918 && !TREE_ADDRESSABLE (type)
3919 && num_nonzero_elements > 0
3920 && VEC_length (constructor_elt, elts) > 1)
3922 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
3923 TREE_OPERAND (*expr_p, 0) = temp;
3924 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
3925 *expr_p,
3926 build2 (MODIFY_EXPR, void_type_node,
3927 object, temp));
3928 return GS_OK;
3931 if (notify_temp_creation)
3932 return GS_OK;
3934 /* If there are nonzero elements and if needed, pre-evaluate to capture
3935 elements overlapping with the lhs into temporaries. We must do this
3936 before clearing to fetch the values before they are zeroed-out. */
3937 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
3939 preeval_data.lhs_base_decl = get_base_address (object);
3940 if (!DECL_P (preeval_data.lhs_base_decl))
3941 preeval_data.lhs_base_decl = NULL;
3942 preeval_data.lhs_alias_set = get_alias_set (object);
3944 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
3945 pre_p, post_p, &preeval_data);
3948 if (cleared)
3950 /* Zap the CONSTRUCTOR element list, which simplifies this case.
3951 Note that we still have to gimplify, in order to handle the
3952 case of variable sized types. Avoid shared tree structures. */
3953 CONSTRUCTOR_ELTS (ctor) = NULL;
3954 TREE_SIDE_EFFECTS (ctor) = 0;
3955 object = unshare_expr (object);
3956 gimplify_stmt (expr_p, pre_p);
3959 /* If we have not block cleared the object, or if there are nonzero
3960 elements in the constructor, add assignments to the individual
3961 scalar fields of the object. */
3962 if (!cleared || num_nonzero_elements > 0)
3963 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
3965 *expr_p = NULL_TREE;
3967 break;
3969 case COMPLEX_TYPE:
3971 tree r, i;
3973 if (notify_temp_creation)
3974 return GS_OK;
3976 /* Extract the real and imaginary parts out of the ctor. */
3977 gcc_assert (VEC_length (constructor_elt, elts) == 2);
3978 r = VEC_index (constructor_elt, elts, 0)->value;
3979 i = VEC_index (constructor_elt, elts, 1)->value;
3980 if (r == NULL || i == NULL)
3982 tree zero = build_zero_cst (TREE_TYPE (type));
3983 if (r == NULL)
3984 r = zero;
3985 if (i == NULL)
3986 i = zero;
3989 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3990 represent creation of a complex value. */
3991 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3993 ctor = build_complex (type, r, i);
3994 TREE_OPERAND (*expr_p, 1) = ctor;
3996 else
3998 ctor = build2 (COMPLEX_EXPR, type, r, i);
3999 TREE_OPERAND (*expr_p, 1) = ctor;
4000 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
4001 pre_p,
4002 post_p,
4003 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
4004 fb_rvalue);
4007 break;
4009 case VECTOR_TYPE:
4011 unsigned HOST_WIDE_INT ix;
4012 constructor_elt *ce;
4014 if (notify_temp_creation)
4015 return GS_OK;
4017 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4018 if (TREE_CONSTANT (ctor))
4020 bool constant_p = true;
4021 tree value;
4023 /* Even when ctor is constant, it might contain non-*_CST
4024 elements, such as addresses or trapping values like
4025 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4026 in VECTOR_CST nodes. */
4027 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
4028 if (!CONSTANT_CLASS_P (value))
4030 constant_p = false;
4031 break;
4034 if (constant_p)
4036 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
4037 break;
4040 /* Don't reduce an initializer constant even if we can't
4041 make a VECTOR_CST. It won't do anything for us, and it'll
4042 prevent us from representing it as a single constant. */
4043 if (initializer_constant_valid_p (ctor, type))
4044 break;
4046 TREE_CONSTANT (ctor) = 0;
4049 /* Vector types use CONSTRUCTOR all the way through gimple
4050 compilation as a general initializer. */
4051 FOR_EACH_VEC_ELT (constructor_elt, elts, ix, ce)
4053 enum gimplify_status tret;
4054 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
4055 fb_rvalue);
4056 if (tret == GS_ERROR)
4057 ret = GS_ERROR;
4059 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
4060 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4062 break;
4064 default:
4065 /* So how did we get a CONSTRUCTOR for a scalar type? */
4066 gcc_unreachable ();
4069 if (ret == GS_ERROR)
4070 return GS_ERROR;
4071 else if (want_value)
4073 *expr_p = object;
4074 return GS_OK;
4076 else
4078 /* If we have gimplified both sides of the initializer but have
4079 not emitted an assignment, do so now. */
4080 if (*expr_p)
4082 tree lhs = TREE_OPERAND (*expr_p, 0);
4083 tree rhs = TREE_OPERAND (*expr_p, 1);
4084 gimple init = gimple_build_assign (lhs, rhs);
4085 gimplify_seq_add_stmt (pre_p, init);
4086 *expr_p = NULL;
4089 return GS_ALL_DONE;
4093 /* Given a pointer value OP0, return a simplified version of an
4094 indirection through OP0, or NULL_TREE if no simplification is
4095 possible. Note that the resulting type may be different from
4096 the type pointed to in the sense that it is still compatible
4097 from the langhooks point of view. */
4099 tree
4100 gimple_fold_indirect_ref (tree t)
4102 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4103 tree sub = t;
4104 tree subtype;
4106 STRIP_NOPS (sub);
4107 subtype = TREE_TYPE (sub);
4108 if (!POINTER_TYPE_P (subtype))
4109 return NULL_TREE;
4111 if (TREE_CODE (sub) == ADDR_EXPR)
4113 tree op = TREE_OPERAND (sub, 0);
4114 tree optype = TREE_TYPE (op);
4115 /* *&p => p */
4116 if (useless_type_conversion_p (type, optype))
4117 return op;
4119 /* *(foo *)&fooarray => fooarray[0] */
4120 if (TREE_CODE (optype) == ARRAY_TYPE
4121 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4122 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4124 tree type_domain = TYPE_DOMAIN (optype);
4125 tree min_val = size_zero_node;
4126 if (type_domain && TYPE_MIN_VALUE (type_domain))
4127 min_val = TYPE_MIN_VALUE (type_domain);
4128 if (TREE_CODE (min_val) == INTEGER_CST)
4129 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4131 /* *(foo *)&complexfoo => __real__ complexfoo */
4132 else if (TREE_CODE (optype) == COMPLEX_TYPE
4133 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4134 return fold_build1 (REALPART_EXPR, type, op);
4135 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4136 else if (TREE_CODE (optype) == VECTOR_TYPE
4137 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4139 tree part_width = TYPE_SIZE (type);
4140 tree index = bitsize_int (0);
4141 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4145 /* *(p + CST) -> ... */
4146 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4147 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4149 tree addr = TREE_OPERAND (sub, 0);
4150 tree off = TREE_OPERAND (sub, 1);
4151 tree addrtype;
4153 STRIP_NOPS (addr);
4154 addrtype = TREE_TYPE (addr);
4156 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4157 if (TREE_CODE (addr) == ADDR_EXPR
4158 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4159 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4160 && host_integerp (off, 1))
4162 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4163 tree part_width = TYPE_SIZE (type);
4164 unsigned HOST_WIDE_INT part_widthi
4165 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4166 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4167 tree index = bitsize_int (indexi);
4168 if (offset / part_widthi
4169 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4170 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4171 part_width, index);
4174 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4175 if (TREE_CODE (addr) == ADDR_EXPR
4176 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4177 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4179 tree size = TYPE_SIZE_UNIT (type);
4180 if (tree_int_cst_equal (size, off))
4181 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4184 /* *(p + CST) -> MEM_REF <p, CST>. */
4185 if (TREE_CODE (addr) != ADDR_EXPR
4186 || DECL_P (TREE_OPERAND (addr, 0)))
4187 return fold_build2 (MEM_REF, type,
4188 addr,
4189 build_int_cst_wide (ptype,
4190 TREE_INT_CST_LOW (off),
4191 TREE_INT_CST_HIGH (off)));
4194 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4195 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4196 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4197 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4199 tree type_domain;
4200 tree min_val = size_zero_node;
4201 tree osub = sub;
4202 sub = gimple_fold_indirect_ref (sub);
4203 if (! sub)
4204 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4205 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4206 if (type_domain && TYPE_MIN_VALUE (type_domain))
4207 min_val = TYPE_MIN_VALUE (type_domain);
4208 if (TREE_CODE (min_val) == INTEGER_CST)
4209 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4212 return NULL_TREE;
4215 /* Given a pointer value OP0, return a simplified version of an
4216 indirection through OP0, or NULL_TREE if no simplification is
4217 possible. This may only be applied to a rhs of an expression.
4218 Note that the resulting type may be different from the type pointed
4219 to in the sense that it is still compatible from the langhooks
4220 point of view. */
4222 static tree
4223 gimple_fold_indirect_ref_rhs (tree t)
4225 return gimple_fold_indirect_ref (t);
4228 /* Subroutine of gimplify_modify_expr to do simplifications of
4229 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4230 something changes. */
4232 static enum gimplify_status
4233 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4234 gimple_seq *pre_p, gimple_seq *post_p,
4235 bool want_value)
4237 enum gimplify_status ret = GS_UNHANDLED;
4238 bool changed;
4242 changed = false;
4243 switch (TREE_CODE (*from_p))
4245 case VAR_DECL:
4246 /* If we're assigning from a read-only variable initialized with
4247 a constructor, do the direct assignment from the constructor,
4248 but only if neither source nor target are volatile since this
4249 latter assignment might end up being done on a per-field basis. */
4250 if (DECL_INITIAL (*from_p)
4251 && TREE_READONLY (*from_p)
4252 && !TREE_THIS_VOLATILE (*from_p)
4253 && !TREE_THIS_VOLATILE (*to_p)
4254 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4256 tree old_from = *from_p;
4257 enum gimplify_status subret;
4259 /* Move the constructor into the RHS. */
4260 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4262 /* Let's see if gimplify_init_constructor will need to put
4263 it in memory. */
4264 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4265 false, true);
4266 if (subret == GS_ERROR)
4268 /* If so, revert the change. */
4269 *from_p = old_from;
4271 else
4273 ret = GS_OK;
4274 changed = true;
4277 break;
4278 case INDIRECT_REF:
4280 /* If we have code like
4282 *(const A*)(A*)&x
4284 where the type of "x" is a (possibly cv-qualified variant
4285 of "A"), treat the entire expression as identical to "x".
4286 This kind of code arises in C++ when an object is bound
4287 to a const reference, and if "x" is a TARGET_EXPR we want
4288 to take advantage of the optimization below. */
4289 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4290 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4291 if (t)
4293 if (TREE_THIS_VOLATILE (t) != volatile_p)
4295 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4296 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4297 build_fold_addr_expr (t));
4298 if (REFERENCE_CLASS_P (t))
4299 TREE_THIS_VOLATILE (t) = volatile_p;
4301 *from_p = t;
4302 ret = GS_OK;
4303 changed = true;
4305 break;
4308 case TARGET_EXPR:
4310 /* If we are initializing something from a TARGET_EXPR, strip the
4311 TARGET_EXPR and initialize it directly, if possible. This can't
4312 be done if the initializer is void, since that implies that the
4313 temporary is set in some non-trivial way.
4315 ??? What about code that pulls out the temp and uses it
4316 elsewhere? I think that such code never uses the TARGET_EXPR as
4317 an initializer. If I'm wrong, we'll die because the temp won't
4318 have any RTL. In that case, I guess we'll need to replace
4319 references somehow. */
4320 tree init = TARGET_EXPR_INITIAL (*from_p);
4322 if (init
4323 && !VOID_TYPE_P (TREE_TYPE (init)))
4325 *from_p = init;
4326 ret = GS_OK;
4327 changed = true;
4330 break;
4332 case COMPOUND_EXPR:
4333 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4334 caught. */
4335 gimplify_compound_expr (from_p, pre_p, true);
4336 ret = GS_OK;
4337 changed = true;
4338 break;
4340 case CONSTRUCTOR:
4341 /* If we already made some changes, let the front end have a
4342 crack at this before we break it down. */
4343 if (ret != GS_UNHANDLED)
4344 break;
4345 /* If we're initializing from a CONSTRUCTOR, break this into
4346 individual MODIFY_EXPRs. */
4347 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4348 false);
4350 case COND_EXPR:
4351 /* If we're assigning to a non-register type, push the assignment
4352 down into the branches. This is mandatory for ADDRESSABLE types,
4353 since we cannot generate temporaries for such, but it saves a
4354 copy in other cases as well. */
4355 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4357 /* This code should mirror the code in gimplify_cond_expr. */
4358 enum tree_code code = TREE_CODE (*expr_p);
4359 tree cond = *from_p;
4360 tree result = *to_p;
4362 ret = gimplify_expr (&result, pre_p, post_p,
4363 is_gimple_lvalue, fb_lvalue);
4364 if (ret != GS_ERROR)
4365 ret = GS_OK;
4367 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4368 TREE_OPERAND (cond, 1)
4369 = build2 (code, void_type_node, result,
4370 TREE_OPERAND (cond, 1));
4371 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4372 TREE_OPERAND (cond, 2)
4373 = build2 (code, void_type_node, unshare_expr (result),
4374 TREE_OPERAND (cond, 2));
4376 TREE_TYPE (cond) = void_type_node;
4377 recalculate_side_effects (cond);
4379 if (want_value)
4381 gimplify_and_add (cond, pre_p);
4382 *expr_p = unshare_expr (result);
4384 else
4385 *expr_p = cond;
4386 return ret;
4388 break;
4390 case CALL_EXPR:
4391 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4392 return slot so that we don't generate a temporary. */
4393 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4394 && aggregate_value_p (*from_p, *from_p))
4396 bool use_target;
4398 if (!(rhs_predicate_for (*to_p))(*from_p))
4399 /* If we need a temporary, *to_p isn't accurate. */
4400 use_target = false;
4401 /* It's OK to use the return slot directly unless it's an NRV. */
4402 else if (TREE_CODE (*to_p) == RESULT_DECL
4403 && DECL_NAME (*to_p) == NULL_TREE
4404 && needs_to_live_in_memory (*to_p))
4405 use_target = true;
4406 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4407 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4408 /* Don't force regs into memory. */
4409 use_target = false;
4410 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4411 /* It's OK to use the target directly if it's being
4412 initialized. */
4413 use_target = true;
4414 else if (!is_gimple_non_addressable (*to_p))
4415 /* Don't use the original target if it's already addressable;
4416 if its address escapes, and the called function uses the
4417 NRV optimization, a conforming program could see *to_p
4418 change before the called function returns; see c++/19317.
4419 When optimizing, the return_slot pass marks more functions
4420 as safe after we have escape info. */
4421 use_target = false;
4422 else
4423 use_target = true;
4425 if (use_target)
4427 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4428 mark_addressable (*to_p);
4431 break;
4433 case WITH_SIZE_EXPR:
4434 /* Likewise for calls that return an aggregate of non-constant size,
4435 since we would not be able to generate a temporary at all. */
4436 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4438 *from_p = TREE_OPERAND (*from_p, 0);
4439 /* We don't change ret in this case because the
4440 WITH_SIZE_EXPR might have been added in
4441 gimplify_modify_expr, so returning GS_OK would lead to an
4442 infinite loop. */
4443 changed = true;
4445 break;
4447 /* If we're initializing from a container, push the initialization
4448 inside it. */
4449 case CLEANUP_POINT_EXPR:
4450 case BIND_EXPR:
4451 case STATEMENT_LIST:
4453 tree wrap = *from_p;
4454 tree t;
4456 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4457 fb_lvalue);
4458 if (ret != GS_ERROR)
4459 ret = GS_OK;
4461 t = voidify_wrapper_expr (wrap, *expr_p);
4462 gcc_assert (t == *expr_p);
4464 if (want_value)
4466 gimplify_and_add (wrap, pre_p);
4467 *expr_p = unshare_expr (*to_p);
4469 else
4470 *expr_p = wrap;
4471 return GS_OK;
4474 case COMPOUND_LITERAL_EXPR:
4476 tree complit = TREE_OPERAND (*expr_p, 1);
4477 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4478 tree decl = DECL_EXPR_DECL (decl_s);
4479 tree init = DECL_INITIAL (decl);
4481 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4482 into struct T x = { 0, 1, 2 } if the address of the
4483 compound literal has never been taken. */
4484 if (!TREE_ADDRESSABLE (complit)
4485 && !TREE_ADDRESSABLE (decl)
4486 && init)
4488 *expr_p = copy_node (*expr_p);
4489 TREE_OPERAND (*expr_p, 1) = init;
4490 return GS_OK;
4494 default:
4495 break;
4498 while (changed);
4500 return ret;
4503 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4504 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4505 DECL_GIMPLE_REG_P set.
4507 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4508 other, unmodified part of the complex object just before the total store.
4509 As a consequence, if the object is still uninitialized, an undefined value
4510 will be loaded into a register, which may result in a spurious exception
4511 if the register is floating-point and the value happens to be a signaling
4512 NaN for example. Then the fully-fledged complex operations lowering pass
4513 followed by a DCE pass are necessary in order to fix things up. */
4515 static enum gimplify_status
4516 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4517 bool want_value)
4519 enum tree_code code, ocode;
4520 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4522 lhs = TREE_OPERAND (*expr_p, 0);
4523 rhs = TREE_OPERAND (*expr_p, 1);
4524 code = TREE_CODE (lhs);
4525 lhs = TREE_OPERAND (lhs, 0);
4527 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4528 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4529 TREE_NO_WARNING (other) = 1;
4530 other = get_formal_tmp_var (other, pre_p);
4532 realpart = code == REALPART_EXPR ? rhs : other;
4533 imagpart = code == REALPART_EXPR ? other : rhs;
4535 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4536 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4537 else
4538 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4540 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4541 *expr_p = (want_value) ? rhs : NULL_TREE;
4543 return GS_ALL_DONE;
4546 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4548 modify_expr
4549 : varname '=' rhs
4550 | '*' ID '=' rhs
4552 PRE_P points to the list where side effects that must happen before
4553 *EXPR_P should be stored.
4555 POST_P points to the list where side effects that must happen after
4556 *EXPR_P should be stored.
4558 WANT_VALUE is nonzero iff we want to use the value of this expression
4559 in another expression. */
4561 static enum gimplify_status
4562 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4563 bool want_value)
4565 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4566 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4567 enum gimplify_status ret = GS_UNHANDLED;
4568 gimple assign;
4569 location_t loc = EXPR_LOCATION (*expr_p);
4571 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4572 || TREE_CODE (*expr_p) == INIT_EXPR);
4574 /* Trying to simplify a clobber using normal logic doesn't work,
4575 so handle it here. */
4576 if (TREE_CLOBBER_P (*from_p))
4578 gcc_assert (!want_value && TREE_CODE (*to_p) == VAR_DECL);
4579 gimplify_seq_add_stmt (pre_p, gimple_build_assign (*to_p, *from_p));
4580 *expr_p = NULL;
4581 return GS_ALL_DONE;
4584 /* Insert pointer conversions required by the middle-end that are not
4585 required by the frontend. This fixes middle-end type checking for
4586 for example gcc.dg/redecl-6.c. */
4587 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4589 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4590 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4591 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4594 /* See if any simplifications can be done based on what the RHS is. */
4595 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4596 want_value);
4597 if (ret != GS_UNHANDLED)
4598 return ret;
4600 /* For zero sized types only gimplify the left hand side and right hand
4601 side as statements and throw away the assignment. Do this after
4602 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4603 types properly. */
4604 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4606 gimplify_stmt (from_p, pre_p);
4607 gimplify_stmt (to_p, pre_p);
4608 *expr_p = NULL_TREE;
4609 return GS_ALL_DONE;
4612 /* If the value being copied is of variable width, compute the length
4613 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4614 before gimplifying any of the operands so that we can resolve any
4615 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4616 the size of the expression to be copied, not of the destination, so
4617 that is what we must do here. */
4618 maybe_with_size_expr (from_p);
4620 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4621 if (ret == GS_ERROR)
4622 return ret;
4624 /* As a special case, we have to temporarily allow for assignments
4625 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4626 a toplevel statement, when gimplifying the GENERIC expression
4627 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4628 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4630 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4631 prevent gimplify_expr from trying to create a new temporary for
4632 foo's LHS, we tell it that it should only gimplify until it
4633 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4634 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4635 and all we need to do here is set 'a' to be its LHS. */
4636 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4637 fb_rvalue);
4638 if (ret == GS_ERROR)
4639 return ret;
4641 /* Now see if the above changed *from_p to something we handle specially. */
4642 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4643 want_value);
4644 if (ret != GS_UNHANDLED)
4645 return ret;
4647 /* If we've got a variable sized assignment between two lvalues (i.e. does
4648 not involve a call), then we can make things a bit more straightforward
4649 by converting the assignment to memcpy or memset. */
4650 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4652 tree from = TREE_OPERAND (*from_p, 0);
4653 tree size = TREE_OPERAND (*from_p, 1);
4655 if (TREE_CODE (from) == CONSTRUCTOR)
4656 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4658 if (is_gimple_addressable (from))
4660 *from_p = from;
4661 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4662 pre_p);
4666 /* Transform partial stores to non-addressable complex variables into
4667 total stores. This allows us to use real instead of virtual operands
4668 for these variables, which improves optimization. */
4669 if ((TREE_CODE (*to_p) == REALPART_EXPR
4670 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4671 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4672 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4674 /* Try to alleviate the effects of the gimplification creating artificial
4675 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4676 if (!gimplify_ctxp->into_ssa
4677 && TREE_CODE (*from_p) == VAR_DECL
4678 && DECL_IGNORED_P (*from_p)
4679 && DECL_P (*to_p)
4680 && !DECL_IGNORED_P (*to_p))
4682 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4683 DECL_NAME (*from_p)
4684 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4685 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
4686 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4689 if (want_value && TREE_THIS_VOLATILE (*to_p))
4690 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4692 if (TREE_CODE (*from_p) == CALL_EXPR)
4694 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4695 instead of a GIMPLE_ASSIGN. */
4696 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4697 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4698 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4699 assign = gimple_build_call_from_tree (*from_p);
4700 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4701 if (!gimple_call_noreturn_p (assign))
4702 gimple_call_set_lhs (assign, *to_p);
4704 else
4706 assign = gimple_build_assign (*to_p, *from_p);
4707 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4710 gimplify_seq_add_stmt (pre_p, assign);
4712 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4714 /* If we've somehow already got an SSA_NAME on the LHS, then
4715 we've probably modified it twice. Not good. */
4716 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
4717 *to_p = make_ssa_name (*to_p, assign);
4718 gimple_set_lhs (assign, *to_p);
4721 if (want_value)
4723 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4724 return GS_OK;
4726 else
4727 *expr_p = NULL;
4729 return GS_ALL_DONE;
4732 /* Gimplify a comparison between two variable-sized objects. Do this
4733 with a call to BUILT_IN_MEMCMP. */
4735 static enum gimplify_status
4736 gimplify_variable_sized_compare (tree *expr_p)
4738 location_t loc = EXPR_LOCATION (*expr_p);
4739 tree op0 = TREE_OPERAND (*expr_p, 0);
4740 tree op1 = TREE_OPERAND (*expr_p, 1);
4741 tree t, arg, dest, src, expr;
4743 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4744 arg = unshare_expr (arg);
4745 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4746 src = build_fold_addr_expr_loc (loc, op1);
4747 dest = build_fold_addr_expr_loc (loc, op0);
4748 t = builtin_decl_implicit (BUILT_IN_MEMCMP);
4749 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4751 expr
4752 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4753 SET_EXPR_LOCATION (expr, loc);
4754 *expr_p = expr;
4756 return GS_OK;
4759 /* Gimplify a comparison between two aggregate objects of integral scalar
4760 mode as a comparison between the bitwise equivalent scalar values. */
4762 static enum gimplify_status
4763 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4765 location_t loc = EXPR_LOCATION (*expr_p);
4766 tree op0 = TREE_OPERAND (*expr_p, 0);
4767 tree op1 = TREE_OPERAND (*expr_p, 1);
4769 tree type = TREE_TYPE (op0);
4770 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
4772 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
4773 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
4775 *expr_p
4776 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
4778 return GS_OK;
4781 /* Gimplify an expression sequence. This function gimplifies each
4782 expression and rewrites the original expression with the last
4783 expression of the sequence in GIMPLE form.
4785 PRE_P points to the list where the side effects for all the
4786 expressions in the sequence will be emitted.
4788 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
4790 static enum gimplify_status
4791 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
4793 tree t = *expr_p;
4797 tree *sub_p = &TREE_OPERAND (t, 0);
4799 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
4800 gimplify_compound_expr (sub_p, pre_p, false);
4801 else
4802 gimplify_stmt (sub_p, pre_p);
4804 t = TREE_OPERAND (t, 1);
4806 while (TREE_CODE (t) == COMPOUND_EXPR);
4808 *expr_p = t;
4809 if (want_value)
4810 return GS_OK;
4811 else
4813 gimplify_stmt (expr_p, pre_p);
4814 return GS_ALL_DONE;
4818 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
4819 gimplify. After gimplification, EXPR_P will point to a new temporary
4820 that holds the original value of the SAVE_EXPR node.
4822 PRE_P points to the list where side effects that must happen before
4823 *EXPR_P should be stored. */
4825 static enum gimplify_status
4826 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4828 enum gimplify_status ret = GS_ALL_DONE;
4829 tree val;
4831 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
4832 val = TREE_OPERAND (*expr_p, 0);
4834 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
4835 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
4837 /* The operand may be a void-valued expression such as SAVE_EXPRs
4838 generated by the Java frontend for class initialization. It is
4839 being executed only for its side-effects. */
4840 if (TREE_TYPE (val) == void_type_node)
4842 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4843 is_gimple_stmt, fb_none);
4844 val = NULL;
4846 else
4847 val = get_initialized_tmp_var (val, pre_p, post_p);
4849 TREE_OPERAND (*expr_p, 0) = val;
4850 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
4853 *expr_p = val;
4855 return ret;
4858 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
4860 unary_expr
4861 : ...
4862 | '&' varname
4865 PRE_P points to the list where side effects that must happen before
4866 *EXPR_P should be stored.
4868 POST_P points to the list where side effects that must happen after
4869 *EXPR_P should be stored. */
4871 static enum gimplify_status
4872 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4874 tree expr = *expr_p;
4875 tree op0 = TREE_OPERAND (expr, 0);
4876 enum gimplify_status ret;
4877 location_t loc = EXPR_LOCATION (*expr_p);
4879 switch (TREE_CODE (op0))
4881 case INDIRECT_REF:
4882 do_indirect_ref:
4883 /* Check if we are dealing with an expression of the form '&*ptr'.
4884 While the front end folds away '&*ptr' into 'ptr', these
4885 expressions may be generated internally by the compiler (e.g.,
4886 builtins like __builtin_va_end). */
4887 /* Caution: the silent array decomposition semantics we allow for
4888 ADDR_EXPR means we can't always discard the pair. */
4889 /* Gimplification of the ADDR_EXPR operand may drop
4890 cv-qualification conversions, so make sure we add them if
4891 needed. */
4893 tree op00 = TREE_OPERAND (op0, 0);
4894 tree t_expr = TREE_TYPE (expr);
4895 tree t_op00 = TREE_TYPE (op00);
4897 if (!useless_type_conversion_p (t_expr, t_op00))
4898 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
4899 *expr_p = op00;
4900 ret = GS_OK;
4902 break;
4904 case VIEW_CONVERT_EXPR:
4905 /* Take the address of our operand and then convert it to the type of
4906 this ADDR_EXPR.
4908 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
4909 all clear. The impact of this transformation is even less clear. */
4911 /* If the operand is a useless conversion, look through it. Doing so
4912 guarantees that the ADDR_EXPR and its operand will remain of the
4913 same type. */
4914 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
4915 op0 = TREE_OPERAND (op0, 0);
4917 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
4918 build_fold_addr_expr_loc (loc,
4919 TREE_OPERAND (op0, 0)));
4920 ret = GS_OK;
4921 break;
4923 default:
4924 /* We use fb_either here because the C frontend sometimes takes
4925 the address of a call that returns a struct; see
4926 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
4927 the implied temporary explicit. */
4929 /* Make the operand addressable. */
4930 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
4931 is_gimple_addressable, fb_either);
4932 if (ret == GS_ERROR)
4933 break;
4935 /* Then mark it. Beware that it may not be possible to do so directly
4936 if a temporary has been created by the gimplification. */
4937 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
4939 op0 = TREE_OPERAND (expr, 0);
4941 /* For various reasons, the gimplification of the expression
4942 may have made a new INDIRECT_REF. */
4943 if (TREE_CODE (op0) == INDIRECT_REF)
4944 goto do_indirect_ref;
4946 mark_addressable (TREE_OPERAND (expr, 0));
4948 /* The FEs may end up building ADDR_EXPRs early on a decl with
4949 an incomplete type. Re-build ADDR_EXPRs in canonical form
4950 here. */
4951 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
4952 *expr_p = build_fold_addr_expr (op0);
4954 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
4955 recompute_tree_invariant_for_addr_expr (*expr_p);
4957 /* If we re-built the ADDR_EXPR add a conversion to the original type
4958 if required. */
4959 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
4960 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
4962 break;
4965 return ret;
4968 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
4969 value; output operands should be a gimple lvalue. */
4971 static enum gimplify_status
4972 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4974 tree expr;
4975 int noutputs;
4976 const char **oconstraints;
4977 int i;
4978 tree link;
4979 const char *constraint;
4980 bool allows_mem, allows_reg, is_inout;
4981 enum gimplify_status ret, tret;
4982 gimple stmt;
4983 VEC(tree, gc) *inputs;
4984 VEC(tree, gc) *outputs;
4985 VEC(tree, gc) *clobbers;
4986 VEC(tree, gc) *labels;
4987 tree link_next;
4989 expr = *expr_p;
4990 noutputs = list_length (ASM_OUTPUTS (expr));
4991 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
4993 inputs = outputs = clobbers = labels = NULL;
4995 ret = GS_ALL_DONE;
4996 link_next = NULL_TREE;
4997 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
4999 bool ok;
5000 size_t constraint_len;
5002 link_next = TREE_CHAIN (link);
5004 oconstraints[i]
5005 = constraint
5006 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5007 constraint_len = strlen (constraint);
5008 if (constraint_len == 0)
5009 continue;
5011 ok = parse_output_constraint (&constraint, i, 0, 0,
5012 &allows_mem, &allows_reg, &is_inout);
5013 if (!ok)
5015 ret = GS_ERROR;
5016 is_inout = false;
5019 if (!allows_reg && allows_mem)
5020 mark_addressable (TREE_VALUE (link));
5022 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5023 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
5024 fb_lvalue | fb_mayfail);
5025 if (tret == GS_ERROR)
5027 error ("invalid lvalue in asm output %d", i);
5028 ret = tret;
5031 VEC_safe_push (tree, gc, outputs, link);
5032 TREE_CHAIN (link) = NULL_TREE;
5034 if (is_inout)
5036 /* An input/output operand. To give the optimizers more
5037 flexibility, split it into separate input and output
5038 operands. */
5039 tree input;
5040 char buf[10];
5042 /* Turn the in/out constraint into an output constraint. */
5043 char *p = xstrdup (constraint);
5044 p[0] = '=';
5045 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
5047 /* And add a matching input constraint. */
5048 if (allows_reg)
5050 sprintf (buf, "%d", i);
5052 /* If there are multiple alternatives in the constraint,
5053 handle each of them individually. Those that allow register
5054 will be replaced with operand number, the others will stay
5055 unchanged. */
5056 if (strchr (p, ',') != NULL)
5058 size_t len = 0, buflen = strlen (buf);
5059 char *beg, *end, *str, *dst;
5061 for (beg = p + 1;;)
5063 end = strchr (beg, ',');
5064 if (end == NULL)
5065 end = strchr (beg, '\0');
5066 if ((size_t) (end - beg) < buflen)
5067 len += buflen + 1;
5068 else
5069 len += end - beg + 1;
5070 if (*end)
5071 beg = end + 1;
5072 else
5073 break;
5076 str = (char *) alloca (len);
5077 for (beg = p + 1, dst = str;;)
5079 const char *tem;
5080 bool mem_p, reg_p, inout_p;
5082 end = strchr (beg, ',');
5083 if (end)
5084 *end = '\0';
5085 beg[-1] = '=';
5086 tem = beg - 1;
5087 parse_output_constraint (&tem, i, 0, 0,
5088 &mem_p, &reg_p, &inout_p);
5089 if (dst != str)
5090 *dst++ = ',';
5091 if (reg_p)
5093 memcpy (dst, buf, buflen);
5094 dst += buflen;
5096 else
5098 if (end)
5099 len = end - beg;
5100 else
5101 len = strlen (beg);
5102 memcpy (dst, beg, len);
5103 dst += len;
5105 if (end)
5106 beg = end + 1;
5107 else
5108 break;
5110 *dst = '\0';
5111 input = build_string (dst - str, str);
5113 else
5114 input = build_string (strlen (buf), buf);
5116 else
5117 input = build_string (constraint_len - 1, constraint + 1);
5119 free (p);
5121 input = build_tree_list (build_tree_list (NULL_TREE, input),
5122 unshare_expr (TREE_VALUE (link)));
5123 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5127 link_next = NULL_TREE;
5128 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5130 link_next = TREE_CHAIN (link);
5131 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5132 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5133 oconstraints, &allows_mem, &allows_reg);
5135 /* If we can't make copies, we can only accept memory. */
5136 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5138 if (allows_mem)
5139 allows_reg = 0;
5140 else
5142 error ("impossible constraint in %<asm%>");
5143 error ("non-memory input %d must stay in memory", i);
5144 return GS_ERROR;
5148 /* If the operand is a memory input, it should be an lvalue. */
5149 if (!allows_reg && allows_mem)
5151 tree inputv = TREE_VALUE (link);
5152 STRIP_NOPS (inputv);
5153 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5154 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5155 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5156 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5157 TREE_VALUE (link) = error_mark_node;
5158 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5159 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5160 mark_addressable (TREE_VALUE (link));
5161 if (tret == GS_ERROR)
5163 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5164 input_location = EXPR_LOCATION (TREE_VALUE (link));
5165 error ("memory input %d is not directly addressable", i);
5166 ret = tret;
5169 else
5171 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5172 is_gimple_asm_val, fb_rvalue);
5173 if (tret == GS_ERROR)
5174 ret = tret;
5177 TREE_CHAIN (link) = NULL_TREE;
5178 VEC_safe_push (tree, gc, inputs, link);
5181 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5182 VEC_safe_push (tree, gc, clobbers, link);
5184 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5185 VEC_safe_push (tree, gc, labels, link);
5187 /* Do not add ASMs with errors to the gimple IL stream. */
5188 if (ret != GS_ERROR)
5190 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5191 inputs, outputs, clobbers, labels);
5193 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5194 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5196 gimplify_seq_add_stmt (pre_p, stmt);
5199 return ret;
5202 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5203 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5204 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5205 return to this function.
5207 FIXME should we complexify the prequeue handling instead? Or use flags
5208 for all the cleanups and let the optimizer tighten them up? The current
5209 code seems pretty fragile; it will break on a cleanup within any
5210 non-conditional nesting. But any such nesting would be broken, anyway;
5211 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5212 and continues out of it. We can do that at the RTL level, though, so
5213 having an optimizer to tighten up try/finally regions would be a Good
5214 Thing. */
5216 static enum gimplify_status
5217 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5219 gimple_stmt_iterator iter;
5220 gimple_seq body_sequence = NULL;
5222 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5224 /* We only care about the number of conditions between the innermost
5225 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5226 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5227 int old_conds = gimplify_ctxp->conditions;
5228 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5229 gimplify_ctxp->conditions = 0;
5230 gimplify_ctxp->conditional_cleanups = NULL;
5232 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5234 gimplify_ctxp->conditions = old_conds;
5235 gimplify_ctxp->conditional_cleanups = old_cleanups;
5237 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5239 gimple wce = gsi_stmt (iter);
5241 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5243 if (gsi_one_before_end_p (iter))
5245 /* Note that gsi_insert_seq_before and gsi_remove do not
5246 scan operands, unlike some other sequence mutators. */
5247 if (!gimple_wce_cleanup_eh_only (wce))
5248 gsi_insert_seq_before_without_update (&iter,
5249 gimple_wce_cleanup (wce),
5250 GSI_SAME_STMT);
5251 gsi_remove (&iter, true);
5252 break;
5254 else
5256 gimple gtry;
5257 gimple_seq seq;
5258 enum gimple_try_flags kind;
5260 if (gimple_wce_cleanup_eh_only (wce))
5261 kind = GIMPLE_TRY_CATCH;
5262 else
5263 kind = GIMPLE_TRY_FINALLY;
5264 seq = gsi_split_seq_after (iter);
5266 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5267 /* Do not use gsi_replace here, as it may scan operands.
5268 We want to do a simple structural modification only. */
5269 *gsi_stmt_ptr (&iter) = gtry;
5270 iter = gsi_start (seq);
5273 else
5274 gsi_next (&iter);
5277 gimplify_seq_add_seq (pre_p, body_sequence);
5278 if (temp)
5280 *expr_p = temp;
5281 return GS_OK;
5283 else
5285 *expr_p = NULL;
5286 return GS_ALL_DONE;
5290 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5291 is the cleanup action required. EH_ONLY is true if the cleanup should
5292 only be executed if an exception is thrown, not on normal exit. */
5294 static void
5295 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5297 gimple wce;
5298 gimple_seq cleanup_stmts = NULL;
5300 /* Errors can result in improperly nested cleanups. Which results in
5301 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5302 if (seen_error ())
5303 return;
5305 if (gimple_conditional_context ())
5307 /* If we're in a conditional context, this is more complex. We only
5308 want to run the cleanup if we actually ran the initialization that
5309 necessitates it, but we want to run it after the end of the
5310 conditional context. So we wrap the try/finally around the
5311 condition and use a flag to determine whether or not to actually
5312 run the destructor. Thus
5314 test ? f(A()) : 0
5316 becomes (approximately)
5318 flag = 0;
5319 try {
5320 if (test) { A::A(temp); flag = 1; val = f(temp); }
5321 else { val = 0; }
5322 } finally {
5323 if (flag) A::~A(temp);
5327 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5328 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5329 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5331 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5332 gimplify_stmt (&cleanup, &cleanup_stmts);
5333 wce = gimple_build_wce (cleanup_stmts);
5335 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5336 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5337 gimplify_seq_add_stmt (pre_p, ftrue);
5339 /* Because of this manipulation, and the EH edges that jump
5340 threading cannot redirect, the temporary (VAR) will appear
5341 to be used uninitialized. Don't warn. */
5342 TREE_NO_WARNING (var) = 1;
5344 else
5346 gimplify_stmt (&cleanup, &cleanup_stmts);
5347 wce = gimple_build_wce (cleanup_stmts);
5348 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5349 gimplify_seq_add_stmt (pre_p, wce);
5353 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5355 static enum gimplify_status
5356 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5358 tree targ = *expr_p;
5359 tree temp = TARGET_EXPR_SLOT (targ);
5360 tree init = TARGET_EXPR_INITIAL (targ);
5361 enum gimplify_status ret;
5363 if (init)
5365 tree cleanup = NULL_TREE;
5367 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5368 to the temps list. Handle also variable length TARGET_EXPRs. */
5369 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5371 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5372 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5373 gimplify_vla_decl (temp, pre_p);
5375 else
5376 gimple_add_tmp_var (temp);
5378 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5379 expression is supposed to initialize the slot. */
5380 if (VOID_TYPE_P (TREE_TYPE (init)))
5381 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5382 else
5384 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5385 init = init_expr;
5386 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5387 init = NULL;
5388 ggc_free (init_expr);
5390 if (ret == GS_ERROR)
5392 /* PR c++/28266 Make sure this is expanded only once. */
5393 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5394 return GS_ERROR;
5396 if (init)
5397 gimplify_and_add (init, pre_p);
5399 /* If needed, push the cleanup for the temp. */
5400 if (TARGET_EXPR_CLEANUP (targ))
5402 if (CLEANUP_EH_ONLY (targ))
5403 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5404 CLEANUP_EH_ONLY (targ), pre_p);
5405 else
5406 cleanup = TARGET_EXPR_CLEANUP (targ);
5409 /* Add a clobber for the temporary going out of scope, like
5410 gimplify_bind_expr. */
5411 if (needs_to_live_in_memory (temp))
5413 tree clobber = build_constructor (TREE_TYPE (temp), NULL);
5414 TREE_THIS_VOLATILE (clobber) = true;
5415 clobber = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, clobber);
5416 if (cleanup)
5417 cleanup = build2 (COMPOUND_EXPR, void_type_node, cleanup,
5418 clobber);
5419 else
5420 cleanup = clobber;
5423 if (cleanup)
5424 gimple_push_cleanup (temp, cleanup, false, pre_p);
5426 /* Only expand this once. */
5427 TREE_OPERAND (targ, 3) = init;
5428 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5430 else
5431 /* We should have expanded this before. */
5432 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5434 *expr_p = temp;
5435 return GS_OK;
5438 /* Gimplification of expression trees. */
5440 /* Gimplify an expression which appears at statement context. The
5441 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5442 NULL, a new sequence is allocated.
5444 Return true if we actually added a statement to the queue. */
5446 bool
5447 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5449 gimple_seq_node last;
5451 if (!*seq_p)
5452 *seq_p = gimple_seq_alloc ();
5454 last = gimple_seq_last (*seq_p);
5455 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5456 return last != gimple_seq_last (*seq_p);
5459 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5460 to CTX. If entries already exist, force them to be some flavor of private.
5461 If there is no enclosing parallel, do nothing. */
5463 void
5464 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5466 splay_tree_node n;
5468 if (decl == NULL || !DECL_P (decl))
5469 return;
5473 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5474 if (n != NULL)
5476 if (n->value & GOVD_SHARED)
5477 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5478 else
5479 return;
5481 else if (ctx->region_type != ORT_WORKSHARE)
5482 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5484 ctx = ctx->outer_context;
5486 while (ctx);
5489 /* Similarly for each of the type sizes of TYPE. */
5491 static void
5492 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5494 if (type == NULL || type == error_mark_node)
5495 return;
5496 type = TYPE_MAIN_VARIANT (type);
5498 if (pointer_set_insert (ctx->privatized_types, type))
5499 return;
5501 switch (TREE_CODE (type))
5503 case INTEGER_TYPE:
5504 case ENUMERAL_TYPE:
5505 case BOOLEAN_TYPE:
5506 case REAL_TYPE:
5507 case FIXED_POINT_TYPE:
5508 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5509 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5510 break;
5512 case ARRAY_TYPE:
5513 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5514 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5515 break;
5517 case RECORD_TYPE:
5518 case UNION_TYPE:
5519 case QUAL_UNION_TYPE:
5521 tree field;
5522 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5523 if (TREE_CODE (field) == FIELD_DECL)
5525 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5526 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5529 break;
5531 case POINTER_TYPE:
5532 case REFERENCE_TYPE:
5533 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5534 break;
5536 default:
5537 break;
5540 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5541 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5542 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5545 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5547 static void
5548 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5550 splay_tree_node n;
5551 unsigned int nflags;
5552 tree t;
5554 if (error_operand_p (decl))
5555 return;
5557 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5558 there are constructors involved somewhere. */
5559 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5560 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5561 flags |= GOVD_SEEN;
5563 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5564 if (n != NULL)
5566 /* We shouldn't be re-adding the decl with the same data
5567 sharing class. */
5568 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5569 /* The only combination of data sharing classes we should see is
5570 FIRSTPRIVATE and LASTPRIVATE. */
5571 nflags = n->value | flags;
5572 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5573 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5574 n->value = nflags;
5575 return;
5578 /* When adding a variable-sized variable, we have to handle all sorts
5579 of additional bits of data: the pointer replacement variable, and
5580 the parameters of the type. */
5581 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5583 /* Add the pointer replacement variable as PRIVATE if the variable
5584 replacement is private, else FIRSTPRIVATE since we'll need the
5585 address of the original variable either for SHARED, or for the
5586 copy into or out of the context. */
5587 if (!(flags & GOVD_LOCAL))
5589 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5590 nflags |= flags & GOVD_SEEN;
5591 t = DECL_VALUE_EXPR (decl);
5592 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5593 t = TREE_OPERAND (t, 0);
5594 gcc_assert (DECL_P (t));
5595 omp_add_variable (ctx, t, nflags);
5598 /* Add all of the variable and type parameters (which should have
5599 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5600 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5601 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5602 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5604 /* The variable-sized variable itself is never SHARED, only some form
5605 of PRIVATE. The sharing would take place via the pointer variable
5606 which we remapped above. */
5607 if (flags & GOVD_SHARED)
5608 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5609 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5611 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5612 alloca statement we generate for the variable, so make sure it
5613 is available. This isn't automatically needed for the SHARED
5614 case, since we won't be allocating local storage then.
5615 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5616 in this case omp_notice_variable will be called later
5617 on when it is gimplified. */
5618 else if (! (flags & GOVD_LOCAL)
5619 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5620 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5622 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5624 gcc_assert ((flags & GOVD_LOCAL) == 0);
5625 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5627 /* Similar to the direct variable sized case above, we'll need the
5628 size of references being privatized. */
5629 if ((flags & GOVD_SHARED) == 0)
5631 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5632 if (TREE_CODE (t) != INTEGER_CST)
5633 omp_notice_variable (ctx, t, true);
5637 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5640 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5641 This just prints out diagnostics about threadprivate variable uses
5642 in untied tasks. If DECL2 is non-NULL, prevent this warning
5643 on that variable. */
5645 static bool
5646 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5647 tree decl2)
5649 splay_tree_node n;
5651 if (ctx->region_type != ORT_UNTIED_TASK)
5652 return false;
5653 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5654 if (n == NULL)
5656 error ("threadprivate variable %qE used in untied task",
5657 DECL_NAME (decl));
5658 error_at (ctx->location, "enclosing task");
5659 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5661 if (decl2)
5662 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5663 return false;
5666 /* Record the fact that DECL was used within the OpenMP context CTX.
5667 IN_CODE is true when real code uses DECL, and false when we should
5668 merely emit default(none) errors. Return true if DECL is going to
5669 be remapped and thus DECL shouldn't be gimplified into its
5670 DECL_VALUE_EXPR (if any). */
5672 static bool
5673 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5675 splay_tree_node n;
5676 unsigned flags = in_code ? GOVD_SEEN : 0;
5677 bool ret = false, shared;
5679 if (error_operand_p (decl))
5680 return false;
5682 /* Threadprivate variables are predetermined. */
5683 if (is_global_var (decl))
5685 if (DECL_THREAD_LOCAL_P (decl))
5686 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5688 if (DECL_HAS_VALUE_EXPR_P (decl))
5690 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5692 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5693 return omp_notice_threadprivate_variable (ctx, decl, value);
5697 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5698 if (n == NULL)
5700 enum omp_clause_default_kind default_kind, kind;
5701 struct gimplify_omp_ctx *octx;
5703 if (ctx->region_type == ORT_WORKSHARE)
5704 goto do_outer;
5706 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5707 remapped firstprivate instead of shared. To some extent this is
5708 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5709 default_kind = ctx->default_kind;
5710 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5711 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5712 default_kind = kind;
5714 switch (default_kind)
5716 case OMP_CLAUSE_DEFAULT_NONE:
5717 error ("%qE not specified in enclosing parallel",
5718 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5719 if ((ctx->region_type & ORT_TASK) != 0)
5720 error_at (ctx->location, "enclosing task");
5721 else
5722 error_at (ctx->location, "enclosing parallel");
5723 /* FALLTHRU */
5724 case OMP_CLAUSE_DEFAULT_SHARED:
5725 flags |= GOVD_SHARED;
5726 break;
5727 case OMP_CLAUSE_DEFAULT_PRIVATE:
5728 flags |= GOVD_PRIVATE;
5729 break;
5730 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5731 flags |= GOVD_FIRSTPRIVATE;
5732 break;
5733 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5734 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5735 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5736 if (ctx->outer_context)
5737 omp_notice_variable (ctx->outer_context, decl, in_code);
5738 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5740 splay_tree_node n2;
5742 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5743 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5745 flags |= GOVD_FIRSTPRIVATE;
5746 break;
5748 if ((octx->region_type & ORT_PARALLEL) != 0)
5749 break;
5751 if (flags & GOVD_FIRSTPRIVATE)
5752 break;
5753 if (octx == NULL
5754 && (TREE_CODE (decl) == PARM_DECL
5755 || (!is_global_var (decl)
5756 && DECL_CONTEXT (decl) == current_function_decl)))
5758 flags |= GOVD_FIRSTPRIVATE;
5759 break;
5761 flags |= GOVD_SHARED;
5762 break;
5763 default:
5764 gcc_unreachable ();
5767 if ((flags & GOVD_PRIVATE)
5768 && lang_hooks.decls.omp_private_outer_ref (decl))
5769 flags |= GOVD_PRIVATE_OUTER_REF;
5771 omp_add_variable (ctx, decl, flags);
5773 shared = (flags & GOVD_SHARED) != 0;
5774 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5775 goto do_outer;
5778 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
5779 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
5780 && DECL_SIZE (decl)
5781 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5783 splay_tree_node n2;
5784 tree t = DECL_VALUE_EXPR (decl);
5785 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5786 t = TREE_OPERAND (t, 0);
5787 gcc_assert (DECL_P (t));
5788 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
5789 n2->value |= GOVD_SEEN;
5792 shared = ((flags | n->value) & GOVD_SHARED) != 0;
5793 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5795 /* If nothing changed, there's nothing left to do. */
5796 if ((n->value & flags) == flags)
5797 return ret;
5798 flags |= n->value;
5799 n->value = flags;
5801 do_outer:
5802 /* If the variable is private in the current context, then we don't
5803 need to propagate anything to an outer context. */
5804 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
5805 return ret;
5806 if (ctx->outer_context
5807 && omp_notice_variable (ctx->outer_context, decl, in_code))
5808 return true;
5809 return ret;
5812 /* Verify that DECL is private within CTX. If there's specific information
5813 to the contrary in the innermost scope, generate an error. */
5815 static bool
5816 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
5818 splay_tree_node n;
5820 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5821 if (n != NULL)
5823 if (n->value & GOVD_SHARED)
5825 if (ctx == gimplify_omp_ctxp)
5827 error ("iteration variable %qE should be private",
5828 DECL_NAME (decl));
5829 n->value = GOVD_PRIVATE;
5830 return true;
5832 else
5833 return false;
5835 else if ((n->value & GOVD_EXPLICIT) != 0
5836 && (ctx == gimplify_omp_ctxp
5837 || (ctx->region_type == ORT_COMBINED_PARALLEL
5838 && gimplify_omp_ctxp->outer_context == ctx)))
5840 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
5841 error ("iteration variable %qE should not be firstprivate",
5842 DECL_NAME (decl));
5843 else if ((n->value & GOVD_REDUCTION) != 0)
5844 error ("iteration variable %qE should not be reduction",
5845 DECL_NAME (decl));
5847 return (ctx == gimplify_omp_ctxp
5848 || (ctx->region_type == ORT_COMBINED_PARALLEL
5849 && gimplify_omp_ctxp->outer_context == ctx));
5852 if (ctx->region_type != ORT_WORKSHARE)
5853 return false;
5854 else if (ctx->outer_context)
5855 return omp_is_private (ctx->outer_context, decl);
5856 return false;
5859 /* Return true if DECL is private within a parallel region
5860 that binds to the current construct's context or in parallel
5861 region's REDUCTION clause. */
5863 static bool
5864 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
5866 splay_tree_node n;
5870 ctx = ctx->outer_context;
5871 if (ctx == NULL)
5872 return !(is_global_var (decl)
5873 /* References might be private, but might be shared too. */
5874 || lang_hooks.decls.omp_privatize_by_reference (decl));
5876 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5877 if (n != NULL)
5878 return (n->value & GOVD_SHARED) == 0;
5880 while (ctx->region_type == ORT_WORKSHARE);
5881 return false;
5884 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
5885 and previous omp contexts. */
5887 static void
5888 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
5889 enum omp_region_type region_type)
5891 struct gimplify_omp_ctx *ctx, *outer_ctx;
5892 struct gimplify_ctx gctx;
5893 tree c;
5895 ctx = new_omp_context (region_type);
5896 outer_ctx = ctx->outer_context;
5898 while ((c = *list_p) != NULL)
5900 bool remove = false;
5901 bool notice_outer = true;
5902 const char *check_non_private = NULL;
5903 unsigned int flags;
5904 tree decl;
5906 switch (OMP_CLAUSE_CODE (c))
5908 case OMP_CLAUSE_PRIVATE:
5909 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
5910 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
5912 flags |= GOVD_PRIVATE_OUTER_REF;
5913 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
5915 else
5916 notice_outer = false;
5917 goto do_add;
5918 case OMP_CLAUSE_SHARED:
5919 flags = GOVD_SHARED | GOVD_EXPLICIT;
5920 goto do_add;
5921 case OMP_CLAUSE_FIRSTPRIVATE:
5922 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
5923 check_non_private = "firstprivate";
5924 goto do_add;
5925 case OMP_CLAUSE_LASTPRIVATE:
5926 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
5927 check_non_private = "lastprivate";
5928 goto do_add;
5929 case OMP_CLAUSE_REDUCTION:
5930 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
5931 check_non_private = "reduction";
5932 goto do_add;
5934 do_add:
5935 decl = OMP_CLAUSE_DECL (c);
5936 if (error_operand_p (decl))
5938 remove = true;
5939 break;
5941 omp_add_variable (ctx, decl, flags);
5942 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5943 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5945 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
5946 GOVD_LOCAL | GOVD_SEEN);
5947 gimplify_omp_ctxp = ctx;
5948 push_gimplify_context (&gctx);
5950 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = gimple_seq_alloc ();
5951 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = gimple_seq_alloc ();
5953 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
5954 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
5955 pop_gimplify_context
5956 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
5957 push_gimplify_context (&gctx);
5958 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
5959 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
5960 pop_gimplify_context
5961 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
5962 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
5963 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
5965 gimplify_omp_ctxp = outer_ctx;
5967 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5968 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
5970 gimplify_omp_ctxp = ctx;
5971 push_gimplify_context (&gctx);
5972 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
5974 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
5975 NULL, NULL);
5976 TREE_SIDE_EFFECTS (bind) = 1;
5977 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
5978 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
5980 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
5981 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
5982 pop_gimplify_context
5983 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
5984 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
5986 gimplify_omp_ctxp = outer_ctx;
5988 if (notice_outer)
5989 goto do_notice;
5990 break;
5992 case OMP_CLAUSE_COPYIN:
5993 case OMP_CLAUSE_COPYPRIVATE:
5994 decl = OMP_CLAUSE_DECL (c);
5995 if (error_operand_p (decl))
5997 remove = true;
5998 break;
6000 do_notice:
6001 if (outer_ctx)
6002 omp_notice_variable (outer_ctx, decl, true);
6003 if (check_non_private
6004 && region_type == ORT_WORKSHARE
6005 && omp_check_private (ctx, decl))
6007 error ("%s variable %qE is private in outer context",
6008 check_non_private, DECL_NAME (decl));
6009 remove = true;
6011 break;
6013 case OMP_CLAUSE_FINAL:
6014 case OMP_CLAUSE_IF:
6015 OMP_CLAUSE_OPERAND (c, 0)
6016 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
6017 /* Fall through. */
6019 case OMP_CLAUSE_SCHEDULE:
6020 case OMP_CLAUSE_NUM_THREADS:
6021 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
6022 is_gimple_val, fb_rvalue) == GS_ERROR)
6023 remove = true;
6024 break;
6026 case OMP_CLAUSE_NOWAIT:
6027 case OMP_CLAUSE_ORDERED:
6028 case OMP_CLAUSE_UNTIED:
6029 case OMP_CLAUSE_COLLAPSE:
6030 case OMP_CLAUSE_MERGEABLE:
6031 break;
6033 case OMP_CLAUSE_DEFAULT:
6034 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
6035 break;
6037 default:
6038 gcc_unreachable ();
6041 if (remove)
6042 *list_p = OMP_CLAUSE_CHAIN (c);
6043 else
6044 list_p = &OMP_CLAUSE_CHAIN (c);
6047 gimplify_omp_ctxp = ctx;
6050 /* For all variables that were not actually used within the context,
6051 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6053 static int
6054 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
6056 tree *list_p = (tree *) data;
6057 tree decl = (tree) n->key;
6058 unsigned flags = n->value;
6059 enum omp_clause_code code;
6060 tree clause;
6061 bool private_debug;
6063 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
6064 return 0;
6065 if ((flags & GOVD_SEEN) == 0)
6066 return 0;
6067 if (flags & GOVD_DEBUG_PRIVATE)
6069 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
6070 private_debug = true;
6072 else
6073 private_debug
6074 = lang_hooks.decls.omp_private_debug_clause (decl,
6075 !!(flags & GOVD_SHARED));
6076 if (private_debug)
6077 code = OMP_CLAUSE_PRIVATE;
6078 else if (flags & GOVD_SHARED)
6080 if (is_global_var (decl))
6082 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6083 while (ctx != NULL)
6085 splay_tree_node on
6086 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6087 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6088 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6089 break;
6090 ctx = ctx->outer_context;
6092 if (ctx == NULL)
6093 return 0;
6095 code = OMP_CLAUSE_SHARED;
6097 else if (flags & GOVD_PRIVATE)
6098 code = OMP_CLAUSE_PRIVATE;
6099 else if (flags & GOVD_FIRSTPRIVATE)
6100 code = OMP_CLAUSE_FIRSTPRIVATE;
6101 else
6102 gcc_unreachable ();
6104 clause = build_omp_clause (input_location, code);
6105 OMP_CLAUSE_DECL (clause) = decl;
6106 OMP_CLAUSE_CHAIN (clause) = *list_p;
6107 if (private_debug)
6108 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6109 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6110 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6111 *list_p = clause;
6112 lang_hooks.decls.omp_finish_clause (clause);
6114 return 0;
6117 static void
6118 gimplify_adjust_omp_clauses (tree *list_p)
6120 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6121 tree c, decl;
6123 while ((c = *list_p) != NULL)
6125 splay_tree_node n;
6126 bool remove = false;
6128 switch (OMP_CLAUSE_CODE (c))
6130 case OMP_CLAUSE_PRIVATE:
6131 case OMP_CLAUSE_SHARED:
6132 case OMP_CLAUSE_FIRSTPRIVATE:
6133 decl = OMP_CLAUSE_DECL (c);
6134 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6135 remove = !(n->value & GOVD_SEEN);
6136 if (! remove)
6138 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6139 if ((n->value & GOVD_DEBUG_PRIVATE)
6140 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6142 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6143 || ((n->value & GOVD_DATA_SHARE_CLASS)
6144 == GOVD_PRIVATE));
6145 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6146 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6149 break;
6151 case OMP_CLAUSE_LASTPRIVATE:
6152 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6153 accurately reflect the presence of a FIRSTPRIVATE clause. */
6154 decl = OMP_CLAUSE_DECL (c);
6155 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6156 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6157 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6158 break;
6160 case OMP_CLAUSE_REDUCTION:
6161 case OMP_CLAUSE_COPYIN:
6162 case OMP_CLAUSE_COPYPRIVATE:
6163 case OMP_CLAUSE_IF:
6164 case OMP_CLAUSE_NUM_THREADS:
6165 case OMP_CLAUSE_SCHEDULE:
6166 case OMP_CLAUSE_NOWAIT:
6167 case OMP_CLAUSE_ORDERED:
6168 case OMP_CLAUSE_DEFAULT:
6169 case OMP_CLAUSE_UNTIED:
6170 case OMP_CLAUSE_COLLAPSE:
6171 case OMP_CLAUSE_FINAL:
6172 case OMP_CLAUSE_MERGEABLE:
6173 break;
6175 default:
6176 gcc_unreachable ();
6179 if (remove)
6180 *list_p = OMP_CLAUSE_CHAIN (c);
6181 else
6182 list_p = &OMP_CLAUSE_CHAIN (c);
6185 /* Add in any implicit data sharing. */
6186 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6188 gimplify_omp_ctxp = ctx->outer_context;
6189 delete_omp_context (ctx);
6192 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6193 gimplification of the body, as well as scanning the body for used
6194 variables. We need to do this scan now, because variable-sized
6195 decls will be decomposed during gimplification. */
6197 static void
6198 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6200 tree expr = *expr_p;
6201 gimple g;
6202 gimple_seq body = NULL;
6203 struct gimplify_ctx gctx;
6205 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6206 OMP_PARALLEL_COMBINED (expr)
6207 ? ORT_COMBINED_PARALLEL
6208 : ORT_PARALLEL);
6210 push_gimplify_context (&gctx);
6212 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6213 if (gimple_code (g) == GIMPLE_BIND)
6214 pop_gimplify_context (g);
6215 else
6216 pop_gimplify_context (NULL);
6218 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6220 g = gimple_build_omp_parallel (body,
6221 OMP_PARALLEL_CLAUSES (expr),
6222 NULL_TREE, NULL_TREE);
6223 if (OMP_PARALLEL_COMBINED (expr))
6224 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6225 gimplify_seq_add_stmt (pre_p, g);
6226 *expr_p = NULL_TREE;
6229 /* Gimplify the contents of an OMP_TASK statement. This involves
6230 gimplification of the body, as well as scanning the body for used
6231 variables. We need to do this scan now, because variable-sized
6232 decls will be decomposed during gimplification. */
6234 static void
6235 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6237 tree expr = *expr_p;
6238 gimple g;
6239 gimple_seq body = NULL;
6240 struct gimplify_ctx gctx;
6242 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6243 find_omp_clause (OMP_TASK_CLAUSES (expr),
6244 OMP_CLAUSE_UNTIED)
6245 ? ORT_UNTIED_TASK : ORT_TASK);
6247 push_gimplify_context (&gctx);
6249 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6250 if (gimple_code (g) == GIMPLE_BIND)
6251 pop_gimplify_context (g);
6252 else
6253 pop_gimplify_context (NULL);
6255 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6257 g = gimple_build_omp_task (body,
6258 OMP_TASK_CLAUSES (expr),
6259 NULL_TREE, NULL_TREE,
6260 NULL_TREE, NULL_TREE, NULL_TREE);
6261 gimplify_seq_add_stmt (pre_p, g);
6262 *expr_p = NULL_TREE;
6265 /* Gimplify the gross structure of an OMP_FOR statement. */
6267 static enum gimplify_status
6268 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6270 tree for_stmt, decl, var, t;
6271 enum gimplify_status ret = GS_ALL_DONE;
6272 enum gimplify_status tret;
6273 gimple gfor;
6274 gimple_seq for_body, for_pre_body;
6275 int i;
6277 for_stmt = *expr_p;
6279 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6280 ORT_WORKSHARE);
6282 /* Handle OMP_FOR_INIT. */
6283 for_pre_body = NULL;
6284 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6285 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6287 for_body = gimple_seq_alloc ();
6288 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6289 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6290 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6291 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6292 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6294 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6295 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6296 decl = TREE_OPERAND (t, 0);
6297 gcc_assert (DECL_P (decl));
6298 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6299 || POINTER_TYPE_P (TREE_TYPE (decl)));
6301 /* Make sure the iteration variable is private. */
6302 if (omp_is_private (gimplify_omp_ctxp, decl))
6303 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6304 else
6305 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6307 /* If DECL is not a gimple register, create a temporary variable to act
6308 as an iteration counter. This is valid, since DECL cannot be
6309 modified in the body of the loop. */
6310 if (!is_gimple_reg (decl))
6312 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6313 TREE_OPERAND (t, 0) = var;
6315 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6317 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6319 else
6320 var = decl;
6322 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6323 is_gimple_val, fb_rvalue);
6324 ret = MIN (ret, tret);
6325 if (ret == GS_ERROR)
6326 return ret;
6328 /* Handle OMP_FOR_COND. */
6329 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6330 gcc_assert (COMPARISON_CLASS_P (t));
6331 gcc_assert (TREE_OPERAND (t, 0) == decl);
6333 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6334 is_gimple_val, fb_rvalue);
6335 ret = MIN (ret, tret);
6337 /* Handle OMP_FOR_INCR. */
6338 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6339 switch (TREE_CODE (t))
6341 case PREINCREMENT_EXPR:
6342 case POSTINCREMENT_EXPR:
6343 t = build_int_cst (TREE_TYPE (decl), 1);
6344 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6345 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6346 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6347 break;
6349 case PREDECREMENT_EXPR:
6350 case POSTDECREMENT_EXPR:
6351 t = build_int_cst (TREE_TYPE (decl), -1);
6352 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6353 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6354 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6355 break;
6357 case MODIFY_EXPR:
6358 gcc_assert (TREE_OPERAND (t, 0) == decl);
6359 TREE_OPERAND (t, 0) = var;
6361 t = TREE_OPERAND (t, 1);
6362 switch (TREE_CODE (t))
6364 case PLUS_EXPR:
6365 if (TREE_OPERAND (t, 1) == decl)
6367 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6368 TREE_OPERAND (t, 0) = var;
6369 break;
6372 /* Fallthru. */
6373 case MINUS_EXPR:
6374 case POINTER_PLUS_EXPR:
6375 gcc_assert (TREE_OPERAND (t, 0) == decl);
6376 TREE_OPERAND (t, 0) = var;
6377 break;
6378 default:
6379 gcc_unreachable ();
6382 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6383 is_gimple_val, fb_rvalue);
6384 ret = MIN (ret, tret);
6385 break;
6387 default:
6388 gcc_unreachable ();
6391 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6393 tree c;
6394 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6395 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6396 && OMP_CLAUSE_DECL (c) == decl
6397 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6399 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6400 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6401 gcc_assert (TREE_OPERAND (t, 0) == var);
6402 t = TREE_OPERAND (t, 1);
6403 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6404 || TREE_CODE (t) == MINUS_EXPR
6405 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6406 gcc_assert (TREE_OPERAND (t, 0) == var);
6407 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6408 TREE_OPERAND (t, 1));
6409 gimplify_assign (decl, t,
6410 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6415 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6417 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6419 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6420 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6421 for_pre_body);
6423 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6425 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6426 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6427 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6428 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6429 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6430 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6431 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6432 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6435 gimplify_seq_add_stmt (pre_p, gfor);
6436 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6439 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6440 In particular, OMP_SECTIONS and OMP_SINGLE. */
6442 static void
6443 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6445 tree expr = *expr_p;
6446 gimple stmt;
6447 gimple_seq body = NULL;
6449 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6450 gimplify_and_add (OMP_BODY (expr), &body);
6451 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6453 if (TREE_CODE (expr) == OMP_SECTIONS)
6454 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6455 else if (TREE_CODE (expr) == OMP_SINGLE)
6456 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6457 else
6458 gcc_unreachable ();
6460 gimplify_seq_add_stmt (pre_p, stmt);
6463 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6464 stabilized the lhs of the atomic operation as *ADDR. Return true if
6465 EXPR is this stabilized form. */
6467 static bool
6468 goa_lhs_expr_p (tree expr, tree addr)
6470 /* Also include casts to other type variants. The C front end is fond
6471 of adding these for e.g. volatile variables. This is like
6472 STRIP_TYPE_NOPS but includes the main variant lookup. */
6473 STRIP_USELESS_TYPE_CONVERSION (expr);
6475 if (TREE_CODE (expr) == INDIRECT_REF)
6477 expr = TREE_OPERAND (expr, 0);
6478 while (expr != addr
6479 && (CONVERT_EXPR_P (expr)
6480 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6481 && TREE_CODE (expr) == TREE_CODE (addr)
6482 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6484 expr = TREE_OPERAND (expr, 0);
6485 addr = TREE_OPERAND (addr, 0);
6487 if (expr == addr)
6488 return true;
6489 return (TREE_CODE (addr) == ADDR_EXPR
6490 && TREE_CODE (expr) == ADDR_EXPR
6491 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6493 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6494 return true;
6495 return false;
6498 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6499 expression does not involve the lhs, evaluate it into a temporary.
6500 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6501 or -1 if an error was encountered. */
6503 static int
6504 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6505 tree lhs_var)
6507 tree expr = *expr_p;
6508 int saw_lhs;
6510 if (goa_lhs_expr_p (expr, lhs_addr))
6512 *expr_p = lhs_var;
6513 return 1;
6515 if (is_gimple_val (expr))
6516 return 0;
6518 saw_lhs = 0;
6519 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6521 case tcc_binary:
6522 case tcc_comparison:
6523 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6524 lhs_var);
6525 case tcc_unary:
6526 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6527 lhs_var);
6528 break;
6529 case tcc_expression:
6530 switch (TREE_CODE (expr))
6532 case TRUTH_ANDIF_EXPR:
6533 case TRUTH_ORIF_EXPR:
6534 case TRUTH_AND_EXPR:
6535 case TRUTH_OR_EXPR:
6536 case TRUTH_XOR_EXPR:
6537 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6538 lhs_addr, lhs_var);
6539 case TRUTH_NOT_EXPR:
6540 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6541 lhs_addr, lhs_var);
6542 break;
6543 case COMPOUND_EXPR:
6544 /* Break out any preevaluations from cp_build_modify_expr. */
6545 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6546 expr = TREE_OPERAND (expr, 1))
6547 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6548 *expr_p = expr;
6549 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6550 default:
6551 break;
6553 break;
6554 default:
6555 break;
6558 if (saw_lhs == 0)
6560 enum gimplify_status gs;
6561 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6562 if (gs != GS_ALL_DONE)
6563 saw_lhs = -1;
6566 return saw_lhs;
6569 /* Gimplify an OMP_ATOMIC statement. */
6571 static enum gimplify_status
6572 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6574 tree addr = TREE_OPERAND (*expr_p, 0);
6575 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6576 ? NULL : TREE_OPERAND (*expr_p, 1);
6577 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6578 tree tmp_load;
6579 gimple loadstmt, storestmt;
6581 tmp_load = create_tmp_reg (type, NULL);
6582 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6583 return GS_ERROR;
6585 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6586 != GS_ALL_DONE)
6587 return GS_ERROR;
6589 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6590 gimplify_seq_add_stmt (pre_p, loadstmt);
6591 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6592 != GS_ALL_DONE)
6593 return GS_ERROR;
6595 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6596 rhs = tmp_load;
6597 storestmt = gimple_build_omp_atomic_store (rhs);
6598 gimplify_seq_add_stmt (pre_p, storestmt);
6599 switch (TREE_CODE (*expr_p))
6601 case OMP_ATOMIC_READ:
6602 case OMP_ATOMIC_CAPTURE_OLD:
6603 *expr_p = tmp_load;
6604 gimple_omp_atomic_set_need_value (loadstmt);
6605 break;
6606 case OMP_ATOMIC_CAPTURE_NEW:
6607 *expr_p = rhs;
6608 gimple_omp_atomic_set_need_value (storestmt);
6609 break;
6610 default:
6611 *expr_p = NULL;
6612 break;
6615 return GS_ALL_DONE;
6618 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6619 body, and adding some EH bits. */
6621 static enum gimplify_status
6622 gimplify_transaction (tree *expr_p, gimple_seq *pre_p)
6624 tree expr = *expr_p, temp, tbody = TRANSACTION_EXPR_BODY (expr);
6625 gimple g;
6626 gimple_seq body = NULL;
6627 struct gimplify_ctx gctx;
6628 int subcode = 0;
6630 /* Wrap the transaction body in a BIND_EXPR so we have a context
6631 where to put decls for OpenMP. */
6632 if (TREE_CODE (tbody) != BIND_EXPR)
6634 tree bind = build3 (BIND_EXPR, void_type_node, NULL, tbody, NULL);
6635 TREE_SIDE_EFFECTS (bind) = 1;
6636 SET_EXPR_LOCATION (bind, EXPR_LOCATION (tbody));
6637 TRANSACTION_EXPR_BODY (expr) = bind;
6640 push_gimplify_context (&gctx);
6641 temp = voidify_wrapper_expr (*expr_p, NULL);
6643 g = gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr), &body);
6644 pop_gimplify_context (g);
6646 g = gimple_build_transaction (body, NULL);
6647 if (TRANSACTION_EXPR_OUTER (expr))
6648 subcode = GTMA_IS_OUTER;
6649 else if (TRANSACTION_EXPR_RELAXED (expr))
6650 subcode = GTMA_IS_RELAXED;
6651 gimple_transaction_set_subcode (g, subcode);
6653 gimplify_seq_add_stmt (pre_p, g);
6655 if (temp)
6657 *expr_p = temp;
6658 return GS_OK;
6661 *expr_p = NULL_TREE;
6662 return GS_ALL_DONE;
6665 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6666 expression produces a value to be used as an operand inside a GIMPLE
6667 statement, the value will be stored back in *EXPR_P. This value will
6668 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6669 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6670 emitted in PRE_P and POST_P.
6672 Additionally, this process may overwrite parts of the input
6673 expression during gimplification. Ideally, it should be
6674 possible to do non-destructive gimplification.
6676 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6677 the expression needs to evaluate to a value to be used as
6678 an operand in a GIMPLE statement, this value will be stored in
6679 *EXPR_P on exit. This happens when the caller specifies one
6680 of fb_lvalue or fb_rvalue fallback flags.
6682 PRE_P will contain the sequence of GIMPLE statements corresponding
6683 to the evaluation of EXPR and all the side-effects that must
6684 be executed before the main expression. On exit, the last
6685 statement of PRE_P is the core statement being gimplified. For
6686 instance, when gimplifying 'if (++a)' the last statement in
6687 PRE_P will be 'if (t.1)' where t.1 is the result of
6688 pre-incrementing 'a'.
6690 POST_P will contain the sequence of GIMPLE statements corresponding
6691 to the evaluation of all the side-effects that must be executed
6692 after the main expression. If this is NULL, the post
6693 side-effects are stored at the end of PRE_P.
6695 The reason why the output is split in two is to handle post
6696 side-effects explicitly. In some cases, an expression may have
6697 inner and outer post side-effects which need to be emitted in
6698 an order different from the one given by the recursive
6699 traversal. For instance, for the expression (*p--)++ the post
6700 side-effects of '--' must actually occur *after* the post
6701 side-effects of '++'. However, gimplification will first visit
6702 the inner expression, so if a separate POST sequence was not
6703 used, the resulting sequence would be:
6705 1 t.1 = *p
6706 2 p = p - 1
6707 3 t.2 = t.1 + 1
6708 4 *p = t.2
6710 However, the post-decrement operation in line #2 must not be
6711 evaluated until after the store to *p at line #4, so the
6712 correct sequence should be:
6714 1 t.1 = *p
6715 2 t.2 = t.1 + 1
6716 3 *p = t.2
6717 4 p = p - 1
6719 So, by specifying a separate post queue, it is possible
6720 to emit the post side-effects in the correct order.
6721 If POST_P is NULL, an internal queue will be used. Before
6722 returning to the caller, the sequence POST_P is appended to
6723 the main output sequence PRE_P.
6725 GIMPLE_TEST_F points to a function that takes a tree T and
6726 returns nonzero if T is in the GIMPLE form requested by the
6727 caller. The GIMPLE predicates are in gimple.c.
6729 FALLBACK tells the function what sort of a temporary we want if
6730 gimplification cannot produce an expression that complies with
6731 GIMPLE_TEST_F.
6733 fb_none means that no temporary should be generated
6734 fb_rvalue means that an rvalue is OK to generate
6735 fb_lvalue means that an lvalue is OK to generate
6736 fb_either means that either is OK, but an lvalue is preferable.
6737 fb_mayfail means that gimplification may fail (in which case
6738 GS_ERROR will be returned)
6740 The return value is either GS_ERROR or GS_ALL_DONE, since this
6741 function iterates until EXPR is completely gimplified or an error
6742 occurs. */
6744 enum gimplify_status
6745 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6746 bool (*gimple_test_f) (tree), fallback_t fallback)
6748 tree tmp;
6749 gimple_seq internal_pre = NULL;
6750 gimple_seq internal_post = NULL;
6751 tree save_expr;
6752 bool is_statement;
6753 location_t saved_location;
6754 enum gimplify_status ret;
6755 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6757 save_expr = *expr_p;
6758 if (save_expr == NULL_TREE)
6759 return GS_ALL_DONE;
6761 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
6762 is_statement = gimple_test_f == is_gimple_stmt;
6763 if (is_statement)
6764 gcc_assert (pre_p);
6766 /* Consistency checks. */
6767 if (gimple_test_f == is_gimple_reg)
6768 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
6769 else if (gimple_test_f == is_gimple_val
6770 || gimple_test_f == is_gimple_call_addr
6771 || gimple_test_f == is_gimple_condexpr
6772 || gimple_test_f == is_gimple_mem_rhs
6773 || gimple_test_f == is_gimple_mem_rhs_or_call
6774 || gimple_test_f == is_gimple_reg_rhs
6775 || gimple_test_f == is_gimple_reg_rhs_or_call
6776 || gimple_test_f == is_gimple_asm_val
6777 || gimple_test_f == is_gimple_mem_ref_addr)
6778 gcc_assert (fallback & fb_rvalue);
6779 else if (gimple_test_f == is_gimple_min_lval
6780 || gimple_test_f == is_gimple_lvalue)
6781 gcc_assert (fallback & fb_lvalue);
6782 else if (gimple_test_f == is_gimple_addressable)
6783 gcc_assert (fallback & fb_either);
6784 else if (gimple_test_f == is_gimple_stmt)
6785 gcc_assert (fallback == fb_none);
6786 else
6788 /* We should have recognized the GIMPLE_TEST_F predicate to
6789 know what kind of fallback to use in case a temporary is
6790 needed to hold the value or address of *EXPR_P. */
6791 gcc_unreachable ();
6794 /* We used to check the predicate here and return immediately if it
6795 succeeds. This is wrong; the design is for gimplification to be
6796 idempotent, and for the predicates to only test for valid forms, not
6797 whether they are fully simplified. */
6798 if (pre_p == NULL)
6799 pre_p = &internal_pre;
6801 if (post_p == NULL)
6802 post_p = &internal_post;
6804 /* Remember the last statements added to PRE_P and POST_P. Every
6805 new statement added by the gimplification helpers needs to be
6806 annotated with location information. To centralize the
6807 responsibility, we remember the last statement that had been
6808 added to both queues before gimplifying *EXPR_P. If
6809 gimplification produces new statements in PRE_P and POST_P, those
6810 statements will be annotated with the same location information
6811 as *EXPR_P. */
6812 pre_last_gsi = gsi_last (*pre_p);
6813 post_last_gsi = gsi_last (*post_p);
6815 saved_location = input_location;
6816 if (save_expr != error_mark_node
6817 && EXPR_HAS_LOCATION (*expr_p))
6818 input_location = EXPR_LOCATION (*expr_p);
6820 /* Loop over the specific gimplifiers until the toplevel node
6821 remains the same. */
6824 /* Strip away as many useless type conversions as possible
6825 at the toplevel. */
6826 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
6828 /* Remember the expr. */
6829 save_expr = *expr_p;
6831 /* Die, die, die, my darling. */
6832 if (save_expr == error_mark_node
6833 || (TREE_TYPE (save_expr)
6834 && TREE_TYPE (save_expr) == error_mark_node))
6836 ret = GS_ERROR;
6837 break;
6840 /* Do any language-specific gimplification. */
6841 ret = ((enum gimplify_status)
6842 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
6843 if (ret == GS_OK)
6845 if (*expr_p == NULL_TREE)
6846 break;
6847 if (*expr_p != save_expr)
6848 continue;
6850 else if (ret != GS_UNHANDLED)
6851 break;
6853 /* Make sure that all the cases set 'ret' appropriately. */
6854 ret = GS_UNHANDLED;
6855 switch (TREE_CODE (*expr_p))
6857 /* First deal with the special cases. */
6859 case POSTINCREMENT_EXPR:
6860 case POSTDECREMENT_EXPR:
6861 case PREINCREMENT_EXPR:
6862 case PREDECREMENT_EXPR:
6863 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
6864 fallback != fb_none);
6865 break;
6867 case ARRAY_REF:
6868 case ARRAY_RANGE_REF:
6869 case REALPART_EXPR:
6870 case IMAGPART_EXPR:
6871 case COMPONENT_REF:
6872 case VIEW_CONVERT_EXPR:
6873 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
6874 fallback ? fallback : fb_rvalue);
6875 break;
6877 case COND_EXPR:
6878 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
6880 /* C99 code may assign to an array in a structure value of a
6881 conditional expression, and this has undefined behavior
6882 only on execution, so create a temporary if an lvalue is
6883 required. */
6884 if (fallback == fb_lvalue)
6886 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6887 mark_addressable (*expr_p);
6888 ret = GS_OK;
6890 break;
6892 case CALL_EXPR:
6893 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
6895 /* C99 code may assign to an array in a structure returned
6896 from a function, and this has undefined behavior only on
6897 execution, so create a temporary if an lvalue is
6898 required. */
6899 if (fallback == fb_lvalue)
6901 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6902 mark_addressable (*expr_p);
6903 ret = GS_OK;
6905 break;
6907 case TREE_LIST:
6908 gcc_unreachable ();
6910 case COMPOUND_EXPR:
6911 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
6912 break;
6914 case COMPOUND_LITERAL_EXPR:
6915 ret = gimplify_compound_literal_expr (expr_p, pre_p);
6916 break;
6918 case MODIFY_EXPR:
6919 case INIT_EXPR:
6920 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
6921 fallback != fb_none);
6922 break;
6924 case TRUTH_ANDIF_EXPR:
6925 case TRUTH_ORIF_EXPR:
6927 /* Preserve the original type of the expression and the
6928 source location of the outer expression. */
6929 tree org_type = TREE_TYPE (*expr_p);
6930 *expr_p = gimple_boolify (*expr_p);
6931 *expr_p = build3_loc (input_location, COND_EXPR,
6932 org_type, *expr_p,
6933 fold_convert_loc
6934 (input_location,
6935 org_type, boolean_true_node),
6936 fold_convert_loc
6937 (input_location,
6938 org_type, boolean_false_node));
6939 ret = GS_OK;
6940 break;
6943 case TRUTH_NOT_EXPR:
6945 tree type = TREE_TYPE (*expr_p);
6946 /* The parsers are careful to generate TRUTH_NOT_EXPR
6947 only with operands that are always zero or one.
6948 We do not fold here but handle the only interesting case
6949 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
6950 *expr_p = gimple_boolify (*expr_p);
6951 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
6952 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
6953 TREE_TYPE (*expr_p),
6954 TREE_OPERAND (*expr_p, 0));
6955 else
6956 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
6957 TREE_TYPE (*expr_p),
6958 TREE_OPERAND (*expr_p, 0),
6959 build_int_cst (TREE_TYPE (*expr_p), 1));
6960 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
6961 *expr_p = fold_convert_loc (input_location, type, *expr_p);
6962 ret = GS_OK;
6963 break;
6966 case ADDR_EXPR:
6967 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
6968 break;
6970 case VA_ARG_EXPR:
6971 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
6972 break;
6974 CASE_CONVERT:
6975 if (IS_EMPTY_STMT (*expr_p))
6977 ret = GS_ALL_DONE;
6978 break;
6981 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
6982 || fallback == fb_none)
6984 /* Just strip a conversion to void (or in void context) and
6985 try again. */
6986 *expr_p = TREE_OPERAND (*expr_p, 0);
6987 ret = GS_OK;
6988 break;
6991 ret = gimplify_conversion (expr_p);
6992 if (ret == GS_ERROR)
6993 break;
6994 if (*expr_p != save_expr)
6995 break;
6996 /* FALLTHRU */
6998 case FIX_TRUNC_EXPR:
6999 /* unary_expr: ... | '(' cast ')' val | ... */
7000 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7001 is_gimple_val, fb_rvalue);
7002 recalculate_side_effects (*expr_p);
7003 break;
7005 case INDIRECT_REF:
7007 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
7008 bool notrap = TREE_THIS_NOTRAP (*expr_p);
7009 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
7011 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
7012 if (*expr_p != save_expr)
7014 ret = GS_OK;
7015 break;
7018 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7019 is_gimple_reg, fb_rvalue);
7020 if (ret == GS_ERROR)
7021 break;
7023 recalculate_side_effects (*expr_p);
7024 *expr_p = fold_build2_loc (input_location, MEM_REF,
7025 TREE_TYPE (*expr_p),
7026 TREE_OPERAND (*expr_p, 0),
7027 build_int_cst (saved_ptr_type, 0));
7028 TREE_THIS_VOLATILE (*expr_p) = volatilep;
7029 TREE_THIS_NOTRAP (*expr_p) = notrap;
7030 ret = GS_OK;
7031 break;
7034 /* We arrive here through the various re-gimplifcation paths. */
7035 case MEM_REF:
7036 /* First try re-folding the whole thing. */
7037 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
7038 TREE_OPERAND (*expr_p, 0),
7039 TREE_OPERAND (*expr_p, 1));
7040 if (tmp)
7042 *expr_p = tmp;
7043 recalculate_side_effects (*expr_p);
7044 ret = GS_OK;
7045 break;
7047 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7048 is_gimple_mem_ref_addr, fb_rvalue);
7049 if (ret == GS_ERROR)
7050 break;
7051 recalculate_side_effects (*expr_p);
7052 ret = GS_ALL_DONE;
7053 break;
7055 /* Constants need not be gimplified. */
7056 case INTEGER_CST:
7057 case REAL_CST:
7058 case FIXED_CST:
7059 case STRING_CST:
7060 case COMPLEX_CST:
7061 case VECTOR_CST:
7062 ret = GS_ALL_DONE;
7063 break;
7065 case CONST_DECL:
7066 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7067 CONST_DECL node. Otherwise the decl is replaceable by its
7068 value. */
7069 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7070 if (fallback & fb_lvalue)
7071 ret = GS_ALL_DONE;
7072 else
7074 *expr_p = DECL_INITIAL (*expr_p);
7075 ret = GS_OK;
7077 break;
7079 case DECL_EXPR:
7080 ret = gimplify_decl_expr (expr_p, pre_p);
7081 break;
7083 case BIND_EXPR:
7084 ret = gimplify_bind_expr (expr_p, pre_p);
7085 break;
7087 case LOOP_EXPR:
7088 ret = gimplify_loop_expr (expr_p, pre_p);
7089 break;
7091 case SWITCH_EXPR:
7092 ret = gimplify_switch_expr (expr_p, pre_p);
7093 break;
7095 case EXIT_EXPR:
7096 ret = gimplify_exit_expr (expr_p);
7097 break;
7099 case GOTO_EXPR:
7100 /* If the target is not LABEL, then it is a computed jump
7101 and the target needs to be gimplified. */
7102 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
7104 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
7105 NULL, is_gimple_val, fb_rvalue);
7106 if (ret == GS_ERROR)
7107 break;
7109 gimplify_seq_add_stmt (pre_p,
7110 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
7111 ret = GS_ALL_DONE;
7112 break;
7114 case PREDICT_EXPR:
7115 gimplify_seq_add_stmt (pre_p,
7116 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
7117 PREDICT_EXPR_OUTCOME (*expr_p)));
7118 ret = GS_ALL_DONE;
7119 break;
7121 case LABEL_EXPR:
7122 ret = GS_ALL_DONE;
7123 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
7124 == current_function_decl);
7125 gimplify_seq_add_stmt (pre_p,
7126 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
7127 break;
7129 case CASE_LABEL_EXPR:
7130 ret = gimplify_case_label_expr (expr_p, pre_p);
7131 break;
7133 case RETURN_EXPR:
7134 ret = gimplify_return_expr (*expr_p, pre_p);
7135 break;
7137 case CONSTRUCTOR:
7138 /* Don't reduce this in place; let gimplify_init_constructor work its
7139 magic. Buf if we're just elaborating this for side effects, just
7140 gimplify any element that has side-effects. */
7141 if (fallback == fb_none)
7143 unsigned HOST_WIDE_INT ix;
7144 tree val;
7145 tree temp = NULL_TREE;
7146 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7147 if (TREE_SIDE_EFFECTS (val))
7148 append_to_statement_list (val, &temp);
7150 *expr_p = temp;
7151 ret = temp ? GS_OK : GS_ALL_DONE;
7153 /* C99 code may assign to an array in a constructed
7154 structure or union, and this has undefined behavior only
7155 on execution, so create a temporary if an lvalue is
7156 required. */
7157 else if (fallback == fb_lvalue)
7159 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7160 mark_addressable (*expr_p);
7161 ret = GS_OK;
7163 else
7164 ret = GS_ALL_DONE;
7165 break;
7167 /* The following are special cases that are not handled by the
7168 original GIMPLE grammar. */
7170 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7171 eliminated. */
7172 case SAVE_EXPR:
7173 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7174 break;
7176 case BIT_FIELD_REF:
7178 enum gimplify_status r0, r1, r2;
7180 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7181 post_p, is_gimple_lvalue, fb_either);
7182 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7183 post_p, is_gimple_val, fb_rvalue);
7184 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7185 post_p, is_gimple_val, fb_rvalue);
7186 recalculate_side_effects (*expr_p);
7188 ret = MIN (r0, MIN (r1, r2));
7190 break;
7192 case TARGET_MEM_REF:
7194 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7196 if (TMR_BASE (*expr_p))
7197 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7198 post_p, is_gimple_mem_ref_addr, fb_either);
7199 if (TMR_INDEX (*expr_p))
7200 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7201 post_p, is_gimple_val, fb_rvalue);
7202 if (TMR_INDEX2 (*expr_p))
7203 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7204 post_p, is_gimple_val, fb_rvalue);
7205 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7206 ret = MIN (r0, r1);
7208 break;
7210 case NON_LVALUE_EXPR:
7211 /* This should have been stripped above. */
7212 gcc_unreachable ();
7214 case ASM_EXPR:
7215 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7216 break;
7218 case TRY_FINALLY_EXPR:
7219 case TRY_CATCH_EXPR:
7221 gimple_seq eval, cleanup;
7222 gimple try_;
7224 eval = cleanup = NULL;
7225 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7226 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7227 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7228 if (gimple_seq_empty_p (cleanup))
7230 gimple_seq_add_seq (pre_p, eval);
7231 ret = GS_ALL_DONE;
7232 break;
7234 try_ = gimple_build_try (eval, cleanup,
7235 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7236 ? GIMPLE_TRY_FINALLY
7237 : GIMPLE_TRY_CATCH);
7238 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7239 gimple_try_set_catch_is_cleanup (try_,
7240 TRY_CATCH_IS_CLEANUP (*expr_p));
7241 gimplify_seq_add_stmt (pre_p, try_);
7242 ret = GS_ALL_DONE;
7243 break;
7246 case CLEANUP_POINT_EXPR:
7247 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7248 break;
7250 case TARGET_EXPR:
7251 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7252 break;
7254 case CATCH_EXPR:
7256 gimple c;
7257 gimple_seq handler = NULL;
7258 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7259 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7260 gimplify_seq_add_stmt (pre_p, c);
7261 ret = GS_ALL_DONE;
7262 break;
7265 case EH_FILTER_EXPR:
7267 gimple ehf;
7268 gimple_seq failure = NULL;
7270 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7271 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7272 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7273 gimplify_seq_add_stmt (pre_p, ehf);
7274 ret = GS_ALL_DONE;
7275 break;
7278 case OBJ_TYPE_REF:
7280 enum gimplify_status r0, r1;
7281 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7282 post_p, is_gimple_val, fb_rvalue);
7283 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7284 post_p, is_gimple_val, fb_rvalue);
7285 TREE_SIDE_EFFECTS (*expr_p) = 0;
7286 ret = MIN (r0, r1);
7288 break;
7290 case LABEL_DECL:
7291 /* We get here when taking the address of a label. We mark
7292 the label as "forced"; meaning it can never be removed and
7293 it is a potential target for any computed goto. */
7294 FORCED_LABEL (*expr_p) = 1;
7295 ret = GS_ALL_DONE;
7296 break;
7298 case STATEMENT_LIST:
7299 ret = gimplify_statement_list (expr_p, pre_p);
7300 break;
7302 case WITH_SIZE_EXPR:
7304 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7305 post_p == &internal_post ? NULL : post_p,
7306 gimple_test_f, fallback);
7307 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7308 is_gimple_val, fb_rvalue);
7309 ret = GS_ALL_DONE;
7311 break;
7313 case VAR_DECL:
7314 case PARM_DECL:
7315 ret = gimplify_var_or_parm_decl (expr_p);
7316 break;
7318 case RESULT_DECL:
7319 /* When within an OpenMP context, notice uses of variables. */
7320 if (gimplify_omp_ctxp)
7321 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7322 ret = GS_ALL_DONE;
7323 break;
7325 case SSA_NAME:
7326 /* Allow callbacks into the gimplifier during optimization. */
7327 ret = GS_ALL_DONE;
7328 break;
7330 case OMP_PARALLEL:
7331 gimplify_omp_parallel (expr_p, pre_p);
7332 ret = GS_ALL_DONE;
7333 break;
7335 case OMP_TASK:
7336 gimplify_omp_task (expr_p, pre_p);
7337 ret = GS_ALL_DONE;
7338 break;
7340 case OMP_FOR:
7341 ret = gimplify_omp_for (expr_p, pre_p);
7342 break;
7344 case OMP_SECTIONS:
7345 case OMP_SINGLE:
7346 gimplify_omp_workshare (expr_p, pre_p);
7347 ret = GS_ALL_DONE;
7348 break;
7350 case OMP_SECTION:
7351 case OMP_MASTER:
7352 case OMP_ORDERED:
7353 case OMP_CRITICAL:
7355 gimple_seq body = NULL;
7356 gimple g;
7358 gimplify_and_add (OMP_BODY (*expr_p), &body);
7359 switch (TREE_CODE (*expr_p))
7361 case OMP_SECTION:
7362 g = gimple_build_omp_section (body);
7363 break;
7364 case OMP_MASTER:
7365 g = gimple_build_omp_master (body);
7366 break;
7367 case OMP_ORDERED:
7368 g = gimple_build_omp_ordered (body);
7369 break;
7370 case OMP_CRITICAL:
7371 g = gimple_build_omp_critical (body,
7372 OMP_CRITICAL_NAME (*expr_p));
7373 break;
7374 default:
7375 gcc_unreachable ();
7377 gimplify_seq_add_stmt (pre_p, g);
7378 ret = GS_ALL_DONE;
7379 break;
7382 case OMP_ATOMIC:
7383 case OMP_ATOMIC_READ:
7384 case OMP_ATOMIC_CAPTURE_OLD:
7385 case OMP_ATOMIC_CAPTURE_NEW:
7386 ret = gimplify_omp_atomic (expr_p, pre_p);
7387 break;
7389 case TRANSACTION_EXPR:
7390 ret = gimplify_transaction (expr_p, pre_p);
7391 break;
7393 case TRUTH_AND_EXPR:
7394 case TRUTH_OR_EXPR:
7395 case TRUTH_XOR_EXPR:
7397 tree orig_type = TREE_TYPE (*expr_p);
7398 tree new_type, xop0, xop1;
7399 *expr_p = gimple_boolify (*expr_p);
7400 new_type = TREE_TYPE (*expr_p);
7401 if (!useless_type_conversion_p (orig_type, new_type))
7403 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7404 ret = GS_OK;
7405 break;
7408 /* Boolified binary truth expressions are semantically equivalent
7409 to bitwise binary expressions. Canonicalize them to the
7410 bitwise variant. */
7411 switch (TREE_CODE (*expr_p))
7413 case TRUTH_AND_EXPR:
7414 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7415 break;
7416 case TRUTH_OR_EXPR:
7417 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7418 break;
7419 case TRUTH_XOR_EXPR:
7420 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7421 break;
7422 default:
7423 break;
7425 /* Now make sure that operands have compatible type to
7426 expression's new_type. */
7427 xop0 = TREE_OPERAND (*expr_p, 0);
7428 xop1 = TREE_OPERAND (*expr_p, 1);
7429 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7430 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7431 new_type,
7432 xop0);
7433 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7434 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7435 new_type,
7436 xop1);
7437 /* Continue classified as tcc_binary. */
7438 goto expr_2;
7441 case FMA_EXPR:
7442 case VEC_PERM_EXPR:
7443 /* Classified as tcc_expression. */
7444 goto expr_3;
7446 case POINTER_PLUS_EXPR:
7448 enum gimplify_status r0, r1;
7449 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7450 post_p, is_gimple_val, fb_rvalue);
7451 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7452 post_p, is_gimple_val, fb_rvalue);
7453 recalculate_side_effects (*expr_p);
7454 ret = MIN (r0, r1);
7455 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7456 after gimplifying operands - this is similar to how
7457 it would be folding all gimplified stmts on creation
7458 to have them canonicalized, which is what we eventually
7459 should do anyway. */
7460 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7461 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7463 *expr_p = build_fold_addr_expr_with_type_loc
7464 (input_location,
7465 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7466 TREE_OPERAND (*expr_p, 0),
7467 fold_convert (ptr_type_node,
7468 TREE_OPERAND (*expr_p, 1))),
7469 TREE_TYPE (*expr_p));
7470 ret = MIN (ret, GS_OK);
7472 break;
7475 default:
7476 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7478 case tcc_comparison:
7479 /* Handle comparison of objects of non scalar mode aggregates
7480 with a call to memcmp. It would be nice to only have to do
7481 this for variable-sized objects, but then we'd have to allow
7482 the same nest of reference nodes we allow for MODIFY_EXPR and
7483 that's too complex.
7485 Compare scalar mode aggregates as scalar mode values. Using
7486 memcmp for them would be very inefficient at best, and is
7487 plain wrong if bitfields are involved. */
7489 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7491 /* Vector comparisons need no boolification. */
7492 if (TREE_CODE (type) == VECTOR_TYPE)
7493 goto expr_2;
7494 else if (!AGGREGATE_TYPE_P (type))
7496 tree org_type = TREE_TYPE (*expr_p);
7497 *expr_p = gimple_boolify (*expr_p);
7498 if (!useless_type_conversion_p (org_type,
7499 TREE_TYPE (*expr_p)))
7501 *expr_p = fold_convert_loc (input_location,
7502 org_type, *expr_p);
7503 ret = GS_OK;
7505 else
7506 goto expr_2;
7508 else if (TYPE_MODE (type) != BLKmode)
7509 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7510 else
7511 ret = gimplify_variable_sized_compare (expr_p);
7513 break;
7516 /* If *EXPR_P does not need to be special-cased, handle it
7517 according to its class. */
7518 case tcc_unary:
7519 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7520 post_p, is_gimple_val, fb_rvalue);
7521 break;
7523 case tcc_binary:
7524 expr_2:
7526 enum gimplify_status r0, r1;
7528 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7529 post_p, is_gimple_val, fb_rvalue);
7530 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7531 post_p, is_gimple_val, fb_rvalue);
7533 ret = MIN (r0, r1);
7534 break;
7537 expr_3:
7539 enum gimplify_status r0, r1, r2;
7541 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7542 post_p, is_gimple_val, fb_rvalue);
7543 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7544 post_p, is_gimple_val, fb_rvalue);
7545 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7546 post_p, is_gimple_val, fb_rvalue);
7548 ret = MIN (MIN (r0, r1), r2);
7549 break;
7552 case tcc_declaration:
7553 case tcc_constant:
7554 ret = GS_ALL_DONE;
7555 goto dont_recalculate;
7557 default:
7558 gcc_unreachable ();
7561 recalculate_side_effects (*expr_p);
7563 dont_recalculate:
7564 break;
7567 gcc_assert (*expr_p || ret != GS_OK);
7569 while (ret == GS_OK);
7571 /* If we encountered an error_mark somewhere nested inside, either
7572 stub out the statement or propagate the error back out. */
7573 if (ret == GS_ERROR)
7575 if (is_statement)
7576 *expr_p = NULL;
7577 goto out;
7580 /* This was only valid as a return value from the langhook, which
7581 we handled. Make sure it doesn't escape from any other context. */
7582 gcc_assert (ret != GS_UNHANDLED);
7584 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7586 /* We aren't looking for a value, and we don't have a valid
7587 statement. If it doesn't have side-effects, throw it away. */
7588 if (!TREE_SIDE_EFFECTS (*expr_p))
7589 *expr_p = NULL;
7590 else if (!TREE_THIS_VOLATILE (*expr_p))
7592 /* This is probably a _REF that contains something nested that
7593 has side effects. Recurse through the operands to find it. */
7594 enum tree_code code = TREE_CODE (*expr_p);
7596 switch (code)
7598 case COMPONENT_REF:
7599 case REALPART_EXPR:
7600 case IMAGPART_EXPR:
7601 case VIEW_CONVERT_EXPR:
7602 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7603 gimple_test_f, fallback);
7604 break;
7606 case ARRAY_REF:
7607 case ARRAY_RANGE_REF:
7608 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7609 gimple_test_f, fallback);
7610 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7611 gimple_test_f, fallback);
7612 break;
7614 default:
7615 /* Anything else with side-effects must be converted to
7616 a valid statement before we get here. */
7617 gcc_unreachable ();
7620 *expr_p = NULL;
7622 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7623 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7625 /* Historically, the compiler has treated a bare reference
7626 to a non-BLKmode volatile lvalue as forcing a load. */
7627 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7629 /* Normally, we do not want to create a temporary for a
7630 TREE_ADDRESSABLE type because such a type should not be
7631 copied by bitwise-assignment. However, we make an
7632 exception here, as all we are doing here is ensuring that
7633 we read the bytes that make up the type. We use
7634 create_tmp_var_raw because create_tmp_var will abort when
7635 given a TREE_ADDRESSABLE type. */
7636 tree tmp = create_tmp_var_raw (type, "vol");
7637 gimple_add_tmp_var (tmp);
7638 gimplify_assign (tmp, *expr_p, pre_p);
7639 *expr_p = NULL;
7641 else
7642 /* We can't do anything useful with a volatile reference to
7643 an incomplete type, so just throw it away. Likewise for
7644 a BLKmode type, since any implicit inner load should
7645 already have been turned into an explicit one by the
7646 gimplification process. */
7647 *expr_p = NULL;
7650 /* If we are gimplifying at the statement level, we're done. Tack
7651 everything together and return. */
7652 if (fallback == fb_none || is_statement)
7654 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7655 it out for GC to reclaim it. */
7656 *expr_p = NULL_TREE;
7658 if (!gimple_seq_empty_p (internal_pre)
7659 || !gimple_seq_empty_p (internal_post))
7661 gimplify_seq_add_seq (&internal_pre, internal_post);
7662 gimplify_seq_add_seq (pre_p, internal_pre);
7665 /* The result of gimplifying *EXPR_P is going to be the last few
7666 statements in *PRE_P and *POST_P. Add location information
7667 to all the statements that were added by the gimplification
7668 helpers. */
7669 if (!gimple_seq_empty_p (*pre_p))
7670 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7672 if (!gimple_seq_empty_p (*post_p))
7673 annotate_all_with_location_after (*post_p, post_last_gsi,
7674 input_location);
7676 goto out;
7679 #ifdef ENABLE_GIMPLE_CHECKING
7680 if (*expr_p)
7682 enum tree_code code = TREE_CODE (*expr_p);
7683 /* These expressions should already be in gimple IR form. */
7684 gcc_assert (code != MODIFY_EXPR
7685 && code != ASM_EXPR
7686 && code != BIND_EXPR
7687 && code != CATCH_EXPR
7688 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7689 && code != EH_FILTER_EXPR
7690 && code != GOTO_EXPR
7691 && code != LABEL_EXPR
7692 && code != LOOP_EXPR
7693 && code != SWITCH_EXPR
7694 && code != TRY_FINALLY_EXPR
7695 && code != OMP_CRITICAL
7696 && code != OMP_FOR
7697 && code != OMP_MASTER
7698 && code != OMP_ORDERED
7699 && code != OMP_PARALLEL
7700 && code != OMP_SECTIONS
7701 && code != OMP_SECTION
7702 && code != OMP_SINGLE);
7704 #endif
7706 /* Otherwise we're gimplifying a subexpression, so the resulting
7707 value is interesting. If it's a valid operand that matches
7708 GIMPLE_TEST_F, we're done. Unless we are handling some
7709 post-effects internally; if that's the case, we need to copy into
7710 a temporary before adding the post-effects to POST_P. */
7711 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7712 goto out;
7714 /* Otherwise, we need to create a new temporary for the gimplified
7715 expression. */
7717 /* We can't return an lvalue if we have an internal postqueue. The
7718 object the lvalue refers to would (probably) be modified by the
7719 postqueue; we need to copy the value out first, which means an
7720 rvalue. */
7721 if ((fallback & fb_lvalue)
7722 && gimple_seq_empty_p (internal_post)
7723 && is_gimple_addressable (*expr_p))
7725 /* An lvalue will do. Take the address of the expression, store it
7726 in a temporary, and replace the expression with an INDIRECT_REF of
7727 that temporary. */
7728 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7729 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7730 *expr_p = build_simple_mem_ref (tmp);
7732 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7734 /* An rvalue will do. Assign the gimplified expression into a
7735 new temporary TMP and replace the original expression with
7736 TMP. First, make sure that the expression has a type so that
7737 it can be assigned into a temporary. */
7738 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7740 if (!gimple_seq_empty_p (internal_post) || (fallback & fb_lvalue))
7741 /* The postqueue might change the value of the expression between
7742 the initialization and use of the temporary, so we can't use a
7743 formal temp. FIXME do we care? */
7745 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7746 if (TREE_CODE (TREE_TYPE (*expr_p)) == COMPLEX_TYPE
7747 || TREE_CODE (TREE_TYPE (*expr_p)) == VECTOR_TYPE)
7748 DECL_GIMPLE_REG_P (*expr_p) = 1;
7750 else
7751 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7753 else
7755 #ifdef ENABLE_GIMPLE_CHECKING
7756 if (!(fallback & fb_mayfail))
7758 fprintf (stderr, "gimplification failed:\n");
7759 print_generic_expr (stderr, *expr_p, 0);
7760 debug_tree (*expr_p);
7761 internal_error ("gimplification failed");
7763 #endif
7764 gcc_assert (fallback & fb_mayfail);
7766 /* If this is an asm statement, and the user asked for the
7767 impossible, don't die. Fail and let gimplify_asm_expr
7768 issue an error. */
7769 ret = GS_ERROR;
7770 goto out;
7773 /* Make sure the temporary matches our predicate. */
7774 gcc_assert ((*gimple_test_f) (*expr_p));
7776 if (!gimple_seq_empty_p (internal_post))
7778 annotate_all_with_location (internal_post, input_location);
7779 gimplify_seq_add_seq (pre_p, internal_post);
7782 out:
7783 input_location = saved_location;
7784 return ret;
7787 /* Look through TYPE for variable-sized objects and gimplify each such
7788 size that we find. Add to LIST_P any statements generated. */
7790 void
7791 gimplify_type_sizes (tree type, gimple_seq *list_p)
7793 tree field, t;
7795 if (type == NULL || type == error_mark_node)
7796 return;
7798 /* We first do the main variant, then copy into any other variants. */
7799 type = TYPE_MAIN_VARIANT (type);
7801 /* Avoid infinite recursion. */
7802 if (TYPE_SIZES_GIMPLIFIED (type))
7803 return;
7805 TYPE_SIZES_GIMPLIFIED (type) = 1;
7807 switch (TREE_CODE (type))
7809 case INTEGER_TYPE:
7810 case ENUMERAL_TYPE:
7811 case BOOLEAN_TYPE:
7812 case REAL_TYPE:
7813 case FIXED_POINT_TYPE:
7814 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
7815 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
7817 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7819 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
7820 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
7822 break;
7824 case ARRAY_TYPE:
7825 /* These types may not have declarations, so handle them here. */
7826 gimplify_type_sizes (TREE_TYPE (type), list_p);
7827 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
7828 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
7829 with assigned stack slots, for -O1+ -g they should be tracked
7830 by VTA. */
7831 if (!(TYPE_NAME (type)
7832 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7833 && DECL_IGNORED_P (TYPE_NAME (type)))
7834 && TYPE_DOMAIN (type)
7835 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
7837 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
7838 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
7839 DECL_IGNORED_P (t) = 0;
7840 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
7841 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
7842 DECL_IGNORED_P (t) = 0;
7844 break;
7846 case RECORD_TYPE:
7847 case UNION_TYPE:
7848 case QUAL_UNION_TYPE:
7849 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7850 if (TREE_CODE (field) == FIELD_DECL)
7852 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
7853 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
7854 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
7855 gimplify_type_sizes (TREE_TYPE (field), list_p);
7857 break;
7859 case POINTER_TYPE:
7860 case REFERENCE_TYPE:
7861 /* We used to recurse on the pointed-to type here, which turned out to
7862 be incorrect because its definition might refer to variables not
7863 yet initialized at this point if a forward declaration is involved.
7865 It was actually useful for anonymous pointed-to types to ensure
7866 that the sizes evaluation dominates every possible later use of the
7867 values. Restricting to such types here would be safe since there
7868 is no possible forward declaration around, but would introduce an
7869 undesirable middle-end semantic to anonymity. We then defer to
7870 front-ends the responsibility of ensuring that the sizes are
7871 evaluated both early and late enough, e.g. by attaching artificial
7872 type declarations to the tree. */
7873 break;
7875 default:
7876 break;
7879 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
7880 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
7882 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7884 TYPE_SIZE (t) = TYPE_SIZE (type);
7885 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
7886 TYPE_SIZES_GIMPLIFIED (t) = 1;
7890 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
7891 a size or position, has had all of its SAVE_EXPRs evaluated.
7892 We add any required statements to *STMT_P. */
7894 void
7895 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
7897 tree type, expr = *expr_p;
7899 /* We don't do anything if the value isn't there, is constant, or contains
7900 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
7901 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
7902 will want to replace it with a new variable, but that will cause problems
7903 if this type is from outside the function. It's OK to have that here. */
7904 if (expr == NULL_TREE || TREE_CONSTANT (expr)
7905 || TREE_CODE (expr) == VAR_DECL
7906 || CONTAINS_PLACEHOLDER_P (expr))
7907 return;
7909 type = TREE_TYPE (expr);
7910 *expr_p = unshare_expr (expr);
7912 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
7913 expr = *expr_p;
7915 /* Verify that we've an exact type match with the original expression.
7916 In particular, we do not wish to drop a "sizetype" in favour of a
7917 type of similar dimensions. We don't want to pollute the generic
7918 type-stripping code with this knowledge because it doesn't matter
7919 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
7920 and friends retain their "sizetype-ness". */
7921 if (TREE_TYPE (expr) != type
7922 && TREE_CODE (type) == INTEGER_TYPE
7923 && TYPE_IS_SIZETYPE (type))
7925 tree tmp;
7926 gimple stmt;
7928 *expr_p = create_tmp_var (type, NULL);
7929 tmp = build1 (NOP_EXPR, type, expr);
7930 stmt = gimplify_assign (*expr_p, tmp, stmt_p);
7931 gimple_set_location (stmt, EXPR_LOC_OR_HERE (expr));
7935 /* Gimplify the body of statements pointed to by BODY_P and return a
7936 GIMPLE_BIND containing the sequence of GIMPLE statements
7937 corresponding to BODY_P. FNDECL is the function decl containing
7938 *BODY_P. */
7940 gimple
7941 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
7943 location_t saved_location = input_location;
7944 gimple_seq parm_stmts, seq;
7945 gimple outer_bind;
7946 struct gimplify_ctx gctx;
7947 struct cgraph_node *cgn;
7949 timevar_push (TV_TREE_GIMPLIFY);
7951 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
7952 gimplification. */
7953 default_rtl_profile ();
7955 gcc_assert (gimplify_ctxp == NULL);
7956 push_gimplify_context (&gctx);
7958 /* Unshare most shared trees in the body and in that of any nested functions.
7959 It would seem we don't have to do this for nested functions because
7960 they are supposed to be output and then the outer function gimplified
7961 first, but the g++ front end doesn't always do it that way. */
7962 unshare_body (body_p, fndecl);
7963 unvisit_body (body_p, fndecl);
7965 cgn = cgraph_get_node (fndecl);
7966 if (cgn && cgn->origin)
7967 nonlocal_vlas = pointer_set_create ();
7969 /* Make sure input_location isn't set to something weird. */
7970 input_location = DECL_SOURCE_LOCATION (fndecl);
7972 /* Resolve callee-copies. This has to be done before processing
7973 the body so that DECL_VALUE_EXPR gets processed correctly. */
7974 parm_stmts = (do_parms) ? gimplify_parameters () : NULL;
7976 /* Gimplify the function's body. */
7977 seq = NULL;
7978 gimplify_stmt (body_p, &seq);
7979 outer_bind = gimple_seq_first_stmt (seq);
7980 if (!outer_bind)
7982 outer_bind = gimple_build_nop ();
7983 gimplify_seq_add_stmt (&seq, outer_bind);
7986 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
7987 not the case, wrap everything in a GIMPLE_BIND to make it so. */
7988 if (gimple_code (outer_bind) == GIMPLE_BIND
7989 && gimple_seq_first (seq) == gimple_seq_last (seq))
7991 else
7992 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
7994 *body_p = NULL_TREE;
7996 /* If we had callee-copies statements, insert them at the beginning
7997 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
7998 if (!gimple_seq_empty_p (parm_stmts))
8000 tree parm;
8002 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
8003 gimple_bind_set_body (outer_bind, parm_stmts);
8005 for (parm = DECL_ARGUMENTS (current_function_decl);
8006 parm; parm = DECL_CHAIN (parm))
8007 if (DECL_HAS_VALUE_EXPR_P (parm))
8009 DECL_HAS_VALUE_EXPR_P (parm) = 0;
8010 DECL_IGNORED_P (parm) = 0;
8014 if (nonlocal_vlas)
8016 pointer_set_destroy (nonlocal_vlas);
8017 nonlocal_vlas = NULL;
8020 pop_gimplify_context (outer_bind);
8021 gcc_assert (gimplify_ctxp == NULL);
8023 if (!seen_error ())
8024 verify_gimple_in_seq (gimple_bind_body (outer_bind));
8026 timevar_pop (TV_TREE_GIMPLIFY);
8027 input_location = saved_location;
8029 return outer_bind;
8032 typedef char *char_p; /* For DEF_VEC_P. */
8033 DEF_VEC_P(char_p);
8034 DEF_VEC_ALLOC_P(char_p,heap);
8036 /* Return whether we should exclude FNDECL from instrumentation. */
8038 static bool
8039 flag_instrument_functions_exclude_p (tree fndecl)
8041 VEC(char_p,heap) *vec;
8043 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_functions;
8044 if (VEC_length (char_p, vec) > 0)
8046 const char *name;
8047 int i;
8048 char *s;
8050 name = lang_hooks.decl_printable_name (fndecl, 0);
8051 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8052 if (strstr (name, s) != NULL)
8053 return true;
8056 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_files;
8057 if (VEC_length (char_p, vec) > 0)
8059 const char *name;
8060 int i;
8061 char *s;
8063 name = DECL_SOURCE_FILE (fndecl);
8064 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8065 if (strstr (name, s) != NULL)
8066 return true;
8069 return false;
8072 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8073 node for the function we want to gimplify.
8075 Return the sequence of GIMPLE statements corresponding to the body
8076 of FNDECL. */
8078 void
8079 gimplify_function_tree (tree fndecl)
8081 tree oldfn, parm, ret;
8082 gimple_seq seq;
8083 gimple bind;
8085 gcc_assert (!gimple_body (fndecl));
8087 oldfn = current_function_decl;
8088 current_function_decl = fndecl;
8089 if (DECL_STRUCT_FUNCTION (fndecl))
8090 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
8091 else
8092 push_struct_function (fndecl);
8094 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
8096 /* Preliminarily mark non-addressed complex variables as eligible
8097 for promotion to gimple registers. We'll transform their uses
8098 as we find them. */
8099 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
8100 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
8101 && !TREE_THIS_VOLATILE (parm)
8102 && !needs_to_live_in_memory (parm))
8103 DECL_GIMPLE_REG_P (parm) = 1;
8106 ret = DECL_RESULT (fndecl);
8107 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
8108 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
8109 && !needs_to_live_in_memory (ret))
8110 DECL_GIMPLE_REG_P (ret) = 1;
8112 bind = gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
8114 /* The tree body of the function is no longer needed, replace it
8115 with the new GIMPLE body. */
8116 seq = gimple_seq_alloc ();
8117 gimple_seq_add_stmt (&seq, bind);
8118 gimple_set_body (fndecl, seq);
8120 /* If we're instrumenting function entry/exit, then prepend the call to
8121 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8122 catch the exit hook. */
8123 /* ??? Add some way to ignore exceptions for this TFE. */
8124 if (flag_instrument_function_entry_exit
8125 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
8126 && !flag_instrument_functions_exclude_p (fndecl))
8128 tree x;
8129 gimple new_bind;
8130 gimple tf;
8131 gimple_seq cleanup = NULL, body = NULL;
8132 tree tmp_var;
8133 gimple call;
8135 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8136 call = gimple_build_call (x, 1, integer_zero_node);
8137 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8138 gimple_call_set_lhs (call, tmp_var);
8139 gimplify_seq_add_stmt (&cleanup, call);
8140 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8141 call = gimple_build_call (x, 2,
8142 build_fold_addr_expr (current_function_decl),
8143 tmp_var);
8144 gimplify_seq_add_stmt (&cleanup, call);
8145 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8147 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8148 call = gimple_build_call (x, 1, integer_zero_node);
8149 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8150 gimple_call_set_lhs (call, tmp_var);
8151 gimplify_seq_add_stmt (&body, call);
8152 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8153 call = gimple_build_call (x, 2,
8154 build_fold_addr_expr (current_function_decl),
8155 tmp_var);
8156 gimplify_seq_add_stmt (&body, call);
8157 gimplify_seq_add_stmt (&body, tf);
8158 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8159 /* Clear the block for BIND, since it is no longer directly inside
8160 the function, but within a try block. */
8161 gimple_bind_set_block (bind, NULL);
8163 /* Replace the current function body with the body
8164 wrapped in the try/finally TF. */
8165 seq = gimple_seq_alloc ();
8166 gimple_seq_add_stmt (&seq, new_bind);
8167 gimple_set_body (fndecl, seq);
8170 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8171 cfun->curr_properties = PROP_gimple_any;
8173 current_function_decl = oldfn;
8174 pop_cfun ();
8177 /* Some transformations like inlining may invalidate the GIMPLE form
8178 for operands. This function traverses all the operands in STMT and
8179 gimplifies anything that is not a valid gimple operand. Any new
8180 GIMPLE statements are inserted before *GSI_P. */
8182 void
8183 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8185 size_t i, num_ops;
8186 tree orig_lhs = NULL_TREE, lhs, t;
8187 gimple_seq pre = NULL;
8188 gimple post_stmt = NULL;
8189 struct gimplify_ctx gctx;
8191 push_gimplify_context (&gctx);
8192 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8194 switch (gimple_code (stmt))
8196 case GIMPLE_COND:
8197 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8198 is_gimple_val, fb_rvalue);
8199 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8200 is_gimple_val, fb_rvalue);
8201 break;
8202 case GIMPLE_SWITCH:
8203 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8204 is_gimple_val, fb_rvalue);
8205 break;
8206 case GIMPLE_OMP_ATOMIC_LOAD:
8207 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8208 is_gimple_val, fb_rvalue);
8209 break;
8210 case GIMPLE_ASM:
8212 size_t i, noutputs = gimple_asm_noutputs (stmt);
8213 const char *constraint, **oconstraints;
8214 bool allows_mem, allows_reg, is_inout;
8216 oconstraints
8217 = (const char **) alloca ((noutputs) * sizeof (const char *));
8218 for (i = 0; i < noutputs; i++)
8220 tree op = gimple_asm_output_op (stmt, i);
8221 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8222 oconstraints[i] = constraint;
8223 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8224 &allows_reg, &is_inout);
8225 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8226 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8227 fb_lvalue | fb_mayfail);
8229 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8231 tree op = gimple_asm_input_op (stmt, i);
8232 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8233 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8234 oconstraints, &allows_mem, &allows_reg);
8235 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8236 allows_reg = 0;
8237 if (!allows_reg && allows_mem)
8238 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8239 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8240 else
8241 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8242 is_gimple_asm_val, fb_rvalue);
8245 break;
8246 default:
8247 /* NOTE: We start gimplifying operands from last to first to
8248 make sure that side-effects on the RHS of calls, assignments
8249 and ASMs are executed before the LHS. The ordering is not
8250 important for other statements. */
8251 num_ops = gimple_num_ops (stmt);
8252 orig_lhs = gimple_get_lhs (stmt);
8253 for (i = num_ops; i > 0; i--)
8255 tree op = gimple_op (stmt, i - 1);
8256 if (op == NULL_TREE)
8257 continue;
8258 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8259 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8260 else if (i == 2
8261 && is_gimple_assign (stmt)
8262 && num_ops == 2
8263 && get_gimple_rhs_class (gimple_expr_code (stmt))
8264 == GIMPLE_SINGLE_RHS)
8265 gimplify_expr (&op, &pre, NULL,
8266 rhs_predicate_for (gimple_assign_lhs (stmt)),
8267 fb_rvalue);
8268 else if (i == 2 && is_gimple_call (stmt))
8270 if (TREE_CODE (op) == FUNCTION_DECL)
8271 continue;
8272 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8274 else
8275 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8276 gimple_set_op (stmt, i - 1, op);
8279 lhs = gimple_get_lhs (stmt);
8280 /* If the LHS changed it in a way that requires a simple RHS,
8281 create temporary. */
8282 if (lhs && !is_gimple_reg (lhs))
8284 bool need_temp = false;
8286 if (is_gimple_assign (stmt)
8287 && num_ops == 2
8288 && get_gimple_rhs_class (gimple_expr_code (stmt))
8289 == GIMPLE_SINGLE_RHS)
8290 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8291 rhs_predicate_for (gimple_assign_lhs (stmt)),
8292 fb_rvalue);
8293 else if (is_gimple_reg (lhs))
8295 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8297 if (is_gimple_call (stmt))
8299 i = gimple_call_flags (stmt);
8300 if ((i & ECF_LOOPING_CONST_OR_PURE)
8301 || !(i & (ECF_CONST | ECF_PURE)))
8302 need_temp = true;
8304 if (stmt_can_throw_internal (stmt))
8305 need_temp = true;
8308 else
8310 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8311 need_temp = true;
8312 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8314 if (is_gimple_call (stmt))
8316 tree fndecl = gimple_call_fndecl (stmt);
8318 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8319 && !(fndecl && DECL_RESULT (fndecl)
8320 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8321 need_temp = true;
8323 else
8324 need_temp = true;
8327 if (need_temp)
8329 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8331 if (TREE_CODE (orig_lhs) == SSA_NAME)
8332 orig_lhs = SSA_NAME_VAR (orig_lhs);
8334 if (gimple_in_ssa_p (cfun))
8335 temp = make_ssa_name (temp, NULL);
8336 gimple_set_lhs (stmt, temp);
8337 post_stmt = gimple_build_assign (lhs, temp);
8338 if (TREE_CODE (lhs) == SSA_NAME)
8339 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8342 break;
8345 if (gimple_referenced_vars (cfun))
8346 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
8347 add_referenced_var (t);
8349 if (!gimple_seq_empty_p (pre))
8351 if (gimple_in_ssa_p (cfun))
8353 gimple_stmt_iterator i;
8355 for (i = gsi_start (pre); !gsi_end_p (i); gsi_next (&i))
8356 mark_symbols_for_renaming (gsi_stmt (i));
8358 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8360 if (post_stmt)
8361 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8363 pop_gimplify_context (NULL);
8366 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8367 the predicate that will hold for the result. If VAR is not NULL, make the
8368 base variable of the final destination be VAR if suitable. */
8370 tree
8371 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8372 gimple_predicate gimple_test_f, tree var)
8374 tree t;
8375 enum gimplify_status ret;
8376 struct gimplify_ctx gctx;
8378 *stmts = NULL;
8380 /* gimple_test_f might be more strict than is_gimple_val, make
8381 sure we pass both. Just checking gimple_test_f doesn't work
8382 because most gimple predicates do not work recursively. */
8383 if (is_gimple_val (expr)
8384 && (*gimple_test_f) (expr))
8385 return expr;
8387 push_gimplify_context (&gctx);
8388 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8389 gimplify_ctxp->allow_rhs_cond_expr = true;
8391 if (var)
8392 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8394 if (TREE_CODE (expr) != MODIFY_EXPR
8395 && TREE_TYPE (expr) == void_type_node)
8397 gimplify_and_add (expr, stmts);
8398 expr = NULL_TREE;
8400 else
8402 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8403 gcc_assert (ret != GS_ERROR);
8406 if (gimple_referenced_vars (cfun))
8407 for (t = gimplify_ctxp->temps; t ; t = DECL_CHAIN (t))
8408 add_referenced_var (t);
8410 pop_gimplify_context (NULL);
8412 return expr;
8415 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8416 force the result to be either ssa_name or an invariant, otherwise
8417 just force it to be a rhs expression. If VAR is not NULL, make the
8418 base variable of the final destination be VAR if suitable. */
8420 tree
8421 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8423 return force_gimple_operand_1 (expr, stmts,
8424 simple ? is_gimple_val : is_gimple_reg_rhs,
8425 var);
8428 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8429 and VAR. If some statements are produced, emits them at GSI.
8430 If BEFORE is true. the statements are appended before GSI, otherwise
8431 they are appended after it. M specifies the way GSI moves after
8432 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8434 tree
8435 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8436 gimple_predicate gimple_test_f,
8437 tree var, bool before,
8438 enum gsi_iterator_update m)
8440 gimple_seq stmts;
8442 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8444 if (!gimple_seq_empty_p (stmts))
8446 if (gimple_in_ssa_p (cfun))
8448 gimple_stmt_iterator i;
8450 for (i = gsi_start (stmts); !gsi_end_p (i); gsi_next (&i))
8451 mark_symbols_for_renaming (gsi_stmt (i));
8454 if (before)
8455 gsi_insert_seq_before (gsi, stmts, m);
8456 else
8457 gsi_insert_seq_after (gsi, stmts, m);
8460 return expr;
8463 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8464 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8465 otherwise just force it to be a rhs expression. If some statements are
8466 produced, emits them at GSI. If BEFORE is true, the statements are
8467 appended before GSI, otherwise they are appended after it. M specifies
8468 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8469 are the usual values). */
8471 tree
8472 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8473 bool simple_p, tree var, bool before,
8474 enum gsi_iterator_update m)
8476 return force_gimple_operand_gsi_1 (gsi, expr,
8477 simple_p
8478 ? is_gimple_val : is_gimple_reg_rhs,
8479 var, before, m);
8483 #include "gt-gimplify.h"