Restore 2012 entries that hasn't been saved.
[official-gcc.git] / gcc / gimplify.c
blob5f2cbf3c7695605a8a5bfb03d46bc5f4b3ec8a68
1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
4 2012 Free Software Foundation, Inc.
5 Major work done by Sebastian Pop <s.pop@laposte.net>,
6 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "tree-iterator.h"
31 #include "tree-inline.h"
32 #include "tree-pretty-print.h"
33 #include "langhooks.h"
34 #include "tree-flow.h"
35 #include "cgraph.h"
36 #include "timevar.h"
37 #include "hashtab.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "output.h"
41 #include "ggc.h"
42 #include "diagnostic-core.h"
43 #include "target.h"
44 #include "pointer-set.h"
45 #include "splay-tree.h"
46 #include "vec.h"
47 #include "gimple.h"
48 #include "tree-pass.h"
50 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name. */
51 #include "expr.h" /* FIXME: for can_move_by_pieces
52 and STACK_CHECK_MAX_VAR_SIZE. */
54 enum gimplify_omp_var_data
56 GOVD_SEEN = 1,
57 GOVD_EXPLICIT = 2,
58 GOVD_SHARED = 4,
59 GOVD_PRIVATE = 8,
60 GOVD_FIRSTPRIVATE = 16,
61 GOVD_LASTPRIVATE = 32,
62 GOVD_REDUCTION = 64,
63 GOVD_LOCAL = 128,
64 GOVD_DEBUG_PRIVATE = 256,
65 GOVD_PRIVATE_OUTER_REF = 512,
66 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
67 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
71 enum omp_region_type
73 ORT_WORKSHARE = 0,
74 ORT_PARALLEL = 2,
75 ORT_COMBINED_PARALLEL = 3,
76 ORT_TASK = 4,
77 ORT_UNTIED_TASK = 5
80 struct gimplify_omp_ctx
82 struct gimplify_omp_ctx *outer_context;
83 splay_tree variables;
84 struct pointer_set_t *privatized_types;
85 location_t location;
86 enum omp_clause_default_kind default_kind;
87 enum omp_region_type region_type;
90 static struct gimplify_ctx *gimplify_ctxp;
91 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
94 /* Formal (expression) temporary table handling: multiple occurrences of
95 the same scalar expression are evaluated into the same temporary. */
97 typedef struct gimple_temp_hash_elt
99 tree val; /* Key */
100 tree temp; /* Value */
101 } elt_t;
103 /* Forward declaration. */
104 static enum gimplify_status gimplify_compound_expr (tree *, gimple_seq *, bool);
106 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
107 form and we don't do any syntax checking. */
109 void
110 mark_addressable (tree x)
112 while (handled_component_p (x))
113 x = TREE_OPERAND (x, 0);
114 if (TREE_CODE (x) == MEM_REF
115 && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
116 x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
117 if (TREE_CODE (x) != VAR_DECL
118 && TREE_CODE (x) != PARM_DECL
119 && TREE_CODE (x) != RESULT_DECL)
120 return;
121 TREE_ADDRESSABLE (x) = 1;
124 /* Return a hash value for a formal temporary table entry. */
126 static hashval_t
127 gimple_tree_hash (const void *p)
129 tree t = ((const elt_t *) p)->val;
130 return iterative_hash_expr (t, 0);
133 /* Compare two formal temporary table entries. */
135 static int
136 gimple_tree_eq (const void *p1, const void *p2)
138 tree t1 = ((const elt_t *) p1)->val;
139 tree t2 = ((const elt_t *) p2)->val;
140 enum tree_code code = TREE_CODE (t1);
142 if (TREE_CODE (t2) != code
143 || TREE_TYPE (t1) != TREE_TYPE (t2))
144 return 0;
146 if (!operand_equal_p (t1, t2, 0))
147 return 0;
149 #ifdef ENABLE_CHECKING
150 /* Only allow them to compare equal if they also hash equal; otherwise
151 results are nondeterminate, and we fail bootstrap comparison. */
152 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
153 #endif
155 return 1;
158 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
159 *SEQ_P is NULL, a new sequence is allocated. This function is
160 similar to gimple_seq_add_stmt, but does not scan the operands.
161 During gimplification, we need to manipulate statement sequences
162 before the def/use vectors have been constructed. */
164 void
165 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple gs)
167 gimple_stmt_iterator si;
169 if (gs == NULL)
170 return;
172 if (*seq_p == NULL)
173 *seq_p = gimple_seq_alloc ();
175 si = gsi_last (*seq_p);
177 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
180 /* Shorter alias name for the above function for use in gimplify.c
181 only. */
183 static inline void
184 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
186 gimple_seq_add_stmt_without_update (seq_p, gs);
189 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
190 NULL, a new sequence is allocated. This function is
191 similar to gimple_seq_add_seq, but does not scan the operands.
192 During gimplification, we need to manipulate statement sequences
193 before the def/use vectors have been constructed. */
195 static void
196 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
198 gimple_stmt_iterator si;
200 if (src == NULL)
201 return;
203 if (*dst_p == NULL)
204 *dst_p = gimple_seq_alloc ();
206 si = gsi_last (*dst_p);
207 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
210 /* Set up a context for the gimplifier. */
212 void
213 push_gimplify_context (struct gimplify_ctx *c)
215 memset (c, '\0', sizeof (*c));
216 c->prev_context = gimplify_ctxp;
217 gimplify_ctxp = c;
220 /* Tear down a context for the gimplifier. If BODY is non-null, then
221 put the temporaries into the outer BIND_EXPR. Otherwise, put them
222 in the local_decls.
224 BODY is not a sequence, but the first tuple in a sequence. */
226 void
227 pop_gimplify_context (gimple body)
229 struct gimplify_ctx *c = gimplify_ctxp;
231 gcc_assert (c && (c->bind_expr_stack == NULL
232 || VEC_empty (gimple, c->bind_expr_stack)));
233 VEC_free (gimple, heap, c->bind_expr_stack);
234 gimplify_ctxp = c->prev_context;
236 if (body)
237 declare_vars (c->temps, body, false);
238 else
239 record_vars (c->temps);
241 if (c->temp_htab)
242 htab_delete (c->temp_htab);
245 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
247 static void
248 gimple_push_bind_expr (gimple gimple_bind)
250 if (gimplify_ctxp->bind_expr_stack == NULL)
251 gimplify_ctxp->bind_expr_stack = VEC_alloc (gimple, heap, 8);
252 VEC_safe_push (gimple, heap, gimplify_ctxp->bind_expr_stack, gimple_bind);
255 /* Pop the first element off the stack of bindings. */
257 static void
258 gimple_pop_bind_expr (void)
260 VEC_pop (gimple, gimplify_ctxp->bind_expr_stack);
263 /* Return the first element of the stack of bindings. */
265 gimple
266 gimple_current_bind_expr (void)
268 return VEC_last (gimple, gimplify_ctxp->bind_expr_stack);
271 /* Return the stack of bindings created during gimplification. */
273 VEC(gimple, heap) *
274 gimple_bind_expr_stack (void)
276 return gimplify_ctxp->bind_expr_stack;
279 /* Return true iff there is a COND_EXPR between us and the innermost
280 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
282 static bool
283 gimple_conditional_context (void)
285 return gimplify_ctxp->conditions > 0;
288 /* Note that we've entered a COND_EXPR. */
290 static void
291 gimple_push_condition (void)
293 #ifdef ENABLE_GIMPLE_CHECKING
294 if (gimplify_ctxp->conditions == 0)
295 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
296 #endif
297 ++(gimplify_ctxp->conditions);
300 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
301 now, add any conditional cleanups we've seen to the prequeue. */
303 static void
304 gimple_pop_condition (gimple_seq *pre_p)
306 int conds = --(gimplify_ctxp->conditions);
308 gcc_assert (conds >= 0);
309 if (conds == 0)
311 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
312 gimplify_ctxp->conditional_cleanups = NULL;
316 /* A stable comparison routine for use with splay trees and DECLs. */
318 static int
319 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
321 tree a = (tree) xa;
322 tree b = (tree) xb;
324 return DECL_UID (a) - DECL_UID (b);
327 /* Create a new omp construct that deals with variable remapping. */
329 static struct gimplify_omp_ctx *
330 new_omp_context (enum omp_region_type region_type)
332 struct gimplify_omp_ctx *c;
334 c = XCNEW (struct gimplify_omp_ctx);
335 c->outer_context = gimplify_omp_ctxp;
336 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
337 c->privatized_types = pointer_set_create ();
338 c->location = input_location;
339 c->region_type = region_type;
340 if ((region_type & ORT_TASK) == 0)
341 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
342 else
343 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
345 return c;
348 /* Destroy an omp construct that deals with variable remapping. */
350 static void
351 delete_omp_context (struct gimplify_omp_ctx *c)
353 splay_tree_delete (c->variables);
354 pointer_set_destroy (c->privatized_types);
355 XDELETE (c);
358 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
359 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
361 /* Both gimplify the statement T and append it to *SEQ_P. This function
362 behaves exactly as gimplify_stmt, but you don't have to pass T as a
363 reference. */
365 void
366 gimplify_and_add (tree t, gimple_seq *seq_p)
368 gimplify_stmt (&t, seq_p);
371 /* Gimplify statement T into sequence *SEQ_P, and return the first
372 tuple in the sequence of generated tuples for this statement.
373 Return NULL if gimplifying T produced no tuples. */
375 static gimple
376 gimplify_and_return_first (tree t, gimple_seq *seq_p)
378 gimple_stmt_iterator last = gsi_last (*seq_p);
380 gimplify_and_add (t, seq_p);
382 if (!gsi_end_p (last))
384 gsi_next (&last);
385 return gsi_stmt (last);
387 else
388 return gimple_seq_first_stmt (*seq_p);
391 /* Strip off a legitimate source ending from the input string NAME of
392 length LEN. Rather than having to know the names used by all of
393 our front ends, we strip off an ending of a period followed by
394 up to five characters. (Java uses ".class".) */
396 static inline void
397 remove_suffix (char *name, int len)
399 int i;
401 for (i = 2; i < 8 && len > i; i++)
403 if (name[len - i] == '.')
405 name[len - i] = '\0';
406 break;
411 /* Create a new temporary name with PREFIX. Return an identifier. */
413 static GTY(()) unsigned int tmp_var_id_num;
415 tree
416 create_tmp_var_name (const char *prefix)
418 char *tmp_name;
420 if (prefix)
422 char *preftmp = ASTRDUP (prefix);
424 remove_suffix (preftmp, strlen (preftmp));
425 clean_symbol_name (preftmp);
427 prefix = preftmp;
430 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
431 return get_identifier (tmp_name);
434 /* Create a new temporary variable declaration of type TYPE.
435 Do NOT push it into the current binding. */
437 tree
438 create_tmp_var_raw (tree type, const char *prefix)
440 tree tmp_var;
442 tmp_var = build_decl (input_location,
443 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
444 type);
446 /* The variable was declared by the compiler. */
447 DECL_ARTIFICIAL (tmp_var) = 1;
448 /* And we don't want debug info for it. */
449 DECL_IGNORED_P (tmp_var) = 1;
451 /* Make the variable writable. */
452 TREE_READONLY (tmp_var) = 0;
454 DECL_EXTERNAL (tmp_var) = 0;
455 TREE_STATIC (tmp_var) = 0;
456 TREE_USED (tmp_var) = 1;
458 return tmp_var;
461 /* Create a new temporary variable declaration of type TYPE. DO push the
462 variable into the current binding. Further, assume that this is called
463 only from gimplification or optimization, at which point the creation of
464 certain types are bugs. */
466 tree
467 create_tmp_var (tree type, const char *prefix)
469 tree tmp_var;
471 /* We don't allow types that are addressable (meaning we can't make copies),
472 or incomplete. We also used to reject every variable size objects here,
473 but now support those for which a constant upper bound can be obtained.
474 The processing for variable sizes is performed in gimple_add_tmp_var,
475 point at which it really matters and possibly reached via paths not going
476 through this function, e.g. after direct calls to create_tmp_var_raw. */
477 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
479 tmp_var = create_tmp_var_raw (type, prefix);
480 gimple_add_tmp_var (tmp_var);
481 return tmp_var;
484 /* Create a new temporary variable declaration of type TYPE by calling
485 create_tmp_var and if TYPE is a vector or a complex number, mark the new
486 temporary as gimple register. */
488 tree
489 create_tmp_reg (tree type, const char *prefix)
491 tree tmp;
493 tmp = create_tmp_var (type, prefix);
494 if (TREE_CODE (type) == COMPLEX_TYPE
495 || TREE_CODE (type) == VECTOR_TYPE)
496 DECL_GIMPLE_REG_P (tmp) = 1;
498 return tmp;
501 /* Create a temporary with a name derived from VAL. Subroutine of
502 lookup_tmp_var; nobody else should call this function. */
504 static inline tree
505 create_tmp_from_val (tree val)
507 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 bool old_in_cleanup_point_expr = gimplify_ctxp->in_cleanup_point_expr;
5230 gimplify_ctxp->conditions = 0;
5231 gimplify_ctxp->conditional_cleanups = NULL;
5232 gimplify_ctxp->in_cleanup_point_expr = true;
5234 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5236 gimplify_ctxp->conditions = old_conds;
5237 gimplify_ctxp->conditional_cleanups = old_cleanups;
5238 gimplify_ctxp->in_cleanup_point_expr = old_in_cleanup_point_expr;
5240 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5242 gimple wce = gsi_stmt (iter);
5244 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5246 if (gsi_one_before_end_p (iter))
5248 /* Note that gsi_insert_seq_before and gsi_remove do not
5249 scan operands, unlike some other sequence mutators. */
5250 if (!gimple_wce_cleanup_eh_only (wce))
5251 gsi_insert_seq_before_without_update (&iter,
5252 gimple_wce_cleanup (wce),
5253 GSI_SAME_STMT);
5254 gsi_remove (&iter, true);
5255 break;
5257 else
5259 gimple gtry;
5260 gimple_seq seq;
5261 enum gimple_try_flags kind;
5263 if (gimple_wce_cleanup_eh_only (wce))
5264 kind = GIMPLE_TRY_CATCH;
5265 else
5266 kind = GIMPLE_TRY_FINALLY;
5267 seq = gsi_split_seq_after (iter);
5269 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5270 /* Do not use gsi_replace here, as it may scan operands.
5271 We want to do a simple structural modification only. */
5272 *gsi_stmt_ptr (&iter) = gtry;
5273 iter = gsi_start (seq);
5276 else
5277 gsi_next (&iter);
5280 gimplify_seq_add_seq (pre_p, body_sequence);
5281 if (temp)
5283 *expr_p = temp;
5284 return GS_OK;
5286 else
5288 *expr_p = NULL;
5289 return GS_ALL_DONE;
5293 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5294 is the cleanup action required. EH_ONLY is true if the cleanup should
5295 only be executed if an exception is thrown, not on normal exit. */
5297 static void
5298 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5300 gimple wce;
5301 gimple_seq cleanup_stmts = NULL;
5303 /* Errors can result in improperly nested cleanups. Which results in
5304 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5305 if (seen_error ())
5306 return;
5308 if (gimple_conditional_context ())
5310 /* If we're in a conditional context, this is more complex. We only
5311 want to run the cleanup if we actually ran the initialization that
5312 necessitates it, but we want to run it after the end of the
5313 conditional context. So we wrap the try/finally around the
5314 condition and use a flag to determine whether or not to actually
5315 run the destructor. Thus
5317 test ? f(A()) : 0
5319 becomes (approximately)
5321 flag = 0;
5322 try {
5323 if (test) { A::A(temp); flag = 1; val = f(temp); }
5324 else { val = 0; }
5325 } finally {
5326 if (flag) A::~A(temp);
5330 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5331 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5332 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5334 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5335 gimplify_stmt (&cleanup, &cleanup_stmts);
5336 wce = gimple_build_wce (cleanup_stmts);
5338 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5339 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5340 gimplify_seq_add_stmt (pre_p, ftrue);
5342 /* Because of this manipulation, and the EH edges that jump
5343 threading cannot redirect, the temporary (VAR) will appear
5344 to be used uninitialized. Don't warn. */
5345 TREE_NO_WARNING (var) = 1;
5347 else
5349 gimplify_stmt (&cleanup, &cleanup_stmts);
5350 wce = gimple_build_wce (cleanup_stmts);
5351 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5352 gimplify_seq_add_stmt (pre_p, wce);
5356 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5358 static enum gimplify_status
5359 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5361 tree targ = *expr_p;
5362 tree temp = TARGET_EXPR_SLOT (targ);
5363 tree init = TARGET_EXPR_INITIAL (targ);
5364 enum gimplify_status ret;
5366 if (init)
5368 tree cleanup = NULL_TREE;
5370 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5371 to the temps list. Handle also variable length TARGET_EXPRs. */
5372 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5374 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5375 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5376 gimplify_vla_decl (temp, pre_p);
5378 else
5379 gimple_add_tmp_var (temp);
5381 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5382 expression is supposed to initialize the slot. */
5383 if (VOID_TYPE_P (TREE_TYPE (init)))
5384 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5385 else
5387 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5388 init = init_expr;
5389 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5390 init = NULL;
5391 ggc_free (init_expr);
5393 if (ret == GS_ERROR)
5395 /* PR c++/28266 Make sure this is expanded only once. */
5396 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5397 return GS_ERROR;
5399 if (init)
5400 gimplify_and_add (init, pre_p);
5402 /* If needed, push the cleanup for the temp. */
5403 if (TARGET_EXPR_CLEANUP (targ))
5405 if (CLEANUP_EH_ONLY (targ))
5406 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5407 CLEANUP_EH_ONLY (targ), pre_p);
5408 else
5409 cleanup = TARGET_EXPR_CLEANUP (targ);
5412 /* Add a clobber for the temporary going out of scope, like
5413 gimplify_bind_expr. */
5414 if (gimplify_ctxp->in_cleanup_point_expr
5415 && needs_to_live_in_memory (temp))
5417 tree clobber = build_constructor (TREE_TYPE (temp), NULL);
5418 TREE_THIS_VOLATILE (clobber) = true;
5419 clobber = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, clobber);
5420 if (cleanup)
5421 cleanup = build2 (COMPOUND_EXPR, void_type_node, cleanup,
5422 clobber);
5423 else
5424 cleanup = clobber;
5427 if (cleanup)
5428 gimple_push_cleanup (temp, cleanup, false, pre_p);
5430 /* Only expand this once. */
5431 TREE_OPERAND (targ, 3) = init;
5432 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5434 else
5435 /* We should have expanded this before. */
5436 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5438 *expr_p = temp;
5439 return GS_OK;
5442 /* Gimplification of expression trees. */
5444 /* Gimplify an expression which appears at statement context. The
5445 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5446 NULL, a new sequence is allocated.
5448 Return true if we actually added a statement to the queue. */
5450 bool
5451 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5453 gimple_seq_node last;
5455 if (!*seq_p)
5456 *seq_p = gimple_seq_alloc ();
5458 last = gimple_seq_last (*seq_p);
5459 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5460 return last != gimple_seq_last (*seq_p);
5463 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5464 to CTX. If entries already exist, force them to be some flavor of private.
5465 If there is no enclosing parallel, do nothing. */
5467 void
5468 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5470 splay_tree_node n;
5472 if (decl == NULL || !DECL_P (decl))
5473 return;
5477 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5478 if (n != NULL)
5480 if (n->value & GOVD_SHARED)
5481 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5482 else
5483 return;
5485 else if (ctx->region_type != ORT_WORKSHARE)
5486 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5488 ctx = ctx->outer_context;
5490 while (ctx);
5493 /* Similarly for each of the type sizes of TYPE. */
5495 static void
5496 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5498 if (type == NULL || type == error_mark_node)
5499 return;
5500 type = TYPE_MAIN_VARIANT (type);
5502 if (pointer_set_insert (ctx->privatized_types, type))
5503 return;
5505 switch (TREE_CODE (type))
5507 case INTEGER_TYPE:
5508 case ENUMERAL_TYPE:
5509 case BOOLEAN_TYPE:
5510 case REAL_TYPE:
5511 case FIXED_POINT_TYPE:
5512 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5513 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5514 break;
5516 case ARRAY_TYPE:
5517 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5518 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5519 break;
5521 case RECORD_TYPE:
5522 case UNION_TYPE:
5523 case QUAL_UNION_TYPE:
5525 tree field;
5526 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5527 if (TREE_CODE (field) == FIELD_DECL)
5529 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5530 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5533 break;
5535 case POINTER_TYPE:
5536 case REFERENCE_TYPE:
5537 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5538 break;
5540 default:
5541 break;
5544 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5545 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5546 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5549 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5551 static void
5552 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5554 splay_tree_node n;
5555 unsigned int nflags;
5556 tree t;
5558 if (error_operand_p (decl))
5559 return;
5561 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5562 there are constructors involved somewhere. */
5563 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5564 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5565 flags |= GOVD_SEEN;
5567 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5568 if (n != NULL)
5570 /* We shouldn't be re-adding the decl with the same data
5571 sharing class. */
5572 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5573 /* The only combination of data sharing classes we should see is
5574 FIRSTPRIVATE and LASTPRIVATE. */
5575 nflags = n->value | flags;
5576 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5577 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5578 n->value = nflags;
5579 return;
5582 /* When adding a variable-sized variable, we have to handle all sorts
5583 of additional bits of data: the pointer replacement variable, and
5584 the parameters of the type. */
5585 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5587 /* Add the pointer replacement variable as PRIVATE if the variable
5588 replacement is private, else FIRSTPRIVATE since we'll need the
5589 address of the original variable either for SHARED, or for the
5590 copy into or out of the context. */
5591 if (!(flags & GOVD_LOCAL))
5593 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5594 nflags |= flags & GOVD_SEEN;
5595 t = DECL_VALUE_EXPR (decl);
5596 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5597 t = TREE_OPERAND (t, 0);
5598 gcc_assert (DECL_P (t));
5599 omp_add_variable (ctx, t, nflags);
5602 /* Add all of the variable and type parameters (which should have
5603 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5604 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5605 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5606 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5608 /* The variable-sized variable itself is never SHARED, only some form
5609 of PRIVATE. The sharing would take place via the pointer variable
5610 which we remapped above. */
5611 if (flags & GOVD_SHARED)
5612 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5613 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5615 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5616 alloca statement we generate for the variable, so make sure it
5617 is available. This isn't automatically needed for the SHARED
5618 case, since we won't be allocating local storage then.
5619 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5620 in this case omp_notice_variable will be called later
5621 on when it is gimplified. */
5622 else if (! (flags & GOVD_LOCAL)
5623 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5624 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5626 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5628 gcc_assert ((flags & GOVD_LOCAL) == 0);
5629 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5631 /* Similar to the direct variable sized case above, we'll need the
5632 size of references being privatized. */
5633 if ((flags & GOVD_SHARED) == 0)
5635 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5636 if (TREE_CODE (t) != INTEGER_CST)
5637 omp_notice_variable (ctx, t, true);
5641 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5644 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5645 This just prints out diagnostics about threadprivate variable uses
5646 in untied tasks. If DECL2 is non-NULL, prevent this warning
5647 on that variable. */
5649 static bool
5650 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5651 tree decl2)
5653 splay_tree_node n;
5655 if (ctx->region_type != ORT_UNTIED_TASK)
5656 return false;
5657 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5658 if (n == NULL)
5660 error ("threadprivate variable %qE used in untied task",
5661 DECL_NAME (decl));
5662 error_at (ctx->location, "enclosing task");
5663 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5665 if (decl2)
5666 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5667 return false;
5670 /* Record the fact that DECL was used within the OpenMP context CTX.
5671 IN_CODE is true when real code uses DECL, and false when we should
5672 merely emit default(none) errors. Return true if DECL is going to
5673 be remapped and thus DECL shouldn't be gimplified into its
5674 DECL_VALUE_EXPR (if any). */
5676 static bool
5677 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5679 splay_tree_node n;
5680 unsigned flags = in_code ? GOVD_SEEN : 0;
5681 bool ret = false, shared;
5683 if (error_operand_p (decl))
5684 return false;
5686 /* Threadprivate variables are predetermined. */
5687 if (is_global_var (decl))
5689 if (DECL_THREAD_LOCAL_P (decl))
5690 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5692 if (DECL_HAS_VALUE_EXPR_P (decl))
5694 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5696 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5697 return omp_notice_threadprivate_variable (ctx, decl, value);
5701 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5702 if (n == NULL)
5704 enum omp_clause_default_kind default_kind, kind;
5705 struct gimplify_omp_ctx *octx;
5707 if (ctx->region_type == ORT_WORKSHARE)
5708 goto do_outer;
5710 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5711 remapped firstprivate instead of shared. To some extent this is
5712 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5713 default_kind = ctx->default_kind;
5714 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5715 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5716 default_kind = kind;
5718 switch (default_kind)
5720 case OMP_CLAUSE_DEFAULT_NONE:
5721 error ("%qE not specified in enclosing parallel",
5722 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5723 if ((ctx->region_type & ORT_TASK) != 0)
5724 error_at (ctx->location, "enclosing task");
5725 else
5726 error_at (ctx->location, "enclosing parallel");
5727 /* FALLTHRU */
5728 case OMP_CLAUSE_DEFAULT_SHARED:
5729 flags |= GOVD_SHARED;
5730 break;
5731 case OMP_CLAUSE_DEFAULT_PRIVATE:
5732 flags |= GOVD_PRIVATE;
5733 break;
5734 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5735 flags |= GOVD_FIRSTPRIVATE;
5736 break;
5737 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5738 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5739 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5740 if (ctx->outer_context)
5741 omp_notice_variable (ctx->outer_context, decl, in_code);
5742 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5744 splay_tree_node n2;
5746 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5747 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5749 flags |= GOVD_FIRSTPRIVATE;
5750 break;
5752 if ((octx->region_type & ORT_PARALLEL) != 0)
5753 break;
5755 if (flags & GOVD_FIRSTPRIVATE)
5756 break;
5757 if (octx == NULL
5758 && (TREE_CODE (decl) == PARM_DECL
5759 || (!is_global_var (decl)
5760 && DECL_CONTEXT (decl) == current_function_decl)))
5762 flags |= GOVD_FIRSTPRIVATE;
5763 break;
5765 flags |= GOVD_SHARED;
5766 break;
5767 default:
5768 gcc_unreachable ();
5771 if ((flags & GOVD_PRIVATE)
5772 && lang_hooks.decls.omp_private_outer_ref (decl))
5773 flags |= GOVD_PRIVATE_OUTER_REF;
5775 omp_add_variable (ctx, decl, flags);
5777 shared = (flags & GOVD_SHARED) != 0;
5778 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5779 goto do_outer;
5782 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
5783 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
5784 && DECL_SIZE (decl)
5785 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5787 splay_tree_node n2;
5788 tree t = DECL_VALUE_EXPR (decl);
5789 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5790 t = TREE_OPERAND (t, 0);
5791 gcc_assert (DECL_P (t));
5792 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
5793 n2->value |= GOVD_SEEN;
5796 shared = ((flags | n->value) & GOVD_SHARED) != 0;
5797 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5799 /* If nothing changed, there's nothing left to do. */
5800 if ((n->value & flags) == flags)
5801 return ret;
5802 flags |= n->value;
5803 n->value = flags;
5805 do_outer:
5806 /* If the variable is private in the current context, then we don't
5807 need to propagate anything to an outer context. */
5808 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
5809 return ret;
5810 if (ctx->outer_context
5811 && omp_notice_variable (ctx->outer_context, decl, in_code))
5812 return true;
5813 return ret;
5816 /* Verify that DECL is private within CTX. If there's specific information
5817 to the contrary in the innermost scope, generate an error. */
5819 static bool
5820 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
5822 splay_tree_node n;
5824 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5825 if (n != NULL)
5827 if (n->value & GOVD_SHARED)
5829 if (ctx == gimplify_omp_ctxp)
5831 error ("iteration variable %qE should be private",
5832 DECL_NAME (decl));
5833 n->value = GOVD_PRIVATE;
5834 return true;
5836 else
5837 return false;
5839 else if ((n->value & GOVD_EXPLICIT) != 0
5840 && (ctx == gimplify_omp_ctxp
5841 || (ctx->region_type == ORT_COMBINED_PARALLEL
5842 && gimplify_omp_ctxp->outer_context == ctx)))
5844 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
5845 error ("iteration variable %qE should not be firstprivate",
5846 DECL_NAME (decl));
5847 else if ((n->value & GOVD_REDUCTION) != 0)
5848 error ("iteration variable %qE should not be reduction",
5849 DECL_NAME (decl));
5851 return (ctx == gimplify_omp_ctxp
5852 || (ctx->region_type == ORT_COMBINED_PARALLEL
5853 && gimplify_omp_ctxp->outer_context == ctx));
5856 if (ctx->region_type != ORT_WORKSHARE)
5857 return false;
5858 else if (ctx->outer_context)
5859 return omp_is_private (ctx->outer_context, decl);
5860 return false;
5863 /* Return true if DECL is private within a parallel region
5864 that binds to the current construct's context or in parallel
5865 region's REDUCTION clause. */
5867 static bool
5868 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
5870 splay_tree_node n;
5874 ctx = ctx->outer_context;
5875 if (ctx == NULL)
5876 return !(is_global_var (decl)
5877 /* References might be private, but might be shared too. */
5878 || lang_hooks.decls.omp_privatize_by_reference (decl));
5880 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5881 if (n != NULL)
5882 return (n->value & GOVD_SHARED) == 0;
5884 while (ctx->region_type == ORT_WORKSHARE);
5885 return false;
5888 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
5889 and previous omp contexts. */
5891 static void
5892 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
5893 enum omp_region_type region_type)
5895 struct gimplify_omp_ctx *ctx, *outer_ctx;
5896 struct gimplify_ctx gctx;
5897 tree c;
5899 ctx = new_omp_context (region_type);
5900 outer_ctx = ctx->outer_context;
5902 while ((c = *list_p) != NULL)
5904 bool remove = false;
5905 bool notice_outer = true;
5906 const char *check_non_private = NULL;
5907 unsigned int flags;
5908 tree decl;
5910 switch (OMP_CLAUSE_CODE (c))
5912 case OMP_CLAUSE_PRIVATE:
5913 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
5914 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
5916 flags |= GOVD_PRIVATE_OUTER_REF;
5917 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
5919 else
5920 notice_outer = false;
5921 goto do_add;
5922 case OMP_CLAUSE_SHARED:
5923 flags = GOVD_SHARED | GOVD_EXPLICIT;
5924 goto do_add;
5925 case OMP_CLAUSE_FIRSTPRIVATE:
5926 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
5927 check_non_private = "firstprivate";
5928 goto do_add;
5929 case OMP_CLAUSE_LASTPRIVATE:
5930 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
5931 check_non_private = "lastprivate";
5932 goto do_add;
5933 case OMP_CLAUSE_REDUCTION:
5934 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
5935 check_non_private = "reduction";
5936 goto do_add;
5938 do_add:
5939 decl = OMP_CLAUSE_DECL (c);
5940 if (error_operand_p (decl))
5942 remove = true;
5943 break;
5945 omp_add_variable (ctx, decl, flags);
5946 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5947 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5949 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
5950 GOVD_LOCAL | GOVD_SEEN);
5951 gimplify_omp_ctxp = ctx;
5952 push_gimplify_context (&gctx);
5954 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = gimple_seq_alloc ();
5955 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = gimple_seq_alloc ();
5957 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
5958 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
5959 pop_gimplify_context
5960 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
5961 push_gimplify_context (&gctx);
5962 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
5963 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
5964 pop_gimplify_context
5965 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
5966 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
5967 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
5969 gimplify_omp_ctxp = outer_ctx;
5971 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5972 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
5974 gimplify_omp_ctxp = ctx;
5975 push_gimplify_context (&gctx);
5976 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
5978 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
5979 NULL, NULL);
5980 TREE_SIDE_EFFECTS (bind) = 1;
5981 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
5982 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
5984 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
5985 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
5986 pop_gimplify_context
5987 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
5988 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
5990 gimplify_omp_ctxp = outer_ctx;
5992 if (notice_outer)
5993 goto do_notice;
5994 break;
5996 case OMP_CLAUSE_COPYIN:
5997 case OMP_CLAUSE_COPYPRIVATE:
5998 decl = OMP_CLAUSE_DECL (c);
5999 if (error_operand_p (decl))
6001 remove = true;
6002 break;
6004 do_notice:
6005 if (outer_ctx)
6006 omp_notice_variable (outer_ctx, decl, true);
6007 if (check_non_private
6008 && region_type == ORT_WORKSHARE
6009 && omp_check_private (ctx, decl))
6011 error ("%s variable %qE is private in outer context",
6012 check_non_private, DECL_NAME (decl));
6013 remove = true;
6015 break;
6017 case OMP_CLAUSE_FINAL:
6018 case OMP_CLAUSE_IF:
6019 OMP_CLAUSE_OPERAND (c, 0)
6020 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
6021 /* Fall through. */
6023 case OMP_CLAUSE_SCHEDULE:
6024 case OMP_CLAUSE_NUM_THREADS:
6025 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
6026 is_gimple_val, fb_rvalue) == GS_ERROR)
6027 remove = true;
6028 break;
6030 case OMP_CLAUSE_NOWAIT:
6031 case OMP_CLAUSE_ORDERED:
6032 case OMP_CLAUSE_UNTIED:
6033 case OMP_CLAUSE_COLLAPSE:
6034 case OMP_CLAUSE_MERGEABLE:
6035 break;
6037 case OMP_CLAUSE_DEFAULT:
6038 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
6039 break;
6041 default:
6042 gcc_unreachable ();
6045 if (remove)
6046 *list_p = OMP_CLAUSE_CHAIN (c);
6047 else
6048 list_p = &OMP_CLAUSE_CHAIN (c);
6051 gimplify_omp_ctxp = ctx;
6054 /* For all variables that were not actually used within the context,
6055 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6057 static int
6058 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
6060 tree *list_p = (tree *) data;
6061 tree decl = (tree) n->key;
6062 unsigned flags = n->value;
6063 enum omp_clause_code code;
6064 tree clause;
6065 bool private_debug;
6067 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
6068 return 0;
6069 if ((flags & GOVD_SEEN) == 0)
6070 return 0;
6071 if (flags & GOVD_DEBUG_PRIVATE)
6073 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
6074 private_debug = true;
6076 else
6077 private_debug
6078 = lang_hooks.decls.omp_private_debug_clause (decl,
6079 !!(flags & GOVD_SHARED));
6080 if (private_debug)
6081 code = OMP_CLAUSE_PRIVATE;
6082 else if (flags & GOVD_SHARED)
6084 if (is_global_var (decl))
6086 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6087 while (ctx != NULL)
6089 splay_tree_node on
6090 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6091 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6092 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6093 break;
6094 ctx = ctx->outer_context;
6096 if (ctx == NULL)
6097 return 0;
6099 code = OMP_CLAUSE_SHARED;
6101 else if (flags & GOVD_PRIVATE)
6102 code = OMP_CLAUSE_PRIVATE;
6103 else if (flags & GOVD_FIRSTPRIVATE)
6104 code = OMP_CLAUSE_FIRSTPRIVATE;
6105 else
6106 gcc_unreachable ();
6108 clause = build_omp_clause (input_location, code);
6109 OMP_CLAUSE_DECL (clause) = decl;
6110 OMP_CLAUSE_CHAIN (clause) = *list_p;
6111 if (private_debug)
6112 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6113 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6114 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6115 *list_p = clause;
6116 lang_hooks.decls.omp_finish_clause (clause);
6118 return 0;
6121 static void
6122 gimplify_adjust_omp_clauses (tree *list_p)
6124 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6125 tree c, decl;
6127 while ((c = *list_p) != NULL)
6129 splay_tree_node n;
6130 bool remove = false;
6132 switch (OMP_CLAUSE_CODE (c))
6134 case OMP_CLAUSE_PRIVATE:
6135 case OMP_CLAUSE_SHARED:
6136 case OMP_CLAUSE_FIRSTPRIVATE:
6137 decl = OMP_CLAUSE_DECL (c);
6138 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6139 remove = !(n->value & GOVD_SEEN);
6140 if (! remove)
6142 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6143 if ((n->value & GOVD_DEBUG_PRIVATE)
6144 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6146 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6147 || ((n->value & GOVD_DATA_SHARE_CLASS)
6148 == GOVD_PRIVATE));
6149 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6150 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6153 break;
6155 case OMP_CLAUSE_LASTPRIVATE:
6156 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6157 accurately reflect the presence of a FIRSTPRIVATE clause. */
6158 decl = OMP_CLAUSE_DECL (c);
6159 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6160 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6161 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6162 break;
6164 case OMP_CLAUSE_REDUCTION:
6165 case OMP_CLAUSE_COPYIN:
6166 case OMP_CLAUSE_COPYPRIVATE:
6167 case OMP_CLAUSE_IF:
6168 case OMP_CLAUSE_NUM_THREADS:
6169 case OMP_CLAUSE_SCHEDULE:
6170 case OMP_CLAUSE_NOWAIT:
6171 case OMP_CLAUSE_ORDERED:
6172 case OMP_CLAUSE_DEFAULT:
6173 case OMP_CLAUSE_UNTIED:
6174 case OMP_CLAUSE_COLLAPSE:
6175 case OMP_CLAUSE_FINAL:
6176 case OMP_CLAUSE_MERGEABLE:
6177 break;
6179 default:
6180 gcc_unreachable ();
6183 if (remove)
6184 *list_p = OMP_CLAUSE_CHAIN (c);
6185 else
6186 list_p = &OMP_CLAUSE_CHAIN (c);
6189 /* Add in any implicit data sharing. */
6190 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6192 gimplify_omp_ctxp = ctx->outer_context;
6193 delete_omp_context (ctx);
6196 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6197 gimplification of the body, as well as scanning the body for used
6198 variables. We need to do this scan now, because variable-sized
6199 decls will be decomposed during gimplification. */
6201 static void
6202 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6204 tree expr = *expr_p;
6205 gimple g;
6206 gimple_seq body = NULL;
6207 struct gimplify_ctx gctx;
6209 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6210 OMP_PARALLEL_COMBINED (expr)
6211 ? ORT_COMBINED_PARALLEL
6212 : ORT_PARALLEL);
6214 push_gimplify_context (&gctx);
6216 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6217 if (gimple_code (g) == GIMPLE_BIND)
6218 pop_gimplify_context (g);
6219 else
6220 pop_gimplify_context (NULL);
6222 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6224 g = gimple_build_omp_parallel (body,
6225 OMP_PARALLEL_CLAUSES (expr),
6226 NULL_TREE, NULL_TREE);
6227 if (OMP_PARALLEL_COMBINED (expr))
6228 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6229 gimplify_seq_add_stmt (pre_p, g);
6230 *expr_p = NULL_TREE;
6233 /* Gimplify the contents of an OMP_TASK statement. This involves
6234 gimplification of the body, as well as scanning the body for used
6235 variables. We need to do this scan now, because variable-sized
6236 decls will be decomposed during gimplification. */
6238 static void
6239 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6241 tree expr = *expr_p;
6242 gimple g;
6243 gimple_seq body = NULL;
6244 struct gimplify_ctx gctx;
6246 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6247 find_omp_clause (OMP_TASK_CLAUSES (expr),
6248 OMP_CLAUSE_UNTIED)
6249 ? ORT_UNTIED_TASK : ORT_TASK);
6251 push_gimplify_context (&gctx);
6253 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6254 if (gimple_code (g) == GIMPLE_BIND)
6255 pop_gimplify_context (g);
6256 else
6257 pop_gimplify_context (NULL);
6259 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6261 g = gimple_build_omp_task (body,
6262 OMP_TASK_CLAUSES (expr),
6263 NULL_TREE, NULL_TREE,
6264 NULL_TREE, NULL_TREE, NULL_TREE);
6265 gimplify_seq_add_stmt (pre_p, g);
6266 *expr_p = NULL_TREE;
6269 /* Gimplify the gross structure of an OMP_FOR statement. */
6271 static enum gimplify_status
6272 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6274 tree for_stmt, decl, var, t;
6275 enum gimplify_status ret = GS_ALL_DONE;
6276 enum gimplify_status tret;
6277 gimple gfor;
6278 gimple_seq for_body, for_pre_body;
6279 int i;
6281 for_stmt = *expr_p;
6283 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6284 ORT_WORKSHARE);
6286 /* Handle OMP_FOR_INIT. */
6287 for_pre_body = NULL;
6288 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6289 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6291 for_body = gimple_seq_alloc ();
6292 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6293 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6294 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6295 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6296 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6298 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6299 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6300 decl = TREE_OPERAND (t, 0);
6301 gcc_assert (DECL_P (decl));
6302 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6303 || POINTER_TYPE_P (TREE_TYPE (decl)));
6305 /* Make sure the iteration variable is private. */
6306 if (omp_is_private (gimplify_omp_ctxp, decl))
6307 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6308 else
6309 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6311 /* If DECL is not a gimple register, create a temporary variable to act
6312 as an iteration counter. This is valid, since DECL cannot be
6313 modified in the body of the loop. */
6314 if (!is_gimple_reg (decl))
6316 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6317 TREE_OPERAND (t, 0) = var;
6319 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6321 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6323 else
6324 var = decl;
6326 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6327 is_gimple_val, fb_rvalue);
6328 ret = MIN (ret, tret);
6329 if (ret == GS_ERROR)
6330 return ret;
6332 /* Handle OMP_FOR_COND. */
6333 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6334 gcc_assert (COMPARISON_CLASS_P (t));
6335 gcc_assert (TREE_OPERAND (t, 0) == decl);
6337 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6338 is_gimple_val, fb_rvalue);
6339 ret = MIN (ret, tret);
6341 /* Handle OMP_FOR_INCR. */
6342 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6343 switch (TREE_CODE (t))
6345 case PREINCREMENT_EXPR:
6346 case POSTINCREMENT_EXPR:
6347 t = build_int_cst (TREE_TYPE (decl), 1);
6348 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6349 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6350 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6351 break;
6353 case PREDECREMENT_EXPR:
6354 case POSTDECREMENT_EXPR:
6355 t = build_int_cst (TREE_TYPE (decl), -1);
6356 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6357 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6358 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6359 break;
6361 case MODIFY_EXPR:
6362 gcc_assert (TREE_OPERAND (t, 0) == decl);
6363 TREE_OPERAND (t, 0) = var;
6365 t = TREE_OPERAND (t, 1);
6366 switch (TREE_CODE (t))
6368 case PLUS_EXPR:
6369 if (TREE_OPERAND (t, 1) == decl)
6371 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6372 TREE_OPERAND (t, 0) = var;
6373 break;
6376 /* Fallthru. */
6377 case MINUS_EXPR:
6378 case POINTER_PLUS_EXPR:
6379 gcc_assert (TREE_OPERAND (t, 0) == decl);
6380 TREE_OPERAND (t, 0) = var;
6381 break;
6382 default:
6383 gcc_unreachable ();
6386 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6387 is_gimple_val, fb_rvalue);
6388 ret = MIN (ret, tret);
6389 break;
6391 default:
6392 gcc_unreachable ();
6395 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6397 tree c;
6398 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6399 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6400 && OMP_CLAUSE_DECL (c) == decl
6401 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6403 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6404 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6405 gcc_assert (TREE_OPERAND (t, 0) == var);
6406 t = TREE_OPERAND (t, 1);
6407 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6408 || TREE_CODE (t) == MINUS_EXPR
6409 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6410 gcc_assert (TREE_OPERAND (t, 0) == var);
6411 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6412 TREE_OPERAND (t, 1));
6413 gimplify_assign (decl, t,
6414 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6419 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6421 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6423 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6424 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6425 for_pre_body);
6427 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6429 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6430 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6431 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6432 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6433 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6434 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6435 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6436 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6439 gimplify_seq_add_stmt (pre_p, gfor);
6440 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6443 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6444 In particular, OMP_SECTIONS and OMP_SINGLE. */
6446 static void
6447 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6449 tree expr = *expr_p;
6450 gimple stmt;
6451 gimple_seq body = NULL;
6453 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6454 gimplify_and_add (OMP_BODY (expr), &body);
6455 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6457 if (TREE_CODE (expr) == OMP_SECTIONS)
6458 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6459 else if (TREE_CODE (expr) == OMP_SINGLE)
6460 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6461 else
6462 gcc_unreachable ();
6464 gimplify_seq_add_stmt (pre_p, stmt);
6467 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6468 stabilized the lhs of the atomic operation as *ADDR. Return true if
6469 EXPR is this stabilized form. */
6471 static bool
6472 goa_lhs_expr_p (tree expr, tree addr)
6474 /* Also include casts to other type variants. The C front end is fond
6475 of adding these for e.g. volatile variables. This is like
6476 STRIP_TYPE_NOPS but includes the main variant lookup. */
6477 STRIP_USELESS_TYPE_CONVERSION (expr);
6479 if (TREE_CODE (expr) == INDIRECT_REF)
6481 expr = TREE_OPERAND (expr, 0);
6482 while (expr != addr
6483 && (CONVERT_EXPR_P (expr)
6484 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6485 && TREE_CODE (expr) == TREE_CODE (addr)
6486 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6488 expr = TREE_OPERAND (expr, 0);
6489 addr = TREE_OPERAND (addr, 0);
6491 if (expr == addr)
6492 return true;
6493 return (TREE_CODE (addr) == ADDR_EXPR
6494 && TREE_CODE (expr) == ADDR_EXPR
6495 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6497 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6498 return true;
6499 return false;
6502 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6503 expression does not involve the lhs, evaluate it into a temporary.
6504 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6505 or -1 if an error was encountered. */
6507 static int
6508 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6509 tree lhs_var)
6511 tree expr = *expr_p;
6512 int saw_lhs;
6514 if (goa_lhs_expr_p (expr, lhs_addr))
6516 *expr_p = lhs_var;
6517 return 1;
6519 if (is_gimple_val (expr))
6520 return 0;
6522 saw_lhs = 0;
6523 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6525 case tcc_binary:
6526 case tcc_comparison:
6527 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6528 lhs_var);
6529 case tcc_unary:
6530 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6531 lhs_var);
6532 break;
6533 case tcc_expression:
6534 switch (TREE_CODE (expr))
6536 case TRUTH_ANDIF_EXPR:
6537 case TRUTH_ORIF_EXPR:
6538 case TRUTH_AND_EXPR:
6539 case TRUTH_OR_EXPR:
6540 case TRUTH_XOR_EXPR:
6541 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6542 lhs_addr, lhs_var);
6543 case TRUTH_NOT_EXPR:
6544 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6545 lhs_addr, lhs_var);
6546 break;
6547 case COMPOUND_EXPR:
6548 /* Break out any preevaluations from cp_build_modify_expr. */
6549 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6550 expr = TREE_OPERAND (expr, 1))
6551 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6552 *expr_p = expr;
6553 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6554 default:
6555 break;
6557 break;
6558 default:
6559 break;
6562 if (saw_lhs == 0)
6564 enum gimplify_status gs;
6565 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6566 if (gs != GS_ALL_DONE)
6567 saw_lhs = -1;
6570 return saw_lhs;
6573 /* Gimplify an OMP_ATOMIC statement. */
6575 static enum gimplify_status
6576 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6578 tree addr = TREE_OPERAND (*expr_p, 0);
6579 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6580 ? NULL : TREE_OPERAND (*expr_p, 1);
6581 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6582 tree tmp_load;
6583 gimple loadstmt, storestmt;
6585 tmp_load = create_tmp_reg (type, NULL);
6586 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6587 return GS_ERROR;
6589 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6590 != GS_ALL_DONE)
6591 return GS_ERROR;
6593 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6594 gimplify_seq_add_stmt (pre_p, loadstmt);
6595 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6596 != GS_ALL_DONE)
6597 return GS_ERROR;
6599 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6600 rhs = tmp_load;
6601 storestmt = gimple_build_omp_atomic_store (rhs);
6602 gimplify_seq_add_stmt (pre_p, storestmt);
6603 switch (TREE_CODE (*expr_p))
6605 case OMP_ATOMIC_READ:
6606 case OMP_ATOMIC_CAPTURE_OLD:
6607 *expr_p = tmp_load;
6608 gimple_omp_atomic_set_need_value (loadstmt);
6609 break;
6610 case OMP_ATOMIC_CAPTURE_NEW:
6611 *expr_p = rhs;
6612 gimple_omp_atomic_set_need_value (storestmt);
6613 break;
6614 default:
6615 *expr_p = NULL;
6616 break;
6619 return GS_ALL_DONE;
6622 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6623 body, and adding some EH bits. */
6625 static enum gimplify_status
6626 gimplify_transaction (tree *expr_p, gimple_seq *pre_p)
6628 tree expr = *expr_p, temp, tbody = TRANSACTION_EXPR_BODY (expr);
6629 gimple g;
6630 gimple_seq body = NULL;
6631 struct gimplify_ctx gctx;
6632 int subcode = 0;
6634 /* Wrap the transaction body in a BIND_EXPR so we have a context
6635 where to put decls for OpenMP. */
6636 if (TREE_CODE (tbody) != BIND_EXPR)
6638 tree bind = build3 (BIND_EXPR, void_type_node, NULL, tbody, NULL);
6639 TREE_SIDE_EFFECTS (bind) = 1;
6640 SET_EXPR_LOCATION (bind, EXPR_LOCATION (tbody));
6641 TRANSACTION_EXPR_BODY (expr) = bind;
6644 push_gimplify_context (&gctx);
6645 temp = voidify_wrapper_expr (*expr_p, NULL);
6647 g = gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr), &body);
6648 pop_gimplify_context (g);
6650 g = gimple_build_transaction (body, NULL);
6651 if (TRANSACTION_EXPR_OUTER (expr))
6652 subcode = GTMA_IS_OUTER;
6653 else if (TRANSACTION_EXPR_RELAXED (expr))
6654 subcode = GTMA_IS_RELAXED;
6655 gimple_transaction_set_subcode (g, subcode);
6657 gimplify_seq_add_stmt (pre_p, g);
6659 if (temp)
6661 *expr_p = temp;
6662 return GS_OK;
6665 *expr_p = NULL_TREE;
6666 return GS_ALL_DONE;
6669 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6670 expression produces a value to be used as an operand inside a GIMPLE
6671 statement, the value will be stored back in *EXPR_P. This value will
6672 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6673 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6674 emitted in PRE_P and POST_P.
6676 Additionally, this process may overwrite parts of the input
6677 expression during gimplification. Ideally, it should be
6678 possible to do non-destructive gimplification.
6680 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6681 the expression needs to evaluate to a value to be used as
6682 an operand in a GIMPLE statement, this value will be stored in
6683 *EXPR_P on exit. This happens when the caller specifies one
6684 of fb_lvalue or fb_rvalue fallback flags.
6686 PRE_P will contain the sequence of GIMPLE statements corresponding
6687 to the evaluation of EXPR and all the side-effects that must
6688 be executed before the main expression. On exit, the last
6689 statement of PRE_P is the core statement being gimplified. For
6690 instance, when gimplifying 'if (++a)' the last statement in
6691 PRE_P will be 'if (t.1)' where t.1 is the result of
6692 pre-incrementing 'a'.
6694 POST_P will contain the sequence of GIMPLE statements corresponding
6695 to the evaluation of all the side-effects that must be executed
6696 after the main expression. If this is NULL, the post
6697 side-effects are stored at the end of PRE_P.
6699 The reason why the output is split in two is to handle post
6700 side-effects explicitly. In some cases, an expression may have
6701 inner and outer post side-effects which need to be emitted in
6702 an order different from the one given by the recursive
6703 traversal. For instance, for the expression (*p--)++ the post
6704 side-effects of '--' must actually occur *after* the post
6705 side-effects of '++'. However, gimplification will first visit
6706 the inner expression, so if a separate POST sequence was not
6707 used, the resulting sequence would be:
6709 1 t.1 = *p
6710 2 p = p - 1
6711 3 t.2 = t.1 + 1
6712 4 *p = t.2
6714 However, the post-decrement operation in line #2 must not be
6715 evaluated until after the store to *p at line #4, so the
6716 correct sequence should be:
6718 1 t.1 = *p
6719 2 t.2 = t.1 + 1
6720 3 *p = t.2
6721 4 p = p - 1
6723 So, by specifying a separate post queue, it is possible
6724 to emit the post side-effects in the correct order.
6725 If POST_P is NULL, an internal queue will be used. Before
6726 returning to the caller, the sequence POST_P is appended to
6727 the main output sequence PRE_P.
6729 GIMPLE_TEST_F points to a function that takes a tree T and
6730 returns nonzero if T is in the GIMPLE form requested by the
6731 caller. The GIMPLE predicates are in gimple.c.
6733 FALLBACK tells the function what sort of a temporary we want if
6734 gimplification cannot produce an expression that complies with
6735 GIMPLE_TEST_F.
6737 fb_none means that no temporary should be generated
6738 fb_rvalue means that an rvalue is OK to generate
6739 fb_lvalue means that an lvalue is OK to generate
6740 fb_either means that either is OK, but an lvalue is preferable.
6741 fb_mayfail means that gimplification may fail (in which case
6742 GS_ERROR will be returned)
6744 The return value is either GS_ERROR or GS_ALL_DONE, since this
6745 function iterates until EXPR is completely gimplified or an error
6746 occurs. */
6748 enum gimplify_status
6749 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6750 bool (*gimple_test_f) (tree), fallback_t fallback)
6752 tree tmp;
6753 gimple_seq internal_pre = NULL;
6754 gimple_seq internal_post = NULL;
6755 tree save_expr;
6756 bool is_statement;
6757 location_t saved_location;
6758 enum gimplify_status ret;
6759 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6761 save_expr = *expr_p;
6762 if (save_expr == NULL_TREE)
6763 return GS_ALL_DONE;
6765 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
6766 is_statement = gimple_test_f == is_gimple_stmt;
6767 if (is_statement)
6768 gcc_assert (pre_p);
6770 /* Consistency checks. */
6771 if (gimple_test_f == is_gimple_reg)
6772 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
6773 else if (gimple_test_f == is_gimple_val
6774 || gimple_test_f == is_gimple_call_addr
6775 || gimple_test_f == is_gimple_condexpr
6776 || gimple_test_f == is_gimple_mem_rhs
6777 || gimple_test_f == is_gimple_mem_rhs_or_call
6778 || gimple_test_f == is_gimple_reg_rhs
6779 || gimple_test_f == is_gimple_reg_rhs_or_call
6780 || gimple_test_f == is_gimple_asm_val
6781 || gimple_test_f == is_gimple_mem_ref_addr)
6782 gcc_assert (fallback & fb_rvalue);
6783 else if (gimple_test_f == is_gimple_min_lval
6784 || gimple_test_f == is_gimple_lvalue)
6785 gcc_assert (fallback & fb_lvalue);
6786 else if (gimple_test_f == is_gimple_addressable)
6787 gcc_assert (fallback & fb_either);
6788 else if (gimple_test_f == is_gimple_stmt)
6789 gcc_assert (fallback == fb_none);
6790 else
6792 /* We should have recognized the GIMPLE_TEST_F predicate to
6793 know what kind of fallback to use in case a temporary is
6794 needed to hold the value or address of *EXPR_P. */
6795 gcc_unreachable ();
6798 /* We used to check the predicate here and return immediately if it
6799 succeeds. This is wrong; the design is for gimplification to be
6800 idempotent, and for the predicates to only test for valid forms, not
6801 whether they are fully simplified. */
6802 if (pre_p == NULL)
6803 pre_p = &internal_pre;
6805 if (post_p == NULL)
6806 post_p = &internal_post;
6808 /* Remember the last statements added to PRE_P and POST_P. Every
6809 new statement added by the gimplification helpers needs to be
6810 annotated with location information. To centralize the
6811 responsibility, we remember the last statement that had been
6812 added to both queues before gimplifying *EXPR_P. If
6813 gimplification produces new statements in PRE_P and POST_P, those
6814 statements will be annotated with the same location information
6815 as *EXPR_P. */
6816 pre_last_gsi = gsi_last (*pre_p);
6817 post_last_gsi = gsi_last (*post_p);
6819 saved_location = input_location;
6820 if (save_expr != error_mark_node
6821 && EXPR_HAS_LOCATION (*expr_p))
6822 input_location = EXPR_LOCATION (*expr_p);
6824 /* Loop over the specific gimplifiers until the toplevel node
6825 remains the same. */
6828 /* Strip away as many useless type conversions as possible
6829 at the toplevel. */
6830 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
6832 /* Remember the expr. */
6833 save_expr = *expr_p;
6835 /* Die, die, die, my darling. */
6836 if (save_expr == error_mark_node
6837 || (TREE_TYPE (save_expr)
6838 && TREE_TYPE (save_expr) == error_mark_node))
6840 ret = GS_ERROR;
6841 break;
6844 /* Do any language-specific gimplification. */
6845 ret = ((enum gimplify_status)
6846 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
6847 if (ret == GS_OK)
6849 if (*expr_p == NULL_TREE)
6850 break;
6851 if (*expr_p != save_expr)
6852 continue;
6854 else if (ret != GS_UNHANDLED)
6855 break;
6857 /* Make sure that all the cases set 'ret' appropriately. */
6858 ret = GS_UNHANDLED;
6859 switch (TREE_CODE (*expr_p))
6861 /* First deal with the special cases. */
6863 case POSTINCREMENT_EXPR:
6864 case POSTDECREMENT_EXPR:
6865 case PREINCREMENT_EXPR:
6866 case PREDECREMENT_EXPR:
6867 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
6868 fallback != fb_none);
6869 break;
6871 case ARRAY_REF:
6872 case ARRAY_RANGE_REF:
6873 case REALPART_EXPR:
6874 case IMAGPART_EXPR:
6875 case COMPONENT_REF:
6876 case VIEW_CONVERT_EXPR:
6877 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
6878 fallback ? fallback : fb_rvalue);
6879 break;
6881 case COND_EXPR:
6882 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
6884 /* C99 code may assign to an array in a structure value of a
6885 conditional expression, and this has undefined behavior
6886 only on execution, so create a temporary if an lvalue is
6887 required. */
6888 if (fallback == fb_lvalue)
6890 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6891 mark_addressable (*expr_p);
6892 ret = GS_OK;
6894 break;
6896 case CALL_EXPR:
6897 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
6899 /* C99 code may assign to an array in a structure returned
6900 from a function, and this has undefined behavior only on
6901 execution, so create a temporary if an lvalue is
6902 required. */
6903 if (fallback == fb_lvalue)
6905 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6906 mark_addressable (*expr_p);
6907 ret = GS_OK;
6909 break;
6911 case TREE_LIST:
6912 gcc_unreachable ();
6914 case COMPOUND_EXPR:
6915 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
6916 break;
6918 case COMPOUND_LITERAL_EXPR:
6919 ret = gimplify_compound_literal_expr (expr_p, pre_p);
6920 break;
6922 case MODIFY_EXPR:
6923 case INIT_EXPR:
6924 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
6925 fallback != fb_none);
6926 break;
6928 case TRUTH_ANDIF_EXPR:
6929 case TRUTH_ORIF_EXPR:
6931 /* Preserve the original type of the expression and the
6932 source location of the outer expression. */
6933 tree org_type = TREE_TYPE (*expr_p);
6934 *expr_p = gimple_boolify (*expr_p);
6935 *expr_p = build3_loc (input_location, COND_EXPR,
6936 org_type, *expr_p,
6937 fold_convert_loc
6938 (input_location,
6939 org_type, boolean_true_node),
6940 fold_convert_loc
6941 (input_location,
6942 org_type, boolean_false_node));
6943 ret = GS_OK;
6944 break;
6947 case TRUTH_NOT_EXPR:
6949 tree type = TREE_TYPE (*expr_p);
6950 /* The parsers are careful to generate TRUTH_NOT_EXPR
6951 only with operands that are always zero or one.
6952 We do not fold here but handle the only interesting case
6953 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
6954 *expr_p = gimple_boolify (*expr_p);
6955 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
6956 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
6957 TREE_TYPE (*expr_p),
6958 TREE_OPERAND (*expr_p, 0));
6959 else
6960 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
6961 TREE_TYPE (*expr_p),
6962 TREE_OPERAND (*expr_p, 0),
6963 build_int_cst (TREE_TYPE (*expr_p), 1));
6964 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
6965 *expr_p = fold_convert_loc (input_location, type, *expr_p);
6966 ret = GS_OK;
6967 break;
6970 case ADDR_EXPR:
6971 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
6972 break;
6974 case VA_ARG_EXPR:
6975 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
6976 break;
6978 CASE_CONVERT:
6979 if (IS_EMPTY_STMT (*expr_p))
6981 ret = GS_ALL_DONE;
6982 break;
6985 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
6986 || fallback == fb_none)
6988 /* Just strip a conversion to void (or in void context) and
6989 try again. */
6990 *expr_p = TREE_OPERAND (*expr_p, 0);
6991 ret = GS_OK;
6992 break;
6995 ret = gimplify_conversion (expr_p);
6996 if (ret == GS_ERROR)
6997 break;
6998 if (*expr_p != save_expr)
6999 break;
7000 /* FALLTHRU */
7002 case FIX_TRUNC_EXPR:
7003 /* unary_expr: ... | '(' cast ')' val | ... */
7004 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7005 is_gimple_val, fb_rvalue);
7006 recalculate_side_effects (*expr_p);
7007 break;
7009 case INDIRECT_REF:
7011 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
7012 bool notrap = TREE_THIS_NOTRAP (*expr_p);
7013 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
7015 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
7016 if (*expr_p != save_expr)
7018 ret = GS_OK;
7019 break;
7022 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7023 is_gimple_reg, fb_rvalue);
7024 if (ret == GS_ERROR)
7025 break;
7027 recalculate_side_effects (*expr_p);
7028 *expr_p = fold_build2_loc (input_location, MEM_REF,
7029 TREE_TYPE (*expr_p),
7030 TREE_OPERAND (*expr_p, 0),
7031 build_int_cst (saved_ptr_type, 0));
7032 TREE_THIS_VOLATILE (*expr_p) = volatilep;
7033 TREE_THIS_NOTRAP (*expr_p) = notrap;
7034 ret = GS_OK;
7035 break;
7038 /* We arrive here through the various re-gimplifcation paths. */
7039 case MEM_REF:
7040 /* First try re-folding the whole thing. */
7041 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
7042 TREE_OPERAND (*expr_p, 0),
7043 TREE_OPERAND (*expr_p, 1));
7044 if (tmp)
7046 *expr_p = tmp;
7047 recalculate_side_effects (*expr_p);
7048 ret = GS_OK;
7049 break;
7051 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7052 is_gimple_mem_ref_addr, fb_rvalue);
7053 if (ret == GS_ERROR)
7054 break;
7055 recalculate_side_effects (*expr_p);
7056 ret = GS_ALL_DONE;
7057 break;
7059 /* Constants need not be gimplified. */
7060 case INTEGER_CST:
7061 case REAL_CST:
7062 case FIXED_CST:
7063 case STRING_CST:
7064 case COMPLEX_CST:
7065 case VECTOR_CST:
7066 ret = GS_ALL_DONE;
7067 break;
7069 case CONST_DECL:
7070 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7071 CONST_DECL node. Otherwise the decl is replaceable by its
7072 value. */
7073 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7074 if (fallback & fb_lvalue)
7075 ret = GS_ALL_DONE;
7076 else
7078 *expr_p = DECL_INITIAL (*expr_p);
7079 ret = GS_OK;
7081 break;
7083 case DECL_EXPR:
7084 ret = gimplify_decl_expr (expr_p, pre_p);
7085 break;
7087 case BIND_EXPR:
7088 ret = gimplify_bind_expr (expr_p, pre_p);
7089 break;
7091 case LOOP_EXPR:
7092 ret = gimplify_loop_expr (expr_p, pre_p);
7093 break;
7095 case SWITCH_EXPR:
7096 ret = gimplify_switch_expr (expr_p, pre_p);
7097 break;
7099 case EXIT_EXPR:
7100 ret = gimplify_exit_expr (expr_p);
7101 break;
7103 case GOTO_EXPR:
7104 /* If the target is not LABEL, then it is a computed jump
7105 and the target needs to be gimplified. */
7106 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
7108 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
7109 NULL, is_gimple_val, fb_rvalue);
7110 if (ret == GS_ERROR)
7111 break;
7113 gimplify_seq_add_stmt (pre_p,
7114 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
7115 ret = GS_ALL_DONE;
7116 break;
7118 case PREDICT_EXPR:
7119 gimplify_seq_add_stmt (pre_p,
7120 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
7121 PREDICT_EXPR_OUTCOME (*expr_p)));
7122 ret = GS_ALL_DONE;
7123 break;
7125 case LABEL_EXPR:
7126 ret = GS_ALL_DONE;
7127 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
7128 == current_function_decl);
7129 gimplify_seq_add_stmt (pre_p,
7130 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
7131 break;
7133 case CASE_LABEL_EXPR:
7134 ret = gimplify_case_label_expr (expr_p, pre_p);
7135 break;
7137 case RETURN_EXPR:
7138 ret = gimplify_return_expr (*expr_p, pre_p);
7139 break;
7141 case CONSTRUCTOR:
7142 /* Don't reduce this in place; let gimplify_init_constructor work its
7143 magic. Buf if we're just elaborating this for side effects, just
7144 gimplify any element that has side-effects. */
7145 if (fallback == fb_none)
7147 unsigned HOST_WIDE_INT ix;
7148 tree val;
7149 tree temp = NULL_TREE;
7150 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7151 if (TREE_SIDE_EFFECTS (val))
7152 append_to_statement_list (val, &temp);
7154 *expr_p = temp;
7155 ret = temp ? GS_OK : GS_ALL_DONE;
7157 /* C99 code may assign to an array in a constructed
7158 structure or union, and this has undefined behavior only
7159 on execution, so create a temporary if an lvalue is
7160 required. */
7161 else if (fallback == fb_lvalue)
7163 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7164 mark_addressable (*expr_p);
7165 ret = GS_OK;
7167 else
7168 ret = GS_ALL_DONE;
7169 break;
7171 /* The following are special cases that are not handled by the
7172 original GIMPLE grammar. */
7174 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7175 eliminated. */
7176 case SAVE_EXPR:
7177 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7178 break;
7180 case BIT_FIELD_REF:
7182 enum gimplify_status r0, r1, r2;
7184 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7185 post_p, is_gimple_lvalue, fb_either);
7186 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7187 post_p, is_gimple_val, fb_rvalue);
7188 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7189 post_p, is_gimple_val, fb_rvalue);
7190 recalculate_side_effects (*expr_p);
7192 ret = MIN (r0, MIN (r1, r2));
7194 break;
7196 case TARGET_MEM_REF:
7198 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7200 if (TMR_BASE (*expr_p))
7201 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7202 post_p, is_gimple_mem_ref_addr, fb_either);
7203 if (TMR_INDEX (*expr_p))
7204 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7205 post_p, is_gimple_val, fb_rvalue);
7206 if (TMR_INDEX2 (*expr_p))
7207 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7208 post_p, is_gimple_val, fb_rvalue);
7209 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7210 ret = MIN (r0, r1);
7212 break;
7214 case NON_LVALUE_EXPR:
7215 /* This should have been stripped above. */
7216 gcc_unreachable ();
7218 case ASM_EXPR:
7219 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7220 break;
7222 case TRY_FINALLY_EXPR:
7223 case TRY_CATCH_EXPR:
7225 gimple_seq eval, cleanup;
7226 gimple try_;
7228 eval = cleanup = NULL;
7229 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7230 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7231 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7232 if (gimple_seq_empty_p (cleanup))
7234 gimple_seq_add_seq (pre_p, eval);
7235 ret = GS_ALL_DONE;
7236 break;
7238 try_ = gimple_build_try (eval, cleanup,
7239 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7240 ? GIMPLE_TRY_FINALLY
7241 : GIMPLE_TRY_CATCH);
7242 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7243 gimple_try_set_catch_is_cleanup (try_,
7244 TRY_CATCH_IS_CLEANUP (*expr_p));
7245 gimplify_seq_add_stmt (pre_p, try_);
7246 ret = GS_ALL_DONE;
7247 break;
7250 case CLEANUP_POINT_EXPR:
7251 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7252 break;
7254 case TARGET_EXPR:
7255 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7256 break;
7258 case CATCH_EXPR:
7260 gimple c;
7261 gimple_seq handler = NULL;
7262 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7263 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7264 gimplify_seq_add_stmt (pre_p, c);
7265 ret = GS_ALL_DONE;
7266 break;
7269 case EH_FILTER_EXPR:
7271 gimple ehf;
7272 gimple_seq failure = NULL;
7274 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7275 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7276 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7277 gimplify_seq_add_stmt (pre_p, ehf);
7278 ret = GS_ALL_DONE;
7279 break;
7282 case OBJ_TYPE_REF:
7284 enum gimplify_status r0, r1;
7285 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7286 post_p, is_gimple_val, fb_rvalue);
7287 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7288 post_p, is_gimple_val, fb_rvalue);
7289 TREE_SIDE_EFFECTS (*expr_p) = 0;
7290 ret = MIN (r0, r1);
7292 break;
7294 case LABEL_DECL:
7295 /* We get here when taking the address of a label. We mark
7296 the label as "forced"; meaning it can never be removed and
7297 it is a potential target for any computed goto. */
7298 FORCED_LABEL (*expr_p) = 1;
7299 ret = GS_ALL_DONE;
7300 break;
7302 case STATEMENT_LIST:
7303 ret = gimplify_statement_list (expr_p, pre_p);
7304 break;
7306 case WITH_SIZE_EXPR:
7308 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7309 post_p == &internal_post ? NULL : post_p,
7310 gimple_test_f, fallback);
7311 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7312 is_gimple_val, fb_rvalue);
7313 ret = GS_ALL_DONE;
7315 break;
7317 case VAR_DECL:
7318 case PARM_DECL:
7319 ret = gimplify_var_or_parm_decl (expr_p);
7320 break;
7322 case RESULT_DECL:
7323 /* When within an OpenMP context, notice uses of variables. */
7324 if (gimplify_omp_ctxp)
7325 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7326 ret = GS_ALL_DONE;
7327 break;
7329 case SSA_NAME:
7330 /* Allow callbacks into the gimplifier during optimization. */
7331 ret = GS_ALL_DONE;
7332 break;
7334 case OMP_PARALLEL:
7335 gimplify_omp_parallel (expr_p, pre_p);
7336 ret = GS_ALL_DONE;
7337 break;
7339 case OMP_TASK:
7340 gimplify_omp_task (expr_p, pre_p);
7341 ret = GS_ALL_DONE;
7342 break;
7344 case OMP_FOR:
7345 ret = gimplify_omp_for (expr_p, pre_p);
7346 break;
7348 case OMP_SECTIONS:
7349 case OMP_SINGLE:
7350 gimplify_omp_workshare (expr_p, pre_p);
7351 ret = GS_ALL_DONE;
7352 break;
7354 case OMP_SECTION:
7355 case OMP_MASTER:
7356 case OMP_ORDERED:
7357 case OMP_CRITICAL:
7359 gimple_seq body = NULL;
7360 gimple g;
7362 gimplify_and_add (OMP_BODY (*expr_p), &body);
7363 switch (TREE_CODE (*expr_p))
7365 case OMP_SECTION:
7366 g = gimple_build_omp_section (body);
7367 break;
7368 case OMP_MASTER:
7369 g = gimple_build_omp_master (body);
7370 break;
7371 case OMP_ORDERED:
7372 g = gimple_build_omp_ordered (body);
7373 break;
7374 case OMP_CRITICAL:
7375 g = gimple_build_omp_critical (body,
7376 OMP_CRITICAL_NAME (*expr_p));
7377 break;
7378 default:
7379 gcc_unreachable ();
7381 gimplify_seq_add_stmt (pre_p, g);
7382 ret = GS_ALL_DONE;
7383 break;
7386 case OMP_ATOMIC:
7387 case OMP_ATOMIC_READ:
7388 case OMP_ATOMIC_CAPTURE_OLD:
7389 case OMP_ATOMIC_CAPTURE_NEW:
7390 ret = gimplify_omp_atomic (expr_p, pre_p);
7391 break;
7393 case TRANSACTION_EXPR:
7394 ret = gimplify_transaction (expr_p, pre_p);
7395 break;
7397 case TRUTH_AND_EXPR:
7398 case TRUTH_OR_EXPR:
7399 case TRUTH_XOR_EXPR:
7401 tree orig_type = TREE_TYPE (*expr_p);
7402 tree new_type, xop0, xop1;
7403 *expr_p = gimple_boolify (*expr_p);
7404 new_type = TREE_TYPE (*expr_p);
7405 if (!useless_type_conversion_p (orig_type, new_type))
7407 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7408 ret = GS_OK;
7409 break;
7412 /* Boolified binary truth expressions are semantically equivalent
7413 to bitwise binary expressions. Canonicalize them to the
7414 bitwise variant. */
7415 switch (TREE_CODE (*expr_p))
7417 case TRUTH_AND_EXPR:
7418 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7419 break;
7420 case TRUTH_OR_EXPR:
7421 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7422 break;
7423 case TRUTH_XOR_EXPR:
7424 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7425 break;
7426 default:
7427 break;
7429 /* Now make sure that operands have compatible type to
7430 expression's new_type. */
7431 xop0 = TREE_OPERAND (*expr_p, 0);
7432 xop1 = TREE_OPERAND (*expr_p, 1);
7433 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7434 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7435 new_type,
7436 xop0);
7437 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7438 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7439 new_type,
7440 xop1);
7441 /* Continue classified as tcc_binary. */
7442 goto expr_2;
7445 case FMA_EXPR:
7446 case VEC_PERM_EXPR:
7447 /* Classified as tcc_expression. */
7448 goto expr_3;
7450 case POINTER_PLUS_EXPR:
7452 enum gimplify_status r0, r1;
7453 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7454 post_p, is_gimple_val, fb_rvalue);
7455 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7456 post_p, is_gimple_val, fb_rvalue);
7457 recalculate_side_effects (*expr_p);
7458 ret = MIN (r0, r1);
7459 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7460 after gimplifying operands - this is similar to how
7461 it would be folding all gimplified stmts on creation
7462 to have them canonicalized, which is what we eventually
7463 should do anyway. */
7464 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7465 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7467 *expr_p = build_fold_addr_expr_with_type_loc
7468 (input_location,
7469 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7470 TREE_OPERAND (*expr_p, 0),
7471 fold_convert (ptr_type_node,
7472 TREE_OPERAND (*expr_p, 1))),
7473 TREE_TYPE (*expr_p));
7474 ret = MIN (ret, GS_OK);
7476 break;
7479 default:
7480 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7482 case tcc_comparison:
7483 /* Handle comparison of objects of non scalar mode aggregates
7484 with a call to memcmp. It would be nice to only have to do
7485 this for variable-sized objects, but then we'd have to allow
7486 the same nest of reference nodes we allow for MODIFY_EXPR and
7487 that's too complex.
7489 Compare scalar mode aggregates as scalar mode values. Using
7490 memcmp for them would be very inefficient at best, and is
7491 plain wrong if bitfields are involved. */
7493 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7495 /* Vector comparisons need no boolification. */
7496 if (TREE_CODE (type) == VECTOR_TYPE)
7497 goto expr_2;
7498 else if (!AGGREGATE_TYPE_P (type))
7500 tree org_type = TREE_TYPE (*expr_p);
7501 *expr_p = gimple_boolify (*expr_p);
7502 if (!useless_type_conversion_p (org_type,
7503 TREE_TYPE (*expr_p)))
7505 *expr_p = fold_convert_loc (input_location,
7506 org_type, *expr_p);
7507 ret = GS_OK;
7509 else
7510 goto expr_2;
7512 else if (TYPE_MODE (type) != BLKmode)
7513 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7514 else
7515 ret = gimplify_variable_sized_compare (expr_p);
7517 break;
7520 /* If *EXPR_P does not need to be special-cased, handle it
7521 according to its class. */
7522 case tcc_unary:
7523 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7524 post_p, is_gimple_val, fb_rvalue);
7525 break;
7527 case tcc_binary:
7528 expr_2:
7530 enum gimplify_status r0, r1;
7532 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7533 post_p, is_gimple_val, fb_rvalue);
7534 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7535 post_p, is_gimple_val, fb_rvalue);
7537 ret = MIN (r0, r1);
7538 break;
7541 expr_3:
7543 enum gimplify_status r0, r1, r2;
7545 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7546 post_p, is_gimple_val, fb_rvalue);
7547 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7548 post_p, is_gimple_val, fb_rvalue);
7549 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7550 post_p, is_gimple_val, fb_rvalue);
7552 ret = MIN (MIN (r0, r1), r2);
7553 break;
7556 case tcc_declaration:
7557 case tcc_constant:
7558 ret = GS_ALL_DONE;
7559 goto dont_recalculate;
7561 default:
7562 gcc_unreachable ();
7565 recalculate_side_effects (*expr_p);
7567 dont_recalculate:
7568 break;
7571 gcc_assert (*expr_p || ret != GS_OK);
7573 while (ret == GS_OK);
7575 /* If we encountered an error_mark somewhere nested inside, either
7576 stub out the statement or propagate the error back out. */
7577 if (ret == GS_ERROR)
7579 if (is_statement)
7580 *expr_p = NULL;
7581 goto out;
7584 /* This was only valid as a return value from the langhook, which
7585 we handled. Make sure it doesn't escape from any other context. */
7586 gcc_assert (ret != GS_UNHANDLED);
7588 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7590 /* We aren't looking for a value, and we don't have a valid
7591 statement. If it doesn't have side-effects, throw it away. */
7592 if (!TREE_SIDE_EFFECTS (*expr_p))
7593 *expr_p = NULL;
7594 else if (!TREE_THIS_VOLATILE (*expr_p))
7596 /* This is probably a _REF that contains something nested that
7597 has side effects. Recurse through the operands to find it. */
7598 enum tree_code code = TREE_CODE (*expr_p);
7600 switch (code)
7602 case COMPONENT_REF:
7603 case REALPART_EXPR:
7604 case IMAGPART_EXPR:
7605 case VIEW_CONVERT_EXPR:
7606 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7607 gimple_test_f, fallback);
7608 break;
7610 case ARRAY_REF:
7611 case ARRAY_RANGE_REF:
7612 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7613 gimple_test_f, fallback);
7614 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7615 gimple_test_f, fallback);
7616 break;
7618 default:
7619 /* Anything else with side-effects must be converted to
7620 a valid statement before we get here. */
7621 gcc_unreachable ();
7624 *expr_p = NULL;
7626 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7627 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7629 /* Historically, the compiler has treated a bare reference
7630 to a non-BLKmode volatile lvalue as forcing a load. */
7631 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7633 /* Normally, we do not want to create a temporary for a
7634 TREE_ADDRESSABLE type because such a type should not be
7635 copied by bitwise-assignment. However, we make an
7636 exception here, as all we are doing here is ensuring that
7637 we read the bytes that make up the type. We use
7638 create_tmp_var_raw because create_tmp_var will abort when
7639 given a TREE_ADDRESSABLE type. */
7640 tree tmp = create_tmp_var_raw (type, "vol");
7641 gimple_add_tmp_var (tmp);
7642 gimplify_assign (tmp, *expr_p, pre_p);
7643 *expr_p = NULL;
7645 else
7646 /* We can't do anything useful with a volatile reference to
7647 an incomplete type, so just throw it away. Likewise for
7648 a BLKmode type, since any implicit inner load should
7649 already have been turned into an explicit one by the
7650 gimplification process. */
7651 *expr_p = NULL;
7654 /* If we are gimplifying at the statement level, we're done. Tack
7655 everything together and return. */
7656 if (fallback == fb_none || is_statement)
7658 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7659 it out for GC to reclaim it. */
7660 *expr_p = NULL_TREE;
7662 if (!gimple_seq_empty_p (internal_pre)
7663 || !gimple_seq_empty_p (internal_post))
7665 gimplify_seq_add_seq (&internal_pre, internal_post);
7666 gimplify_seq_add_seq (pre_p, internal_pre);
7669 /* The result of gimplifying *EXPR_P is going to be the last few
7670 statements in *PRE_P and *POST_P. Add location information
7671 to all the statements that were added by the gimplification
7672 helpers. */
7673 if (!gimple_seq_empty_p (*pre_p))
7674 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7676 if (!gimple_seq_empty_p (*post_p))
7677 annotate_all_with_location_after (*post_p, post_last_gsi,
7678 input_location);
7680 goto out;
7683 #ifdef ENABLE_GIMPLE_CHECKING
7684 if (*expr_p)
7686 enum tree_code code = TREE_CODE (*expr_p);
7687 /* These expressions should already be in gimple IR form. */
7688 gcc_assert (code != MODIFY_EXPR
7689 && code != ASM_EXPR
7690 && code != BIND_EXPR
7691 && code != CATCH_EXPR
7692 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7693 && code != EH_FILTER_EXPR
7694 && code != GOTO_EXPR
7695 && code != LABEL_EXPR
7696 && code != LOOP_EXPR
7697 && code != SWITCH_EXPR
7698 && code != TRY_FINALLY_EXPR
7699 && code != OMP_CRITICAL
7700 && code != OMP_FOR
7701 && code != OMP_MASTER
7702 && code != OMP_ORDERED
7703 && code != OMP_PARALLEL
7704 && code != OMP_SECTIONS
7705 && code != OMP_SECTION
7706 && code != OMP_SINGLE);
7708 #endif
7710 /* Otherwise we're gimplifying a subexpression, so the resulting
7711 value is interesting. If it's a valid operand that matches
7712 GIMPLE_TEST_F, we're done. Unless we are handling some
7713 post-effects internally; if that's the case, we need to copy into
7714 a temporary before adding the post-effects to POST_P. */
7715 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7716 goto out;
7718 /* Otherwise, we need to create a new temporary for the gimplified
7719 expression. */
7721 /* We can't return an lvalue if we have an internal postqueue. The
7722 object the lvalue refers to would (probably) be modified by the
7723 postqueue; we need to copy the value out first, which means an
7724 rvalue. */
7725 if ((fallback & fb_lvalue)
7726 && gimple_seq_empty_p (internal_post)
7727 && is_gimple_addressable (*expr_p))
7729 /* An lvalue will do. Take the address of the expression, store it
7730 in a temporary, and replace the expression with an INDIRECT_REF of
7731 that temporary. */
7732 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7733 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7734 *expr_p = build_simple_mem_ref (tmp);
7736 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7738 /* An rvalue will do. Assign the gimplified expression into a
7739 new temporary TMP and replace the original expression with
7740 TMP. First, make sure that the expression has a type so that
7741 it can be assigned into a temporary. */
7742 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7744 if (!gimple_seq_empty_p (internal_post) || (fallback & fb_lvalue))
7745 /* The postqueue might change the value of the expression between
7746 the initialization and use of the temporary, so we can't use a
7747 formal temp. FIXME do we care? */
7749 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7750 if (TREE_CODE (TREE_TYPE (*expr_p)) == COMPLEX_TYPE
7751 || TREE_CODE (TREE_TYPE (*expr_p)) == VECTOR_TYPE)
7752 DECL_GIMPLE_REG_P (*expr_p) = 1;
7754 else
7755 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7757 else
7759 #ifdef ENABLE_GIMPLE_CHECKING
7760 if (!(fallback & fb_mayfail))
7762 fprintf (stderr, "gimplification failed:\n");
7763 print_generic_expr (stderr, *expr_p, 0);
7764 debug_tree (*expr_p);
7765 internal_error ("gimplification failed");
7767 #endif
7768 gcc_assert (fallback & fb_mayfail);
7770 /* If this is an asm statement, and the user asked for the
7771 impossible, don't die. Fail and let gimplify_asm_expr
7772 issue an error. */
7773 ret = GS_ERROR;
7774 goto out;
7777 /* Make sure the temporary matches our predicate. */
7778 gcc_assert ((*gimple_test_f) (*expr_p));
7780 if (!gimple_seq_empty_p (internal_post))
7782 annotate_all_with_location (internal_post, input_location);
7783 gimplify_seq_add_seq (pre_p, internal_post);
7786 out:
7787 input_location = saved_location;
7788 return ret;
7791 /* Look through TYPE for variable-sized objects and gimplify each such
7792 size that we find. Add to LIST_P any statements generated. */
7794 void
7795 gimplify_type_sizes (tree type, gimple_seq *list_p)
7797 tree field, t;
7799 if (type == NULL || type == error_mark_node)
7800 return;
7802 /* We first do the main variant, then copy into any other variants. */
7803 type = TYPE_MAIN_VARIANT (type);
7805 /* Avoid infinite recursion. */
7806 if (TYPE_SIZES_GIMPLIFIED (type))
7807 return;
7809 TYPE_SIZES_GIMPLIFIED (type) = 1;
7811 switch (TREE_CODE (type))
7813 case INTEGER_TYPE:
7814 case ENUMERAL_TYPE:
7815 case BOOLEAN_TYPE:
7816 case REAL_TYPE:
7817 case FIXED_POINT_TYPE:
7818 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
7819 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
7821 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7823 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
7824 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
7826 break;
7828 case ARRAY_TYPE:
7829 /* These types may not have declarations, so handle them here. */
7830 gimplify_type_sizes (TREE_TYPE (type), list_p);
7831 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
7832 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
7833 with assigned stack slots, for -O1+ -g they should be tracked
7834 by VTA. */
7835 if (!(TYPE_NAME (type)
7836 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7837 && DECL_IGNORED_P (TYPE_NAME (type)))
7838 && TYPE_DOMAIN (type)
7839 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
7841 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
7842 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
7843 DECL_IGNORED_P (t) = 0;
7844 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
7845 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
7846 DECL_IGNORED_P (t) = 0;
7848 break;
7850 case RECORD_TYPE:
7851 case UNION_TYPE:
7852 case QUAL_UNION_TYPE:
7853 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7854 if (TREE_CODE (field) == FIELD_DECL)
7856 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
7857 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
7858 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
7859 gimplify_type_sizes (TREE_TYPE (field), list_p);
7861 break;
7863 case POINTER_TYPE:
7864 case REFERENCE_TYPE:
7865 /* We used to recurse on the pointed-to type here, which turned out to
7866 be incorrect because its definition might refer to variables not
7867 yet initialized at this point if a forward declaration is involved.
7869 It was actually useful for anonymous pointed-to types to ensure
7870 that the sizes evaluation dominates every possible later use of the
7871 values. Restricting to such types here would be safe since there
7872 is no possible forward declaration around, but would introduce an
7873 undesirable middle-end semantic to anonymity. We then defer to
7874 front-ends the responsibility of ensuring that the sizes are
7875 evaluated both early and late enough, e.g. by attaching artificial
7876 type declarations to the tree. */
7877 break;
7879 default:
7880 break;
7883 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
7884 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
7886 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7888 TYPE_SIZE (t) = TYPE_SIZE (type);
7889 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
7890 TYPE_SIZES_GIMPLIFIED (t) = 1;
7894 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
7895 a size or position, has had all of its SAVE_EXPRs evaluated.
7896 We add any required statements to *STMT_P. */
7898 void
7899 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
7901 tree type, expr = *expr_p;
7903 /* We don't do anything if the value isn't there, is constant, or contains
7904 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
7905 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
7906 will want to replace it with a new variable, but that will cause problems
7907 if this type is from outside the function. It's OK to have that here. */
7908 if (expr == NULL_TREE || TREE_CONSTANT (expr)
7909 || TREE_CODE (expr) == VAR_DECL
7910 || CONTAINS_PLACEHOLDER_P (expr))
7911 return;
7913 type = TREE_TYPE (expr);
7914 *expr_p = unshare_expr (expr);
7916 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
7917 expr = *expr_p;
7919 /* Verify that we've an exact type match with the original expression.
7920 In particular, we do not wish to drop a "sizetype" in favour of a
7921 type of similar dimensions. We don't want to pollute the generic
7922 type-stripping code with this knowledge because it doesn't matter
7923 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
7924 and friends retain their "sizetype-ness". */
7925 if (TREE_TYPE (expr) != type
7926 && TREE_CODE (type) == INTEGER_TYPE
7927 && TYPE_IS_SIZETYPE (type))
7929 tree tmp;
7930 gimple stmt;
7932 *expr_p = create_tmp_var (type, NULL);
7933 tmp = build1 (NOP_EXPR, type, expr);
7934 stmt = gimplify_assign (*expr_p, tmp, stmt_p);
7935 gimple_set_location (stmt, EXPR_LOC_OR_HERE (expr));
7939 /* Gimplify the body of statements pointed to by BODY_P and return a
7940 GIMPLE_BIND containing the sequence of GIMPLE statements
7941 corresponding to BODY_P. FNDECL is the function decl containing
7942 *BODY_P. */
7944 gimple
7945 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
7947 location_t saved_location = input_location;
7948 gimple_seq parm_stmts, seq;
7949 gimple outer_bind;
7950 struct gimplify_ctx gctx;
7951 struct cgraph_node *cgn;
7953 timevar_push (TV_TREE_GIMPLIFY);
7955 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
7956 gimplification. */
7957 default_rtl_profile ();
7959 gcc_assert (gimplify_ctxp == NULL);
7960 push_gimplify_context (&gctx);
7962 /* Unshare most shared trees in the body and in that of any nested functions.
7963 It would seem we don't have to do this for nested functions because
7964 they are supposed to be output and then the outer function gimplified
7965 first, but the g++ front end doesn't always do it that way. */
7966 unshare_body (body_p, fndecl);
7967 unvisit_body (body_p, fndecl);
7969 cgn = cgraph_get_node (fndecl);
7970 if (cgn && cgn->origin)
7971 nonlocal_vlas = pointer_set_create ();
7973 /* Make sure input_location isn't set to something weird. */
7974 input_location = DECL_SOURCE_LOCATION (fndecl);
7976 /* Resolve callee-copies. This has to be done before processing
7977 the body so that DECL_VALUE_EXPR gets processed correctly. */
7978 parm_stmts = (do_parms) ? gimplify_parameters () : NULL;
7980 /* Gimplify the function's body. */
7981 seq = NULL;
7982 gimplify_stmt (body_p, &seq);
7983 outer_bind = gimple_seq_first_stmt (seq);
7984 if (!outer_bind)
7986 outer_bind = gimple_build_nop ();
7987 gimplify_seq_add_stmt (&seq, outer_bind);
7990 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
7991 not the case, wrap everything in a GIMPLE_BIND to make it so. */
7992 if (gimple_code (outer_bind) == GIMPLE_BIND
7993 && gimple_seq_first (seq) == gimple_seq_last (seq))
7995 else
7996 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
7998 *body_p = NULL_TREE;
8000 /* If we had callee-copies statements, insert them at the beginning
8001 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8002 if (!gimple_seq_empty_p (parm_stmts))
8004 tree parm;
8006 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
8007 gimple_bind_set_body (outer_bind, parm_stmts);
8009 for (parm = DECL_ARGUMENTS (current_function_decl);
8010 parm; parm = DECL_CHAIN (parm))
8011 if (DECL_HAS_VALUE_EXPR_P (parm))
8013 DECL_HAS_VALUE_EXPR_P (parm) = 0;
8014 DECL_IGNORED_P (parm) = 0;
8018 if (nonlocal_vlas)
8020 pointer_set_destroy (nonlocal_vlas);
8021 nonlocal_vlas = NULL;
8024 pop_gimplify_context (outer_bind);
8025 gcc_assert (gimplify_ctxp == NULL);
8027 if (!seen_error ())
8028 verify_gimple_in_seq (gimple_bind_body (outer_bind));
8030 timevar_pop (TV_TREE_GIMPLIFY);
8031 input_location = saved_location;
8033 return outer_bind;
8036 typedef char *char_p; /* For DEF_VEC_P. */
8037 DEF_VEC_P(char_p);
8038 DEF_VEC_ALLOC_P(char_p,heap);
8040 /* Return whether we should exclude FNDECL from instrumentation. */
8042 static bool
8043 flag_instrument_functions_exclude_p (tree fndecl)
8045 VEC(char_p,heap) *vec;
8047 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_functions;
8048 if (VEC_length (char_p, vec) > 0)
8050 const char *name;
8051 int i;
8052 char *s;
8054 name = lang_hooks.decl_printable_name (fndecl, 0);
8055 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8056 if (strstr (name, s) != NULL)
8057 return true;
8060 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_files;
8061 if (VEC_length (char_p, vec) > 0)
8063 const char *name;
8064 int i;
8065 char *s;
8067 name = DECL_SOURCE_FILE (fndecl);
8068 FOR_EACH_VEC_ELT (char_p, vec, i, s)
8069 if (strstr (name, s) != NULL)
8070 return true;
8073 return false;
8076 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8077 node for the function we want to gimplify.
8079 Return the sequence of GIMPLE statements corresponding to the body
8080 of FNDECL. */
8082 void
8083 gimplify_function_tree (tree fndecl)
8085 tree oldfn, parm, ret;
8086 gimple_seq seq;
8087 gimple bind;
8089 gcc_assert (!gimple_body (fndecl));
8091 oldfn = current_function_decl;
8092 current_function_decl = fndecl;
8093 if (DECL_STRUCT_FUNCTION (fndecl))
8094 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
8095 else
8096 push_struct_function (fndecl);
8098 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
8100 /* Preliminarily mark non-addressed complex variables as eligible
8101 for promotion to gimple registers. We'll transform their uses
8102 as we find them. */
8103 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
8104 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
8105 && !TREE_THIS_VOLATILE (parm)
8106 && !needs_to_live_in_memory (parm))
8107 DECL_GIMPLE_REG_P (parm) = 1;
8110 ret = DECL_RESULT (fndecl);
8111 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
8112 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
8113 && !needs_to_live_in_memory (ret))
8114 DECL_GIMPLE_REG_P (ret) = 1;
8116 bind = gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
8118 /* The tree body of the function is no longer needed, replace it
8119 with the new GIMPLE body. */
8120 seq = gimple_seq_alloc ();
8121 gimple_seq_add_stmt (&seq, bind);
8122 gimple_set_body (fndecl, seq);
8124 /* If we're instrumenting function entry/exit, then prepend the call to
8125 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8126 catch the exit hook. */
8127 /* ??? Add some way to ignore exceptions for this TFE. */
8128 if (flag_instrument_function_entry_exit
8129 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
8130 && !flag_instrument_functions_exclude_p (fndecl))
8132 tree x;
8133 gimple new_bind;
8134 gimple tf;
8135 gimple_seq cleanup = NULL, body = NULL;
8136 tree tmp_var;
8137 gimple call;
8139 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8140 call = gimple_build_call (x, 1, integer_zero_node);
8141 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8142 gimple_call_set_lhs (call, tmp_var);
8143 gimplify_seq_add_stmt (&cleanup, call);
8144 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8145 call = gimple_build_call (x, 2,
8146 build_fold_addr_expr (current_function_decl),
8147 tmp_var);
8148 gimplify_seq_add_stmt (&cleanup, call);
8149 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8151 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8152 call = gimple_build_call (x, 1, integer_zero_node);
8153 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8154 gimple_call_set_lhs (call, tmp_var);
8155 gimplify_seq_add_stmt (&body, call);
8156 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8157 call = gimple_build_call (x, 2,
8158 build_fold_addr_expr (current_function_decl),
8159 tmp_var);
8160 gimplify_seq_add_stmt (&body, call);
8161 gimplify_seq_add_stmt (&body, tf);
8162 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8163 /* Clear the block for BIND, since it is no longer directly inside
8164 the function, but within a try block. */
8165 gimple_bind_set_block (bind, NULL);
8167 /* Replace the current function body with the body
8168 wrapped in the try/finally TF. */
8169 seq = gimple_seq_alloc ();
8170 gimple_seq_add_stmt (&seq, new_bind);
8171 gimple_set_body (fndecl, seq);
8174 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8175 cfun->curr_properties = PROP_gimple_any;
8177 current_function_decl = oldfn;
8178 pop_cfun ();
8181 /* Some transformations like inlining may invalidate the GIMPLE form
8182 for operands. This function traverses all the operands in STMT and
8183 gimplifies anything that is not a valid gimple operand. Any new
8184 GIMPLE statements are inserted before *GSI_P. */
8186 void
8187 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8189 size_t i, num_ops;
8190 tree orig_lhs = NULL_TREE, lhs, t;
8191 gimple_seq pre = NULL;
8192 gimple post_stmt = NULL;
8193 struct gimplify_ctx gctx;
8195 push_gimplify_context (&gctx);
8196 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8198 switch (gimple_code (stmt))
8200 case GIMPLE_COND:
8201 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8202 is_gimple_val, fb_rvalue);
8203 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8204 is_gimple_val, fb_rvalue);
8205 break;
8206 case GIMPLE_SWITCH:
8207 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8208 is_gimple_val, fb_rvalue);
8209 break;
8210 case GIMPLE_OMP_ATOMIC_LOAD:
8211 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8212 is_gimple_val, fb_rvalue);
8213 break;
8214 case GIMPLE_ASM:
8216 size_t i, noutputs = gimple_asm_noutputs (stmt);
8217 const char *constraint, **oconstraints;
8218 bool allows_mem, allows_reg, is_inout;
8220 oconstraints
8221 = (const char **) alloca ((noutputs) * sizeof (const char *));
8222 for (i = 0; i < noutputs; i++)
8224 tree op = gimple_asm_output_op (stmt, i);
8225 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8226 oconstraints[i] = constraint;
8227 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8228 &allows_reg, &is_inout);
8229 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8230 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8231 fb_lvalue | fb_mayfail);
8233 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8235 tree op = gimple_asm_input_op (stmt, i);
8236 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8237 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8238 oconstraints, &allows_mem, &allows_reg);
8239 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8240 allows_reg = 0;
8241 if (!allows_reg && allows_mem)
8242 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8243 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8244 else
8245 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8246 is_gimple_asm_val, fb_rvalue);
8249 break;
8250 default:
8251 /* NOTE: We start gimplifying operands from last to first to
8252 make sure that side-effects on the RHS of calls, assignments
8253 and ASMs are executed before the LHS. The ordering is not
8254 important for other statements. */
8255 num_ops = gimple_num_ops (stmt);
8256 orig_lhs = gimple_get_lhs (stmt);
8257 for (i = num_ops; i > 0; i--)
8259 tree op = gimple_op (stmt, i - 1);
8260 if (op == NULL_TREE)
8261 continue;
8262 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8263 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8264 else if (i == 2
8265 && is_gimple_assign (stmt)
8266 && num_ops == 2
8267 && get_gimple_rhs_class (gimple_expr_code (stmt))
8268 == GIMPLE_SINGLE_RHS)
8269 gimplify_expr (&op, &pre, NULL,
8270 rhs_predicate_for (gimple_assign_lhs (stmt)),
8271 fb_rvalue);
8272 else if (i == 2 && is_gimple_call (stmt))
8274 if (TREE_CODE (op) == FUNCTION_DECL)
8275 continue;
8276 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8278 else
8279 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8280 gimple_set_op (stmt, i - 1, op);
8283 lhs = gimple_get_lhs (stmt);
8284 /* If the LHS changed it in a way that requires a simple RHS,
8285 create temporary. */
8286 if (lhs && !is_gimple_reg (lhs))
8288 bool need_temp = false;
8290 if (is_gimple_assign (stmt)
8291 && num_ops == 2
8292 && get_gimple_rhs_class (gimple_expr_code (stmt))
8293 == GIMPLE_SINGLE_RHS)
8294 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8295 rhs_predicate_for (gimple_assign_lhs (stmt)),
8296 fb_rvalue);
8297 else if (is_gimple_reg (lhs))
8299 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8301 if (is_gimple_call (stmt))
8303 i = gimple_call_flags (stmt);
8304 if ((i & ECF_LOOPING_CONST_OR_PURE)
8305 || !(i & (ECF_CONST | ECF_PURE)))
8306 need_temp = true;
8308 if (stmt_can_throw_internal (stmt))
8309 need_temp = true;
8312 else
8314 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8315 need_temp = true;
8316 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8318 if (is_gimple_call (stmt))
8320 tree fndecl = gimple_call_fndecl (stmt);
8322 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8323 && !(fndecl && DECL_RESULT (fndecl)
8324 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8325 need_temp = true;
8327 else
8328 need_temp = true;
8331 if (need_temp)
8333 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8335 if (TREE_CODE (orig_lhs) == SSA_NAME)
8336 orig_lhs = SSA_NAME_VAR (orig_lhs);
8338 if (gimple_in_ssa_p (cfun))
8339 temp = make_ssa_name (temp, NULL);
8340 gimple_set_lhs (stmt, temp);
8341 post_stmt = gimple_build_assign (lhs, temp);
8342 if (TREE_CODE (lhs) == SSA_NAME)
8343 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8346 break;
8349 if (gimple_referenced_vars (cfun))
8350 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
8351 add_referenced_var (t);
8353 if (!gimple_seq_empty_p (pre))
8355 if (gimple_in_ssa_p (cfun))
8357 gimple_stmt_iterator i;
8359 for (i = gsi_start (pre); !gsi_end_p (i); gsi_next (&i))
8360 mark_symbols_for_renaming (gsi_stmt (i));
8362 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8364 if (post_stmt)
8365 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8367 pop_gimplify_context (NULL);
8370 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8371 the predicate that will hold for the result. If VAR is not NULL, make the
8372 base variable of the final destination be VAR if suitable. */
8374 tree
8375 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8376 gimple_predicate gimple_test_f, tree var)
8378 tree t;
8379 enum gimplify_status ret;
8380 struct gimplify_ctx gctx;
8382 *stmts = NULL;
8384 /* gimple_test_f might be more strict than is_gimple_val, make
8385 sure we pass both. Just checking gimple_test_f doesn't work
8386 because most gimple predicates do not work recursively. */
8387 if (is_gimple_val (expr)
8388 && (*gimple_test_f) (expr))
8389 return expr;
8391 push_gimplify_context (&gctx);
8392 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8393 gimplify_ctxp->allow_rhs_cond_expr = true;
8395 if (var)
8396 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8398 if (TREE_CODE (expr) != MODIFY_EXPR
8399 && TREE_TYPE (expr) == void_type_node)
8401 gimplify_and_add (expr, stmts);
8402 expr = NULL_TREE;
8404 else
8406 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8407 gcc_assert (ret != GS_ERROR);
8410 if (gimple_referenced_vars (cfun))
8411 for (t = gimplify_ctxp->temps; t ; t = DECL_CHAIN (t))
8412 add_referenced_var (t);
8414 pop_gimplify_context (NULL);
8416 return expr;
8419 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8420 force the result to be either ssa_name or an invariant, otherwise
8421 just force it to be a rhs expression. If VAR is not NULL, make the
8422 base variable of the final destination be VAR if suitable. */
8424 tree
8425 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8427 return force_gimple_operand_1 (expr, stmts,
8428 simple ? is_gimple_val : is_gimple_reg_rhs,
8429 var);
8432 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8433 and VAR. If some statements are produced, emits them at GSI.
8434 If BEFORE is true. the statements are appended before GSI, otherwise
8435 they are appended after it. M specifies the way GSI moves after
8436 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8438 tree
8439 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8440 gimple_predicate gimple_test_f,
8441 tree var, bool before,
8442 enum gsi_iterator_update m)
8444 gimple_seq stmts;
8446 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8448 if (!gimple_seq_empty_p (stmts))
8450 if (gimple_in_ssa_p (cfun))
8452 gimple_stmt_iterator i;
8454 for (i = gsi_start (stmts); !gsi_end_p (i); gsi_next (&i))
8455 mark_symbols_for_renaming (gsi_stmt (i));
8458 if (before)
8459 gsi_insert_seq_before (gsi, stmts, m);
8460 else
8461 gsi_insert_seq_after (gsi, stmts, m);
8464 return expr;
8467 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8468 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8469 otherwise just force it to be a rhs expression. If some statements are
8470 produced, emits them at GSI. If BEFORE is true, the statements are
8471 appended before GSI, otherwise they are appended after it. M specifies
8472 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8473 are the usual values). */
8475 tree
8476 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8477 bool simple_p, tree var, bool before,
8478 enum gsi_iterator_update m)
8480 return force_gimple_operand_gsi_1 (gsi, expr,
8481 simple_p
8482 ? is_gimple_val : is_gimple_reg_rhs,
8483 var, before, m);
8487 #include "gt-gimplify.h"