* gcc.dg/guality/guality.exp: Skip on AIX.
[official-gcc.git] / gcc / gimplify.c
blob4d39d539f2df26b3288f1c655235014f3873d844
1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002-2013 Free Software Foundation, Inc.
4 Major work done by Sebastian Pop <s.pop@laposte.net>,
5 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "gimple.h"
29 #include "tree-iterator.h"
30 #include "tree-inline.h"
31 #include "tree-pretty-print.h"
32 #include "langhooks.h"
33 #include "tree-flow.h"
34 #include "cgraph.h"
35 #include "timevar.h"
36 #include "hashtab.h"
37 #include "flags.h"
38 #include "function.h"
39 #include "ggc.h"
40 #include "diagnostic-core.h"
41 #include "target.h"
42 #include "pointer-set.h"
43 #include "splay-tree.h"
44 #include "vec.h"
46 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name */
47 #include "tree-pass.h" /* FIXME: only for PROP_gimple_any */
49 enum gimplify_omp_var_data
51 GOVD_SEEN = 1,
52 GOVD_EXPLICIT = 2,
53 GOVD_SHARED = 4,
54 GOVD_PRIVATE = 8,
55 GOVD_FIRSTPRIVATE = 16,
56 GOVD_LASTPRIVATE = 32,
57 GOVD_REDUCTION = 64,
58 GOVD_LOCAL = 128,
59 GOVD_DEBUG_PRIVATE = 256,
60 GOVD_PRIVATE_OUTER_REF = 512,
61 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
62 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
66 enum omp_region_type
68 ORT_WORKSHARE = 0,
69 ORT_PARALLEL = 2,
70 ORT_COMBINED_PARALLEL = 3,
71 ORT_TASK = 4,
72 ORT_UNTIED_TASK = 5
75 struct gimplify_omp_ctx
77 struct gimplify_omp_ctx *outer_context;
78 splay_tree variables;
79 struct pointer_set_t *privatized_types;
80 location_t location;
81 enum omp_clause_default_kind default_kind;
82 enum omp_region_type region_type;
85 static struct gimplify_ctx *gimplify_ctxp;
86 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
89 /* Forward declaration. */
90 static enum gimplify_status gimplify_compound_expr (tree *, gimple_seq *, bool);
92 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
93 form and we don't do any syntax checking. */
95 void
96 mark_addressable (tree x)
98 while (handled_component_p (x))
99 x = TREE_OPERAND (x, 0);
100 if (TREE_CODE (x) == MEM_REF
101 && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
102 x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
103 if (TREE_CODE (x) != VAR_DECL
104 && TREE_CODE (x) != PARM_DECL
105 && TREE_CODE (x) != RESULT_DECL)
106 return;
107 TREE_ADDRESSABLE (x) = 1;
109 /* Also mark the artificial SSA_NAME that points to the partition of X. */
110 if (TREE_CODE (x) == VAR_DECL
111 && !DECL_EXTERNAL (x)
112 && !TREE_STATIC (x)
113 && cfun->gimple_df != NULL
114 && cfun->gimple_df->decls_to_pointers != NULL)
116 void *namep
117 = pointer_map_contains (cfun->gimple_df->decls_to_pointers, x);
118 if (namep)
119 TREE_ADDRESSABLE (*(tree *)namep) = 1;
123 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
124 *SEQ_P is NULL, a new sequence is allocated. This function is
125 similar to gimple_seq_add_stmt, but does not scan the operands.
126 During gimplification, we need to manipulate statement sequences
127 before the def/use vectors have been constructed. */
129 void
130 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple gs)
132 gimple_stmt_iterator si;
134 if (gs == NULL)
135 return;
137 si = gsi_last (*seq_p);
138 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
141 /* Shorter alias name for the above function for use in gimplify.c
142 only. */
144 static inline void
145 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
147 gimple_seq_add_stmt_without_update (seq_p, gs);
150 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
151 NULL, a new sequence is allocated. This function is
152 similar to gimple_seq_add_seq, but does not scan the operands.
153 During gimplification, we need to manipulate statement sequences
154 before the def/use vectors have been constructed. */
156 static void
157 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
159 gimple_stmt_iterator si;
161 if (src == NULL)
162 return;
164 si = gsi_last (*dst_p);
165 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
168 /* Set up a context for the gimplifier. */
170 void
171 push_gimplify_context (struct gimplify_ctx *c)
173 memset (c, '\0', sizeof (*c));
174 c->prev_context = gimplify_ctxp;
175 gimplify_ctxp = c;
178 /* Tear down a context for the gimplifier. If BODY is non-null, then
179 put the temporaries into the outer BIND_EXPR. Otherwise, put them
180 in the local_decls.
182 BODY is not a sequence, but the first tuple in a sequence. */
184 void
185 pop_gimplify_context (gimple body)
187 struct gimplify_ctx *c = gimplify_ctxp;
189 gcc_assert (c
190 && (!c->bind_expr_stack.exists ()
191 || c->bind_expr_stack.is_empty ()));
192 c->bind_expr_stack.release ();
193 gimplify_ctxp = c->prev_context;
195 if (body)
196 declare_vars (c->temps, body, false);
197 else
198 record_vars (c->temps);
200 if (c->temp_htab.is_created ())
201 c->temp_htab.dispose ();
204 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
206 static void
207 gimple_push_bind_expr (gimple gimple_bind)
209 gimplify_ctxp->bind_expr_stack.reserve (8);
210 gimplify_ctxp->bind_expr_stack.safe_push (gimple_bind);
213 /* Pop the first element off the stack of bindings. */
215 static void
216 gimple_pop_bind_expr (void)
218 gimplify_ctxp->bind_expr_stack.pop ();
221 /* Return the first element of the stack of bindings. */
223 gimple
224 gimple_current_bind_expr (void)
226 return gimplify_ctxp->bind_expr_stack.last ();
229 /* Return the stack of bindings created during gimplification. */
231 vec<gimple>
232 gimple_bind_expr_stack (void)
234 return gimplify_ctxp->bind_expr_stack;
237 /* Return true iff there is a COND_EXPR between us and the innermost
238 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
240 static bool
241 gimple_conditional_context (void)
243 return gimplify_ctxp->conditions > 0;
246 /* Note that we've entered a COND_EXPR. */
248 static void
249 gimple_push_condition (void)
251 #ifdef ENABLE_GIMPLE_CHECKING
252 if (gimplify_ctxp->conditions == 0)
253 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
254 #endif
255 ++(gimplify_ctxp->conditions);
258 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
259 now, add any conditional cleanups we've seen to the prequeue. */
261 static void
262 gimple_pop_condition (gimple_seq *pre_p)
264 int conds = --(gimplify_ctxp->conditions);
266 gcc_assert (conds >= 0);
267 if (conds == 0)
269 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
270 gimplify_ctxp->conditional_cleanups = NULL;
274 /* A stable comparison routine for use with splay trees and DECLs. */
276 static int
277 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
279 tree a = (tree) xa;
280 tree b = (tree) xb;
282 return DECL_UID (a) - DECL_UID (b);
285 /* Create a new omp construct that deals with variable remapping. */
287 static struct gimplify_omp_ctx *
288 new_omp_context (enum omp_region_type region_type)
290 struct gimplify_omp_ctx *c;
292 c = XCNEW (struct gimplify_omp_ctx);
293 c->outer_context = gimplify_omp_ctxp;
294 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
295 c->privatized_types = pointer_set_create ();
296 c->location = input_location;
297 c->region_type = region_type;
298 if ((region_type & ORT_TASK) == 0)
299 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
300 else
301 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
303 return c;
306 /* Destroy an omp construct that deals with variable remapping. */
308 static void
309 delete_omp_context (struct gimplify_omp_ctx *c)
311 splay_tree_delete (c->variables);
312 pointer_set_destroy (c->privatized_types);
313 XDELETE (c);
316 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
317 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
319 /* Both gimplify the statement T and append it to *SEQ_P. This function
320 behaves exactly as gimplify_stmt, but you don't have to pass T as a
321 reference. */
323 void
324 gimplify_and_add (tree t, gimple_seq *seq_p)
326 gimplify_stmt (&t, seq_p);
329 /* Gimplify statement T into sequence *SEQ_P, and return the first
330 tuple in the sequence of generated tuples for this statement.
331 Return NULL if gimplifying T produced no tuples. */
333 static gimple
334 gimplify_and_return_first (tree t, gimple_seq *seq_p)
336 gimple_stmt_iterator last = gsi_last (*seq_p);
338 gimplify_and_add (t, seq_p);
340 if (!gsi_end_p (last))
342 gsi_next (&last);
343 return gsi_stmt (last);
345 else
346 return gimple_seq_first_stmt (*seq_p);
349 /* Strip off a legitimate source ending from the input string NAME of
350 length LEN. Rather than having to know the names used by all of
351 our front ends, we strip off an ending of a period followed by
352 up to five characters. (Java uses ".class".) */
354 static inline void
355 remove_suffix (char *name, int len)
357 int i;
359 for (i = 2; i < 8 && len > i; i++)
361 if (name[len - i] == '.')
363 name[len - i] = '\0';
364 break;
369 /* Create a new temporary name with PREFIX. Return an identifier. */
371 static GTY(()) unsigned int tmp_var_id_num;
373 tree
374 create_tmp_var_name (const char *prefix)
376 char *tmp_name;
378 if (prefix)
380 char *preftmp = ASTRDUP (prefix);
382 remove_suffix (preftmp, strlen (preftmp));
383 clean_symbol_name (preftmp);
385 prefix = preftmp;
388 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
389 return get_identifier (tmp_name);
392 /* Create a new temporary variable declaration of type TYPE.
393 Do NOT push it into the current binding. */
395 tree
396 create_tmp_var_raw (tree type, const char *prefix)
398 tree tmp_var;
400 tmp_var = build_decl (input_location,
401 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
402 type);
404 /* The variable was declared by the compiler. */
405 DECL_ARTIFICIAL (tmp_var) = 1;
406 /* And we don't want debug info for it. */
407 DECL_IGNORED_P (tmp_var) = 1;
409 /* Make the variable writable. */
410 TREE_READONLY (tmp_var) = 0;
412 DECL_EXTERNAL (tmp_var) = 0;
413 TREE_STATIC (tmp_var) = 0;
414 TREE_USED (tmp_var) = 1;
416 return tmp_var;
419 /* Create a new temporary variable declaration of type TYPE. DO push the
420 variable into the current binding. Further, assume that this is called
421 only from gimplification or optimization, at which point the creation of
422 certain types are bugs. */
424 tree
425 create_tmp_var (tree type, const char *prefix)
427 tree tmp_var;
429 /* We don't allow types that are addressable (meaning we can't make copies),
430 or incomplete. We also used to reject every variable size objects here,
431 but now support those for which a constant upper bound can be obtained.
432 The processing for variable sizes is performed in gimple_add_tmp_var,
433 point at which it really matters and possibly reached via paths not going
434 through this function, e.g. after direct calls to create_tmp_var_raw. */
435 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
437 tmp_var = create_tmp_var_raw (type, prefix);
438 gimple_add_tmp_var (tmp_var);
439 return tmp_var;
442 /* Create a new temporary variable declaration of type TYPE by calling
443 create_tmp_var and if TYPE is a vector or a complex number, mark the new
444 temporary as gimple register. */
446 tree
447 create_tmp_reg (tree type, const char *prefix)
449 tree tmp;
451 tmp = create_tmp_var (type, prefix);
452 if (TREE_CODE (type) == COMPLEX_TYPE
453 || TREE_CODE (type) == VECTOR_TYPE)
454 DECL_GIMPLE_REG_P (tmp) = 1;
456 return tmp;
459 /* Returns true iff T is a valid RHS for an assignment to a renamed
460 user -- or front-end generated artificial -- variable. */
462 static bool
463 is_gimple_reg_rhs (tree t)
465 return get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS;
468 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
469 LHS, or for a call argument. */
471 static bool
472 is_gimple_mem_rhs (tree t)
474 /* If we're dealing with a renamable type, either source or dest must be
475 a renamed variable. */
476 if (is_gimple_reg_type (TREE_TYPE (t)))
477 return is_gimple_val (t);
478 else
479 return is_gimple_val (t) || is_gimple_lvalue (t);
482 /* Return true if T is a CALL_EXPR or an expression that can be
483 assigned to a temporary. Note that this predicate should only be
484 used during gimplification. See the rationale for this in
485 gimplify_modify_expr. */
487 static bool
488 is_gimple_reg_rhs_or_call (tree t)
490 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
491 || TREE_CODE (t) == CALL_EXPR);
494 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
495 this predicate should only be used during gimplification. See the
496 rationale for this in gimplify_modify_expr. */
498 static bool
499 is_gimple_mem_rhs_or_call (tree t)
501 /* If we're dealing with a renamable type, either source or dest must be
502 a renamed variable. */
503 if (is_gimple_reg_type (TREE_TYPE (t)))
504 return is_gimple_val (t);
505 else
506 return (is_gimple_val (t) || is_gimple_lvalue (t)
507 || TREE_CODE (t) == CALL_EXPR);
510 /* Create a temporary with a name derived from VAL. Subroutine of
511 lookup_tmp_var; nobody else should call this function. */
513 static inline tree
514 create_tmp_from_val (tree val, bool is_formal)
516 /* Drop all qualifiers and address-space information from the value type. */
517 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (val));
518 tree var = create_tmp_var (type, get_name (val));
519 if (is_formal
520 && (TREE_CODE (TREE_TYPE (var)) == COMPLEX_TYPE
521 || TREE_CODE (TREE_TYPE (var)) == VECTOR_TYPE))
522 DECL_GIMPLE_REG_P (var) = 1;
523 return var;
526 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
527 an existing expression temporary. */
529 static tree
530 lookup_tmp_var (tree val, bool is_formal)
532 tree ret;
534 /* If not optimizing, never really reuse a temporary. local-alloc
535 won't allocate any variable that is used in more than one basic
536 block, which means it will go into memory, causing much extra
537 work in reload and final and poorer code generation, outweighing
538 the extra memory allocation here. */
539 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
540 ret = create_tmp_from_val (val, is_formal);
541 else
543 elt_t elt, *elt_p;
544 elt_t **slot;
546 elt.val = val;
547 if (!gimplify_ctxp->temp_htab.is_created ())
548 gimplify_ctxp->temp_htab.create (1000);
549 slot = gimplify_ctxp->temp_htab.find_slot (&elt, INSERT);
550 if (*slot == NULL)
552 elt_p = XNEW (elt_t);
553 elt_p->val = val;
554 elt_p->temp = ret = create_tmp_from_val (val, is_formal);
555 *slot = elt_p;
557 else
559 elt_p = *slot;
560 ret = elt_p->temp;
564 return ret;
567 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
569 static tree
570 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
571 bool is_formal)
573 tree t, mod;
575 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
576 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
577 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
578 fb_rvalue);
580 if (gimplify_ctxp->into_ssa
581 && is_gimple_reg_type (TREE_TYPE (val)))
582 t = make_ssa_name (TYPE_MAIN_VARIANT (TREE_TYPE (val)), NULL);
583 else
584 t = lookup_tmp_var (val, is_formal);
586 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
588 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
590 /* gimplify_modify_expr might want to reduce this further. */
591 gimplify_and_add (mod, pre_p);
592 ggc_free (mod);
594 return t;
597 /* Return a formal temporary variable initialized with VAL. PRE_P is as
598 in gimplify_expr. Only use this function if:
600 1) The value of the unfactored expression represented by VAL will not
601 change between the initialization and use of the temporary, and
602 2) The temporary will not be otherwise modified.
604 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
605 and #2 means it is inappropriate for && temps.
607 For other cases, use get_initialized_tmp_var instead. */
609 tree
610 get_formal_tmp_var (tree val, gimple_seq *pre_p)
612 return internal_get_tmp_var (val, pre_p, NULL, true);
615 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
616 are as in gimplify_expr. */
618 tree
619 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
621 return internal_get_tmp_var (val, pre_p, post_p, false);
624 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
625 generate debug info for them; otherwise don't. */
627 void
628 declare_vars (tree vars, gimple scope, bool debug_info)
630 tree last = vars;
631 if (last)
633 tree temps, block;
635 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
637 temps = nreverse (last);
639 block = gimple_bind_block (scope);
640 gcc_assert (!block || TREE_CODE (block) == BLOCK);
641 if (!block || !debug_info)
643 DECL_CHAIN (last) = gimple_bind_vars (scope);
644 gimple_bind_set_vars (scope, temps);
646 else
648 /* We need to attach the nodes both to the BIND_EXPR and to its
649 associated BLOCK for debugging purposes. The key point here
650 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
651 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
652 if (BLOCK_VARS (block))
653 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
654 else
656 gimple_bind_set_vars (scope,
657 chainon (gimple_bind_vars (scope), temps));
658 BLOCK_VARS (block) = temps;
664 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
665 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
666 no such upper bound can be obtained. */
668 static void
669 force_constant_size (tree var)
671 /* The only attempt we make is by querying the maximum size of objects
672 of the variable's type. */
674 HOST_WIDE_INT max_size;
676 gcc_assert (TREE_CODE (var) == VAR_DECL);
678 max_size = max_int_size_in_bytes (TREE_TYPE (var));
680 gcc_assert (max_size >= 0);
682 DECL_SIZE_UNIT (var)
683 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
684 DECL_SIZE (var)
685 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
688 /* Push the temporary variable TMP into the current binding. */
690 void
691 gimple_add_tmp_var (tree tmp)
693 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
695 /* Later processing assumes that the object size is constant, which might
696 not be true at this point. Force the use of a constant upper bound in
697 this case. */
698 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
699 force_constant_size (tmp);
701 DECL_CONTEXT (tmp) = current_function_decl;
702 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
704 if (gimplify_ctxp)
706 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
707 gimplify_ctxp->temps = tmp;
709 /* Mark temporaries local within the nearest enclosing parallel. */
710 if (gimplify_omp_ctxp)
712 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
713 while (ctx && ctx->region_type == ORT_WORKSHARE)
714 ctx = ctx->outer_context;
715 if (ctx)
716 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
719 else if (cfun)
720 record_vars (tmp);
721 else
723 gimple_seq body_seq;
725 /* This case is for nested functions. We need to expose the locals
726 they create. */
727 body_seq = gimple_body (current_function_decl);
728 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
732 /* Determine whether to assign a location to the statement GS. */
734 static bool
735 should_carry_location_p (gimple gs)
737 /* Don't emit a line note for a label. We particularly don't want to
738 emit one for the break label, since it doesn't actually correspond
739 to the beginning of the loop/switch. */
740 if (gimple_code (gs) == GIMPLE_LABEL)
741 return false;
743 return true;
746 /* Return true if a location should not be emitted for this statement
747 by annotate_one_with_location. */
749 static inline bool
750 gimple_do_not_emit_location_p (gimple g)
752 return gimple_plf (g, GF_PLF_1);
755 /* Mark statement G so a location will not be emitted by
756 annotate_one_with_location. */
758 static inline void
759 gimple_set_do_not_emit_location (gimple g)
761 /* The PLF flags are initialized to 0 when a new tuple is created,
762 so no need to initialize it anywhere. */
763 gimple_set_plf (g, GF_PLF_1, true);
766 /* Set the location for gimple statement GS to LOCATION. */
768 static void
769 annotate_one_with_location (gimple gs, location_t location)
771 if (!gimple_has_location (gs)
772 && !gimple_do_not_emit_location_p (gs)
773 && should_carry_location_p (gs))
774 gimple_set_location (gs, location);
777 /* Set LOCATION for all the statements after iterator GSI in sequence
778 SEQ. If GSI is pointing to the end of the sequence, start with the
779 first statement in SEQ. */
781 static void
782 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
783 location_t location)
785 if (gsi_end_p (gsi))
786 gsi = gsi_start (seq);
787 else
788 gsi_next (&gsi);
790 for (; !gsi_end_p (gsi); gsi_next (&gsi))
791 annotate_one_with_location (gsi_stmt (gsi), location);
794 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
796 void
797 annotate_all_with_location (gimple_seq stmt_p, location_t location)
799 gimple_stmt_iterator i;
801 if (gimple_seq_empty_p (stmt_p))
802 return;
804 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
806 gimple gs = gsi_stmt (i);
807 annotate_one_with_location (gs, location);
811 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
812 nodes that are referenced more than once in GENERIC functions. This is
813 necessary because gimplification (translation into GIMPLE) is performed
814 by modifying tree nodes in-place, so gimplication of a shared node in a
815 first context could generate an invalid GIMPLE form in a second context.
817 This is achieved with a simple mark/copy/unmark algorithm that walks the
818 GENERIC representation top-down, marks nodes with TREE_VISITED the first
819 time it encounters them, duplicates them if they already have TREE_VISITED
820 set, and finally removes the TREE_VISITED marks it has set.
822 The algorithm works only at the function level, i.e. it generates a GENERIC
823 representation of a function with no nodes shared within the function when
824 passed a GENERIC function (except for nodes that are allowed to be shared).
826 At the global level, it is also necessary to unshare tree nodes that are
827 referenced in more than one function, for the same aforementioned reason.
828 This requires some cooperation from the front-end. There are 2 strategies:
830 1. Manual unsharing. The front-end needs to call unshare_expr on every
831 expression that might end up being shared across functions.
833 2. Deep unsharing. This is an extension of regular unsharing. Instead
834 of calling unshare_expr on expressions that might be shared across
835 functions, the front-end pre-marks them with TREE_VISITED. This will
836 ensure that they are unshared on the first reference within functions
837 when the regular unsharing algorithm runs. The counterpart is that
838 this algorithm must look deeper than for manual unsharing, which is
839 specified by LANG_HOOKS_DEEP_UNSHARING.
841 If there are only few specific cases of node sharing across functions, it is
842 probably easier for a front-end to unshare the expressions manually. On the
843 contrary, if the expressions generated at the global level are as widespread
844 as expressions generated within functions, deep unsharing is very likely the
845 way to go. */
847 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
848 These nodes model computations that must be done once. If we were to
849 unshare something like SAVE_EXPR(i++), the gimplification process would
850 create wrong code. However, if DATA is non-null, it must hold a pointer
851 set that is used to unshare the subtrees of these nodes. */
853 static tree
854 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
856 tree t = *tp;
857 enum tree_code code = TREE_CODE (t);
859 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
860 copy their subtrees if we can make sure to do it only once. */
861 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
863 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
865 else
866 *walk_subtrees = 0;
869 /* Stop at types, decls, constants like copy_tree_r. */
870 else if (TREE_CODE_CLASS (code) == tcc_type
871 || TREE_CODE_CLASS (code) == tcc_declaration
872 || TREE_CODE_CLASS (code) == tcc_constant
873 /* We can't do anything sensible with a BLOCK used as an
874 expression, but we also can't just die when we see it
875 because of non-expression uses. So we avert our eyes
876 and cross our fingers. Silly Java. */
877 || code == BLOCK)
878 *walk_subtrees = 0;
880 /* Cope with the statement expression extension. */
881 else if (code == STATEMENT_LIST)
884 /* Leave the bulk of the work to copy_tree_r itself. */
885 else
886 copy_tree_r (tp, walk_subtrees, NULL);
888 return NULL_TREE;
891 /* Callback for walk_tree to unshare most of the shared trees rooted at *TP.
892 If *TP has been visited already, then *TP is deeply copied by calling
893 mostly_copy_tree_r. DATA is passed to mostly_copy_tree_r unmodified. */
895 static tree
896 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
898 tree t = *tp;
899 enum tree_code code = TREE_CODE (t);
901 /* Skip types, decls, and constants. But we do want to look at their
902 types and the bounds of types. Mark them as visited so we properly
903 unmark their subtrees on the unmark pass. If we've already seen them,
904 don't look down further. */
905 if (TREE_CODE_CLASS (code) == tcc_type
906 || TREE_CODE_CLASS (code) == tcc_declaration
907 || TREE_CODE_CLASS (code) == tcc_constant)
909 if (TREE_VISITED (t))
910 *walk_subtrees = 0;
911 else
912 TREE_VISITED (t) = 1;
915 /* If this node has been visited already, unshare it and don't look
916 any deeper. */
917 else if (TREE_VISITED (t))
919 walk_tree (tp, mostly_copy_tree_r, data, NULL);
920 *walk_subtrees = 0;
923 /* Otherwise, mark the node as visited and keep looking. */
924 else
925 TREE_VISITED (t) = 1;
927 return NULL_TREE;
930 /* Unshare most of the shared trees rooted at *TP. DATA is passed to the
931 copy_if_shared_r callback unmodified. */
933 static inline void
934 copy_if_shared (tree *tp, void *data)
936 walk_tree (tp, copy_if_shared_r, data, NULL);
939 /* Unshare all the trees in the body of FNDECL, as well as in the bodies of
940 any nested functions. */
942 static void
943 unshare_body (tree fndecl)
945 struct cgraph_node *cgn = cgraph_get_node (fndecl);
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;
951 copy_if_shared (&DECL_SAVED_TREE (fndecl), visited);
952 copy_if_shared (&DECL_SIZE (DECL_RESULT (fndecl)), visited);
953 copy_if_shared (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)), visited);
955 if (visited)
956 pointer_set_destroy (visited);
958 if (cgn)
959 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
960 unshare_body (cgn->symbol.decl);
963 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
964 Subtrees are walked until the first unvisited node is encountered. */
966 static tree
967 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
969 tree t = *tp;
971 /* If this node has been visited, unmark it and keep looking. */
972 if (TREE_VISITED (t))
973 TREE_VISITED (t) = 0;
975 /* Otherwise, don't look any deeper. */
976 else
977 *walk_subtrees = 0;
979 return NULL_TREE;
982 /* Unmark the visited trees rooted at *TP. */
984 static inline void
985 unmark_visited (tree *tp)
987 walk_tree (tp, unmark_visited_r, NULL, NULL);
990 /* Likewise, but mark all trees as not visited. */
992 static void
993 unvisit_body (tree fndecl)
995 struct cgraph_node *cgn = cgraph_get_node (fndecl);
997 unmark_visited (&DECL_SAVED_TREE (fndecl));
998 unmark_visited (&DECL_SIZE (DECL_RESULT (fndecl)));
999 unmark_visited (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)));
1001 if (cgn)
1002 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1003 unvisit_body (cgn->symbol.decl);
1006 /* Unconditionally make an unshared copy of EXPR. This is used when using
1007 stored expressions which span multiple functions, such as BINFO_VTABLE,
1008 as the normal unsharing process can't tell that they're shared. */
1010 tree
1011 unshare_expr (tree expr)
1013 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1014 return expr;
1017 /* Worker for unshare_expr_without_location. */
1019 static tree
1020 prune_expr_location (tree *tp, int *walk_subtrees, void *)
1022 if (EXPR_P (*tp))
1023 SET_EXPR_LOCATION (*tp, UNKNOWN_LOCATION);
1024 else
1025 *walk_subtrees = 0;
1026 return NULL_TREE;
1029 /* Similar to unshare_expr but also prune all expression locations
1030 from EXPR. */
1032 tree
1033 unshare_expr_without_location (tree expr)
1035 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1036 if (EXPR_P (expr))
1037 walk_tree (&expr, prune_expr_location, NULL, NULL);
1038 return expr;
1041 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1042 contain statements and have a value. Assign its value to a temporary
1043 and give it void_type_node. Return the temporary, or NULL_TREE if
1044 WRAPPER was already void. */
1046 tree
1047 voidify_wrapper_expr (tree wrapper, tree temp)
1049 tree type = TREE_TYPE (wrapper);
1050 if (type && !VOID_TYPE_P (type))
1052 tree *p;
1054 /* Set p to point to the body of the wrapper. Loop until we find
1055 something that isn't a wrapper. */
1056 for (p = &wrapper; p && *p; )
1058 switch (TREE_CODE (*p))
1060 case BIND_EXPR:
1061 TREE_SIDE_EFFECTS (*p) = 1;
1062 TREE_TYPE (*p) = void_type_node;
1063 /* For a BIND_EXPR, the body is operand 1. */
1064 p = &BIND_EXPR_BODY (*p);
1065 break;
1067 case CLEANUP_POINT_EXPR:
1068 case TRY_FINALLY_EXPR:
1069 case TRY_CATCH_EXPR:
1070 TREE_SIDE_EFFECTS (*p) = 1;
1071 TREE_TYPE (*p) = void_type_node;
1072 p = &TREE_OPERAND (*p, 0);
1073 break;
1075 case STATEMENT_LIST:
1077 tree_stmt_iterator i = tsi_last (*p);
1078 TREE_SIDE_EFFECTS (*p) = 1;
1079 TREE_TYPE (*p) = void_type_node;
1080 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1082 break;
1084 case COMPOUND_EXPR:
1085 /* Advance to the last statement. Set all container types to
1086 void. */
1087 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1089 TREE_SIDE_EFFECTS (*p) = 1;
1090 TREE_TYPE (*p) = void_type_node;
1092 break;
1094 case TRANSACTION_EXPR:
1095 TREE_SIDE_EFFECTS (*p) = 1;
1096 TREE_TYPE (*p) = void_type_node;
1097 p = &TRANSACTION_EXPR_BODY (*p);
1098 break;
1100 default:
1101 /* Assume that any tree upon which voidify_wrapper_expr is
1102 directly called is a wrapper, and that its body is op0. */
1103 if (p == &wrapper)
1105 TREE_SIDE_EFFECTS (*p) = 1;
1106 TREE_TYPE (*p) = void_type_node;
1107 p = &TREE_OPERAND (*p, 0);
1108 break;
1110 goto out;
1114 out:
1115 if (p == NULL || IS_EMPTY_STMT (*p))
1116 temp = NULL_TREE;
1117 else if (temp)
1119 /* The wrapper is on the RHS of an assignment that we're pushing
1120 down. */
1121 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1122 || TREE_CODE (temp) == MODIFY_EXPR);
1123 TREE_OPERAND (temp, 1) = *p;
1124 *p = temp;
1126 else
1128 temp = create_tmp_var (type, "retval");
1129 *p = build2 (INIT_EXPR, type, temp, *p);
1132 return temp;
1135 return NULL_TREE;
1138 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1139 a temporary through which they communicate. */
1141 static void
1142 build_stack_save_restore (gimple *save, gimple *restore)
1144 tree tmp_var;
1146 *save = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0);
1147 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1148 gimple_call_set_lhs (*save, tmp_var);
1150 *restore
1151 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE),
1152 1, tmp_var);
1155 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1157 static enum gimplify_status
1158 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1160 tree bind_expr = *expr_p;
1161 bool old_save_stack = gimplify_ctxp->save_stack;
1162 tree t;
1163 gimple gimple_bind;
1164 gimple_seq body, cleanup;
1165 gimple stack_save;
1167 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1169 /* Mark variables seen in this bind expr. */
1170 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1172 if (TREE_CODE (t) == VAR_DECL)
1174 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1176 /* Mark variable as local. */
1177 if (ctx && !DECL_EXTERNAL (t)
1178 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1179 || splay_tree_lookup (ctx->variables,
1180 (splay_tree_key) t) == NULL))
1181 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1183 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1185 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1186 cfun->has_local_explicit_reg_vars = true;
1189 /* Preliminarily mark non-addressed complex variables as eligible
1190 for promotion to gimple registers. We'll transform their uses
1191 as we find them. */
1192 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1193 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1194 && !TREE_THIS_VOLATILE (t)
1195 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1196 && !needs_to_live_in_memory (t))
1197 DECL_GIMPLE_REG_P (t) = 1;
1200 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1201 BIND_EXPR_BLOCK (bind_expr));
1202 gimple_push_bind_expr (gimple_bind);
1204 gimplify_ctxp->save_stack = false;
1206 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1207 body = NULL;
1208 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1209 gimple_bind_set_body (gimple_bind, body);
1211 cleanup = NULL;
1212 stack_save = NULL;
1213 if (gimplify_ctxp->save_stack)
1215 gimple stack_restore;
1217 /* Save stack on entry and restore it on exit. Add a try_finally
1218 block to achieve this. Note that mudflap depends on the
1219 format of the emitted code: see mx_register_decls(). */
1220 build_stack_save_restore (&stack_save, &stack_restore);
1222 gimplify_seq_add_stmt (&cleanup, stack_restore);
1225 /* Add clobbers for all variables that go out of scope. */
1226 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1228 if (TREE_CODE (t) == VAR_DECL
1229 && !is_global_var (t)
1230 && DECL_CONTEXT (t) == current_function_decl
1231 && !DECL_HARD_REGISTER (t)
1232 && !TREE_THIS_VOLATILE (t)
1233 && !DECL_HAS_VALUE_EXPR_P (t)
1234 /* Only care for variables that have to be in memory. Others
1235 will be rewritten into SSA names, hence moved to the top-level. */
1236 && !is_gimple_reg (t)
1237 && flag_stack_reuse != SR_NONE)
1239 tree clobber = build_constructor (TREE_TYPE (t),
1240 NULL);
1241 TREE_THIS_VOLATILE (clobber) = 1;
1242 gimplify_seq_add_stmt (&cleanup, gimple_build_assign (t, clobber));
1246 if (cleanup)
1248 gimple gs;
1249 gimple_seq new_body;
1251 new_body = NULL;
1252 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1253 GIMPLE_TRY_FINALLY);
1255 if (stack_save)
1256 gimplify_seq_add_stmt (&new_body, stack_save);
1257 gimplify_seq_add_stmt (&new_body, gs);
1258 gimple_bind_set_body (gimple_bind, new_body);
1261 gimplify_ctxp->save_stack = old_save_stack;
1262 gimple_pop_bind_expr ();
1264 gimplify_seq_add_stmt (pre_p, gimple_bind);
1266 if (temp)
1268 *expr_p = temp;
1269 return GS_OK;
1272 *expr_p = NULL_TREE;
1273 return GS_ALL_DONE;
1276 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1277 GIMPLE value, it is assigned to a new temporary and the statement is
1278 re-written to return the temporary.
1280 PRE_P points to the sequence where side effects that must happen before
1281 STMT should be stored. */
1283 static enum gimplify_status
1284 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1286 gimple ret;
1287 tree ret_expr = TREE_OPERAND (stmt, 0);
1288 tree result_decl, result;
1290 if (ret_expr == error_mark_node)
1291 return GS_ERROR;
1293 if (!ret_expr
1294 || TREE_CODE (ret_expr) == RESULT_DECL
1295 || ret_expr == error_mark_node)
1297 gimple ret = gimple_build_return (ret_expr);
1298 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1299 gimplify_seq_add_stmt (pre_p, ret);
1300 return GS_ALL_DONE;
1303 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1304 result_decl = NULL_TREE;
1305 else
1307 result_decl = TREE_OPERAND (ret_expr, 0);
1309 /* See through a return by reference. */
1310 if (TREE_CODE (result_decl) == INDIRECT_REF)
1311 result_decl = TREE_OPERAND (result_decl, 0);
1313 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1314 || TREE_CODE (ret_expr) == INIT_EXPR)
1315 && TREE_CODE (result_decl) == RESULT_DECL);
1318 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1319 Recall that aggregate_value_p is FALSE for any aggregate type that is
1320 returned in registers. If we're returning values in registers, then
1321 we don't want to extend the lifetime of the RESULT_DECL, particularly
1322 across another call. In addition, for those aggregates for which
1323 hard_function_value generates a PARALLEL, we'll die during normal
1324 expansion of structure assignments; there's special code in expand_return
1325 to handle this case that does not exist in expand_expr. */
1326 if (!result_decl)
1327 result = NULL_TREE;
1328 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1330 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1332 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1333 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1334 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1335 should be effectively allocated by the caller, i.e. all calls to
1336 this function must be subject to the Return Slot Optimization. */
1337 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1338 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1340 result = result_decl;
1342 else if (gimplify_ctxp->return_temp)
1343 result = gimplify_ctxp->return_temp;
1344 else
1346 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1348 /* ??? With complex control flow (usually involving abnormal edges),
1349 we can wind up warning about an uninitialized value for this. Due
1350 to how this variable is constructed and initialized, this is never
1351 true. Give up and never warn. */
1352 TREE_NO_WARNING (result) = 1;
1354 gimplify_ctxp->return_temp = result;
1357 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1358 Then gimplify the whole thing. */
1359 if (result != result_decl)
1360 TREE_OPERAND (ret_expr, 0) = result;
1362 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1364 ret = gimple_build_return (result);
1365 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1366 gimplify_seq_add_stmt (pre_p, ret);
1368 return GS_ALL_DONE;
1371 /* Gimplify a variable-length array DECL. */
1373 static void
1374 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1376 /* This is a variable-sized decl. Simplify its size and mark it
1377 for deferred expansion. Note that mudflap depends on the format
1378 of the emitted code: see mx_register_decls(). */
1379 tree t, addr, ptr_type;
1381 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1382 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1384 /* Don't mess with a DECL_VALUE_EXPR set by the front-end. */
1385 if (DECL_HAS_VALUE_EXPR_P (decl))
1386 return;
1388 /* All occurrences of this decl in final gimplified code will be
1389 replaced by indirection. Setting DECL_VALUE_EXPR does two
1390 things: First, it lets the rest of the gimplifier know what
1391 replacement to use. Second, it lets the debug info know
1392 where to find the value. */
1393 ptr_type = build_pointer_type (TREE_TYPE (decl));
1394 addr = create_tmp_var (ptr_type, get_name (decl));
1395 DECL_IGNORED_P (addr) = 0;
1396 t = build_fold_indirect_ref (addr);
1397 TREE_THIS_NOTRAP (t) = 1;
1398 SET_DECL_VALUE_EXPR (decl, t);
1399 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1401 t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
1402 t = build_call_expr (t, 2, DECL_SIZE_UNIT (decl),
1403 size_int (DECL_ALIGN (decl)));
1404 /* The call has been built for a variable-sized object. */
1405 CALL_ALLOCA_FOR_VAR_P (t) = 1;
1406 t = fold_convert (ptr_type, t);
1407 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1409 gimplify_and_add (t, seq_p);
1411 /* Indicate that we need to restore the stack level when the
1412 enclosing BIND_EXPR is exited. */
1413 gimplify_ctxp->save_stack = true;
1416 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1417 and initialization explicit. */
1419 static enum gimplify_status
1420 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1422 tree stmt = *stmt_p;
1423 tree decl = DECL_EXPR_DECL (stmt);
1425 *stmt_p = NULL_TREE;
1427 if (TREE_TYPE (decl) == error_mark_node)
1428 return GS_ERROR;
1430 if ((TREE_CODE (decl) == TYPE_DECL
1431 || TREE_CODE (decl) == VAR_DECL)
1432 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1433 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1435 /* ??? DECL_ORIGINAL_TYPE is streamed for LTO so it needs to be gimplified
1436 in case its size expressions contain problematic nodes like CALL_EXPR. */
1437 if (TREE_CODE (decl) == TYPE_DECL
1438 && DECL_ORIGINAL_TYPE (decl)
1439 && !TYPE_SIZES_GIMPLIFIED (DECL_ORIGINAL_TYPE (decl)))
1440 gimplify_type_sizes (DECL_ORIGINAL_TYPE (decl), seq_p);
1442 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1444 tree init = DECL_INITIAL (decl);
1446 if (TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1447 || (!TREE_STATIC (decl)
1448 && flag_stack_check == GENERIC_STACK_CHECK
1449 && compare_tree_int (DECL_SIZE_UNIT (decl),
1450 STACK_CHECK_MAX_VAR_SIZE) > 0))
1451 gimplify_vla_decl (decl, seq_p);
1453 /* Some front ends do not explicitly declare all anonymous
1454 artificial variables. We compensate here by declaring the
1455 variables, though it would be better if the front ends would
1456 explicitly declare them. */
1457 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1458 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1459 gimple_add_tmp_var (decl);
1461 if (init && init != error_mark_node)
1463 if (!TREE_STATIC (decl))
1465 DECL_INITIAL (decl) = NULL_TREE;
1466 init = build2 (INIT_EXPR, void_type_node, decl, init);
1467 gimplify_and_add (init, seq_p);
1468 ggc_free (init);
1470 else
1471 /* We must still examine initializers for static variables
1472 as they may contain a label address. */
1473 walk_tree (&init, force_labels_r, NULL, NULL);
1477 return GS_ALL_DONE;
1480 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1481 and replacing the LOOP_EXPR with goto, but if the loop contains an
1482 EXIT_EXPR, we need to append a label for it to jump to. */
1484 static enum gimplify_status
1485 gimplify_loop_expr (tree *expr_p, gimple_seq *pre_p)
1487 tree saved_label = gimplify_ctxp->exit_label;
1488 tree start_label = create_artificial_label (UNKNOWN_LOCATION);
1490 gimplify_seq_add_stmt (pre_p, gimple_build_label (start_label));
1492 gimplify_ctxp->exit_label = NULL_TREE;
1494 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1496 gimplify_seq_add_stmt (pre_p, gimple_build_goto (start_label));
1498 if (gimplify_ctxp->exit_label)
1499 gimplify_seq_add_stmt (pre_p,
1500 gimple_build_label (gimplify_ctxp->exit_label));
1502 gimplify_ctxp->exit_label = saved_label;
1504 *expr_p = NULL;
1505 return GS_ALL_DONE;
1508 /* Gimplify a statement list onto a sequence. These may be created either
1509 by an enlightened front-end, or by shortcut_cond_expr. */
1511 static enum gimplify_status
1512 gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
1514 tree temp = voidify_wrapper_expr (*expr_p, NULL);
1516 tree_stmt_iterator i = tsi_start (*expr_p);
1518 while (!tsi_end_p (i))
1520 gimplify_stmt (tsi_stmt_ptr (i), pre_p);
1521 tsi_delink (&i);
1524 if (temp)
1526 *expr_p = temp;
1527 return GS_OK;
1530 return GS_ALL_DONE;
1533 /* Compare two case labels. Because the front end should already have
1534 made sure that case ranges do not overlap, it is enough to only compare
1535 the CASE_LOW values of each case label. */
1537 static int
1538 compare_case_labels (const void *p1, const void *p2)
1540 const_tree const case1 = *(const_tree const*)p1;
1541 const_tree const case2 = *(const_tree const*)p2;
1543 /* The 'default' case label always goes first. */
1544 if (!CASE_LOW (case1))
1545 return -1;
1546 else if (!CASE_LOW (case2))
1547 return 1;
1548 else
1549 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1552 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1554 void
1555 sort_case_labels (vec<tree> label_vec)
1557 label_vec.qsort (compare_case_labels);
1560 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
1562 LABELS is a vector that contains all case labels to look at.
1564 INDEX_TYPE is the type of the switch index expression. Case labels
1565 in LABELS are discarded if their values are not in the value range
1566 covered by INDEX_TYPE. The remaining case label values are folded
1567 to INDEX_TYPE.
1569 If a default case exists in LABELS, it is removed from LABELS and
1570 returned in DEFAULT_CASEP. If no default case exists, but the
1571 case labels already cover the whole range of INDEX_TYPE, a default
1572 case is returned pointing to one of the existing case labels.
1573 Otherwise DEFAULT_CASEP is set to NULL_TREE.
1575 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
1576 apply and no action is taken regardless of whether a default case is
1577 found or not. */
1579 void
1580 preprocess_case_label_vec_for_gimple (vec<tree> labels,
1581 tree index_type,
1582 tree *default_casep)
1584 tree min_value, max_value;
1585 tree default_case = NULL_TREE;
1586 size_t i, len;
1588 i = 0;
1589 min_value = TYPE_MIN_VALUE (index_type);
1590 max_value = TYPE_MAX_VALUE (index_type);
1591 while (i < labels.length ())
1593 tree elt = labels[i];
1594 tree low = CASE_LOW (elt);
1595 tree high = CASE_HIGH (elt);
1596 bool remove_element = FALSE;
1598 if (low)
1600 gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
1601 gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
1603 /* This is a non-default case label, i.e. it has a value.
1605 See if the case label is reachable within the range of
1606 the index type. Remove out-of-range case values. Turn
1607 case ranges into a canonical form (high > low strictly)
1608 and convert the case label values to the index type.
1610 NB: The type of gimple_switch_index() may be the promoted
1611 type, but the case labels retain the original type. */
1613 if (high)
1615 /* This is a case range. Discard empty ranges.
1616 If the bounds or the range are equal, turn this
1617 into a simple (one-value) case. */
1618 int cmp = tree_int_cst_compare (high, low);
1619 if (cmp < 0)
1620 remove_element = TRUE;
1621 else if (cmp == 0)
1622 high = NULL_TREE;
1625 if (! high)
1627 /* If the simple case value is unreachable, ignore it. */
1628 if ((TREE_CODE (min_value) == INTEGER_CST
1629 && tree_int_cst_compare (low, min_value) < 0)
1630 || (TREE_CODE (max_value) == INTEGER_CST
1631 && tree_int_cst_compare (low, max_value) > 0))
1632 remove_element = TRUE;
1633 else
1634 low = fold_convert (index_type, low);
1636 else
1638 /* If the entire case range is unreachable, ignore it. */
1639 if ((TREE_CODE (min_value) == INTEGER_CST
1640 && tree_int_cst_compare (high, min_value) < 0)
1641 || (TREE_CODE (max_value) == INTEGER_CST
1642 && tree_int_cst_compare (low, max_value) > 0))
1643 remove_element = TRUE;
1644 else
1646 /* If the lower bound is less than the index type's
1647 minimum value, truncate the range bounds. */
1648 if (TREE_CODE (min_value) == INTEGER_CST
1649 && tree_int_cst_compare (low, min_value) < 0)
1650 low = min_value;
1651 low = fold_convert (index_type, low);
1653 /* If the upper bound is greater than the index type's
1654 maximum value, truncate the range bounds. */
1655 if (TREE_CODE (max_value) == INTEGER_CST
1656 && tree_int_cst_compare (high, max_value) > 0)
1657 high = max_value;
1658 high = fold_convert (index_type, high);
1660 /* We may have folded a case range to a one-value case. */
1661 if (tree_int_cst_equal (low, high))
1662 high = NULL_TREE;
1666 CASE_LOW (elt) = low;
1667 CASE_HIGH (elt) = high;
1669 else
1671 gcc_assert (!default_case);
1672 default_case = elt;
1673 /* The default case must be passed separately to the
1674 gimple_build_switch routine. But if DEFAULT_CASEP
1675 is NULL, we do not remove the default case (it would
1676 be completely lost). */
1677 if (default_casep)
1678 remove_element = TRUE;
1681 if (remove_element)
1682 labels.ordered_remove (i);
1683 else
1684 i++;
1686 len = i;
1688 if (!labels.is_empty ())
1689 sort_case_labels (labels);
1691 if (default_casep && !default_case)
1693 /* If the switch has no default label, add one, so that we jump
1694 around the switch body. If the labels already cover the whole
1695 range of the switch index_type, add the default label pointing
1696 to one of the existing labels. */
1697 if (len
1698 && TYPE_MIN_VALUE (index_type)
1699 && TYPE_MAX_VALUE (index_type)
1700 && tree_int_cst_equal (CASE_LOW (labels[0]),
1701 TYPE_MIN_VALUE (index_type)))
1703 tree low, high = CASE_HIGH (labels[len - 1]);
1704 if (!high)
1705 high = CASE_LOW (labels[len - 1]);
1706 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
1708 for (i = 1; i < len; i++)
1710 high = CASE_LOW (labels[i]);
1711 low = CASE_HIGH (labels[i - 1]);
1712 if (!low)
1713 low = CASE_LOW (labels[i - 1]);
1714 if ((TREE_INT_CST_LOW (low) + 1
1715 != TREE_INT_CST_LOW (high))
1716 || (TREE_INT_CST_HIGH (low)
1717 + (TREE_INT_CST_LOW (high) == 0)
1718 != TREE_INT_CST_HIGH (high)))
1719 break;
1721 if (i == len)
1723 tree label = CASE_LABEL (labels[0]);
1724 default_case = build_case_label (NULL_TREE, NULL_TREE,
1725 label);
1731 if (default_casep)
1732 *default_casep = default_case;
1735 /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
1736 branch to. */
1738 static enum gimplify_status
1739 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1741 tree switch_expr = *expr_p;
1742 gimple_seq switch_body_seq = NULL;
1743 enum gimplify_status ret;
1744 tree index_type = TREE_TYPE (switch_expr);
1745 if (index_type == NULL_TREE)
1746 index_type = TREE_TYPE (SWITCH_COND (switch_expr));
1748 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1749 fb_rvalue);
1750 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1751 return ret;
1753 if (SWITCH_BODY (switch_expr))
1755 vec<tree> labels;
1756 vec<tree> saved_labels;
1757 tree default_case = NULL_TREE;
1758 gimple gimple_switch;
1760 /* If someone can be bothered to fill in the labels, they can
1761 be bothered to null out the body too. */
1762 gcc_assert (!SWITCH_LABELS (switch_expr));
1764 /* Save old labels, get new ones from body, then restore the old
1765 labels. Save all the things from the switch body to append after. */
1766 saved_labels = gimplify_ctxp->case_labels;
1767 gimplify_ctxp->case_labels.create (8);
1769 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1770 labels = gimplify_ctxp->case_labels;
1771 gimplify_ctxp->case_labels = saved_labels;
1773 preprocess_case_label_vec_for_gimple (labels, index_type,
1774 &default_case);
1776 if (!default_case)
1778 gimple new_default;
1780 default_case
1781 = build_case_label (NULL_TREE, NULL_TREE,
1782 create_artificial_label (UNKNOWN_LOCATION));
1783 new_default = gimple_build_label (CASE_LABEL (default_case));
1784 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1787 gimple_switch = gimple_build_switch (SWITCH_COND (switch_expr),
1788 default_case, labels);
1789 gimplify_seq_add_stmt (pre_p, gimple_switch);
1790 gimplify_seq_add_seq (pre_p, switch_body_seq);
1791 labels.release ();
1793 else
1794 gcc_assert (SWITCH_LABELS (switch_expr));
1796 return GS_ALL_DONE;
1799 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1801 static enum gimplify_status
1802 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1804 struct gimplify_ctx *ctxp;
1805 gimple gimple_label;
1807 /* Invalid OpenMP programs can play Duff's Device type games with
1808 #pragma omp parallel. At least in the C front end, we don't
1809 detect such invalid branches until after gimplification. */
1810 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1811 if (ctxp->case_labels.exists ())
1812 break;
1814 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1815 ctxp->case_labels.safe_push (*expr_p);
1816 gimplify_seq_add_stmt (pre_p, gimple_label);
1818 return GS_ALL_DONE;
1821 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1822 if necessary. */
1824 tree
1825 build_and_jump (tree *label_p)
1827 if (label_p == NULL)
1828 /* If there's nowhere to jump, just fall through. */
1829 return NULL_TREE;
1831 if (*label_p == NULL_TREE)
1833 tree label = create_artificial_label (UNKNOWN_LOCATION);
1834 *label_p = label;
1837 return build1 (GOTO_EXPR, void_type_node, *label_p);
1840 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1841 This also involves building a label to jump to and communicating it to
1842 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1844 static enum gimplify_status
1845 gimplify_exit_expr (tree *expr_p)
1847 tree cond = TREE_OPERAND (*expr_p, 0);
1848 tree expr;
1850 expr = build_and_jump (&gimplify_ctxp->exit_label);
1851 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1852 *expr_p = expr;
1854 return GS_OK;
1857 /* A helper function to be called via walk_tree. Mark all labels under *TP
1858 as being forced. To be called for DECL_INITIAL of static variables. */
1860 tree
1861 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1863 if (TYPE_P (*tp))
1864 *walk_subtrees = 0;
1865 if (TREE_CODE (*tp) == LABEL_DECL)
1866 FORCED_LABEL (*tp) = 1;
1868 return NULL_TREE;
1871 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1872 different from its canonical type, wrap the whole thing inside a
1873 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1874 type.
1876 The canonical type of a COMPONENT_REF is the type of the field being
1877 referenced--unless the field is a bit-field which can be read directly
1878 in a smaller mode, in which case the canonical type is the
1879 sign-appropriate type corresponding to that mode. */
1881 static void
1882 canonicalize_component_ref (tree *expr_p)
1884 tree expr = *expr_p;
1885 tree type;
1887 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1889 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1890 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1891 else
1892 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1894 /* One could argue that all the stuff below is not necessary for
1895 the non-bitfield case and declare it a FE error if type
1896 adjustment would be needed. */
1897 if (TREE_TYPE (expr) != type)
1899 #ifdef ENABLE_TYPES_CHECKING
1900 tree old_type = TREE_TYPE (expr);
1901 #endif
1902 int type_quals;
1904 /* We need to preserve qualifiers and propagate them from
1905 operand 0. */
1906 type_quals = TYPE_QUALS (type)
1907 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1908 if (TYPE_QUALS (type) != type_quals)
1909 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1911 /* Set the type of the COMPONENT_REF to the underlying type. */
1912 TREE_TYPE (expr) = type;
1914 #ifdef ENABLE_TYPES_CHECKING
1915 /* It is now a FE error, if the conversion from the canonical
1916 type to the original expression type is not useless. */
1917 gcc_assert (useless_type_conversion_p (old_type, type));
1918 #endif
1922 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1923 to foo, embed that change in the ADDR_EXPR by converting
1924 T array[U];
1925 (T *)&array
1927 &array[L]
1928 where L is the lower bound. For simplicity, only do this for constant
1929 lower bound.
1930 The constraint is that the type of &array[L] is trivially convertible
1931 to T *. */
1933 static void
1934 canonicalize_addr_expr (tree *expr_p)
1936 tree expr = *expr_p;
1937 tree addr_expr = TREE_OPERAND (expr, 0);
1938 tree datype, ddatype, pddatype;
1940 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1941 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1942 || TREE_CODE (addr_expr) != ADDR_EXPR)
1943 return;
1945 /* The addr_expr type should be a pointer to an array. */
1946 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1947 if (TREE_CODE (datype) != ARRAY_TYPE)
1948 return;
1950 /* The pointer to element type shall be trivially convertible to
1951 the expression pointer type. */
1952 ddatype = TREE_TYPE (datype);
1953 pddatype = build_pointer_type (ddatype);
1954 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1955 pddatype))
1956 return;
1958 /* The lower bound and element sizes must be constant. */
1959 if (!TYPE_SIZE_UNIT (ddatype)
1960 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1961 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1962 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1963 return;
1965 /* All checks succeeded. Build a new node to merge the cast. */
1966 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1967 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1968 NULL_TREE, NULL_TREE);
1969 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1971 /* We can have stripped a required restrict qualifier above. */
1972 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1973 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1976 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1977 underneath as appropriate. */
1979 static enum gimplify_status
1980 gimplify_conversion (tree *expr_p)
1982 location_t loc = EXPR_LOCATION (*expr_p);
1983 gcc_assert (CONVERT_EXPR_P (*expr_p));
1985 /* Then strip away all but the outermost conversion. */
1986 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1988 /* And remove the outermost conversion if it's useless. */
1989 if (tree_ssa_useless_type_conversion (*expr_p))
1990 *expr_p = TREE_OPERAND (*expr_p, 0);
1992 /* If we still have a conversion at the toplevel,
1993 then canonicalize some constructs. */
1994 if (CONVERT_EXPR_P (*expr_p))
1996 tree sub = TREE_OPERAND (*expr_p, 0);
1998 /* If a NOP conversion is changing the type of a COMPONENT_REF
1999 expression, then canonicalize its type now in order to expose more
2000 redundant conversions. */
2001 if (TREE_CODE (sub) == COMPONENT_REF)
2002 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
2004 /* If a NOP conversion is changing a pointer to array of foo
2005 to a pointer to foo, embed that change in the ADDR_EXPR. */
2006 else if (TREE_CODE (sub) == ADDR_EXPR)
2007 canonicalize_addr_expr (expr_p);
2010 /* If we have a conversion to a non-register type force the
2011 use of a VIEW_CONVERT_EXPR instead. */
2012 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
2013 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
2014 TREE_OPERAND (*expr_p, 0));
2016 return GS_OK;
2019 /* Nonlocal VLAs seen in the current function. */
2020 static struct pointer_set_t *nonlocal_vlas;
2022 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
2023 DECL_VALUE_EXPR, and it's worth re-examining things. */
2025 static enum gimplify_status
2026 gimplify_var_or_parm_decl (tree *expr_p)
2028 tree decl = *expr_p;
2030 /* ??? If this is a local variable, and it has not been seen in any
2031 outer BIND_EXPR, then it's probably the result of a duplicate
2032 declaration, for which we've already issued an error. It would
2033 be really nice if the front end wouldn't leak these at all.
2034 Currently the only known culprit is C++ destructors, as seen
2035 in g++.old-deja/g++.jason/binding.C. */
2036 if (TREE_CODE (decl) == VAR_DECL
2037 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
2038 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
2039 && decl_function_context (decl) == current_function_decl)
2041 gcc_assert (seen_error ());
2042 return GS_ERROR;
2045 /* When within an OpenMP context, notice uses of variables. */
2046 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
2047 return GS_ALL_DONE;
2049 /* If the decl is an alias for another expression, substitute it now. */
2050 if (DECL_HAS_VALUE_EXPR_P (decl))
2052 tree value_expr = DECL_VALUE_EXPR (decl);
2054 /* For referenced nonlocal VLAs add a decl for debugging purposes
2055 to the current function. */
2056 if (TREE_CODE (decl) == VAR_DECL
2057 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
2058 && nonlocal_vlas != NULL
2059 && TREE_CODE (value_expr) == INDIRECT_REF
2060 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
2061 && decl_function_context (decl) != current_function_decl)
2063 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
2064 while (ctx && ctx->region_type == ORT_WORKSHARE)
2065 ctx = ctx->outer_context;
2066 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
2068 tree copy = copy_node (decl), block;
2070 lang_hooks.dup_lang_specific_decl (copy);
2071 SET_DECL_RTL (copy, 0);
2072 TREE_USED (copy) = 1;
2073 block = DECL_INITIAL (current_function_decl);
2074 DECL_CHAIN (copy) = BLOCK_VARS (block);
2075 BLOCK_VARS (block) = copy;
2076 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
2077 DECL_HAS_VALUE_EXPR_P (copy) = 1;
2081 *expr_p = unshare_expr (value_expr);
2082 return GS_OK;
2085 return GS_ALL_DONE;
2088 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
2089 node *EXPR_P.
2091 compound_lval
2092 : min_lval '[' val ']'
2093 | min_lval '.' ID
2094 | compound_lval '[' val ']'
2095 | compound_lval '.' ID
2097 This is not part of the original SIMPLE definition, which separates
2098 array and member references, but it seems reasonable to handle them
2099 together. Also, this way we don't run into problems with union
2100 aliasing; gcc requires that for accesses through a union to alias, the
2101 union reference must be explicit, which was not always the case when we
2102 were splitting up array and member refs.
2104 PRE_P points to the sequence where side effects that must happen before
2105 *EXPR_P should be stored.
2107 POST_P points to the sequence where side effects that must happen after
2108 *EXPR_P should be stored. */
2110 static enum gimplify_status
2111 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2112 fallback_t fallback)
2114 tree *p;
2115 vec<tree> expr_stack;
2116 enum gimplify_status ret = GS_ALL_DONE, tret;
2117 int i;
2118 location_t loc = EXPR_LOCATION (*expr_p);
2119 tree expr = *expr_p;
2121 /* Create a stack of the subexpressions so later we can walk them in
2122 order from inner to outer. */
2123 expr_stack.create (10);
2125 /* We can handle anything that get_inner_reference can deal with. */
2126 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
2128 restart:
2129 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2130 if (TREE_CODE (*p) == INDIRECT_REF)
2131 *p = fold_indirect_ref_loc (loc, *p);
2133 if (handled_component_p (*p))
2135 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2136 additional COMPONENT_REFs. */
2137 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
2138 && gimplify_var_or_parm_decl (p) == GS_OK)
2139 goto restart;
2140 else
2141 break;
2143 expr_stack.safe_push (*p);
2146 gcc_assert (expr_stack.length ());
2148 /* Now EXPR_STACK is a stack of pointers to all the refs we've
2149 walked through and P points to the innermost expression.
2151 Java requires that we elaborated nodes in source order. That
2152 means we must gimplify the inner expression followed by each of
2153 the indices, in order. But we can't gimplify the inner
2154 expression until we deal with any variable bounds, sizes, or
2155 positions in order to deal with PLACEHOLDER_EXPRs.
2157 So we do this in three steps. First we deal with the annotations
2158 for any variables in the components, then we gimplify the base,
2159 then we gimplify any indices, from left to right. */
2160 for (i = expr_stack.length () - 1; i >= 0; i--)
2162 tree t = expr_stack[i];
2164 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2166 /* Gimplify the low bound and element type size and put them into
2167 the ARRAY_REF. If these values are set, they have already been
2168 gimplified. */
2169 if (TREE_OPERAND (t, 2) == NULL_TREE)
2171 tree low = unshare_expr (array_ref_low_bound (t));
2172 if (!is_gimple_min_invariant (low))
2174 TREE_OPERAND (t, 2) = low;
2175 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2176 post_p, is_gimple_reg,
2177 fb_rvalue);
2178 ret = MIN (ret, tret);
2181 else
2183 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2184 is_gimple_reg, fb_rvalue);
2185 ret = MIN (ret, tret);
2188 if (TREE_OPERAND (t, 3) == NULL_TREE)
2190 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2191 tree elmt_size = unshare_expr (array_ref_element_size (t));
2192 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2194 /* Divide the element size by the alignment of the element
2195 type (above). */
2196 elmt_size
2197 = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2199 if (!is_gimple_min_invariant (elmt_size))
2201 TREE_OPERAND (t, 3) = elmt_size;
2202 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2203 post_p, is_gimple_reg,
2204 fb_rvalue);
2205 ret = MIN (ret, tret);
2208 else
2210 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
2211 is_gimple_reg, fb_rvalue);
2212 ret = MIN (ret, tret);
2215 else if (TREE_CODE (t) == COMPONENT_REF)
2217 /* Set the field offset into T and gimplify it. */
2218 if (TREE_OPERAND (t, 2) == NULL_TREE)
2220 tree offset = unshare_expr (component_ref_field_offset (t));
2221 tree field = TREE_OPERAND (t, 1);
2222 tree factor
2223 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2225 /* Divide the offset by its alignment. */
2226 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2228 if (!is_gimple_min_invariant (offset))
2230 TREE_OPERAND (t, 2) = offset;
2231 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2232 post_p, is_gimple_reg,
2233 fb_rvalue);
2234 ret = MIN (ret, tret);
2237 else
2239 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2240 is_gimple_reg, fb_rvalue);
2241 ret = MIN (ret, tret);
2246 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2247 so as to match the min_lval predicate. Failure to do so may result
2248 in the creation of large aggregate temporaries. */
2249 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2250 fallback | fb_lvalue);
2251 ret = MIN (ret, tret);
2253 /* And finally, the indices and operands of ARRAY_REF. During this
2254 loop we also remove any useless conversions. */
2255 for (; expr_stack.length () > 0; )
2257 tree t = expr_stack.pop ();
2259 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2261 /* Gimplify the dimension. */
2262 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2264 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2265 is_gimple_val, fb_rvalue);
2266 ret = MIN (ret, tret);
2270 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
2272 /* The innermost expression P may have originally had
2273 TREE_SIDE_EFFECTS set which would have caused all the outer
2274 expressions in *EXPR_P leading to P to also have had
2275 TREE_SIDE_EFFECTS set. */
2276 recalculate_side_effects (t);
2279 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2280 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
2282 canonicalize_component_ref (expr_p);
2285 expr_stack.release ();
2287 gcc_assert (*expr_p == expr || ret != GS_ALL_DONE);
2289 return ret;
2292 /* Gimplify the self modifying expression pointed to by EXPR_P
2293 (++, --, +=, -=).
2295 PRE_P points to the list where side effects that must happen before
2296 *EXPR_P should be stored.
2298 POST_P points to the list where side effects that must happen after
2299 *EXPR_P should be stored.
2301 WANT_VALUE is nonzero iff we want to use the value of this expression
2302 in another expression.
2304 ARITH_TYPE is the type the computation should be performed in. */
2306 enum gimplify_status
2307 gimplify_self_mod_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2308 bool want_value, tree arith_type)
2310 enum tree_code code;
2311 tree lhs, lvalue, rhs, t1;
2312 gimple_seq post = NULL, *orig_post_p = post_p;
2313 bool postfix;
2314 enum tree_code arith_code;
2315 enum gimplify_status ret;
2316 location_t loc = EXPR_LOCATION (*expr_p);
2318 code = TREE_CODE (*expr_p);
2320 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
2321 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
2323 /* Prefix or postfix? */
2324 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
2325 /* Faster to treat as prefix if result is not used. */
2326 postfix = want_value;
2327 else
2328 postfix = false;
2330 /* For postfix, make sure the inner expression's post side effects
2331 are executed after side effects from this expression. */
2332 if (postfix)
2333 post_p = &post;
2335 /* Add or subtract? */
2336 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2337 arith_code = PLUS_EXPR;
2338 else
2339 arith_code = MINUS_EXPR;
2341 /* Gimplify the LHS into a GIMPLE lvalue. */
2342 lvalue = TREE_OPERAND (*expr_p, 0);
2343 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2344 if (ret == GS_ERROR)
2345 return ret;
2347 /* Extract the operands to the arithmetic operation. */
2348 lhs = lvalue;
2349 rhs = TREE_OPERAND (*expr_p, 1);
2351 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2352 that as the result value and in the postqueue operation. */
2353 if (postfix)
2355 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
2356 if (ret == GS_ERROR)
2357 return ret;
2359 lhs = get_initialized_tmp_var (lhs, pre_p, NULL);
2362 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2363 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
2365 rhs = convert_to_ptrofftype_loc (loc, rhs);
2366 if (arith_code == MINUS_EXPR)
2367 rhs = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (rhs), rhs);
2368 t1 = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (*expr_p), lhs, rhs);
2370 else
2371 t1 = fold_convert (TREE_TYPE (*expr_p),
2372 fold_build2 (arith_code, arith_type,
2373 fold_convert (arith_type, lhs),
2374 fold_convert (arith_type, rhs)));
2376 if (postfix)
2378 gimplify_assign (lvalue, t1, pre_p);
2379 gimplify_seq_add_seq (orig_post_p, post);
2380 *expr_p = lhs;
2381 return GS_ALL_DONE;
2383 else
2385 *expr_p = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
2386 return GS_OK;
2390 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2392 static void
2393 maybe_with_size_expr (tree *expr_p)
2395 tree expr = *expr_p;
2396 tree type = TREE_TYPE (expr);
2397 tree size;
2399 /* If we've already wrapped this or the type is error_mark_node, we can't do
2400 anything. */
2401 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2402 || type == error_mark_node)
2403 return;
2405 /* If the size isn't known or is a constant, we have nothing to do. */
2406 size = TYPE_SIZE_UNIT (type);
2407 if (!size || TREE_CODE (size) == INTEGER_CST)
2408 return;
2410 /* Otherwise, make a WITH_SIZE_EXPR. */
2411 size = unshare_expr (size);
2412 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2413 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2416 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2417 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2418 the CALL_EXPR. */
2420 static enum gimplify_status
2421 gimplify_arg (tree *arg_p, gimple_seq *pre_p, location_t call_location)
2423 bool (*test) (tree);
2424 fallback_t fb;
2426 /* In general, we allow lvalues for function arguments to avoid
2427 extra overhead of copying large aggregates out of even larger
2428 aggregates into temporaries only to copy the temporaries to
2429 the argument list. Make optimizers happy by pulling out to
2430 temporaries those types that fit in registers. */
2431 if (is_gimple_reg_type (TREE_TYPE (*arg_p)))
2432 test = is_gimple_val, fb = fb_rvalue;
2433 else
2435 test = is_gimple_lvalue, fb = fb_either;
2436 /* Also strip a TARGET_EXPR that would force an extra copy. */
2437 if (TREE_CODE (*arg_p) == TARGET_EXPR)
2439 tree init = TARGET_EXPR_INITIAL (*arg_p);
2440 if (init
2441 && !VOID_TYPE_P (TREE_TYPE (init)))
2442 *arg_p = init;
2446 /* If this is a variable sized type, we must remember the size. */
2447 maybe_with_size_expr (arg_p);
2449 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2450 /* Make sure arguments have the same location as the function call
2451 itself. */
2452 protected_set_expr_location (*arg_p, call_location);
2454 /* There is a sequence point before a function call. Side effects in
2455 the argument list must occur before the actual call. So, when
2456 gimplifying arguments, force gimplify_expr to use an internal
2457 post queue which is then appended to the end of PRE_P. */
2458 return gimplify_expr (arg_p, pre_p, NULL, test, fb);
2461 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2462 WANT_VALUE is true if the result of the call is desired. */
2464 static enum gimplify_status
2465 gimplify_call_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
2467 tree fndecl, parms, p, fnptrtype;
2468 enum gimplify_status ret;
2469 int i, nargs;
2470 gimple call;
2471 bool builtin_va_start_p = FALSE;
2472 location_t loc = EXPR_LOCATION (*expr_p);
2474 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2476 /* For reliable diagnostics during inlining, it is necessary that
2477 every call_expr be annotated with file and line. */
2478 if (! EXPR_HAS_LOCATION (*expr_p))
2479 SET_EXPR_LOCATION (*expr_p, input_location);
2481 /* This may be a call to a builtin function.
2483 Builtin function calls may be transformed into different
2484 (and more efficient) builtin function calls under certain
2485 circumstances. Unfortunately, gimplification can muck things
2486 up enough that the builtin expanders are not aware that certain
2487 transformations are still valid.
2489 So we attempt transformation/gimplification of the call before
2490 we gimplify the CALL_EXPR. At this time we do not manage to
2491 transform all calls in the same manner as the expanders do, but
2492 we do transform most of them. */
2493 fndecl = get_callee_fndecl (*expr_p);
2494 if (fndecl
2495 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
2496 switch (DECL_FUNCTION_CODE (fndecl))
2498 case BUILT_IN_VA_START:
2500 builtin_va_start_p = TRUE;
2501 if (call_expr_nargs (*expr_p) < 2)
2503 error ("too few arguments to function %<va_start%>");
2504 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2505 return GS_OK;
2508 if (fold_builtin_next_arg (*expr_p, true))
2510 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2511 return GS_OK;
2513 break;
2515 case BUILT_IN_LINE:
2517 expanded_location loc = expand_location (EXPR_LOCATION (*expr_p));
2518 *expr_p = build_int_cst (TREE_TYPE (*expr_p), loc.line);
2519 return GS_OK;
2521 case BUILT_IN_FILE:
2523 expanded_location loc = expand_location (EXPR_LOCATION (*expr_p));
2524 *expr_p = build_string_literal (strlen (loc.file) + 1, loc.file);
2525 return GS_OK;
2527 case BUILT_IN_FUNCTION:
2529 const char *function;
2530 function = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
2531 *expr_p = build_string_literal (strlen (function) + 1, function);
2532 return GS_OK;
2534 default:
2537 if (fndecl && DECL_BUILT_IN (fndecl))
2539 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2540 if (new_tree && new_tree != *expr_p)
2542 /* There was a transformation of this call which computes the
2543 same value, but in a more efficient way. Return and try
2544 again. */
2545 *expr_p = new_tree;
2546 return GS_OK;
2550 /* Remember the original function pointer type. */
2551 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2553 /* There is a sequence point before the call, so any side effects in
2554 the calling expression must occur before the actual call. Force
2555 gimplify_expr to use an internal post queue. */
2556 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2557 is_gimple_call_addr, fb_rvalue);
2559 nargs = call_expr_nargs (*expr_p);
2561 /* Get argument types for verification. */
2562 fndecl = get_callee_fndecl (*expr_p);
2563 parms = NULL_TREE;
2564 if (fndecl)
2565 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2566 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2567 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2569 if (fndecl && DECL_ARGUMENTS (fndecl))
2570 p = DECL_ARGUMENTS (fndecl);
2571 else if (parms)
2572 p = parms;
2573 else
2574 p = NULL_TREE;
2575 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2578 /* If the last argument is __builtin_va_arg_pack () and it is not
2579 passed as a named argument, decrease the number of CALL_EXPR
2580 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2581 if (!p
2582 && i < nargs
2583 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2585 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2586 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2588 if (last_arg_fndecl
2589 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2590 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2591 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2593 tree call = *expr_p;
2595 --nargs;
2596 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2597 CALL_EXPR_FN (call),
2598 nargs, CALL_EXPR_ARGP (call));
2600 /* Copy all CALL_EXPR flags, location and block, except
2601 CALL_EXPR_VA_ARG_PACK flag. */
2602 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2603 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2604 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2605 = CALL_EXPR_RETURN_SLOT_OPT (call);
2606 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2607 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2609 /* Set CALL_EXPR_VA_ARG_PACK. */
2610 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2614 /* Finally, gimplify the function arguments. */
2615 if (nargs > 0)
2617 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2618 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2619 PUSH_ARGS_REVERSED ? i-- : i++)
2621 enum gimplify_status t;
2623 /* Avoid gimplifying the second argument to va_start, which needs to
2624 be the plain PARM_DECL. */
2625 if ((i != 1) || !builtin_va_start_p)
2627 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2628 EXPR_LOCATION (*expr_p));
2630 if (t == GS_ERROR)
2631 ret = GS_ERROR;
2636 /* Verify the function result. */
2637 if (want_value && fndecl
2638 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2640 error_at (loc, "using result of function returning %<void%>");
2641 ret = GS_ERROR;
2644 /* Try this again in case gimplification exposed something. */
2645 if (ret != GS_ERROR)
2647 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2649 if (new_tree && new_tree != *expr_p)
2651 /* There was a transformation of this call which computes the
2652 same value, but in a more efficient way. Return and try
2653 again. */
2654 *expr_p = new_tree;
2655 return GS_OK;
2658 else
2660 *expr_p = error_mark_node;
2661 return GS_ERROR;
2664 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2665 decl. This allows us to eliminate redundant or useless
2666 calls to "const" functions. */
2667 if (TREE_CODE (*expr_p) == CALL_EXPR)
2669 int flags = call_expr_flags (*expr_p);
2670 if (flags & (ECF_CONST | ECF_PURE)
2671 /* An infinite loop is considered a side effect. */
2672 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2673 TREE_SIDE_EFFECTS (*expr_p) = 0;
2676 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2677 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2678 form and delegate the creation of a GIMPLE_CALL to
2679 gimplify_modify_expr. This is always possible because when
2680 WANT_VALUE is true, the caller wants the result of this call into
2681 a temporary, which means that we will emit an INIT_EXPR in
2682 internal_get_tmp_var which will then be handled by
2683 gimplify_modify_expr. */
2684 if (!want_value)
2686 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2687 have to do is replicate it as a GIMPLE_CALL tuple. */
2688 gimple_stmt_iterator gsi;
2689 call = gimple_build_call_from_tree (*expr_p);
2690 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2691 notice_special_calls (call);
2692 gimplify_seq_add_stmt (pre_p, call);
2693 gsi = gsi_last (*pre_p);
2694 fold_stmt (&gsi);
2695 *expr_p = NULL_TREE;
2697 else
2698 /* Remember the original function type. */
2699 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2700 CALL_EXPR_FN (*expr_p));
2702 return ret;
2705 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2706 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2708 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2709 condition is true or false, respectively. If null, we should generate
2710 our own to skip over the evaluation of this specific expression.
2712 LOCUS is the source location of the COND_EXPR.
2714 This function is the tree equivalent of do_jump.
2716 shortcut_cond_r should only be called by shortcut_cond_expr. */
2718 static tree
2719 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2720 location_t locus)
2722 tree local_label = NULL_TREE;
2723 tree t, expr = NULL;
2725 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2726 retain the shortcut semantics. Just insert the gotos here;
2727 shortcut_cond_expr will append the real blocks later. */
2728 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2730 location_t new_locus;
2732 /* Turn if (a && b) into
2734 if (a); else goto no;
2735 if (b) goto yes; else goto no;
2736 (no:) */
2738 if (false_label_p == NULL)
2739 false_label_p = &local_label;
2741 /* Keep the original source location on the first 'if'. */
2742 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, locus);
2743 append_to_statement_list (t, &expr);
2745 /* Set the source location of the && on the second 'if'. */
2746 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2747 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2748 new_locus);
2749 append_to_statement_list (t, &expr);
2751 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2753 location_t new_locus;
2755 /* Turn if (a || b) into
2757 if (a) goto yes;
2758 if (b) goto yes; else goto no;
2759 (yes:) */
2761 if (true_label_p == NULL)
2762 true_label_p = &local_label;
2764 /* Keep the original source location on the first 'if'. */
2765 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2766 append_to_statement_list (t, &expr);
2768 /* Set the source location of the || on the second 'if'. */
2769 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2770 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2771 new_locus);
2772 append_to_statement_list (t, &expr);
2774 else if (TREE_CODE (pred) == COND_EXPR
2775 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 1)))
2776 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 2))))
2778 location_t new_locus;
2780 /* As long as we're messing with gotos, turn if (a ? b : c) into
2781 if (a)
2782 if (b) goto yes; else goto no;
2783 else
2784 if (c) goto yes; else goto no;
2786 Don't do this if one of the arms has void type, which can happen
2787 in C++ when the arm is throw. */
2789 /* Keep the original source location on the first 'if'. Set the source
2790 location of the ? on the second 'if'. */
2791 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2792 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2793 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2794 false_label_p, locus),
2795 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2796 false_label_p, new_locus));
2798 else
2800 expr = build3 (COND_EXPR, void_type_node, pred,
2801 build_and_jump (true_label_p),
2802 build_and_jump (false_label_p));
2803 SET_EXPR_LOCATION (expr, locus);
2806 if (local_label)
2808 t = build1 (LABEL_EXPR, void_type_node, local_label);
2809 append_to_statement_list (t, &expr);
2812 return expr;
2815 /* Given a conditional expression EXPR with short-circuit boolean
2816 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2817 predicate apart into the equivalent sequence of conditionals. */
2819 static tree
2820 shortcut_cond_expr (tree expr)
2822 tree pred = TREE_OPERAND (expr, 0);
2823 tree then_ = TREE_OPERAND (expr, 1);
2824 tree else_ = TREE_OPERAND (expr, 2);
2825 tree true_label, false_label, end_label, t;
2826 tree *true_label_p;
2827 tree *false_label_p;
2828 bool emit_end, emit_false, jump_over_else;
2829 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2830 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2832 /* First do simple transformations. */
2833 if (!else_se)
2835 /* If there is no 'else', turn
2836 if (a && b) then c
2837 into
2838 if (a) if (b) then c. */
2839 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2841 /* Keep the original source location on the first 'if'. */
2842 location_t locus = EXPR_LOC_OR_HERE (expr);
2843 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2844 /* Set the source location of the && on the second 'if'. */
2845 if (EXPR_HAS_LOCATION (pred))
2846 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2847 then_ = shortcut_cond_expr (expr);
2848 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2849 pred = TREE_OPERAND (pred, 0);
2850 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2851 SET_EXPR_LOCATION (expr, locus);
2855 if (!then_se)
2857 /* If there is no 'then', turn
2858 if (a || b); else d
2859 into
2860 if (a); else if (b); else d. */
2861 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2863 /* Keep the original source location on the first 'if'. */
2864 location_t locus = EXPR_LOC_OR_HERE (expr);
2865 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2866 /* Set the source location of the || on the second 'if'. */
2867 if (EXPR_HAS_LOCATION (pred))
2868 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2869 else_ = shortcut_cond_expr (expr);
2870 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2871 pred = TREE_OPERAND (pred, 0);
2872 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2873 SET_EXPR_LOCATION (expr, locus);
2877 /* If we're done, great. */
2878 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2879 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2880 return expr;
2882 /* Otherwise we need to mess with gotos. Change
2883 if (a) c; else d;
2885 if (a); else goto no;
2886 c; goto end;
2887 no: d; end:
2888 and recursively gimplify the condition. */
2890 true_label = false_label = end_label = NULL_TREE;
2892 /* If our arms just jump somewhere, hijack those labels so we don't
2893 generate jumps to jumps. */
2895 if (then_
2896 && TREE_CODE (then_) == GOTO_EXPR
2897 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2899 true_label = GOTO_DESTINATION (then_);
2900 then_ = NULL;
2901 then_se = false;
2904 if (else_
2905 && TREE_CODE (else_) == GOTO_EXPR
2906 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2908 false_label = GOTO_DESTINATION (else_);
2909 else_ = NULL;
2910 else_se = false;
2913 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2914 if (true_label)
2915 true_label_p = &true_label;
2916 else
2917 true_label_p = NULL;
2919 /* The 'else' branch also needs a label if it contains interesting code. */
2920 if (false_label || else_se)
2921 false_label_p = &false_label;
2922 else
2923 false_label_p = NULL;
2925 /* If there was nothing else in our arms, just forward the label(s). */
2926 if (!then_se && !else_se)
2927 return shortcut_cond_r (pred, true_label_p, false_label_p,
2928 EXPR_LOC_OR_HERE (expr));
2930 /* If our last subexpression already has a terminal label, reuse it. */
2931 if (else_se)
2932 t = expr_last (else_);
2933 else if (then_se)
2934 t = expr_last (then_);
2935 else
2936 t = NULL;
2937 if (t && TREE_CODE (t) == LABEL_EXPR)
2938 end_label = LABEL_EXPR_LABEL (t);
2940 /* If we don't care about jumping to the 'else' branch, jump to the end
2941 if the condition is false. */
2942 if (!false_label_p)
2943 false_label_p = &end_label;
2945 /* We only want to emit these labels if we aren't hijacking them. */
2946 emit_end = (end_label == NULL_TREE);
2947 emit_false = (false_label == NULL_TREE);
2949 /* We only emit the jump over the else clause if we have to--if the
2950 then clause may fall through. Otherwise we can wind up with a
2951 useless jump and a useless label at the end of gimplified code,
2952 which will cause us to think that this conditional as a whole
2953 falls through even if it doesn't. If we then inline a function
2954 which ends with such a condition, that can cause us to issue an
2955 inappropriate warning about control reaching the end of a
2956 non-void function. */
2957 jump_over_else = block_may_fallthru (then_);
2959 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2960 EXPR_LOC_OR_HERE (expr));
2962 expr = NULL;
2963 append_to_statement_list (pred, &expr);
2965 append_to_statement_list (then_, &expr);
2966 if (else_se)
2968 if (jump_over_else)
2970 tree last = expr_last (expr);
2971 t = build_and_jump (&end_label);
2972 if (EXPR_HAS_LOCATION (last))
2973 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2974 append_to_statement_list (t, &expr);
2976 if (emit_false)
2978 t = build1 (LABEL_EXPR, void_type_node, false_label);
2979 append_to_statement_list (t, &expr);
2981 append_to_statement_list (else_, &expr);
2983 if (emit_end && end_label)
2985 t = build1 (LABEL_EXPR, void_type_node, end_label);
2986 append_to_statement_list (t, &expr);
2989 return expr;
2992 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2994 tree
2995 gimple_boolify (tree expr)
2997 tree type = TREE_TYPE (expr);
2998 location_t loc = EXPR_LOCATION (expr);
3000 if (TREE_CODE (expr) == NE_EXPR
3001 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
3002 && integer_zerop (TREE_OPERAND (expr, 1)))
3004 tree call = TREE_OPERAND (expr, 0);
3005 tree fn = get_callee_fndecl (call);
3007 /* For __builtin_expect ((long) (x), y) recurse into x as well
3008 if x is truth_value_p. */
3009 if (fn
3010 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
3011 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
3012 && call_expr_nargs (call) == 2)
3014 tree arg = CALL_EXPR_ARG (call, 0);
3015 if (arg)
3017 if (TREE_CODE (arg) == NOP_EXPR
3018 && TREE_TYPE (arg) == TREE_TYPE (call))
3019 arg = TREE_OPERAND (arg, 0);
3020 if (truth_value_p (TREE_CODE (arg)))
3022 arg = gimple_boolify (arg);
3023 CALL_EXPR_ARG (call, 0)
3024 = fold_convert_loc (loc, TREE_TYPE (call), arg);
3030 switch (TREE_CODE (expr))
3032 case TRUTH_AND_EXPR:
3033 case TRUTH_OR_EXPR:
3034 case TRUTH_XOR_EXPR:
3035 case TRUTH_ANDIF_EXPR:
3036 case TRUTH_ORIF_EXPR:
3037 /* Also boolify the arguments of truth exprs. */
3038 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
3039 /* FALLTHRU */
3041 case TRUTH_NOT_EXPR:
3042 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3044 /* These expressions always produce boolean results. */
3045 if (TREE_CODE (type) != BOOLEAN_TYPE)
3046 TREE_TYPE (expr) = boolean_type_node;
3047 return expr;
3049 default:
3050 if (COMPARISON_CLASS_P (expr))
3052 /* There expressions always prduce boolean results. */
3053 if (TREE_CODE (type) != BOOLEAN_TYPE)
3054 TREE_TYPE (expr) = boolean_type_node;
3055 return expr;
3057 /* Other expressions that get here must have boolean values, but
3058 might need to be converted to the appropriate mode. */
3059 if (TREE_CODE (type) == BOOLEAN_TYPE)
3060 return expr;
3061 return fold_convert_loc (loc, boolean_type_node, expr);
3065 /* Given a conditional expression *EXPR_P without side effects, gimplify
3066 its operands. New statements are inserted to PRE_P. */
3068 static enum gimplify_status
3069 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
3071 tree expr = *expr_p, cond;
3072 enum gimplify_status ret, tret;
3073 enum tree_code code;
3075 cond = gimple_boolify (COND_EXPR_COND (expr));
3077 /* We need to handle && and || specially, as their gimplification
3078 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
3079 code = TREE_CODE (cond);
3080 if (code == TRUTH_ANDIF_EXPR)
3081 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
3082 else if (code == TRUTH_ORIF_EXPR)
3083 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
3084 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
3085 COND_EXPR_COND (*expr_p) = cond;
3087 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
3088 is_gimple_val, fb_rvalue);
3089 ret = MIN (ret, tret);
3090 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
3091 is_gimple_val, fb_rvalue);
3093 return MIN (ret, tret);
3096 /* Return true if evaluating EXPR could trap.
3097 EXPR is GENERIC, while tree_could_trap_p can be called
3098 only on GIMPLE. */
3100 static bool
3101 generic_expr_could_trap_p (tree expr)
3103 unsigned i, n;
3105 if (!expr || is_gimple_val (expr))
3106 return false;
3108 if (!EXPR_P (expr) || tree_could_trap_p (expr))
3109 return true;
3111 n = TREE_OPERAND_LENGTH (expr);
3112 for (i = 0; i < n; i++)
3113 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
3114 return true;
3116 return false;
3119 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
3120 into
3122 if (p) if (p)
3123 t1 = a; a;
3124 else or else
3125 t1 = b; b;
3128 The second form is used when *EXPR_P is of type void.
3130 PRE_P points to the list where side effects that must happen before
3131 *EXPR_P should be stored. */
3133 static enum gimplify_status
3134 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
3136 tree expr = *expr_p;
3137 tree type = TREE_TYPE (expr);
3138 location_t loc = EXPR_LOCATION (expr);
3139 tree tmp, arm1, arm2;
3140 enum gimplify_status ret;
3141 tree label_true, label_false, label_cont;
3142 bool have_then_clause_p, have_else_clause_p;
3143 gimple gimple_cond;
3144 enum tree_code pred_code;
3145 gimple_seq seq = NULL;
3147 /* If this COND_EXPR has a value, copy the values into a temporary within
3148 the arms. */
3149 if (!VOID_TYPE_P (type))
3151 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
3152 tree result;
3154 /* If either an rvalue is ok or we do not require an lvalue, create the
3155 temporary. But we cannot do that if the type is addressable. */
3156 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
3157 && !TREE_ADDRESSABLE (type))
3159 if (gimplify_ctxp->allow_rhs_cond_expr
3160 /* If either branch has side effects or could trap, it can't be
3161 evaluated unconditionally. */
3162 && !TREE_SIDE_EFFECTS (then_)
3163 && !generic_expr_could_trap_p (then_)
3164 && !TREE_SIDE_EFFECTS (else_)
3165 && !generic_expr_could_trap_p (else_))
3166 return gimplify_pure_cond_expr (expr_p, pre_p);
3168 tmp = create_tmp_var (type, "iftmp");
3169 result = tmp;
3172 /* Otherwise, only create and copy references to the values. */
3173 else
3175 type = build_pointer_type (type);
3177 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3178 then_ = build_fold_addr_expr_loc (loc, then_);
3180 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3181 else_ = build_fold_addr_expr_loc (loc, else_);
3183 expr
3184 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
3186 tmp = create_tmp_var (type, "iftmp");
3187 result = build_simple_mem_ref_loc (loc, tmp);
3190 /* Build the new then clause, `tmp = then_;'. But don't build the
3191 assignment if the value is void; in C++ it can be if it's a throw. */
3192 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3193 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
3195 /* Similarly, build the new else clause, `tmp = else_;'. */
3196 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3197 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
3199 TREE_TYPE (expr) = void_type_node;
3200 recalculate_side_effects (expr);
3202 /* Move the COND_EXPR to the prequeue. */
3203 gimplify_stmt (&expr, pre_p);
3205 *expr_p = result;
3206 return GS_ALL_DONE;
3209 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3210 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3211 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3212 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3214 /* Make sure the condition has BOOLEAN_TYPE. */
3215 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3217 /* Break apart && and || conditions. */
3218 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3219 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3221 expr = shortcut_cond_expr (expr);
3223 if (expr != *expr_p)
3225 *expr_p = expr;
3227 /* We can't rely on gimplify_expr to re-gimplify the expanded
3228 form properly, as cleanups might cause the target labels to be
3229 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3230 set up a conditional context. */
3231 gimple_push_condition ();
3232 gimplify_stmt (expr_p, &seq);
3233 gimple_pop_condition (pre_p);
3234 gimple_seq_add_seq (pre_p, seq);
3236 return GS_ALL_DONE;
3240 /* Now do the normal gimplification. */
3242 /* Gimplify condition. */
3243 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3244 fb_rvalue);
3245 if (ret == GS_ERROR)
3246 return GS_ERROR;
3247 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3249 gimple_push_condition ();
3251 have_then_clause_p = have_else_clause_p = false;
3252 if (TREE_OPERAND (expr, 1) != NULL
3253 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3254 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3255 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3256 == current_function_decl)
3257 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3258 have different locations, otherwise we end up with incorrect
3259 location information on the branches. */
3260 && (optimize
3261 || !EXPR_HAS_LOCATION (expr)
3262 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3263 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3265 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3266 have_then_clause_p = true;
3268 else
3269 label_true = create_artificial_label (UNKNOWN_LOCATION);
3270 if (TREE_OPERAND (expr, 2) != NULL
3271 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3272 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3273 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3274 == current_function_decl)
3275 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3276 have different locations, otherwise we end up with incorrect
3277 location information on the branches. */
3278 && (optimize
3279 || !EXPR_HAS_LOCATION (expr)
3280 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3281 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3283 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3284 have_else_clause_p = true;
3286 else
3287 label_false = create_artificial_label (UNKNOWN_LOCATION);
3289 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3290 &arm2);
3292 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3293 label_false);
3295 gimplify_seq_add_stmt (&seq, gimple_cond);
3296 label_cont = NULL_TREE;
3297 if (!have_then_clause_p)
3299 /* For if (...) {} else { code; } put label_true after
3300 the else block. */
3301 if (TREE_OPERAND (expr, 1) == NULL_TREE
3302 && !have_else_clause_p
3303 && TREE_OPERAND (expr, 2) != NULL_TREE)
3304 label_cont = label_true;
3305 else
3307 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3308 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3309 /* For if (...) { code; } else {} or
3310 if (...) { code; } else goto label; or
3311 if (...) { code; return; } else { ... }
3312 label_cont isn't needed. */
3313 if (!have_else_clause_p
3314 && TREE_OPERAND (expr, 2) != NULL_TREE
3315 && gimple_seq_may_fallthru (seq))
3317 gimple g;
3318 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3320 g = gimple_build_goto (label_cont);
3322 /* GIMPLE_COND's are very low level; they have embedded
3323 gotos. This particular embedded goto should not be marked
3324 with the location of the original COND_EXPR, as it would
3325 correspond to the COND_EXPR's condition, not the ELSE or the
3326 THEN arms. To avoid marking it with the wrong location, flag
3327 it as "no location". */
3328 gimple_set_do_not_emit_location (g);
3330 gimplify_seq_add_stmt (&seq, g);
3334 if (!have_else_clause_p)
3336 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3337 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3339 if (label_cont)
3340 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3342 gimple_pop_condition (pre_p);
3343 gimple_seq_add_seq (pre_p, seq);
3345 if (ret == GS_ERROR)
3346 ; /* Do nothing. */
3347 else if (have_then_clause_p || have_else_clause_p)
3348 ret = GS_ALL_DONE;
3349 else
3351 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3352 expr = TREE_OPERAND (expr, 0);
3353 gimplify_stmt (&expr, pre_p);
3356 *expr_p = NULL;
3357 return ret;
3360 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3361 to be marked addressable.
3363 We cannot rely on such an expression being directly markable if a temporary
3364 has been created by the gimplification. In this case, we create another
3365 temporary and initialize it with a copy, which will become a store after we
3366 mark it addressable. This can happen if the front-end passed us something
3367 that it could not mark addressable yet, like a Fortran pass-by-reference
3368 parameter (int) floatvar. */
3370 static void
3371 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3373 while (handled_component_p (*expr_p))
3374 expr_p = &TREE_OPERAND (*expr_p, 0);
3375 if (is_gimple_reg (*expr_p))
3376 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3379 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3380 a call to __builtin_memcpy. */
3382 static enum gimplify_status
3383 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3384 gimple_seq *seq_p)
3386 tree t, to, to_ptr, from, from_ptr;
3387 gimple gs;
3388 location_t loc = EXPR_LOCATION (*expr_p);
3390 to = TREE_OPERAND (*expr_p, 0);
3391 from = TREE_OPERAND (*expr_p, 1);
3393 /* Mark the RHS addressable. Beware that it may not be possible to do so
3394 directly if a temporary has been created by the gimplification. */
3395 prepare_gimple_addressable (&from, seq_p);
3397 mark_addressable (from);
3398 from_ptr = build_fold_addr_expr_loc (loc, from);
3399 gimplify_arg (&from_ptr, seq_p, loc);
3401 mark_addressable (to);
3402 to_ptr = build_fold_addr_expr_loc (loc, to);
3403 gimplify_arg (&to_ptr, seq_p, loc);
3405 t = builtin_decl_implicit (BUILT_IN_MEMCPY);
3407 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3409 if (want_value)
3411 /* tmp = memcpy() */
3412 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3413 gimple_call_set_lhs (gs, t);
3414 gimplify_seq_add_stmt (seq_p, gs);
3416 *expr_p = build_simple_mem_ref (t);
3417 return GS_ALL_DONE;
3420 gimplify_seq_add_stmt (seq_p, gs);
3421 *expr_p = NULL;
3422 return GS_ALL_DONE;
3425 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3426 a call to __builtin_memset. In this case we know that the RHS is
3427 a CONSTRUCTOR with an empty element list. */
3429 static enum gimplify_status
3430 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3431 gimple_seq *seq_p)
3433 tree t, from, to, to_ptr;
3434 gimple gs;
3435 location_t loc = EXPR_LOCATION (*expr_p);
3437 /* Assert our assumptions, to abort instead of producing wrong code
3438 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3439 not be immediately exposed. */
3440 from = TREE_OPERAND (*expr_p, 1);
3441 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3442 from = TREE_OPERAND (from, 0);
3444 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3445 && vec_safe_is_empty (CONSTRUCTOR_ELTS (from)));
3447 /* Now proceed. */
3448 to = TREE_OPERAND (*expr_p, 0);
3450 to_ptr = build_fold_addr_expr_loc (loc, to);
3451 gimplify_arg (&to_ptr, seq_p, loc);
3452 t = builtin_decl_implicit (BUILT_IN_MEMSET);
3454 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3456 if (want_value)
3458 /* tmp = memset() */
3459 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3460 gimple_call_set_lhs (gs, t);
3461 gimplify_seq_add_stmt (seq_p, gs);
3463 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3464 return GS_ALL_DONE;
3467 gimplify_seq_add_stmt (seq_p, gs);
3468 *expr_p = NULL;
3469 return GS_ALL_DONE;
3472 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3473 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3474 assignment. Return non-null if we detect a potential overlap. */
3476 struct gimplify_init_ctor_preeval_data
3478 /* The base decl of the lhs object. May be NULL, in which case we
3479 have to assume the lhs is indirect. */
3480 tree lhs_base_decl;
3482 /* The alias set of the lhs object. */
3483 alias_set_type lhs_alias_set;
3486 static tree
3487 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3489 struct gimplify_init_ctor_preeval_data *data
3490 = (struct gimplify_init_ctor_preeval_data *) xdata;
3491 tree t = *tp;
3493 /* If we find the base object, obviously we have overlap. */
3494 if (data->lhs_base_decl == t)
3495 return t;
3497 /* If the constructor component is indirect, determine if we have a
3498 potential overlap with the lhs. The only bits of information we
3499 have to go on at this point are addressability and alias sets. */
3500 if ((INDIRECT_REF_P (t)
3501 || TREE_CODE (t) == MEM_REF)
3502 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3503 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3504 return t;
3506 /* If the constructor component is a call, determine if it can hide a
3507 potential overlap with the lhs through an INDIRECT_REF like above.
3508 ??? Ugh - this is completely broken. In fact this whole analysis
3509 doesn't look conservative. */
3510 if (TREE_CODE (t) == CALL_EXPR)
3512 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3514 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3515 if (POINTER_TYPE_P (TREE_VALUE (type))
3516 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3517 && alias_sets_conflict_p (data->lhs_alias_set,
3518 get_alias_set
3519 (TREE_TYPE (TREE_VALUE (type)))))
3520 return t;
3523 if (IS_TYPE_OR_DECL_P (t))
3524 *walk_subtrees = 0;
3525 return NULL;
3528 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3529 force values that overlap with the lhs (as described by *DATA)
3530 into temporaries. */
3532 static void
3533 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3534 struct gimplify_init_ctor_preeval_data *data)
3536 enum gimplify_status one;
3538 /* If the value is constant, then there's nothing to pre-evaluate. */
3539 if (TREE_CONSTANT (*expr_p))
3541 /* Ensure it does not have side effects, it might contain a reference to
3542 the object we're initializing. */
3543 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3544 return;
3547 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3548 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3549 return;
3551 /* Recurse for nested constructors. */
3552 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3554 unsigned HOST_WIDE_INT ix;
3555 constructor_elt *ce;
3556 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (*expr_p);
3558 FOR_EACH_VEC_SAFE_ELT (v, ix, ce)
3559 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3561 return;
3564 /* If this is a variable sized type, we must remember the size. */
3565 maybe_with_size_expr (expr_p);
3567 /* Gimplify the constructor element to something appropriate for the rhs
3568 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3569 the gimplifier will consider this a store to memory. Doing this
3570 gimplification now means that we won't have to deal with complicated
3571 language-specific trees, nor trees like SAVE_EXPR that can induce
3572 exponential search behavior. */
3573 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3574 if (one == GS_ERROR)
3576 *expr_p = NULL;
3577 return;
3580 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3581 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3582 always be true for all scalars, since is_gimple_mem_rhs insists on a
3583 temporary variable for them. */
3584 if (DECL_P (*expr_p))
3585 return;
3587 /* If this is of variable size, we have no choice but to assume it doesn't
3588 overlap since we can't make a temporary for it. */
3589 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3590 return;
3592 /* Otherwise, we must search for overlap ... */
3593 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3594 return;
3596 /* ... and if found, force the value into a temporary. */
3597 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3600 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3601 a RANGE_EXPR in a CONSTRUCTOR for an array.
3603 var = lower;
3604 loop_entry:
3605 object[var] = value;
3606 if (var == upper)
3607 goto loop_exit;
3608 var = var + 1;
3609 goto loop_entry;
3610 loop_exit:
3612 We increment var _after_ the loop exit check because we might otherwise
3613 fail if upper == TYPE_MAX_VALUE (type for upper).
3615 Note that we never have to deal with SAVE_EXPRs here, because this has
3616 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3618 static void gimplify_init_ctor_eval (tree, vec<constructor_elt, va_gc> *,
3619 gimple_seq *, bool);
3621 static void
3622 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3623 tree value, tree array_elt_type,
3624 gimple_seq *pre_p, bool cleared)
3626 tree loop_entry_label, loop_exit_label, fall_thru_label;
3627 tree var, var_type, cref, tmp;
3629 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3630 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3631 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3633 /* Create and initialize the index variable. */
3634 var_type = TREE_TYPE (upper);
3635 var = create_tmp_var (var_type, NULL);
3636 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3638 /* Add the loop entry label. */
3639 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3641 /* Build the reference. */
3642 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3643 var, NULL_TREE, NULL_TREE);
3645 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3646 the store. Otherwise just assign value to the reference. */
3648 if (TREE_CODE (value) == CONSTRUCTOR)
3649 /* NB we might have to call ourself recursively through
3650 gimplify_init_ctor_eval if the value is a constructor. */
3651 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3652 pre_p, cleared);
3653 else
3654 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3656 /* We exit the loop when the index var is equal to the upper bound. */
3657 gimplify_seq_add_stmt (pre_p,
3658 gimple_build_cond (EQ_EXPR, var, upper,
3659 loop_exit_label, fall_thru_label));
3661 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3663 /* Otherwise, increment the index var... */
3664 tmp = build2 (PLUS_EXPR, var_type, var,
3665 fold_convert (var_type, integer_one_node));
3666 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3668 /* ...and jump back to the loop entry. */
3669 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3671 /* Add the loop exit label. */
3672 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3675 /* Return true if FDECL is accessing a field that is zero sized. */
3677 static bool
3678 zero_sized_field_decl (const_tree fdecl)
3680 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3681 && integer_zerop (DECL_SIZE (fdecl)))
3682 return true;
3683 return false;
3686 /* Return true if TYPE is zero sized. */
3688 static bool
3689 zero_sized_type (const_tree type)
3691 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3692 && integer_zerop (TYPE_SIZE (type)))
3693 return true;
3694 return false;
3697 /* A subroutine of gimplify_init_constructor. Generate individual
3698 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3699 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3700 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3701 zeroed first. */
3703 static void
3704 gimplify_init_ctor_eval (tree object, vec<constructor_elt, va_gc> *elts,
3705 gimple_seq *pre_p, bool cleared)
3707 tree array_elt_type = NULL;
3708 unsigned HOST_WIDE_INT ix;
3709 tree purpose, value;
3711 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3712 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3714 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3716 tree cref;
3718 /* NULL values are created above for gimplification errors. */
3719 if (value == NULL)
3720 continue;
3722 if (cleared && initializer_zerop (value))
3723 continue;
3725 /* ??? Here's to hoping the front end fills in all of the indices,
3726 so we don't have to figure out what's missing ourselves. */
3727 gcc_assert (purpose);
3729 /* Skip zero-sized fields, unless value has side-effects. This can
3730 happen with calls to functions returning a zero-sized type, which
3731 we shouldn't discard. As a number of downstream passes don't
3732 expect sets of zero-sized fields, we rely on the gimplification of
3733 the MODIFY_EXPR we make below to drop the assignment statement. */
3734 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3735 continue;
3737 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3738 whole range. */
3739 if (TREE_CODE (purpose) == RANGE_EXPR)
3741 tree lower = TREE_OPERAND (purpose, 0);
3742 tree upper = TREE_OPERAND (purpose, 1);
3744 /* If the lower bound is equal to upper, just treat it as if
3745 upper was the index. */
3746 if (simple_cst_equal (lower, upper))
3747 purpose = upper;
3748 else
3750 gimplify_init_ctor_eval_range (object, lower, upper, value,
3751 array_elt_type, pre_p, cleared);
3752 continue;
3756 if (array_elt_type)
3758 /* Do not use bitsizetype for ARRAY_REF indices. */
3759 if (TYPE_DOMAIN (TREE_TYPE (object)))
3760 purpose
3761 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3762 purpose);
3763 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3764 purpose, NULL_TREE, NULL_TREE);
3766 else
3768 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3769 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3770 unshare_expr (object), purpose, NULL_TREE);
3773 if (TREE_CODE (value) == CONSTRUCTOR
3774 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3775 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3776 pre_p, cleared);
3777 else
3779 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3780 gimplify_and_add (init, pre_p);
3781 ggc_free (init);
3786 /* Return the appropriate RHS predicate for this LHS. */
3788 gimple_predicate
3789 rhs_predicate_for (tree lhs)
3791 if (is_gimple_reg (lhs))
3792 return is_gimple_reg_rhs_or_call;
3793 else
3794 return is_gimple_mem_rhs_or_call;
3797 /* Gimplify a C99 compound literal expression. This just means adding
3798 the DECL_EXPR before the current statement and using its anonymous
3799 decl instead. */
3801 static enum gimplify_status
3802 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p,
3803 bool (*gimple_test_f) (tree),
3804 fallback_t fallback)
3806 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3807 tree decl = DECL_EXPR_DECL (decl_s);
3808 tree init = DECL_INITIAL (decl);
3809 /* Mark the decl as addressable if the compound literal
3810 expression is addressable now, otherwise it is marked too late
3811 after we gimplify the initialization expression. */
3812 if (TREE_ADDRESSABLE (*expr_p))
3813 TREE_ADDRESSABLE (decl) = 1;
3814 /* Otherwise, if we don't need an lvalue and have a literal directly
3815 substitute it. Check if it matches the gimple predicate, as
3816 otherwise we'd generate a new temporary, and we can as well just
3817 use the decl we already have. */
3818 else if (!TREE_ADDRESSABLE (decl)
3819 && init
3820 && (fallback & fb_lvalue) == 0
3821 && gimple_test_f (init))
3823 *expr_p = init;
3824 return GS_OK;
3827 /* Preliminarily mark non-addressed complex variables as eligible
3828 for promotion to gimple registers. We'll transform their uses
3829 as we find them. */
3830 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3831 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3832 && !TREE_THIS_VOLATILE (decl)
3833 && !needs_to_live_in_memory (decl))
3834 DECL_GIMPLE_REG_P (decl) = 1;
3836 /* If the decl is not addressable, then it is being used in some
3837 expression or on the right hand side of a statement, and it can
3838 be put into a readonly data section. */
3839 if (!TREE_ADDRESSABLE (decl) && (fallback & fb_lvalue) == 0)
3840 TREE_READONLY (decl) = 1;
3842 /* This decl isn't mentioned in the enclosing block, so add it to the
3843 list of temps. FIXME it seems a bit of a kludge to say that
3844 anonymous artificial vars aren't pushed, but everything else is. */
3845 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3846 gimple_add_tmp_var (decl);
3848 gimplify_and_add (decl_s, pre_p);
3849 *expr_p = decl;
3850 return GS_OK;
3853 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3854 return a new CONSTRUCTOR if something changed. */
3856 static tree
3857 optimize_compound_literals_in_ctor (tree orig_ctor)
3859 tree ctor = orig_ctor;
3860 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ctor);
3861 unsigned int idx, num = vec_safe_length (elts);
3863 for (idx = 0; idx < num; idx++)
3865 tree value = (*elts)[idx].value;
3866 tree newval = value;
3867 if (TREE_CODE (value) == CONSTRUCTOR)
3868 newval = optimize_compound_literals_in_ctor (value);
3869 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3871 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3872 tree decl = DECL_EXPR_DECL (decl_s);
3873 tree init = DECL_INITIAL (decl);
3875 if (!TREE_ADDRESSABLE (value)
3876 && !TREE_ADDRESSABLE (decl)
3877 && init
3878 && TREE_CODE (init) == CONSTRUCTOR)
3879 newval = optimize_compound_literals_in_ctor (init);
3881 if (newval == value)
3882 continue;
3884 if (ctor == orig_ctor)
3886 ctor = copy_node (orig_ctor);
3887 CONSTRUCTOR_ELTS (ctor) = vec_safe_copy (elts);
3888 elts = CONSTRUCTOR_ELTS (ctor);
3890 (*elts)[idx].value = newval;
3892 return ctor;
3895 /* A subroutine of gimplify_modify_expr. Break out elements of a
3896 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3898 Note that we still need to clear any elements that don't have explicit
3899 initializers, so if not all elements are initialized we keep the
3900 original MODIFY_EXPR, we just remove all of the constructor elements.
3902 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3903 GS_ERROR if we would have to create a temporary when gimplifying
3904 this constructor. Otherwise, return GS_OK.
3906 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3908 static enum gimplify_status
3909 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3910 bool want_value, bool notify_temp_creation)
3912 tree object, ctor, type;
3913 enum gimplify_status ret;
3914 vec<constructor_elt, va_gc> *elts;
3916 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3918 if (!notify_temp_creation)
3920 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3921 is_gimple_lvalue, fb_lvalue);
3922 if (ret == GS_ERROR)
3923 return ret;
3926 object = TREE_OPERAND (*expr_p, 0);
3927 ctor = TREE_OPERAND (*expr_p, 1) =
3928 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3929 type = TREE_TYPE (ctor);
3930 elts = CONSTRUCTOR_ELTS (ctor);
3931 ret = GS_ALL_DONE;
3933 switch (TREE_CODE (type))
3935 case RECORD_TYPE:
3936 case UNION_TYPE:
3937 case QUAL_UNION_TYPE:
3938 case ARRAY_TYPE:
3940 struct gimplify_init_ctor_preeval_data preeval_data;
3941 HOST_WIDE_INT num_ctor_elements, num_nonzero_elements;
3942 bool cleared, complete_p, valid_const_initializer;
3944 /* Aggregate types must lower constructors to initialization of
3945 individual elements. The exception is that a CONSTRUCTOR node
3946 with no elements indicates zero-initialization of the whole. */
3947 if (vec_safe_is_empty (elts))
3949 if (notify_temp_creation)
3950 return GS_OK;
3951 break;
3954 /* Fetch information about the constructor to direct later processing.
3955 We might want to make static versions of it in various cases, and
3956 can only do so if it known to be a valid constant initializer. */
3957 valid_const_initializer
3958 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3959 &num_ctor_elements, &complete_p);
3961 /* If a const aggregate variable is being initialized, then it
3962 should never be a lose to promote the variable to be static. */
3963 if (valid_const_initializer
3964 && num_nonzero_elements > 1
3965 && TREE_READONLY (object)
3966 && TREE_CODE (object) == VAR_DECL
3967 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3969 if (notify_temp_creation)
3970 return GS_ERROR;
3971 DECL_INITIAL (object) = ctor;
3972 TREE_STATIC (object) = 1;
3973 if (!DECL_NAME (object))
3974 DECL_NAME (object) = create_tmp_var_name ("C");
3975 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3977 /* ??? C++ doesn't automatically append a .<number> to the
3978 assembler name, and even when it does, it looks at FE private
3979 data structures to figure out what that number should be,
3980 which are not set for this variable. I suppose this is
3981 important for local statics for inline functions, which aren't
3982 "local" in the object file sense. So in order to get a unique
3983 TU-local symbol, we must invoke the lhd version now. */
3984 lhd_set_decl_assembler_name (object);
3986 *expr_p = NULL_TREE;
3987 break;
3990 /* If there are "lots" of initialized elements, even discounting
3991 those that are not address constants (and thus *must* be
3992 computed at runtime), then partition the constructor into
3993 constant and non-constant parts. Block copy the constant
3994 parts in, then generate code for the non-constant parts. */
3995 /* TODO. There's code in cp/typeck.c to do this. */
3997 if (int_size_in_bytes (TREE_TYPE (ctor)) < 0)
3998 /* store_constructor will ignore the clearing of variable-sized
3999 objects. Initializers for such objects must explicitly set
4000 every field that needs to be set. */
4001 cleared = false;
4002 else if (!complete_p)
4003 /* If the constructor isn't complete, clear the whole object
4004 beforehand.
4006 ??? This ought not to be needed. For any element not present
4007 in the initializer, we should simply set them to zero. Except
4008 we'd need to *find* the elements that are not present, and that
4009 requires trickery to avoid quadratic compile-time behavior in
4010 large cases or excessive memory use in small cases. */
4011 cleared = true;
4012 else if (num_ctor_elements - num_nonzero_elements
4013 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
4014 && num_nonzero_elements < num_ctor_elements / 4)
4015 /* If there are "lots" of zeros, it's more efficient to clear
4016 the memory and then set the nonzero elements. */
4017 cleared = true;
4018 else
4019 cleared = false;
4021 /* If there are "lots" of initialized elements, and all of them
4022 are valid address constants, then the entire initializer can
4023 be dropped to memory, and then memcpy'd out. Don't do this
4024 for sparse arrays, though, as it's more efficient to follow
4025 the standard CONSTRUCTOR behavior of memset followed by
4026 individual element initialization. Also don't do this for small
4027 all-zero initializers (which aren't big enough to merit
4028 clearing), and don't try to make bitwise copies of
4029 TREE_ADDRESSABLE types. */
4030 if (valid_const_initializer
4031 && !(cleared || num_nonzero_elements == 0)
4032 && !TREE_ADDRESSABLE (type))
4034 HOST_WIDE_INT size = int_size_in_bytes (type);
4035 unsigned int align;
4037 /* ??? We can still get unbounded array types, at least
4038 from the C++ front end. This seems wrong, but attempt
4039 to work around it for now. */
4040 if (size < 0)
4042 size = int_size_in_bytes (TREE_TYPE (object));
4043 if (size >= 0)
4044 TREE_TYPE (ctor) = type = TREE_TYPE (object);
4047 /* Find the maximum alignment we can assume for the object. */
4048 /* ??? Make use of DECL_OFFSET_ALIGN. */
4049 if (DECL_P (object))
4050 align = DECL_ALIGN (object);
4051 else
4052 align = TYPE_ALIGN (type);
4054 /* Do a block move either if the size is so small as to make
4055 each individual move a sub-unit move on average, or if it
4056 is so large as to make individual moves inefficient. */
4057 if (size > 0
4058 && num_nonzero_elements > 1
4059 && (size < num_nonzero_elements
4060 || !can_move_by_pieces (size, align)))
4062 if (notify_temp_creation)
4063 return GS_ERROR;
4065 walk_tree (&ctor, force_labels_r, NULL, NULL);
4066 ctor = tree_output_constant_def (ctor);
4067 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
4068 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
4069 TREE_OPERAND (*expr_p, 1) = ctor;
4071 /* This is no longer an assignment of a CONSTRUCTOR, but
4072 we still may have processing to do on the LHS. So
4073 pretend we didn't do anything here to let that happen. */
4074 return GS_UNHANDLED;
4078 /* If the target is volatile, we have non-zero elements and more than
4079 one field to assign, initialize the target from a temporary. */
4080 if (TREE_THIS_VOLATILE (object)
4081 && !TREE_ADDRESSABLE (type)
4082 && num_nonzero_elements > 0
4083 && vec_safe_length (elts) > 1)
4085 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
4086 TREE_OPERAND (*expr_p, 0) = temp;
4087 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
4088 *expr_p,
4089 build2 (MODIFY_EXPR, void_type_node,
4090 object, temp));
4091 return GS_OK;
4094 if (notify_temp_creation)
4095 return GS_OK;
4097 /* If there are nonzero elements and if needed, pre-evaluate to capture
4098 elements overlapping with the lhs into temporaries. We must do this
4099 before clearing to fetch the values before they are zeroed-out. */
4100 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
4102 preeval_data.lhs_base_decl = get_base_address (object);
4103 if (!DECL_P (preeval_data.lhs_base_decl))
4104 preeval_data.lhs_base_decl = NULL;
4105 preeval_data.lhs_alias_set = get_alias_set (object);
4107 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
4108 pre_p, post_p, &preeval_data);
4111 if (cleared)
4113 /* Zap the CONSTRUCTOR element list, which simplifies this case.
4114 Note that we still have to gimplify, in order to handle the
4115 case of variable sized types. Avoid shared tree structures. */
4116 CONSTRUCTOR_ELTS (ctor) = NULL;
4117 TREE_SIDE_EFFECTS (ctor) = 0;
4118 object = unshare_expr (object);
4119 gimplify_stmt (expr_p, pre_p);
4122 /* If we have not block cleared the object, or if there are nonzero
4123 elements in the constructor, add assignments to the individual
4124 scalar fields of the object. */
4125 if (!cleared || num_nonzero_elements > 0)
4126 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
4128 *expr_p = NULL_TREE;
4130 break;
4132 case COMPLEX_TYPE:
4134 tree r, i;
4136 if (notify_temp_creation)
4137 return GS_OK;
4139 /* Extract the real and imaginary parts out of the ctor. */
4140 gcc_assert (elts->length () == 2);
4141 r = (*elts)[0].value;
4142 i = (*elts)[1].value;
4143 if (r == NULL || i == NULL)
4145 tree zero = build_zero_cst (TREE_TYPE (type));
4146 if (r == NULL)
4147 r = zero;
4148 if (i == NULL)
4149 i = zero;
4152 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
4153 represent creation of a complex value. */
4154 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
4156 ctor = build_complex (type, r, i);
4157 TREE_OPERAND (*expr_p, 1) = ctor;
4159 else
4161 ctor = build2 (COMPLEX_EXPR, type, r, i);
4162 TREE_OPERAND (*expr_p, 1) = ctor;
4163 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
4164 pre_p,
4165 post_p,
4166 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
4167 fb_rvalue);
4170 break;
4172 case VECTOR_TYPE:
4174 unsigned HOST_WIDE_INT ix;
4175 constructor_elt *ce;
4177 if (notify_temp_creation)
4178 return GS_OK;
4180 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4181 if (TREE_CONSTANT (ctor))
4183 bool constant_p = true;
4184 tree value;
4186 /* Even when ctor is constant, it might contain non-*_CST
4187 elements, such as addresses or trapping values like
4188 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4189 in VECTOR_CST nodes. */
4190 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
4191 if (!CONSTANT_CLASS_P (value))
4193 constant_p = false;
4194 break;
4197 if (constant_p)
4199 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
4200 break;
4203 /* Don't reduce an initializer constant even if we can't
4204 make a VECTOR_CST. It won't do anything for us, and it'll
4205 prevent us from representing it as a single constant. */
4206 if (initializer_constant_valid_p (ctor, type))
4207 break;
4209 TREE_CONSTANT (ctor) = 0;
4212 /* Vector types use CONSTRUCTOR all the way through gimple
4213 compilation as a general initializer. */
4214 FOR_EACH_VEC_SAFE_ELT (elts, ix, ce)
4216 enum gimplify_status tret;
4217 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
4218 fb_rvalue);
4219 if (tret == GS_ERROR)
4220 ret = GS_ERROR;
4222 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
4223 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4225 break;
4227 default:
4228 /* So how did we get a CONSTRUCTOR for a scalar type? */
4229 gcc_unreachable ();
4232 if (ret == GS_ERROR)
4233 return GS_ERROR;
4234 else if (want_value)
4236 *expr_p = object;
4237 return GS_OK;
4239 else
4241 /* If we have gimplified both sides of the initializer but have
4242 not emitted an assignment, do so now. */
4243 if (*expr_p)
4245 tree lhs = TREE_OPERAND (*expr_p, 0);
4246 tree rhs = TREE_OPERAND (*expr_p, 1);
4247 gimple init = gimple_build_assign (lhs, rhs);
4248 gimplify_seq_add_stmt (pre_p, init);
4249 *expr_p = NULL;
4252 return GS_ALL_DONE;
4256 /* Given a pointer value OP0, return a simplified version of an
4257 indirection through OP0, or NULL_TREE if no simplification is
4258 possible. Note that the resulting type may be different from
4259 the type pointed to in the sense that it is still compatible
4260 from the langhooks point of view. */
4262 tree
4263 gimple_fold_indirect_ref (tree t)
4265 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4266 tree sub = t;
4267 tree subtype;
4269 STRIP_NOPS (sub);
4270 subtype = TREE_TYPE (sub);
4271 if (!POINTER_TYPE_P (subtype))
4272 return NULL_TREE;
4274 if (TREE_CODE (sub) == ADDR_EXPR)
4276 tree op = TREE_OPERAND (sub, 0);
4277 tree optype = TREE_TYPE (op);
4278 /* *&p => p */
4279 if (useless_type_conversion_p (type, optype))
4280 return op;
4282 /* *(foo *)&fooarray => fooarray[0] */
4283 if (TREE_CODE (optype) == ARRAY_TYPE
4284 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4285 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4287 tree type_domain = TYPE_DOMAIN (optype);
4288 tree min_val = size_zero_node;
4289 if (type_domain && TYPE_MIN_VALUE (type_domain))
4290 min_val = TYPE_MIN_VALUE (type_domain);
4291 if (TREE_CODE (min_val) == INTEGER_CST)
4292 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4294 /* *(foo *)&complexfoo => __real__ complexfoo */
4295 else if (TREE_CODE (optype) == COMPLEX_TYPE
4296 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4297 return fold_build1 (REALPART_EXPR, type, op);
4298 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4299 else if (TREE_CODE (optype) == VECTOR_TYPE
4300 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4302 tree part_width = TYPE_SIZE (type);
4303 tree index = bitsize_int (0);
4304 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4308 /* *(p + CST) -> ... */
4309 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4310 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4312 tree addr = TREE_OPERAND (sub, 0);
4313 tree off = TREE_OPERAND (sub, 1);
4314 tree addrtype;
4316 STRIP_NOPS (addr);
4317 addrtype = TREE_TYPE (addr);
4319 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4320 if (TREE_CODE (addr) == ADDR_EXPR
4321 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4322 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4323 && host_integerp (off, 1))
4325 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4326 tree part_width = TYPE_SIZE (type);
4327 unsigned HOST_WIDE_INT part_widthi
4328 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4329 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4330 tree index = bitsize_int (indexi);
4331 if (offset / part_widthi
4332 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4333 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4334 part_width, index);
4337 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4338 if (TREE_CODE (addr) == ADDR_EXPR
4339 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4340 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4342 tree size = TYPE_SIZE_UNIT (type);
4343 if (tree_int_cst_equal (size, off))
4344 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4347 /* *(p + CST) -> MEM_REF <p, CST>. */
4348 if (TREE_CODE (addr) != ADDR_EXPR
4349 || DECL_P (TREE_OPERAND (addr, 0)))
4350 return fold_build2 (MEM_REF, type,
4351 addr,
4352 build_int_cst_wide (ptype,
4353 TREE_INT_CST_LOW (off),
4354 TREE_INT_CST_HIGH (off)));
4357 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4358 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4359 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4360 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4362 tree type_domain;
4363 tree min_val = size_zero_node;
4364 tree osub = sub;
4365 sub = gimple_fold_indirect_ref (sub);
4366 if (! sub)
4367 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4368 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4369 if (type_domain && TYPE_MIN_VALUE (type_domain))
4370 min_val = TYPE_MIN_VALUE (type_domain);
4371 if (TREE_CODE (min_val) == INTEGER_CST)
4372 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4375 return NULL_TREE;
4378 /* Given a pointer value OP0, return a simplified version of an
4379 indirection through OP0, or NULL_TREE if no simplification is
4380 possible. This may only be applied to a rhs of an expression.
4381 Note that the resulting type may be different from the type pointed
4382 to in the sense that it is still compatible from the langhooks
4383 point of view. */
4385 static tree
4386 gimple_fold_indirect_ref_rhs (tree t)
4388 return gimple_fold_indirect_ref (t);
4391 /* Subroutine of gimplify_modify_expr to do simplifications of
4392 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4393 something changes. */
4395 static enum gimplify_status
4396 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4397 gimple_seq *pre_p, gimple_seq *post_p,
4398 bool want_value)
4400 enum gimplify_status ret = GS_UNHANDLED;
4401 bool changed;
4405 changed = false;
4406 switch (TREE_CODE (*from_p))
4408 case VAR_DECL:
4409 /* If we're assigning from a read-only variable initialized with
4410 a constructor, do the direct assignment from the constructor,
4411 but only if neither source nor target are volatile since this
4412 latter assignment might end up being done on a per-field basis. */
4413 if (DECL_INITIAL (*from_p)
4414 && TREE_READONLY (*from_p)
4415 && !TREE_THIS_VOLATILE (*from_p)
4416 && !TREE_THIS_VOLATILE (*to_p)
4417 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4419 tree old_from = *from_p;
4420 enum gimplify_status subret;
4422 /* Move the constructor into the RHS. */
4423 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4425 /* Let's see if gimplify_init_constructor will need to put
4426 it in memory. */
4427 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4428 false, true);
4429 if (subret == GS_ERROR)
4431 /* If so, revert the change. */
4432 *from_p = old_from;
4434 else
4436 ret = GS_OK;
4437 changed = true;
4440 break;
4441 case INDIRECT_REF:
4443 /* If we have code like
4445 *(const A*)(A*)&x
4447 where the type of "x" is a (possibly cv-qualified variant
4448 of "A"), treat the entire expression as identical to "x".
4449 This kind of code arises in C++ when an object is bound
4450 to a const reference, and if "x" is a TARGET_EXPR we want
4451 to take advantage of the optimization below. */
4452 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4453 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4454 if (t)
4456 if (TREE_THIS_VOLATILE (t) != volatile_p)
4458 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4459 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4460 build_fold_addr_expr (t));
4461 if (REFERENCE_CLASS_P (t))
4462 TREE_THIS_VOLATILE (t) = volatile_p;
4464 *from_p = t;
4465 ret = GS_OK;
4466 changed = true;
4468 break;
4471 case TARGET_EXPR:
4473 /* If we are initializing something from a TARGET_EXPR, strip the
4474 TARGET_EXPR and initialize it directly, if possible. This can't
4475 be done if the initializer is void, since that implies that the
4476 temporary is set in some non-trivial way.
4478 ??? What about code that pulls out the temp and uses it
4479 elsewhere? I think that such code never uses the TARGET_EXPR as
4480 an initializer. If I'm wrong, we'll die because the temp won't
4481 have any RTL. In that case, I guess we'll need to replace
4482 references somehow. */
4483 tree init = TARGET_EXPR_INITIAL (*from_p);
4485 if (init
4486 && !VOID_TYPE_P (TREE_TYPE (init)))
4488 *from_p = init;
4489 ret = GS_OK;
4490 changed = true;
4493 break;
4495 case COMPOUND_EXPR:
4496 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4497 caught. */
4498 gimplify_compound_expr (from_p, pre_p, true);
4499 ret = GS_OK;
4500 changed = true;
4501 break;
4503 case CONSTRUCTOR:
4504 /* If we already made some changes, let the front end have a
4505 crack at this before we break it down. */
4506 if (ret != GS_UNHANDLED)
4507 break;
4508 /* If we're initializing from a CONSTRUCTOR, break this into
4509 individual MODIFY_EXPRs. */
4510 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4511 false);
4513 case COND_EXPR:
4514 /* If we're assigning to a non-register type, push the assignment
4515 down into the branches. This is mandatory for ADDRESSABLE types,
4516 since we cannot generate temporaries for such, but it saves a
4517 copy in other cases as well. */
4518 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4520 /* This code should mirror the code in gimplify_cond_expr. */
4521 enum tree_code code = TREE_CODE (*expr_p);
4522 tree cond = *from_p;
4523 tree result = *to_p;
4525 ret = gimplify_expr (&result, pre_p, post_p,
4526 is_gimple_lvalue, fb_lvalue);
4527 if (ret != GS_ERROR)
4528 ret = GS_OK;
4530 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4531 TREE_OPERAND (cond, 1)
4532 = build2 (code, void_type_node, result,
4533 TREE_OPERAND (cond, 1));
4534 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4535 TREE_OPERAND (cond, 2)
4536 = build2 (code, void_type_node, unshare_expr (result),
4537 TREE_OPERAND (cond, 2));
4539 TREE_TYPE (cond) = void_type_node;
4540 recalculate_side_effects (cond);
4542 if (want_value)
4544 gimplify_and_add (cond, pre_p);
4545 *expr_p = unshare_expr (result);
4547 else
4548 *expr_p = cond;
4549 return ret;
4551 break;
4553 case CALL_EXPR:
4554 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4555 return slot so that we don't generate a temporary. */
4556 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4557 && aggregate_value_p (*from_p, *from_p))
4559 bool use_target;
4561 if (!(rhs_predicate_for (*to_p))(*from_p))
4562 /* If we need a temporary, *to_p isn't accurate. */
4563 use_target = false;
4564 /* It's OK to use the return slot directly unless it's an NRV. */
4565 else if (TREE_CODE (*to_p) == RESULT_DECL
4566 && DECL_NAME (*to_p) == NULL_TREE
4567 && needs_to_live_in_memory (*to_p))
4568 use_target = true;
4569 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4570 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4571 /* Don't force regs into memory. */
4572 use_target = false;
4573 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4574 /* It's OK to use the target directly if it's being
4575 initialized. */
4576 use_target = true;
4577 else if (variably_modified_type_p (TREE_TYPE (*to_p), NULL_TREE))
4578 /* Always use the target and thus RSO for variable-sized types.
4579 GIMPLE cannot deal with a variable-sized assignment
4580 embedded in a call statement. */
4581 use_target = true;
4582 else if (TREE_CODE (*to_p) != SSA_NAME
4583 && (!is_gimple_variable (*to_p)
4584 || needs_to_live_in_memory (*to_p)))
4585 /* Don't use the original target if it's already addressable;
4586 if its address escapes, and the called function uses the
4587 NRV optimization, a conforming program could see *to_p
4588 change before the called function returns; see c++/19317.
4589 When optimizing, the return_slot pass marks more functions
4590 as safe after we have escape info. */
4591 use_target = false;
4592 else
4593 use_target = true;
4595 if (use_target)
4597 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4598 mark_addressable (*to_p);
4601 break;
4603 case WITH_SIZE_EXPR:
4604 /* Likewise for calls that return an aggregate of non-constant size,
4605 since we would not be able to generate a temporary at all. */
4606 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4608 *from_p = TREE_OPERAND (*from_p, 0);
4609 /* We don't change ret in this case because the
4610 WITH_SIZE_EXPR might have been added in
4611 gimplify_modify_expr, so returning GS_OK would lead to an
4612 infinite loop. */
4613 changed = true;
4615 break;
4617 /* If we're initializing from a container, push the initialization
4618 inside it. */
4619 case CLEANUP_POINT_EXPR:
4620 case BIND_EXPR:
4621 case STATEMENT_LIST:
4623 tree wrap = *from_p;
4624 tree t;
4626 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4627 fb_lvalue);
4628 if (ret != GS_ERROR)
4629 ret = GS_OK;
4631 t = voidify_wrapper_expr (wrap, *expr_p);
4632 gcc_assert (t == *expr_p);
4634 if (want_value)
4636 gimplify_and_add (wrap, pre_p);
4637 *expr_p = unshare_expr (*to_p);
4639 else
4640 *expr_p = wrap;
4641 return GS_OK;
4644 case COMPOUND_LITERAL_EXPR:
4646 tree complit = TREE_OPERAND (*expr_p, 1);
4647 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4648 tree decl = DECL_EXPR_DECL (decl_s);
4649 tree init = DECL_INITIAL (decl);
4651 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4652 into struct T x = { 0, 1, 2 } if the address of the
4653 compound literal has never been taken. */
4654 if (!TREE_ADDRESSABLE (complit)
4655 && !TREE_ADDRESSABLE (decl)
4656 && init)
4658 *expr_p = copy_node (*expr_p);
4659 TREE_OPERAND (*expr_p, 1) = init;
4660 return GS_OK;
4664 default:
4665 break;
4668 while (changed);
4670 return ret;
4674 /* Return true if T looks like a valid GIMPLE statement. */
4676 static bool
4677 is_gimple_stmt (tree t)
4679 const enum tree_code code = TREE_CODE (t);
4681 switch (code)
4683 case NOP_EXPR:
4684 /* The only valid NOP_EXPR is the empty statement. */
4685 return IS_EMPTY_STMT (t);
4687 case BIND_EXPR:
4688 case COND_EXPR:
4689 /* These are only valid if they're void. */
4690 return TREE_TYPE (t) == NULL || VOID_TYPE_P (TREE_TYPE (t));
4692 case SWITCH_EXPR:
4693 case GOTO_EXPR:
4694 case RETURN_EXPR:
4695 case LABEL_EXPR:
4696 case CASE_LABEL_EXPR:
4697 case TRY_CATCH_EXPR:
4698 case TRY_FINALLY_EXPR:
4699 case EH_FILTER_EXPR:
4700 case CATCH_EXPR:
4701 case ASM_EXPR:
4702 case STATEMENT_LIST:
4703 case OMP_PARALLEL:
4704 case OMP_FOR:
4705 case OMP_SECTIONS:
4706 case OMP_SECTION:
4707 case OMP_SINGLE:
4708 case OMP_MASTER:
4709 case OMP_ORDERED:
4710 case OMP_CRITICAL:
4711 case OMP_TASK:
4712 /* These are always void. */
4713 return true;
4715 case CALL_EXPR:
4716 case MODIFY_EXPR:
4717 case PREDICT_EXPR:
4718 /* These are valid regardless of their type. */
4719 return true;
4721 default:
4722 return false;
4727 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4728 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4729 DECL_GIMPLE_REG_P set.
4731 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4732 other, unmodified part of the complex object just before the total store.
4733 As a consequence, if the object is still uninitialized, an undefined value
4734 will be loaded into a register, which may result in a spurious exception
4735 if the register is floating-point and the value happens to be a signaling
4736 NaN for example. Then the fully-fledged complex operations lowering pass
4737 followed by a DCE pass are necessary in order to fix things up. */
4739 static enum gimplify_status
4740 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4741 bool want_value)
4743 enum tree_code code, ocode;
4744 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4746 lhs = TREE_OPERAND (*expr_p, 0);
4747 rhs = TREE_OPERAND (*expr_p, 1);
4748 code = TREE_CODE (lhs);
4749 lhs = TREE_OPERAND (lhs, 0);
4751 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4752 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4753 TREE_NO_WARNING (other) = 1;
4754 other = get_formal_tmp_var (other, pre_p);
4756 realpart = code == REALPART_EXPR ? rhs : other;
4757 imagpart = code == REALPART_EXPR ? other : rhs;
4759 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4760 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4761 else
4762 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4764 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4765 *expr_p = (want_value) ? rhs : NULL_TREE;
4767 return GS_ALL_DONE;
4770 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4772 modify_expr
4773 : varname '=' rhs
4774 | '*' ID '=' rhs
4776 PRE_P points to the list where side effects that must happen before
4777 *EXPR_P should be stored.
4779 POST_P points to the list where side effects that must happen after
4780 *EXPR_P should be stored.
4782 WANT_VALUE is nonzero iff we want to use the value of this expression
4783 in another expression. */
4785 static enum gimplify_status
4786 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4787 bool want_value)
4789 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4790 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4791 enum gimplify_status ret = GS_UNHANDLED;
4792 gimple assign;
4793 location_t loc = EXPR_LOCATION (*expr_p);
4794 gimple_stmt_iterator gsi;
4796 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4797 || TREE_CODE (*expr_p) == INIT_EXPR);
4799 /* Trying to simplify a clobber using normal logic doesn't work,
4800 so handle it here. */
4801 if (TREE_CLOBBER_P (*from_p))
4803 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4804 if (ret == GS_ERROR)
4805 return ret;
4806 gcc_assert (!want_value
4807 && (TREE_CODE (*to_p) == VAR_DECL
4808 || TREE_CODE (*to_p) == MEM_REF));
4809 gimplify_seq_add_stmt (pre_p, gimple_build_assign (*to_p, *from_p));
4810 *expr_p = NULL;
4811 return GS_ALL_DONE;
4814 /* Insert pointer conversions required by the middle-end that are not
4815 required by the frontend. This fixes middle-end type checking for
4816 for example gcc.dg/redecl-6.c. */
4817 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4819 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4820 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4821 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4824 /* See if any simplifications can be done based on what the RHS is. */
4825 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4826 want_value);
4827 if (ret != GS_UNHANDLED)
4828 return ret;
4830 /* For zero sized types only gimplify the left hand side and right hand
4831 side as statements and throw away the assignment. Do this after
4832 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4833 types properly. */
4834 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4836 gimplify_stmt (from_p, pre_p);
4837 gimplify_stmt (to_p, pre_p);
4838 *expr_p = NULL_TREE;
4839 return GS_ALL_DONE;
4842 /* If the value being copied is of variable width, compute the length
4843 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4844 before gimplifying any of the operands so that we can resolve any
4845 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4846 the size of the expression to be copied, not of the destination, so
4847 that is what we must do here. */
4848 maybe_with_size_expr (from_p);
4850 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4851 if (ret == GS_ERROR)
4852 return ret;
4854 /* As a special case, we have to temporarily allow for assignments
4855 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4856 a toplevel statement, when gimplifying the GENERIC expression
4857 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4858 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4860 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4861 prevent gimplify_expr from trying to create a new temporary for
4862 foo's LHS, we tell it that it should only gimplify until it
4863 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4864 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4865 and all we need to do here is set 'a' to be its LHS. */
4866 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4867 fb_rvalue);
4868 if (ret == GS_ERROR)
4869 return ret;
4871 /* Now see if the above changed *from_p to something we handle specially. */
4872 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4873 want_value);
4874 if (ret != GS_UNHANDLED)
4875 return ret;
4877 /* If we've got a variable sized assignment between two lvalues (i.e. does
4878 not involve a call), then we can make things a bit more straightforward
4879 by converting the assignment to memcpy or memset. */
4880 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4882 tree from = TREE_OPERAND (*from_p, 0);
4883 tree size = TREE_OPERAND (*from_p, 1);
4885 if (TREE_CODE (from) == CONSTRUCTOR)
4886 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4888 if (is_gimple_addressable (from))
4890 *from_p = from;
4891 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4892 pre_p);
4896 /* Transform partial stores to non-addressable complex variables into
4897 total stores. This allows us to use real instead of virtual operands
4898 for these variables, which improves optimization. */
4899 if ((TREE_CODE (*to_p) == REALPART_EXPR
4900 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4901 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4902 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4904 /* Try to alleviate the effects of the gimplification creating artificial
4905 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4906 if (!gimplify_ctxp->into_ssa
4907 && TREE_CODE (*from_p) == VAR_DECL
4908 && DECL_IGNORED_P (*from_p)
4909 && DECL_P (*to_p)
4910 && !DECL_IGNORED_P (*to_p))
4912 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4913 DECL_NAME (*from_p)
4914 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4915 DECL_HAS_DEBUG_EXPR_P (*from_p) = 1;
4916 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4919 if (want_value && TREE_THIS_VOLATILE (*to_p))
4920 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4922 if (TREE_CODE (*from_p) == CALL_EXPR)
4924 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4925 instead of a GIMPLE_ASSIGN. */
4926 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4927 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4928 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4929 assign = gimple_build_call_from_tree (*from_p);
4930 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4931 notice_special_calls (assign);
4932 if (!gimple_call_noreturn_p (assign))
4933 gimple_call_set_lhs (assign, *to_p);
4935 else
4937 assign = gimple_build_assign (*to_p, *from_p);
4938 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4941 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4943 /* We should have got an SSA name from the start. */
4944 gcc_assert (TREE_CODE (*to_p) == SSA_NAME);
4947 gimplify_seq_add_stmt (pre_p, assign);
4948 gsi = gsi_last (*pre_p);
4949 fold_stmt (&gsi);
4951 if (want_value)
4953 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4954 return GS_OK;
4956 else
4957 *expr_p = NULL;
4959 return GS_ALL_DONE;
4962 /* Gimplify a comparison between two variable-sized objects. Do this
4963 with a call to BUILT_IN_MEMCMP. */
4965 static enum gimplify_status
4966 gimplify_variable_sized_compare (tree *expr_p)
4968 location_t loc = EXPR_LOCATION (*expr_p);
4969 tree op0 = TREE_OPERAND (*expr_p, 0);
4970 tree op1 = TREE_OPERAND (*expr_p, 1);
4971 tree t, arg, dest, src, expr;
4973 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4974 arg = unshare_expr (arg);
4975 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4976 src = build_fold_addr_expr_loc (loc, op1);
4977 dest = build_fold_addr_expr_loc (loc, op0);
4978 t = builtin_decl_implicit (BUILT_IN_MEMCMP);
4979 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4981 expr
4982 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4983 SET_EXPR_LOCATION (expr, loc);
4984 *expr_p = expr;
4986 return GS_OK;
4989 /* Gimplify a comparison between two aggregate objects of integral scalar
4990 mode as a comparison between the bitwise equivalent scalar values. */
4992 static enum gimplify_status
4993 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4995 location_t loc = EXPR_LOCATION (*expr_p);
4996 tree op0 = TREE_OPERAND (*expr_p, 0);
4997 tree op1 = TREE_OPERAND (*expr_p, 1);
4999 tree type = TREE_TYPE (op0);
5000 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
5002 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
5003 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
5005 *expr_p
5006 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
5008 return GS_OK;
5011 /* Gimplify an expression sequence. This function gimplifies each
5012 expression and rewrites the original expression with the last
5013 expression of the sequence in GIMPLE form.
5015 PRE_P points to the list where the side effects for all the
5016 expressions in the sequence will be emitted.
5018 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
5020 static enum gimplify_status
5021 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
5023 tree t = *expr_p;
5027 tree *sub_p = &TREE_OPERAND (t, 0);
5029 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
5030 gimplify_compound_expr (sub_p, pre_p, false);
5031 else
5032 gimplify_stmt (sub_p, pre_p);
5034 t = TREE_OPERAND (t, 1);
5036 while (TREE_CODE (t) == COMPOUND_EXPR);
5038 *expr_p = t;
5039 if (want_value)
5040 return GS_OK;
5041 else
5043 gimplify_stmt (expr_p, pre_p);
5044 return GS_ALL_DONE;
5048 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
5049 gimplify. After gimplification, EXPR_P will point to a new temporary
5050 that holds the original value of the SAVE_EXPR node.
5052 PRE_P points to the list where side effects that must happen before
5053 *EXPR_P should be stored. */
5055 static enum gimplify_status
5056 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5058 enum gimplify_status ret = GS_ALL_DONE;
5059 tree val;
5061 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
5062 val = TREE_OPERAND (*expr_p, 0);
5064 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
5065 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
5067 /* The operand may be a void-valued expression such as SAVE_EXPRs
5068 generated by the Java frontend for class initialization. It is
5069 being executed only for its side-effects. */
5070 if (TREE_TYPE (val) == void_type_node)
5072 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5073 is_gimple_stmt, fb_none);
5074 val = NULL;
5076 else
5077 val = get_initialized_tmp_var (val, pre_p, post_p);
5079 TREE_OPERAND (*expr_p, 0) = val;
5080 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
5083 *expr_p = val;
5085 return ret;
5088 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
5090 unary_expr
5091 : ...
5092 | '&' varname
5095 PRE_P points to the list where side effects that must happen before
5096 *EXPR_P should be stored.
5098 POST_P points to the list where side effects that must happen after
5099 *EXPR_P should be stored. */
5101 static enum gimplify_status
5102 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5104 tree expr = *expr_p;
5105 tree op0 = TREE_OPERAND (expr, 0);
5106 enum gimplify_status ret;
5107 location_t loc = EXPR_LOCATION (*expr_p);
5109 switch (TREE_CODE (op0))
5111 case INDIRECT_REF:
5112 do_indirect_ref:
5113 /* Check if we are dealing with an expression of the form '&*ptr'.
5114 While the front end folds away '&*ptr' into 'ptr', these
5115 expressions may be generated internally by the compiler (e.g.,
5116 builtins like __builtin_va_end). */
5117 /* Caution: the silent array decomposition semantics we allow for
5118 ADDR_EXPR means we can't always discard the pair. */
5119 /* Gimplification of the ADDR_EXPR operand may drop
5120 cv-qualification conversions, so make sure we add them if
5121 needed. */
5123 tree op00 = TREE_OPERAND (op0, 0);
5124 tree t_expr = TREE_TYPE (expr);
5125 tree t_op00 = TREE_TYPE (op00);
5127 if (!useless_type_conversion_p (t_expr, t_op00))
5128 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
5129 *expr_p = op00;
5130 ret = GS_OK;
5132 break;
5134 case VIEW_CONVERT_EXPR:
5135 /* Take the address of our operand and then convert it to the type of
5136 this ADDR_EXPR.
5138 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
5139 all clear. The impact of this transformation is even less clear. */
5141 /* If the operand is a useless conversion, look through it. Doing so
5142 guarantees that the ADDR_EXPR and its operand will remain of the
5143 same type. */
5144 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
5145 op0 = TREE_OPERAND (op0, 0);
5147 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
5148 build_fold_addr_expr_loc (loc,
5149 TREE_OPERAND (op0, 0)));
5150 ret = GS_OK;
5151 break;
5153 default:
5154 /* We use fb_either here because the C frontend sometimes takes
5155 the address of a call that returns a struct; see
5156 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
5157 the implied temporary explicit. */
5159 /* Make the operand addressable. */
5160 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
5161 is_gimple_addressable, fb_either);
5162 if (ret == GS_ERROR)
5163 break;
5165 /* Then mark it. Beware that it may not be possible to do so directly
5166 if a temporary has been created by the gimplification. */
5167 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
5169 op0 = TREE_OPERAND (expr, 0);
5171 /* For various reasons, the gimplification of the expression
5172 may have made a new INDIRECT_REF. */
5173 if (TREE_CODE (op0) == INDIRECT_REF)
5174 goto do_indirect_ref;
5176 mark_addressable (TREE_OPERAND (expr, 0));
5178 /* The FEs may end up building ADDR_EXPRs early on a decl with
5179 an incomplete type. Re-build ADDR_EXPRs in canonical form
5180 here. */
5181 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
5182 *expr_p = build_fold_addr_expr (op0);
5184 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
5185 recompute_tree_invariant_for_addr_expr (*expr_p);
5187 /* If we re-built the ADDR_EXPR add a conversion to the original type
5188 if required. */
5189 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
5190 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
5192 break;
5195 return ret;
5198 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
5199 value; output operands should be a gimple lvalue. */
5201 static enum gimplify_status
5202 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5204 tree expr;
5205 int noutputs;
5206 const char **oconstraints;
5207 int i;
5208 tree link;
5209 const char *constraint;
5210 bool allows_mem, allows_reg, is_inout;
5211 enum gimplify_status ret, tret;
5212 gimple stmt;
5213 vec<tree, va_gc> *inputs;
5214 vec<tree, va_gc> *outputs;
5215 vec<tree, va_gc> *clobbers;
5216 vec<tree, va_gc> *labels;
5217 tree link_next;
5219 expr = *expr_p;
5220 noutputs = list_length (ASM_OUTPUTS (expr));
5221 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
5223 inputs = NULL;
5224 outputs = NULL;
5225 clobbers = NULL;
5226 labels = NULL;
5228 ret = GS_ALL_DONE;
5229 link_next = NULL_TREE;
5230 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
5232 bool ok;
5233 size_t constraint_len;
5235 link_next = TREE_CHAIN (link);
5237 oconstraints[i]
5238 = constraint
5239 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5240 constraint_len = strlen (constraint);
5241 if (constraint_len == 0)
5242 continue;
5244 ok = parse_output_constraint (&constraint, i, 0, 0,
5245 &allows_mem, &allows_reg, &is_inout);
5246 if (!ok)
5248 ret = GS_ERROR;
5249 is_inout = false;
5252 if (!allows_reg && allows_mem)
5253 mark_addressable (TREE_VALUE (link));
5255 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5256 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
5257 fb_lvalue | fb_mayfail);
5258 if (tret == GS_ERROR)
5260 error ("invalid lvalue in asm output %d", i);
5261 ret = tret;
5264 vec_safe_push (outputs, link);
5265 TREE_CHAIN (link) = NULL_TREE;
5267 if (is_inout)
5269 /* An input/output operand. To give the optimizers more
5270 flexibility, split it into separate input and output
5271 operands. */
5272 tree input;
5273 char buf[10];
5275 /* Turn the in/out constraint into an output constraint. */
5276 char *p = xstrdup (constraint);
5277 p[0] = '=';
5278 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
5280 /* And add a matching input constraint. */
5281 if (allows_reg)
5283 sprintf (buf, "%d", i);
5285 /* If there are multiple alternatives in the constraint,
5286 handle each of them individually. Those that allow register
5287 will be replaced with operand number, the others will stay
5288 unchanged. */
5289 if (strchr (p, ',') != NULL)
5291 size_t len = 0, buflen = strlen (buf);
5292 char *beg, *end, *str, *dst;
5294 for (beg = p + 1;;)
5296 end = strchr (beg, ',');
5297 if (end == NULL)
5298 end = strchr (beg, '\0');
5299 if ((size_t) (end - beg) < buflen)
5300 len += buflen + 1;
5301 else
5302 len += end - beg + 1;
5303 if (*end)
5304 beg = end + 1;
5305 else
5306 break;
5309 str = (char *) alloca (len);
5310 for (beg = p + 1, dst = str;;)
5312 const char *tem;
5313 bool mem_p, reg_p, inout_p;
5315 end = strchr (beg, ',');
5316 if (end)
5317 *end = '\0';
5318 beg[-1] = '=';
5319 tem = beg - 1;
5320 parse_output_constraint (&tem, i, 0, 0,
5321 &mem_p, &reg_p, &inout_p);
5322 if (dst != str)
5323 *dst++ = ',';
5324 if (reg_p)
5326 memcpy (dst, buf, buflen);
5327 dst += buflen;
5329 else
5331 if (end)
5332 len = end - beg;
5333 else
5334 len = strlen (beg);
5335 memcpy (dst, beg, len);
5336 dst += len;
5338 if (end)
5339 beg = end + 1;
5340 else
5341 break;
5343 *dst = '\0';
5344 input = build_string (dst - str, str);
5346 else
5347 input = build_string (strlen (buf), buf);
5349 else
5350 input = build_string (constraint_len - 1, constraint + 1);
5352 free (p);
5354 input = build_tree_list (build_tree_list (NULL_TREE, input),
5355 unshare_expr (TREE_VALUE (link)));
5356 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5360 link_next = NULL_TREE;
5361 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5363 link_next = TREE_CHAIN (link);
5364 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5365 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5366 oconstraints, &allows_mem, &allows_reg);
5368 /* If we can't make copies, we can only accept memory. */
5369 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5371 if (allows_mem)
5372 allows_reg = 0;
5373 else
5375 error ("impossible constraint in %<asm%>");
5376 error ("non-memory input %d must stay in memory", i);
5377 return GS_ERROR;
5381 /* If the operand is a memory input, it should be an lvalue. */
5382 if (!allows_reg && allows_mem)
5384 tree inputv = TREE_VALUE (link);
5385 STRIP_NOPS (inputv);
5386 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5387 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5388 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5389 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5390 TREE_VALUE (link) = error_mark_node;
5391 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5392 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5393 mark_addressable (TREE_VALUE (link));
5394 if (tret == GS_ERROR)
5396 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5397 input_location = EXPR_LOCATION (TREE_VALUE (link));
5398 error ("memory input %d is not directly addressable", i);
5399 ret = tret;
5402 else
5404 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5405 is_gimple_asm_val, fb_rvalue);
5406 if (tret == GS_ERROR)
5407 ret = tret;
5410 TREE_CHAIN (link) = NULL_TREE;
5411 vec_safe_push (inputs, link);
5414 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5415 vec_safe_push (clobbers, link);
5417 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5418 vec_safe_push (labels, link);
5420 /* Do not add ASMs with errors to the gimple IL stream. */
5421 if (ret != GS_ERROR)
5423 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5424 inputs, outputs, clobbers, labels);
5426 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5427 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5429 gimplify_seq_add_stmt (pre_p, stmt);
5432 return ret;
5435 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5436 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5437 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5438 return to this function.
5440 FIXME should we complexify the prequeue handling instead? Or use flags
5441 for all the cleanups and let the optimizer tighten them up? The current
5442 code seems pretty fragile; it will break on a cleanup within any
5443 non-conditional nesting. But any such nesting would be broken, anyway;
5444 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5445 and continues out of it. We can do that at the RTL level, though, so
5446 having an optimizer to tighten up try/finally regions would be a Good
5447 Thing. */
5449 static enum gimplify_status
5450 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5452 gimple_stmt_iterator iter;
5453 gimple_seq body_sequence = NULL;
5455 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5457 /* We only care about the number of conditions between the innermost
5458 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5459 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5460 int old_conds = gimplify_ctxp->conditions;
5461 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5462 bool old_in_cleanup_point_expr = gimplify_ctxp->in_cleanup_point_expr;
5463 gimplify_ctxp->conditions = 0;
5464 gimplify_ctxp->conditional_cleanups = NULL;
5465 gimplify_ctxp->in_cleanup_point_expr = true;
5467 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5469 gimplify_ctxp->conditions = old_conds;
5470 gimplify_ctxp->conditional_cleanups = old_cleanups;
5471 gimplify_ctxp->in_cleanup_point_expr = old_in_cleanup_point_expr;
5473 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5475 gimple wce = gsi_stmt (iter);
5477 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5479 if (gsi_one_before_end_p (iter))
5481 /* Note that gsi_insert_seq_before and gsi_remove do not
5482 scan operands, unlike some other sequence mutators. */
5483 if (!gimple_wce_cleanup_eh_only (wce))
5484 gsi_insert_seq_before_without_update (&iter,
5485 gimple_wce_cleanup (wce),
5486 GSI_SAME_STMT);
5487 gsi_remove (&iter, true);
5488 break;
5490 else
5492 gimple gtry;
5493 gimple_seq seq;
5494 enum gimple_try_flags kind;
5496 if (gimple_wce_cleanup_eh_only (wce))
5497 kind = GIMPLE_TRY_CATCH;
5498 else
5499 kind = GIMPLE_TRY_FINALLY;
5500 seq = gsi_split_seq_after (iter);
5502 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5503 /* Do not use gsi_replace here, as it may scan operands.
5504 We want to do a simple structural modification only. */
5505 gsi_set_stmt (&iter, gtry);
5506 iter = gsi_start (gtry->gimple_try.eval);
5509 else
5510 gsi_next (&iter);
5513 gimplify_seq_add_seq (pre_p, body_sequence);
5514 if (temp)
5516 *expr_p = temp;
5517 return GS_OK;
5519 else
5521 *expr_p = NULL;
5522 return GS_ALL_DONE;
5526 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5527 is the cleanup action required. EH_ONLY is true if the cleanup should
5528 only be executed if an exception is thrown, not on normal exit. */
5530 static void
5531 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5533 gimple wce;
5534 gimple_seq cleanup_stmts = NULL;
5536 /* Errors can result in improperly nested cleanups. Which results in
5537 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5538 if (seen_error ())
5539 return;
5541 if (gimple_conditional_context ())
5543 /* If we're in a conditional context, this is more complex. We only
5544 want to run the cleanup if we actually ran the initialization that
5545 necessitates it, but we want to run it after the end of the
5546 conditional context. So we wrap the try/finally around the
5547 condition and use a flag to determine whether or not to actually
5548 run the destructor. Thus
5550 test ? f(A()) : 0
5552 becomes (approximately)
5554 flag = 0;
5555 try {
5556 if (test) { A::A(temp); flag = 1; val = f(temp); }
5557 else { val = 0; }
5558 } finally {
5559 if (flag) A::~A(temp);
5563 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5564 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5565 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5567 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5568 gimplify_stmt (&cleanup, &cleanup_stmts);
5569 wce = gimple_build_wce (cleanup_stmts);
5571 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5572 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5573 gimplify_seq_add_stmt (pre_p, ftrue);
5575 /* Because of this manipulation, and the EH edges that jump
5576 threading cannot redirect, the temporary (VAR) will appear
5577 to be used uninitialized. Don't warn. */
5578 TREE_NO_WARNING (var) = 1;
5580 else
5582 gimplify_stmt (&cleanup, &cleanup_stmts);
5583 wce = gimple_build_wce (cleanup_stmts);
5584 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5585 gimplify_seq_add_stmt (pre_p, wce);
5589 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5591 static enum gimplify_status
5592 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5594 tree targ = *expr_p;
5595 tree temp = TARGET_EXPR_SLOT (targ);
5596 tree init = TARGET_EXPR_INITIAL (targ);
5597 enum gimplify_status ret;
5599 if (init)
5601 tree cleanup = NULL_TREE;
5603 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5604 to the temps list. Handle also variable length TARGET_EXPRs. */
5605 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5607 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5608 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5609 gimplify_vla_decl (temp, pre_p);
5611 else
5612 gimple_add_tmp_var (temp);
5614 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5615 expression is supposed to initialize the slot. */
5616 if (VOID_TYPE_P (TREE_TYPE (init)))
5617 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5618 else
5620 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5621 init = init_expr;
5622 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5623 init = NULL;
5624 ggc_free (init_expr);
5626 if (ret == GS_ERROR)
5628 /* PR c++/28266 Make sure this is expanded only once. */
5629 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5630 return GS_ERROR;
5632 if (init)
5633 gimplify_and_add (init, pre_p);
5635 /* If needed, push the cleanup for the temp. */
5636 if (TARGET_EXPR_CLEANUP (targ))
5638 if (CLEANUP_EH_ONLY (targ))
5639 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5640 CLEANUP_EH_ONLY (targ), pre_p);
5641 else
5642 cleanup = TARGET_EXPR_CLEANUP (targ);
5645 /* Add a clobber for the temporary going out of scope, like
5646 gimplify_bind_expr. */
5647 if (gimplify_ctxp->in_cleanup_point_expr
5648 && needs_to_live_in_memory (temp)
5649 && flag_stack_reuse == SR_ALL)
5651 tree clobber = build_constructor (TREE_TYPE (temp),
5652 NULL);
5653 TREE_THIS_VOLATILE (clobber) = true;
5654 clobber = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, clobber);
5655 if (cleanup)
5656 cleanup = build2 (COMPOUND_EXPR, void_type_node, cleanup,
5657 clobber);
5658 else
5659 cleanup = clobber;
5662 if (cleanup)
5663 gimple_push_cleanup (temp, cleanup, false, pre_p);
5665 /* Only expand this once. */
5666 TREE_OPERAND (targ, 3) = init;
5667 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5669 else
5670 /* We should have expanded this before. */
5671 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5673 *expr_p = temp;
5674 return GS_OK;
5677 /* Gimplification of expression trees. */
5679 /* Gimplify an expression which appears at statement context. The
5680 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5681 NULL, a new sequence is allocated.
5683 Return true if we actually added a statement to the queue. */
5685 bool
5686 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5688 gimple_seq_node last;
5690 last = gimple_seq_last (*seq_p);
5691 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5692 return last != gimple_seq_last (*seq_p);
5695 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5696 to CTX. If entries already exist, force them to be some flavor of private.
5697 If there is no enclosing parallel, do nothing. */
5699 void
5700 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5702 splay_tree_node n;
5704 if (decl == NULL || !DECL_P (decl))
5705 return;
5709 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5710 if (n != NULL)
5712 if (n->value & GOVD_SHARED)
5713 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5714 else
5715 return;
5717 else if (ctx->region_type != ORT_WORKSHARE)
5718 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5720 ctx = ctx->outer_context;
5722 while (ctx);
5725 /* Similarly for each of the type sizes of TYPE. */
5727 static void
5728 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5730 if (type == NULL || type == error_mark_node)
5731 return;
5732 type = TYPE_MAIN_VARIANT (type);
5734 if (pointer_set_insert (ctx->privatized_types, type))
5735 return;
5737 switch (TREE_CODE (type))
5739 case INTEGER_TYPE:
5740 case ENUMERAL_TYPE:
5741 case BOOLEAN_TYPE:
5742 case REAL_TYPE:
5743 case FIXED_POINT_TYPE:
5744 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5745 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5746 break;
5748 case ARRAY_TYPE:
5749 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5750 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5751 break;
5753 case RECORD_TYPE:
5754 case UNION_TYPE:
5755 case QUAL_UNION_TYPE:
5757 tree field;
5758 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5759 if (TREE_CODE (field) == FIELD_DECL)
5761 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5762 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5765 break;
5767 case POINTER_TYPE:
5768 case REFERENCE_TYPE:
5769 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5770 break;
5772 default:
5773 break;
5776 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5777 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5778 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5781 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5783 static void
5784 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5786 splay_tree_node n;
5787 unsigned int nflags;
5788 tree t;
5790 if (error_operand_p (decl))
5791 return;
5793 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5794 there are constructors involved somewhere. */
5795 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5796 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5797 flags |= GOVD_SEEN;
5799 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5800 if (n != NULL)
5802 /* We shouldn't be re-adding the decl with the same data
5803 sharing class. */
5804 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5805 /* The only combination of data sharing classes we should see is
5806 FIRSTPRIVATE and LASTPRIVATE. */
5807 nflags = n->value | flags;
5808 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5809 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5810 n->value = nflags;
5811 return;
5814 /* When adding a variable-sized variable, we have to handle all sorts
5815 of additional bits of data: the pointer replacement variable, and
5816 the parameters of the type. */
5817 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5819 /* Add the pointer replacement variable as PRIVATE if the variable
5820 replacement is private, else FIRSTPRIVATE since we'll need the
5821 address of the original variable either for SHARED, or for the
5822 copy into or out of the context. */
5823 if (!(flags & GOVD_LOCAL))
5825 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5826 nflags |= flags & GOVD_SEEN;
5827 t = DECL_VALUE_EXPR (decl);
5828 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5829 t = TREE_OPERAND (t, 0);
5830 gcc_assert (DECL_P (t));
5831 omp_add_variable (ctx, t, nflags);
5834 /* Add all of the variable and type parameters (which should have
5835 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5836 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5837 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5838 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5840 /* The variable-sized variable itself is never SHARED, only some form
5841 of PRIVATE. The sharing would take place via the pointer variable
5842 which we remapped above. */
5843 if (flags & GOVD_SHARED)
5844 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5845 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5847 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5848 alloca statement we generate for the variable, so make sure it
5849 is available. This isn't automatically needed for the SHARED
5850 case, since we won't be allocating local storage then.
5851 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5852 in this case omp_notice_variable will be called later
5853 on when it is gimplified. */
5854 else if (! (flags & GOVD_LOCAL)
5855 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5856 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5858 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5860 gcc_assert ((flags & GOVD_LOCAL) == 0);
5861 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5863 /* Similar to the direct variable sized case above, we'll need the
5864 size of references being privatized. */
5865 if ((flags & GOVD_SHARED) == 0)
5867 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5868 if (TREE_CODE (t) != INTEGER_CST)
5869 omp_notice_variable (ctx, t, true);
5873 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5876 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5877 This just prints out diagnostics about threadprivate variable uses
5878 in untied tasks. If DECL2 is non-NULL, prevent this warning
5879 on that variable. */
5881 static bool
5882 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5883 tree decl2)
5885 splay_tree_node n;
5887 if (ctx->region_type != ORT_UNTIED_TASK)
5888 return false;
5889 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5890 if (n == NULL)
5892 error ("threadprivate variable %qE used in untied task",
5893 DECL_NAME (decl));
5894 error_at (ctx->location, "enclosing task");
5895 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5897 if (decl2)
5898 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5899 return false;
5902 /* Record the fact that DECL was used within the OpenMP context CTX.
5903 IN_CODE is true when real code uses DECL, and false when we should
5904 merely emit default(none) errors. Return true if DECL is going to
5905 be remapped and thus DECL shouldn't be gimplified into its
5906 DECL_VALUE_EXPR (if any). */
5908 static bool
5909 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5911 splay_tree_node n;
5912 unsigned flags = in_code ? GOVD_SEEN : 0;
5913 bool ret = false, shared;
5915 if (error_operand_p (decl))
5916 return false;
5918 /* Threadprivate variables are predetermined. */
5919 if (is_global_var (decl))
5921 if (DECL_THREAD_LOCAL_P (decl))
5922 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5924 if (DECL_HAS_VALUE_EXPR_P (decl))
5926 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5928 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5929 return omp_notice_threadprivate_variable (ctx, decl, value);
5933 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5934 if (n == NULL)
5936 enum omp_clause_default_kind default_kind, kind;
5937 struct gimplify_omp_ctx *octx;
5939 if (ctx->region_type == ORT_WORKSHARE)
5940 goto do_outer;
5942 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5943 remapped firstprivate instead of shared. To some extent this is
5944 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5945 default_kind = ctx->default_kind;
5946 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5947 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5948 default_kind = kind;
5950 switch (default_kind)
5952 case OMP_CLAUSE_DEFAULT_NONE:
5953 error ("%qE not specified in enclosing parallel",
5954 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5955 if ((ctx->region_type & ORT_TASK) != 0)
5956 error_at (ctx->location, "enclosing task");
5957 else
5958 error_at (ctx->location, "enclosing parallel");
5959 /* FALLTHRU */
5960 case OMP_CLAUSE_DEFAULT_SHARED:
5961 flags |= GOVD_SHARED;
5962 break;
5963 case OMP_CLAUSE_DEFAULT_PRIVATE:
5964 flags |= GOVD_PRIVATE;
5965 break;
5966 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5967 flags |= GOVD_FIRSTPRIVATE;
5968 break;
5969 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5970 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5971 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5972 if (ctx->outer_context)
5973 omp_notice_variable (ctx->outer_context, decl, in_code);
5974 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5976 splay_tree_node n2;
5978 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5979 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5981 flags |= GOVD_FIRSTPRIVATE;
5982 break;
5984 if ((octx->region_type & ORT_PARALLEL) != 0)
5985 break;
5987 if (flags & GOVD_FIRSTPRIVATE)
5988 break;
5989 if (octx == NULL
5990 && (TREE_CODE (decl) == PARM_DECL
5991 || (!is_global_var (decl)
5992 && DECL_CONTEXT (decl) == current_function_decl)))
5994 flags |= GOVD_FIRSTPRIVATE;
5995 break;
5997 flags |= GOVD_SHARED;
5998 break;
5999 default:
6000 gcc_unreachable ();
6003 if ((flags & GOVD_PRIVATE)
6004 && lang_hooks.decls.omp_private_outer_ref (decl))
6005 flags |= GOVD_PRIVATE_OUTER_REF;
6007 omp_add_variable (ctx, decl, flags);
6009 shared = (flags & GOVD_SHARED) != 0;
6010 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
6011 goto do_outer;
6014 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
6015 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
6016 && DECL_SIZE (decl)
6017 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
6019 splay_tree_node n2;
6020 tree t = DECL_VALUE_EXPR (decl);
6021 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
6022 t = TREE_OPERAND (t, 0);
6023 gcc_assert (DECL_P (t));
6024 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
6025 n2->value |= GOVD_SEEN;
6028 shared = ((flags | n->value) & GOVD_SHARED) != 0;
6029 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
6031 /* If nothing changed, there's nothing left to do. */
6032 if ((n->value & flags) == flags)
6033 return ret;
6034 flags |= n->value;
6035 n->value = flags;
6037 do_outer:
6038 /* If the variable is private in the current context, then we don't
6039 need to propagate anything to an outer context. */
6040 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
6041 return ret;
6042 if (ctx->outer_context
6043 && omp_notice_variable (ctx->outer_context, decl, in_code))
6044 return true;
6045 return ret;
6048 /* Verify that DECL is private within CTX. If there's specific information
6049 to the contrary in the innermost scope, generate an error. */
6051 static bool
6052 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
6054 splay_tree_node n;
6056 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
6057 if (n != NULL)
6059 if (n->value & GOVD_SHARED)
6061 if (ctx == gimplify_omp_ctxp)
6063 error ("iteration variable %qE should be private",
6064 DECL_NAME (decl));
6065 n->value = GOVD_PRIVATE;
6066 return true;
6068 else
6069 return false;
6071 else if ((n->value & GOVD_EXPLICIT) != 0
6072 && (ctx == gimplify_omp_ctxp
6073 || (ctx->region_type == ORT_COMBINED_PARALLEL
6074 && gimplify_omp_ctxp->outer_context == ctx)))
6076 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
6077 error ("iteration variable %qE should not be firstprivate",
6078 DECL_NAME (decl));
6079 else if ((n->value & GOVD_REDUCTION) != 0)
6080 error ("iteration variable %qE should not be reduction",
6081 DECL_NAME (decl));
6083 return (ctx == gimplify_omp_ctxp
6084 || (ctx->region_type == ORT_COMBINED_PARALLEL
6085 && gimplify_omp_ctxp->outer_context == ctx));
6088 if (ctx->region_type != ORT_WORKSHARE)
6089 return false;
6090 else if (ctx->outer_context)
6091 return omp_is_private (ctx->outer_context, decl);
6092 return false;
6095 /* Return true if DECL is private within a parallel region
6096 that binds to the current construct's context or in parallel
6097 region's REDUCTION clause. */
6099 static bool
6100 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
6102 splay_tree_node n;
6106 ctx = ctx->outer_context;
6107 if (ctx == NULL)
6108 return !(is_global_var (decl)
6109 /* References might be private, but might be shared too. */
6110 || lang_hooks.decls.omp_privatize_by_reference (decl));
6112 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6113 if (n != NULL)
6114 return (n->value & GOVD_SHARED) == 0;
6116 while (ctx->region_type == ORT_WORKSHARE);
6117 return false;
6120 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
6121 and previous omp contexts. */
6123 static void
6124 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
6125 enum omp_region_type region_type)
6127 struct gimplify_omp_ctx *ctx, *outer_ctx;
6128 struct gimplify_ctx gctx;
6129 tree c;
6131 ctx = new_omp_context (region_type);
6132 outer_ctx = ctx->outer_context;
6134 while ((c = *list_p) != NULL)
6136 bool remove = false;
6137 bool notice_outer = true;
6138 const char *check_non_private = NULL;
6139 unsigned int flags;
6140 tree decl;
6142 switch (OMP_CLAUSE_CODE (c))
6144 case OMP_CLAUSE_PRIVATE:
6145 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
6146 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
6148 flags |= GOVD_PRIVATE_OUTER_REF;
6149 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
6151 else
6152 notice_outer = false;
6153 goto do_add;
6154 case OMP_CLAUSE_SHARED:
6155 flags = GOVD_SHARED | GOVD_EXPLICIT;
6156 goto do_add;
6157 case OMP_CLAUSE_FIRSTPRIVATE:
6158 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
6159 check_non_private = "firstprivate";
6160 goto do_add;
6161 case OMP_CLAUSE_LASTPRIVATE:
6162 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
6163 check_non_private = "lastprivate";
6164 goto do_add;
6165 case OMP_CLAUSE_REDUCTION:
6166 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
6167 check_non_private = "reduction";
6168 goto do_add;
6170 do_add:
6171 decl = OMP_CLAUSE_DECL (c);
6172 if (error_operand_p (decl))
6174 remove = true;
6175 break;
6177 omp_add_variable (ctx, decl, flags);
6178 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6179 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
6181 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
6182 GOVD_LOCAL | GOVD_SEEN);
6183 gimplify_omp_ctxp = ctx;
6184 push_gimplify_context (&gctx);
6186 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = NULL;
6187 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
6189 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
6190 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
6191 pop_gimplify_context
6192 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
6193 push_gimplify_context (&gctx);
6194 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
6195 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
6196 pop_gimplify_context
6197 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
6198 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
6199 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
6201 gimplify_omp_ctxp = outer_ctx;
6203 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6204 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
6206 gimplify_omp_ctxp = ctx;
6207 push_gimplify_context (&gctx);
6208 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
6210 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
6211 NULL, NULL);
6212 TREE_SIDE_EFFECTS (bind) = 1;
6213 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
6214 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
6216 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
6217 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6218 pop_gimplify_context
6219 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
6220 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
6222 gimplify_omp_ctxp = outer_ctx;
6224 if (notice_outer)
6225 goto do_notice;
6226 break;
6228 case OMP_CLAUSE_COPYIN:
6229 case OMP_CLAUSE_COPYPRIVATE:
6230 decl = OMP_CLAUSE_DECL (c);
6231 if (error_operand_p (decl))
6233 remove = true;
6234 break;
6236 do_notice:
6237 if (outer_ctx)
6238 omp_notice_variable (outer_ctx, decl, true);
6239 if (check_non_private
6240 && region_type == ORT_WORKSHARE
6241 && omp_check_private (ctx, decl))
6243 error ("%s variable %qE is private in outer context",
6244 check_non_private, DECL_NAME (decl));
6245 remove = true;
6247 break;
6249 case OMP_CLAUSE_FINAL:
6250 case OMP_CLAUSE_IF:
6251 OMP_CLAUSE_OPERAND (c, 0)
6252 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
6253 /* Fall through. */
6255 case OMP_CLAUSE_SCHEDULE:
6256 case OMP_CLAUSE_NUM_THREADS:
6257 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
6258 is_gimple_val, fb_rvalue) == GS_ERROR)
6259 remove = true;
6260 break;
6262 case OMP_CLAUSE_NOWAIT:
6263 case OMP_CLAUSE_ORDERED:
6264 case OMP_CLAUSE_UNTIED:
6265 case OMP_CLAUSE_COLLAPSE:
6266 case OMP_CLAUSE_MERGEABLE:
6267 break;
6269 case OMP_CLAUSE_DEFAULT:
6270 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
6271 break;
6273 default:
6274 gcc_unreachable ();
6277 if (remove)
6278 *list_p = OMP_CLAUSE_CHAIN (c);
6279 else
6280 list_p = &OMP_CLAUSE_CHAIN (c);
6283 gimplify_omp_ctxp = ctx;
6286 /* For all variables that were not actually used within the context,
6287 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6289 static int
6290 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
6292 tree *list_p = (tree *) data;
6293 tree decl = (tree) n->key;
6294 unsigned flags = n->value;
6295 enum omp_clause_code code;
6296 tree clause;
6297 bool private_debug;
6299 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
6300 return 0;
6301 if ((flags & GOVD_SEEN) == 0)
6302 return 0;
6303 if (flags & GOVD_DEBUG_PRIVATE)
6305 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
6306 private_debug = true;
6308 else
6309 private_debug
6310 = lang_hooks.decls.omp_private_debug_clause (decl,
6311 !!(flags & GOVD_SHARED));
6312 if (private_debug)
6313 code = OMP_CLAUSE_PRIVATE;
6314 else if (flags & GOVD_SHARED)
6316 if (is_global_var (decl))
6318 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6319 while (ctx != NULL)
6321 splay_tree_node on
6322 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6323 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6324 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6325 break;
6326 ctx = ctx->outer_context;
6328 if (ctx == NULL)
6329 return 0;
6331 code = OMP_CLAUSE_SHARED;
6333 else if (flags & GOVD_PRIVATE)
6334 code = OMP_CLAUSE_PRIVATE;
6335 else if (flags & GOVD_FIRSTPRIVATE)
6336 code = OMP_CLAUSE_FIRSTPRIVATE;
6337 else
6338 gcc_unreachable ();
6340 clause = build_omp_clause (input_location, code);
6341 OMP_CLAUSE_DECL (clause) = decl;
6342 OMP_CLAUSE_CHAIN (clause) = *list_p;
6343 if (private_debug)
6344 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6345 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6346 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6347 *list_p = clause;
6348 lang_hooks.decls.omp_finish_clause (clause);
6350 return 0;
6353 static void
6354 gimplify_adjust_omp_clauses (tree *list_p)
6356 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6357 tree c, decl;
6359 while ((c = *list_p) != NULL)
6361 splay_tree_node n;
6362 bool remove = false;
6364 switch (OMP_CLAUSE_CODE (c))
6366 case OMP_CLAUSE_PRIVATE:
6367 case OMP_CLAUSE_SHARED:
6368 case OMP_CLAUSE_FIRSTPRIVATE:
6369 decl = OMP_CLAUSE_DECL (c);
6370 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6371 remove = !(n->value & GOVD_SEEN);
6372 if (! remove)
6374 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6375 if ((n->value & GOVD_DEBUG_PRIVATE)
6376 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6378 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6379 || ((n->value & GOVD_DATA_SHARE_CLASS)
6380 == GOVD_PRIVATE));
6381 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6382 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6385 break;
6387 case OMP_CLAUSE_LASTPRIVATE:
6388 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6389 accurately reflect the presence of a FIRSTPRIVATE clause. */
6390 decl = OMP_CLAUSE_DECL (c);
6391 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6392 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6393 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6394 break;
6396 case OMP_CLAUSE_REDUCTION:
6397 case OMP_CLAUSE_COPYIN:
6398 case OMP_CLAUSE_COPYPRIVATE:
6399 case OMP_CLAUSE_IF:
6400 case OMP_CLAUSE_NUM_THREADS:
6401 case OMP_CLAUSE_SCHEDULE:
6402 case OMP_CLAUSE_NOWAIT:
6403 case OMP_CLAUSE_ORDERED:
6404 case OMP_CLAUSE_DEFAULT:
6405 case OMP_CLAUSE_UNTIED:
6406 case OMP_CLAUSE_COLLAPSE:
6407 case OMP_CLAUSE_FINAL:
6408 case OMP_CLAUSE_MERGEABLE:
6409 break;
6411 default:
6412 gcc_unreachable ();
6415 if (remove)
6416 *list_p = OMP_CLAUSE_CHAIN (c);
6417 else
6418 list_p = &OMP_CLAUSE_CHAIN (c);
6421 /* Add in any implicit data sharing. */
6422 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6424 gimplify_omp_ctxp = ctx->outer_context;
6425 delete_omp_context (ctx);
6428 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6429 gimplification of the body, as well as scanning the body for used
6430 variables. We need to do this scan now, because variable-sized
6431 decls will be decomposed during gimplification. */
6433 static void
6434 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6436 tree expr = *expr_p;
6437 gimple g;
6438 gimple_seq body = NULL;
6439 struct gimplify_ctx gctx;
6441 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6442 OMP_PARALLEL_COMBINED (expr)
6443 ? ORT_COMBINED_PARALLEL
6444 : ORT_PARALLEL);
6446 push_gimplify_context (&gctx);
6448 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6449 if (gimple_code (g) == GIMPLE_BIND)
6450 pop_gimplify_context (g);
6451 else
6452 pop_gimplify_context (NULL);
6454 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6456 g = gimple_build_omp_parallel (body,
6457 OMP_PARALLEL_CLAUSES (expr),
6458 NULL_TREE, NULL_TREE);
6459 if (OMP_PARALLEL_COMBINED (expr))
6460 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6461 gimplify_seq_add_stmt (pre_p, g);
6462 *expr_p = NULL_TREE;
6465 /* Gimplify the contents of an OMP_TASK statement. This involves
6466 gimplification of the body, as well as scanning the body for used
6467 variables. We need to do this scan now, because variable-sized
6468 decls will be decomposed during gimplification. */
6470 static void
6471 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6473 tree expr = *expr_p;
6474 gimple g;
6475 gimple_seq body = NULL;
6476 struct gimplify_ctx gctx;
6478 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6479 find_omp_clause (OMP_TASK_CLAUSES (expr),
6480 OMP_CLAUSE_UNTIED)
6481 ? ORT_UNTIED_TASK : ORT_TASK);
6483 push_gimplify_context (&gctx);
6485 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6486 if (gimple_code (g) == GIMPLE_BIND)
6487 pop_gimplify_context (g);
6488 else
6489 pop_gimplify_context (NULL);
6491 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6493 g = gimple_build_omp_task (body,
6494 OMP_TASK_CLAUSES (expr),
6495 NULL_TREE, NULL_TREE,
6496 NULL_TREE, NULL_TREE, NULL_TREE);
6497 gimplify_seq_add_stmt (pre_p, g);
6498 *expr_p = NULL_TREE;
6501 /* Gimplify the gross structure of an OMP_FOR statement. */
6503 static enum gimplify_status
6504 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6506 tree for_stmt, decl, var, t;
6507 enum gimplify_status ret = GS_ALL_DONE;
6508 enum gimplify_status tret;
6509 gimple gfor;
6510 gimple_seq for_body, for_pre_body;
6511 int i;
6513 for_stmt = *expr_p;
6515 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6516 ORT_WORKSHARE);
6518 /* Handle OMP_FOR_INIT. */
6519 for_pre_body = NULL;
6520 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6521 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6523 for_body = NULL;
6524 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6525 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6526 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6527 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6528 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6530 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6531 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6532 decl = TREE_OPERAND (t, 0);
6533 gcc_assert (DECL_P (decl));
6534 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6535 || POINTER_TYPE_P (TREE_TYPE (decl)));
6537 /* Make sure the iteration variable is private. */
6538 if (omp_is_private (gimplify_omp_ctxp, decl))
6539 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6540 else
6541 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6543 /* If DECL is not a gimple register, create a temporary variable to act
6544 as an iteration counter. This is valid, since DECL cannot be
6545 modified in the body of the loop. */
6546 if (!is_gimple_reg (decl))
6548 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6549 TREE_OPERAND (t, 0) = var;
6551 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6553 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6555 else
6556 var = decl;
6558 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6559 is_gimple_val, fb_rvalue);
6560 ret = MIN (ret, tret);
6561 if (ret == GS_ERROR)
6562 return ret;
6564 /* Handle OMP_FOR_COND. */
6565 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6566 gcc_assert (COMPARISON_CLASS_P (t));
6567 gcc_assert (TREE_OPERAND (t, 0) == decl);
6569 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6570 is_gimple_val, fb_rvalue);
6571 ret = MIN (ret, tret);
6573 /* Handle OMP_FOR_INCR. */
6574 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6575 switch (TREE_CODE (t))
6577 case PREINCREMENT_EXPR:
6578 case POSTINCREMENT_EXPR:
6579 t = build_int_cst (TREE_TYPE (decl), 1);
6580 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6581 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6582 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6583 break;
6585 case PREDECREMENT_EXPR:
6586 case POSTDECREMENT_EXPR:
6587 t = build_int_cst (TREE_TYPE (decl), -1);
6588 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6589 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6590 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6591 break;
6593 case MODIFY_EXPR:
6594 gcc_assert (TREE_OPERAND (t, 0) == decl);
6595 TREE_OPERAND (t, 0) = var;
6597 t = TREE_OPERAND (t, 1);
6598 switch (TREE_CODE (t))
6600 case PLUS_EXPR:
6601 if (TREE_OPERAND (t, 1) == decl)
6603 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6604 TREE_OPERAND (t, 0) = var;
6605 break;
6608 /* Fallthru. */
6609 case MINUS_EXPR:
6610 case POINTER_PLUS_EXPR:
6611 gcc_assert (TREE_OPERAND (t, 0) == decl);
6612 TREE_OPERAND (t, 0) = var;
6613 break;
6614 default:
6615 gcc_unreachable ();
6618 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6619 is_gimple_val, fb_rvalue);
6620 ret = MIN (ret, tret);
6621 break;
6623 default:
6624 gcc_unreachable ();
6627 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6629 tree c;
6630 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6631 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6632 && OMP_CLAUSE_DECL (c) == decl
6633 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6635 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6636 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6637 gcc_assert (TREE_OPERAND (t, 0) == var);
6638 t = TREE_OPERAND (t, 1);
6639 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6640 || TREE_CODE (t) == MINUS_EXPR
6641 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6642 gcc_assert (TREE_OPERAND (t, 0) == var);
6643 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6644 TREE_OPERAND (t, 1));
6645 gimplify_assign (decl, t,
6646 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6651 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6653 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6655 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6656 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6657 for_pre_body);
6659 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6661 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6662 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6663 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6664 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6665 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6666 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6667 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6668 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6671 gimplify_seq_add_stmt (pre_p, gfor);
6672 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6675 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6676 In particular, OMP_SECTIONS and OMP_SINGLE. */
6678 static void
6679 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6681 tree expr = *expr_p;
6682 gimple stmt;
6683 gimple_seq body = NULL;
6685 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6686 gimplify_and_add (OMP_BODY (expr), &body);
6687 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6689 if (TREE_CODE (expr) == OMP_SECTIONS)
6690 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6691 else if (TREE_CODE (expr) == OMP_SINGLE)
6692 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6693 else
6694 gcc_unreachable ();
6696 gimplify_seq_add_stmt (pre_p, stmt);
6699 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6700 stabilized the lhs of the atomic operation as *ADDR. Return true if
6701 EXPR is this stabilized form. */
6703 static bool
6704 goa_lhs_expr_p (tree expr, tree addr)
6706 /* Also include casts to other type variants. The C front end is fond
6707 of adding these for e.g. volatile variables. This is like
6708 STRIP_TYPE_NOPS but includes the main variant lookup. */
6709 STRIP_USELESS_TYPE_CONVERSION (expr);
6711 if (TREE_CODE (expr) == INDIRECT_REF)
6713 expr = TREE_OPERAND (expr, 0);
6714 while (expr != addr
6715 && (CONVERT_EXPR_P (expr)
6716 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6717 && TREE_CODE (expr) == TREE_CODE (addr)
6718 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6720 expr = TREE_OPERAND (expr, 0);
6721 addr = TREE_OPERAND (addr, 0);
6723 if (expr == addr)
6724 return true;
6725 return (TREE_CODE (addr) == ADDR_EXPR
6726 && TREE_CODE (expr) == ADDR_EXPR
6727 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6729 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6730 return true;
6731 return false;
6734 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6735 expression does not involve the lhs, evaluate it into a temporary.
6736 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6737 or -1 if an error was encountered. */
6739 static int
6740 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6741 tree lhs_var)
6743 tree expr = *expr_p;
6744 int saw_lhs;
6746 if (goa_lhs_expr_p (expr, lhs_addr))
6748 *expr_p = lhs_var;
6749 return 1;
6751 if (is_gimple_val (expr))
6752 return 0;
6754 saw_lhs = 0;
6755 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6757 case tcc_binary:
6758 case tcc_comparison:
6759 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6760 lhs_var);
6761 case tcc_unary:
6762 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6763 lhs_var);
6764 break;
6765 case tcc_expression:
6766 switch (TREE_CODE (expr))
6768 case TRUTH_ANDIF_EXPR:
6769 case TRUTH_ORIF_EXPR:
6770 case TRUTH_AND_EXPR:
6771 case TRUTH_OR_EXPR:
6772 case TRUTH_XOR_EXPR:
6773 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6774 lhs_addr, lhs_var);
6775 case TRUTH_NOT_EXPR:
6776 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6777 lhs_addr, lhs_var);
6778 break;
6779 case COMPOUND_EXPR:
6780 /* Break out any preevaluations from cp_build_modify_expr. */
6781 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6782 expr = TREE_OPERAND (expr, 1))
6783 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6784 *expr_p = expr;
6785 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6786 default:
6787 break;
6789 break;
6790 default:
6791 break;
6794 if (saw_lhs == 0)
6796 enum gimplify_status gs;
6797 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6798 if (gs != GS_ALL_DONE)
6799 saw_lhs = -1;
6802 return saw_lhs;
6805 /* Gimplify an OMP_ATOMIC statement. */
6807 static enum gimplify_status
6808 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6810 tree addr = TREE_OPERAND (*expr_p, 0);
6811 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6812 ? NULL : TREE_OPERAND (*expr_p, 1);
6813 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6814 tree tmp_load;
6815 gimple loadstmt, storestmt;
6817 tmp_load = create_tmp_reg (type, NULL);
6818 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6819 return GS_ERROR;
6821 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6822 != GS_ALL_DONE)
6823 return GS_ERROR;
6825 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6826 gimplify_seq_add_stmt (pre_p, loadstmt);
6827 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6828 != GS_ALL_DONE)
6829 return GS_ERROR;
6831 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6832 rhs = tmp_load;
6833 storestmt = gimple_build_omp_atomic_store (rhs);
6834 gimplify_seq_add_stmt (pre_p, storestmt);
6835 switch (TREE_CODE (*expr_p))
6837 case OMP_ATOMIC_READ:
6838 case OMP_ATOMIC_CAPTURE_OLD:
6839 *expr_p = tmp_load;
6840 gimple_omp_atomic_set_need_value (loadstmt);
6841 break;
6842 case OMP_ATOMIC_CAPTURE_NEW:
6843 *expr_p = rhs;
6844 gimple_omp_atomic_set_need_value (storestmt);
6845 break;
6846 default:
6847 *expr_p = NULL;
6848 break;
6851 return GS_ALL_DONE;
6854 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6855 body, and adding some EH bits. */
6857 static enum gimplify_status
6858 gimplify_transaction (tree *expr_p, gimple_seq *pre_p)
6860 tree expr = *expr_p, temp, tbody = TRANSACTION_EXPR_BODY (expr);
6861 gimple g;
6862 gimple_seq body = NULL;
6863 struct gimplify_ctx gctx;
6864 int subcode = 0;
6866 /* Wrap the transaction body in a BIND_EXPR so we have a context
6867 where to put decls for OpenMP. */
6868 if (TREE_CODE (tbody) != BIND_EXPR)
6870 tree bind = build3 (BIND_EXPR, void_type_node, NULL, tbody, NULL);
6871 TREE_SIDE_EFFECTS (bind) = 1;
6872 SET_EXPR_LOCATION (bind, EXPR_LOCATION (tbody));
6873 TRANSACTION_EXPR_BODY (expr) = bind;
6876 push_gimplify_context (&gctx);
6877 temp = voidify_wrapper_expr (*expr_p, NULL);
6879 g = gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr), &body);
6880 pop_gimplify_context (g);
6882 g = gimple_build_transaction (body, NULL);
6883 if (TRANSACTION_EXPR_OUTER (expr))
6884 subcode = GTMA_IS_OUTER;
6885 else if (TRANSACTION_EXPR_RELAXED (expr))
6886 subcode = GTMA_IS_RELAXED;
6887 gimple_transaction_set_subcode (g, subcode);
6889 gimplify_seq_add_stmt (pre_p, g);
6891 if (temp)
6893 *expr_p = temp;
6894 return GS_OK;
6897 *expr_p = NULL_TREE;
6898 return GS_ALL_DONE;
6901 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6902 expression produces a value to be used as an operand inside a GIMPLE
6903 statement, the value will be stored back in *EXPR_P. This value will
6904 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6905 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6906 emitted in PRE_P and POST_P.
6908 Additionally, this process may overwrite parts of the input
6909 expression during gimplification. Ideally, it should be
6910 possible to do non-destructive gimplification.
6912 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6913 the expression needs to evaluate to a value to be used as
6914 an operand in a GIMPLE statement, this value will be stored in
6915 *EXPR_P on exit. This happens when the caller specifies one
6916 of fb_lvalue or fb_rvalue fallback flags.
6918 PRE_P will contain the sequence of GIMPLE statements corresponding
6919 to the evaluation of EXPR and all the side-effects that must
6920 be executed before the main expression. On exit, the last
6921 statement of PRE_P is the core statement being gimplified. For
6922 instance, when gimplifying 'if (++a)' the last statement in
6923 PRE_P will be 'if (t.1)' where t.1 is the result of
6924 pre-incrementing 'a'.
6926 POST_P will contain the sequence of GIMPLE statements corresponding
6927 to the evaluation of all the side-effects that must be executed
6928 after the main expression. If this is NULL, the post
6929 side-effects are stored at the end of PRE_P.
6931 The reason why the output is split in two is to handle post
6932 side-effects explicitly. In some cases, an expression may have
6933 inner and outer post side-effects which need to be emitted in
6934 an order different from the one given by the recursive
6935 traversal. For instance, for the expression (*p--)++ the post
6936 side-effects of '--' must actually occur *after* the post
6937 side-effects of '++'. However, gimplification will first visit
6938 the inner expression, so if a separate POST sequence was not
6939 used, the resulting sequence would be:
6941 1 t.1 = *p
6942 2 p = p - 1
6943 3 t.2 = t.1 + 1
6944 4 *p = t.2
6946 However, the post-decrement operation in line #2 must not be
6947 evaluated until after the store to *p at line #4, so the
6948 correct sequence should be:
6950 1 t.1 = *p
6951 2 t.2 = t.1 + 1
6952 3 *p = t.2
6953 4 p = p - 1
6955 So, by specifying a separate post queue, it is possible
6956 to emit the post side-effects in the correct order.
6957 If POST_P is NULL, an internal queue will be used. Before
6958 returning to the caller, the sequence POST_P is appended to
6959 the main output sequence PRE_P.
6961 GIMPLE_TEST_F points to a function that takes a tree T and
6962 returns nonzero if T is in the GIMPLE form requested by the
6963 caller. The GIMPLE predicates are in gimple.c.
6965 FALLBACK tells the function what sort of a temporary we want if
6966 gimplification cannot produce an expression that complies with
6967 GIMPLE_TEST_F.
6969 fb_none means that no temporary should be generated
6970 fb_rvalue means that an rvalue is OK to generate
6971 fb_lvalue means that an lvalue is OK to generate
6972 fb_either means that either is OK, but an lvalue is preferable.
6973 fb_mayfail means that gimplification may fail (in which case
6974 GS_ERROR will be returned)
6976 The return value is either GS_ERROR or GS_ALL_DONE, since this
6977 function iterates until EXPR is completely gimplified or an error
6978 occurs. */
6980 enum gimplify_status
6981 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6982 bool (*gimple_test_f) (tree), fallback_t fallback)
6984 tree tmp;
6985 gimple_seq internal_pre = NULL;
6986 gimple_seq internal_post = NULL;
6987 tree save_expr;
6988 bool is_statement;
6989 location_t saved_location;
6990 enum gimplify_status ret;
6991 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6993 save_expr = *expr_p;
6994 if (save_expr == NULL_TREE)
6995 return GS_ALL_DONE;
6997 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
6998 is_statement = gimple_test_f == is_gimple_stmt;
6999 if (is_statement)
7000 gcc_assert (pre_p);
7002 /* Consistency checks. */
7003 if (gimple_test_f == is_gimple_reg)
7004 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
7005 else if (gimple_test_f == is_gimple_val
7006 || gimple_test_f == is_gimple_call_addr
7007 || gimple_test_f == is_gimple_condexpr
7008 || gimple_test_f == is_gimple_mem_rhs
7009 || gimple_test_f == is_gimple_mem_rhs_or_call
7010 || gimple_test_f == is_gimple_reg_rhs
7011 || gimple_test_f == is_gimple_reg_rhs_or_call
7012 || gimple_test_f == is_gimple_asm_val
7013 || gimple_test_f == is_gimple_mem_ref_addr)
7014 gcc_assert (fallback & fb_rvalue);
7015 else if (gimple_test_f == is_gimple_min_lval
7016 || gimple_test_f == is_gimple_lvalue)
7017 gcc_assert (fallback & fb_lvalue);
7018 else if (gimple_test_f == is_gimple_addressable)
7019 gcc_assert (fallback & fb_either);
7020 else if (gimple_test_f == is_gimple_stmt)
7021 gcc_assert (fallback == fb_none);
7022 else
7024 /* We should have recognized the GIMPLE_TEST_F predicate to
7025 know what kind of fallback to use in case a temporary is
7026 needed to hold the value or address of *EXPR_P. */
7027 gcc_unreachable ();
7030 /* We used to check the predicate here and return immediately if it
7031 succeeds. This is wrong; the design is for gimplification to be
7032 idempotent, and for the predicates to only test for valid forms, not
7033 whether they are fully simplified. */
7034 if (pre_p == NULL)
7035 pre_p = &internal_pre;
7037 if (post_p == NULL)
7038 post_p = &internal_post;
7040 /* Remember the last statements added to PRE_P and POST_P. Every
7041 new statement added by the gimplification helpers needs to be
7042 annotated with location information. To centralize the
7043 responsibility, we remember the last statement that had been
7044 added to both queues before gimplifying *EXPR_P. If
7045 gimplification produces new statements in PRE_P and POST_P, those
7046 statements will be annotated with the same location information
7047 as *EXPR_P. */
7048 pre_last_gsi = gsi_last (*pre_p);
7049 post_last_gsi = gsi_last (*post_p);
7051 saved_location = input_location;
7052 if (save_expr != error_mark_node
7053 && EXPR_HAS_LOCATION (*expr_p))
7054 input_location = EXPR_LOCATION (*expr_p);
7056 /* Loop over the specific gimplifiers until the toplevel node
7057 remains the same. */
7060 /* Strip away as many useless type conversions as possible
7061 at the toplevel. */
7062 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
7064 /* Remember the expr. */
7065 save_expr = *expr_p;
7067 /* Die, die, die, my darling. */
7068 if (save_expr == error_mark_node
7069 || (TREE_TYPE (save_expr)
7070 && TREE_TYPE (save_expr) == error_mark_node))
7072 ret = GS_ERROR;
7073 break;
7076 /* Do any language-specific gimplification. */
7077 ret = ((enum gimplify_status)
7078 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
7079 if (ret == GS_OK)
7081 if (*expr_p == NULL_TREE)
7082 break;
7083 if (*expr_p != save_expr)
7084 continue;
7086 else if (ret != GS_UNHANDLED)
7087 break;
7089 /* Make sure that all the cases set 'ret' appropriately. */
7090 ret = GS_UNHANDLED;
7091 switch (TREE_CODE (*expr_p))
7093 /* First deal with the special cases. */
7095 case POSTINCREMENT_EXPR:
7096 case POSTDECREMENT_EXPR:
7097 case PREINCREMENT_EXPR:
7098 case PREDECREMENT_EXPR:
7099 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
7100 fallback != fb_none,
7101 TREE_TYPE (*expr_p));
7102 break;
7104 case ARRAY_REF:
7105 case ARRAY_RANGE_REF:
7106 case REALPART_EXPR:
7107 case IMAGPART_EXPR:
7108 case COMPONENT_REF:
7109 case VIEW_CONVERT_EXPR:
7110 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
7111 fallback ? fallback : fb_rvalue);
7112 break;
7114 case COND_EXPR:
7115 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
7117 /* C99 code may assign to an array in a structure value of a
7118 conditional expression, and this has undefined behavior
7119 only on execution, so create a temporary if an lvalue is
7120 required. */
7121 if (fallback == fb_lvalue)
7123 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7124 mark_addressable (*expr_p);
7125 ret = GS_OK;
7127 break;
7129 case CALL_EXPR:
7130 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
7132 /* C99 code may assign to an array in a structure returned
7133 from a function, and this has undefined behavior only on
7134 execution, so create a temporary if an lvalue is
7135 required. */
7136 if (fallback == fb_lvalue)
7138 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7139 mark_addressable (*expr_p);
7140 ret = GS_OK;
7142 break;
7144 case TREE_LIST:
7145 gcc_unreachable ();
7147 case COMPOUND_EXPR:
7148 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
7149 break;
7151 case COMPOUND_LITERAL_EXPR:
7152 ret = gimplify_compound_literal_expr (expr_p, pre_p,
7153 gimple_test_f, fallback);
7154 break;
7156 case MODIFY_EXPR:
7157 case INIT_EXPR:
7158 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
7159 fallback != fb_none);
7160 break;
7162 case TRUTH_ANDIF_EXPR:
7163 case TRUTH_ORIF_EXPR:
7165 /* Preserve the original type of the expression and the
7166 source location of the outer expression. */
7167 tree org_type = TREE_TYPE (*expr_p);
7168 *expr_p = gimple_boolify (*expr_p);
7169 *expr_p = build3_loc (input_location, COND_EXPR,
7170 org_type, *expr_p,
7171 fold_convert_loc
7172 (input_location,
7173 org_type, boolean_true_node),
7174 fold_convert_loc
7175 (input_location,
7176 org_type, boolean_false_node));
7177 ret = GS_OK;
7178 break;
7181 case TRUTH_NOT_EXPR:
7183 tree type = TREE_TYPE (*expr_p);
7184 /* The parsers are careful to generate TRUTH_NOT_EXPR
7185 only with operands that are always zero or one.
7186 We do not fold here but handle the only interesting case
7187 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
7188 *expr_p = gimple_boolify (*expr_p);
7189 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
7190 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
7191 TREE_TYPE (*expr_p),
7192 TREE_OPERAND (*expr_p, 0));
7193 else
7194 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
7195 TREE_TYPE (*expr_p),
7196 TREE_OPERAND (*expr_p, 0),
7197 build_int_cst (TREE_TYPE (*expr_p), 1));
7198 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
7199 *expr_p = fold_convert_loc (input_location, type, *expr_p);
7200 ret = GS_OK;
7201 break;
7204 case ADDR_EXPR:
7205 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
7206 break;
7208 case VA_ARG_EXPR:
7209 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
7210 break;
7212 CASE_CONVERT:
7213 if (IS_EMPTY_STMT (*expr_p))
7215 ret = GS_ALL_DONE;
7216 break;
7219 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
7220 || fallback == fb_none)
7222 /* Just strip a conversion to void (or in void context) and
7223 try again. */
7224 *expr_p = TREE_OPERAND (*expr_p, 0);
7225 ret = GS_OK;
7226 break;
7229 ret = gimplify_conversion (expr_p);
7230 if (ret == GS_ERROR)
7231 break;
7232 if (*expr_p != save_expr)
7233 break;
7234 /* FALLTHRU */
7236 case FIX_TRUNC_EXPR:
7237 /* unary_expr: ... | '(' cast ')' val | ... */
7238 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7239 is_gimple_val, fb_rvalue);
7240 recalculate_side_effects (*expr_p);
7241 break;
7243 case INDIRECT_REF:
7245 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
7246 bool notrap = TREE_THIS_NOTRAP (*expr_p);
7247 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
7249 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
7250 if (*expr_p != save_expr)
7252 ret = GS_OK;
7253 break;
7256 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7257 is_gimple_reg, fb_rvalue);
7258 if (ret == GS_ERROR)
7259 break;
7261 recalculate_side_effects (*expr_p);
7262 *expr_p = fold_build2_loc (input_location, MEM_REF,
7263 TREE_TYPE (*expr_p),
7264 TREE_OPERAND (*expr_p, 0),
7265 build_int_cst (saved_ptr_type, 0));
7266 TREE_THIS_VOLATILE (*expr_p) = volatilep;
7267 TREE_THIS_NOTRAP (*expr_p) = notrap;
7268 ret = GS_OK;
7269 break;
7272 /* We arrive here through the various re-gimplifcation paths. */
7273 case MEM_REF:
7274 /* First try re-folding the whole thing. */
7275 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
7276 TREE_OPERAND (*expr_p, 0),
7277 TREE_OPERAND (*expr_p, 1));
7278 if (tmp)
7280 *expr_p = tmp;
7281 recalculate_side_effects (*expr_p);
7282 ret = GS_OK;
7283 break;
7285 /* Avoid re-gimplifying the address operand if it is already
7286 in suitable form. Re-gimplifying would mark the address
7287 operand addressable. Always gimplify when not in SSA form
7288 as we still may have to gimplify decls with value-exprs. */
7289 if (!gimplify_ctxp || !gimplify_ctxp->into_ssa
7290 || !is_gimple_mem_ref_addr (TREE_OPERAND (*expr_p, 0)))
7292 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7293 is_gimple_mem_ref_addr, fb_rvalue);
7294 if (ret == GS_ERROR)
7295 break;
7297 recalculate_side_effects (*expr_p);
7298 ret = GS_ALL_DONE;
7299 break;
7301 /* Constants need not be gimplified. */
7302 case INTEGER_CST:
7303 case REAL_CST:
7304 case FIXED_CST:
7305 case STRING_CST:
7306 case COMPLEX_CST:
7307 case VECTOR_CST:
7308 ret = GS_ALL_DONE;
7309 break;
7311 case CONST_DECL:
7312 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7313 CONST_DECL node. Otherwise the decl is replaceable by its
7314 value. */
7315 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7316 if (fallback & fb_lvalue)
7317 ret = GS_ALL_DONE;
7318 else
7320 *expr_p = DECL_INITIAL (*expr_p);
7321 ret = GS_OK;
7323 break;
7325 case DECL_EXPR:
7326 ret = gimplify_decl_expr (expr_p, pre_p);
7327 break;
7329 case BIND_EXPR:
7330 ret = gimplify_bind_expr (expr_p, pre_p);
7331 break;
7333 case LOOP_EXPR:
7334 ret = gimplify_loop_expr (expr_p, pre_p);
7335 break;
7337 case SWITCH_EXPR:
7338 ret = gimplify_switch_expr (expr_p, pre_p);
7339 break;
7341 case EXIT_EXPR:
7342 ret = gimplify_exit_expr (expr_p);
7343 break;
7345 case GOTO_EXPR:
7346 /* If the target is not LABEL, then it is a computed jump
7347 and the target needs to be gimplified. */
7348 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
7350 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
7351 NULL, is_gimple_val, fb_rvalue);
7352 if (ret == GS_ERROR)
7353 break;
7355 gimplify_seq_add_stmt (pre_p,
7356 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
7357 ret = GS_ALL_DONE;
7358 break;
7360 case PREDICT_EXPR:
7361 gimplify_seq_add_stmt (pre_p,
7362 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
7363 PREDICT_EXPR_OUTCOME (*expr_p)));
7364 ret = GS_ALL_DONE;
7365 break;
7367 case LABEL_EXPR:
7368 ret = GS_ALL_DONE;
7369 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
7370 == current_function_decl);
7371 gimplify_seq_add_stmt (pre_p,
7372 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
7373 break;
7375 case CASE_LABEL_EXPR:
7376 ret = gimplify_case_label_expr (expr_p, pre_p);
7377 break;
7379 case RETURN_EXPR:
7380 ret = gimplify_return_expr (*expr_p, pre_p);
7381 break;
7383 case CONSTRUCTOR:
7384 /* Don't reduce this in place; let gimplify_init_constructor work its
7385 magic. Buf if we're just elaborating this for side effects, just
7386 gimplify any element that has side-effects. */
7387 if (fallback == fb_none)
7389 unsigned HOST_WIDE_INT ix;
7390 tree val;
7391 tree temp = NULL_TREE;
7392 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7393 if (TREE_SIDE_EFFECTS (val))
7394 append_to_statement_list (val, &temp);
7396 *expr_p = temp;
7397 ret = temp ? GS_OK : GS_ALL_DONE;
7399 /* C99 code may assign to an array in a constructed
7400 structure or union, and this has undefined behavior only
7401 on execution, so create a temporary if an lvalue is
7402 required. */
7403 else if (fallback == fb_lvalue)
7405 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7406 mark_addressable (*expr_p);
7407 ret = GS_OK;
7409 else
7410 ret = GS_ALL_DONE;
7411 break;
7413 /* The following are special cases that are not handled by the
7414 original GIMPLE grammar. */
7416 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7417 eliminated. */
7418 case SAVE_EXPR:
7419 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7420 break;
7422 case BIT_FIELD_REF:
7423 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7424 post_p, is_gimple_lvalue, fb_either);
7425 recalculate_side_effects (*expr_p);
7426 break;
7428 case TARGET_MEM_REF:
7430 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7432 if (TMR_BASE (*expr_p))
7433 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7434 post_p, is_gimple_mem_ref_addr, fb_either);
7435 if (TMR_INDEX (*expr_p))
7436 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7437 post_p, is_gimple_val, fb_rvalue);
7438 if (TMR_INDEX2 (*expr_p))
7439 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7440 post_p, is_gimple_val, fb_rvalue);
7441 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7442 ret = MIN (r0, r1);
7444 break;
7446 case NON_LVALUE_EXPR:
7447 /* This should have been stripped above. */
7448 gcc_unreachable ();
7450 case ASM_EXPR:
7451 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7452 break;
7454 case TRY_FINALLY_EXPR:
7455 case TRY_CATCH_EXPR:
7457 gimple_seq eval, cleanup;
7458 gimple try_;
7460 /* Calls to destructors are generated automatically in FINALLY/CATCH
7461 block. They should have location as UNKNOWN_LOCATION. However,
7462 gimplify_call_expr will reset these call stmts to input_location
7463 if it finds stmt's location is unknown. To prevent resetting for
7464 destructors, we set the input_location to unknown.
7465 Note that this only affects the destructor calls in FINALLY/CATCH
7466 block, and will automatically reset to its original value by the
7467 end of gimplify_expr. */
7468 input_location = UNKNOWN_LOCATION;
7469 eval = cleanup = NULL;
7470 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7471 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7472 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7473 if (gimple_seq_empty_p (cleanup))
7475 gimple_seq_add_seq (pre_p, eval);
7476 ret = GS_ALL_DONE;
7477 break;
7479 try_ = gimple_build_try (eval, cleanup,
7480 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7481 ? GIMPLE_TRY_FINALLY
7482 : GIMPLE_TRY_CATCH);
7483 if (LOCATION_LOCUS (saved_location) != UNKNOWN_LOCATION)
7484 gimple_set_location (try_, saved_location);
7485 else
7486 gimple_set_location (try_, EXPR_LOCATION (save_expr));
7487 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7488 gimple_try_set_catch_is_cleanup (try_,
7489 TRY_CATCH_IS_CLEANUP (*expr_p));
7490 gimplify_seq_add_stmt (pre_p, try_);
7491 ret = GS_ALL_DONE;
7492 break;
7495 case CLEANUP_POINT_EXPR:
7496 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7497 break;
7499 case TARGET_EXPR:
7500 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7501 break;
7503 case CATCH_EXPR:
7505 gimple c;
7506 gimple_seq handler = NULL;
7507 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7508 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7509 gimplify_seq_add_stmt (pre_p, c);
7510 ret = GS_ALL_DONE;
7511 break;
7514 case EH_FILTER_EXPR:
7516 gimple ehf;
7517 gimple_seq failure = NULL;
7519 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7520 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7521 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7522 gimplify_seq_add_stmt (pre_p, ehf);
7523 ret = GS_ALL_DONE;
7524 break;
7527 case OBJ_TYPE_REF:
7529 enum gimplify_status r0, r1;
7530 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7531 post_p, is_gimple_val, fb_rvalue);
7532 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7533 post_p, is_gimple_val, fb_rvalue);
7534 TREE_SIDE_EFFECTS (*expr_p) = 0;
7535 ret = MIN (r0, r1);
7537 break;
7539 case LABEL_DECL:
7540 /* We get here when taking the address of a label. We mark
7541 the label as "forced"; meaning it can never be removed and
7542 it is a potential target for any computed goto. */
7543 FORCED_LABEL (*expr_p) = 1;
7544 ret = GS_ALL_DONE;
7545 break;
7547 case STATEMENT_LIST:
7548 ret = gimplify_statement_list (expr_p, pre_p);
7549 break;
7551 case WITH_SIZE_EXPR:
7553 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7554 post_p == &internal_post ? NULL : post_p,
7555 gimple_test_f, fallback);
7556 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7557 is_gimple_val, fb_rvalue);
7558 ret = GS_ALL_DONE;
7560 break;
7562 case VAR_DECL:
7563 case PARM_DECL:
7564 ret = gimplify_var_or_parm_decl (expr_p);
7565 break;
7567 case RESULT_DECL:
7568 /* When within an OpenMP context, notice uses of variables. */
7569 if (gimplify_omp_ctxp)
7570 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7571 ret = GS_ALL_DONE;
7572 break;
7574 case SSA_NAME:
7575 /* Allow callbacks into the gimplifier during optimization. */
7576 ret = GS_ALL_DONE;
7577 break;
7579 case OMP_PARALLEL:
7580 gimplify_omp_parallel (expr_p, pre_p);
7581 ret = GS_ALL_DONE;
7582 break;
7584 case OMP_TASK:
7585 gimplify_omp_task (expr_p, pre_p);
7586 ret = GS_ALL_DONE;
7587 break;
7589 case OMP_FOR:
7590 ret = gimplify_omp_for (expr_p, pre_p);
7591 break;
7593 case OMP_SECTIONS:
7594 case OMP_SINGLE:
7595 gimplify_omp_workshare (expr_p, pre_p);
7596 ret = GS_ALL_DONE;
7597 break;
7599 case OMP_SECTION:
7600 case OMP_MASTER:
7601 case OMP_ORDERED:
7602 case OMP_CRITICAL:
7604 gimple_seq body = NULL;
7605 gimple g;
7607 gimplify_and_add (OMP_BODY (*expr_p), &body);
7608 switch (TREE_CODE (*expr_p))
7610 case OMP_SECTION:
7611 g = gimple_build_omp_section (body);
7612 break;
7613 case OMP_MASTER:
7614 g = gimple_build_omp_master (body);
7615 break;
7616 case OMP_ORDERED:
7617 g = gimple_build_omp_ordered (body);
7618 break;
7619 case OMP_CRITICAL:
7620 g = gimple_build_omp_critical (body,
7621 OMP_CRITICAL_NAME (*expr_p));
7622 break;
7623 default:
7624 gcc_unreachable ();
7626 gimplify_seq_add_stmt (pre_p, g);
7627 ret = GS_ALL_DONE;
7628 break;
7631 case OMP_ATOMIC:
7632 case OMP_ATOMIC_READ:
7633 case OMP_ATOMIC_CAPTURE_OLD:
7634 case OMP_ATOMIC_CAPTURE_NEW:
7635 ret = gimplify_omp_atomic (expr_p, pre_p);
7636 break;
7638 case TRANSACTION_EXPR:
7639 ret = gimplify_transaction (expr_p, pre_p);
7640 break;
7642 case TRUTH_AND_EXPR:
7643 case TRUTH_OR_EXPR:
7644 case TRUTH_XOR_EXPR:
7646 tree orig_type = TREE_TYPE (*expr_p);
7647 tree new_type, xop0, xop1;
7648 *expr_p = gimple_boolify (*expr_p);
7649 new_type = TREE_TYPE (*expr_p);
7650 if (!useless_type_conversion_p (orig_type, new_type))
7652 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7653 ret = GS_OK;
7654 break;
7657 /* Boolified binary truth expressions are semantically equivalent
7658 to bitwise binary expressions. Canonicalize them to the
7659 bitwise variant. */
7660 switch (TREE_CODE (*expr_p))
7662 case TRUTH_AND_EXPR:
7663 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7664 break;
7665 case TRUTH_OR_EXPR:
7666 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7667 break;
7668 case TRUTH_XOR_EXPR:
7669 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7670 break;
7671 default:
7672 break;
7674 /* Now make sure that operands have compatible type to
7675 expression's new_type. */
7676 xop0 = TREE_OPERAND (*expr_p, 0);
7677 xop1 = TREE_OPERAND (*expr_p, 1);
7678 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7679 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7680 new_type,
7681 xop0);
7682 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7683 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7684 new_type,
7685 xop1);
7686 /* Continue classified as tcc_binary. */
7687 goto expr_2;
7690 case FMA_EXPR:
7691 case VEC_COND_EXPR:
7692 case VEC_PERM_EXPR:
7693 /* Classified as tcc_expression. */
7694 goto expr_3;
7696 case POINTER_PLUS_EXPR:
7698 enum gimplify_status r0, r1;
7699 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7700 post_p, is_gimple_val, fb_rvalue);
7701 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7702 post_p, is_gimple_val, fb_rvalue);
7703 recalculate_side_effects (*expr_p);
7704 ret = MIN (r0, r1);
7705 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7706 after gimplifying operands - this is similar to how
7707 it would be folding all gimplified stmts on creation
7708 to have them canonicalized, which is what we eventually
7709 should do anyway. */
7710 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7711 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7713 *expr_p = build_fold_addr_expr_with_type_loc
7714 (input_location,
7715 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7716 TREE_OPERAND (*expr_p, 0),
7717 fold_convert (ptr_type_node,
7718 TREE_OPERAND (*expr_p, 1))),
7719 TREE_TYPE (*expr_p));
7720 ret = MIN (ret, GS_OK);
7722 break;
7725 default:
7726 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7728 case tcc_comparison:
7729 /* Handle comparison of objects of non scalar mode aggregates
7730 with a call to memcmp. It would be nice to only have to do
7731 this for variable-sized objects, but then we'd have to allow
7732 the same nest of reference nodes we allow for MODIFY_EXPR and
7733 that's too complex.
7735 Compare scalar mode aggregates as scalar mode values. Using
7736 memcmp for them would be very inefficient at best, and is
7737 plain wrong if bitfields are involved. */
7739 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7741 /* Vector comparisons need no boolification. */
7742 if (TREE_CODE (type) == VECTOR_TYPE)
7743 goto expr_2;
7744 else if (!AGGREGATE_TYPE_P (type))
7746 tree org_type = TREE_TYPE (*expr_p);
7747 *expr_p = gimple_boolify (*expr_p);
7748 if (!useless_type_conversion_p (org_type,
7749 TREE_TYPE (*expr_p)))
7751 *expr_p = fold_convert_loc (input_location,
7752 org_type, *expr_p);
7753 ret = GS_OK;
7755 else
7756 goto expr_2;
7758 else if (TYPE_MODE (type) != BLKmode)
7759 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7760 else
7761 ret = gimplify_variable_sized_compare (expr_p);
7763 break;
7766 /* If *EXPR_P does not need to be special-cased, handle it
7767 according to its class. */
7768 case tcc_unary:
7769 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7770 post_p, is_gimple_val, fb_rvalue);
7771 break;
7773 case tcc_binary:
7774 expr_2:
7776 enum gimplify_status r0, r1;
7778 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7779 post_p, is_gimple_val, fb_rvalue);
7780 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7781 post_p, is_gimple_val, fb_rvalue);
7783 ret = MIN (r0, r1);
7784 break;
7787 expr_3:
7789 enum gimplify_status r0, r1, r2;
7791 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7792 post_p, is_gimple_val, fb_rvalue);
7793 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7794 post_p, is_gimple_val, fb_rvalue);
7795 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7796 post_p, is_gimple_val, fb_rvalue);
7798 ret = MIN (MIN (r0, r1), r2);
7799 break;
7802 case tcc_declaration:
7803 case tcc_constant:
7804 ret = GS_ALL_DONE;
7805 goto dont_recalculate;
7807 default:
7808 gcc_unreachable ();
7811 recalculate_side_effects (*expr_p);
7813 dont_recalculate:
7814 break;
7817 gcc_assert (*expr_p || ret != GS_OK);
7819 while (ret == GS_OK);
7821 /* If we encountered an error_mark somewhere nested inside, either
7822 stub out the statement or propagate the error back out. */
7823 if (ret == GS_ERROR)
7825 if (is_statement)
7826 *expr_p = NULL;
7827 goto out;
7830 /* This was only valid as a return value from the langhook, which
7831 we handled. Make sure it doesn't escape from any other context. */
7832 gcc_assert (ret != GS_UNHANDLED);
7834 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7836 /* We aren't looking for a value, and we don't have a valid
7837 statement. If it doesn't have side-effects, throw it away. */
7838 if (!TREE_SIDE_EFFECTS (*expr_p))
7839 *expr_p = NULL;
7840 else if (!TREE_THIS_VOLATILE (*expr_p))
7842 /* This is probably a _REF that contains something nested that
7843 has side effects. Recurse through the operands to find it. */
7844 enum tree_code code = TREE_CODE (*expr_p);
7846 switch (code)
7848 case COMPONENT_REF:
7849 case REALPART_EXPR:
7850 case IMAGPART_EXPR:
7851 case VIEW_CONVERT_EXPR:
7852 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7853 gimple_test_f, fallback);
7854 break;
7856 case ARRAY_REF:
7857 case ARRAY_RANGE_REF:
7858 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7859 gimple_test_f, fallback);
7860 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7861 gimple_test_f, fallback);
7862 break;
7864 default:
7865 /* Anything else with side-effects must be converted to
7866 a valid statement before we get here. */
7867 gcc_unreachable ();
7870 *expr_p = NULL;
7872 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7873 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7875 /* Historically, the compiler has treated a bare reference
7876 to a non-BLKmode volatile lvalue as forcing a load. */
7877 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7879 /* Normally, we do not want to create a temporary for a
7880 TREE_ADDRESSABLE type because such a type should not be
7881 copied by bitwise-assignment. However, we make an
7882 exception here, as all we are doing here is ensuring that
7883 we read the bytes that make up the type. We use
7884 create_tmp_var_raw because create_tmp_var will abort when
7885 given a TREE_ADDRESSABLE type. */
7886 tree tmp = create_tmp_var_raw (type, "vol");
7887 gimple_add_tmp_var (tmp);
7888 gimplify_assign (tmp, *expr_p, pre_p);
7889 *expr_p = NULL;
7891 else
7892 /* We can't do anything useful with a volatile reference to
7893 an incomplete type, so just throw it away. Likewise for
7894 a BLKmode type, since any implicit inner load should
7895 already have been turned into an explicit one by the
7896 gimplification process. */
7897 *expr_p = NULL;
7900 /* If we are gimplifying at the statement level, we're done. Tack
7901 everything together and return. */
7902 if (fallback == fb_none || is_statement)
7904 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7905 it out for GC to reclaim it. */
7906 *expr_p = NULL_TREE;
7908 if (!gimple_seq_empty_p (internal_pre)
7909 || !gimple_seq_empty_p (internal_post))
7911 gimplify_seq_add_seq (&internal_pre, internal_post);
7912 gimplify_seq_add_seq (pre_p, internal_pre);
7915 /* The result of gimplifying *EXPR_P is going to be the last few
7916 statements in *PRE_P and *POST_P. Add location information
7917 to all the statements that were added by the gimplification
7918 helpers. */
7919 if (!gimple_seq_empty_p (*pre_p))
7920 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7922 if (!gimple_seq_empty_p (*post_p))
7923 annotate_all_with_location_after (*post_p, post_last_gsi,
7924 input_location);
7926 goto out;
7929 #ifdef ENABLE_GIMPLE_CHECKING
7930 if (*expr_p)
7932 enum tree_code code = TREE_CODE (*expr_p);
7933 /* These expressions should already be in gimple IR form. */
7934 gcc_assert (code != MODIFY_EXPR
7935 && code != ASM_EXPR
7936 && code != BIND_EXPR
7937 && code != CATCH_EXPR
7938 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7939 && code != EH_FILTER_EXPR
7940 && code != GOTO_EXPR
7941 && code != LABEL_EXPR
7942 && code != LOOP_EXPR
7943 && code != SWITCH_EXPR
7944 && code != TRY_FINALLY_EXPR
7945 && code != OMP_CRITICAL
7946 && code != OMP_FOR
7947 && code != OMP_MASTER
7948 && code != OMP_ORDERED
7949 && code != OMP_PARALLEL
7950 && code != OMP_SECTIONS
7951 && code != OMP_SECTION
7952 && code != OMP_SINGLE);
7954 #endif
7956 /* Otherwise we're gimplifying a subexpression, so the resulting
7957 value is interesting. If it's a valid operand that matches
7958 GIMPLE_TEST_F, we're done. Unless we are handling some
7959 post-effects internally; if that's the case, we need to copy into
7960 a temporary before adding the post-effects to POST_P. */
7961 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7962 goto out;
7964 /* Otherwise, we need to create a new temporary for the gimplified
7965 expression. */
7967 /* We can't return an lvalue if we have an internal postqueue. The
7968 object the lvalue refers to would (probably) be modified by the
7969 postqueue; we need to copy the value out first, which means an
7970 rvalue. */
7971 if ((fallback & fb_lvalue)
7972 && gimple_seq_empty_p (internal_post)
7973 && is_gimple_addressable (*expr_p))
7975 /* An lvalue will do. Take the address of the expression, store it
7976 in a temporary, and replace the expression with an INDIRECT_REF of
7977 that temporary. */
7978 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7979 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7980 *expr_p = build_simple_mem_ref (tmp);
7982 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7984 /* An rvalue will do. Assign the gimplified expression into a
7985 new temporary TMP and replace the original expression with
7986 TMP. First, make sure that the expression has a type so that
7987 it can be assigned into a temporary. */
7988 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7989 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7991 else
7993 #ifdef ENABLE_GIMPLE_CHECKING
7994 if (!(fallback & fb_mayfail))
7996 fprintf (stderr, "gimplification failed:\n");
7997 print_generic_expr (stderr, *expr_p, 0);
7998 debug_tree (*expr_p);
7999 internal_error ("gimplification failed");
8001 #endif
8002 gcc_assert (fallback & fb_mayfail);
8004 /* If this is an asm statement, and the user asked for the
8005 impossible, don't die. Fail and let gimplify_asm_expr
8006 issue an error. */
8007 ret = GS_ERROR;
8008 goto out;
8011 /* Make sure the temporary matches our predicate. */
8012 gcc_assert ((*gimple_test_f) (*expr_p));
8014 if (!gimple_seq_empty_p (internal_post))
8016 annotate_all_with_location (internal_post, input_location);
8017 gimplify_seq_add_seq (pre_p, internal_post);
8020 out:
8021 input_location = saved_location;
8022 return ret;
8025 /* Look through TYPE for variable-sized objects and gimplify each such
8026 size that we find. Add to LIST_P any statements generated. */
8028 void
8029 gimplify_type_sizes (tree type, gimple_seq *list_p)
8031 tree field, t;
8033 if (type == NULL || type == error_mark_node)
8034 return;
8036 /* We first do the main variant, then copy into any other variants. */
8037 type = TYPE_MAIN_VARIANT (type);
8039 /* Avoid infinite recursion. */
8040 if (TYPE_SIZES_GIMPLIFIED (type))
8041 return;
8043 TYPE_SIZES_GIMPLIFIED (type) = 1;
8045 switch (TREE_CODE (type))
8047 case INTEGER_TYPE:
8048 case ENUMERAL_TYPE:
8049 case BOOLEAN_TYPE:
8050 case REAL_TYPE:
8051 case FIXED_POINT_TYPE:
8052 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
8053 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
8055 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8057 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
8058 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
8060 break;
8062 case ARRAY_TYPE:
8063 /* These types may not have declarations, so handle them here. */
8064 gimplify_type_sizes (TREE_TYPE (type), list_p);
8065 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
8066 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
8067 with assigned stack slots, for -O1+ -g they should be tracked
8068 by VTA. */
8069 if (!(TYPE_NAME (type)
8070 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
8071 && DECL_IGNORED_P (TYPE_NAME (type)))
8072 && TYPE_DOMAIN (type)
8073 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
8075 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
8076 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8077 DECL_IGNORED_P (t) = 0;
8078 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
8079 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8080 DECL_IGNORED_P (t) = 0;
8082 break;
8084 case RECORD_TYPE:
8085 case UNION_TYPE:
8086 case QUAL_UNION_TYPE:
8087 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8088 if (TREE_CODE (field) == FIELD_DECL)
8090 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
8091 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
8092 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
8093 gimplify_type_sizes (TREE_TYPE (field), list_p);
8095 break;
8097 case POINTER_TYPE:
8098 case REFERENCE_TYPE:
8099 /* We used to recurse on the pointed-to type here, which turned out to
8100 be incorrect because its definition might refer to variables not
8101 yet initialized at this point if a forward declaration is involved.
8103 It was actually useful for anonymous pointed-to types to ensure
8104 that the sizes evaluation dominates every possible later use of the
8105 values. Restricting to such types here would be safe since there
8106 is no possible forward declaration around, but would introduce an
8107 undesirable middle-end semantic to anonymity. We then defer to
8108 front-ends the responsibility of ensuring that the sizes are
8109 evaluated both early and late enough, e.g. by attaching artificial
8110 type declarations to the tree. */
8111 break;
8113 default:
8114 break;
8117 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
8118 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
8120 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8122 TYPE_SIZE (t) = TYPE_SIZE (type);
8123 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
8124 TYPE_SIZES_GIMPLIFIED (t) = 1;
8128 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
8129 a size or position, has had all of its SAVE_EXPRs evaluated.
8130 We add any required statements to *STMT_P. */
8132 void
8133 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
8135 tree expr = *expr_p;
8137 /* We don't do anything if the value isn't there, is constant, or contains
8138 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
8139 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
8140 will want to replace it with a new variable, but that will cause problems
8141 if this type is from outside the function. It's OK to have that here. */
8142 if (is_gimple_sizepos (expr))
8143 return;
8145 *expr_p = unshare_expr (expr);
8147 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
8150 /* Gimplify the body of statements of FNDECL and return a GIMPLE_BIND node
8151 containing the sequence of corresponding GIMPLE statements. If DO_PARMS
8152 is true, also gimplify the parameters. */
8154 gimple
8155 gimplify_body (tree fndecl, bool do_parms)
8157 location_t saved_location = input_location;
8158 gimple_seq parm_stmts, seq;
8159 gimple outer_bind;
8160 struct gimplify_ctx gctx;
8161 struct cgraph_node *cgn;
8163 timevar_push (TV_TREE_GIMPLIFY);
8165 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
8166 gimplification. */
8167 default_rtl_profile ();
8169 gcc_assert (gimplify_ctxp == NULL);
8170 push_gimplify_context (&gctx);
8172 /* Unshare most shared trees in the body and in that of any nested functions.
8173 It would seem we don't have to do this for nested functions because
8174 they are supposed to be output and then the outer function gimplified
8175 first, but the g++ front end doesn't always do it that way. */
8176 unshare_body (fndecl);
8177 unvisit_body (fndecl);
8179 cgn = cgraph_get_node (fndecl);
8180 if (cgn && cgn->origin)
8181 nonlocal_vlas = pointer_set_create ();
8183 /* Make sure input_location isn't set to something weird. */
8184 input_location = DECL_SOURCE_LOCATION (fndecl);
8186 /* Resolve callee-copies. This has to be done before processing
8187 the body so that DECL_VALUE_EXPR gets processed correctly. */
8188 parm_stmts = do_parms ? gimplify_parameters () : NULL;
8190 /* Gimplify the function's body. */
8191 seq = NULL;
8192 gimplify_stmt (&DECL_SAVED_TREE (fndecl), &seq);
8193 outer_bind = gimple_seq_first_stmt (seq);
8194 if (!outer_bind)
8196 outer_bind = gimple_build_nop ();
8197 gimplify_seq_add_stmt (&seq, outer_bind);
8200 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
8201 not the case, wrap everything in a GIMPLE_BIND to make it so. */
8202 if (gimple_code (outer_bind) == GIMPLE_BIND
8203 && gimple_seq_first (seq) == gimple_seq_last (seq))
8205 else
8206 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
8208 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8210 /* If we had callee-copies statements, insert them at the beginning
8211 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8212 if (!gimple_seq_empty_p (parm_stmts))
8214 tree parm;
8216 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
8217 gimple_bind_set_body (outer_bind, parm_stmts);
8219 for (parm = DECL_ARGUMENTS (current_function_decl);
8220 parm; parm = DECL_CHAIN (parm))
8221 if (DECL_HAS_VALUE_EXPR_P (parm))
8223 DECL_HAS_VALUE_EXPR_P (parm) = 0;
8224 DECL_IGNORED_P (parm) = 0;
8228 if (nonlocal_vlas)
8230 pointer_set_destroy (nonlocal_vlas);
8231 nonlocal_vlas = NULL;
8234 pop_gimplify_context (outer_bind);
8235 gcc_assert (gimplify_ctxp == NULL);
8237 #ifdef ENABLE_CHECKING
8238 if (!seen_error ())
8239 verify_gimple_in_seq (gimple_bind_body (outer_bind));
8240 #endif
8242 timevar_pop (TV_TREE_GIMPLIFY);
8243 input_location = saved_location;
8245 return outer_bind;
8248 typedef char *char_p; /* For DEF_VEC_P. */
8250 /* Return whether we should exclude FNDECL from instrumentation. */
8252 static bool
8253 flag_instrument_functions_exclude_p (tree fndecl)
8255 vec<char_p> *v;
8257 v = (vec<char_p> *) flag_instrument_functions_exclude_functions;
8258 if (v && v->length () > 0)
8260 const char *name;
8261 int i;
8262 char *s;
8264 name = lang_hooks.decl_printable_name (fndecl, 0);
8265 FOR_EACH_VEC_ELT (*v, i, s)
8266 if (strstr (name, s) != NULL)
8267 return true;
8270 v = (vec<char_p> *) flag_instrument_functions_exclude_files;
8271 if (v && v->length () > 0)
8273 const char *name;
8274 int i;
8275 char *s;
8277 name = DECL_SOURCE_FILE (fndecl);
8278 FOR_EACH_VEC_ELT (*v, i, s)
8279 if (strstr (name, s) != NULL)
8280 return true;
8283 return false;
8286 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8287 node for the function we want to gimplify.
8289 Return the sequence of GIMPLE statements corresponding to the body
8290 of FNDECL. */
8292 void
8293 gimplify_function_tree (tree fndecl)
8295 tree parm, ret;
8296 gimple_seq seq;
8297 gimple bind;
8299 gcc_assert (!gimple_body (fndecl));
8301 if (DECL_STRUCT_FUNCTION (fndecl))
8302 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
8303 else
8304 push_struct_function (fndecl);
8306 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
8308 /* Preliminarily mark non-addressed complex variables as eligible
8309 for promotion to gimple registers. We'll transform their uses
8310 as we find them. */
8311 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
8312 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
8313 && !TREE_THIS_VOLATILE (parm)
8314 && !needs_to_live_in_memory (parm))
8315 DECL_GIMPLE_REG_P (parm) = 1;
8318 ret = DECL_RESULT (fndecl);
8319 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
8320 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
8321 && !needs_to_live_in_memory (ret))
8322 DECL_GIMPLE_REG_P (ret) = 1;
8324 bind = gimplify_body (fndecl, true);
8326 /* The tree body of the function is no longer needed, replace it
8327 with the new GIMPLE body. */
8328 seq = NULL;
8329 gimple_seq_add_stmt (&seq, bind);
8330 gimple_set_body (fndecl, seq);
8332 /* If we're instrumenting function entry/exit, then prepend the call to
8333 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8334 catch the exit hook. */
8335 /* ??? Add some way to ignore exceptions for this TFE. */
8336 if (flag_instrument_function_entry_exit
8337 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
8338 && !flag_instrument_functions_exclude_p (fndecl))
8340 tree x;
8341 gimple new_bind;
8342 gimple tf;
8343 gimple_seq cleanup = NULL, body = NULL;
8344 tree tmp_var;
8345 gimple call;
8347 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8348 call = gimple_build_call (x, 1, integer_zero_node);
8349 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8350 gimple_call_set_lhs (call, tmp_var);
8351 gimplify_seq_add_stmt (&cleanup, call);
8352 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8353 call = gimple_build_call (x, 2,
8354 build_fold_addr_expr (current_function_decl),
8355 tmp_var);
8356 gimplify_seq_add_stmt (&cleanup, call);
8357 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8359 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8360 call = gimple_build_call (x, 1, integer_zero_node);
8361 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8362 gimple_call_set_lhs (call, tmp_var);
8363 gimplify_seq_add_stmt (&body, call);
8364 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8365 call = gimple_build_call (x, 2,
8366 build_fold_addr_expr (current_function_decl),
8367 tmp_var);
8368 gimplify_seq_add_stmt (&body, call);
8369 gimplify_seq_add_stmt (&body, tf);
8370 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8371 /* Clear the block for BIND, since it is no longer directly inside
8372 the function, but within a try block. */
8373 gimple_bind_set_block (bind, NULL);
8375 /* Replace the current function body with the body
8376 wrapped in the try/finally TF. */
8377 seq = NULL;
8378 gimple_seq_add_stmt (&seq, new_bind);
8379 gimple_set_body (fndecl, seq);
8382 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8383 cfun->curr_properties = PROP_gimple_any;
8385 pop_cfun ();
8388 /* Some transformations like inlining may invalidate the GIMPLE form
8389 for operands. This function traverses all the operands in STMT and
8390 gimplifies anything that is not a valid gimple operand. Any new
8391 GIMPLE statements are inserted before *GSI_P. */
8393 void
8394 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8396 size_t i, num_ops;
8397 tree lhs;
8398 gimple_seq pre = NULL;
8399 gimple post_stmt = NULL;
8400 struct gimplify_ctx gctx;
8402 push_gimplify_context (&gctx);
8403 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8405 switch (gimple_code (stmt))
8407 case GIMPLE_COND:
8408 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8409 is_gimple_val, fb_rvalue);
8410 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8411 is_gimple_val, fb_rvalue);
8412 break;
8413 case GIMPLE_SWITCH:
8414 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8415 is_gimple_val, fb_rvalue);
8416 break;
8417 case GIMPLE_OMP_ATOMIC_LOAD:
8418 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8419 is_gimple_val, fb_rvalue);
8420 break;
8421 case GIMPLE_ASM:
8423 size_t i, noutputs = gimple_asm_noutputs (stmt);
8424 const char *constraint, **oconstraints;
8425 bool allows_mem, allows_reg, is_inout;
8427 oconstraints
8428 = (const char **) alloca ((noutputs) * sizeof (const char *));
8429 for (i = 0; i < noutputs; i++)
8431 tree op = gimple_asm_output_op (stmt, i);
8432 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8433 oconstraints[i] = constraint;
8434 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8435 &allows_reg, &is_inout);
8436 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8437 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8438 fb_lvalue | fb_mayfail);
8440 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8442 tree op = gimple_asm_input_op (stmt, i);
8443 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8444 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8445 oconstraints, &allows_mem, &allows_reg);
8446 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8447 allows_reg = 0;
8448 if (!allows_reg && allows_mem)
8449 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8450 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8451 else
8452 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8453 is_gimple_asm_val, fb_rvalue);
8456 break;
8457 default:
8458 /* NOTE: We start gimplifying operands from last to first to
8459 make sure that side-effects on the RHS of calls, assignments
8460 and ASMs are executed before the LHS. The ordering is not
8461 important for other statements. */
8462 num_ops = gimple_num_ops (stmt);
8463 for (i = num_ops; i > 0; i--)
8465 tree op = gimple_op (stmt, i - 1);
8466 if (op == NULL_TREE)
8467 continue;
8468 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8469 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8470 else if (i == 2
8471 && is_gimple_assign (stmt)
8472 && num_ops == 2
8473 && get_gimple_rhs_class (gimple_expr_code (stmt))
8474 == GIMPLE_SINGLE_RHS)
8475 gimplify_expr (&op, &pre, NULL,
8476 rhs_predicate_for (gimple_assign_lhs (stmt)),
8477 fb_rvalue);
8478 else if (i == 2 && is_gimple_call (stmt))
8480 if (TREE_CODE (op) == FUNCTION_DECL)
8481 continue;
8482 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8484 else
8485 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8486 gimple_set_op (stmt, i - 1, op);
8489 lhs = gimple_get_lhs (stmt);
8490 /* If the LHS changed it in a way that requires a simple RHS,
8491 create temporary. */
8492 if (lhs && !is_gimple_reg (lhs))
8494 bool need_temp = false;
8496 if (is_gimple_assign (stmt)
8497 && num_ops == 2
8498 && get_gimple_rhs_class (gimple_expr_code (stmt))
8499 == GIMPLE_SINGLE_RHS)
8500 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8501 rhs_predicate_for (gimple_assign_lhs (stmt)),
8502 fb_rvalue);
8503 else if (is_gimple_reg (lhs))
8505 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8507 if (is_gimple_call (stmt))
8509 i = gimple_call_flags (stmt);
8510 if ((i & ECF_LOOPING_CONST_OR_PURE)
8511 || !(i & (ECF_CONST | ECF_PURE)))
8512 need_temp = true;
8514 if (stmt_can_throw_internal (stmt))
8515 need_temp = true;
8518 else
8520 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8521 need_temp = true;
8522 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8524 if (is_gimple_call (stmt))
8526 tree fndecl = gimple_call_fndecl (stmt);
8528 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8529 && !(fndecl && DECL_RESULT (fndecl)
8530 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8531 need_temp = true;
8533 else
8534 need_temp = true;
8537 if (need_temp)
8539 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8540 if (gimple_in_ssa_p (cfun))
8541 temp = make_ssa_name (temp, NULL);
8542 gimple_set_lhs (stmt, temp);
8543 post_stmt = gimple_build_assign (lhs, temp);
8544 if (TREE_CODE (lhs) == SSA_NAME)
8545 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8548 break;
8551 if (!gimple_seq_empty_p (pre))
8552 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8553 if (post_stmt)
8554 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8556 pop_gimplify_context (NULL);
8559 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8560 the predicate that will hold for the result. If VAR is not NULL, make the
8561 base variable of the final destination be VAR if suitable. */
8563 tree
8564 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8565 gimple_predicate gimple_test_f, tree var)
8567 enum gimplify_status ret;
8568 struct gimplify_ctx gctx;
8569 location_t saved_location;
8571 *stmts = NULL;
8573 /* gimple_test_f might be more strict than is_gimple_val, make
8574 sure we pass both. Just checking gimple_test_f doesn't work
8575 because most gimple predicates do not work recursively. */
8576 if (is_gimple_val (expr)
8577 && (*gimple_test_f) (expr))
8578 return expr;
8580 push_gimplify_context (&gctx);
8581 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8582 gimplify_ctxp->allow_rhs_cond_expr = true;
8583 saved_location = input_location;
8584 input_location = UNKNOWN_LOCATION;
8586 if (var)
8588 if (gimplify_ctxp->into_ssa
8589 && is_gimple_reg (var))
8590 var = make_ssa_name (var, NULL);
8591 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8594 if (TREE_CODE (expr) != MODIFY_EXPR
8595 && TREE_TYPE (expr) == void_type_node)
8597 gimplify_and_add (expr, stmts);
8598 expr = NULL_TREE;
8600 else
8602 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8603 gcc_assert (ret != GS_ERROR);
8606 input_location = saved_location;
8607 pop_gimplify_context (NULL);
8609 return expr;
8612 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8613 force the result to be either ssa_name or an invariant, otherwise
8614 just force it to be a rhs expression. If VAR is not NULL, make the
8615 base variable of the final destination be VAR if suitable. */
8617 tree
8618 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8620 return force_gimple_operand_1 (expr, stmts,
8621 simple ? is_gimple_val : is_gimple_reg_rhs,
8622 var);
8625 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8626 and VAR. If some statements are produced, emits them at GSI.
8627 If BEFORE is true. the statements are appended before GSI, otherwise
8628 they are appended after it. M specifies the way GSI moves after
8629 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8631 tree
8632 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8633 gimple_predicate gimple_test_f,
8634 tree var, bool before,
8635 enum gsi_iterator_update m)
8637 gimple_seq stmts;
8639 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8641 if (!gimple_seq_empty_p (stmts))
8643 if (before)
8644 gsi_insert_seq_before (gsi, stmts, m);
8645 else
8646 gsi_insert_seq_after (gsi, stmts, m);
8649 return expr;
8652 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8653 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8654 otherwise just force it to be a rhs expression. If some statements are
8655 produced, emits them at GSI. If BEFORE is true, the statements are
8656 appended before GSI, otherwise they are appended after it. M specifies
8657 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8658 are the usual values). */
8660 tree
8661 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8662 bool simple_p, tree var, bool before,
8663 enum gsi_iterator_update m)
8665 return force_gimple_operand_gsi_1 (gsi, expr,
8666 simple_p
8667 ? is_gimple_val : is_gimple_reg_rhs,
8668 var, before, m);
8672 #include "gt-gimplify.h"