In gcc/: 2011-04-14 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / gcc / gimplify.c
blob47bcb821f71538371f06dc582d813af0581632c8
1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
5 Major work done by Sebastian Pop <s.pop@laposte.net>,
6 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "tree-iterator.h"
31 #include "tree-inline.h"
32 #include "tree-pretty-print.h"
33 #include "langhooks.h"
34 #include "tree-flow.h"
35 #include "cgraph.h"
36 #include "timevar.h"
37 #include "hashtab.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "output.h"
41 #include "ggc.h"
42 #include "diagnostic-core.h"
43 #include "target.h"
44 #include "pointer-set.h"
45 #include "splay-tree.h"
46 #include "vec.h"
47 #include "gimple.h"
48 #include "tree-pass.h"
50 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name. */
51 #include "expr.h" /* FIXME: for can_move_by_pieces
52 and STACK_CHECK_MAX_VAR_SIZE. */
54 enum gimplify_omp_var_data
56 GOVD_SEEN = 1,
57 GOVD_EXPLICIT = 2,
58 GOVD_SHARED = 4,
59 GOVD_PRIVATE = 8,
60 GOVD_FIRSTPRIVATE = 16,
61 GOVD_LASTPRIVATE = 32,
62 GOVD_REDUCTION = 64,
63 GOVD_LOCAL = 128,
64 GOVD_DEBUG_PRIVATE = 256,
65 GOVD_PRIVATE_OUTER_REF = 512,
66 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
67 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
71 enum omp_region_type
73 ORT_WORKSHARE = 0,
74 ORT_PARALLEL = 2,
75 ORT_COMBINED_PARALLEL = 3,
76 ORT_TASK = 4,
77 ORT_UNTIED_TASK = 5
80 struct gimplify_omp_ctx
82 struct gimplify_omp_ctx *outer_context;
83 splay_tree variables;
84 struct pointer_set_t *privatized_types;
85 location_t location;
86 enum omp_clause_default_kind default_kind;
87 enum omp_region_type region_type;
90 static struct gimplify_ctx *gimplify_ctxp;
91 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
94 /* Formal (expression) temporary table handling: Multiple occurrences of
95 the same scalar expression are evaluated into the same temporary. */
97 typedef struct gimple_temp_hash_elt
99 tree val; /* Key */
100 tree temp; /* Value */
101 } elt_t;
103 /* Forward declarations. */
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. */
108 void
109 mark_addressable (tree x)
111 while (handled_component_p (x))
112 x = TREE_OPERAND (x, 0);
113 if (TREE_CODE (x) == MEM_REF
114 && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
115 x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
116 if (TREE_CODE (x) != VAR_DECL
117 && TREE_CODE (x) != PARM_DECL
118 && TREE_CODE (x) != RESULT_DECL)
119 return;
120 TREE_ADDRESSABLE (x) = 1;
123 /* Return a hash value for a formal temporary table entry. */
125 static hashval_t
126 gimple_tree_hash (const void *p)
128 tree t = ((const elt_t *) p)->val;
129 return iterative_hash_expr (t, 0);
132 /* Compare two formal temporary table entries. */
134 static int
135 gimple_tree_eq (const void *p1, const void *p2)
137 tree t1 = ((const elt_t *) p1)->val;
138 tree t2 = ((const elt_t *) p2)->val;
139 enum tree_code code = TREE_CODE (t1);
141 if (TREE_CODE (t2) != code
142 || TREE_TYPE (t1) != TREE_TYPE (t2))
143 return 0;
145 if (!operand_equal_p (t1, t2, 0))
146 return 0;
148 #ifdef ENABLE_CHECKING
149 /* Only allow them to compare equal if they also hash equal; otherwise
150 results are nondeterminate, and we fail bootstrap comparison. */
151 gcc_assert (gimple_tree_hash (p1) == gimple_tree_hash (p2));
152 #endif
154 return 1;
157 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
158 *SEQ_P is NULL, a new sequence is allocated. This function is
159 similar to gimple_seq_add_stmt, but does not scan the operands.
160 During gimplification, we need to manipulate statement sequences
161 before the def/use vectors have been constructed. */
163 void
164 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
166 gimple_stmt_iterator si;
168 if (gs == NULL)
169 return;
171 if (*seq_p == NULL)
172 *seq_p = gimple_seq_alloc ();
174 si = gsi_last (*seq_p);
176 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
179 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
180 NULL, a new sequence is allocated. This function is
181 similar to gimple_seq_add_seq, but does not scan the operands.
182 During gimplification, we need to manipulate statement sequences
183 before the def/use vectors have been constructed. */
185 static void
186 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
188 gimple_stmt_iterator si;
190 if (src == NULL)
191 return;
193 if (*dst_p == NULL)
194 *dst_p = gimple_seq_alloc ();
196 si = gsi_last (*dst_p);
197 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
200 /* Set up a context for the gimplifier. */
202 void
203 push_gimplify_context (struct gimplify_ctx *c)
205 memset (c, '\0', sizeof (*c));
206 c->prev_context = gimplify_ctxp;
207 gimplify_ctxp = c;
210 /* Tear down a context for the gimplifier. If BODY is non-null, then
211 put the temporaries into the outer BIND_EXPR. Otherwise, put them
212 in the local_decls.
214 BODY is not a sequence, but the first tuple in a sequence. */
216 void
217 pop_gimplify_context (gimple body)
219 struct gimplify_ctx *c = gimplify_ctxp;
221 gcc_assert (c && (c->bind_expr_stack == NULL
222 || VEC_empty (gimple, c->bind_expr_stack)));
223 VEC_free (gimple, heap, c->bind_expr_stack);
224 gimplify_ctxp = c->prev_context;
226 if (body)
227 declare_vars (c->temps, body, false);
228 else
229 record_vars (c->temps);
231 if (c->temp_htab)
232 htab_delete (c->temp_htab);
235 static void
236 gimple_push_bind_expr (gimple gimple_bind)
238 if (gimplify_ctxp->bind_expr_stack == NULL)
239 gimplify_ctxp->bind_expr_stack = VEC_alloc (gimple, heap, 8);
240 VEC_safe_push (gimple, heap, gimplify_ctxp->bind_expr_stack, gimple_bind);
243 static void
244 gimple_pop_bind_expr (void)
246 VEC_pop (gimple, gimplify_ctxp->bind_expr_stack);
249 gimple
250 gimple_current_bind_expr (void)
252 return VEC_last (gimple, gimplify_ctxp->bind_expr_stack);
255 /* Return the stack GIMPLE_BINDs created during gimplification. */
257 VEC(gimple, heap) *
258 gimple_bind_expr_stack (void)
260 return gimplify_ctxp->bind_expr_stack;
263 /* Returns true iff there is a COND_EXPR between us and the innermost
264 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
266 static bool
267 gimple_conditional_context (void)
269 return gimplify_ctxp->conditions > 0;
272 /* Note that we've entered a COND_EXPR. */
274 static void
275 gimple_push_condition (void)
277 #ifdef ENABLE_GIMPLE_CHECKING
278 if (gimplify_ctxp->conditions == 0)
279 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
280 #endif
281 ++(gimplify_ctxp->conditions);
284 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
285 now, add any conditional cleanups we've seen to the prequeue. */
287 static void
288 gimple_pop_condition (gimple_seq *pre_p)
290 int conds = --(gimplify_ctxp->conditions);
292 gcc_assert (conds >= 0);
293 if (conds == 0)
295 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
296 gimplify_ctxp->conditional_cleanups = NULL;
300 /* A stable comparison routine for use with splay trees and DECLs. */
302 static int
303 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
305 tree a = (tree) xa;
306 tree b = (tree) xb;
308 return DECL_UID (a) - DECL_UID (b);
311 /* Create a new omp construct that deals with variable remapping. */
313 static struct gimplify_omp_ctx *
314 new_omp_context (enum omp_region_type region_type)
316 struct gimplify_omp_ctx *c;
318 c = XCNEW (struct gimplify_omp_ctx);
319 c->outer_context = gimplify_omp_ctxp;
320 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
321 c->privatized_types = pointer_set_create ();
322 c->location = input_location;
323 c->region_type = region_type;
324 if ((region_type & ORT_TASK) == 0)
325 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
326 else
327 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
329 return c;
332 /* Destroy an omp construct that deals with variable remapping. */
334 static void
335 delete_omp_context (struct gimplify_omp_ctx *c)
337 splay_tree_delete (c->variables);
338 pointer_set_destroy (c->privatized_types);
339 XDELETE (c);
342 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
343 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
345 /* Both gimplify the statement T and append it to *SEQ_P. This function
346 behaves exactly as gimplify_stmt, but you don't have to pass T as a
347 reference. */
349 void
350 gimplify_and_add (tree t, gimple_seq *seq_p)
352 gimplify_stmt (&t, seq_p);
355 /* Gimplify statement T into sequence *SEQ_P, and return the first
356 tuple in the sequence of generated tuples for this statement.
357 Return NULL if gimplifying T produced no tuples. */
359 static gimple
360 gimplify_and_return_first (tree t, gimple_seq *seq_p)
362 gimple_stmt_iterator last = gsi_last (*seq_p);
364 gimplify_and_add (t, seq_p);
366 if (!gsi_end_p (last))
368 gsi_next (&last);
369 return gsi_stmt (last);
371 else
372 return gimple_seq_first_stmt (*seq_p);
375 /* Strip off a legitimate source ending from the input string NAME of
376 length LEN. Rather than having to know the names used by all of
377 our front ends, we strip off an ending of a period followed by
378 up to five characters. (Java uses ".class".) */
380 static inline void
381 remove_suffix (char *name, int len)
383 int i;
385 for (i = 2; i < 8 && len > i; i++)
387 if (name[len - i] == '.')
389 name[len - i] = '\0';
390 break;
395 /* Create a new temporary name with PREFIX. Returns an identifier. */
397 static GTY(()) unsigned int tmp_var_id_num;
399 tree
400 create_tmp_var_name (const char *prefix)
402 char *tmp_name;
404 if (prefix)
406 char *preftmp = ASTRDUP (prefix);
408 remove_suffix (preftmp, strlen (preftmp));
409 prefix = preftmp;
412 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
413 return get_identifier (tmp_name);
417 /* Create a new temporary variable declaration of type TYPE.
418 Does NOT push it into the current binding. */
420 tree
421 create_tmp_var_raw (tree type, const char *prefix)
423 tree tmp_var;
424 tree new_type;
426 /* Make the type of the variable writable. */
427 new_type = build_type_variant (type, 0, 0);
428 TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type);
430 tmp_var = build_decl (input_location,
431 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
432 type);
434 /* The variable was declared by the compiler. */
435 DECL_ARTIFICIAL (tmp_var) = 1;
436 /* And we don't want debug info for it. */
437 DECL_IGNORED_P (tmp_var) = 1;
439 /* Make the variable writable. */
440 TREE_READONLY (tmp_var) = 0;
442 DECL_EXTERNAL (tmp_var) = 0;
443 TREE_STATIC (tmp_var) = 0;
444 TREE_USED (tmp_var) = 1;
446 return tmp_var;
449 /* Create a new temporary variable declaration of type TYPE. DOES push the
450 variable into the current binding. Further, assume that this is called
451 only from gimplification or optimization, at which point the creation of
452 certain types are bugs. */
454 tree
455 create_tmp_var (tree type, const char *prefix)
457 tree tmp_var;
459 /* We don't allow types that are addressable (meaning we can't make copies),
460 or incomplete. We also used to reject every variable size objects here,
461 but now support those for which a constant upper bound can be obtained.
462 The processing for variable sizes is performed in gimple_add_tmp_var,
463 point at which it really matters and possibly reached via paths not going
464 through this function, e.g. after direct calls to create_tmp_var_raw. */
465 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
467 tmp_var = create_tmp_var_raw (type, prefix);
468 gimple_add_tmp_var (tmp_var);
469 return tmp_var;
472 /* Create a new temporary variable declaration of type TYPE by calling
473 create_tmp_var and if TYPE is a vector or a complex number, mark the new
474 temporary as gimple register. */
476 tree
477 create_tmp_reg (tree type, const char *prefix)
479 tree tmp;
481 tmp = create_tmp_var (type, prefix);
482 if (TREE_CODE (type) == COMPLEX_TYPE
483 || TREE_CODE (type) == VECTOR_TYPE)
484 DECL_GIMPLE_REG_P (tmp) = 1;
486 return tmp;
489 /* Create a temporary with a name derived from VAL. Subroutine of
490 lookup_tmp_var; nobody else should call this function. */
492 static inline tree
493 create_tmp_from_val (tree val)
495 return create_tmp_var (TREE_TYPE (val), get_name (val));
498 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
499 an existing expression temporary. */
501 static tree
502 lookup_tmp_var (tree val, bool is_formal)
504 tree ret;
506 /* If not optimizing, never really reuse a temporary. local-alloc
507 won't allocate any variable that is used in more than one basic
508 block, which means it will go into memory, causing much extra
509 work in reload and final and poorer code generation, outweighing
510 the extra memory allocation here. */
511 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
512 ret = create_tmp_from_val (val);
513 else
515 elt_t elt, *elt_p;
516 void **slot;
518 elt.val = val;
519 if (gimplify_ctxp->temp_htab == NULL)
520 gimplify_ctxp->temp_htab
521 = htab_create (1000, gimple_tree_hash, gimple_tree_eq, free);
522 slot = htab_find_slot (gimplify_ctxp->temp_htab, (void *)&elt, INSERT);
523 if (*slot == NULL)
525 elt_p = XNEW (elt_t);
526 elt_p->val = val;
527 elt_p->temp = ret = create_tmp_from_val (val);
528 *slot = (void *) elt_p;
530 else
532 elt_p = (elt_t *) *slot;
533 ret = elt_p->temp;
537 return ret;
541 /* Return true if T is a CALL_EXPR or an expression that can be
542 assigned to a temporary. Note that this predicate should only be
543 used during gimplification. See the rationale for this in
544 gimplify_modify_expr. */
546 static bool
547 is_gimple_reg_rhs_or_call (tree t)
549 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
550 || TREE_CODE (t) == CALL_EXPR);
553 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
554 this predicate should only be used during gimplification. See the
555 rationale for this in gimplify_modify_expr. */
557 static bool
558 is_gimple_mem_rhs_or_call (tree t)
560 /* If we're dealing with a renamable type, either source or dest must be
561 a renamed variable. */
562 if (is_gimple_reg_type (TREE_TYPE (t)))
563 return is_gimple_val (t);
564 else
565 return (is_gimple_val (t) || is_gimple_lvalue (t)
566 || TREE_CODE (t) == CALL_EXPR);
569 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
571 static tree
572 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
573 bool is_formal)
575 tree t, mod;
577 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
578 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
579 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
580 fb_rvalue);
582 t = lookup_tmp_var (val, is_formal);
584 if (is_formal
585 && (TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
586 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE))
587 DECL_GIMPLE_REG_P (t) = 1;
589 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
591 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
593 /* gimplify_modify_expr might want to reduce this further. */
594 gimplify_and_add (mod, pre_p);
595 ggc_free (mod);
597 /* If we're gimplifying into ssa, gimplify_modify_expr will have
598 given our temporary an SSA name. Find and return it. */
599 if (gimplify_ctxp->into_ssa)
601 gimple last = gimple_seq_last_stmt (*pre_p);
602 t = gimple_get_lhs (last);
605 return t;
608 /* Returns a formal temporary variable initialized with VAL. PRE_P is as
609 in gimplify_expr. Only use this function if:
611 1) The value of the unfactored expression represented by VAL will not
612 change between the initialization and use of the temporary, and
613 2) The temporary will not be otherwise modified.
615 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
616 and #2 means it is inappropriate for && temps.
618 For other cases, use get_initialized_tmp_var instead. */
620 tree
621 get_formal_tmp_var (tree val, gimple_seq *pre_p)
623 return internal_get_tmp_var (val, pre_p, NULL, true);
626 /* Returns a temporary variable initialized with VAL. PRE_P and POST_P
627 are as in gimplify_expr. */
629 tree
630 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
632 return internal_get_tmp_var (val, pre_p, post_p, false);
635 /* Declares all the variables in VARS in SCOPE. If DEBUG_INFO is
636 true, generate debug info for them; otherwise don't. */
638 void
639 declare_vars (tree vars, gimple scope, bool debug_info)
641 tree last = vars;
642 if (last)
644 tree temps, block;
646 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
648 temps = nreverse (last);
650 block = gimple_bind_block (scope);
651 gcc_assert (!block || TREE_CODE (block) == BLOCK);
652 if (!block || !debug_info)
654 DECL_CHAIN (last) = gimple_bind_vars (scope);
655 gimple_bind_set_vars (scope, temps);
657 else
659 /* We need to attach the nodes both to the BIND_EXPR and to its
660 associated BLOCK for debugging purposes. The key point here
661 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
662 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
663 if (BLOCK_VARS (block))
664 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
665 else
667 gimple_bind_set_vars (scope,
668 chainon (gimple_bind_vars (scope), temps));
669 BLOCK_VARS (block) = temps;
675 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
676 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
677 no such upper bound can be obtained. */
679 static void
680 force_constant_size (tree var)
682 /* The only attempt we make is by querying the maximum size of objects
683 of the variable's type. */
685 HOST_WIDE_INT max_size;
687 gcc_assert (TREE_CODE (var) == VAR_DECL);
689 max_size = max_int_size_in_bytes (TREE_TYPE (var));
691 gcc_assert (max_size >= 0);
693 DECL_SIZE_UNIT (var)
694 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
695 DECL_SIZE (var)
696 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
699 void
700 gimple_add_tmp_var (tree tmp)
702 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
704 /* Later processing assumes that the object size is constant, which might
705 not be true at this point. Force the use of a constant upper bound in
706 this case. */
707 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
708 force_constant_size (tmp);
710 DECL_CONTEXT (tmp) = current_function_decl;
711 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
713 if (gimplify_ctxp)
715 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
716 gimplify_ctxp->temps = tmp;
718 /* Mark temporaries local within the nearest enclosing parallel. */
719 if (gimplify_omp_ctxp)
721 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
722 while (ctx && ctx->region_type == ORT_WORKSHARE)
723 ctx = ctx->outer_context;
724 if (ctx)
725 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
728 else if (cfun)
729 record_vars (tmp);
730 else
732 gimple_seq body_seq;
734 /* This case is for nested functions. We need to expose the locals
735 they create. */
736 body_seq = gimple_body (current_function_decl);
737 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
741 /* Determines whether to assign a location to the statement GS. */
743 static bool
744 should_carry_location_p (gimple gs)
746 /* Don't emit a line note for a label. We particularly don't want to
747 emit one for the break label, since it doesn't actually correspond
748 to the beginning of the loop/switch. */
749 if (gimple_code (gs) == GIMPLE_LABEL)
750 return false;
752 return true;
756 /* Return true if a location should not be emitted for this statement
757 by annotate_one_with_location. */
759 static inline bool
760 gimple_do_not_emit_location_p (gimple g)
762 return gimple_plf (g, GF_PLF_1);
765 /* Mark statement G so a location will not be emitted by
766 annotate_one_with_location. */
768 static inline void
769 gimple_set_do_not_emit_location (gimple g)
771 /* The PLF flags are initialized to 0 when a new tuple is created,
772 so no need to initialize it anywhere. */
773 gimple_set_plf (g, GF_PLF_1, true);
776 /* Set the location for gimple statement GS to LOCATION. */
778 static void
779 annotate_one_with_location (gimple gs, location_t location)
781 if (!gimple_has_location (gs)
782 && !gimple_do_not_emit_location_p (gs)
783 && should_carry_location_p (gs))
784 gimple_set_location (gs, location);
788 /* Set LOCATION for all the statements after iterator GSI in sequence
789 SEQ. If GSI is pointing to the end of the sequence, start with the
790 first statement in SEQ. */
792 static void
793 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
794 location_t location)
796 if (gsi_end_p (gsi))
797 gsi = gsi_start (seq);
798 else
799 gsi_next (&gsi);
801 for (; !gsi_end_p (gsi); gsi_next (&gsi))
802 annotate_one_with_location (gsi_stmt (gsi), location);
806 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
808 void
809 annotate_all_with_location (gimple_seq stmt_p, location_t location)
811 gimple_stmt_iterator i;
813 if (gimple_seq_empty_p (stmt_p))
814 return;
816 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
818 gimple gs = gsi_stmt (i);
819 annotate_one_with_location (gs, location);
823 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
824 nodes that are referenced more than once in GENERIC functions. This is
825 necessary because gimplification (translation into GIMPLE) is performed
826 by modifying tree nodes in-place, so gimplication of a shared node in a
827 first context could generate an invalid GIMPLE form in a second context.
829 This is achieved with a simple mark/copy/unmark algorithm that walks the
830 GENERIC representation top-down, marks nodes with TREE_VISITED the first
831 time it encounters them, duplicates them if they already have TREE_VISITED
832 set, and finally removes the TREE_VISITED marks it has set.
834 The algorithm works only at the function level, i.e. it generates a GENERIC
835 representation of a function with no nodes shared within the function when
836 passed a GENERIC function (except for nodes that are allowed to be shared).
838 At the global level, it is also necessary to unshare tree nodes that are
839 referenced in more than one function, for the same aforementioned reason.
840 This requires some cooperation from the front-end. There are 2 strategies:
842 1. Manual unsharing. The front-end needs to call unshare_expr on every
843 expression that might end up being shared across functions.
845 2. Deep unsharing. This is an extension of regular unsharing. Instead
846 of calling unshare_expr on expressions that might be shared across
847 functions, the front-end pre-marks them with TREE_VISITED. This will
848 ensure that they are unshared on the first reference within functions
849 when the regular unsharing algorithm runs. The counterpart is that
850 this algorithm must look deeper than for manual unsharing, which is
851 specified by LANG_HOOKS_DEEP_UNSHARING.
853 If there are only few specific cases of node sharing across functions, it is
854 probably easier for a front-end to unshare the expressions manually. On the
855 contrary, if the expressions generated at the global level are as widespread
856 as expressions generated within functions, deep unsharing is very likely the
857 way to go. */
859 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
860 These nodes model computations that should only be done once. If we
861 were to unshare something like SAVE_EXPR(i++), the gimplification
862 process would create wrong code. */
864 static tree
865 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
867 tree t = *tp;
868 enum tree_code code = TREE_CODE (t);
870 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
871 copy their subtrees if we can make sure to do it only once. */
872 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
874 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
876 else
877 *walk_subtrees = 0;
880 /* Stop at types, decls, constants like copy_tree_r. */
881 else if (TREE_CODE_CLASS (code) == tcc_type
882 || TREE_CODE_CLASS (code) == tcc_declaration
883 || TREE_CODE_CLASS (code) == tcc_constant
884 /* We can't do anything sensible with a BLOCK used as an
885 expression, but we also can't just die when we see it
886 because of non-expression uses. So we avert our eyes
887 and cross our fingers. Silly Java. */
888 || code == BLOCK)
889 *walk_subtrees = 0;
891 /* Cope with the statement expression extension. */
892 else if (code == STATEMENT_LIST)
895 /* Leave the bulk of the work to copy_tree_r itself. */
896 else
897 copy_tree_r (tp, walk_subtrees, NULL);
899 return NULL_TREE;
902 /* Callback for walk_tree to unshare most of the shared trees rooted at
903 *TP. If *TP has been visited already (i.e., TREE_VISITED (*TP) == 1),
904 then *TP is deep copied by calling mostly_copy_tree_r. */
906 static tree
907 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
909 tree t = *tp;
910 enum tree_code code = TREE_CODE (t);
912 /* Skip types, decls, and constants. But we do want to look at their
913 types and the bounds of types. Mark them as visited so we properly
914 unmark their subtrees on the unmark pass. If we've already seen them,
915 don't look down further. */
916 if (TREE_CODE_CLASS (code) == tcc_type
917 || TREE_CODE_CLASS (code) == tcc_declaration
918 || TREE_CODE_CLASS (code) == tcc_constant)
920 if (TREE_VISITED (t))
921 *walk_subtrees = 0;
922 else
923 TREE_VISITED (t) = 1;
926 /* If this node has been visited already, unshare it and don't look
927 any deeper. */
928 else if (TREE_VISITED (t))
930 walk_tree (tp, mostly_copy_tree_r, data, NULL);
931 *walk_subtrees = 0;
934 /* Otherwise, mark the node as visited and keep looking. */
935 else
936 TREE_VISITED (t) = 1;
938 return NULL_TREE;
941 /* Unshare most of the shared trees rooted at *TP. */
943 static inline void
944 copy_if_shared (tree *tp)
946 /* If the language requires deep unsharing, we need a pointer set to make
947 sure we don't repeatedly unshare subtrees of unshareable nodes. */
948 struct pointer_set_t *visited
949 = lang_hooks.deep_unsharing ? pointer_set_create () : NULL;
950 walk_tree (tp, copy_if_shared_r, visited, NULL);
951 if (visited)
952 pointer_set_destroy (visited);
955 /* Unshare all the trees in BODY_P, a pointer into the body of FNDECL, and the
956 bodies of any nested functions if we are unsharing the entire body of
957 FNDECL. */
959 static void
960 unshare_body (tree *body_p, tree fndecl)
962 struct cgraph_node *cgn = cgraph_get_node (fndecl);
964 copy_if_shared (body_p);
966 if (cgn && body_p == &DECL_SAVED_TREE (fndecl))
967 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
968 unshare_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
971 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
972 Subtrees are walked until the first unvisited node is encountered. */
974 static tree
975 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
977 tree t = *tp;
979 /* If this node has been visited, unmark it and keep looking. */
980 if (TREE_VISITED (t))
981 TREE_VISITED (t) = 0;
983 /* Otherwise, don't look any deeper. */
984 else
985 *walk_subtrees = 0;
987 return NULL_TREE;
990 /* Unmark the visited trees rooted at *TP. */
992 static inline void
993 unmark_visited (tree *tp)
995 walk_tree (tp, unmark_visited_r, NULL, NULL);
998 /* Likewise, but mark all trees as not visited. */
1000 static void
1001 unvisit_body (tree *body_p, tree fndecl)
1003 struct cgraph_node *cgn = cgraph_get_node (fndecl);
1005 unmark_visited (body_p);
1007 if (cgn && body_p == &DECL_SAVED_TREE (fndecl))
1008 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1009 unvisit_body (&DECL_SAVED_TREE (cgn->decl), cgn->decl);
1012 /* Unconditionally make an unshared copy of EXPR. This is used when using
1013 stored expressions which span multiple functions, such as BINFO_VTABLE,
1014 as the normal unsharing process can't tell that they're shared. */
1016 tree
1017 unshare_expr (tree expr)
1019 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1020 return expr;
1023 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1024 contain statements and have a value. Assign its value to a temporary
1025 and give it void_type_node. Returns the temporary, or NULL_TREE if
1026 WRAPPER was already void. */
1028 tree
1029 voidify_wrapper_expr (tree wrapper, tree temp)
1031 tree type = TREE_TYPE (wrapper);
1032 if (type && !VOID_TYPE_P (type))
1034 tree *p;
1036 /* Set p to point to the body of the wrapper. Loop until we find
1037 something that isn't a wrapper. */
1038 for (p = &wrapper; p && *p; )
1040 switch (TREE_CODE (*p))
1042 case BIND_EXPR:
1043 TREE_SIDE_EFFECTS (*p) = 1;
1044 TREE_TYPE (*p) = void_type_node;
1045 /* For a BIND_EXPR, the body is operand 1. */
1046 p = &BIND_EXPR_BODY (*p);
1047 break;
1049 case CLEANUP_POINT_EXPR:
1050 case TRY_FINALLY_EXPR:
1051 case TRY_CATCH_EXPR:
1052 TREE_SIDE_EFFECTS (*p) = 1;
1053 TREE_TYPE (*p) = void_type_node;
1054 p = &TREE_OPERAND (*p, 0);
1055 break;
1057 case STATEMENT_LIST:
1059 tree_stmt_iterator i = tsi_last (*p);
1060 TREE_SIDE_EFFECTS (*p) = 1;
1061 TREE_TYPE (*p) = void_type_node;
1062 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1064 break;
1066 case COMPOUND_EXPR:
1067 /* Advance to the last statement. Set all container types to void. */
1068 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1070 TREE_SIDE_EFFECTS (*p) = 1;
1071 TREE_TYPE (*p) = void_type_node;
1073 break;
1075 default:
1076 goto out;
1080 out:
1081 if (p == NULL || IS_EMPTY_STMT (*p))
1082 temp = NULL_TREE;
1083 else if (temp)
1085 /* The wrapper is on the RHS of an assignment that we're pushing
1086 down. */
1087 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1088 || TREE_CODE (temp) == MODIFY_EXPR);
1089 TREE_OPERAND (temp, 1) = *p;
1090 *p = temp;
1092 else
1094 temp = create_tmp_var (type, "retval");
1095 *p = build2 (INIT_EXPR, type, temp, *p);
1098 return temp;
1101 return NULL_TREE;
1104 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1105 a temporary through which they communicate. */
1107 static void
1108 build_stack_save_restore (gimple *save, gimple *restore)
1110 tree tmp_var;
1112 *save = gimple_build_call (implicit_built_in_decls[BUILT_IN_STACK_SAVE], 0);
1113 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1114 gimple_call_set_lhs (*save, tmp_var);
1116 *restore = gimple_build_call (implicit_built_in_decls[BUILT_IN_STACK_RESTORE],
1117 1, tmp_var);
1120 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1122 static enum gimplify_status
1123 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1125 tree bind_expr = *expr_p;
1126 bool old_save_stack = gimplify_ctxp->save_stack;
1127 tree t;
1128 gimple gimple_bind;
1129 gimple_seq body;
1131 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1133 /* Mark variables seen in this bind expr. */
1134 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1136 if (TREE_CODE (t) == VAR_DECL)
1138 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1140 /* Mark variable as local. */
1141 if (ctx && !is_global_var (t)
1142 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1143 || splay_tree_lookup (ctx->variables,
1144 (splay_tree_key) t) == NULL))
1145 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1147 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1149 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1150 cfun->has_local_explicit_reg_vars = true;
1153 /* Preliminarily mark non-addressed complex variables as eligible
1154 for promotion to gimple registers. We'll transform their uses
1155 as we find them. */
1156 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1157 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1158 && !TREE_THIS_VOLATILE (t)
1159 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1160 && !needs_to_live_in_memory (t))
1161 DECL_GIMPLE_REG_P (t) = 1;
1164 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1165 BIND_EXPR_BLOCK (bind_expr));
1166 gimple_push_bind_expr (gimple_bind);
1168 gimplify_ctxp->save_stack = false;
1170 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1171 body = NULL;
1172 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1173 gimple_bind_set_body (gimple_bind, body);
1175 if (gimplify_ctxp->save_stack)
1177 gimple stack_save, stack_restore, gs;
1178 gimple_seq cleanup, new_body;
1180 /* Save stack on entry and restore it on exit. Add a try_finally
1181 block to achieve this. Note that mudflap depends on the
1182 format of the emitted code: see mx_register_decls(). */
1183 build_stack_save_restore (&stack_save, &stack_restore);
1185 cleanup = new_body = NULL;
1186 gimplify_seq_add_stmt (&cleanup, stack_restore);
1187 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1188 GIMPLE_TRY_FINALLY);
1190 gimplify_seq_add_stmt (&new_body, stack_save);
1191 gimplify_seq_add_stmt (&new_body, gs);
1192 gimple_bind_set_body (gimple_bind, new_body);
1195 gimplify_ctxp->save_stack = old_save_stack;
1196 gimple_pop_bind_expr ();
1198 gimplify_seq_add_stmt (pre_p, gimple_bind);
1200 if (temp)
1202 *expr_p = temp;
1203 return GS_OK;
1206 *expr_p = NULL_TREE;
1207 return GS_ALL_DONE;
1210 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1211 GIMPLE value, it is assigned to a new temporary and the statement is
1212 re-written to return the temporary.
1214 PRE_P points to the sequence where side effects that must happen before
1215 STMT should be stored. */
1217 static enum gimplify_status
1218 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1220 gimple ret;
1221 tree ret_expr = TREE_OPERAND (stmt, 0);
1222 tree result_decl, result;
1224 if (ret_expr == error_mark_node)
1225 return GS_ERROR;
1227 if (!ret_expr
1228 || TREE_CODE (ret_expr) == RESULT_DECL
1229 || ret_expr == error_mark_node)
1231 gimple ret = gimple_build_return (ret_expr);
1232 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1233 gimplify_seq_add_stmt (pre_p, ret);
1234 return GS_ALL_DONE;
1237 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1238 result_decl = NULL_TREE;
1239 else
1241 result_decl = TREE_OPERAND (ret_expr, 0);
1243 /* See through a return by reference. */
1244 if (TREE_CODE (result_decl) == INDIRECT_REF)
1245 result_decl = TREE_OPERAND (result_decl, 0);
1247 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1248 || TREE_CODE (ret_expr) == INIT_EXPR)
1249 && TREE_CODE (result_decl) == RESULT_DECL);
1252 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1253 Recall that aggregate_value_p is FALSE for any aggregate type that is
1254 returned in registers. If we're returning values in registers, then
1255 we don't want to extend the lifetime of the RESULT_DECL, particularly
1256 across another call. In addition, for those aggregates for which
1257 hard_function_value generates a PARALLEL, we'll die during normal
1258 expansion of structure assignments; there's special code in expand_return
1259 to handle this case that does not exist in expand_expr. */
1260 if (!result_decl)
1261 result = NULL_TREE;
1262 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1264 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1266 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1267 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1268 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1269 should be effectively allocated by the caller, i.e. all calls to
1270 this function must be subject to the Return Slot Optimization. */
1271 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1272 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1274 result = result_decl;
1276 else if (gimplify_ctxp->return_temp)
1277 result = gimplify_ctxp->return_temp;
1278 else
1280 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1282 /* ??? With complex control flow (usually involving abnormal edges),
1283 we can wind up warning about an uninitialized value for this. Due
1284 to how this variable is constructed and initialized, this is never
1285 true. Give up and never warn. */
1286 TREE_NO_WARNING (result) = 1;
1288 gimplify_ctxp->return_temp = result;
1291 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1292 Then gimplify the whole thing. */
1293 if (result != result_decl)
1294 TREE_OPERAND (ret_expr, 0) = result;
1296 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1298 ret = gimple_build_return (result);
1299 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1300 gimplify_seq_add_stmt (pre_p, ret);
1302 return GS_ALL_DONE;
1305 static void
1306 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1308 /* This is a variable-sized decl. Simplify its size and mark it
1309 for deferred expansion. Note that mudflap depends on the format
1310 of the emitted code: see mx_register_decls(). */
1311 tree t, addr, ptr_type;
1313 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1314 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1316 /* All occurrences of this decl in final gimplified code will be
1317 replaced by indirection. Setting DECL_VALUE_EXPR does two
1318 things: First, it lets the rest of the gimplifier know what
1319 replacement to use. Second, it lets the debug info know
1320 where to find the value. */
1321 ptr_type = build_pointer_type (TREE_TYPE (decl));
1322 addr = create_tmp_var (ptr_type, get_name (decl));
1323 DECL_IGNORED_P (addr) = 0;
1324 t = build_fold_indirect_ref (addr);
1325 TREE_THIS_NOTRAP (t) = 1;
1326 SET_DECL_VALUE_EXPR (decl, t);
1327 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1329 t = built_in_decls[BUILT_IN_ALLOCA];
1330 t = build_call_expr (t, 1, DECL_SIZE_UNIT (decl));
1331 /* The call has been built for a variable-sized object. */
1332 ALLOCA_FOR_VAR_P (t) = 1;
1333 t = fold_convert (ptr_type, t);
1334 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1336 gimplify_and_add (t, seq_p);
1338 /* Indicate that we need to restore the stack level when the
1339 enclosing BIND_EXPR is exited. */
1340 gimplify_ctxp->save_stack = true;
1344 /* Gimplifies a DECL_EXPR node *STMT_P by making any necessary allocation
1345 and initialization explicit. */
1347 static enum gimplify_status
1348 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1350 tree stmt = *stmt_p;
1351 tree decl = DECL_EXPR_DECL (stmt);
1353 *stmt_p = NULL_TREE;
1355 if (TREE_TYPE (decl) == error_mark_node)
1356 return GS_ERROR;
1358 if ((TREE_CODE (decl) == TYPE_DECL
1359 || TREE_CODE (decl) == VAR_DECL)
1360 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1361 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1363 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1365 tree init = DECL_INITIAL (decl);
1367 if (TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1368 || (!TREE_STATIC (decl)
1369 && flag_stack_check == GENERIC_STACK_CHECK
1370 && compare_tree_int (DECL_SIZE_UNIT (decl),
1371 STACK_CHECK_MAX_VAR_SIZE) > 0))
1372 gimplify_vla_decl (decl, seq_p);
1374 /* Some front ends do not explicitly declare all anonymous
1375 artificial variables. We compensate here by declaring the
1376 variables, though it would be better if the front ends would
1377 explicitly declare them. */
1378 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1379 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1380 gimple_add_tmp_var (decl);
1382 if (init && init != error_mark_node)
1384 if (!TREE_STATIC (decl))
1386 DECL_INITIAL (decl) = NULL_TREE;
1387 init = build2 (INIT_EXPR, void_type_node, decl, init);
1388 gimplify_and_add (init, seq_p);
1389 ggc_free (init);
1391 else
1392 /* We must still examine initializers for static variables
1393 as they may contain a label address. */
1394 walk_tree (&init, force_labels_r, NULL, NULL);
1398 return GS_ALL_DONE;
1401 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1402 and replacing the LOOP_EXPR with goto, but if the loop contains an
1403 EXIT_EXPR, we need to append a label for it to jump to. */
1405 static enum gimplify_status
1406 gimplify_loop_expr (tree *expr_p, gimple_seq *pre_p)
1408 tree saved_label = gimplify_ctxp->exit_label;
1409 tree start_label = create_artificial_label (UNKNOWN_LOCATION);
1411 gimplify_seq_add_stmt (pre_p, gimple_build_label (start_label));
1413 gimplify_ctxp->exit_label = NULL_TREE;
1415 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1417 gimplify_seq_add_stmt (pre_p, gimple_build_goto (start_label));
1419 if (gimplify_ctxp->exit_label)
1420 gimplify_seq_add_stmt (pre_p, gimple_build_label (gimplify_ctxp->exit_label));
1422 gimplify_ctxp->exit_label = saved_label;
1424 *expr_p = NULL;
1425 return GS_ALL_DONE;
1428 /* Gimplifies a statement list onto a sequence. These may be created either
1429 by an enlightened front-end, or by shortcut_cond_expr. */
1431 static enum gimplify_status
1432 gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
1434 tree temp = voidify_wrapper_expr (*expr_p, NULL);
1436 tree_stmt_iterator i = tsi_start (*expr_p);
1438 while (!tsi_end_p (i))
1440 gimplify_stmt (tsi_stmt_ptr (i), pre_p);
1441 tsi_delink (&i);
1444 if (temp)
1446 *expr_p = temp;
1447 return GS_OK;
1450 return GS_ALL_DONE;
1453 /* Compare two case labels. Because the front end should already have
1454 made sure that case ranges do not overlap, it is enough to only compare
1455 the CASE_LOW values of each case label. */
1457 static int
1458 compare_case_labels (const void *p1, const void *p2)
1460 const_tree const case1 = *(const_tree const*)p1;
1461 const_tree const case2 = *(const_tree const*)p2;
1463 /* The 'default' case label always goes first. */
1464 if (!CASE_LOW (case1))
1465 return -1;
1466 else if (!CASE_LOW (case2))
1467 return 1;
1468 else
1469 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1473 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1475 void
1476 sort_case_labels (VEC(tree,heap)* label_vec)
1478 VEC_qsort (tree, label_vec, compare_case_labels);
1482 /* Gimplify a SWITCH_EXPR, and collect a TREE_VEC of the labels it can
1483 branch to. */
1485 static enum gimplify_status
1486 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1488 tree switch_expr = *expr_p;
1489 gimple_seq switch_body_seq = NULL;
1490 enum gimplify_status ret;
1492 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1493 fb_rvalue);
1494 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1495 return ret;
1497 if (SWITCH_BODY (switch_expr))
1499 VEC (tree,heap) *labels;
1500 VEC (tree,heap) *saved_labels;
1501 tree default_case = NULL_TREE;
1502 size_t i, len;
1503 gimple gimple_switch;
1505 /* If someone can be bothered to fill in the labels, they can
1506 be bothered to null out the body too. */
1507 gcc_assert (!SWITCH_LABELS (switch_expr));
1509 /* save old labels, get new ones from body, then restore the old
1510 labels. Save all the things from the switch body to append after. */
1511 saved_labels = gimplify_ctxp->case_labels;
1512 gimplify_ctxp->case_labels = VEC_alloc (tree, heap, 8);
1514 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1515 labels = gimplify_ctxp->case_labels;
1516 gimplify_ctxp->case_labels = saved_labels;
1518 i = 0;
1519 while (i < VEC_length (tree, labels))
1521 tree elt = VEC_index (tree, labels, i);
1522 tree low = CASE_LOW (elt);
1523 bool remove_element = FALSE;
1525 if (low)
1527 /* Discard empty ranges. */
1528 tree high = CASE_HIGH (elt);
1529 if (high && tree_int_cst_lt (high, low))
1530 remove_element = TRUE;
1532 else
1534 /* The default case must be the last label in the list. */
1535 gcc_assert (!default_case);
1536 default_case = elt;
1537 remove_element = TRUE;
1540 if (remove_element)
1541 VEC_ordered_remove (tree, labels, i);
1542 else
1543 i++;
1545 len = i;
1547 if (!VEC_empty (tree, labels))
1548 sort_case_labels (labels);
1550 if (!default_case)
1552 tree type = TREE_TYPE (switch_expr);
1554 /* If the switch has no default label, add one, so that we jump
1555 around the switch body. If the labels already cover the whole
1556 range of type, add the default label pointing to one of the
1557 existing labels. */
1558 if (type == void_type_node)
1559 type = TREE_TYPE (SWITCH_COND (switch_expr));
1560 if (len
1561 && INTEGRAL_TYPE_P (type)
1562 && TYPE_MIN_VALUE (type)
1563 && TYPE_MAX_VALUE (type)
1564 && tree_int_cst_equal (CASE_LOW (VEC_index (tree, labels, 0)),
1565 TYPE_MIN_VALUE (type)))
1567 tree low, high = CASE_HIGH (VEC_index (tree, labels, len - 1));
1568 if (!high)
1569 high = CASE_LOW (VEC_index (tree, labels, len - 1));
1570 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (type)))
1572 for (i = 1; i < len; i++)
1574 high = CASE_LOW (VEC_index (tree, labels, i));
1575 low = CASE_HIGH (VEC_index (tree, labels, i - 1));
1576 if (!low)
1577 low = CASE_LOW (VEC_index (tree, labels, i - 1));
1578 if ((TREE_INT_CST_LOW (low) + 1
1579 != TREE_INT_CST_LOW (high))
1580 || (TREE_INT_CST_HIGH (low)
1581 + (TREE_INT_CST_LOW (high) == 0)
1582 != TREE_INT_CST_HIGH (high)))
1583 break;
1585 if (i == len)
1586 default_case = build3 (CASE_LABEL_EXPR, void_type_node,
1587 NULL_TREE, NULL_TREE,
1588 CASE_LABEL (VEC_index (tree,
1589 labels, 0)));
1593 if (!default_case)
1595 gimple new_default;
1597 default_case
1598 = build3 (CASE_LABEL_EXPR, void_type_node,
1599 NULL_TREE, NULL_TREE,
1600 create_artificial_label (UNKNOWN_LOCATION));
1601 new_default = gimple_build_label (CASE_LABEL (default_case));
1602 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1606 gimple_switch = gimple_build_switch_vec (SWITCH_COND (switch_expr),
1607 default_case, labels);
1608 gimplify_seq_add_stmt (pre_p, gimple_switch);
1609 gimplify_seq_add_seq (pre_p, switch_body_seq);
1610 VEC_free(tree, heap, labels);
1612 else
1613 gcc_assert (SWITCH_LABELS (switch_expr));
1615 return GS_ALL_DONE;
1619 static enum gimplify_status
1620 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1622 struct gimplify_ctx *ctxp;
1623 gimple gimple_label;
1625 /* Invalid OpenMP programs can play Duff's Device type games with
1626 #pragma omp parallel. At least in the C front end, we don't
1627 detect such invalid branches until after gimplification. */
1628 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1629 if (ctxp->case_labels)
1630 break;
1632 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1633 VEC_safe_push (tree, heap, ctxp->case_labels, *expr_p);
1634 gimplify_seq_add_stmt (pre_p, gimple_label);
1636 return GS_ALL_DONE;
1639 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1640 if necessary. */
1642 tree
1643 build_and_jump (tree *label_p)
1645 if (label_p == NULL)
1646 /* If there's nowhere to jump, just fall through. */
1647 return NULL_TREE;
1649 if (*label_p == NULL_TREE)
1651 tree label = create_artificial_label (UNKNOWN_LOCATION);
1652 *label_p = label;
1655 return build1 (GOTO_EXPR, void_type_node, *label_p);
1658 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1659 This also involves building a label to jump to and communicating it to
1660 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1662 static enum gimplify_status
1663 gimplify_exit_expr (tree *expr_p)
1665 tree cond = TREE_OPERAND (*expr_p, 0);
1666 tree expr;
1668 expr = build_and_jump (&gimplify_ctxp->exit_label);
1669 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1670 *expr_p = expr;
1672 return GS_OK;
1675 /* A helper function to be called via walk_tree. Mark all labels under *TP
1676 as being forced. To be called for DECL_INITIAL of static variables. */
1678 tree
1679 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1681 if (TYPE_P (*tp))
1682 *walk_subtrees = 0;
1683 if (TREE_CODE (*tp) == LABEL_DECL)
1684 FORCED_LABEL (*tp) = 1;
1686 return NULL_TREE;
1689 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1690 different from its canonical type, wrap the whole thing inside a
1691 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1692 type.
1694 The canonical type of a COMPONENT_REF is the type of the field being
1695 referenced--unless the field is a bit-field which can be read directly
1696 in a smaller mode, in which case the canonical type is the
1697 sign-appropriate type corresponding to that mode. */
1699 static void
1700 canonicalize_component_ref (tree *expr_p)
1702 tree expr = *expr_p;
1703 tree type;
1705 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1707 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1708 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1709 else
1710 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1712 /* One could argue that all the stuff below is not necessary for
1713 the non-bitfield case and declare it a FE error if type
1714 adjustment would be needed. */
1715 if (TREE_TYPE (expr) != type)
1717 #ifdef ENABLE_TYPES_CHECKING
1718 tree old_type = TREE_TYPE (expr);
1719 #endif
1720 int type_quals;
1722 /* We need to preserve qualifiers and propagate them from
1723 operand 0. */
1724 type_quals = TYPE_QUALS (type)
1725 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1726 if (TYPE_QUALS (type) != type_quals)
1727 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1729 /* Set the type of the COMPONENT_REF to the underlying type. */
1730 TREE_TYPE (expr) = type;
1732 #ifdef ENABLE_TYPES_CHECKING
1733 /* It is now a FE error, if the conversion from the canonical
1734 type to the original expression type is not useless. */
1735 gcc_assert (useless_type_conversion_p (old_type, type));
1736 #endif
1740 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1741 to foo, embed that change in the ADDR_EXPR by converting
1742 T array[U];
1743 (T *)&array
1745 &array[L]
1746 where L is the lower bound. For simplicity, only do this for constant
1747 lower bound.
1748 The constraint is that the type of &array[L] is trivially convertible
1749 to T *. */
1751 static void
1752 canonicalize_addr_expr (tree *expr_p)
1754 tree expr = *expr_p;
1755 tree addr_expr = TREE_OPERAND (expr, 0);
1756 tree datype, ddatype, pddatype;
1758 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1759 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1760 || TREE_CODE (addr_expr) != ADDR_EXPR)
1761 return;
1763 /* The addr_expr type should be a pointer to an array. */
1764 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1765 if (TREE_CODE (datype) != ARRAY_TYPE)
1766 return;
1768 /* The pointer to element type shall be trivially convertible to
1769 the expression pointer type. */
1770 ddatype = TREE_TYPE (datype);
1771 pddatype = build_pointer_type (ddatype);
1772 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1773 pddatype))
1774 return;
1776 /* The lower bound and element sizes must be constant. */
1777 if (!TYPE_SIZE_UNIT (ddatype)
1778 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1779 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1780 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1781 return;
1783 /* All checks succeeded. Build a new node to merge the cast. */
1784 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1785 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1786 NULL_TREE, NULL_TREE);
1787 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1789 /* We can have stripped a required restrict qualifier above. */
1790 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1791 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1794 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1795 underneath as appropriate. */
1797 static enum gimplify_status
1798 gimplify_conversion (tree *expr_p)
1800 tree tem;
1801 location_t loc = EXPR_LOCATION (*expr_p);
1802 gcc_assert (CONVERT_EXPR_P (*expr_p));
1804 /* Then strip away all but the outermost conversion. */
1805 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1807 /* And remove the outermost conversion if it's useless. */
1808 if (tree_ssa_useless_type_conversion (*expr_p))
1809 *expr_p = TREE_OPERAND (*expr_p, 0);
1811 /* Attempt to avoid NOP_EXPR by producing reference to a subtype.
1812 For example this fold (subclass *)&A into &A->subclass avoiding
1813 a need for statement. */
1814 if (CONVERT_EXPR_P (*expr_p)
1815 && POINTER_TYPE_P (TREE_TYPE (*expr_p))
1816 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (*expr_p, 0)))
1817 && (tem = maybe_fold_offset_to_address
1818 (EXPR_LOCATION (*expr_p), TREE_OPERAND (*expr_p, 0),
1819 integer_zero_node, TREE_TYPE (*expr_p))) != NULL_TREE)
1820 *expr_p = tem;
1822 /* If we still have a conversion at the toplevel,
1823 then canonicalize some constructs. */
1824 if (CONVERT_EXPR_P (*expr_p))
1826 tree sub = TREE_OPERAND (*expr_p, 0);
1828 /* If a NOP conversion is changing the type of a COMPONENT_REF
1829 expression, then canonicalize its type now in order to expose more
1830 redundant conversions. */
1831 if (TREE_CODE (sub) == COMPONENT_REF)
1832 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
1834 /* If a NOP conversion is changing a pointer to array of foo
1835 to a pointer to foo, embed that change in the ADDR_EXPR. */
1836 else if (TREE_CODE (sub) == ADDR_EXPR)
1837 canonicalize_addr_expr (expr_p);
1840 /* If we have a conversion to a non-register type force the
1841 use of a VIEW_CONVERT_EXPR instead. */
1842 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
1843 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
1844 TREE_OPERAND (*expr_p, 0));
1846 return GS_OK;
1849 /* Nonlocal VLAs seen in the current function. */
1850 static struct pointer_set_t *nonlocal_vlas;
1852 /* Gimplify a VAR_DECL or PARM_DECL. Returns GS_OK if we expanded a
1853 DECL_VALUE_EXPR, and it's worth re-examining things. */
1855 static enum gimplify_status
1856 gimplify_var_or_parm_decl (tree *expr_p)
1858 tree decl = *expr_p;
1860 /* ??? If this is a local variable, and it has not been seen in any
1861 outer BIND_EXPR, then it's probably the result of a duplicate
1862 declaration, for which we've already issued an error. It would
1863 be really nice if the front end wouldn't leak these at all.
1864 Currently the only known culprit is C++ destructors, as seen
1865 in g++.old-deja/g++.jason/binding.C. */
1866 if (TREE_CODE (decl) == VAR_DECL
1867 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
1868 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
1869 && decl_function_context (decl) == current_function_decl)
1871 gcc_assert (seen_error ());
1872 return GS_ERROR;
1875 /* When within an OpenMP context, notice uses of variables. */
1876 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
1877 return GS_ALL_DONE;
1879 /* If the decl is an alias for another expression, substitute it now. */
1880 if (DECL_HAS_VALUE_EXPR_P (decl))
1882 tree value_expr = DECL_VALUE_EXPR (decl);
1884 /* For referenced nonlocal VLAs add a decl for debugging purposes
1885 to the current function. */
1886 if (TREE_CODE (decl) == VAR_DECL
1887 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1888 && nonlocal_vlas != NULL
1889 && TREE_CODE (value_expr) == INDIRECT_REF
1890 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
1891 && decl_function_context (decl) != current_function_decl)
1893 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1894 while (ctx && ctx->region_type == ORT_WORKSHARE)
1895 ctx = ctx->outer_context;
1896 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
1898 tree copy = copy_node (decl), block;
1900 lang_hooks.dup_lang_specific_decl (copy);
1901 SET_DECL_RTL (copy, 0);
1902 TREE_USED (copy) = 1;
1903 block = DECL_INITIAL (current_function_decl);
1904 DECL_CHAIN (copy) = BLOCK_VARS (block);
1905 BLOCK_VARS (block) = copy;
1906 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
1907 DECL_HAS_VALUE_EXPR_P (copy) = 1;
1911 *expr_p = unshare_expr (value_expr);
1912 return GS_OK;
1915 return GS_ALL_DONE;
1919 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
1920 node *EXPR_P.
1922 compound_lval
1923 : min_lval '[' val ']'
1924 | min_lval '.' ID
1925 | compound_lval '[' val ']'
1926 | compound_lval '.' ID
1928 This is not part of the original SIMPLE definition, which separates
1929 array and member references, but it seems reasonable to handle them
1930 together. Also, this way we don't run into problems with union
1931 aliasing; gcc requires that for accesses through a union to alias, the
1932 union reference must be explicit, which was not always the case when we
1933 were splitting up array and member refs.
1935 PRE_P points to the sequence where side effects that must happen before
1936 *EXPR_P should be stored.
1938 POST_P points to the sequence where side effects that must happen after
1939 *EXPR_P should be stored. */
1941 static enum gimplify_status
1942 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
1943 fallback_t fallback)
1945 tree *p;
1946 VEC(tree,heap) *stack;
1947 enum gimplify_status ret = GS_ALL_DONE, tret;
1948 int i;
1949 location_t loc = EXPR_LOCATION (*expr_p);
1950 tree expr = *expr_p;
1952 /* Create a stack of the subexpressions so later we can walk them in
1953 order from inner to outer. */
1954 stack = VEC_alloc (tree, heap, 10);
1956 /* We can handle anything that get_inner_reference can deal with. */
1957 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
1959 restart:
1960 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
1961 if (TREE_CODE (*p) == INDIRECT_REF)
1962 *p = fold_indirect_ref_loc (loc, *p);
1964 if (handled_component_p (*p))
1966 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
1967 additional COMPONENT_REFs. */
1968 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
1969 && gimplify_var_or_parm_decl (p) == GS_OK)
1970 goto restart;
1971 else
1972 break;
1974 VEC_safe_push (tree, heap, stack, *p);
1977 gcc_assert (VEC_length (tree, stack));
1979 /* Now STACK is a stack of pointers to all the refs we've walked through
1980 and P points to the innermost expression.
1982 Java requires that we elaborated nodes in source order. That
1983 means we must gimplify the inner expression followed by each of
1984 the indices, in order. But we can't gimplify the inner
1985 expression until we deal with any variable bounds, sizes, or
1986 positions in order to deal with PLACEHOLDER_EXPRs.
1988 So we do this in three steps. First we deal with the annotations
1989 for any variables in the components, then we gimplify the base,
1990 then we gimplify any indices, from left to right. */
1991 for (i = VEC_length (tree, stack) - 1; i >= 0; i--)
1993 tree t = VEC_index (tree, stack, i);
1995 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
1997 /* Gimplify the low bound and element type size and put them into
1998 the ARRAY_REF. If these values are set, they have already been
1999 gimplified. */
2000 if (TREE_OPERAND (t, 2) == NULL_TREE)
2002 tree low = unshare_expr (array_ref_low_bound (t));
2003 if (!is_gimple_min_invariant (low))
2005 TREE_OPERAND (t, 2) = low;
2006 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2007 post_p, is_gimple_reg,
2008 fb_rvalue);
2009 ret = MIN (ret, tret);
2013 if (!TREE_OPERAND (t, 3))
2015 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2016 tree elmt_size = unshare_expr (array_ref_element_size (t));
2017 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2019 /* Divide the element size by the alignment of the element
2020 type (above). */
2021 elmt_size = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2023 if (!is_gimple_min_invariant (elmt_size))
2025 TREE_OPERAND (t, 3) = elmt_size;
2026 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2027 post_p, is_gimple_reg,
2028 fb_rvalue);
2029 ret = MIN (ret, tret);
2033 else if (TREE_CODE (t) == COMPONENT_REF)
2035 /* Set the field offset into T and gimplify it. */
2036 if (!TREE_OPERAND (t, 2))
2038 tree offset = unshare_expr (component_ref_field_offset (t));
2039 tree field = TREE_OPERAND (t, 1);
2040 tree factor
2041 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2043 /* Divide the offset by its alignment. */
2044 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2046 if (!is_gimple_min_invariant (offset))
2048 TREE_OPERAND (t, 2) = offset;
2049 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2050 post_p, is_gimple_reg,
2051 fb_rvalue);
2052 ret = MIN (ret, tret);
2058 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2059 so as to match the min_lval predicate. Failure to do so may result
2060 in the creation of large aggregate temporaries. */
2061 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2062 fallback | fb_lvalue);
2063 ret = MIN (ret, tret);
2065 /* And finally, the indices and operands to BIT_FIELD_REF. During this
2066 loop we also remove any useless conversions. */
2067 for (; VEC_length (tree, stack) > 0; )
2069 tree t = VEC_pop (tree, stack);
2071 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2073 /* Gimplify the dimension. */
2074 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2076 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2077 is_gimple_val, fb_rvalue);
2078 ret = MIN (ret, tret);
2081 else if (TREE_CODE (t) == BIT_FIELD_REF)
2083 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2084 is_gimple_val, fb_rvalue);
2085 ret = MIN (ret, tret);
2086 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2087 is_gimple_val, fb_rvalue);
2088 ret = MIN (ret, tret);
2091 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
2093 /* The innermost expression P may have originally had
2094 TREE_SIDE_EFFECTS set which would have caused all the outer
2095 expressions in *EXPR_P leading to P to also have had
2096 TREE_SIDE_EFFECTS set. */
2097 recalculate_side_effects (t);
2100 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2101 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
2103 canonicalize_component_ref (expr_p);
2106 VEC_free (tree, heap, stack);
2108 gcc_assert (*expr_p == expr || ret != GS_ALL_DONE);
2110 return ret;
2113 /* Gimplify the self modifying expression pointed to by EXPR_P
2114 (++, --, +=, -=).
2116 PRE_P points to the list where side effects that must happen before
2117 *EXPR_P should be stored.
2119 POST_P points to the list where side effects that must happen after
2120 *EXPR_P should be stored.
2122 WANT_VALUE is nonzero iff we want to use the value of this expression
2123 in another expression. */
2125 static enum gimplify_status
2126 gimplify_self_mod_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2127 bool want_value)
2129 enum tree_code code;
2130 tree lhs, lvalue, rhs, t1;
2131 gimple_seq post = NULL, *orig_post_p = post_p;
2132 bool postfix;
2133 enum tree_code arith_code;
2134 enum gimplify_status ret;
2135 location_t loc = EXPR_LOCATION (*expr_p);
2137 code = TREE_CODE (*expr_p);
2139 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
2140 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
2142 /* Prefix or postfix? */
2143 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
2144 /* Faster to treat as prefix if result is not used. */
2145 postfix = want_value;
2146 else
2147 postfix = false;
2149 /* For postfix, make sure the inner expression's post side effects
2150 are executed after side effects from this expression. */
2151 if (postfix)
2152 post_p = &post;
2154 /* Add or subtract? */
2155 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2156 arith_code = PLUS_EXPR;
2157 else
2158 arith_code = MINUS_EXPR;
2160 /* Gimplify the LHS into a GIMPLE lvalue. */
2161 lvalue = TREE_OPERAND (*expr_p, 0);
2162 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2163 if (ret == GS_ERROR)
2164 return ret;
2166 /* Extract the operands to the arithmetic operation. */
2167 lhs = lvalue;
2168 rhs = TREE_OPERAND (*expr_p, 1);
2170 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2171 that as the result value and in the postqueue operation. We also
2172 make sure to make lvalue a minimal lval, see
2173 gcc.c-torture/execute/20040313-1.c for an example where this matters. */
2174 if (postfix)
2176 if (!is_gimple_min_lval (lvalue))
2178 mark_addressable (lvalue);
2179 lvalue = build_fold_addr_expr_loc (input_location, lvalue);
2180 gimplify_expr (&lvalue, pre_p, post_p, is_gimple_val, fb_rvalue);
2181 lvalue = build_fold_indirect_ref_loc (input_location, lvalue);
2183 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
2184 if (ret == GS_ERROR)
2185 return ret;
2188 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2189 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
2191 rhs = fold_convert_loc (loc, sizetype, rhs);
2192 if (arith_code == MINUS_EXPR)
2193 rhs = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (rhs), rhs);
2194 arith_code = POINTER_PLUS_EXPR;
2197 t1 = build2 (arith_code, TREE_TYPE (*expr_p), lhs, rhs);
2199 if (postfix)
2201 gimplify_assign (lvalue, t1, orig_post_p);
2202 gimplify_seq_add_seq (orig_post_p, post);
2203 *expr_p = lhs;
2204 return GS_ALL_DONE;
2206 else
2208 *expr_p = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
2209 return GS_OK;
2214 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2216 static void
2217 maybe_with_size_expr (tree *expr_p)
2219 tree expr = *expr_p;
2220 tree type = TREE_TYPE (expr);
2221 tree size;
2223 /* If we've already wrapped this or the type is error_mark_node, we can't do
2224 anything. */
2225 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2226 || type == error_mark_node)
2227 return;
2229 /* If the size isn't known or is a constant, we have nothing to do. */
2230 size = TYPE_SIZE_UNIT (type);
2231 if (!size || TREE_CODE (size) == INTEGER_CST)
2232 return;
2234 /* Otherwise, make a WITH_SIZE_EXPR. */
2235 size = unshare_expr (size);
2236 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2237 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2241 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2242 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2243 the CALL_EXPR. */
2245 static enum gimplify_status
2246 gimplify_arg (tree *arg_p, gimple_seq *pre_p, location_t call_location)
2248 bool (*test) (tree);
2249 fallback_t fb;
2251 /* In general, we allow lvalues for function arguments to avoid
2252 extra overhead of copying large aggregates out of even larger
2253 aggregates into temporaries only to copy the temporaries to
2254 the argument list. Make optimizers happy by pulling out to
2255 temporaries those types that fit in registers. */
2256 if (is_gimple_reg_type (TREE_TYPE (*arg_p)))
2257 test = is_gimple_val, fb = fb_rvalue;
2258 else
2260 test = is_gimple_lvalue, fb = fb_either;
2261 /* Also strip a TARGET_EXPR that would force an extra copy. */
2262 if (TREE_CODE (*arg_p) == TARGET_EXPR)
2264 tree init = TARGET_EXPR_INITIAL (*arg_p);
2265 if (init
2266 && !VOID_TYPE_P (TREE_TYPE (init)))
2267 *arg_p = init;
2271 /* If this is a variable sized type, we must remember the size. */
2272 maybe_with_size_expr (arg_p);
2274 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2275 /* Make sure arguments have the same location as the function call
2276 itself. */
2277 protected_set_expr_location (*arg_p, call_location);
2279 /* There is a sequence point before a function call. Side effects in
2280 the argument list must occur before the actual call. So, when
2281 gimplifying arguments, force gimplify_expr to use an internal
2282 post queue which is then appended to the end of PRE_P. */
2283 return gimplify_expr (arg_p, pre_p, NULL, test, fb);
2287 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2288 WANT_VALUE is true if the result of the call is desired. */
2290 static enum gimplify_status
2291 gimplify_call_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
2293 tree fndecl, parms, p, fnptrtype;
2294 enum gimplify_status ret;
2295 int i, nargs;
2296 gimple call;
2297 bool builtin_va_start_p = FALSE;
2298 location_t loc = EXPR_LOCATION (*expr_p);
2300 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2302 /* For reliable diagnostics during inlining, it is necessary that
2303 every call_expr be annotated with file and line. */
2304 if (! EXPR_HAS_LOCATION (*expr_p))
2305 SET_EXPR_LOCATION (*expr_p, input_location);
2307 /* This may be a call to a builtin function.
2309 Builtin function calls may be transformed into different
2310 (and more efficient) builtin function calls under certain
2311 circumstances. Unfortunately, gimplification can muck things
2312 up enough that the builtin expanders are not aware that certain
2313 transformations are still valid.
2315 So we attempt transformation/gimplification of the call before
2316 we gimplify the CALL_EXPR. At this time we do not manage to
2317 transform all calls in the same manner as the expanders do, but
2318 we do transform most of them. */
2319 fndecl = get_callee_fndecl (*expr_p);
2320 if (fndecl && DECL_BUILT_IN (fndecl))
2322 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2324 if (new_tree && new_tree != *expr_p)
2326 /* There was a transformation of this call which computes the
2327 same value, but in a more efficient way. Return and try
2328 again. */
2329 *expr_p = new_tree;
2330 return GS_OK;
2333 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
2334 && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_VA_START)
2336 builtin_va_start_p = TRUE;
2337 if (call_expr_nargs (*expr_p) < 2)
2339 error ("too few arguments to function %<va_start%>");
2340 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2341 return GS_OK;
2344 if (fold_builtin_next_arg (*expr_p, true))
2346 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2347 return GS_OK;
2352 /* Remember the original function pointer type. */
2353 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2355 /* There is a sequence point before the call, so any side effects in
2356 the calling expression must occur before the actual call. Force
2357 gimplify_expr to use an internal post queue. */
2358 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2359 is_gimple_call_addr, fb_rvalue);
2361 nargs = call_expr_nargs (*expr_p);
2363 /* Get argument types for verification. */
2364 fndecl = get_callee_fndecl (*expr_p);
2365 parms = NULL_TREE;
2366 if (fndecl)
2367 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2368 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2369 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2371 if (fndecl && DECL_ARGUMENTS (fndecl))
2372 p = DECL_ARGUMENTS (fndecl);
2373 else if (parms)
2374 p = parms;
2375 else
2376 p = NULL_TREE;
2377 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2380 /* If the last argument is __builtin_va_arg_pack () and it is not
2381 passed as a named argument, decrease the number of CALL_EXPR
2382 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2383 if (!p
2384 && i < nargs
2385 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2387 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2388 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2390 if (last_arg_fndecl
2391 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2392 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2393 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2395 tree call = *expr_p;
2397 --nargs;
2398 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2399 CALL_EXPR_FN (call),
2400 nargs, CALL_EXPR_ARGP (call));
2402 /* Copy all CALL_EXPR flags, location and block, except
2403 CALL_EXPR_VA_ARG_PACK flag. */
2404 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2405 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2406 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2407 = CALL_EXPR_RETURN_SLOT_OPT (call);
2408 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2409 CALL_CANNOT_INLINE_P (*expr_p) = CALL_CANNOT_INLINE_P (call);
2410 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2411 TREE_BLOCK (*expr_p) = TREE_BLOCK (call);
2413 /* Set CALL_EXPR_VA_ARG_PACK. */
2414 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2418 /* Finally, gimplify the function arguments. */
2419 if (nargs > 0)
2421 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2422 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2423 PUSH_ARGS_REVERSED ? i-- : i++)
2425 enum gimplify_status t;
2427 /* Avoid gimplifying the second argument to va_start, which needs to
2428 be the plain PARM_DECL. */
2429 if ((i != 1) || !builtin_va_start_p)
2431 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2432 EXPR_LOCATION (*expr_p));
2434 if (t == GS_ERROR)
2435 ret = GS_ERROR;
2440 /* Verify the function result. */
2441 if (want_value && fndecl
2442 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2444 error_at (loc, "using result of function returning %<void%>");
2445 ret = GS_ERROR;
2448 /* Try this again in case gimplification exposed something. */
2449 if (ret != GS_ERROR)
2451 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2453 if (new_tree && new_tree != *expr_p)
2455 /* There was a transformation of this call which computes the
2456 same value, but in a more efficient way. Return and try
2457 again. */
2458 *expr_p = new_tree;
2459 return GS_OK;
2462 else
2464 *expr_p = error_mark_node;
2465 return GS_ERROR;
2468 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2469 decl. This allows us to eliminate redundant or useless
2470 calls to "const" functions. */
2471 if (TREE_CODE (*expr_p) == CALL_EXPR)
2473 int flags = call_expr_flags (*expr_p);
2474 if (flags & (ECF_CONST | ECF_PURE)
2475 /* An infinite loop is considered a side effect. */
2476 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2477 TREE_SIDE_EFFECTS (*expr_p) = 0;
2480 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2481 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2482 form and delegate the creation of a GIMPLE_CALL to
2483 gimplify_modify_expr. This is always possible because when
2484 WANT_VALUE is true, the caller wants the result of this call into
2485 a temporary, which means that we will emit an INIT_EXPR in
2486 internal_get_tmp_var which will then be handled by
2487 gimplify_modify_expr. */
2488 if (!want_value)
2490 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2491 have to do is replicate it as a GIMPLE_CALL tuple. */
2492 gimple_stmt_iterator gsi;
2493 call = gimple_build_call_from_tree (*expr_p);
2494 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2495 gimplify_seq_add_stmt (pre_p, call);
2496 gsi = gsi_last (*pre_p);
2497 fold_stmt (&gsi);
2498 *expr_p = NULL_TREE;
2500 else
2501 /* Remember the original function type. */
2502 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2503 CALL_EXPR_FN (*expr_p));
2505 return ret;
2508 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2509 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2511 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2512 condition is true or false, respectively. If null, we should generate
2513 our own to skip over the evaluation of this specific expression.
2515 LOCUS is the source location of the COND_EXPR.
2517 This function is the tree equivalent of do_jump.
2519 shortcut_cond_r should only be called by shortcut_cond_expr. */
2521 static tree
2522 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2523 location_t locus)
2525 tree local_label = NULL_TREE;
2526 tree t, expr = NULL;
2528 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2529 retain the shortcut semantics. Just insert the gotos here;
2530 shortcut_cond_expr will append the real blocks later. */
2531 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2533 location_t new_locus;
2535 /* Turn if (a && b) into
2537 if (a); else goto no;
2538 if (b) goto yes; else goto no;
2539 (no:) */
2541 if (false_label_p == NULL)
2542 false_label_p = &local_label;
2544 /* Keep the original source location on the first 'if'. */
2545 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, locus);
2546 append_to_statement_list (t, &expr);
2548 /* Set the source location of the && on the second 'if'. */
2549 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2550 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2551 new_locus);
2552 append_to_statement_list (t, &expr);
2554 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2556 location_t new_locus;
2558 /* Turn if (a || b) into
2560 if (a) goto yes;
2561 if (b) goto yes; else goto no;
2562 (yes:) */
2564 if (true_label_p == NULL)
2565 true_label_p = &local_label;
2567 /* Keep the original source location on the first 'if'. */
2568 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2569 append_to_statement_list (t, &expr);
2571 /* Set the source location of the || on the second 'if'. */
2572 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2573 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2574 new_locus);
2575 append_to_statement_list (t, &expr);
2577 else if (TREE_CODE (pred) == COND_EXPR)
2579 location_t new_locus;
2581 /* As long as we're messing with gotos, turn if (a ? b : c) into
2582 if (a)
2583 if (b) goto yes; else goto no;
2584 else
2585 if (c) goto yes; else goto no; */
2587 /* Keep the original source location on the first 'if'. Set the source
2588 location of the ? on the second 'if'. */
2589 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2590 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2591 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2592 false_label_p, locus),
2593 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2594 false_label_p, new_locus));
2596 else
2598 expr = build3 (COND_EXPR, void_type_node, pred,
2599 build_and_jump (true_label_p),
2600 build_and_jump (false_label_p));
2601 SET_EXPR_LOCATION (expr, locus);
2604 if (local_label)
2606 t = build1 (LABEL_EXPR, void_type_node, local_label);
2607 append_to_statement_list (t, &expr);
2610 return expr;
2613 /* Given a conditional expression EXPR with short-circuit boolean
2614 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2615 predicate appart into the equivalent sequence of conditionals. */
2617 static tree
2618 shortcut_cond_expr (tree expr)
2620 tree pred = TREE_OPERAND (expr, 0);
2621 tree then_ = TREE_OPERAND (expr, 1);
2622 tree else_ = TREE_OPERAND (expr, 2);
2623 tree true_label, false_label, end_label, t;
2624 tree *true_label_p;
2625 tree *false_label_p;
2626 bool emit_end, emit_false, jump_over_else;
2627 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2628 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2630 /* First do simple transformations. */
2631 if (!else_se)
2633 /* If there is no 'else', turn
2634 if (a && b) then c
2635 into
2636 if (a) if (b) then c. */
2637 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2639 /* Keep the original source location on the first 'if'. */
2640 location_t locus = EXPR_LOC_OR_HERE (expr);
2641 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2642 /* Set the source location of the && on the second 'if'. */
2643 if (EXPR_HAS_LOCATION (pred))
2644 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2645 then_ = shortcut_cond_expr (expr);
2646 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2647 pred = TREE_OPERAND (pred, 0);
2648 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2649 SET_EXPR_LOCATION (expr, locus);
2653 if (!then_se)
2655 /* If there is no 'then', turn
2656 if (a || b); else d
2657 into
2658 if (a); else if (b); else d. */
2659 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2661 /* Keep the original source location on the first 'if'. */
2662 location_t locus = EXPR_LOC_OR_HERE (expr);
2663 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2664 /* Set the source location of the || on the second 'if'. */
2665 if (EXPR_HAS_LOCATION (pred))
2666 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2667 else_ = shortcut_cond_expr (expr);
2668 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2669 pred = TREE_OPERAND (pred, 0);
2670 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2671 SET_EXPR_LOCATION (expr, locus);
2675 /* If we're done, great. */
2676 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2677 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2678 return expr;
2680 /* Otherwise we need to mess with gotos. Change
2681 if (a) c; else d;
2683 if (a); else goto no;
2684 c; goto end;
2685 no: d; end:
2686 and recursively gimplify the condition. */
2688 true_label = false_label = end_label = NULL_TREE;
2690 /* If our arms just jump somewhere, hijack those labels so we don't
2691 generate jumps to jumps. */
2693 if (then_
2694 && TREE_CODE (then_) == GOTO_EXPR
2695 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2697 true_label = GOTO_DESTINATION (then_);
2698 then_ = NULL;
2699 then_se = false;
2702 if (else_
2703 && TREE_CODE (else_) == GOTO_EXPR
2704 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2706 false_label = GOTO_DESTINATION (else_);
2707 else_ = NULL;
2708 else_se = false;
2711 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2712 if (true_label)
2713 true_label_p = &true_label;
2714 else
2715 true_label_p = NULL;
2717 /* The 'else' branch also needs a label if it contains interesting code. */
2718 if (false_label || else_se)
2719 false_label_p = &false_label;
2720 else
2721 false_label_p = NULL;
2723 /* If there was nothing else in our arms, just forward the label(s). */
2724 if (!then_se && !else_se)
2725 return shortcut_cond_r (pred, true_label_p, false_label_p,
2726 EXPR_LOC_OR_HERE (expr));
2728 /* If our last subexpression already has a terminal label, reuse it. */
2729 if (else_se)
2730 t = expr_last (else_);
2731 else if (then_se)
2732 t = expr_last (then_);
2733 else
2734 t = NULL;
2735 if (t && TREE_CODE (t) == LABEL_EXPR)
2736 end_label = LABEL_EXPR_LABEL (t);
2738 /* If we don't care about jumping to the 'else' branch, jump to the end
2739 if the condition is false. */
2740 if (!false_label_p)
2741 false_label_p = &end_label;
2743 /* We only want to emit these labels if we aren't hijacking them. */
2744 emit_end = (end_label == NULL_TREE);
2745 emit_false = (false_label == NULL_TREE);
2747 /* We only emit the jump over the else clause if we have to--if the
2748 then clause may fall through. Otherwise we can wind up with a
2749 useless jump and a useless label at the end of gimplified code,
2750 which will cause us to think that this conditional as a whole
2751 falls through even if it doesn't. If we then inline a function
2752 which ends with such a condition, that can cause us to issue an
2753 inappropriate warning about control reaching the end of a
2754 non-void function. */
2755 jump_over_else = block_may_fallthru (then_);
2757 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2758 EXPR_LOC_OR_HERE (expr));
2760 expr = NULL;
2761 append_to_statement_list (pred, &expr);
2763 append_to_statement_list (then_, &expr);
2764 if (else_se)
2766 if (jump_over_else)
2768 tree last = expr_last (expr);
2769 t = build_and_jump (&end_label);
2770 if (EXPR_HAS_LOCATION (last))
2771 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2772 append_to_statement_list (t, &expr);
2774 if (emit_false)
2776 t = build1 (LABEL_EXPR, void_type_node, false_label);
2777 append_to_statement_list (t, &expr);
2779 append_to_statement_list (else_, &expr);
2781 if (emit_end && end_label)
2783 t = build1 (LABEL_EXPR, void_type_node, end_label);
2784 append_to_statement_list (t, &expr);
2787 return expr;
2790 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2792 tree
2793 gimple_boolify (tree expr)
2795 tree type = TREE_TYPE (expr);
2796 location_t loc = EXPR_LOCATION (expr);
2798 if (TREE_CODE (expr) == NE_EXPR
2799 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
2800 && integer_zerop (TREE_OPERAND (expr, 1)))
2802 tree call = TREE_OPERAND (expr, 0);
2803 tree fn = get_callee_fndecl (call);
2805 /* For __builtin_expect ((long) (x), y) recurse into x as well
2806 if x is truth_value_p. */
2807 if (fn
2808 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2809 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
2810 && call_expr_nargs (call) == 2)
2812 tree arg = CALL_EXPR_ARG (call, 0);
2813 if (arg)
2815 if (TREE_CODE (arg) == NOP_EXPR
2816 && TREE_TYPE (arg) == TREE_TYPE (call))
2817 arg = TREE_OPERAND (arg, 0);
2818 if (truth_value_p (TREE_CODE (arg)))
2820 arg = gimple_boolify (arg);
2821 CALL_EXPR_ARG (call, 0)
2822 = fold_convert_loc (loc, TREE_TYPE (call), arg);
2828 if (TREE_CODE (type) == BOOLEAN_TYPE)
2829 return expr;
2831 switch (TREE_CODE (expr))
2833 case TRUTH_AND_EXPR:
2834 case TRUTH_OR_EXPR:
2835 case TRUTH_XOR_EXPR:
2836 case TRUTH_ANDIF_EXPR:
2837 case TRUTH_ORIF_EXPR:
2838 /* Also boolify the arguments of truth exprs. */
2839 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
2840 /* FALLTHRU */
2842 case TRUTH_NOT_EXPR:
2843 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
2844 /* FALLTHRU */
2846 case EQ_EXPR: case NE_EXPR:
2847 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2848 /* These expressions always produce boolean results. */
2849 TREE_TYPE (expr) = boolean_type_node;
2850 return expr;
2852 default:
2853 /* Other expressions that get here must have boolean values, but
2854 might need to be converted to the appropriate mode. */
2855 return fold_convert_loc (loc, boolean_type_node, expr);
2859 /* Given a conditional expression *EXPR_P without side effects, gimplify
2860 its operands. New statements are inserted to PRE_P. */
2862 static enum gimplify_status
2863 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
2865 tree expr = *expr_p, cond;
2866 enum gimplify_status ret, tret;
2867 enum tree_code code;
2869 cond = gimple_boolify (COND_EXPR_COND (expr));
2871 /* We need to handle && and || specially, as their gimplification
2872 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
2873 code = TREE_CODE (cond);
2874 if (code == TRUTH_ANDIF_EXPR)
2875 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
2876 else if (code == TRUTH_ORIF_EXPR)
2877 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
2878 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
2879 COND_EXPR_COND (*expr_p) = cond;
2881 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
2882 is_gimple_val, fb_rvalue);
2883 ret = MIN (ret, tret);
2884 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
2885 is_gimple_val, fb_rvalue);
2887 return MIN (ret, tret);
2890 /* Returns true if evaluating EXPR could trap.
2891 EXPR is GENERIC, while tree_could_trap_p can be called
2892 only on GIMPLE. */
2894 static bool
2895 generic_expr_could_trap_p (tree expr)
2897 unsigned i, n;
2899 if (!expr || is_gimple_val (expr))
2900 return false;
2902 if (!EXPR_P (expr) || tree_could_trap_p (expr))
2903 return true;
2905 n = TREE_OPERAND_LENGTH (expr);
2906 for (i = 0; i < n; i++)
2907 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
2908 return true;
2910 return false;
2913 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
2914 into
2916 if (p) if (p)
2917 t1 = a; a;
2918 else or else
2919 t1 = b; b;
2922 The second form is used when *EXPR_P is of type void.
2924 PRE_P points to the list where side effects that must happen before
2925 *EXPR_P should be stored. */
2927 static enum gimplify_status
2928 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
2930 tree expr = *expr_p;
2931 tree type = TREE_TYPE (expr);
2932 location_t loc = EXPR_LOCATION (expr);
2933 tree tmp, arm1, arm2;
2934 enum gimplify_status ret;
2935 tree label_true, label_false, label_cont;
2936 bool have_then_clause_p, have_else_clause_p;
2937 gimple gimple_cond;
2938 enum tree_code pred_code;
2939 gimple_seq seq = NULL;
2941 /* If this COND_EXPR has a value, copy the values into a temporary within
2942 the arms. */
2943 if (!VOID_TYPE_P (type))
2945 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
2946 tree result;
2948 /* If either an rvalue is ok or we do not require an lvalue, create the
2949 temporary. But we cannot do that if the type is addressable. */
2950 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
2951 && !TREE_ADDRESSABLE (type))
2953 if (gimplify_ctxp->allow_rhs_cond_expr
2954 /* If either branch has side effects or could trap, it can't be
2955 evaluated unconditionally. */
2956 && !TREE_SIDE_EFFECTS (then_)
2957 && !generic_expr_could_trap_p (then_)
2958 && !TREE_SIDE_EFFECTS (else_)
2959 && !generic_expr_could_trap_p (else_))
2960 return gimplify_pure_cond_expr (expr_p, pre_p);
2962 tmp = create_tmp_var (type, "iftmp");
2963 result = tmp;
2966 /* Otherwise, only create and copy references to the values. */
2967 else
2969 type = build_pointer_type (type);
2971 if (!VOID_TYPE_P (TREE_TYPE (then_)))
2972 then_ = build_fold_addr_expr_loc (loc, then_);
2974 if (!VOID_TYPE_P (TREE_TYPE (else_)))
2975 else_ = build_fold_addr_expr_loc (loc, else_);
2977 expr
2978 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
2980 tmp = create_tmp_var (type, "iftmp");
2981 result = build_simple_mem_ref_loc (loc, tmp);
2984 /* Build the new then clause, `tmp = then_;'. But don't build the
2985 assignment if the value is void; in C++ it can be if it's a throw. */
2986 if (!VOID_TYPE_P (TREE_TYPE (then_)))
2987 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
2989 /* Similarly, build the new else clause, `tmp = else_;'. */
2990 if (!VOID_TYPE_P (TREE_TYPE (else_)))
2991 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
2993 TREE_TYPE (expr) = void_type_node;
2994 recalculate_side_effects (expr);
2996 /* Move the COND_EXPR to the prequeue. */
2997 gimplify_stmt (&expr, pre_p);
2999 *expr_p = result;
3000 return GS_ALL_DONE;
3003 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3004 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3005 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3006 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3008 /* Make sure the condition has BOOLEAN_TYPE. */
3009 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3011 /* Break apart && and || conditions. */
3012 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3013 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3015 expr = shortcut_cond_expr (expr);
3017 if (expr != *expr_p)
3019 *expr_p = expr;
3021 /* We can't rely on gimplify_expr to re-gimplify the expanded
3022 form properly, as cleanups might cause the target labels to be
3023 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3024 set up a conditional context. */
3025 gimple_push_condition ();
3026 gimplify_stmt (expr_p, &seq);
3027 gimple_pop_condition (pre_p);
3028 gimple_seq_add_seq (pre_p, seq);
3030 return GS_ALL_DONE;
3034 /* Now do the normal gimplification. */
3036 /* Gimplify condition. */
3037 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3038 fb_rvalue);
3039 if (ret == GS_ERROR)
3040 return GS_ERROR;
3041 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3043 gimple_push_condition ();
3045 have_then_clause_p = have_else_clause_p = false;
3046 if (TREE_OPERAND (expr, 1) != NULL
3047 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3048 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3049 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3050 == current_function_decl)
3051 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3052 have different locations, otherwise we end up with incorrect
3053 location information on the branches. */
3054 && (optimize
3055 || !EXPR_HAS_LOCATION (expr)
3056 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3057 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3059 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3060 have_then_clause_p = true;
3062 else
3063 label_true = create_artificial_label (UNKNOWN_LOCATION);
3064 if (TREE_OPERAND (expr, 2) != NULL
3065 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3066 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3067 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3068 == current_function_decl)
3069 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3070 have different locations, otherwise we end up with incorrect
3071 location information on the branches. */
3072 && (optimize
3073 || !EXPR_HAS_LOCATION (expr)
3074 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3075 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3077 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3078 have_else_clause_p = true;
3080 else
3081 label_false = create_artificial_label (UNKNOWN_LOCATION);
3083 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3084 &arm2);
3086 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3087 label_false);
3089 gimplify_seq_add_stmt (&seq, gimple_cond);
3090 label_cont = NULL_TREE;
3091 if (!have_then_clause_p)
3093 /* For if (...) {} else { code; } put label_true after
3094 the else block. */
3095 if (TREE_OPERAND (expr, 1) == NULL_TREE
3096 && !have_else_clause_p
3097 && TREE_OPERAND (expr, 2) != NULL_TREE)
3098 label_cont = label_true;
3099 else
3101 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3102 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3103 /* For if (...) { code; } else {} or
3104 if (...) { code; } else goto label; or
3105 if (...) { code; return; } else { ... }
3106 label_cont isn't needed. */
3107 if (!have_else_clause_p
3108 && TREE_OPERAND (expr, 2) != NULL_TREE
3109 && gimple_seq_may_fallthru (seq))
3111 gimple g;
3112 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3114 g = gimple_build_goto (label_cont);
3116 /* GIMPLE_COND's are very low level; they have embedded
3117 gotos. This particular embedded goto should not be marked
3118 with the location of the original COND_EXPR, as it would
3119 correspond to the COND_EXPR's condition, not the ELSE or the
3120 THEN arms. To avoid marking it with the wrong location, flag
3121 it as "no location". */
3122 gimple_set_do_not_emit_location (g);
3124 gimplify_seq_add_stmt (&seq, g);
3128 if (!have_else_clause_p)
3130 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3131 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3133 if (label_cont)
3134 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3136 gimple_pop_condition (pre_p);
3137 gimple_seq_add_seq (pre_p, seq);
3139 if (ret == GS_ERROR)
3140 ; /* Do nothing. */
3141 else if (have_then_clause_p || have_else_clause_p)
3142 ret = GS_ALL_DONE;
3143 else
3145 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3146 expr = TREE_OPERAND (expr, 0);
3147 gimplify_stmt (&expr, pre_p);
3150 *expr_p = NULL;
3151 return ret;
3154 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3155 to be marked addressable.
3157 We cannot rely on such an expression being directly markable if a temporary
3158 has been created by the gimplification. In this case, we create another
3159 temporary and initialize it with a copy, which will become a store after we
3160 mark it addressable. This can happen if the front-end passed us something
3161 that it could not mark addressable yet, like a Fortran pass-by-reference
3162 parameter (int) floatvar. */
3164 static void
3165 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3167 while (handled_component_p (*expr_p))
3168 expr_p = &TREE_OPERAND (*expr_p, 0);
3169 if (is_gimple_reg (*expr_p))
3170 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3173 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3174 a call to __builtin_memcpy. */
3176 static enum gimplify_status
3177 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3178 gimple_seq *seq_p)
3180 tree t, to, to_ptr, from, from_ptr;
3181 gimple gs;
3182 location_t loc = EXPR_LOCATION (*expr_p);
3184 to = TREE_OPERAND (*expr_p, 0);
3185 from = TREE_OPERAND (*expr_p, 1);
3187 /* Mark the RHS addressable. Beware that it may not be possible to do so
3188 directly if a temporary has been created by the gimplification. */
3189 prepare_gimple_addressable (&from, seq_p);
3191 mark_addressable (from);
3192 from_ptr = build_fold_addr_expr_loc (loc, from);
3193 gimplify_arg (&from_ptr, seq_p, loc);
3195 mark_addressable (to);
3196 to_ptr = build_fold_addr_expr_loc (loc, to);
3197 gimplify_arg (&to_ptr, seq_p, loc);
3199 t = implicit_built_in_decls[BUILT_IN_MEMCPY];
3201 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3203 if (want_value)
3205 /* tmp = memcpy() */
3206 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3207 gimple_call_set_lhs (gs, t);
3208 gimplify_seq_add_stmt (seq_p, gs);
3210 *expr_p = build_simple_mem_ref (t);
3211 return GS_ALL_DONE;
3214 gimplify_seq_add_stmt (seq_p, gs);
3215 *expr_p = NULL;
3216 return GS_ALL_DONE;
3219 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3220 a call to __builtin_memset. In this case we know that the RHS is
3221 a CONSTRUCTOR with an empty element list. */
3223 static enum gimplify_status
3224 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3225 gimple_seq *seq_p)
3227 tree t, from, to, to_ptr;
3228 gimple gs;
3229 location_t loc = EXPR_LOCATION (*expr_p);
3231 /* Assert our assumptions, to abort instead of producing wrong code
3232 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3233 not be immediately exposed. */
3234 from = TREE_OPERAND (*expr_p, 1);
3235 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3236 from = TREE_OPERAND (from, 0);
3238 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3239 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (from)));
3241 /* Now proceed. */
3242 to = TREE_OPERAND (*expr_p, 0);
3244 to_ptr = build_fold_addr_expr_loc (loc, to);
3245 gimplify_arg (&to_ptr, seq_p, loc);
3246 t = implicit_built_in_decls[BUILT_IN_MEMSET];
3248 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3250 if (want_value)
3252 /* tmp = memset() */
3253 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3254 gimple_call_set_lhs (gs, t);
3255 gimplify_seq_add_stmt (seq_p, gs);
3257 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3258 return GS_ALL_DONE;
3261 gimplify_seq_add_stmt (seq_p, gs);
3262 *expr_p = NULL;
3263 return GS_ALL_DONE;
3266 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3267 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3268 assignment. Returns non-null if we detect a potential overlap. */
3270 struct gimplify_init_ctor_preeval_data
3272 /* The base decl of the lhs object. May be NULL, in which case we
3273 have to assume the lhs is indirect. */
3274 tree lhs_base_decl;
3276 /* The alias set of the lhs object. */
3277 alias_set_type lhs_alias_set;
3280 static tree
3281 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3283 struct gimplify_init_ctor_preeval_data *data
3284 = (struct gimplify_init_ctor_preeval_data *) xdata;
3285 tree t = *tp;
3287 /* If we find the base object, obviously we have overlap. */
3288 if (data->lhs_base_decl == t)
3289 return t;
3291 /* If the constructor component is indirect, determine if we have a
3292 potential overlap with the lhs. The only bits of information we
3293 have to go on at this point are addressability and alias sets. */
3294 if ((INDIRECT_REF_P (t)
3295 || TREE_CODE (t) == MEM_REF)
3296 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3297 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3298 return t;
3300 /* If the constructor component is a call, determine if it can hide a
3301 potential overlap with the lhs through an INDIRECT_REF like above.
3302 ??? Ugh - this is completely broken. In fact this whole analysis
3303 doesn't look conservative. */
3304 if (TREE_CODE (t) == CALL_EXPR)
3306 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3308 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3309 if (POINTER_TYPE_P (TREE_VALUE (type))
3310 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3311 && alias_sets_conflict_p (data->lhs_alias_set,
3312 get_alias_set
3313 (TREE_TYPE (TREE_VALUE (type)))))
3314 return t;
3317 if (IS_TYPE_OR_DECL_P (t))
3318 *walk_subtrees = 0;
3319 return NULL;
3322 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3323 force values that overlap with the lhs (as described by *DATA)
3324 into temporaries. */
3326 static void
3327 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3328 struct gimplify_init_ctor_preeval_data *data)
3330 enum gimplify_status one;
3332 /* If the value is constant, then there's nothing to pre-evaluate. */
3333 if (TREE_CONSTANT (*expr_p))
3335 /* Ensure it does not have side effects, it might contain a reference to
3336 the object we're initializing. */
3337 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3338 return;
3341 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3342 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3343 return;
3345 /* Recurse for nested constructors. */
3346 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3348 unsigned HOST_WIDE_INT ix;
3349 constructor_elt *ce;
3350 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p);
3352 FOR_EACH_VEC_ELT (constructor_elt, v, ix, ce)
3353 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3355 return;
3358 /* If this is a variable sized type, we must remember the size. */
3359 maybe_with_size_expr (expr_p);
3361 /* Gimplify the constructor element to something appropriate for the rhs
3362 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3363 the gimplifier will consider this a store to memory. Doing this
3364 gimplification now means that we won't have to deal with complicated
3365 language-specific trees, nor trees like SAVE_EXPR that can induce
3366 exponential search behavior. */
3367 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3368 if (one == GS_ERROR)
3370 *expr_p = NULL;
3371 return;
3374 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3375 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3376 always be true for all scalars, since is_gimple_mem_rhs insists on a
3377 temporary variable for them. */
3378 if (DECL_P (*expr_p))
3379 return;
3381 /* If this is of variable size, we have no choice but to assume it doesn't
3382 overlap since we can't make a temporary for it. */
3383 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3384 return;
3386 /* Otherwise, we must search for overlap ... */
3387 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3388 return;
3390 /* ... and if found, force the value into a temporary. */
3391 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3394 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3395 a RANGE_EXPR in a CONSTRUCTOR for an array.
3397 var = lower;
3398 loop_entry:
3399 object[var] = value;
3400 if (var == upper)
3401 goto loop_exit;
3402 var = var + 1;
3403 goto loop_entry;
3404 loop_exit:
3406 We increment var _after_ the loop exit check because we might otherwise
3407 fail if upper == TYPE_MAX_VALUE (type for upper).
3409 Note that we never have to deal with SAVE_EXPRs here, because this has
3410 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3412 static void gimplify_init_ctor_eval (tree, VEC(constructor_elt,gc) *,
3413 gimple_seq *, bool);
3415 static void
3416 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3417 tree value, tree array_elt_type,
3418 gimple_seq *pre_p, bool cleared)
3420 tree loop_entry_label, loop_exit_label, fall_thru_label;
3421 tree var, var_type, cref, tmp;
3423 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3424 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3425 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3427 /* Create and initialize the index variable. */
3428 var_type = TREE_TYPE (upper);
3429 var = create_tmp_var (var_type, NULL);
3430 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3432 /* Add the loop entry label. */
3433 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3435 /* Build the reference. */
3436 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3437 var, NULL_TREE, NULL_TREE);
3439 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3440 the store. Otherwise just assign value to the reference. */
3442 if (TREE_CODE (value) == CONSTRUCTOR)
3443 /* NB we might have to call ourself recursively through
3444 gimplify_init_ctor_eval if the value is a constructor. */
3445 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3446 pre_p, cleared);
3447 else
3448 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3450 /* We exit the loop when the index var is equal to the upper bound. */
3451 gimplify_seq_add_stmt (pre_p,
3452 gimple_build_cond (EQ_EXPR, var, upper,
3453 loop_exit_label, fall_thru_label));
3455 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3457 /* Otherwise, increment the index var... */
3458 tmp = build2 (PLUS_EXPR, var_type, var,
3459 fold_convert (var_type, integer_one_node));
3460 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3462 /* ...and jump back to the loop entry. */
3463 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3465 /* Add the loop exit label. */
3466 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3469 /* Return true if FDECL is accessing a field that is zero sized. */
3471 static bool
3472 zero_sized_field_decl (const_tree fdecl)
3474 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3475 && integer_zerop (DECL_SIZE (fdecl)))
3476 return true;
3477 return false;
3480 /* Return true if TYPE is zero sized. */
3482 static bool
3483 zero_sized_type (const_tree type)
3485 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3486 && integer_zerop (TYPE_SIZE (type)))
3487 return true;
3488 return false;
3491 /* A subroutine of gimplify_init_constructor. Generate individual
3492 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3493 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3494 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3495 zeroed first. */
3497 static void
3498 gimplify_init_ctor_eval (tree object, VEC(constructor_elt,gc) *elts,
3499 gimple_seq *pre_p, bool cleared)
3501 tree array_elt_type = NULL;
3502 unsigned HOST_WIDE_INT ix;
3503 tree purpose, value;
3505 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3506 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3508 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3510 tree cref;
3512 /* NULL values are created above for gimplification errors. */
3513 if (value == NULL)
3514 continue;
3516 if (cleared && initializer_zerop (value))
3517 continue;
3519 /* ??? Here's to hoping the front end fills in all of the indices,
3520 so we don't have to figure out what's missing ourselves. */
3521 gcc_assert (purpose);
3523 /* Skip zero-sized fields, unless value has side-effects. This can
3524 happen with calls to functions returning a zero-sized type, which
3525 we shouldn't discard. As a number of downstream passes don't
3526 expect sets of zero-sized fields, we rely on the gimplification of
3527 the MODIFY_EXPR we make below to drop the assignment statement. */
3528 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3529 continue;
3531 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3532 whole range. */
3533 if (TREE_CODE (purpose) == RANGE_EXPR)
3535 tree lower = TREE_OPERAND (purpose, 0);
3536 tree upper = TREE_OPERAND (purpose, 1);
3538 /* If the lower bound is equal to upper, just treat it as if
3539 upper was the index. */
3540 if (simple_cst_equal (lower, upper))
3541 purpose = upper;
3542 else
3544 gimplify_init_ctor_eval_range (object, lower, upper, value,
3545 array_elt_type, pre_p, cleared);
3546 continue;
3550 if (array_elt_type)
3552 /* Do not use bitsizetype for ARRAY_REF indices. */
3553 if (TYPE_DOMAIN (TREE_TYPE (object)))
3554 purpose = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3555 purpose);
3556 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3557 purpose, NULL_TREE, NULL_TREE);
3559 else
3561 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3562 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3563 unshare_expr (object), purpose, NULL_TREE);
3566 if (TREE_CODE (value) == CONSTRUCTOR
3567 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3568 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3569 pre_p, cleared);
3570 else
3572 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3573 gimplify_and_add (init, pre_p);
3574 ggc_free (init);
3580 /* Returns the appropriate RHS predicate for this LHS. */
3582 gimple_predicate
3583 rhs_predicate_for (tree lhs)
3585 if (is_gimple_reg (lhs))
3586 return is_gimple_reg_rhs_or_call;
3587 else
3588 return is_gimple_mem_rhs_or_call;
3591 /* Gimplify a C99 compound literal expression. This just means adding
3592 the DECL_EXPR before the current statement and using its anonymous
3593 decl instead. */
3595 static enum gimplify_status
3596 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p)
3598 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3599 tree decl = DECL_EXPR_DECL (decl_s);
3600 /* Mark the decl as addressable if the compound literal
3601 expression is addressable now, otherwise it is marked too late
3602 after we gimplify the initialization expression. */
3603 if (TREE_ADDRESSABLE (*expr_p))
3604 TREE_ADDRESSABLE (decl) = 1;
3606 /* Preliminarily mark non-addressed complex variables as eligible
3607 for promotion to gimple registers. We'll transform their uses
3608 as we find them. */
3609 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3610 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3611 && !TREE_THIS_VOLATILE (decl)
3612 && !needs_to_live_in_memory (decl))
3613 DECL_GIMPLE_REG_P (decl) = 1;
3615 /* This decl isn't mentioned in the enclosing block, so add it to the
3616 list of temps. FIXME it seems a bit of a kludge to say that
3617 anonymous artificial vars aren't pushed, but everything else is. */
3618 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3619 gimple_add_tmp_var (decl);
3621 gimplify_and_add (decl_s, pre_p);
3622 *expr_p = decl;
3623 return GS_OK;
3626 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3627 return a new CONSTRUCTOR if something changed. */
3629 static tree
3630 optimize_compound_literals_in_ctor (tree orig_ctor)
3632 tree ctor = orig_ctor;
3633 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (ctor);
3634 unsigned int idx, num = VEC_length (constructor_elt, elts);
3636 for (idx = 0; idx < num; idx++)
3638 tree value = VEC_index (constructor_elt, elts, idx)->value;
3639 tree newval = value;
3640 if (TREE_CODE (value) == CONSTRUCTOR)
3641 newval = optimize_compound_literals_in_ctor (value);
3642 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3644 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3645 tree decl = DECL_EXPR_DECL (decl_s);
3646 tree init = DECL_INITIAL (decl);
3648 if (!TREE_ADDRESSABLE (value)
3649 && !TREE_ADDRESSABLE (decl)
3650 && init)
3651 newval = optimize_compound_literals_in_ctor (init);
3653 if (newval == value)
3654 continue;
3656 if (ctor == orig_ctor)
3658 ctor = copy_node (orig_ctor);
3659 CONSTRUCTOR_ELTS (ctor) = VEC_copy (constructor_elt, gc, elts);
3660 elts = CONSTRUCTOR_ELTS (ctor);
3662 VEC_index (constructor_elt, elts, idx)->value = newval;
3664 return ctor;
3669 /* A subroutine of gimplify_modify_expr. Break out elements of a
3670 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3672 Note that we still need to clear any elements that don't have explicit
3673 initializers, so if not all elements are initialized we keep the
3674 original MODIFY_EXPR, we just remove all of the constructor elements.
3676 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3677 GS_ERROR if we would have to create a temporary when gimplifying
3678 this constructor. Otherwise, return GS_OK.
3680 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3682 static enum gimplify_status
3683 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3684 bool want_value, bool notify_temp_creation)
3686 tree object, ctor, type;
3687 enum gimplify_status ret;
3688 VEC(constructor_elt,gc) *elts;
3690 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3692 if (!notify_temp_creation)
3694 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3695 is_gimple_lvalue, fb_lvalue);
3696 if (ret == GS_ERROR)
3697 return ret;
3700 object = TREE_OPERAND (*expr_p, 0);
3701 ctor = TREE_OPERAND (*expr_p, 1) =
3702 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3703 type = TREE_TYPE (ctor);
3704 elts = CONSTRUCTOR_ELTS (ctor);
3705 ret = GS_ALL_DONE;
3707 switch (TREE_CODE (type))
3709 case RECORD_TYPE:
3710 case UNION_TYPE:
3711 case QUAL_UNION_TYPE:
3712 case ARRAY_TYPE:
3714 struct gimplify_init_ctor_preeval_data preeval_data;
3715 HOST_WIDE_INT num_type_elements, num_ctor_elements;
3716 HOST_WIDE_INT num_nonzero_elements;
3717 bool cleared, valid_const_initializer;
3719 /* Aggregate types must lower constructors to initialization of
3720 individual elements. The exception is that a CONSTRUCTOR node
3721 with no elements indicates zero-initialization of the whole. */
3722 if (VEC_empty (constructor_elt, elts))
3724 if (notify_temp_creation)
3725 return GS_OK;
3726 break;
3729 /* Fetch information about the constructor to direct later processing.
3730 We might want to make static versions of it in various cases, and
3731 can only do so if it known to be a valid constant initializer. */
3732 valid_const_initializer
3733 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3734 &num_ctor_elements, &cleared);
3736 /* If a const aggregate variable is being initialized, then it
3737 should never be a lose to promote the variable to be static. */
3738 if (valid_const_initializer
3739 && num_nonzero_elements > 1
3740 && TREE_READONLY (object)
3741 && TREE_CODE (object) == VAR_DECL
3742 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3744 if (notify_temp_creation)
3745 return GS_ERROR;
3746 DECL_INITIAL (object) = ctor;
3747 TREE_STATIC (object) = 1;
3748 if (!DECL_NAME (object))
3749 DECL_NAME (object) = create_tmp_var_name ("C");
3750 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3752 /* ??? C++ doesn't automatically append a .<number> to the
3753 assembler name, and even when it does, it looks a FE private
3754 data structures to figure out what that number should be,
3755 which are not set for this variable. I suppose this is
3756 important for local statics for inline functions, which aren't
3757 "local" in the object file sense. So in order to get a unique
3758 TU-local symbol, we must invoke the lhd version now. */
3759 lhd_set_decl_assembler_name (object);
3761 *expr_p = NULL_TREE;
3762 break;
3765 /* If there are "lots" of initialized elements, even discounting
3766 those that are not address constants (and thus *must* be
3767 computed at runtime), then partition the constructor into
3768 constant and non-constant parts. Block copy the constant
3769 parts in, then generate code for the non-constant parts. */
3770 /* TODO. There's code in cp/typeck.c to do this. */
3772 num_type_elements = count_type_elements (type, true);
3774 /* If count_type_elements could not determine number of type elements
3775 for a constant-sized object, assume clearing is needed.
3776 Don't do this for variable-sized objects, as store_constructor
3777 will ignore the clearing of variable-sized objects. */
3778 if (num_type_elements < 0 && int_size_in_bytes (type) >= 0)
3779 cleared = true;
3780 /* If there are "lots" of zeros, then block clear the object first. */
3781 else if (num_type_elements - num_nonzero_elements
3782 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
3783 && num_nonzero_elements < num_type_elements/4)
3784 cleared = true;
3785 /* ??? This bit ought not be needed. For any element not present
3786 in the initializer, we should simply set them to zero. Except
3787 we'd need to *find* the elements that are not present, and that
3788 requires trickery to avoid quadratic compile-time behavior in
3789 large cases or excessive memory use in small cases. */
3790 else if (num_ctor_elements < num_type_elements)
3791 cleared = true;
3793 /* If there are "lots" of initialized elements, and all of them
3794 are valid address constants, then the entire initializer can
3795 be dropped to memory, and then memcpy'd out. Don't do this
3796 for sparse arrays, though, as it's more efficient to follow
3797 the standard CONSTRUCTOR behavior of memset followed by
3798 individual element initialization. Also don't do this for small
3799 all-zero initializers (which aren't big enough to merit
3800 clearing), and don't try to make bitwise copies of
3801 TREE_ADDRESSABLE types. */
3802 if (valid_const_initializer
3803 && !(cleared || num_nonzero_elements == 0)
3804 && !TREE_ADDRESSABLE (type))
3806 HOST_WIDE_INT size = int_size_in_bytes (type);
3807 unsigned int align;
3809 /* ??? We can still get unbounded array types, at least
3810 from the C++ front end. This seems wrong, but attempt
3811 to work around it for now. */
3812 if (size < 0)
3814 size = int_size_in_bytes (TREE_TYPE (object));
3815 if (size >= 0)
3816 TREE_TYPE (ctor) = type = TREE_TYPE (object);
3819 /* Find the maximum alignment we can assume for the object. */
3820 /* ??? Make use of DECL_OFFSET_ALIGN. */
3821 if (DECL_P (object))
3822 align = DECL_ALIGN (object);
3823 else
3824 align = TYPE_ALIGN (type);
3826 if (size > 0
3827 && num_nonzero_elements > 1
3828 && !can_move_by_pieces (size, align))
3830 if (notify_temp_creation)
3831 return GS_ERROR;
3833 walk_tree (&ctor, force_labels_r, NULL, NULL);
3834 ctor = tree_output_constant_def (ctor);
3835 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
3836 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
3837 TREE_OPERAND (*expr_p, 1) = ctor;
3839 /* This is no longer an assignment of a CONSTRUCTOR, but
3840 we still may have processing to do on the LHS. So
3841 pretend we didn't do anything here to let that happen. */
3842 return GS_UNHANDLED;
3846 /* If the target is volatile, we have non-zero elements and more than
3847 one field to assign, initialize the target from a temporary. */
3848 if (TREE_THIS_VOLATILE (object)
3849 && !TREE_ADDRESSABLE (type)
3850 && num_nonzero_elements > 0
3851 && VEC_length (constructor_elt, elts) > 1)
3853 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
3854 TREE_OPERAND (*expr_p, 0) = temp;
3855 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
3856 *expr_p,
3857 build2 (MODIFY_EXPR, void_type_node,
3858 object, temp));
3859 return GS_OK;
3862 if (notify_temp_creation)
3863 return GS_OK;
3865 /* If there are nonzero elements and if needed, pre-evaluate to capture
3866 elements overlapping with the lhs into temporaries. We must do this
3867 before clearing to fetch the values before they are zeroed-out. */
3868 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
3870 preeval_data.lhs_base_decl = get_base_address (object);
3871 if (!DECL_P (preeval_data.lhs_base_decl))
3872 preeval_data.lhs_base_decl = NULL;
3873 preeval_data.lhs_alias_set = get_alias_set (object);
3875 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
3876 pre_p, post_p, &preeval_data);
3879 if (cleared)
3881 /* Zap the CONSTRUCTOR element list, which simplifies this case.
3882 Note that we still have to gimplify, in order to handle the
3883 case of variable sized types. Avoid shared tree structures. */
3884 CONSTRUCTOR_ELTS (ctor) = NULL;
3885 TREE_SIDE_EFFECTS (ctor) = 0;
3886 object = unshare_expr (object);
3887 gimplify_stmt (expr_p, pre_p);
3890 /* If we have not block cleared the object, or if there are nonzero
3891 elements in the constructor, add assignments to the individual
3892 scalar fields of the object. */
3893 if (!cleared || num_nonzero_elements > 0)
3894 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
3896 *expr_p = NULL_TREE;
3898 break;
3900 case COMPLEX_TYPE:
3902 tree r, i;
3904 if (notify_temp_creation)
3905 return GS_OK;
3907 /* Extract the real and imaginary parts out of the ctor. */
3908 gcc_assert (VEC_length (constructor_elt, elts) == 2);
3909 r = VEC_index (constructor_elt, elts, 0)->value;
3910 i = VEC_index (constructor_elt, elts, 1)->value;
3911 if (r == NULL || i == NULL)
3913 tree zero = build_zero_cst (TREE_TYPE (type));
3914 if (r == NULL)
3915 r = zero;
3916 if (i == NULL)
3917 i = zero;
3920 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
3921 represent creation of a complex value. */
3922 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
3924 ctor = build_complex (type, r, i);
3925 TREE_OPERAND (*expr_p, 1) = ctor;
3927 else
3929 ctor = build2 (COMPLEX_EXPR, type, r, i);
3930 TREE_OPERAND (*expr_p, 1) = ctor;
3931 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
3932 pre_p,
3933 post_p,
3934 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
3935 fb_rvalue);
3938 break;
3940 case VECTOR_TYPE:
3942 unsigned HOST_WIDE_INT ix;
3943 constructor_elt *ce;
3945 if (notify_temp_creation)
3946 return GS_OK;
3948 /* Go ahead and simplify constant constructors to VECTOR_CST. */
3949 if (TREE_CONSTANT (ctor))
3951 bool constant_p = true;
3952 tree value;
3954 /* Even when ctor is constant, it might contain non-*_CST
3955 elements, such as addresses or trapping values like
3956 1.0/0.0 - 1.0/0.0. Such expressions don't belong
3957 in VECTOR_CST nodes. */
3958 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
3959 if (!CONSTANT_CLASS_P (value))
3961 constant_p = false;
3962 break;
3965 if (constant_p)
3967 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
3968 break;
3971 /* Don't reduce an initializer constant even if we can't
3972 make a VECTOR_CST. It won't do anything for us, and it'll
3973 prevent us from representing it as a single constant. */
3974 if (initializer_constant_valid_p (ctor, type))
3975 break;
3977 TREE_CONSTANT (ctor) = 0;
3980 /* Vector types use CONSTRUCTOR all the way through gimple
3981 compilation as a general initializer. */
3982 FOR_EACH_VEC_ELT (constructor_elt, elts, ix, ce)
3984 enum gimplify_status tret;
3985 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
3986 fb_rvalue);
3987 if (tret == GS_ERROR)
3988 ret = GS_ERROR;
3990 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
3991 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
3993 break;
3995 default:
3996 /* So how did we get a CONSTRUCTOR for a scalar type? */
3997 gcc_unreachable ();
4000 if (ret == GS_ERROR)
4001 return GS_ERROR;
4002 else if (want_value)
4004 *expr_p = object;
4005 return GS_OK;
4007 else
4009 /* If we have gimplified both sides of the initializer but have
4010 not emitted an assignment, do so now. */
4011 if (*expr_p)
4013 tree lhs = TREE_OPERAND (*expr_p, 0);
4014 tree rhs = TREE_OPERAND (*expr_p, 1);
4015 gimple init = gimple_build_assign (lhs, rhs);
4016 gimplify_seq_add_stmt (pre_p, init);
4017 *expr_p = NULL;
4020 return GS_ALL_DONE;
4024 /* Given a pointer value OP0, return a simplified version of an
4025 indirection through OP0, or NULL_TREE if no simplification is
4026 possible. Note that the resulting type may be different from
4027 the type pointed to in the sense that it is still compatible
4028 from the langhooks point of view. */
4030 tree
4031 gimple_fold_indirect_ref (tree t)
4033 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4034 tree sub = t;
4035 tree subtype;
4037 STRIP_NOPS (sub);
4038 subtype = TREE_TYPE (sub);
4039 if (!POINTER_TYPE_P (subtype))
4040 return NULL_TREE;
4042 if (TREE_CODE (sub) == ADDR_EXPR)
4044 tree op = TREE_OPERAND (sub, 0);
4045 tree optype = TREE_TYPE (op);
4046 /* *&p => p */
4047 if (useless_type_conversion_p (type, optype))
4048 return op;
4050 /* *(foo *)&fooarray => fooarray[0] */
4051 if (TREE_CODE (optype) == ARRAY_TYPE
4052 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4053 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4055 tree type_domain = TYPE_DOMAIN (optype);
4056 tree min_val = size_zero_node;
4057 if (type_domain && TYPE_MIN_VALUE (type_domain))
4058 min_val = TYPE_MIN_VALUE (type_domain);
4059 if (TREE_CODE (min_val) == INTEGER_CST)
4060 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4062 /* *(foo *)&complexfoo => __real__ complexfoo */
4063 else if (TREE_CODE (optype) == COMPLEX_TYPE
4064 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4065 return fold_build1 (REALPART_EXPR, type, op);
4066 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4067 else if (TREE_CODE (optype) == VECTOR_TYPE
4068 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4070 tree part_width = TYPE_SIZE (type);
4071 tree index = bitsize_int (0);
4072 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4076 /* *(p + CST) -> ... */
4077 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4078 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4080 tree addr = TREE_OPERAND (sub, 0);
4081 tree off = TREE_OPERAND (sub, 1);
4082 tree addrtype;
4084 STRIP_NOPS (addr);
4085 addrtype = TREE_TYPE (addr);
4087 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4088 if (TREE_CODE (addr) == ADDR_EXPR
4089 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4090 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4091 && host_integerp (off, 1))
4093 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4094 tree part_width = TYPE_SIZE (type);
4095 unsigned HOST_WIDE_INT part_widthi
4096 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4097 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4098 tree index = bitsize_int (indexi);
4099 if (offset / part_widthi
4100 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4101 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4102 part_width, index);
4105 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4106 if (TREE_CODE (addr) == ADDR_EXPR
4107 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4108 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4110 tree size = TYPE_SIZE_UNIT (type);
4111 if (tree_int_cst_equal (size, off))
4112 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4115 /* *(p + CST) -> MEM_REF <p, CST>. */
4116 if (TREE_CODE (addr) != ADDR_EXPR
4117 || DECL_P (TREE_OPERAND (addr, 0)))
4118 return fold_build2 (MEM_REF, type,
4119 addr,
4120 build_int_cst_wide (ptype,
4121 TREE_INT_CST_LOW (off),
4122 TREE_INT_CST_HIGH (off)));
4125 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4126 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4127 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4128 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4130 tree type_domain;
4131 tree min_val = size_zero_node;
4132 tree osub = sub;
4133 sub = gimple_fold_indirect_ref (sub);
4134 if (! sub)
4135 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4136 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4137 if (type_domain && TYPE_MIN_VALUE (type_domain))
4138 min_val = TYPE_MIN_VALUE (type_domain);
4139 if (TREE_CODE (min_val) == INTEGER_CST)
4140 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4143 return NULL_TREE;
4146 /* Given a pointer value OP0, return a simplified version of an
4147 indirection through OP0, or NULL_TREE if no simplification is
4148 possible. This may only be applied to a rhs of an expression.
4149 Note that the resulting type may be different from the type pointed
4150 to in the sense that it is still compatible from the langhooks
4151 point of view. */
4153 static tree
4154 gimple_fold_indirect_ref_rhs (tree t)
4156 return gimple_fold_indirect_ref (t);
4159 /* Subroutine of gimplify_modify_expr to do simplifications of
4160 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4161 something changes. */
4163 static enum gimplify_status
4164 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4165 gimple_seq *pre_p, gimple_seq *post_p,
4166 bool want_value)
4168 enum gimplify_status ret = GS_UNHANDLED;
4169 bool changed;
4173 changed = false;
4174 switch (TREE_CODE (*from_p))
4176 case VAR_DECL:
4177 /* If we're assigning from a read-only variable initialized with
4178 a constructor, do the direct assignment from the constructor,
4179 but only if neither source nor target are volatile since this
4180 latter assignment might end up being done on a per-field basis. */
4181 if (DECL_INITIAL (*from_p)
4182 && TREE_READONLY (*from_p)
4183 && !TREE_THIS_VOLATILE (*from_p)
4184 && !TREE_THIS_VOLATILE (*to_p)
4185 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4187 tree old_from = *from_p;
4188 enum gimplify_status subret;
4190 /* Move the constructor into the RHS. */
4191 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4193 /* Let's see if gimplify_init_constructor will need to put
4194 it in memory. */
4195 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4196 false, true);
4197 if (subret == GS_ERROR)
4199 /* If so, revert the change. */
4200 *from_p = old_from;
4202 else
4204 ret = GS_OK;
4205 changed = true;
4208 break;
4209 case INDIRECT_REF:
4211 /* If we have code like
4213 *(const A*)(A*)&x
4215 where the type of "x" is a (possibly cv-qualified variant
4216 of "A"), treat the entire expression as identical to "x".
4217 This kind of code arises in C++ when an object is bound
4218 to a const reference, and if "x" is a TARGET_EXPR we want
4219 to take advantage of the optimization below. */
4220 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4221 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4222 if (t)
4224 if (TREE_THIS_VOLATILE (t) != volatile_p)
4226 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4227 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4228 build_fold_addr_expr (t));
4229 if (REFERENCE_CLASS_P (t))
4230 TREE_THIS_VOLATILE (t) = volatile_p;
4232 *from_p = t;
4233 ret = GS_OK;
4234 changed = true;
4236 break;
4239 case TARGET_EXPR:
4241 /* If we are initializing something from a TARGET_EXPR, strip the
4242 TARGET_EXPR and initialize it directly, if possible. This can't
4243 be done if the initializer is void, since that implies that the
4244 temporary is set in some non-trivial way.
4246 ??? What about code that pulls out the temp and uses it
4247 elsewhere? I think that such code never uses the TARGET_EXPR as
4248 an initializer. If I'm wrong, we'll die because the temp won't
4249 have any RTL. In that case, I guess we'll need to replace
4250 references somehow. */
4251 tree init = TARGET_EXPR_INITIAL (*from_p);
4253 if (init
4254 && !VOID_TYPE_P (TREE_TYPE (init)))
4256 *from_p = init;
4257 ret = GS_OK;
4258 changed = true;
4261 break;
4263 case COMPOUND_EXPR:
4264 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4265 caught. */
4266 gimplify_compound_expr (from_p, pre_p, true);
4267 ret = GS_OK;
4268 changed = true;
4269 break;
4271 case CONSTRUCTOR:
4272 /* If we already made some changes, let the front end have a
4273 crack at this before we break it down. */
4274 if (ret != GS_UNHANDLED)
4275 break;
4276 /* If we're initializing from a CONSTRUCTOR, break this into
4277 individual MODIFY_EXPRs. */
4278 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4279 false);
4281 case COND_EXPR:
4282 /* If we're assigning to a non-register type, push the assignment
4283 down into the branches. This is mandatory for ADDRESSABLE types,
4284 since we cannot generate temporaries for such, but it saves a
4285 copy in other cases as well. */
4286 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4288 /* This code should mirror the code in gimplify_cond_expr. */
4289 enum tree_code code = TREE_CODE (*expr_p);
4290 tree cond = *from_p;
4291 tree result = *to_p;
4293 ret = gimplify_expr (&result, pre_p, post_p,
4294 is_gimple_lvalue, fb_lvalue);
4295 if (ret != GS_ERROR)
4296 ret = GS_OK;
4298 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4299 TREE_OPERAND (cond, 1)
4300 = build2 (code, void_type_node, result,
4301 TREE_OPERAND (cond, 1));
4302 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4303 TREE_OPERAND (cond, 2)
4304 = build2 (code, void_type_node, unshare_expr (result),
4305 TREE_OPERAND (cond, 2));
4307 TREE_TYPE (cond) = void_type_node;
4308 recalculate_side_effects (cond);
4310 if (want_value)
4312 gimplify_and_add (cond, pre_p);
4313 *expr_p = unshare_expr (result);
4315 else
4316 *expr_p = cond;
4317 return ret;
4319 break;
4321 case CALL_EXPR:
4322 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4323 return slot so that we don't generate a temporary. */
4324 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4325 && aggregate_value_p (*from_p, *from_p))
4327 bool use_target;
4329 if (!(rhs_predicate_for (*to_p))(*from_p))
4330 /* If we need a temporary, *to_p isn't accurate. */
4331 use_target = false;
4332 else if (TREE_CODE (*to_p) == RESULT_DECL
4333 && DECL_NAME (*to_p) == NULL_TREE
4334 && needs_to_live_in_memory (*to_p))
4335 /* It's OK to use the return slot directly unless it's an NRV. */
4336 use_target = true;
4337 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4338 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4339 /* Don't force regs into memory. */
4340 use_target = false;
4341 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4342 /* It's OK to use the target directly if it's being
4343 initialized. */
4344 use_target = true;
4345 else if (!is_gimple_non_addressable (*to_p))
4346 /* Don't use the original target if it's already addressable;
4347 if its address escapes, and the called function uses the
4348 NRV optimization, a conforming program could see *to_p
4349 change before the called function returns; see c++/19317.
4350 When optimizing, the return_slot pass marks more functions
4351 as safe after we have escape info. */
4352 use_target = false;
4353 else
4354 use_target = true;
4356 if (use_target)
4358 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4359 mark_addressable (*to_p);
4362 break;
4364 case WITH_SIZE_EXPR:
4365 /* Likewise for calls that return an aggregate of non-constant size,
4366 since we would not be able to generate a temporary at all. */
4367 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4369 *from_p = TREE_OPERAND (*from_p, 0);
4370 /* We don't change ret in this case because the
4371 WITH_SIZE_EXPR might have been added in
4372 gimplify_modify_expr, so returning GS_OK would lead to an
4373 infinite loop. */
4374 changed = true;
4376 break;
4378 /* If we're initializing from a container, push the initialization
4379 inside it. */
4380 case CLEANUP_POINT_EXPR:
4381 case BIND_EXPR:
4382 case STATEMENT_LIST:
4384 tree wrap = *from_p;
4385 tree t;
4387 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4388 fb_lvalue);
4389 if (ret != GS_ERROR)
4390 ret = GS_OK;
4392 t = voidify_wrapper_expr (wrap, *expr_p);
4393 gcc_assert (t == *expr_p);
4395 if (want_value)
4397 gimplify_and_add (wrap, pre_p);
4398 *expr_p = unshare_expr (*to_p);
4400 else
4401 *expr_p = wrap;
4402 return GS_OK;
4405 case COMPOUND_LITERAL_EXPR:
4407 tree complit = TREE_OPERAND (*expr_p, 1);
4408 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4409 tree decl = DECL_EXPR_DECL (decl_s);
4410 tree init = DECL_INITIAL (decl);
4412 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4413 into struct T x = { 0, 1, 2 } if the address of the
4414 compound literal has never been taken. */
4415 if (!TREE_ADDRESSABLE (complit)
4416 && !TREE_ADDRESSABLE (decl)
4417 && init)
4419 *expr_p = copy_node (*expr_p);
4420 TREE_OPERAND (*expr_p, 1) = init;
4421 return GS_OK;
4425 default:
4426 break;
4429 while (changed);
4431 return ret;
4435 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4436 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4437 DECL_GIMPLE_REG_P set.
4439 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4440 other, unmodified part of the complex object just before the total store.
4441 As a consequence, if the object is still uninitialized, an undefined value
4442 will be loaded into a register, which may result in a spurious exception
4443 if the register is floating-point and the value happens to be a signaling
4444 NaN for example. Then the fully-fledged complex operations lowering pass
4445 followed by a DCE pass are necessary in order to fix things up. */
4447 static enum gimplify_status
4448 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4449 bool want_value)
4451 enum tree_code code, ocode;
4452 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4454 lhs = TREE_OPERAND (*expr_p, 0);
4455 rhs = TREE_OPERAND (*expr_p, 1);
4456 code = TREE_CODE (lhs);
4457 lhs = TREE_OPERAND (lhs, 0);
4459 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4460 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4461 other = get_formal_tmp_var (other, pre_p);
4463 realpart = code == REALPART_EXPR ? rhs : other;
4464 imagpart = code == REALPART_EXPR ? other : rhs;
4466 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4467 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4468 else
4469 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4471 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4472 *expr_p = (want_value) ? rhs : NULL_TREE;
4474 return GS_ALL_DONE;
4478 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4480 modify_expr
4481 : varname '=' rhs
4482 | '*' ID '=' rhs
4484 PRE_P points to the list where side effects that must happen before
4485 *EXPR_P should be stored.
4487 POST_P points to the list where side effects that must happen after
4488 *EXPR_P should be stored.
4490 WANT_VALUE is nonzero iff we want to use the value of this expression
4491 in another expression. */
4493 static enum gimplify_status
4494 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4495 bool want_value)
4497 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4498 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4499 enum gimplify_status ret = GS_UNHANDLED;
4500 gimple assign;
4501 location_t loc = EXPR_LOCATION (*expr_p);
4503 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4504 || TREE_CODE (*expr_p) == INIT_EXPR);
4506 /* Insert pointer conversions required by the middle-end that are not
4507 required by the frontend. This fixes middle-end type checking for
4508 for example gcc.dg/redecl-6.c. */
4509 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4511 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4512 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4513 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4516 /* See if any simplifications can be done based on what the RHS is. */
4517 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4518 want_value);
4519 if (ret != GS_UNHANDLED)
4520 return ret;
4522 /* For zero sized types only gimplify the left hand side and right hand
4523 side as statements and throw away the assignment. Do this after
4524 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4525 types properly. */
4526 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4528 gimplify_stmt (from_p, pre_p);
4529 gimplify_stmt (to_p, pre_p);
4530 *expr_p = NULL_TREE;
4531 return GS_ALL_DONE;
4534 /* If the value being copied is of variable width, compute the length
4535 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4536 before gimplifying any of the operands so that we can resolve any
4537 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4538 the size of the expression to be copied, not of the destination, so
4539 that is what we must do here. */
4540 maybe_with_size_expr (from_p);
4542 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4543 if (ret == GS_ERROR)
4544 return ret;
4546 /* As a special case, we have to temporarily allow for assignments
4547 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4548 a toplevel statement, when gimplifying the GENERIC expression
4549 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4550 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4552 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4553 prevent gimplify_expr from trying to create a new temporary for
4554 foo's LHS, we tell it that it should only gimplify until it
4555 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4556 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4557 and all we need to do here is set 'a' to be its LHS. */
4558 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4559 fb_rvalue);
4560 if (ret == GS_ERROR)
4561 return ret;
4563 /* Now see if the above changed *from_p to something we handle specially. */
4564 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4565 want_value);
4566 if (ret != GS_UNHANDLED)
4567 return ret;
4569 /* If we've got a variable sized assignment between two lvalues (i.e. does
4570 not involve a call), then we can make things a bit more straightforward
4571 by converting the assignment to memcpy or memset. */
4572 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4574 tree from = TREE_OPERAND (*from_p, 0);
4575 tree size = TREE_OPERAND (*from_p, 1);
4577 if (TREE_CODE (from) == CONSTRUCTOR)
4578 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4580 if (is_gimple_addressable (from))
4582 *from_p = from;
4583 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4584 pre_p);
4588 /* Transform partial stores to non-addressable complex variables into
4589 total stores. This allows us to use real instead of virtual operands
4590 for these variables, which improves optimization. */
4591 if ((TREE_CODE (*to_p) == REALPART_EXPR
4592 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4593 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4594 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4596 /* Try to alleviate the effects of the gimplification creating artificial
4597 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4598 if (!gimplify_ctxp->into_ssa
4599 && TREE_CODE (*from_p) == VAR_DECL
4600 && DECL_IGNORED_P (*from_p)
4601 && DECL_P (*to_p)
4602 && !DECL_IGNORED_P (*to_p))
4604 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4605 DECL_NAME (*from_p)
4606 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4607 DECL_DEBUG_EXPR_IS_FROM (*from_p) = 1;
4608 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4611 if (want_value && TREE_THIS_VOLATILE (*to_p))
4612 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4614 if (TREE_CODE (*from_p) == CALL_EXPR)
4616 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4617 instead of a GIMPLE_ASSIGN. */
4618 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4619 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4620 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4621 assign = gimple_build_call_from_tree (*from_p);
4622 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4623 if (!gimple_call_noreturn_p (assign))
4624 gimple_call_set_lhs (assign, *to_p);
4626 else
4628 assign = gimple_build_assign (*to_p, *from_p);
4629 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4632 gimplify_seq_add_stmt (pre_p, assign);
4634 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4636 /* If we've somehow already got an SSA_NAME on the LHS, then
4637 we've probably modified it twice. Not good. */
4638 gcc_assert (TREE_CODE (*to_p) != SSA_NAME);
4639 *to_p = make_ssa_name (*to_p, assign);
4640 gimple_set_lhs (assign, *to_p);
4643 if (want_value)
4645 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4646 return GS_OK;
4648 else
4649 *expr_p = NULL;
4651 return GS_ALL_DONE;
4654 /* Gimplify a comparison between two variable-sized objects. Do this
4655 with a call to BUILT_IN_MEMCMP. */
4657 static enum gimplify_status
4658 gimplify_variable_sized_compare (tree *expr_p)
4660 location_t loc = EXPR_LOCATION (*expr_p);
4661 tree op0 = TREE_OPERAND (*expr_p, 0);
4662 tree op1 = TREE_OPERAND (*expr_p, 1);
4663 tree t, arg, dest, src, expr;
4665 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4666 arg = unshare_expr (arg);
4667 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4668 src = build_fold_addr_expr_loc (loc, op1);
4669 dest = build_fold_addr_expr_loc (loc, op0);
4670 t = implicit_built_in_decls[BUILT_IN_MEMCMP];
4671 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4673 expr
4674 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4675 SET_EXPR_LOCATION (expr, loc);
4676 *expr_p = expr;
4678 return GS_OK;
4681 /* Gimplify a comparison between two aggregate objects of integral scalar
4682 mode as a comparison between the bitwise equivalent scalar values. */
4684 static enum gimplify_status
4685 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4687 location_t loc = EXPR_LOCATION (*expr_p);
4688 tree op0 = TREE_OPERAND (*expr_p, 0);
4689 tree op1 = TREE_OPERAND (*expr_p, 1);
4691 tree type = TREE_TYPE (op0);
4692 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
4694 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
4695 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
4697 *expr_p
4698 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
4700 return GS_OK;
4703 /* Gimplify TRUTH_ANDIF_EXPR and TRUTH_ORIF_EXPR expressions. EXPR_P
4704 points to the expression to gimplify.
4706 Expressions of the form 'a && b' are gimplified to:
4708 a && b ? true : false
4710 LOCUS is the source location to be put on the generated COND_EXPR.
4711 gimplify_cond_expr will do the rest. */
4713 static enum gimplify_status
4714 gimplify_boolean_expr (tree *expr_p, location_t locus)
4716 /* Preserve the original type of the expression. */
4717 tree type = TREE_TYPE (*expr_p);
4719 *expr_p = build3 (COND_EXPR, type, *expr_p,
4720 fold_convert_loc (locus, type, boolean_true_node),
4721 fold_convert_loc (locus, type, boolean_false_node));
4723 SET_EXPR_LOCATION (*expr_p, locus);
4725 return GS_OK;
4728 /* Gimplifies an expression sequence. This function gimplifies each
4729 expression and re-writes the original expression with the last
4730 expression of the sequence in GIMPLE form.
4732 PRE_P points to the list where the side effects for all the
4733 expressions in the sequence will be emitted.
4735 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
4737 static enum gimplify_status
4738 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
4740 tree t = *expr_p;
4744 tree *sub_p = &TREE_OPERAND (t, 0);
4746 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
4747 gimplify_compound_expr (sub_p, pre_p, false);
4748 else
4749 gimplify_stmt (sub_p, pre_p);
4751 t = TREE_OPERAND (t, 1);
4753 while (TREE_CODE (t) == COMPOUND_EXPR);
4755 *expr_p = t;
4756 if (want_value)
4757 return GS_OK;
4758 else
4760 gimplify_stmt (expr_p, pre_p);
4761 return GS_ALL_DONE;
4766 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
4767 gimplify. After gimplification, EXPR_P will point to a new temporary
4768 that holds the original value of the SAVE_EXPR node.
4770 PRE_P points to the list where side effects that must happen before
4771 *EXPR_P should be stored. */
4773 static enum gimplify_status
4774 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4776 enum gimplify_status ret = GS_ALL_DONE;
4777 tree val;
4779 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
4780 val = TREE_OPERAND (*expr_p, 0);
4782 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
4783 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
4785 /* The operand may be a void-valued expression such as SAVE_EXPRs
4786 generated by the Java frontend for class initialization. It is
4787 being executed only for its side-effects. */
4788 if (TREE_TYPE (val) == void_type_node)
4790 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
4791 is_gimple_stmt, fb_none);
4792 val = NULL;
4794 else
4795 val = get_initialized_tmp_var (val, pre_p, post_p);
4797 TREE_OPERAND (*expr_p, 0) = val;
4798 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
4801 *expr_p = val;
4803 return ret;
4806 /* Re-write the ADDR_EXPR node pointed to by EXPR_P
4808 unary_expr
4809 : ...
4810 | '&' varname
4813 PRE_P points to the list where side effects that must happen before
4814 *EXPR_P should be stored.
4816 POST_P points to the list where side effects that must happen after
4817 *EXPR_P should be stored. */
4819 static enum gimplify_status
4820 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4822 tree expr = *expr_p;
4823 tree op0 = TREE_OPERAND (expr, 0);
4824 enum gimplify_status ret;
4825 location_t loc = EXPR_LOCATION (*expr_p);
4827 switch (TREE_CODE (op0))
4829 case INDIRECT_REF:
4830 do_indirect_ref:
4831 /* Check if we are dealing with an expression of the form '&*ptr'.
4832 While the front end folds away '&*ptr' into 'ptr', these
4833 expressions may be generated internally by the compiler (e.g.,
4834 builtins like __builtin_va_end). */
4835 /* Caution: the silent array decomposition semantics we allow for
4836 ADDR_EXPR means we can't always discard the pair. */
4837 /* Gimplification of the ADDR_EXPR operand may drop
4838 cv-qualification conversions, so make sure we add them if
4839 needed. */
4841 tree op00 = TREE_OPERAND (op0, 0);
4842 tree t_expr = TREE_TYPE (expr);
4843 tree t_op00 = TREE_TYPE (op00);
4845 if (!useless_type_conversion_p (t_expr, t_op00))
4846 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
4847 *expr_p = op00;
4848 ret = GS_OK;
4850 break;
4852 case VIEW_CONVERT_EXPR:
4853 /* Take the address of our operand and then convert it to the type of
4854 this ADDR_EXPR.
4856 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
4857 all clear. The impact of this transformation is even less clear. */
4859 /* If the operand is a useless conversion, look through it. Doing so
4860 guarantees that the ADDR_EXPR and its operand will remain of the
4861 same type. */
4862 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
4863 op0 = TREE_OPERAND (op0, 0);
4865 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
4866 build_fold_addr_expr_loc (loc,
4867 TREE_OPERAND (op0, 0)));
4868 ret = GS_OK;
4869 break;
4871 default:
4872 /* We use fb_either here because the C frontend sometimes takes
4873 the address of a call that returns a struct; see
4874 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
4875 the implied temporary explicit. */
4877 /* Make the operand addressable. */
4878 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
4879 is_gimple_addressable, fb_either);
4880 if (ret == GS_ERROR)
4881 break;
4883 /* Then mark it. Beware that it may not be possible to do so directly
4884 if a temporary has been created by the gimplification. */
4885 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
4887 op0 = TREE_OPERAND (expr, 0);
4889 /* For various reasons, the gimplification of the expression
4890 may have made a new INDIRECT_REF. */
4891 if (TREE_CODE (op0) == INDIRECT_REF)
4892 goto do_indirect_ref;
4894 mark_addressable (TREE_OPERAND (expr, 0));
4896 /* The FEs may end up building ADDR_EXPRs early on a decl with
4897 an incomplete type. Re-build ADDR_EXPRs in canonical form
4898 here. */
4899 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
4900 *expr_p = build_fold_addr_expr (op0);
4902 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
4903 recompute_tree_invariant_for_addr_expr (*expr_p);
4905 /* If we re-built the ADDR_EXPR add a conversion to the original type
4906 if required. */
4907 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
4908 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
4910 break;
4913 return ret;
4916 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
4917 value; output operands should be a gimple lvalue. */
4919 static enum gimplify_status
4920 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
4922 tree expr;
4923 int noutputs;
4924 const char **oconstraints;
4925 int i;
4926 tree link;
4927 const char *constraint;
4928 bool allows_mem, allows_reg, is_inout;
4929 enum gimplify_status ret, tret;
4930 gimple stmt;
4931 VEC(tree, gc) *inputs;
4932 VEC(tree, gc) *outputs;
4933 VEC(tree, gc) *clobbers;
4934 VEC(tree, gc) *labels;
4935 tree link_next;
4937 expr = *expr_p;
4938 noutputs = list_length (ASM_OUTPUTS (expr));
4939 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
4941 inputs = outputs = clobbers = labels = NULL;
4943 ret = GS_ALL_DONE;
4944 link_next = NULL_TREE;
4945 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
4947 bool ok;
4948 size_t constraint_len;
4950 link_next = TREE_CHAIN (link);
4952 oconstraints[i]
4953 = constraint
4954 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
4955 constraint_len = strlen (constraint);
4956 if (constraint_len == 0)
4957 continue;
4959 ok = parse_output_constraint (&constraint, i, 0, 0,
4960 &allows_mem, &allows_reg, &is_inout);
4961 if (!ok)
4963 ret = GS_ERROR;
4964 is_inout = false;
4967 if (!allows_reg && allows_mem)
4968 mark_addressable (TREE_VALUE (link));
4970 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
4971 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
4972 fb_lvalue | fb_mayfail);
4973 if (tret == GS_ERROR)
4975 error ("invalid lvalue in asm output %d", i);
4976 ret = tret;
4979 VEC_safe_push (tree, gc, outputs, link);
4980 TREE_CHAIN (link) = NULL_TREE;
4982 if (is_inout)
4984 /* An input/output operand. To give the optimizers more
4985 flexibility, split it into separate input and output
4986 operands. */
4987 tree input;
4988 char buf[10];
4990 /* Turn the in/out constraint into an output constraint. */
4991 char *p = xstrdup (constraint);
4992 p[0] = '=';
4993 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
4995 /* And add a matching input constraint. */
4996 if (allows_reg)
4998 sprintf (buf, "%d", i);
5000 /* If there are multiple alternatives in the constraint,
5001 handle each of them individually. Those that allow register
5002 will be replaced with operand number, the others will stay
5003 unchanged. */
5004 if (strchr (p, ',') != NULL)
5006 size_t len = 0, buflen = strlen (buf);
5007 char *beg, *end, *str, *dst;
5009 for (beg = p + 1;;)
5011 end = strchr (beg, ',');
5012 if (end == NULL)
5013 end = strchr (beg, '\0');
5014 if ((size_t) (end - beg) < buflen)
5015 len += buflen + 1;
5016 else
5017 len += end - beg + 1;
5018 if (*end)
5019 beg = end + 1;
5020 else
5021 break;
5024 str = (char *) alloca (len);
5025 for (beg = p + 1, dst = str;;)
5027 const char *tem;
5028 bool mem_p, reg_p, inout_p;
5030 end = strchr (beg, ',');
5031 if (end)
5032 *end = '\0';
5033 beg[-1] = '=';
5034 tem = beg - 1;
5035 parse_output_constraint (&tem, i, 0, 0,
5036 &mem_p, &reg_p, &inout_p);
5037 if (dst != str)
5038 *dst++ = ',';
5039 if (reg_p)
5041 memcpy (dst, buf, buflen);
5042 dst += buflen;
5044 else
5046 if (end)
5047 len = end - beg;
5048 else
5049 len = strlen (beg);
5050 memcpy (dst, beg, len);
5051 dst += len;
5053 if (end)
5054 beg = end + 1;
5055 else
5056 break;
5058 *dst = '\0';
5059 input = build_string (dst - str, str);
5061 else
5062 input = build_string (strlen (buf), buf);
5064 else
5065 input = build_string (constraint_len - 1, constraint + 1);
5067 free (p);
5069 input = build_tree_list (build_tree_list (NULL_TREE, input),
5070 unshare_expr (TREE_VALUE (link)));
5071 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5075 link_next = NULL_TREE;
5076 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5078 link_next = TREE_CHAIN (link);
5079 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5080 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5081 oconstraints, &allows_mem, &allows_reg);
5083 /* If we can't make copies, we can only accept memory. */
5084 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5086 if (allows_mem)
5087 allows_reg = 0;
5088 else
5090 error ("impossible constraint in %<asm%>");
5091 error ("non-memory input %d must stay in memory", i);
5092 return GS_ERROR;
5096 /* If the operand is a memory input, it should be an lvalue. */
5097 if (!allows_reg && allows_mem)
5099 tree inputv = TREE_VALUE (link);
5100 STRIP_NOPS (inputv);
5101 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5102 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5103 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5104 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5105 TREE_VALUE (link) = error_mark_node;
5106 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5107 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5108 mark_addressable (TREE_VALUE (link));
5109 if (tret == GS_ERROR)
5111 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5112 input_location = EXPR_LOCATION (TREE_VALUE (link));
5113 error ("memory input %d is not directly addressable", i);
5114 ret = tret;
5117 else
5119 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5120 is_gimple_asm_val, fb_rvalue);
5121 if (tret == GS_ERROR)
5122 ret = tret;
5125 TREE_CHAIN (link) = NULL_TREE;
5126 VEC_safe_push (tree, gc, inputs, link);
5129 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5130 VEC_safe_push (tree, gc, clobbers, link);
5132 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5133 VEC_safe_push (tree, gc, labels, link);
5135 /* Do not add ASMs with errors to the gimple IL stream. */
5136 if (ret != GS_ERROR)
5138 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5139 inputs, outputs, clobbers, labels);
5141 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5142 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5144 gimplify_seq_add_stmt (pre_p, stmt);
5147 return ret;
5150 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5151 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5152 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5153 return to this function.
5155 FIXME should we complexify the prequeue handling instead? Or use flags
5156 for all the cleanups and let the optimizer tighten them up? The current
5157 code seems pretty fragile; it will break on a cleanup within any
5158 non-conditional nesting. But any such nesting would be broken, anyway;
5159 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5160 and continues out of it. We can do that at the RTL level, though, so
5161 having an optimizer to tighten up try/finally regions would be a Good
5162 Thing. */
5164 static enum gimplify_status
5165 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5167 gimple_stmt_iterator iter;
5168 gimple_seq body_sequence = NULL;
5170 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5172 /* We only care about the number of conditions between the innermost
5173 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5174 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5175 int old_conds = gimplify_ctxp->conditions;
5176 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5177 gimplify_ctxp->conditions = 0;
5178 gimplify_ctxp->conditional_cleanups = NULL;
5180 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5182 gimplify_ctxp->conditions = old_conds;
5183 gimplify_ctxp->conditional_cleanups = old_cleanups;
5185 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5187 gimple wce = gsi_stmt (iter);
5189 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5191 if (gsi_one_before_end_p (iter))
5193 /* Note that gsi_insert_seq_before and gsi_remove do not
5194 scan operands, unlike some other sequence mutators. */
5195 if (!gimple_wce_cleanup_eh_only (wce))
5196 gsi_insert_seq_before_without_update (&iter,
5197 gimple_wce_cleanup (wce),
5198 GSI_SAME_STMT);
5199 gsi_remove (&iter, true);
5200 break;
5202 else
5204 gimple gtry;
5205 gimple_seq seq;
5206 enum gimple_try_flags kind;
5208 if (gimple_wce_cleanup_eh_only (wce))
5209 kind = GIMPLE_TRY_CATCH;
5210 else
5211 kind = GIMPLE_TRY_FINALLY;
5212 seq = gsi_split_seq_after (iter);
5214 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5215 /* Do not use gsi_replace here, as it may scan operands.
5216 We want to do a simple structural modification only. */
5217 *gsi_stmt_ptr (&iter) = gtry;
5218 iter = gsi_start (seq);
5221 else
5222 gsi_next (&iter);
5225 gimplify_seq_add_seq (pre_p, body_sequence);
5226 if (temp)
5228 *expr_p = temp;
5229 return GS_OK;
5231 else
5233 *expr_p = NULL;
5234 return GS_ALL_DONE;
5238 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5239 is the cleanup action required. EH_ONLY is true if the cleanup should
5240 only be executed if an exception is thrown, not on normal exit. */
5242 static void
5243 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5245 gimple wce;
5246 gimple_seq cleanup_stmts = NULL;
5248 /* Errors can result in improperly nested cleanups. Which results in
5249 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5250 if (seen_error ())
5251 return;
5253 if (gimple_conditional_context ())
5255 /* If we're in a conditional context, this is more complex. We only
5256 want to run the cleanup if we actually ran the initialization that
5257 necessitates it, but we want to run it after the end of the
5258 conditional context. So we wrap the try/finally around the
5259 condition and use a flag to determine whether or not to actually
5260 run the destructor. Thus
5262 test ? f(A()) : 0
5264 becomes (approximately)
5266 flag = 0;
5267 try {
5268 if (test) { A::A(temp); flag = 1; val = f(temp); }
5269 else { val = 0; }
5270 } finally {
5271 if (flag) A::~A(temp);
5275 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5276 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5277 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5279 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5280 gimplify_stmt (&cleanup, &cleanup_stmts);
5281 wce = gimple_build_wce (cleanup_stmts);
5283 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5284 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5285 gimplify_seq_add_stmt (pre_p, ftrue);
5287 /* Because of this manipulation, and the EH edges that jump
5288 threading cannot redirect, the temporary (VAR) will appear
5289 to be used uninitialized. Don't warn. */
5290 TREE_NO_WARNING (var) = 1;
5292 else
5294 gimplify_stmt (&cleanup, &cleanup_stmts);
5295 wce = gimple_build_wce (cleanup_stmts);
5296 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5297 gimplify_seq_add_stmt (pre_p, wce);
5301 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5303 static enum gimplify_status
5304 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5306 tree targ = *expr_p;
5307 tree temp = TARGET_EXPR_SLOT (targ);
5308 tree init = TARGET_EXPR_INITIAL (targ);
5309 enum gimplify_status ret;
5311 if (init)
5313 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5314 to the temps list. Handle also variable length TARGET_EXPRs. */
5315 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5317 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5318 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5319 gimplify_vla_decl (temp, pre_p);
5321 else
5322 gimple_add_tmp_var (temp);
5324 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5325 expression is supposed to initialize the slot. */
5326 if (VOID_TYPE_P (TREE_TYPE (init)))
5327 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5328 else
5330 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5331 init = init_expr;
5332 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5333 init = NULL;
5334 ggc_free (init_expr);
5336 if (ret == GS_ERROR)
5338 /* PR c++/28266 Make sure this is expanded only once. */
5339 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5340 return GS_ERROR;
5342 if (init)
5343 gimplify_and_add (init, pre_p);
5345 /* If needed, push the cleanup for the temp. */
5346 if (TARGET_EXPR_CLEANUP (targ))
5347 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5348 CLEANUP_EH_ONLY (targ), pre_p);
5350 /* Only expand this once. */
5351 TREE_OPERAND (targ, 3) = init;
5352 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5354 else
5355 /* We should have expanded this before. */
5356 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5358 *expr_p = temp;
5359 return GS_OK;
5362 /* Gimplification of expression trees. */
5364 /* Gimplify an expression which appears at statement context. The
5365 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5366 NULL, a new sequence is allocated.
5368 Return true if we actually added a statement to the queue. */
5370 bool
5371 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5373 gimple_seq_node last;
5375 if (!*seq_p)
5376 *seq_p = gimple_seq_alloc ();
5378 last = gimple_seq_last (*seq_p);
5379 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5380 return last != gimple_seq_last (*seq_p);
5384 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5385 to CTX. If entries already exist, force them to be some flavor of private.
5386 If there is no enclosing parallel, do nothing. */
5388 void
5389 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5391 splay_tree_node n;
5393 if (decl == NULL || !DECL_P (decl))
5394 return;
5398 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5399 if (n != NULL)
5401 if (n->value & GOVD_SHARED)
5402 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5403 else
5404 return;
5406 else if (ctx->region_type != ORT_WORKSHARE)
5407 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5409 ctx = ctx->outer_context;
5411 while (ctx);
5414 /* Similarly for each of the type sizes of TYPE. */
5416 static void
5417 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5419 if (type == NULL || type == error_mark_node)
5420 return;
5421 type = TYPE_MAIN_VARIANT (type);
5423 if (pointer_set_insert (ctx->privatized_types, type))
5424 return;
5426 switch (TREE_CODE (type))
5428 case INTEGER_TYPE:
5429 case ENUMERAL_TYPE:
5430 case BOOLEAN_TYPE:
5431 case REAL_TYPE:
5432 case FIXED_POINT_TYPE:
5433 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5434 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5435 break;
5437 case ARRAY_TYPE:
5438 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5439 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5440 break;
5442 case RECORD_TYPE:
5443 case UNION_TYPE:
5444 case QUAL_UNION_TYPE:
5446 tree field;
5447 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5448 if (TREE_CODE (field) == FIELD_DECL)
5450 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5451 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5454 break;
5456 case POINTER_TYPE:
5457 case REFERENCE_TYPE:
5458 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5459 break;
5461 default:
5462 break;
5465 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5466 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5467 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5470 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5472 static void
5473 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5475 splay_tree_node n;
5476 unsigned int nflags;
5477 tree t;
5479 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
5480 return;
5482 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5483 there are constructors involved somewhere. */
5484 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5485 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5486 flags |= GOVD_SEEN;
5488 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5489 if (n != NULL)
5491 /* We shouldn't be re-adding the decl with the same data
5492 sharing class. */
5493 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5494 /* The only combination of data sharing classes we should see is
5495 FIRSTPRIVATE and LASTPRIVATE. */
5496 nflags = n->value | flags;
5497 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5498 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5499 n->value = nflags;
5500 return;
5503 /* When adding a variable-sized variable, we have to handle all sorts
5504 of additional bits of data: the pointer replacement variable, and
5505 the parameters of the type. */
5506 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5508 /* Add the pointer replacement variable as PRIVATE if the variable
5509 replacement is private, else FIRSTPRIVATE since we'll need the
5510 address of the original variable either for SHARED, or for the
5511 copy into or out of the context. */
5512 if (!(flags & GOVD_LOCAL))
5514 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5515 nflags |= flags & GOVD_SEEN;
5516 t = DECL_VALUE_EXPR (decl);
5517 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5518 t = TREE_OPERAND (t, 0);
5519 gcc_assert (DECL_P (t));
5520 omp_add_variable (ctx, t, nflags);
5523 /* Add all of the variable and type parameters (which should have
5524 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5525 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5526 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5527 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5529 /* The variable-sized variable itself is never SHARED, only some form
5530 of PRIVATE. The sharing would take place via the pointer variable
5531 which we remapped above. */
5532 if (flags & GOVD_SHARED)
5533 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5534 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5536 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5537 alloca statement we generate for the variable, so make sure it
5538 is available. This isn't automatically needed for the SHARED
5539 case, since we won't be allocating local storage then.
5540 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5541 in this case omp_notice_variable will be called later
5542 on when it is gimplified. */
5543 else if (! (flags & GOVD_LOCAL)
5544 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5545 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5547 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5549 gcc_assert ((flags & GOVD_LOCAL) == 0);
5550 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5552 /* Similar to the direct variable sized case above, we'll need the
5553 size of references being privatized. */
5554 if ((flags & GOVD_SHARED) == 0)
5556 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5557 if (TREE_CODE (t) != INTEGER_CST)
5558 omp_notice_variable (ctx, t, true);
5562 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5565 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5566 This just prints out diagnostics about threadprivate variable uses
5567 in untied tasks. If DECL2 is non-NULL, prevent this warning
5568 on that variable. */
5570 static bool
5571 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5572 tree decl2)
5574 splay_tree_node n;
5576 if (ctx->region_type != ORT_UNTIED_TASK)
5577 return false;
5578 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5579 if (n == NULL)
5581 error ("threadprivate variable %qE used in untied task", DECL_NAME (decl));
5582 error_at (ctx->location, "enclosing task");
5583 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5585 if (decl2)
5586 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5587 return false;
5590 /* Record the fact that DECL was used within the OpenMP context CTX.
5591 IN_CODE is true when real code uses DECL, and false when we should
5592 merely emit default(none) errors. Return true if DECL is going to
5593 be remapped and thus DECL shouldn't be gimplified into its
5594 DECL_VALUE_EXPR (if any). */
5596 static bool
5597 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5599 splay_tree_node n;
5600 unsigned flags = in_code ? GOVD_SEEN : 0;
5601 bool ret = false, shared;
5603 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
5604 return false;
5606 /* Threadprivate variables are predetermined. */
5607 if (is_global_var (decl))
5609 if (DECL_THREAD_LOCAL_P (decl))
5610 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5612 if (DECL_HAS_VALUE_EXPR_P (decl))
5614 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5616 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5617 return omp_notice_threadprivate_variable (ctx, decl, value);
5621 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5622 if (n == NULL)
5624 enum omp_clause_default_kind default_kind, kind;
5625 struct gimplify_omp_ctx *octx;
5627 if (ctx->region_type == ORT_WORKSHARE)
5628 goto do_outer;
5630 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5631 remapped firstprivate instead of shared. To some extent this is
5632 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5633 default_kind = ctx->default_kind;
5634 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5635 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5636 default_kind = kind;
5638 switch (default_kind)
5640 case OMP_CLAUSE_DEFAULT_NONE:
5641 error ("%qE not specified in enclosing parallel",
5642 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5643 if ((ctx->region_type & ORT_TASK) != 0)
5644 error_at (ctx->location, "enclosing task");
5645 else
5646 error_at (ctx->location, "enclosing parallel");
5647 /* FALLTHRU */
5648 case OMP_CLAUSE_DEFAULT_SHARED:
5649 flags |= GOVD_SHARED;
5650 break;
5651 case OMP_CLAUSE_DEFAULT_PRIVATE:
5652 flags |= GOVD_PRIVATE;
5653 break;
5654 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5655 flags |= GOVD_FIRSTPRIVATE;
5656 break;
5657 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5658 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5659 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5660 if (ctx->outer_context)
5661 omp_notice_variable (ctx->outer_context, decl, in_code);
5662 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5664 splay_tree_node n2;
5666 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5667 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5669 flags |= GOVD_FIRSTPRIVATE;
5670 break;
5672 if ((octx->region_type & ORT_PARALLEL) != 0)
5673 break;
5675 if (flags & GOVD_FIRSTPRIVATE)
5676 break;
5677 if (octx == NULL
5678 && (TREE_CODE (decl) == PARM_DECL
5679 || (!is_global_var (decl)
5680 && DECL_CONTEXT (decl) == current_function_decl)))
5682 flags |= GOVD_FIRSTPRIVATE;
5683 break;
5685 flags |= GOVD_SHARED;
5686 break;
5687 default:
5688 gcc_unreachable ();
5691 if ((flags & GOVD_PRIVATE)
5692 && lang_hooks.decls.omp_private_outer_ref (decl))
5693 flags |= GOVD_PRIVATE_OUTER_REF;
5695 omp_add_variable (ctx, decl, flags);
5697 shared = (flags & GOVD_SHARED) != 0;
5698 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5699 goto do_outer;
5702 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
5703 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
5704 && DECL_SIZE (decl)
5705 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5707 splay_tree_node n2;
5708 tree t = DECL_VALUE_EXPR (decl);
5709 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5710 t = TREE_OPERAND (t, 0);
5711 gcc_assert (DECL_P (t));
5712 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
5713 n2->value |= GOVD_SEEN;
5716 shared = ((flags | n->value) & GOVD_SHARED) != 0;
5717 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
5719 /* If nothing changed, there's nothing left to do. */
5720 if ((n->value & flags) == flags)
5721 return ret;
5722 flags |= n->value;
5723 n->value = flags;
5725 do_outer:
5726 /* If the variable is private in the current context, then we don't
5727 need to propagate anything to an outer context. */
5728 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
5729 return ret;
5730 if (ctx->outer_context
5731 && omp_notice_variable (ctx->outer_context, decl, in_code))
5732 return true;
5733 return ret;
5736 /* Verify that DECL is private within CTX. If there's specific information
5737 to the contrary in the innermost scope, generate an error. */
5739 static bool
5740 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
5742 splay_tree_node n;
5744 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5745 if (n != NULL)
5747 if (n->value & GOVD_SHARED)
5749 if (ctx == gimplify_omp_ctxp)
5751 error ("iteration variable %qE should be private",
5752 DECL_NAME (decl));
5753 n->value = GOVD_PRIVATE;
5754 return true;
5756 else
5757 return false;
5759 else if ((n->value & GOVD_EXPLICIT) != 0
5760 && (ctx == gimplify_omp_ctxp
5761 || (ctx->region_type == ORT_COMBINED_PARALLEL
5762 && gimplify_omp_ctxp->outer_context == ctx)))
5764 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
5765 error ("iteration variable %qE should not be firstprivate",
5766 DECL_NAME (decl));
5767 else if ((n->value & GOVD_REDUCTION) != 0)
5768 error ("iteration variable %qE should not be reduction",
5769 DECL_NAME (decl));
5771 return (ctx == gimplify_omp_ctxp
5772 || (ctx->region_type == ORT_COMBINED_PARALLEL
5773 && gimplify_omp_ctxp->outer_context == ctx));
5776 if (ctx->region_type != ORT_WORKSHARE)
5777 return false;
5778 else if (ctx->outer_context)
5779 return omp_is_private (ctx->outer_context, decl);
5780 return false;
5783 /* Return true if DECL is private within a parallel region
5784 that binds to the current construct's context or in parallel
5785 region's REDUCTION clause. */
5787 static bool
5788 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
5790 splay_tree_node n;
5794 ctx = ctx->outer_context;
5795 if (ctx == NULL)
5796 return !(is_global_var (decl)
5797 /* References might be private, but might be shared too. */
5798 || lang_hooks.decls.omp_privatize_by_reference (decl));
5800 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
5801 if (n != NULL)
5802 return (n->value & GOVD_SHARED) == 0;
5804 while (ctx->region_type == ORT_WORKSHARE);
5805 return false;
5808 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
5809 and previous omp contexts. */
5811 static void
5812 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
5813 enum omp_region_type region_type)
5815 struct gimplify_omp_ctx *ctx, *outer_ctx;
5816 struct gimplify_ctx gctx;
5817 tree c;
5819 ctx = new_omp_context (region_type);
5820 outer_ctx = ctx->outer_context;
5822 while ((c = *list_p) != NULL)
5824 bool remove = false;
5825 bool notice_outer = true;
5826 const char *check_non_private = NULL;
5827 unsigned int flags;
5828 tree decl;
5830 switch (OMP_CLAUSE_CODE (c))
5832 case OMP_CLAUSE_PRIVATE:
5833 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
5834 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
5836 flags |= GOVD_PRIVATE_OUTER_REF;
5837 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
5839 else
5840 notice_outer = false;
5841 goto do_add;
5842 case OMP_CLAUSE_SHARED:
5843 flags = GOVD_SHARED | GOVD_EXPLICIT;
5844 goto do_add;
5845 case OMP_CLAUSE_FIRSTPRIVATE:
5846 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
5847 check_non_private = "firstprivate";
5848 goto do_add;
5849 case OMP_CLAUSE_LASTPRIVATE:
5850 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
5851 check_non_private = "lastprivate";
5852 goto do_add;
5853 case OMP_CLAUSE_REDUCTION:
5854 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
5855 check_non_private = "reduction";
5856 goto do_add;
5858 do_add:
5859 decl = OMP_CLAUSE_DECL (c);
5860 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
5862 remove = true;
5863 break;
5865 omp_add_variable (ctx, decl, flags);
5866 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
5867 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
5869 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
5870 GOVD_LOCAL | GOVD_SEEN);
5871 gimplify_omp_ctxp = ctx;
5872 push_gimplify_context (&gctx);
5874 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = gimple_seq_alloc ();
5875 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = gimple_seq_alloc ();
5877 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
5878 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
5879 pop_gimplify_context
5880 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
5881 push_gimplify_context (&gctx);
5882 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
5883 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
5884 pop_gimplify_context
5885 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
5886 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
5887 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
5889 gimplify_omp_ctxp = outer_ctx;
5891 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
5892 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
5894 gimplify_omp_ctxp = ctx;
5895 push_gimplify_context (&gctx);
5896 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
5898 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
5899 NULL, NULL);
5900 TREE_SIDE_EFFECTS (bind) = 1;
5901 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
5902 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
5904 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
5905 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
5906 pop_gimplify_context
5907 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
5908 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
5910 gimplify_omp_ctxp = outer_ctx;
5912 if (notice_outer)
5913 goto do_notice;
5914 break;
5916 case OMP_CLAUSE_COPYIN:
5917 case OMP_CLAUSE_COPYPRIVATE:
5918 decl = OMP_CLAUSE_DECL (c);
5919 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
5921 remove = true;
5922 break;
5924 do_notice:
5925 if (outer_ctx)
5926 omp_notice_variable (outer_ctx, decl, true);
5927 if (check_non_private
5928 && region_type == ORT_WORKSHARE
5929 && omp_check_private (ctx, decl))
5931 error ("%s variable %qE is private in outer context",
5932 check_non_private, DECL_NAME (decl));
5933 remove = true;
5935 break;
5937 case OMP_CLAUSE_IF:
5938 OMP_CLAUSE_OPERAND (c, 0)
5939 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
5940 /* Fall through. */
5942 case OMP_CLAUSE_SCHEDULE:
5943 case OMP_CLAUSE_NUM_THREADS:
5944 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
5945 is_gimple_val, fb_rvalue) == GS_ERROR)
5946 remove = true;
5947 break;
5949 case OMP_CLAUSE_NOWAIT:
5950 case OMP_CLAUSE_ORDERED:
5951 case OMP_CLAUSE_UNTIED:
5952 case OMP_CLAUSE_COLLAPSE:
5953 break;
5955 case OMP_CLAUSE_DEFAULT:
5956 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
5957 break;
5959 default:
5960 gcc_unreachable ();
5963 if (remove)
5964 *list_p = OMP_CLAUSE_CHAIN (c);
5965 else
5966 list_p = &OMP_CLAUSE_CHAIN (c);
5969 gimplify_omp_ctxp = ctx;
5972 /* For all variables that were not actually used within the context,
5973 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
5975 static int
5976 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
5978 tree *list_p = (tree *) data;
5979 tree decl = (tree) n->key;
5980 unsigned flags = n->value;
5981 enum omp_clause_code code;
5982 tree clause;
5983 bool private_debug;
5985 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
5986 return 0;
5987 if ((flags & GOVD_SEEN) == 0)
5988 return 0;
5989 if (flags & GOVD_DEBUG_PRIVATE)
5991 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
5992 private_debug = true;
5994 else
5995 private_debug
5996 = lang_hooks.decls.omp_private_debug_clause (decl,
5997 !!(flags & GOVD_SHARED));
5998 if (private_debug)
5999 code = OMP_CLAUSE_PRIVATE;
6000 else if (flags & GOVD_SHARED)
6002 if (is_global_var (decl))
6004 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6005 while (ctx != NULL)
6007 splay_tree_node on
6008 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6009 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6010 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6011 break;
6012 ctx = ctx->outer_context;
6014 if (ctx == NULL)
6015 return 0;
6017 code = OMP_CLAUSE_SHARED;
6019 else if (flags & GOVD_PRIVATE)
6020 code = OMP_CLAUSE_PRIVATE;
6021 else if (flags & GOVD_FIRSTPRIVATE)
6022 code = OMP_CLAUSE_FIRSTPRIVATE;
6023 else
6024 gcc_unreachable ();
6026 clause = build_omp_clause (input_location, code);
6027 OMP_CLAUSE_DECL (clause) = decl;
6028 OMP_CLAUSE_CHAIN (clause) = *list_p;
6029 if (private_debug)
6030 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6031 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6032 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6033 *list_p = clause;
6034 lang_hooks.decls.omp_finish_clause (clause);
6036 return 0;
6039 static void
6040 gimplify_adjust_omp_clauses (tree *list_p)
6042 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6043 tree c, decl;
6045 while ((c = *list_p) != NULL)
6047 splay_tree_node n;
6048 bool remove = false;
6050 switch (OMP_CLAUSE_CODE (c))
6052 case OMP_CLAUSE_PRIVATE:
6053 case OMP_CLAUSE_SHARED:
6054 case OMP_CLAUSE_FIRSTPRIVATE:
6055 decl = OMP_CLAUSE_DECL (c);
6056 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6057 remove = !(n->value & GOVD_SEEN);
6058 if (! remove)
6060 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6061 if ((n->value & GOVD_DEBUG_PRIVATE)
6062 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6064 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6065 || ((n->value & GOVD_DATA_SHARE_CLASS)
6066 == GOVD_PRIVATE));
6067 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6068 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6071 break;
6073 case OMP_CLAUSE_LASTPRIVATE:
6074 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6075 accurately reflect the presence of a FIRSTPRIVATE clause. */
6076 decl = OMP_CLAUSE_DECL (c);
6077 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6078 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6079 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6080 break;
6082 case OMP_CLAUSE_REDUCTION:
6083 case OMP_CLAUSE_COPYIN:
6084 case OMP_CLAUSE_COPYPRIVATE:
6085 case OMP_CLAUSE_IF:
6086 case OMP_CLAUSE_NUM_THREADS:
6087 case OMP_CLAUSE_SCHEDULE:
6088 case OMP_CLAUSE_NOWAIT:
6089 case OMP_CLAUSE_ORDERED:
6090 case OMP_CLAUSE_DEFAULT:
6091 case OMP_CLAUSE_UNTIED:
6092 case OMP_CLAUSE_COLLAPSE:
6093 break;
6095 default:
6096 gcc_unreachable ();
6099 if (remove)
6100 *list_p = OMP_CLAUSE_CHAIN (c);
6101 else
6102 list_p = &OMP_CLAUSE_CHAIN (c);
6105 /* Add in any implicit data sharing. */
6106 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6108 gimplify_omp_ctxp = ctx->outer_context;
6109 delete_omp_context (ctx);
6112 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6113 gimplification of the body, as well as scanning the body for used
6114 variables. We need to do this scan now, because variable-sized
6115 decls will be decomposed during gimplification. */
6117 static void
6118 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6120 tree expr = *expr_p;
6121 gimple g;
6122 gimple_seq body = NULL;
6123 struct gimplify_ctx gctx;
6125 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6126 OMP_PARALLEL_COMBINED (expr)
6127 ? ORT_COMBINED_PARALLEL
6128 : ORT_PARALLEL);
6130 push_gimplify_context (&gctx);
6132 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6133 if (gimple_code (g) == GIMPLE_BIND)
6134 pop_gimplify_context (g);
6135 else
6136 pop_gimplify_context (NULL);
6138 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6140 g = gimple_build_omp_parallel (body,
6141 OMP_PARALLEL_CLAUSES (expr),
6142 NULL_TREE, NULL_TREE);
6143 if (OMP_PARALLEL_COMBINED (expr))
6144 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6145 gimplify_seq_add_stmt (pre_p, g);
6146 *expr_p = NULL_TREE;
6149 /* Gimplify the contents of an OMP_TASK statement. This involves
6150 gimplification of the body, as well as scanning the body for used
6151 variables. We need to do this scan now, because variable-sized
6152 decls will be decomposed during gimplification. */
6154 static void
6155 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6157 tree expr = *expr_p;
6158 gimple g;
6159 gimple_seq body = NULL;
6160 struct gimplify_ctx gctx;
6162 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6163 find_omp_clause (OMP_TASK_CLAUSES (expr),
6164 OMP_CLAUSE_UNTIED)
6165 ? ORT_UNTIED_TASK : ORT_TASK);
6167 push_gimplify_context (&gctx);
6169 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6170 if (gimple_code (g) == GIMPLE_BIND)
6171 pop_gimplify_context (g);
6172 else
6173 pop_gimplify_context (NULL);
6175 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6177 g = gimple_build_omp_task (body,
6178 OMP_TASK_CLAUSES (expr),
6179 NULL_TREE, NULL_TREE,
6180 NULL_TREE, NULL_TREE, NULL_TREE);
6181 gimplify_seq_add_stmt (pre_p, g);
6182 *expr_p = NULL_TREE;
6185 /* Gimplify the gross structure of an OMP_FOR statement. */
6187 static enum gimplify_status
6188 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6190 tree for_stmt, decl, var, t;
6191 enum gimplify_status ret = GS_ALL_DONE;
6192 enum gimplify_status tret;
6193 gimple gfor;
6194 gimple_seq for_body, for_pre_body;
6195 int i;
6197 for_stmt = *expr_p;
6199 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6200 ORT_WORKSHARE);
6202 /* Handle OMP_FOR_INIT. */
6203 for_pre_body = NULL;
6204 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6205 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6207 for_body = gimple_seq_alloc ();
6208 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6209 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6210 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6211 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6212 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6214 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6215 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6216 decl = TREE_OPERAND (t, 0);
6217 gcc_assert (DECL_P (decl));
6218 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6219 || POINTER_TYPE_P (TREE_TYPE (decl)));
6221 /* Make sure the iteration variable is private. */
6222 if (omp_is_private (gimplify_omp_ctxp, decl))
6223 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6224 else
6225 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6227 /* If DECL is not a gimple register, create a temporary variable to act
6228 as an iteration counter. This is valid, since DECL cannot be
6229 modified in the body of the loop. */
6230 if (!is_gimple_reg (decl))
6232 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6233 TREE_OPERAND (t, 0) = var;
6235 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6237 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6239 else
6240 var = decl;
6242 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6243 is_gimple_val, fb_rvalue);
6244 ret = MIN (ret, tret);
6245 if (ret == GS_ERROR)
6246 return ret;
6248 /* Handle OMP_FOR_COND. */
6249 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6250 gcc_assert (COMPARISON_CLASS_P (t));
6251 gcc_assert (TREE_OPERAND (t, 0) == decl);
6253 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6254 is_gimple_val, fb_rvalue);
6255 ret = MIN (ret, tret);
6257 /* Handle OMP_FOR_INCR. */
6258 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6259 switch (TREE_CODE (t))
6261 case PREINCREMENT_EXPR:
6262 case POSTINCREMENT_EXPR:
6263 t = build_int_cst (TREE_TYPE (decl), 1);
6264 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6265 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6266 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6267 break;
6269 case PREDECREMENT_EXPR:
6270 case POSTDECREMENT_EXPR:
6271 t = build_int_cst (TREE_TYPE (decl), -1);
6272 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6273 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6274 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6275 break;
6277 case MODIFY_EXPR:
6278 gcc_assert (TREE_OPERAND (t, 0) == decl);
6279 TREE_OPERAND (t, 0) = var;
6281 t = TREE_OPERAND (t, 1);
6282 switch (TREE_CODE (t))
6284 case PLUS_EXPR:
6285 if (TREE_OPERAND (t, 1) == decl)
6287 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6288 TREE_OPERAND (t, 0) = var;
6289 break;
6292 /* Fallthru. */
6293 case MINUS_EXPR:
6294 case POINTER_PLUS_EXPR:
6295 gcc_assert (TREE_OPERAND (t, 0) == decl);
6296 TREE_OPERAND (t, 0) = var;
6297 break;
6298 default:
6299 gcc_unreachable ();
6302 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6303 is_gimple_val, fb_rvalue);
6304 ret = MIN (ret, tret);
6305 break;
6307 default:
6308 gcc_unreachable ();
6311 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6313 tree c;
6314 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6315 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6316 && OMP_CLAUSE_DECL (c) == decl
6317 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6319 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6320 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6321 gcc_assert (TREE_OPERAND (t, 0) == var);
6322 t = TREE_OPERAND (t, 1);
6323 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6324 || TREE_CODE (t) == MINUS_EXPR
6325 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6326 gcc_assert (TREE_OPERAND (t, 0) == var);
6327 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6328 TREE_OPERAND (t, 1));
6329 gimplify_assign (decl, t,
6330 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6335 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6337 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6339 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6340 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6341 for_pre_body);
6343 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6345 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6346 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6347 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6348 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6349 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6350 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6351 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6352 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6355 gimplify_seq_add_stmt (pre_p, gfor);
6356 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6359 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6360 In particular, OMP_SECTIONS and OMP_SINGLE. */
6362 static void
6363 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6365 tree expr = *expr_p;
6366 gimple stmt;
6367 gimple_seq body = NULL;
6369 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6370 gimplify_and_add (OMP_BODY (expr), &body);
6371 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6373 if (TREE_CODE (expr) == OMP_SECTIONS)
6374 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6375 else if (TREE_CODE (expr) == OMP_SINGLE)
6376 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6377 else
6378 gcc_unreachable ();
6380 gimplify_seq_add_stmt (pre_p, stmt);
6383 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6384 stabilized the lhs of the atomic operation as *ADDR. Return true if
6385 EXPR is this stabilized form. */
6387 static bool
6388 goa_lhs_expr_p (tree expr, tree addr)
6390 /* Also include casts to other type variants. The C front end is fond
6391 of adding these for e.g. volatile variables. This is like
6392 STRIP_TYPE_NOPS but includes the main variant lookup. */
6393 STRIP_USELESS_TYPE_CONVERSION (expr);
6395 if (TREE_CODE (expr) == INDIRECT_REF)
6397 expr = TREE_OPERAND (expr, 0);
6398 while (expr != addr
6399 && (CONVERT_EXPR_P (expr)
6400 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6401 && TREE_CODE (expr) == TREE_CODE (addr)
6402 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6404 expr = TREE_OPERAND (expr, 0);
6405 addr = TREE_OPERAND (addr, 0);
6407 if (expr == addr)
6408 return true;
6409 return (TREE_CODE (addr) == ADDR_EXPR
6410 && TREE_CODE (expr) == ADDR_EXPR
6411 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6413 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6414 return true;
6415 return false;
6418 /* Walk *EXPR_P and replace
6419 appearances of *LHS_ADDR with LHS_VAR. If an expression does not involve
6420 the lhs, evaluate it into a temporary. Return 1 if the lhs appeared as
6421 a subexpression, 0 if it did not, or -1 if an error was encountered. */
6423 static int
6424 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6425 tree lhs_var)
6427 tree expr = *expr_p;
6428 int saw_lhs;
6430 if (goa_lhs_expr_p (expr, lhs_addr))
6432 *expr_p = lhs_var;
6433 return 1;
6435 if (is_gimple_val (expr))
6436 return 0;
6438 saw_lhs = 0;
6439 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6441 case tcc_binary:
6442 case tcc_comparison:
6443 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6444 lhs_var);
6445 case tcc_unary:
6446 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6447 lhs_var);
6448 break;
6449 case tcc_expression:
6450 switch (TREE_CODE (expr))
6452 case TRUTH_ANDIF_EXPR:
6453 case TRUTH_ORIF_EXPR:
6454 case TRUTH_AND_EXPR:
6455 case TRUTH_OR_EXPR:
6456 case TRUTH_XOR_EXPR:
6457 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6458 lhs_addr, lhs_var);
6459 case TRUTH_NOT_EXPR:
6460 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6461 lhs_addr, lhs_var);
6462 break;
6463 default:
6464 break;
6466 break;
6467 default:
6468 break;
6471 if (saw_lhs == 0)
6473 enum gimplify_status gs;
6474 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6475 if (gs != GS_ALL_DONE)
6476 saw_lhs = -1;
6479 return saw_lhs;
6483 /* Gimplify an OMP_ATOMIC statement. */
6485 static enum gimplify_status
6486 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6488 tree addr = TREE_OPERAND (*expr_p, 0);
6489 tree rhs = TREE_OPERAND (*expr_p, 1);
6490 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6491 tree tmp_load;
6493 tmp_load = create_tmp_reg (type, NULL);
6494 if (goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6495 return GS_ERROR;
6497 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6498 != GS_ALL_DONE)
6499 return GS_ERROR;
6501 gimplify_seq_add_stmt (pre_p, gimple_build_omp_atomic_load (tmp_load, addr));
6502 if (gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6503 != GS_ALL_DONE)
6504 return GS_ERROR;
6505 gimplify_seq_add_stmt (pre_p, gimple_build_omp_atomic_store (rhs));
6506 *expr_p = NULL;
6508 return GS_ALL_DONE;
6512 /* Converts the GENERIC expression tree *EXPR_P to GIMPLE. If the
6513 expression produces a value to be used as an operand inside a GIMPLE
6514 statement, the value will be stored back in *EXPR_P. This value will
6515 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6516 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6517 emitted in PRE_P and POST_P.
6519 Additionally, this process may overwrite parts of the input
6520 expression during gimplification. Ideally, it should be
6521 possible to do non-destructive gimplification.
6523 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6524 the expression needs to evaluate to a value to be used as
6525 an operand in a GIMPLE statement, this value will be stored in
6526 *EXPR_P on exit. This happens when the caller specifies one
6527 of fb_lvalue or fb_rvalue fallback flags.
6529 PRE_P will contain the sequence of GIMPLE statements corresponding
6530 to the evaluation of EXPR and all the side-effects that must
6531 be executed before the main expression. On exit, the last
6532 statement of PRE_P is the core statement being gimplified. For
6533 instance, when gimplifying 'if (++a)' the last statement in
6534 PRE_P will be 'if (t.1)' where t.1 is the result of
6535 pre-incrementing 'a'.
6537 POST_P will contain the sequence of GIMPLE statements corresponding
6538 to the evaluation of all the side-effects that must be executed
6539 after the main expression. If this is NULL, the post
6540 side-effects are stored at the end of PRE_P.
6542 The reason why the output is split in two is to handle post
6543 side-effects explicitly. In some cases, an expression may have
6544 inner and outer post side-effects which need to be emitted in
6545 an order different from the one given by the recursive
6546 traversal. For instance, for the expression (*p--)++ the post
6547 side-effects of '--' must actually occur *after* the post
6548 side-effects of '++'. However, gimplification will first visit
6549 the inner expression, so if a separate POST sequence was not
6550 used, the resulting sequence would be:
6552 1 t.1 = *p
6553 2 p = p - 1
6554 3 t.2 = t.1 + 1
6555 4 *p = t.2
6557 However, the post-decrement operation in line #2 must not be
6558 evaluated until after the store to *p at line #4, so the
6559 correct sequence should be:
6561 1 t.1 = *p
6562 2 t.2 = t.1 + 1
6563 3 *p = t.2
6564 4 p = p - 1
6566 So, by specifying a separate post queue, it is possible
6567 to emit the post side-effects in the correct order.
6568 If POST_P is NULL, an internal queue will be used. Before
6569 returning to the caller, the sequence POST_P is appended to
6570 the main output sequence PRE_P.
6572 GIMPLE_TEST_F points to a function that takes a tree T and
6573 returns nonzero if T is in the GIMPLE form requested by the
6574 caller. The GIMPLE predicates are in gimple.c.
6576 FALLBACK tells the function what sort of a temporary we want if
6577 gimplification cannot produce an expression that complies with
6578 GIMPLE_TEST_F.
6580 fb_none means that no temporary should be generated
6581 fb_rvalue means that an rvalue is OK to generate
6582 fb_lvalue means that an lvalue is OK to generate
6583 fb_either means that either is OK, but an lvalue is preferable.
6584 fb_mayfail means that gimplification may fail (in which case
6585 GS_ERROR will be returned)
6587 The return value is either GS_ERROR or GS_ALL_DONE, since this
6588 function iterates until EXPR is completely gimplified or an error
6589 occurs. */
6591 enum gimplify_status
6592 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6593 bool (*gimple_test_f) (tree), fallback_t fallback)
6595 tree tmp;
6596 gimple_seq internal_pre = NULL;
6597 gimple_seq internal_post = NULL;
6598 tree save_expr;
6599 bool is_statement;
6600 location_t saved_location;
6601 enum gimplify_status ret;
6602 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6604 save_expr = *expr_p;
6605 if (save_expr == NULL_TREE)
6606 return GS_ALL_DONE;
6608 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
6609 is_statement = gimple_test_f == is_gimple_stmt;
6610 if (is_statement)
6611 gcc_assert (pre_p);
6613 /* Consistency checks. */
6614 if (gimple_test_f == is_gimple_reg)
6615 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
6616 else if (gimple_test_f == is_gimple_val
6617 || gimple_test_f == is_gimple_call_addr
6618 || gimple_test_f == is_gimple_condexpr
6619 || gimple_test_f == is_gimple_mem_rhs
6620 || gimple_test_f == is_gimple_mem_rhs_or_call
6621 || gimple_test_f == is_gimple_reg_rhs
6622 || gimple_test_f == is_gimple_reg_rhs_or_call
6623 || gimple_test_f == is_gimple_asm_val
6624 || gimple_test_f == is_gimple_mem_ref_addr)
6625 gcc_assert (fallback & fb_rvalue);
6626 else if (gimple_test_f == is_gimple_min_lval
6627 || gimple_test_f == is_gimple_lvalue)
6628 gcc_assert (fallback & fb_lvalue);
6629 else if (gimple_test_f == is_gimple_addressable)
6630 gcc_assert (fallback & fb_either);
6631 else if (gimple_test_f == is_gimple_stmt)
6632 gcc_assert (fallback == fb_none);
6633 else
6635 /* We should have recognized the GIMPLE_TEST_F predicate to
6636 know what kind of fallback to use in case a temporary is
6637 needed to hold the value or address of *EXPR_P. */
6638 gcc_unreachable ();
6641 /* We used to check the predicate here and return immediately if it
6642 succeeds. This is wrong; the design is for gimplification to be
6643 idempotent, and for the predicates to only test for valid forms, not
6644 whether they are fully simplified. */
6645 if (pre_p == NULL)
6646 pre_p = &internal_pre;
6648 if (post_p == NULL)
6649 post_p = &internal_post;
6651 /* Remember the last statements added to PRE_P and POST_P. Every
6652 new statement added by the gimplification helpers needs to be
6653 annotated with location information. To centralize the
6654 responsibility, we remember the last statement that had been
6655 added to both queues before gimplifying *EXPR_P. If
6656 gimplification produces new statements in PRE_P and POST_P, those
6657 statements will be annotated with the same location information
6658 as *EXPR_P. */
6659 pre_last_gsi = gsi_last (*pre_p);
6660 post_last_gsi = gsi_last (*post_p);
6662 saved_location = input_location;
6663 if (save_expr != error_mark_node
6664 && EXPR_HAS_LOCATION (*expr_p))
6665 input_location = EXPR_LOCATION (*expr_p);
6667 /* Loop over the specific gimplifiers until the toplevel node
6668 remains the same. */
6671 /* Strip away as many useless type conversions as possible
6672 at the toplevel. */
6673 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
6675 /* Remember the expr. */
6676 save_expr = *expr_p;
6678 /* Die, die, die, my darling. */
6679 if (save_expr == error_mark_node
6680 || (TREE_TYPE (save_expr)
6681 && TREE_TYPE (save_expr) == error_mark_node))
6683 ret = GS_ERROR;
6684 break;
6687 /* Do any language-specific gimplification. */
6688 ret = ((enum gimplify_status)
6689 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
6690 if (ret == GS_OK)
6692 if (*expr_p == NULL_TREE)
6693 break;
6694 if (*expr_p != save_expr)
6695 continue;
6697 else if (ret != GS_UNHANDLED)
6698 break;
6700 /* Make sure that all the cases set 'ret' appropriately. */
6701 ret = GS_UNHANDLED;
6702 switch (TREE_CODE (*expr_p))
6704 /* First deal with the special cases. */
6706 case POSTINCREMENT_EXPR:
6707 case POSTDECREMENT_EXPR:
6708 case PREINCREMENT_EXPR:
6709 case PREDECREMENT_EXPR:
6710 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
6711 fallback != fb_none);
6712 break;
6714 case ARRAY_REF:
6715 case ARRAY_RANGE_REF:
6716 case REALPART_EXPR:
6717 case IMAGPART_EXPR:
6718 case COMPONENT_REF:
6719 case VIEW_CONVERT_EXPR:
6720 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
6721 fallback ? fallback : fb_rvalue);
6722 break;
6724 case COND_EXPR:
6725 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
6727 /* C99 code may assign to an array in a structure value of a
6728 conditional expression, and this has undefined behavior
6729 only on execution, so create a temporary if an lvalue is
6730 required. */
6731 if (fallback == fb_lvalue)
6733 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6734 mark_addressable (*expr_p);
6735 ret = GS_OK;
6737 break;
6739 case CALL_EXPR:
6740 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
6742 /* C99 code may assign to an array in a structure returned
6743 from a function, and this has undefined behavior only on
6744 execution, so create a temporary if an lvalue is
6745 required. */
6746 if (fallback == fb_lvalue)
6748 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6749 mark_addressable (*expr_p);
6750 ret = GS_OK;
6752 break;
6754 case TREE_LIST:
6755 gcc_unreachable ();
6757 case COMPOUND_EXPR:
6758 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
6759 break;
6761 case COMPOUND_LITERAL_EXPR:
6762 ret = gimplify_compound_literal_expr (expr_p, pre_p);
6763 break;
6765 case MODIFY_EXPR:
6766 case INIT_EXPR:
6767 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
6768 fallback != fb_none);
6769 break;
6771 case TRUTH_ANDIF_EXPR:
6772 case TRUTH_ORIF_EXPR:
6773 /* Pass the source location of the outer expression. */
6774 ret = gimplify_boolean_expr (expr_p, saved_location);
6775 break;
6777 case TRUTH_NOT_EXPR:
6778 if (TREE_CODE (TREE_TYPE (*expr_p)) != BOOLEAN_TYPE)
6780 tree type = TREE_TYPE (*expr_p);
6781 *expr_p = fold_convert (type, gimple_boolify (*expr_p));
6782 ret = GS_OK;
6783 break;
6786 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6787 is_gimple_val, fb_rvalue);
6788 recalculate_side_effects (*expr_p);
6789 break;
6791 case ADDR_EXPR:
6792 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
6793 break;
6795 case VA_ARG_EXPR:
6796 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
6797 break;
6799 CASE_CONVERT:
6800 if (IS_EMPTY_STMT (*expr_p))
6802 ret = GS_ALL_DONE;
6803 break;
6806 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
6807 || fallback == fb_none)
6809 /* Just strip a conversion to void (or in void context) and
6810 try again. */
6811 *expr_p = TREE_OPERAND (*expr_p, 0);
6812 ret = GS_OK;
6813 break;
6816 ret = gimplify_conversion (expr_p);
6817 if (ret == GS_ERROR)
6818 break;
6819 if (*expr_p != save_expr)
6820 break;
6821 /* FALLTHRU */
6823 case FIX_TRUNC_EXPR:
6824 /* unary_expr: ... | '(' cast ')' val | ... */
6825 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6826 is_gimple_val, fb_rvalue);
6827 recalculate_side_effects (*expr_p);
6828 break;
6830 case INDIRECT_REF:
6832 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
6833 bool notrap = TREE_THIS_NOTRAP (*expr_p);
6834 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
6836 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
6837 if (*expr_p != save_expr)
6839 ret = GS_OK;
6840 break;
6843 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6844 is_gimple_reg, fb_rvalue);
6845 if (ret == GS_ERROR)
6846 break;
6848 recalculate_side_effects (*expr_p);
6849 *expr_p = fold_build2_loc (input_location, MEM_REF,
6850 TREE_TYPE (*expr_p),
6851 TREE_OPERAND (*expr_p, 0),
6852 build_int_cst (saved_ptr_type, 0));
6853 TREE_THIS_VOLATILE (*expr_p) = volatilep;
6854 TREE_THIS_NOTRAP (*expr_p) = notrap;
6855 ret = GS_OK;
6856 break;
6859 /* We arrive here through the various re-gimplifcation paths. */
6860 case MEM_REF:
6861 /* First try re-folding the whole thing. */
6862 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
6863 TREE_OPERAND (*expr_p, 0),
6864 TREE_OPERAND (*expr_p, 1));
6865 if (tmp)
6867 *expr_p = tmp;
6868 recalculate_side_effects (*expr_p);
6869 ret = GS_OK;
6870 break;
6872 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
6873 is_gimple_mem_ref_addr, fb_rvalue);
6874 if (ret == GS_ERROR)
6875 break;
6876 recalculate_side_effects (*expr_p);
6877 ret = GS_ALL_DONE;
6878 break;
6880 /* Constants need not be gimplified. */
6881 case INTEGER_CST:
6882 case REAL_CST:
6883 case FIXED_CST:
6884 case STRING_CST:
6885 case COMPLEX_CST:
6886 case VECTOR_CST:
6887 ret = GS_ALL_DONE;
6888 break;
6890 case CONST_DECL:
6891 /* If we require an lvalue, such as for ADDR_EXPR, retain the
6892 CONST_DECL node. Otherwise the decl is replaceable by its
6893 value. */
6894 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
6895 if (fallback & fb_lvalue)
6896 ret = GS_ALL_DONE;
6897 else
6899 *expr_p = DECL_INITIAL (*expr_p);
6900 ret = GS_OK;
6902 break;
6904 case DECL_EXPR:
6905 ret = gimplify_decl_expr (expr_p, pre_p);
6906 break;
6908 case BIND_EXPR:
6909 ret = gimplify_bind_expr (expr_p, pre_p);
6910 break;
6912 case LOOP_EXPR:
6913 ret = gimplify_loop_expr (expr_p, pre_p);
6914 break;
6916 case SWITCH_EXPR:
6917 ret = gimplify_switch_expr (expr_p, pre_p);
6918 break;
6920 case EXIT_EXPR:
6921 ret = gimplify_exit_expr (expr_p);
6922 break;
6924 case GOTO_EXPR:
6925 /* If the target is not LABEL, then it is a computed jump
6926 and the target needs to be gimplified. */
6927 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
6929 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
6930 NULL, is_gimple_val, fb_rvalue);
6931 if (ret == GS_ERROR)
6932 break;
6934 gimplify_seq_add_stmt (pre_p,
6935 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
6936 ret = GS_ALL_DONE;
6937 break;
6939 case PREDICT_EXPR:
6940 gimplify_seq_add_stmt (pre_p,
6941 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
6942 PREDICT_EXPR_OUTCOME (*expr_p)));
6943 ret = GS_ALL_DONE;
6944 break;
6946 case LABEL_EXPR:
6947 ret = GS_ALL_DONE;
6948 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
6949 == current_function_decl);
6950 gimplify_seq_add_stmt (pre_p,
6951 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
6952 break;
6954 case CASE_LABEL_EXPR:
6955 ret = gimplify_case_label_expr (expr_p, pre_p);
6956 break;
6958 case RETURN_EXPR:
6959 ret = gimplify_return_expr (*expr_p, pre_p);
6960 break;
6962 case CONSTRUCTOR:
6963 /* Don't reduce this in place; let gimplify_init_constructor work its
6964 magic. Buf if we're just elaborating this for side effects, just
6965 gimplify any element that has side-effects. */
6966 if (fallback == fb_none)
6968 unsigned HOST_WIDE_INT ix;
6969 tree val;
6970 tree temp = NULL_TREE;
6971 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
6972 if (TREE_SIDE_EFFECTS (val))
6973 append_to_statement_list (val, &temp);
6975 *expr_p = temp;
6976 ret = temp ? GS_OK : GS_ALL_DONE;
6978 /* C99 code may assign to an array in a constructed
6979 structure or union, and this has undefined behavior only
6980 on execution, so create a temporary if an lvalue is
6981 required. */
6982 else if (fallback == fb_lvalue)
6984 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
6985 mark_addressable (*expr_p);
6986 ret = GS_OK;
6988 else
6989 ret = GS_ALL_DONE;
6990 break;
6992 /* The following are special cases that are not handled by the
6993 original GIMPLE grammar. */
6995 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
6996 eliminated. */
6997 case SAVE_EXPR:
6998 ret = gimplify_save_expr (expr_p, pre_p, post_p);
6999 break;
7001 case BIT_FIELD_REF:
7003 enum gimplify_status r0, r1, r2;
7005 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7006 post_p, is_gimple_lvalue, fb_either);
7007 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7008 post_p, is_gimple_val, fb_rvalue);
7009 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7010 post_p, is_gimple_val, fb_rvalue);
7011 recalculate_side_effects (*expr_p);
7013 ret = MIN (r0, MIN (r1, r2));
7015 break;
7017 case TARGET_MEM_REF:
7019 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7021 if (TMR_BASE (*expr_p))
7022 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7023 post_p, is_gimple_mem_ref_addr, fb_either);
7024 if (TMR_INDEX (*expr_p))
7025 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7026 post_p, is_gimple_val, fb_rvalue);
7027 if (TMR_INDEX2 (*expr_p))
7028 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7029 post_p, is_gimple_val, fb_rvalue);
7030 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7031 ret = MIN (r0, r1);
7033 break;
7035 case NON_LVALUE_EXPR:
7036 /* This should have been stripped above. */
7037 gcc_unreachable ();
7039 case ASM_EXPR:
7040 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7041 break;
7043 case TRY_FINALLY_EXPR:
7044 case TRY_CATCH_EXPR:
7046 gimple_seq eval, cleanup;
7047 gimple try_;
7049 eval = cleanup = NULL;
7050 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7051 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7052 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7053 if (gimple_seq_empty_p (cleanup))
7055 gimple_seq_add_seq (pre_p, eval);
7056 ret = GS_ALL_DONE;
7057 break;
7059 try_ = gimple_build_try (eval, cleanup,
7060 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7061 ? GIMPLE_TRY_FINALLY
7062 : GIMPLE_TRY_CATCH);
7063 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7064 gimple_try_set_catch_is_cleanup (try_,
7065 TRY_CATCH_IS_CLEANUP (*expr_p));
7066 gimplify_seq_add_stmt (pre_p, try_);
7067 ret = GS_ALL_DONE;
7068 break;
7071 case CLEANUP_POINT_EXPR:
7072 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7073 break;
7075 case TARGET_EXPR:
7076 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7077 break;
7079 case CATCH_EXPR:
7081 gimple c;
7082 gimple_seq handler = NULL;
7083 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7084 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7085 gimplify_seq_add_stmt (pre_p, c);
7086 ret = GS_ALL_DONE;
7087 break;
7090 case EH_FILTER_EXPR:
7092 gimple ehf;
7093 gimple_seq failure = NULL;
7095 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7096 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7097 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7098 gimplify_seq_add_stmt (pre_p, ehf);
7099 ret = GS_ALL_DONE;
7100 break;
7103 case OBJ_TYPE_REF:
7105 enum gimplify_status r0, r1;
7106 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7107 post_p, is_gimple_val, fb_rvalue);
7108 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7109 post_p, is_gimple_val, fb_rvalue);
7110 TREE_SIDE_EFFECTS (*expr_p) = 0;
7111 ret = MIN (r0, r1);
7113 break;
7115 case LABEL_DECL:
7116 /* We get here when taking the address of a label. We mark
7117 the label as "forced"; meaning it can never be removed and
7118 it is a potential target for any computed goto. */
7119 FORCED_LABEL (*expr_p) = 1;
7120 ret = GS_ALL_DONE;
7121 break;
7123 case STATEMENT_LIST:
7124 ret = gimplify_statement_list (expr_p, pre_p);
7125 break;
7127 case WITH_SIZE_EXPR:
7129 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7130 post_p == &internal_post ? NULL : post_p,
7131 gimple_test_f, fallback);
7132 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7133 is_gimple_val, fb_rvalue);
7134 ret = GS_ALL_DONE;
7136 break;
7138 case VAR_DECL:
7139 case PARM_DECL:
7140 ret = gimplify_var_or_parm_decl (expr_p);
7141 break;
7143 case RESULT_DECL:
7144 /* When within an OpenMP context, notice uses of variables. */
7145 if (gimplify_omp_ctxp)
7146 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7147 ret = GS_ALL_DONE;
7148 break;
7150 case SSA_NAME:
7151 /* Allow callbacks into the gimplifier during optimization. */
7152 ret = GS_ALL_DONE;
7153 break;
7155 case OMP_PARALLEL:
7156 gimplify_omp_parallel (expr_p, pre_p);
7157 ret = GS_ALL_DONE;
7158 break;
7160 case OMP_TASK:
7161 gimplify_omp_task (expr_p, pre_p);
7162 ret = GS_ALL_DONE;
7163 break;
7165 case OMP_FOR:
7166 ret = gimplify_omp_for (expr_p, pre_p);
7167 break;
7169 case OMP_SECTIONS:
7170 case OMP_SINGLE:
7171 gimplify_omp_workshare (expr_p, pre_p);
7172 ret = GS_ALL_DONE;
7173 break;
7175 case OMP_SECTION:
7176 case OMP_MASTER:
7177 case OMP_ORDERED:
7178 case OMP_CRITICAL:
7180 gimple_seq body = NULL;
7181 gimple g;
7183 gimplify_and_add (OMP_BODY (*expr_p), &body);
7184 switch (TREE_CODE (*expr_p))
7186 case OMP_SECTION:
7187 g = gimple_build_omp_section (body);
7188 break;
7189 case OMP_MASTER:
7190 g = gimple_build_omp_master (body);
7191 break;
7192 case OMP_ORDERED:
7193 g = gimple_build_omp_ordered (body);
7194 break;
7195 case OMP_CRITICAL:
7196 g = gimple_build_omp_critical (body,
7197 OMP_CRITICAL_NAME (*expr_p));
7198 break;
7199 default:
7200 gcc_unreachable ();
7202 gimplify_seq_add_stmt (pre_p, g);
7203 ret = GS_ALL_DONE;
7204 break;
7207 case OMP_ATOMIC:
7208 ret = gimplify_omp_atomic (expr_p, pre_p);
7209 break;
7211 case TRUTH_AND_EXPR:
7212 case TRUTH_OR_EXPR:
7213 case TRUTH_XOR_EXPR:
7214 /* Classified as tcc_expression. */
7215 goto expr_2;
7217 case FMA_EXPR:
7218 /* Classified as tcc_expression. */
7219 goto expr_3;
7221 case POINTER_PLUS_EXPR:
7222 /* Convert ((type *)A)+offset into &A->field_of_type_and_offset.
7223 The second is gimple immediate saving a need for extra statement.
7225 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7226 && (tmp = maybe_fold_offset_to_address
7227 (EXPR_LOCATION (*expr_p),
7228 TREE_OPERAND (*expr_p, 0), TREE_OPERAND (*expr_p, 1),
7229 TREE_TYPE (*expr_p))))
7231 *expr_p = tmp;
7232 ret = GS_OK;
7233 break;
7235 /* Convert (void *)&a + 4 into (void *)&a[1]. */
7236 if (TREE_CODE (TREE_OPERAND (*expr_p, 0)) == NOP_EXPR
7237 && TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7238 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (TREE_OPERAND (*expr_p,
7239 0),0)))
7240 && (tmp = maybe_fold_offset_to_address
7241 (EXPR_LOCATION (*expr_p),
7242 TREE_OPERAND (TREE_OPERAND (*expr_p, 0), 0),
7243 TREE_OPERAND (*expr_p, 1),
7244 TREE_TYPE (TREE_OPERAND (TREE_OPERAND (*expr_p, 0),
7245 0)))))
7247 *expr_p = fold_convert (TREE_TYPE (*expr_p), tmp);
7248 ret = GS_OK;
7249 break;
7251 /* FALLTHRU */
7253 default:
7254 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7256 case tcc_comparison:
7257 /* Handle comparison of objects of non scalar mode aggregates
7258 with a call to memcmp. It would be nice to only have to do
7259 this for variable-sized objects, but then we'd have to allow
7260 the same nest of reference nodes we allow for MODIFY_EXPR and
7261 that's too complex.
7263 Compare scalar mode aggregates as scalar mode values. Using
7264 memcmp for them would be very inefficient at best, and is
7265 plain wrong if bitfields are involved. */
7267 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7269 if (!AGGREGATE_TYPE_P (type))
7270 goto expr_2;
7271 else if (TYPE_MODE (type) != BLKmode)
7272 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7273 else
7274 ret = gimplify_variable_sized_compare (expr_p);
7276 break;
7279 /* If *EXPR_P does not need to be special-cased, handle it
7280 according to its class. */
7281 case tcc_unary:
7282 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7283 post_p, is_gimple_val, fb_rvalue);
7284 break;
7286 case tcc_binary:
7287 expr_2:
7289 enum gimplify_status r0, r1;
7291 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7292 post_p, is_gimple_val, fb_rvalue);
7293 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7294 post_p, is_gimple_val, fb_rvalue);
7296 ret = MIN (r0, r1);
7297 break;
7300 expr_3:
7302 enum gimplify_status r0, r1, r2;
7304 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7305 post_p, is_gimple_val, fb_rvalue);
7306 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7307 post_p, is_gimple_val, fb_rvalue);
7308 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7309 post_p, is_gimple_val, fb_rvalue);
7311 ret = MIN (MIN (r0, r1), r2);
7312 break;
7315 case tcc_declaration:
7316 case tcc_constant:
7317 ret = GS_ALL_DONE;
7318 goto dont_recalculate;
7320 default:
7321 gcc_unreachable ();
7324 recalculate_side_effects (*expr_p);
7326 dont_recalculate:
7327 break;
7330 gcc_assert (*expr_p || ret != GS_OK);
7332 while (ret == GS_OK);
7334 /* If we encountered an error_mark somewhere nested inside, either
7335 stub out the statement or propagate the error back out. */
7336 if (ret == GS_ERROR)
7338 if (is_statement)
7339 *expr_p = NULL;
7340 goto out;
7343 /* This was only valid as a return value from the langhook, which
7344 we handled. Make sure it doesn't escape from any other context. */
7345 gcc_assert (ret != GS_UNHANDLED);
7347 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7349 /* We aren't looking for a value, and we don't have a valid
7350 statement. If it doesn't have side-effects, throw it away. */
7351 if (!TREE_SIDE_EFFECTS (*expr_p))
7352 *expr_p = NULL;
7353 else if (!TREE_THIS_VOLATILE (*expr_p))
7355 /* This is probably a _REF that contains something nested that
7356 has side effects. Recurse through the operands to find it. */
7357 enum tree_code code = TREE_CODE (*expr_p);
7359 switch (code)
7361 case COMPONENT_REF:
7362 case REALPART_EXPR:
7363 case IMAGPART_EXPR:
7364 case VIEW_CONVERT_EXPR:
7365 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7366 gimple_test_f, fallback);
7367 break;
7369 case ARRAY_REF:
7370 case ARRAY_RANGE_REF:
7371 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7372 gimple_test_f, fallback);
7373 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7374 gimple_test_f, fallback);
7375 break;
7377 default:
7378 /* Anything else with side-effects must be converted to
7379 a valid statement before we get here. */
7380 gcc_unreachable ();
7383 *expr_p = NULL;
7385 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7386 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7388 /* Historically, the compiler has treated a bare reference
7389 to a non-BLKmode volatile lvalue as forcing a load. */
7390 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7392 /* Normally, we do not want to create a temporary for a
7393 TREE_ADDRESSABLE type because such a type should not be
7394 copied by bitwise-assignment. However, we make an
7395 exception here, as all we are doing here is ensuring that
7396 we read the bytes that make up the type. We use
7397 create_tmp_var_raw because create_tmp_var will abort when
7398 given a TREE_ADDRESSABLE type. */
7399 tree tmp = create_tmp_var_raw (type, "vol");
7400 gimple_add_tmp_var (tmp);
7401 gimplify_assign (tmp, *expr_p, pre_p);
7402 *expr_p = NULL;
7404 else
7405 /* We can't do anything useful with a volatile reference to
7406 an incomplete type, so just throw it away. Likewise for
7407 a BLKmode type, since any implicit inner load should
7408 already have been turned into an explicit one by the
7409 gimplification process. */
7410 *expr_p = NULL;
7413 /* If we are gimplifying at the statement level, we're done. Tack
7414 everything together and return. */
7415 if (fallback == fb_none || is_statement)
7417 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7418 it out for GC to reclaim it. */
7419 *expr_p = NULL_TREE;
7421 if (!gimple_seq_empty_p (internal_pre)
7422 || !gimple_seq_empty_p (internal_post))
7424 gimplify_seq_add_seq (&internal_pre, internal_post);
7425 gimplify_seq_add_seq (pre_p, internal_pre);
7428 /* The result of gimplifying *EXPR_P is going to be the last few
7429 statements in *PRE_P and *POST_P. Add location information
7430 to all the statements that were added by the gimplification
7431 helpers. */
7432 if (!gimple_seq_empty_p (*pre_p))
7433 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7435 if (!gimple_seq_empty_p (*post_p))
7436 annotate_all_with_location_after (*post_p, post_last_gsi,
7437 input_location);
7439 goto out;
7442 #ifdef ENABLE_GIMPLE_CHECKING
7443 if (*expr_p)
7445 enum tree_code code = TREE_CODE (*expr_p);
7446 /* These expressions should already be in gimple IR form. */
7447 gcc_assert (code != MODIFY_EXPR
7448 && code != ASM_EXPR
7449 && code != BIND_EXPR
7450 && code != CATCH_EXPR
7451 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7452 && code != EH_FILTER_EXPR
7453 && code != GOTO_EXPR
7454 && code != LABEL_EXPR
7455 && code != LOOP_EXPR
7456 && code != SWITCH_EXPR
7457 && code != TRY_FINALLY_EXPR
7458 && code != OMP_CRITICAL
7459 && code != OMP_FOR
7460 && code != OMP_MASTER
7461 && code != OMP_ORDERED
7462 && code != OMP_PARALLEL
7463 && code != OMP_SECTIONS
7464 && code != OMP_SECTION
7465 && code != OMP_SINGLE);
7467 #endif
7469 /* Otherwise we're gimplifying a subexpression, so the resulting
7470 value is interesting. If it's a valid operand that matches
7471 GIMPLE_TEST_F, we're done. Unless we are handling some
7472 post-effects internally; if that's the case, we need to copy into
7473 a temporary before adding the post-effects to POST_P. */
7474 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7475 goto out;
7477 /* Otherwise, we need to create a new temporary for the gimplified
7478 expression. */
7480 /* We can't return an lvalue if we have an internal postqueue. The
7481 object the lvalue refers to would (probably) be modified by the
7482 postqueue; we need to copy the value out first, which means an
7483 rvalue. */
7484 if ((fallback & fb_lvalue)
7485 && gimple_seq_empty_p (internal_post)
7486 && is_gimple_addressable (*expr_p))
7488 /* An lvalue will do. Take the address of the expression, store it
7489 in a temporary, and replace the expression with an INDIRECT_REF of
7490 that temporary. */
7491 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7492 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7493 *expr_p = build_simple_mem_ref (tmp);
7495 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7497 /* An rvalue will do. Assign the gimplified expression into a
7498 new temporary TMP and replace the original expression with
7499 TMP. First, make sure that the expression has a type so that
7500 it can be assigned into a temporary. */
7501 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7503 if (!gimple_seq_empty_p (internal_post) || (fallback & fb_lvalue))
7504 /* The postqueue might change the value of the expression between
7505 the initialization and use of the temporary, so we can't use a
7506 formal temp. FIXME do we care? */
7508 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7509 if (TREE_CODE (TREE_TYPE (*expr_p)) == COMPLEX_TYPE
7510 || TREE_CODE (TREE_TYPE (*expr_p)) == VECTOR_TYPE)
7511 DECL_GIMPLE_REG_P (*expr_p) = 1;
7513 else
7514 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7516 else
7518 #ifdef ENABLE_GIMPLE_CHECKING
7519 if (!(fallback & fb_mayfail))
7521 fprintf (stderr, "gimplification failed:\n");
7522 print_generic_expr (stderr, *expr_p, 0);
7523 debug_tree (*expr_p);
7524 internal_error ("gimplification failed");
7526 #endif
7527 gcc_assert (fallback & fb_mayfail);
7529 /* If this is an asm statement, and the user asked for the
7530 impossible, don't die. Fail and let gimplify_asm_expr
7531 issue an error. */
7532 ret = GS_ERROR;
7533 goto out;
7536 /* Make sure the temporary matches our predicate. */
7537 gcc_assert ((*gimple_test_f) (*expr_p));
7539 if (!gimple_seq_empty_p (internal_post))
7541 annotate_all_with_location (internal_post, input_location);
7542 gimplify_seq_add_seq (pre_p, internal_post);
7545 out:
7546 input_location = saved_location;
7547 return ret;
7550 /* Look through TYPE for variable-sized objects and gimplify each such
7551 size that we find. Add to LIST_P any statements generated. */
7553 void
7554 gimplify_type_sizes (tree type, gimple_seq *list_p)
7556 tree field, t;
7558 if (type == NULL || type == error_mark_node)
7559 return;
7561 /* We first do the main variant, then copy into any other variants. */
7562 type = TYPE_MAIN_VARIANT (type);
7564 /* Avoid infinite recursion. */
7565 if (TYPE_SIZES_GIMPLIFIED (type))
7566 return;
7568 TYPE_SIZES_GIMPLIFIED (type) = 1;
7570 switch (TREE_CODE (type))
7572 case INTEGER_TYPE:
7573 case ENUMERAL_TYPE:
7574 case BOOLEAN_TYPE:
7575 case REAL_TYPE:
7576 case FIXED_POINT_TYPE:
7577 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
7578 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
7580 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7582 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
7583 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
7585 break;
7587 case ARRAY_TYPE:
7588 /* These types may not have declarations, so handle them here. */
7589 gimplify_type_sizes (TREE_TYPE (type), list_p);
7590 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
7591 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
7592 with assigned stack slots, for -O1+ -g they should be tracked
7593 by VTA. */
7594 if (!(TYPE_NAME (type)
7595 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7596 && DECL_IGNORED_P (TYPE_NAME (type)))
7597 && TYPE_DOMAIN (type)
7598 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
7600 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
7601 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
7602 DECL_IGNORED_P (t) = 0;
7603 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
7604 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
7605 DECL_IGNORED_P (t) = 0;
7607 break;
7609 case RECORD_TYPE:
7610 case UNION_TYPE:
7611 case QUAL_UNION_TYPE:
7612 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
7613 if (TREE_CODE (field) == FIELD_DECL)
7615 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
7616 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
7617 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
7618 gimplify_type_sizes (TREE_TYPE (field), list_p);
7620 break;
7622 case POINTER_TYPE:
7623 case REFERENCE_TYPE:
7624 /* We used to recurse on the pointed-to type here, which turned out to
7625 be incorrect because its definition might refer to variables not
7626 yet initialized at this point if a forward declaration is involved.
7628 It was actually useful for anonymous pointed-to types to ensure
7629 that the sizes evaluation dominates every possible later use of the
7630 values. Restricting to such types here would be safe since there
7631 is no possible forward declaration around, but would introduce an
7632 undesirable middle-end semantic to anonymity. We then defer to
7633 front-ends the responsibility of ensuring that the sizes are
7634 evaluated both early and late enough, e.g. by attaching artificial
7635 type declarations to the tree. */
7636 break;
7638 default:
7639 break;
7642 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
7643 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
7645 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7647 TYPE_SIZE (t) = TYPE_SIZE (type);
7648 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
7649 TYPE_SIZES_GIMPLIFIED (t) = 1;
7653 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
7654 a size or position, has had all of its SAVE_EXPRs evaluated.
7655 We add any required statements to *STMT_P. */
7657 void
7658 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
7660 tree type, expr = *expr_p;
7662 /* We don't do anything if the value isn't there, is constant, or contains
7663 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
7664 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
7665 will want to replace it with a new variable, but that will cause problems
7666 if this type is from outside the function. It's OK to have that here. */
7667 if (expr == NULL_TREE || TREE_CONSTANT (expr)
7668 || TREE_CODE (expr) == VAR_DECL
7669 || CONTAINS_PLACEHOLDER_P (expr))
7670 return;
7672 type = TREE_TYPE (expr);
7673 *expr_p = unshare_expr (expr);
7675 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
7676 expr = *expr_p;
7678 /* Verify that we've an exact type match with the original expression.
7679 In particular, we do not wish to drop a "sizetype" in favour of a
7680 type of similar dimensions. We don't want to pollute the generic
7681 type-stripping code with this knowledge because it doesn't matter
7682 for the bulk of GENERIC/GIMPLE. It only matters that TYPE_SIZE_UNIT
7683 and friends retain their "sizetype-ness". */
7684 if (TREE_TYPE (expr) != type
7685 && TREE_CODE (type) == INTEGER_TYPE
7686 && TYPE_IS_SIZETYPE (type))
7688 tree tmp;
7689 gimple stmt;
7691 *expr_p = create_tmp_var (type, NULL);
7692 tmp = build1 (NOP_EXPR, type, expr);
7693 stmt = gimplify_assign (*expr_p, tmp, stmt_p);
7694 gimple_set_location (stmt, EXPR_LOC_OR_HERE (expr));
7699 /* Gimplify the body of statements pointed to by BODY_P and return a
7700 GIMPLE_BIND containing the sequence of GIMPLE statements
7701 corresponding to BODY_P. FNDECL is the function decl containing
7702 *BODY_P. */
7704 gimple
7705 gimplify_body (tree *body_p, tree fndecl, bool do_parms)
7707 location_t saved_location = input_location;
7708 gimple_seq parm_stmts, seq;
7709 gimple outer_bind;
7710 struct gimplify_ctx gctx;
7711 struct cgraph_node *cgn;
7713 timevar_push (TV_TREE_GIMPLIFY);
7715 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
7716 gimplification. */
7717 default_rtl_profile ();
7719 gcc_assert (gimplify_ctxp == NULL);
7720 push_gimplify_context (&gctx);
7722 /* Unshare most shared trees in the body and in that of any nested functions.
7723 It would seem we don't have to do this for nested functions because
7724 they are supposed to be output and then the outer function gimplified
7725 first, but the g++ front end doesn't always do it that way. */
7726 unshare_body (body_p, fndecl);
7727 unvisit_body (body_p, fndecl);
7729 cgn = cgraph_get_node (fndecl);
7730 if (cgn && cgn->origin)
7731 nonlocal_vlas = pointer_set_create ();
7733 /* Make sure input_location isn't set to something weird. */
7734 input_location = DECL_SOURCE_LOCATION (fndecl);
7736 /* Resolve callee-copies. This has to be done before processing
7737 the body so that DECL_VALUE_EXPR gets processed correctly. */
7738 parm_stmts = (do_parms) ? gimplify_parameters () : NULL;
7740 /* Gimplify the function's body. */
7741 seq = NULL;
7742 gimplify_stmt (body_p, &seq);
7743 outer_bind = gimple_seq_first_stmt (seq);
7744 if (!outer_bind)
7746 outer_bind = gimple_build_nop ();
7747 gimplify_seq_add_stmt (&seq, outer_bind);
7750 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
7751 not the case, wrap everything in a GIMPLE_BIND to make it so. */
7752 if (gimple_code (outer_bind) == GIMPLE_BIND
7753 && gimple_seq_first (seq) == gimple_seq_last (seq))
7755 else
7756 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
7758 *body_p = NULL_TREE;
7760 /* If we had callee-copies statements, insert them at the beginning
7761 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
7762 if (!gimple_seq_empty_p (parm_stmts))
7764 tree parm;
7766 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
7767 gimple_bind_set_body (outer_bind, parm_stmts);
7769 for (parm = DECL_ARGUMENTS (current_function_decl);
7770 parm; parm = DECL_CHAIN (parm))
7771 if (DECL_HAS_VALUE_EXPR_P (parm))
7773 DECL_HAS_VALUE_EXPR_P (parm) = 0;
7774 DECL_IGNORED_P (parm) = 0;
7778 if (nonlocal_vlas)
7780 pointer_set_destroy (nonlocal_vlas);
7781 nonlocal_vlas = NULL;
7784 pop_gimplify_context (outer_bind);
7785 gcc_assert (gimplify_ctxp == NULL);
7787 if (!seen_error ())
7788 verify_gimple_in_seq (gimple_bind_body (outer_bind));
7790 timevar_pop (TV_TREE_GIMPLIFY);
7791 input_location = saved_location;
7793 return outer_bind;
7796 typedef char *char_p; /* For DEF_VEC_P. */
7797 DEF_VEC_P(char_p);
7798 DEF_VEC_ALLOC_P(char_p,heap);
7800 /* Return whether we should exclude FNDECL from instrumentation. */
7802 static bool
7803 flag_instrument_functions_exclude_p (tree fndecl)
7805 VEC(char_p,heap) *vec;
7807 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_functions;
7808 if (VEC_length (char_p, vec) > 0)
7810 const char *name;
7811 int i;
7812 char *s;
7814 name = lang_hooks.decl_printable_name (fndecl, 0);
7815 FOR_EACH_VEC_ELT (char_p, vec, i, s)
7816 if (strstr (name, s) != NULL)
7817 return true;
7820 vec = (VEC(char_p,heap) *) flag_instrument_functions_exclude_files;
7821 if (VEC_length (char_p, vec) > 0)
7823 const char *name;
7824 int i;
7825 char *s;
7827 name = DECL_SOURCE_FILE (fndecl);
7828 FOR_EACH_VEC_ELT (char_p, vec, i, s)
7829 if (strstr (name, s) != NULL)
7830 return true;
7833 return false;
7836 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
7837 node for the function we want to gimplify.
7839 Returns the sequence of GIMPLE statements corresponding to the body
7840 of FNDECL. */
7842 void
7843 gimplify_function_tree (tree fndecl)
7845 tree oldfn, parm, ret;
7846 gimple_seq seq;
7847 gimple bind;
7849 gcc_assert (!gimple_body (fndecl));
7851 oldfn = current_function_decl;
7852 current_function_decl = fndecl;
7853 if (DECL_STRUCT_FUNCTION (fndecl))
7854 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
7855 else
7856 push_struct_function (fndecl);
7858 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
7860 /* Preliminarily mark non-addressed complex variables as eligible
7861 for promotion to gimple registers. We'll transform their uses
7862 as we find them. */
7863 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
7864 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
7865 && !TREE_THIS_VOLATILE (parm)
7866 && !needs_to_live_in_memory (parm))
7867 DECL_GIMPLE_REG_P (parm) = 1;
7870 ret = DECL_RESULT (fndecl);
7871 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
7872 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
7873 && !needs_to_live_in_memory (ret))
7874 DECL_GIMPLE_REG_P (ret) = 1;
7876 bind = gimplify_body (&DECL_SAVED_TREE (fndecl), fndecl, true);
7878 /* The tree body of the function is no longer needed, replace it
7879 with the new GIMPLE body. */
7880 seq = gimple_seq_alloc ();
7881 gimple_seq_add_stmt (&seq, bind);
7882 gimple_set_body (fndecl, seq);
7884 /* If we're instrumenting function entry/exit, then prepend the call to
7885 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
7886 catch the exit hook. */
7887 /* ??? Add some way to ignore exceptions for this TFE. */
7888 if (flag_instrument_function_entry_exit
7889 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
7890 && !flag_instrument_functions_exclude_p (fndecl))
7892 tree x;
7893 gimple new_bind;
7894 gimple tf;
7895 gimple_seq cleanup = NULL, body = NULL;
7896 tree tmp_var;
7897 gimple call;
7899 x = implicit_built_in_decls[BUILT_IN_RETURN_ADDRESS];
7900 call = gimple_build_call (x, 1, integer_zero_node);
7901 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
7902 gimple_call_set_lhs (call, tmp_var);
7903 gimplify_seq_add_stmt (&cleanup, call);
7904 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_EXIT];
7905 call = gimple_build_call (x, 2,
7906 build_fold_addr_expr (current_function_decl),
7907 tmp_var);
7908 gimplify_seq_add_stmt (&cleanup, call);
7909 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
7911 x = implicit_built_in_decls[BUILT_IN_RETURN_ADDRESS];
7912 call = gimple_build_call (x, 1, integer_zero_node);
7913 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
7914 gimple_call_set_lhs (call, tmp_var);
7915 gimplify_seq_add_stmt (&body, call);
7916 x = implicit_built_in_decls[BUILT_IN_PROFILE_FUNC_ENTER];
7917 call = gimple_build_call (x, 2,
7918 build_fold_addr_expr (current_function_decl),
7919 tmp_var);
7920 gimplify_seq_add_stmt (&body, call);
7921 gimplify_seq_add_stmt (&body, tf);
7922 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
7923 /* Clear the block for BIND, since it is no longer directly inside
7924 the function, but within a try block. */
7925 gimple_bind_set_block (bind, NULL);
7927 /* Replace the current function body with the body
7928 wrapped in the try/finally TF. */
7929 seq = gimple_seq_alloc ();
7930 gimple_seq_add_stmt (&seq, new_bind);
7931 gimple_set_body (fndecl, seq);
7934 DECL_SAVED_TREE (fndecl) = NULL_TREE;
7935 cfun->curr_properties = PROP_gimple_any;
7937 current_function_decl = oldfn;
7938 pop_cfun ();
7942 /* Some transformations like inlining may invalidate the GIMPLE form
7943 for operands. This function traverses all the operands in STMT and
7944 gimplifies anything that is not a valid gimple operand. Any new
7945 GIMPLE statements are inserted before *GSI_P. */
7947 void
7948 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
7950 size_t i, num_ops;
7951 tree orig_lhs = NULL_TREE, lhs, t;
7952 gimple_seq pre = NULL;
7953 gimple post_stmt = NULL;
7954 struct gimplify_ctx gctx;
7956 push_gimplify_context (&gctx);
7957 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
7959 switch (gimple_code (stmt))
7961 case GIMPLE_COND:
7962 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
7963 is_gimple_val, fb_rvalue);
7964 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
7965 is_gimple_val, fb_rvalue);
7966 break;
7967 case GIMPLE_SWITCH:
7968 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
7969 is_gimple_val, fb_rvalue);
7970 break;
7971 case GIMPLE_OMP_ATOMIC_LOAD:
7972 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
7973 is_gimple_val, fb_rvalue);
7974 break;
7975 case GIMPLE_ASM:
7977 size_t i, noutputs = gimple_asm_noutputs (stmt);
7978 const char *constraint, **oconstraints;
7979 bool allows_mem, allows_reg, is_inout;
7981 oconstraints
7982 = (const char **) alloca ((noutputs) * sizeof (const char *));
7983 for (i = 0; i < noutputs; i++)
7985 tree op = gimple_asm_output_op (stmt, i);
7986 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
7987 oconstraints[i] = constraint;
7988 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
7989 &allows_reg, &is_inout);
7990 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
7991 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
7992 fb_lvalue | fb_mayfail);
7994 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
7996 tree op = gimple_asm_input_op (stmt, i);
7997 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
7998 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
7999 oconstraints, &allows_mem, &allows_reg);
8000 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8001 allows_reg = 0;
8002 if (!allows_reg && allows_mem)
8003 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8004 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8005 else
8006 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8007 is_gimple_asm_val, fb_rvalue);
8010 break;
8011 default:
8012 /* NOTE: We start gimplifying operands from last to first to
8013 make sure that side-effects on the RHS of calls, assignments
8014 and ASMs are executed before the LHS. The ordering is not
8015 important for other statements. */
8016 num_ops = gimple_num_ops (stmt);
8017 orig_lhs = gimple_get_lhs (stmt);
8018 for (i = num_ops; i > 0; i--)
8020 tree op = gimple_op (stmt, i - 1);
8021 if (op == NULL_TREE)
8022 continue;
8023 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8024 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8025 else if (i == 2
8026 && is_gimple_assign (stmt)
8027 && num_ops == 2
8028 && get_gimple_rhs_class (gimple_expr_code (stmt))
8029 == GIMPLE_SINGLE_RHS)
8030 gimplify_expr (&op, &pre, NULL,
8031 rhs_predicate_for (gimple_assign_lhs (stmt)),
8032 fb_rvalue);
8033 else if (i == 2 && is_gimple_call (stmt))
8035 if (TREE_CODE (op) == FUNCTION_DECL)
8036 continue;
8037 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8039 else
8040 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8041 gimple_set_op (stmt, i - 1, op);
8044 lhs = gimple_get_lhs (stmt);
8045 /* If the LHS changed it in a way that requires a simple RHS,
8046 create temporary. */
8047 if (lhs && !is_gimple_reg (lhs))
8049 bool need_temp = false;
8051 if (is_gimple_assign (stmt)
8052 && num_ops == 2
8053 && get_gimple_rhs_class (gimple_expr_code (stmt))
8054 == GIMPLE_SINGLE_RHS)
8055 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8056 rhs_predicate_for (gimple_assign_lhs (stmt)),
8057 fb_rvalue);
8058 else if (is_gimple_reg (lhs))
8060 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8062 if (is_gimple_call (stmt))
8064 i = gimple_call_flags (stmt);
8065 if ((i & ECF_LOOPING_CONST_OR_PURE)
8066 || !(i & (ECF_CONST | ECF_PURE)))
8067 need_temp = true;
8069 if (stmt_can_throw_internal (stmt))
8070 need_temp = true;
8073 else
8075 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8076 need_temp = true;
8077 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8079 if (is_gimple_call (stmt))
8081 tree fndecl = gimple_call_fndecl (stmt);
8083 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8084 && !(fndecl && DECL_RESULT (fndecl)
8085 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8086 need_temp = true;
8088 else
8089 need_temp = true;
8092 if (need_temp)
8094 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8096 if (TREE_CODE (orig_lhs) == SSA_NAME)
8097 orig_lhs = SSA_NAME_VAR (orig_lhs);
8099 if (gimple_in_ssa_p (cfun))
8100 temp = make_ssa_name (temp, NULL);
8101 gimple_set_lhs (stmt, temp);
8102 post_stmt = gimple_build_assign (lhs, temp);
8103 if (TREE_CODE (lhs) == SSA_NAME)
8104 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8107 break;
8110 if (gimple_referenced_vars (cfun))
8111 for (t = gimplify_ctxp->temps; t ; t = TREE_CHAIN (t))
8112 add_referenced_var (t);
8114 if (!gimple_seq_empty_p (pre))
8116 if (gimple_in_ssa_p (cfun))
8118 gimple_stmt_iterator i;
8120 for (i = gsi_start (pre); !gsi_end_p (i); gsi_next (&i))
8121 mark_symbols_for_renaming (gsi_stmt (i));
8123 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8125 if (post_stmt)
8126 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8128 pop_gimplify_context (NULL);
8132 /* Expands EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8133 the predicate that will hold for the result. If VAR is not NULL, make the
8134 base variable of the final destination be VAR if suitable. */
8136 tree
8137 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8138 gimple_predicate gimple_test_f, tree var)
8140 tree t;
8141 enum gimplify_status ret;
8142 struct gimplify_ctx gctx;
8144 *stmts = NULL;
8146 /* gimple_test_f might be more strict than is_gimple_val, make
8147 sure we pass both. Just checking gimple_test_f doesn't work
8148 because most gimple predicates do not work recursively. */
8149 if (is_gimple_val (expr)
8150 && (*gimple_test_f) (expr))
8151 return expr;
8153 push_gimplify_context (&gctx);
8154 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8155 gimplify_ctxp->allow_rhs_cond_expr = true;
8157 if (var)
8158 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8160 if (TREE_CODE (expr) != MODIFY_EXPR
8161 && TREE_TYPE (expr) == void_type_node)
8163 gimplify_and_add (expr, stmts);
8164 expr = NULL_TREE;
8166 else
8168 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8169 gcc_assert (ret != GS_ERROR);
8172 if (gimple_referenced_vars (cfun))
8173 for (t = gimplify_ctxp->temps; t ; t = DECL_CHAIN (t))
8174 add_referenced_var (t);
8176 pop_gimplify_context (NULL);
8178 return expr;
8181 /* Expands EXPR to list of gimple statements STMTS. If SIMPLE is true,
8182 force the result to be either ssa_name or an invariant, otherwise
8183 just force it to be a rhs expression. If VAR is not NULL, make the
8184 base variable of the final destination be VAR if suitable. */
8186 tree
8187 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8189 return force_gimple_operand_1 (expr, stmts,
8190 simple ? is_gimple_val : is_gimple_reg_rhs,
8191 var);
8194 /* Invokes force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8195 and VAR. If some statements are produced, emits them at GSI.
8196 If BEFORE is true. the statements are appended before GSI, otherwise
8197 they are appended after it. M specifies the way GSI moves after
8198 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8200 tree
8201 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8202 gimple_predicate gimple_test_f,
8203 tree var, bool before,
8204 enum gsi_iterator_update m)
8206 gimple_seq stmts;
8208 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8210 if (!gimple_seq_empty_p (stmts))
8212 if (gimple_in_ssa_p (cfun))
8214 gimple_stmt_iterator i;
8216 for (i = gsi_start (stmts); !gsi_end_p (i); gsi_next (&i))
8217 mark_symbols_for_renaming (gsi_stmt (i));
8220 if (before)
8221 gsi_insert_seq_before (gsi, stmts, m);
8222 else
8223 gsi_insert_seq_after (gsi, stmts, m);
8226 return expr;
8229 /* Invokes force_gimple_operand_1 for EXPR with parameter VAR.
8230 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8231 otherwise just force it to be a rhs expression. If some statements are
8232 produced, emits them at GSI. If BEFORE is true, the statements are
8233 appended before GSI, otherwise they are appended after it. M specifies
8234 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8235 are the usual values). */
8237 tree
8238 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8239 bool simple_p, tree var, bool before,
8240 enum gsi_iterator_update m)
8242 return force_gimple_operand_gsi_1 (gsi, expr,
8243 simple_p
8244 ? is_gimple_val : is_gimple_reg_rhs,
8245 var, before, m);
8249 #include "gt-gimplify.h"