Merge trunk version 201119 into gupc branch.
[official-gcc.git] / gcc / gimplify.c
blobebf39f1661c5b7e88b572472cb13a63f54ba2757
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"
45 #include "gimple.h"
47 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name */
48 #include "tree-pass.h" /* FIXME: only for PROP_gimple_any */
50 enum gimplify_omp_var_data
52 GOVD_SEEN = 1,
53 GOVD_EXPLICIT = 2,
54 GOVD_SHARED = 4,
55 GOVD_PRIVATE = 8,
56 GOVD_FIRSTPRIVATE = 16,
57 GOVD_LASTPRIVATE = 32,
58 GOVD_REDUCTION = 64,
59 GOVD_LOCAL = 128,
60 GOVD_DEBUG_PRIVATE = 256,
61 GOVD_PRIVATE_OUTER_REF = 512,
62 GOVD_DATA_SHARE_CLASS = (GOVD_SHARED | GOVD_PRIVATE | GOVD_FIRSTPRIVATE
63 | GOVD_LASTPRIVATE | GOVD_REDUCTION | GOVD_LOCAL)
67 enum omp_region_type
69 ORT_WORKSHARE = 0,
70 ORT_PARALLEL = 2,
71 ORT_COMBINED_PARALLEL = 3,
72 ORT_TASK = 4,
73 ORT_UNTIED_TASK = 5
76 struct gimplify_omp_ctx
78 struct gimplify_omp_ctx *outer_context;
79 splay_tree variables;
80 struct pointer_set_t *privatized_types;
81 location_t location;
82 enum omp_clause_default_kind default_kind;
83 enum omp_region_type region_type;
86 static struct gimplify_ctx *gimplify_ctxp;
87 static struct gimplify_omp_ctx *gimplify_omp_ctxp;
90 /* Forward declaration. */
91 static enum gimplify_status gimplify_compound_expr (tree *, gimple_seq *, bool);
93 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
94 form and we don't do any syntax checking. */
96 void
97 mark_addressable (tree x)
99 while (handled_component_p (x))
100 x = TREE_OPERAND (x, 0);
101 if (TREE_CODE (x) == MEM_REF
102 && TREE_CODE (TREE_OPERAND (x, 0)) == ADDR_EXPR)
103 x = TREE_OPERAND (TREE_OPERAND (x, 0), 0);
104 if (TREE_CODE (x) != VAR_DECL
105 && TREE_CODE (x) != PARM_DECL
106 && TREE_CODE (x) != RESULT_DECL)
107 return;
108 TREE_ADDRESSABLE (x) = 1;
110 /* Also mark the artificial SSA_NAME that points to the partition of X. */
111 if (TREE_CODE (x) == VAR_DECL
112 && !DECL_EXTERNAL (x)
113 && !TREE_STATIC (x)
114 && cfun->gimple_df != NULL
115 && cfun->gimple_df->decls_to_pointers != NULL)
117 void *namep
118 = pointer_map_contains (cfun->gimple_df->decls_to_pointers, x);
119 if (namep)
120 TREE_ADDRESSABLE (*(tree *)namep) = 1;
124 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
125 *SEQ_P is NULL, a new sequence is allocated. This function is
126 similar to gimple_seq_add_stmt, but does not scan the operands.
127 During gimplification, we need to manipulate statement sequences
128 before the def/use vectors have been constructed. */
130 void
131 gimple_seq_add_stmt_without_update (gimple_seq *seq_p, gimple gs)
133 gimple_stmt_iterator si;
135 if (gs == NULL)
136 return;
138 si = gsi_last (*seq_p);
139 gsi_insert_after_without_update (&si, gs, GSI_NEW_STMT);
142 /* Shorter alias name for the above function for use in gimplify.c
143 only. */
145 static inline void
146 gimplify_seq_add_stmt (gimple_seq *seq_p, gimple gs)
148 gimple_seq_add_stmt_without_update (seq_p, gs);
151 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
152 NULL, a new sequence is allocated. This function is
153 similar to gimple_seq_add_seq, but does not scan the operands.
154 During gimplification, we need to manipulate statement sequences
155 before the def/use vectors have been constructed. */
157 static void
158 gimplify_seq_add_seq (gimple_seq *dst_p, gimple_seq src)
160 gimple_stmt_iterator si;
162 if (src == NULL)
163 return;
165 si = gsi_last (*dst_p);
166 gsi_insert_seq_after_without_update (&si, src, GSI_NEW_STMT);
169 /* Set up a context for the gimplifier. */
171 void
172 push_gimplify_context (struct gimplify_ctx *c)
174 memset (c, '\0', sizeof (*c));
175 c->prev_context = gimplify_ctxp;
176 gimplify_ctxp = c;
179 /* Tear down a context for the gimplifier. If BODY is non-null, then
180 put the temporaries into the outer BIND_EXPR. Otherwise, put them
181 in the local_decls.
183 BODY is not a sequence, but the first tuple in a sequence. */
185 void
186 pop_gimplify_context (gimple body)
188 struct gimplify_ctx *c = gimplify_ctxp;
190 gcc_assert (c
191 && (!c->bind_expr_stack.exists ()
192 || c->bind_expr_stack.is_empty ()));
193 c->bind_expr_stack.release ();
194 gimplify_ctxp = c->prev_context;
196 if (body)
197 declare_vars (c->temps, body, false);
198 else
199 record_vars (c->temps);
201 if (c->temp_htab.is_created ())
202 c->temp_htab.dispose ();
205 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
207 static void
208 gimple_push_bind_expr (gimple gimple_bind)
210 gimplify_ctxp->bind_expr_stack.reserve (8);
211 gimplify_ctxp->bind_expr_stack.safe_push (gimple_bind);
214 /* Pop the first element off the stack of bindings. */
216 static void
217 gimple_pop_bind_expr (void)
219 gimplify_ctxp->bind_expr_stack.pop ();
222 /* Return the first element of the stack of bindings. */
224 gimple
225 gimple_current_bind_expr (void)
227 return gimplify_ctxp->bind_expr_stack.last ();
230 /* Return the stack of bindings created during gimplification. */
232 vec<gimple>
233 gimple_bind_expr_stack (void)
235 return gimplify_ctxp->bind_expr_stack;
238 /* Return true iff there is a COND_EXPR between us and the innermost
239 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
241 static bool
242 gimple_conditional_context (void)
244 return gimplify_ctxp->conditions > 0;
247 /* Note that we've entered a COND_EXPR. */
249 static void
250 gimple_push_condition (void)
252 #ifdef ENABLE_GIMPLE_CHECKING
253 if (gimplify_ctxp->conditions == 0)
254 gcc_assert (gimple_seq_empty_p (gimplify_ctxp->conditional_cleanups));
255 #endif
256 ++(gimplify_ctxp->conditions);
259 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
260 now, add any conditional cleanups we've seen to the prequeue. */
262 static void
263 gimple_pop_condition (gimple_seq *pre_p)
265 int conds = --(gimplify_ctxp->conditions);
267 gcc_assert (conds >= 0);
268 if (conds == 0)
270 gimplify_seq_add_seq (pre_p, gimplify_ctxp->conditional_cleanups);
271 gimplify_ctxp->conditional_cleanups = NULL;
275 /* A stable comparison routine for use with splay trees and DECLs. */
277 static int
278 splay_tree_compare_decl_uid (splay_tree_key xa, splay_tree_key xb)
280 tree a = (tree) xa;
281 tree b = (tree) xb;
283 return DECL_UID (a) - DECL_UID (b);
286 /* Create a new omp construct that deals with variable remapping. */
288 static struct gimplify_omp_ctx *
289 new_omp_context (enum omp_region_type region_type)
291 struct gimplify_omp_ctx *c;
293 c = XCNEW (struct gimplify_omp_ctx);
294 c->outer_context = gimplify_omp_ctxp;
295 c->variables = splay_tree_new (splay_tree_compare_decl_uid, 0, 0);
296 c->privatized_types = pointer_set_create ();
297 c->location = input_location;
298 c->region_type = region_type;
299 if ((region_type & ORT_TASK) == 0)
300 c->default_kind = OMP_CLAUSE_DEFAULT_SHARED;
301 else
302 c->default_kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED;
304 return c;
307 /* Destroy an omp construct that deals with variable remapping. */
309 static void
310 delete_omp_context (struct gimplify_omp_ctx *c)
312 splay_tree_delete (c->variables);
313 pointer_set_destroy (c->privatized_types);
314 XDELETE (c);
317 static void omp_add_variable (struct gimplify_omp_ctx *, tree, unsigned int);
318 static bool omp_notice_variable (struct gimplify_omp_ctx *, tree, bool);
320 /* Both gimplify the statement T and append it to *SEQ_P. This function
321 behaves exactly as gimplify_stmt, but you don't have to pass T as a
322 reference. */
324 void
325 gimplify_and_add (tree t, gimple_seq *seq_p)
327 gimplify_stmt (&t, seq_p);
330 /* Gimplify statement T into sequence *SEQ_P, and return the first
331 tuple in the sequence of generated tuples for this statement.
332 Return NULL if gimplifying T produced no tuples. */
334 static gimple
335 gimplify_and_return_first (tree t, gimple_seq *seq_p)
337 gimple_stmt_iterator last = gsi_last (*seq_p);
339 gimplify_and_add (t, seq_p);
341 if (!gsi_end_p (last))
343 gsi_next (&last);
344 return gsi_stmt (last);
346 else
347 return gimple_seq_first_stmt (*seq_p);
350 /* Strip off a legitimate source ending from the input string NAME of
351 length LEN. Rather than having to know the names used by all of
352 our front ends, we strip off an ending of a period followed by
353 up to five characters. (Java uses ".class".) */
355 static inline void
356 remove_suffix (char *name, int len)
358 int i;
360 for (i = 2; i < 8 && len > i; i++)
362 if (name[len - i] == '.')
364 name[len - i] = '\0';
365 break;
370 /* Create a new temporary name with PREFIX. Return an identifier. */
372 static GTY(()) unsigned int tmp_var_id_num;
374 tree
375 create_tmp_var_name (const char *prefix)
377 char *tmp_name;
379 if (prefix)
381 char *preftmp = ASTRDUP (prefix);
383 remove_suffix (preftmp, strlen (preftmp));
384 clean_symbol_name (preftmp);
386 prefix = preftmp;
389 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix ? prefix : "T", tmp_var_id_num++);
390 return get_identifier (tmp_name);
393 /* Create a new temporary variable declaration of type TYPE.
394 Do NOT push it into the current binding. */
396 tree
397 create_tmp_var_raw (tree type, const char *prefix)
399 tree tmp_var;
401 /* Temps. cannot be UPC shared qualified. */
402 gcc_assert (!upc_shared_type_p (type));
404 tmp_var = build_decl (input_location,
405 VAR_DECL, prefix ? create_tmp_var_name (prefix) : NULL,
406 type);
408 /* The variable was declared by the compiler. */
409 DECL_ARTIFICIAL (tmp_var) = 1;
410 /* And we don't want debug info for it. */
411 DECL_IGNORED_P (tmp_var) = 1;
413 /* Make the variable writable. */
414 TREE_READONLY (tmp_var) = 0;
416 DECL_EXTERNAL (tmp_var) = 0;
417 TREE_STATIC (tmp_var) = 0;
418 TREE_USED (tmp_var) = 1;
420 return tmp_var;
423 /* Create a new temporary variable declaration of type TYPE. DO push the
424 variable into the current binding. Further, assume that this is called
425 only from gimplification or optimization, at which point the creation of
426 certain types are bugs. */
428 tree
429 create_tmp_var (tree type, const char *prefix)
431 tree tmp_var;
433 /* We don't allow types that are addressable (meaning we can't make copies),
434 or incomplete. We also used to reject every variable size objects here,
435 but now support those for which a constant upper bound can be obtained.
436 The processing for variable sizes is performed in gimple_add_tmp_var,
437 point at which it really matters and possibly reached via paths not going
438 through this function, e.g. after direct calls to create_tmp_var_raw. */
439 gcc_assert (!TREE_ADDRESSABLE (type) && COMPLETE_TYPE_P (type));
441 tmp_var = create_tmp_var_raw (type, prefix);
442 gimple_add_tmp_var (tmp_var);
443 return tmp_var;
446 /* Create a new temporary variable declaration of type TYPE by calling
447 create_tmp_var and if TYPE is a vector or a complex number, mark the new
448 temporary as gimple register. */
450 tree
451 create_tmp_reg (tree type, const char *prefix)
453 tree tmp;
455 tmp = create_tmp_var (type, prefix);
456 if (TREE_CODE (type) == COMPLEX_TYPE
457 || TREE_CODE (type) == VECTOR_TYPE)
458 DECL_GIMPLE_REG_P (tmp) = 1;
460 return tmp;
463 /* Returns true iff T is a valid RHS for an assignment to a renamed
464 user -- or front-end generated artificial -- variable. */
466 static bool
467 is_gimple_reg_rhs (tree t)
469 return get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS;
472 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
473 LHS, or for a call argument. */
475 static bool
476 is_gimple_mem_rhs (tree t)
478 /* If we're dealing with a renamable type, either source or dest must be
479 a renamed variable. */
480 if (is_gimple_reg_type (TREE_TYPE (t)))
481 return is_gimple_val (t);
482 else
483 return is_gimple_val (t) || is_gimple_lvalue (t);
486 /* Return true if T is a CALL_EXPR or an expression that can be
487 assigned to a temporary. Note that this predicate should only be
488 used during gimplification. See the rationale for this in
489 gimplify_modify_expr. */
491 static bool
492 is_gimple_reg_rhs_or_call (tree t)
494 return (get_gimple_rhs_class (TREE_CODE (t)) != GIMPLE_INVALID_RHS
495 || TREE_CODE (t) == CALL_EXPR);
498 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
499 this predicate should only be used during gimplification. See the
500 rationale for this in gimplify_modify_expr. */
502 static bool
503 is_gimple_mem_rhs_or_call (tree t)
505 /* If we're dealing with a renamable type, either source or dest must be
506 a renamed variable. */
507 if (is_gimple_reg_type (TREE_TYPE (t)))
508 return is_gimple_val (t);
509 else
510 return (is_gimple_val (t) || is_gimple_lvalue (t)
511 || TREE_CODE (t) == CALL_EXPR);
514 /* Create a temporary with a name derived from VAL. Subroutine of
515 lookup_tmp_var; nobody else should call this function. */
517 static inline tree
518 create_tmp_from_val (tree val, bool is_formal)
520 /* Drop all qualifiers and address-space information from the value type. */
521 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (val));
522 tree var = create_tmp_var (type, get_name (val));
523 if (is_formal
524 && (TREE_CODE (TREE_TYPE (var)) == COMPLEX_TYPE
525 || TREE_CODE (TREE_TYPE (var)) == VECTOR_TYPE))
526 DECL_GIMPLE_REG_P (var) = 1;
527 return var;
530 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
531 an existing expression temporary. */
533 static tree
534 lookup_tmp_var (tree val, bool is_formal)
536 tree ret;
538 /* If not optimizing, never really reuse a temporary. local-alloc
539 won't allocate any variable that is used in more than one basic
540 block, which means it will go into memory, causing much extra
541 work in reload and final and poorer code generation, outweighing
542 the extra memory allocation here. */
543 if (!optimize || !is_formal || TREE_SIDE_EFFECTS (val))
544 ret = create_tmp_from_val (val, is_formal);
545 else
547 elt_t elt, *elt_p;
548 elt_t **slot;
550 elt.val = val;
551 if (!gimplify_ctxp->temp_htab.is_created ())
552 gimplify_ctxp->temp_htab.create (1000);
553 slot = gimplify_ctxp->temp_htab.find_slot (&elt, INSERT);
554 if (*slot == NULL)
556 elt_p = XNEW (elt_t);
557 elt_p->val = val;
558 elt_p->temp = ret = create_tmp_from_val (val, is_formal);
559 *slot = elt_p;
561 else
563 elt_p = *slot;
564 ret = elt_p->temp;
568 return ret;
571 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
573 static tree
574 internal_get_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p,
575 bool is_formal)
577 tree t, mod;
579 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
580 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
581 gimplify_expr (&val, pre_p, post_p, is_gimple_reg_rhs_or_call,
582 fb_rvalue);
584 if (gimplify_ctxp->into_ssa
585 && is_gimple_reg_type (TREE_TYPE (val)))
586 t = make_ssa_name (TYPE_MAIN_VARIANT (TREE_TYPE (val)), NULL);
587 else
588 t = lookup_tmp_var (val, is_formal);
590 mod = build2 (INIT_EXPR, TREE_TYPE (t), t, unshare_expr (val));
592 SET_EXPR_LOCATION (mod, EXPR_LOC_OR_HERE (val));
594 /* gimplify_modify_expr might want to reduce this further. */
595 gimplify_and_add (mod, pre_p);
596 ggc_free (mod);
598 return t;
601 /* Return a formal temporary variable initialized with VAL. PRE_P is as
602 in gimplify_expr. Only use this function if:
604 1) The value of the unfactored expression represented by VAL will not
605 change between the initialization and use of the temporary, and
606 2) The temporary will not be otherwise modified.
608 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
609 and #2 means it is inappropriate for && temps.
611 For other cases, use get_initialized_tmp_var instead. */
613 tree
614 get_formal_tmp_var (tree val, gimple_seq *pre_p)
616 return internal_get_tmp_var (val, pre_p, NULL, true);
619 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
620 are as in gimplify_expr. */
622 tree
623 get_initialized_tmp_var (tree val, gimple_seq *pre_p, gimple_seq *post_p)
625 return internal_get_tmp_var (val, pre_p, post_p, false);
628 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
629 generate debug info for them; otherwise don't. */
631 void
632 declare_vars (tree vars, gimple scope, bool debug_info)
634 tree last = vars;
635 if (last)
637 tree temps, block;
639 gcc_assert (gimple_code (scope) == GIMPLE_BIND);
641 temps = nreverse (last);
643 block = gimple_bind_block (scope);
644 gcc_assert (!block || TREE_CODE (block) == BLOCK);
645 if (!block || !debug_info)
647 DECL_CHAIN (last) = gimple_bind_vars (scope);
648 gimple_bind_set_vars (scope, temps);
650 else
652 /* We need to attach the nodes both to the BIND_EXPR and to its
653 associated BLOCK for debugging purposes. The key point here
654 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
655 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
656 if (BLOCK_VARS (block))
657 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), temps);
658 else
660 gimple_bind_set_vars (scope,
661 chainon (gimple_bind_vars (scope), temps));
662 BLOCK_VARS (block) = temps;
668 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
669 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
670 no such upper bound can be obtained. */
672 static void
673 force_constant_size (tree var)
675 /* The only attempt we make is by querying the maximum size of objects
676 of the variable's type. */
678 HOST_WIDE_INT max_size;
680 gcc_assert (TREE_CODE (var) == VAR_DECL);
682 max_size = max_int_size_in_bytes (TREE_TYPE (var));
684 gcc_assert (max_size >= 0);
686 DECL_SIZE_UNIT (var)
687 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var)), max_size);
688 DECL_SIZE (var)
689 = build_int_cst (TREE_TYPE (DECL_SIZE (var)), max_size * BITS_PER_UNIT);
692 /* Push the temporary variable TMP into the current binding. */
694 void
695 gimple_add_tmp_var (tree tmp)
697 gcc_assert (!DECL_CHAIN (tmp) && !DECL_SEEN_IN_BIND_EXPR_P (tmp));
699 /* Later processing assumes that the object size is constant, which might
700 not be true at this point. Force the use of a constant upper bound in
701 this case. */
702 if (!host_integerp (DECL_SIZE_UNIT (tmp), 1))
703 force_constant_size (tmp);
705 DECL_CONTEXT (tmp) = current_function_decl;
706 DECL_SEEN_IN_BIND_EXPR_P (tmp) = 1;
708 if (gimplify_ctxp)
710 DECL_CHAIN (tmp) = gimplify_ctxp->temps;
711 gimplify_ctxp->temps = tmp;
713 /* Mark temporaries local within the nearest enclosing parallel. */
714 if (gimplify_omp_ctxp)
716 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
717 while (ctx && ctx->region_type == ORT_WORKSHARE)
718 ctx = ctx->outer_context;
719 if (ctx)
720 omp_add_variable (ctx, tmp, GOVD_LOCAL | GOVD_SEEN);
723 else if (cfun)
724 record_vars (tmp);
725 else
727 gimple_seq body_seq;
729 /* This case is for nested functions. We need to expose the locals
730 they create. */
731 body_seq = gimple_body (current_function_decl);
732 declare_vars (tmp, gimple_seq_first_stmt (body_seq), false);
736 /* Determine whether to assign a location to the statement GS. */
738 static bool
739 should_carry_location_p (gimple gs)
741 /* Don't emit a line note for a label. We particularly don't want to
742 emit one for the break label, since it doesn't actually correspond
743 to the beginning of the loop/switch. */
744 if (gimple_code (gs) == GIMPLE_LABEL)
745 return false;
747 return true;
750 /* Return true if a location should not be emitted for this statement
751 by annotate_one_with_location. */
753 static inline bool
754 gimple_do_not_emit_location_p (gimple g)
756 return gimple_plf (g, GF_PLF_1);
759 /* Mark statement G so a location will not be emitted by
760 annotate_one_with_location. */
762 static inline void
763 gimple_set_do_not_emit_location (gimple g)
765 /* The PLF flags are initialized to 0 when a new tuple is created,
766 so no need to initialize it anywhere. */
767 gimple_set_plf (g, GF_PLF_1, true);
770 /* Set the location for gimple statement GS to LOCATION. */
772 static void
773 annotate_one_with_location (gimple gs, location_t location)
775 if (!gimple_has_location (gs)
776 && !gimple_do_not_emit_location_p (gs)
777 && should_carry_location_p (gs))
778 gimple_set_location (gs, location);
781 /* Set LOCATION for all the statements after iterator GSI in sequence
782 SEQ. If GSI is pointing to the end of the sequence, start with the
783 first statement in SEQ. */
785 static void
786 annotate_all_with_location_after (gimple_seq seq, gimple_stmt_iterator gsi,
787 location_t location)
789 if (gsi_end_p (gsi))
790 gsi = gsi_start (seq);
791 else
792 gsi_next (&gsi);
794 for (; !gsi_end_p (gsi); gsi_next (&gsi))
795 annotate_one_with_location (gsi_stmt (gsi), location);
798 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
800 void
801 annotate_all_with_location (gimple_seq stmt_p, location_t location)
803 gimple_stmt_iterator i;
805 if (gimple_seq_empty_p (stmt_p))
806 return;
808 for (i = gsi_start (stmt_p); !gsi_end_p (i); gsi_next (&i))
810 gimple gs = gsi_stmt (i);
811 annotate_one_with_location (gs, location);
815 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
816 nodes that are referenced more than once in GENERIC functions. This is
817 necessary because gimplification (translation into GIMPLE) is performed
818 by modifying tree nodes in-place, so gimplication of a shared node in a
819 first context could generate an invalid GIMPLE form in a second context.
821 This is achieved with a simple mark/copy/unmark algorithm that walks the
822 GENERIC representation top-down, marks nodes with TREE_VISITED the first
823 time it encounters them, duplicates them if they already have TREE_VISITED
824 set, and finally removes the TREE_VISITED marks it has set.
826 The algorithm works only at the function level, i.e. it generates a GENERIC
827 representation of a function with no nodes shared within the function when
828 passed a GENERIC function (except for nodes that are allowed to be shared).
830 At the global level, it is also necessary to unshare tree nodes that are
831 referenced in more than one function, for the same aforementioned reason.
832 This requires some cooperation from the front-end. There are 2 strategies:
834 1. Manual unsharing. The front-end needs to call unshare_expr on every
835 expression that might end up being shared across functions.
837 2. Deep unsharing. This is an extension of regular unsharing. Instead
838 of calling unshare_expr on expressions that might be shared across
839 functions, the front-end pre-marks them with TREE_VISITED. This will
840 ensure that they are unshared on the first reference within functions
841 when the regular unsharing algorithm runs. The counterpart is that
842 this algorithm must look deeper than for manual unsharing, which is
843 specified by LANG_HOOKS_DEEP_UNSHARING.
845 If there are only few specific cases of node sharing across functions, it is
846 probably easier for a front-end to unshare the expressions manually. On the
847 contrary, if the expressions generated at the global level are as widespread
848 as expressions generated within functions, deep unsharing is very likely the
849 way to go. */
851 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
852 These nodes model computations that must be done once. If we were to
853 unshare something like SAVE_EXPR(i++), the gimplification process would
854 create wrong code. However, if DATA is non-null, it must hold a pointer
855 set that is used to unshare the subtrees of these nodes. */
857 static tree
858 mostly_copy_tree_r (tree *tp, int *walk_subtrees, void *data)
860 tree t = *tp;
861 enum tree_code code = TREE_CODE (t);
863 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
864 copy their subtrees if we can make sure to do it only once. */
865 if (code == SAVE_EXPR || code == TARGET_EXPR || code == BIND_EXPR)
867 if (data && !pointer_set_insert ((struct pointer_set_t *)data, t))
869 else
870 *walk_subtrees = 0;
873 /* Stop at types, decls, constants like copy_tree_r. */
874 else if (TREE_CODE_CLASS (code) == tcc_type
875 || TREE_CODE_CLASS (code) == tcc_declaration
876 || TREE_CODE_CLASS (code) == tcc_constant
877 /* We can't do anything sensible with a BLOCK used as an
878 expression, but we also can't just die when we see it
879 because of non-expression uses. So we avert our eyes
880 and cross our fingers. Silly Java. */
881 || code == BLOCK)
882 *walk_subtrees = 0;
884 /* Cope with the statement expression extension. */
885 else if (code == STATEMENT_LIST)
888 /* Leave the bulk of the work to copy_tree_r itself. */
889 else
890 copy_tree_r (tp, walk_subtrees, NULL);
892 return NULL_TREE;
895 /* Callback for walk_tree to unshare most of the shared trees rooted at *TP.
896 If *TP has been visited already, then *TP is deeply copied by calling
897 mostly_copy_tree_r. DATA is passed to mostly_copy_tree_r unmodified. */
899 static tree
900 copy_if_shared_r (tree *tp, int *walk_subtrees, void *data)
902 tree t = *tp;
903 enum tree_code code = TREE_CODE (t);
905 /* Skip types, decls, and constants. But we do want to look at their
906 types and the bounds of types. Mark them as visited so we properly
907 unmark their subtrees on the unmark pass. If we've already seen them,
908 don't look down further. */
909 if (TREE_CODE_CLASS (code) == tcc_type
910 || TREE_CODE_CLASS (code) == tcc_declaration
911 || TREE_CODE_CLASS (code) == tcc_constant)
913 if (TREE_VISITED (t))
914 *walk_subtrees = 0;
915 else
916 TREE_VISITED (t) = 1;
919 /* If this node has been visited already, unshare it and don't look
920 any deeper. */
921 else if (TREE_VISITED (t))
923 walk_tree (tp, mostly_copy_tree_r, data, NULL);
924 *walk_subtrees = 0;
927 /* Otherwise, mark the node as visited and keep looking. */
928 else
929 TREE_VISITED (t) = 1;
931 return NULL_TREE;
934 /* Unshare most of the shared trees rooted at *TP. DATA is passed to the
935 copy_if_shared_r callback unmodified. */
937 static inline void
938 copy_if_shared (tree *tp, void *data)
940 walk_tree (tp, copy_if_shared_r, data, NULL);
943 /* Unshare all the trees in the body of FNDECL, as well as in the bodies of
944 any nested functions. */
946 static void
947 unshare_body (tree fndecl)
949 struct cgraph_node *cgn = cgraph_get_node (fndecl);
950 /* If the language requires deep unsharing, we need a pointer set to make
951 sure we don't repeatedly unshare subtrees of unshareable nodes. */
952 struct pointer_set_t *visited
953 = lang_hooks.deep_unsharing ? pointer_set_create () : NULL;
955 copy_if_shared (&DECL_SAVED_TREE (fndecl), visited);
956 copy_if_shared (&DECL_SIZE (DECL_RESULT (fndecl)), visited);
957 copy_if_shared (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)), visited);
959 if (visited)
960 pointer_set_destroy (visited);
962 if (cgn)
963 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
964 unshare_body (cgn->symbol.decl);
967 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
968 Subtrees are walked until the first unvisited node is encountered. */
970 static tree
971 unmark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
973 tree t = *tp;
975 /* If this node has been visited, unmark it and keep looking. */
976 if (TREE_VISITED (t))
977 TREE_VISITED (t) = 0;
979 /* Otherwise, don't look any deeper. */
980 else
981 *walk_subtrees = 0;
983 return NULL_TREE;
986 /* Unmark the visited trees rooted at *TP. */
988 static inline void
989 unmark_visited (tree *tp)
991 walk_tree (tp, unmark_visited_r, NULL, NULL);
994 /* Likewise, but mark all trees as not visited. */
996 static void
997 unvisit_body (tree fndecl)
999 struct cgraph_node *cgn = cgraph_get_node (fndecl);
1001 unmark_visited (&DECL_SAVED_TREE (fndecl));
1002 unmark_visited (&DECL_SIZE (DECL_RESULT (fndecl)));
1003 unmark_visited (&DECL_SIZE_UNIT (DECL_RESULT (fndecl)));
1005 if (cgn)
1006 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1007 unvisit_body (cgn->symbol.decl);
1010 /* Unconditionally make an unshared copy of EXPR. This is used when using
1011 stored expressions which span multiple functions, such as BINFO_VTABLE,
1012 as the normal unsharing process can't tell that they're shared. */
1014 tree
1015 unshare_expr (tree expr)
1017 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1018 return expr;
1021 /* Worker for unshare_expr_without_location. */
1023 static tree
1024 prune_expr_location (tree *tp, int *walk_subtrees, void *)
1026 if (EXPR_P (*tp))
1027 SET_EXPR_LOCATION (*tp, UNKNOWN_LOCATION);
1028 else
1029 *walk_subtrees = 0;
1030 return NULL_TREE;
1033 /* Similar to unshare_expr but also prune all expression locations
1034 from EXPR. */
1036 tree
1037 unshare_expr_without_location (tree expr)
1039 walk_tree (&expr, mostly_copy_tree_r, NULL, NULL);
1040 if (EXPR_P (expr))
1041 walk_tree (&expr, prune_expr_location, NULL, NULL);
1042 return expr;
1045 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1046 contain statements and have a value. Assign its value to a temporary
1047 and give it void_type_node. Return the temporary, or NULL_TREE if
1048 WRAPPER was already void. */
1050 tree
1051 voidify_wrapper_expr (tree wrapper, tree temp)
1053 tree type = TREE_TYPE (wrapper);
1054 if (type && !VOID_TYPE_P (type))
1056 tree *p;
1058 /* Set p to point to the body of the wrapper. Loop until we find
1059 something that isn't a wrapper. */
1060 for (p = &wrapper; p && *p; )
1062 switch (TREE_CODE (*p))
1064 case BIND_EXPR:
1065 TREE_SIDE_EFFECTS (*p) = 1;
1066 TREE_TYPE (*p) = void_type_node;
1067 /* For a BIND_EXPR, the body is operand 1. */
1068 p = &BIND_EXPR_BODY (*p);
1069 break;
1071 case CLEANUP_POINT_EXPR:
1072 case TRY_FINALLY_EXPR:
1073 case TRY_CATCH_EXPR:
1074 TREE_SIDE_EFFECTS (*p) = 1;
1075 TREE_TYPE (*p) = void_type_node;
1076 p = &TREE_OPERAND (*p, 0);
1077 break;
1079 case STATEMENT_LIST:
1081 tree_stmt_iterator i = tsi_last (*p);
1082 TREE_SIDE_EFFECTS (*p) = 1;
1083 TREE_TYPE (*p) = void_type_node;
1084 p = tsi_end_p (i) ? NULL : tsi_stmt_ptr (i);
1086 break;
1088 case COMPOUND_EXPR:
1089 /* Advance to the last statement. Set all container types to
1090 void. */
1091 for (; TREE_CODE (*p) == COMPOUND_EXPR; p = &TREE_OPERAND (*p, 1))
1093 TREE_SIDE_EFFECTS (*p) = 1;
1094 TREE_TYPE (*p) = void_type_node;
1096 break;
1098 case TRANSACTION_EXPR:
1099 TREE_SIDE_EFFECTS (*p) = 1;
1100 TREE_TYPE (*p) = void_type_node;
1101 p = &TRANSACTION_EXPR_BODY (*p);
1102 break;
1104 default:
1105 /* Assume that any tree upon which voidify_wrapper_expr is
1106 directly called is a wrapper, and that its body is op0. */
1107 if (p == &wrapper)
1109 TREE_SIDE_EFFECTS (*p) = 1;
1110 TREE_TYPE (*p) = void_type_node;
1111 p = &TREE_OPERAND (*p, 0);
1112 break;
1114 goto out;
1118 out:
1119 if (p == NULL || IS_EMPTY_STMT (*p))
1120 temp = NULL_TREE;
1121 else if (temp)
1123 /* The wrapper is on the RHS of an assignment that we're pushing
1124 down. */
1125 gcc_assert (TREE_CODE (temp) == INIT_EXPR
1126 || TREE_CODE (temp) == MODIFY_EXPR);
1127 TREE_OPERAND (temp, 1) = *p;
1128 *p = temp;
1130 else
1132 temp = create_tmp_var (type, "retval");
1133 *p = build2 (INIT_EXPR, type, temp, *p);
1136 return temp;
1139 return NULL_TREE;
1142 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1143 a temporary through which they communicate. */
1145 static void
1146 build_stack_save_restore (gimple *save, gimple *restore)
1148 tree tmp_var;
1150 *save = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0);
1151 tmp_var = create_tmp_var (ptr_type_node, "saved_stack");
1152 gimple_call_set_lhs (*save, tmp_var);
1154 *restore
1155 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE),
1156 1, tmp_var);
1159 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1161 static enum gimplify_status
1162 gimplify_bind_expr (tree *expr_p, gimple_seq *pre_p)
1164 tree bind_expr = *expr_p;
1165 bool old_save_stack = gimplify_ctxp->save_stack;
1166 tree t;
1167 gimple gimple_bind;
1168 gimple_seq body, cleanup;
1169 gimple stack_save;
1171 tree temp = voidify_wrapper_expr (bind_expr, NULL);
1173 /* Mark variables seen in this bind expr. */
1174 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1176 if (TREE_CODE (t) == VAR_DECL)
1178 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
1180 /* Mark variable as local. */
1181 if (ctx && !DECL_EXTERNAL (t)
1182 && (! DECL_SEEN_IN_BIND_EXPR_P (t)
1183 || splay_tree_lookup (ctx->variables,
1184 (splay_tree_key) t) == NULL))
1185 omp_add_variable (gimplify_omp_ctxp, t, GOVD_LOCAL | GOVD_SEEN);
1187 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
1189 if (DECL_HARD_REGISTER (t) && !is_global_var (t) && cfun)
1190 cfun->has_local_explicit_reg_vars = true;
1193 /* Preliminarily mark non-addressed complex variables as eligible
1194 for promotion to gimple registers. We'll transform their uses
1195 as we find them. */
1196 if ((TREE_CODE (TREE_TYPE (t)) == COMPLEX_TYPE
1197 || TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1198 && !TREE_THIS_VOLATILE (t)
1199 && (TREE_CODE (t) == VAR_DECL && !DECL_HARD_REGISTER (t))
1200 && !needs_to_live_in_memory (t))
1201 DECL_GIMPLE_REG_P (t) = 1;
1204 gimple_bind = gimple_build_bind (BIND_EXPR_VARS (bind_expr), NULL,
1205 BIND_EXPR_BLOCK (bind_expr));
1206 gimple_push_bind_expr (gimple_bind);
1208 gimplify_ctxp->save_stack = false;
1210 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1211 body = NULL;
1212 gimplify_stmt (&BIND_EXPR_BODY (bind_expr), &body);
1213 gimple_bind_set_body (gimple_bind, body);
1215 cleanup = NULL;
1216 stack_save = NULL;
1217 if (gimplify_ctxp->save_stack)
1219 gimple stack_restore;
1221 /* Save stack on entry and restore it on exit. Add a try_finally
1222 block to achieve this. Note that mudflap depends on the
1223 format of the emitted code: see mx_register_decls(). */
1224 build_stack_save_restore (&stack_save, &stack_restore);
1226 gimplify_seq_add_stmt (&cleanup, stack_restore);
1229 /* Add clobbers for all variables that go out of scope. */
1230 for (t = BIND_EXPR_VARS (bind_expr); t ; t = DECL_CHAIN (t))
1232 if (TREE_CODE (t) == VAR_DECL
1233 && !is_global_var (t)
1234 && DECL_CONTEXT (t) == current_function_decl
1235 && !DECL_HARD_REGISTER (t)
1236 && !TREE_THIS_VOLATILE (t)
1237 && !DECL_HAS_VALUE_EXPR_P (t)
1238 /* Only care for variables that have to be in memory. Others
1239 will be rewritten into SSA names, hence moved to the top-level. */
1240 && !is_gimple_reg (t)
1241 && flag_stack_reuse != SR_NONE)
1243 tree clobber = build_constructor (TREE_TYPE (t),
1244 NULL);
1245 TREE_THIS_VOLATILE (clobber) = 1;
1246 gimplify_seq_add_stmt (&cleanup, gimple_build_assign (t, clobber));
1250 if (cleanup)
1252 gimple gs;
1253 gimple_seq new_body;
1255 new_body = NULL;
1256 gs = gimple_build_try (gimple_bind_body (gimple_bind), cleanup,
1257 GIMPLE_TRY_FINALLY);
1259 if (stack_save)
1260 gimplify_seq_add_stmt (&new_body, stack_save);
1261 gimplify_seq_add_stmt (&new_body, gs);
1262 gimple_bind_set_body (gimple_bind, new_body);
1265 gimplify_ctxp->save_stack = old_save_stack;
1266 gimple_pop_bind_expr ();
1268 gimplify_seq_add_stmt (pre_p, gimple_bind);
1270 if (temp)
1272 *expr_p = temp;
1273 return GS_OK;
1276 *expr_p = NULL_TREE;
1277 return GS_ALL_DONE;
1280 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1281 GIMPLE value, it is assigned to a new temporary and the statement is
1282 re-written to return the temporary.
1284 PRE_P points to the sequence where side effects that must happen before
1285 STMT should be stored. */
1287 static enum gimplify_status
1288 gimplify_return_expr (tree stmt, gimple_seq *pre_p)
1290 gimple ret;
1291 tree ret_expr = TREE_OPERAND (stmt, 0);
1292 tree result_decl, result;
1294 if (ret_expr == error_mark_node)
1295 return GS_ERROR;
1297 if (!ret_expr
1298 || TREE_CODE (ret_expr) == RESULT_DECL
1299 || ret_expr == error_mark_node)
1301 gimple ret = gimple_build_return (ret_expr);
1302 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1303 gimplify_seq_add_stmt (pre_p, ret);
1304 return GS_ALL_DONE;
1307 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
1308 result_decl = NULL_TREE;
1309 else
1311 result_decl = TREE_OPERAND (ret_expr, 0);
1313 /* See through a return by reference. */
1314 if (TREE_CODE (result_decl) == INDIRECT_REF)
1315 result_decl = TREE_OPERAND (result_decl, 0);
1317 gcc_assert ((TREE_CODE (ret_expr) == MODIFY_EXPR
1318 || TREE_CODE (ret_expr) == INIT_EXPR)
1319 && TREE_CODE (result_decl) == RESULT_DECL);
1322 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1323 Recall that aggregate_value_p is FALSE for any aggregate type that is
1324 returned in registers. If we're returning values in registers, then
1325 we don't want to extend the lifetime of the RESULT_DECL, particularly
1326 across another call. In addition, for those aggregates for which
1327 hard_function_value generates a PARALLEL, we'll die during normal
1328 expansion of structure assignments; there's special code in expand_return
1329 to handle this case that does not exist in expand_expr. */
1330 if (!result_decl)
1331 result = NULL_TREE;
1332 else if (aggregate_value_p (result_decl, TREE_TYPE (current_function_decl)))
1334 if (TREE_CODE (DECL_SIZE (result_decl)) != INTEGER_CST)
1336 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl)))
1337 gimplify_type_sizes (TREE_TYPE (result_decl), pre_p);
1338 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1339 should be effectively allocated by the caller, i.e. all calls to
1340 this function must be subject to the Return Slot Optimization. */
1341 gimplify_one_sizepos (&DECL_SIZE (result_decl), pre_p);
1342 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl), pre_p);
1344 result = result_decl;
1346 else if (gimplify_ctxp->return_temp)
1347 result = gimplify_ctxp->return_temp;
1348 else
1350 result = create_tmp_reg (TREE_TYPE (result_decl), NULL);
1352 /* ??? With complex control flow (usually involving abnormal edges),
1353 we can wind up warning about an uninitialized value for this. Due
1354 to how this variable is constructed and initialized, this is never
1355 true. Give up and never warn. */
1356 TREE_NO_WARNING (result) = 1;
1358 gimplify_ctxp->return_temp = result;
1361 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1362 Then gimplify the whole thing. */
1363 if (result != result_decl)
1364 TREE_OPERAND (ret_expr, 0) = result;
1366 gimplify_and_add (TREE_OPERAND (stmt, 0), pre_p);
1368 ret = gimple_build_return (result);
1369 gimple_set_no_warning (ret, TREE_NO_WARNING (stmt));
1370 gimplify_seq_add_stmt (pre_p, ret);
1372 return GS_ALL_DONE;
1375 /* Gimplify a variable-length array DECL. */
1377 static void
1378 gimplify_vla_decl (tree decl, gimple_seq *seq_p)
1380 /* This is a variable-sized decl. Simplify its size and mark it
1381 for deferred expansion. Note that mudflap depends on the format
1382 of the emitted code: see mx_register_decls(). */
1383 tree t, addr, ptr_type;
1385 gimplify_one_sizepos (&DECL_SIZE (decl), seq_p);
1386 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), seq_p);
1388 /* Don't mess with a DECL_VALUE_EXPR set by the front-end. */
1389 if (DECL_HAS_VALUE_EXPR_P (decl))
1390 return;
1392 /* All occurrences of this decl in final gimplified code will be
1393 replaced by indirection. Setting DECL_VALUE_EXPR does two
1394 things: First, it lets the rest of the gimplifier know what
1395 replacement to use. Second, it lets the debug info know
1396 where to find the value. */
1397 ptr_type = build_pointer_type (TREE_TYPE (decl));
1398 addr = create_tmp_var (ptr_type, get_name (decl));
1399 DECL_IGNORED_P (addr) = 0;
1400 t = build_fold_indirect_ref (addr);
1401 TREE_THIS_NOTRAP (t) = 1;
1402 SET_DECL_VALUE_EXPR (decl, t);
1403 DECL_HAS_VALUE_EXPR_P (decl) = 1;
1405 t = builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN);
1406 t = build_call_expr (t, 2, DECL_SIZE_UNIT (decl),
1407 size_int (DECL_ALIGN (decl)));
1408 /* The call has been built for a variable-sized object. */
1409 CALL_ALLOCA_FOR_VAR_P (t) = 1;
1410 t = fold_convert (ptr_type, t);
1411 t = build2 (MODIFY_EXPR, TREE_TYPE (addr), addr, t);
1413 gimplify_and_add (t, seq_p);
1415 /* Indicate that we need to restore the stack level when the
1416 enclosing BIND_EXPR is exited. */
1417 gimplify_ctxp->save_stack = true;
1420 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1421 and initialization explicit. */
1423 static enum gimplify_status
1424 gimplify_decl_expr (tree *stmt_p, gimple_seq *seq_p)
1426 tree stmt = *stmt_p;
1427 tree decl = DECL_EXPR_DECL (stmt);
1429 *stmt_p = NULL_TREE;
1431 if (TREE_TYPE (decl) == error_mark_node)
1432 return GS_ERROR;
1434 if ((TREE_CODE (decl) == TYPE_DECL
1435 || TREE_CODE (decl) == VAR_DECL)
1436 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl)))
1437 gimplify_type_sizes (TREE_TYPE (decl), seq_p);
1439 /* ??? DECL_ORIGINAL_TYPE is streamed for LTO so it needs to be gimplified
1440 in case its size expressions contain problematic nodes like CALL_EXPR. */
1441 if (TREE_CODE (decl) == TYPE_DECL
1442 && DECL_ORIGINAL_TYPE (decl)
1443 && !TYPE_SIZES_GIMPLIFIED (DECL_ORIGINAL_TYPE (decl)))
1444 gimplify_type_sizes (DECL_ORIGINAL_TYPE (decl), seq_p);
1446 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1448 tree init = DECL_INITIAL (decl);
1450 if (TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
1451 || (!TREE_STATIC (decl)
1452 && flag_stack_check == GENERIC_STACK_CHECK
1453 && compare_tree_int (DECL_SIZE_UNIT (decl),
1454 STACK_CHECK_MAX_VAR_SIZE) > 0))
1455 gimplify_vla_decl (decl, seq_p);
1457 /* Some front ends do not explicitly declare all anonymous
1458 artificial variables. We compensate here by declaring the
1459 variables, though it would be better if the front ends would
1460 explicitly declare them. */
1461 if (!DECL_SEEN_IN_BIND_EXPR_P (decl)
1462 && DECL_ARTIFICIAL (decl) && DECL_NAME (decl) == NULL_TREE)
1463 gimple_add_tmp_var (decl);
1465 if (init && init != error_mark_node)
1467 if (!TREE_STATIC (decl))
1469 DECL_INITIAL (decl) = NULL_TREE;
1470 init = build2 (INIT_EXPR, void_type_node, decl, init);
1471 gimplify_and_add (init, seq_p);
1472 ggc_free (init);
1474 else
1475 /* We must still examine initializers for static variables
1476 as they may contain a label address. */
1477 walk_tree (&init, force_labels_r, NULL, NULL);
1481 return GS_ALL_DONE;
1484 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1485 and replacing the LOOP_EXPR with goto, but if the loop contains an
1486 EXIT_EXPR, we need to append a label for it to jump to. */
1488 static enum gimplify_status
1489 gimplify_loop_expr (tree *expr_p, gimple_seq *pre_p)
1491 tree saved_label = gimplify_ctxp->exit_label;
1492 tree start_label = create_artificial_label (UNKNOWN_LOCATION);
1494 gimplify_seq_add_stmt (pre_p, gimple_build_label (start_label));
1496 gimplify_ctxp->exit_label = NULL_TREE;
1498 gimplify_and_add (LOOP_EXPR_BODY (*expr_p), pre_p);
1500 gimplify_seq_add_stmt (pre_p, gimple_build_goto (start_label));
1502 if (gimplify_ctxp->exit_label)
1503 gimplify_seq_add_stmt (pre_p,
1504 gimple_build_label (gimplify_ctxp->exit_label));
1506 gimplify_ctxp->exit_label = saved_label;
1508 *expr_p = NULL;
1509 return GS_ALL_DONE;
1512 /* Gimplify a statement list onto a sequence. These may be created either
1513 by an enlightened front-end, or by shortcut_cond_expr. */
1515 static enum gimplify_status
1516 gimplify_statement_list (tree *expr_p, gimple_seq *pre_p)
1518 tree temp = voidify_wrapper_expr (*expr_p, NULL);
1520 tree_stmt_iterator i = tsi_start (*expr_p);
1522 while (!tsi_end_p (i))
1524 gimplify_stmt (tsi_stmt_ptr (i), pre_p);
1525 tsi_delink (&i);
1528 if (temp)
1530 *expr_p = temp;
1531 return GS_OK;
1534 return GS_ALL_DONE;
1537 /* Compare two case labels. Because the front end should already have
1538 made sure that case ranges do not overlap, it is enough to only compare
1539 the CASE_LOW values of each case label. */
1541 static int
1542 compare_case_labels (const void *p1, const void *p2)
1544 const_tree const case1 = *(const_tree const*)p1;
1545 const_tree const case2 = *(const_tree const*)p2;
1547 /* The 'default' case label always goes first. */
1548 if (!CASE_LOW (case1))
1549 return -1;
1550 else if (!CASE_LOW (case2))
1551 return 1;
1552 else
1553 return tree_int_cst_compare (CASE_LOW (case1), CASE_LOW (case2));
1556 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1558 void
1559 sort_case_labels (vec<tree> label_vec)
1561 label_vec.qsort (compare_case_labels);
1564 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
1566 LABELS is a vector that contains all case labels to look at.
1568 INDEX_TYPE is the type of the switch index expression. Case labels
1569 in LABELS are discarded if their values are not in the value range
1570 covered by INDEX_TYPE. The remaining case label values are folded
1571 to INDEX_TYPE.
1573 If a default case exists in LABELS, it is removed from LABELS and
1574 returned in DEFAULT_CASEP. If no default case exists, but the
1575 case labels already cover the whole range of INDEX_TYPE, a default
1576 case is returned pointing to one of the existing case labels.
1577 Otherwise DEFAULT_CASEP is set to NULL_TREE.
1579 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
1580 apply and no action is taken regardless of whether a default case is
1581 found or not. */
1583 void
1584 preprocess_case_label_vec_for_gimple (vec<tree> labels,
1585 tree index_type,
1586 tree *default_casep)
1588 tree min_value, max_value;
1589 tree default_case = NULL_TREE;
1590 size_t i, len;
1592 i = 0;
1593 min_value = TYPE_MIN_VALUE (index_type);
1594 max_value = TYPE_MAX_VALUE (index_type);
1595 while (i < labels.length ())
1597 tree elt = labels[i];
1598 tree low = CASE_LOW (elt);
1599 tree high = CASE_HIGH (elt);
1600 bool remove_element = FALSE;
1602 if (low)
1604 gcc_checking_assert (TREE_CODE (low) == INTEGER_CST);
1605 gcc_checking_assert (!high || TREE_CODE (high) == INTEGER_CST);
1607 /* This is a non-default case label, i.e. it has a value.
1609 See if the case label is reachable within the range of
1610 the index type. Remove out-of-range case values. Turn
1611 case ranges into a canonical form (high > low strictly)
1612 and convert the case label values to the index type.
1614 NB: The type of gimple_switch_index() may be the promoted
1615 type, but the case labels retain the original type. */
1617 if (high)
1619 /* This is a case range. Discard empty ranges.
1620 If the bounds or the range are equal, turn this
1621 into a simple (one-value) case. */
1622 int cmp = tree_int_cst_compare (high, low);
1623 if (cmp < 0)
1624 remove_element = TRUE;
1625 else if (cmp == 0)
1626 high = NULL_TREE;
1629 if (! high)
1631 /* If the simple case value is unreachable, ignore it. */
1632 if ((TREE_CODE (min_value) == INTEGER_CST
1633 && tree_int_cst_compare (low, min_value) < 0)
1634 || (TREE_CODE (max_value) == INTEGER_CST
1635 && tree_int_cst_compare (low, max_value) > 0))
1636 remove_element = TRUE;
1637 else
1638 low = fold_convert (index_type, low);
1640 else
1642 /* If the entire case range is unreachable, ignore it. */
1643 if ((TREE_CODE (min_value) == INTEGER_CST
1644 && tree_int_cst_compare (high, min_value) < 0)
1645 || (TREE_CODE (max_value) == INTEGER_CST
1646 && tree_int_cst_compare (low, max_value) > 0))
1647 remove_element = TRUE;
1648 else
1650 /* If the lower bound is less than the index type's
1651 minimum value, truncate the range bounds. */
1652 if (TREE_CODE (min_value) == INTEGER_CST
1653 && tree_int_cst_compare (low, min_value) < 0)
1654 low = min_value;
1655 low = fold_convert (index_type, low);
1657 /* If the upper bound is greater than the index type's
1658 maximum value, truncate the range bounds. */
1659 if (TREE_CODE (max_value) == INTEGER_CST
1660 && tree_int_cst_compare (high, max_value) > 0)
1661 high = max_value;
1662 high = fold_convert (index_type, high);
1664 /* We may have folded a case range to a one-value case. */
1665 if (tree_int_cst_equal (low, high))
1666 high = NULL_TREE;
1670 CASE_LOW (elt) = low;
1671 CASE_HIGH (elt) = high;
1673 else
1675 gcc_assert (!default_case);
1676 default_case = elt;
1677 /* The default case must be passed separately to the
1678 gimple_build_switch routine. But if DEFAULT_CASEP
1679 is NULL, we do not remove the default case (it would
1680 be completely lost). */
1681 if (default_casep)
1682 remove_element = TRUE;
1685 if (remove_element)
1686 labels.ordered_remove (i);
1687 else
1688 i++;
1690 len = i;
1692 if (!labels.is_empty ())
1693 sort_case_labels (labels);
1695 if (default_casep && !default_case)
1697 /* If the switch has no default label, add one, so that we jump
1698 around the switch body. If the labels already cover the whole
1699 range of the switch index_type, add the default label pointing
1700 to one of the existing labels. */
1701 if (len
1702 && TYPE_MIN_VALUE (index_type)
1703 && TYPE_MAX_VALUE (index_type)
1704 && tree_int_cst_equal (CASE_LOW (labels[0]),
1705 TYPE_MIN_VALUE (index_type)))
1707 tree low, high = CASE_HIGH (labels[len - 1]);
1708 if (!high)
1709 high = CASE_LOW (labels[len - 1]);
1710 if (tree_int_cst_equal (high, TYPE_MAX_VALUE (index_type)))
1712 for (i = 1; i < len; i++)
1714 high = CASE_LOW (labels[i]);
1715 low = CASE_HIGH (labels[i - 1]);
1716 if (!low)
1717 low = CASE_LOW (labels[i - 1]);
1718 if ((TREE_INT_CST_LOW (low) + 1
1719 != TREE_INT_CST_LOW (high))
1720 || (TREE_INT_CST_HIGH (low)
1721 + (TREE_INT_CST_LOW (high) == 0)
1722 != TREE_INT_CST_HIGH (high)))
1723 break;
1725 if (i == len)
1727 tree label = CASE_LABEL (labels[0]);
1728 default_case = build_case_label (NULL_TREE, NULL_TREE,
1729 label);
1735 if (default_casep)
1736 *default_casep = default_case;
1739 /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
1740 branch to. */
1742 static enum gimplify_status
1743 gimplify_switch_expr (tree *expr_p, gimple_seq *pre_p)
1745 tree switch_expr = *expr_p;
1746 gimple_seq switch_body_seq = NULL;
1747 enum gimplify_status ret;
1748 tree index_type = TREE_TYPE (switch_expr);
1749 if (index_type == NULL_TREE)
1750 index_type = TREE_TYPE (SWITCH_COND (switch_expr));
1752 ret = gimplify_expr (&SWITCH_COND (switch_expr), pre_p, NULL, is_gimple_val,
1753 fb_rvalue);
1754 if (ret == GS_ERROR || ret == GS_UNHANDLED)
1755 return ret;
1757 if (SWITCH_BODY (switch_expr))
1759 vec<tree> labels;
1760 vec<tree> saved_labels;
1761 tree default_case = NULL_TREE;
1762 gimple gimple_switch;
1764 /* If someone can be bothered to fill in the labels, they can
1765 be bothered to null out the body too. */
1766 gcc_assert (!SWITCH_LABELS (switch_expr));
1768 /* Save old labels, get new ones from body, then restore the old
1769 labels. Save all the things from the switch body to append after. */
1770 saved_labels = gimplify_ctxp->case_labels;
1771 gimplify_ctxp->case_labels.create (8);
1773 gimplify_stmt (&SWITCH_BODY (switch_expr), &switch_body_seq);
1774 labels = gimplify_ctxp->case_labels;
1775 gimplify_ctxp->case_labels = saved_labels;
1777 preprocess_case_label_vec_for_gimple (labels, index_type,
1778 &default_case);
1780 if (!default_case)
1782 gimple new_default;
1784 default_case
1785 = build_case_label (NULL_TREE, NULL_TREE,
1786 create_artificial_label (UNKNOWN_LOCATION));
1787 new_default = gimple_build_label (CASE_LABEL (default_case));
1788 gimplify_seq_add_stmt (&switch_body_seq, new_default);
1791 gimple_switch = gimple_build_switch (SWITCH_COND (switch_expr),
1792 default_case, labels);
1793 gimplify_seq_add_stmt (pre_p, gimple_switch);
1794 gimplify_seq_add_seq (pre_p, switch_body_seq);
1795 labels.release ();
1797 else
1798 gcc_assert (SWITCH_LABELS (switch_expr));
1800 return GS_ALL_DONE;
1803 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1805 static enum gimplify_status
1806 gimplify_case_label_expr (tree *expr_p, gimple_seq *pre_p)
1808 struct gimplify_ctx *ctxp;
1809 gimple gimple_label;
1811 /* Invalid OpenMP programs can play Duff's Device type games with
1812 #pragma omp parallel. At least in the C front end, we don't
1813 detect such invalid branches until after gimplification. */
1814 for (ctxp = gimplify_ctxp; ; ctxp = ctxp->prev_context)
1815 if (ctxp->case_labels.exists ())
1816 break;
1818 gimple_label = gimple_build_label (CASE_LABEL (*expr_p));
1819 ctxp->case_labels.safe_push (*expr_p);
1820 gimplify_seq_add_stmt (pre_p, gimple_label);
1822 return GS_ALL_DONE;
1825 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1826 if necessary. */
1828 tree
1829 build_and_jump (tree *label_p)
1831 if (label_p == NULL)
1832 /* If there's nowhere to jump, just fall through. */
1833 return NULL_TREE;
1835 if (*label_p == NULL_TREE)
1837 tree label = create_artificial_label (UNKNOWN_LOCATION);
1838 *label_p = label;
1841 return build1 (GOTO_EXPR, void_type_node, *label_p);
1844 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1845 This also involves building a label to jump to and communicating it to
1846 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1848 static enum gimplify_status
1849 gimplify_exit_expr (tree *expr_p)
1851 tree cond = TREE_OPERAND (*expr_p, 0);
1852 tree expr;
1854 expr = build_and_jump (&gimplify_ctxp->exit_label);
1855 expr = build3 (COND_EXPR, void_type_node, cond, expr, NULL_TREE);
1856 *expr_p = expr;
1858 return GS_OK;
1861 /* A helper function to be called via walk_tree. Mark all labels under *TP
1862 as being forced. To be called for DECL_INITIAL of static variables. */
1864 tree
1865 force_labels_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
1867 if (TYPE_P (*tp))
1868 *walk_subtrees = 0;
1869 if (TREE_CODE (*tp) == LABEL_DECL)
1870 FORCED_LABEL (*tp) = 1;
1872 return NULL_TREE;
1875 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1876 different from its canonical type, wrap the whole thing inside a
1877 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1878 type.
1880 The canonical type of a COMPONENT_REF is the type of the field being
1881 referenced--unless the field is a bit-field which can be read directly
1882 in a smaller mode, in which case the canonical type is the
1883 sign-appropriate type corresponding to that mode. */
1885 static void
1886 canonicalize_component_ref (tree *expr_p)
1888 tree expr = *expr_p;
1889 tree type;
1891 gcc_assert (TREE_CODE (expr) == COMPONENT_REF);
1893 if (INTEGRAL_TYPE_P (TREE_TYPE (expr)))
1894 type = TREE_TYPE (get_unwidened (expr, NULL_TREE));
1895 else
1896 type = TREE_TYPE (TREE_OPERAND (expr, 1));
1898 /* One could argue that all the stuff below is not necessary for
1899 the non-bitfield case and declare it a FE error if type
1900 adjustment would be needed. */
1901 if (TREE_TYPE (expr) != type)
1903 #ifdef ENABLE_TYPES_CHECKING
1904 tree old_type = TREE_TYPE (expr);
1905 #endif
1906 int type_quals;
1908 /* We need to preserve qualifiers and propagate them from
1909 operand 0. */
1910 type_quals = TYPE_QUALS (type)
1911 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr, 0)));
1912 if (TYPE_QUALS (type) != type_quals)
1913 type = build_qualified_type (TYPE_MAIN_VARIANT (type), type_quals);
1915 /* Set the type of the COMPONENT_REF to the underlying type. */
1916 TREE_TYPE (expr) = type;
1918 #ifdef ENABLE_TYPES_CHECKING
1919 /* It is now a FE error, if the conversion from the canonical
1920 type to the original expression type is not useless. */
1921 gcc_assert (useless_type_conversion_p (old_type, type));
1922 #endif
1926 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1927 to foo, embed that change in the ADDR_EXPR by converting
1928 T array[U];
1929 (T *)&array
1931 &array[L]
1932 where L is the lower bound. For simplicity, only do this for constant
1933 lower bound.
1934 The constraint is that the type of &array[L] is trivially convertible
1935 to T *. */
1937 static void
1938 canonicalize_addr_expr (tree *expr_p)
1940 tree expr = *expr_p;
1941 tree addr_expr = TREE_OPERAND (expr, 0);
1942 tree datype, ddatype, pddatype;
1944 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1945 if (!POINTER_TYPE_P (TREE_TYPE (expr))
1946 || TREE_CODE (addr_expr) != ADDR_EXPR)
1947 return;
1949 /* The addr_expr type should be a pointer to an array. */
1950 datype = TREE_TYPE (TREE_TYPE (addr_expr));
1951 if (TREE_CODE (datype) != ARRAY_TYPE)
1952 return;
1954 /* The pointer to element type shall be trivially convertible to
1955 the expression pointer type. */
1956 ddatype = TREE_TYPE (datype);
1957 pddatype = build_pointer_type (ddatype);
1958 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr)),
1959 pddatype))
1960 return;
1962 /* The lower bound and element sizes must be constant. */
1963 if (!TYPE_SIZE_UNIT (ddatype)
1964 || TREE_CODE (TYPE_SIZE_UNIT (ddatype)) != INTEGER_CST
1965 || !TYPE_DOMAIN (datype) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype))
1966 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype))) != INTEGER_CST)
1967 return;
1969 /* All checks succeeded. Build a new node to merge the cast. */
1970 *expr_p = build4 (ARRAY_REF, ddatype, TREE_OPERAND (addr_expr, 0),
1971 TYPE_MIN_VALUE (TYPE_DOMAIN (datype)),
1972 NULL_TREE, NULL_TREE);
1973 *expr_p = build1 (ADDR_EXPR, pddatype, *expr_p);
1975 /* We can have stripped a required restrict qualifier above. */
1976 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
1977 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
1980 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1981 underneath as appropriate. */
1983 static enum gimplify_status
1984 gimplify_conversion (tree *expr_p)
1986 location_t loc = EXPR_LOCATION (*expr_p);
1987 gcc_assert (CONVERT_EXPR_P (*expr_p));
1989 /* Then strip away all but the outermost conversion. */
1990 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p, 0));
1992 /* And remove the outermost conversion if it's useless. */
1993 if (tree_ssa_useless_type_conversion (*expr_p))
1994 *expr_p = TREE_OPERAND (*expr_p, 0);
1996 /* If we still have a conversion at the toplevel,
1997 then canonicalize some constructs. */
1998 if (CONVERT_EXPR_P (*expr_p))
2000 tree sub = TREE_OPERAND (*expr_p, 0);
2002 /* If a NOP conversion is changing the type of a COMPONENT_REF
2003 expression, then canonicalize its type now in order to expose more
2004 redundant conversions. */
2005 if (TREE_CODE (sub) == COMPONENT_REF)
2006 canonicalize_component_ref (&TREE_OPERAND (*expr_p, 0));
2008 /* If a NOP conversion is changing a pointer to array of foo
2009 to a pointer to foo, embed that change in the ADDR_EXPR. */
2010 else if (TREE_CODE (sub) == ADDR_EXPR)
2011 canonicalize_addr_expr (expr_p);
2014 /* If we have a conversion to a non-register type force the
2015 use of a VIEW_CONVERT_EXPR instead. */
2016 if (CONVERT_EXPR_P (*expr_p) && !is_gimple_reg_type (TREE_TYPE (*expr_p)))
2017 *expr_p = fold_build1_loc (loc, VIEW_CONVERT_EXPR, TREE_TYPE (*expr_p),
2018 TREE_OPERAND (*expr_p, 0));
2020 return GS_OK;
2023 /* Nonlocal VLAs seen in the current function. */
2024 static struct pointer_set_t *nonlocal_vlas;
2026 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
2027 DECL_VALUE_EXPR, and it's worth re-examining things. */
2029 static enum gimplify_status
2030 gimplify_var_or_parm_decl (tree *expr_p)
2032 tree decl = *expr_p;
2034 /* ??? If this is a local variable, and it has not been seen in any
2035 outer BIND_EXPR, then it's probably the result of a duplicate
2036 declaration, for which we've already issued an error. It would
2037 be really nice if the front end wouldn't leak these at all.
2038 Currently the only known culprit is C++ destructors, as seen
2039 in g++.old-deja/g++.jason/binding.C. */
2040 if (TREE_CODE (decl) == VAR_DECL
2041 && !DECL_SEEN_IN_BIND_EXPR_P (decl)
2042 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
2043 && decl_function_context (decl) == current_function_decl)
2045 gcc_assert (seen_error ());
2046 return GS_ERROR;
2049 /* When within an OpenMP context, notice uses of variables. */
2050 if (gimplify_omp_ctxp && omp_notice_variable (gimplify_omp_ctxp, decl, true))
2051 return GS_ALL_DONE;
2053 /* If the decl is an alias for another expression, substitute it now. */
2054 if (DECL_HAS_VALUE_EXPR_P (decl))
2056 tree value_expr = DECL_VALUE_EXPR (decl);
2058 /* For referenced nonlocal VLAs add a decl for debugging purposes
2059 to the current function. */
2060 if (TREE_CODE (decl) == VAR_DECL
2061 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST
2062 && nonlocal_vlas != NULL
2063 && TREE_CODE (value_expr) == INDIRECT_REF
2064 && TREE_CODE (TREE_OPERAND (value_expr, 0)) == VAR_DECL
2065 && decl_function_context (decl) != current_function_decl)
2067 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
2068 while (ctx && ctx->region_type == ORT_WORKSHARE)
2069 ctx = ctx->outer_context;
2070 if (!ctx && !pointer_set_insert (nonlocal_vlas, decl))
2072 tree copy = copy_node (decl), block;
2074 lang_hooks.dup_lang_specific_decl (copy);
2075 SET_DECL_RTL (copy, 0);
2076 TREE_USED (copy) = 1;
2077 block = DECL_INITIAL (current_function_decl);
2078 DECL_CHAIN (copy) = BLOCK_VARS (block);
2079 BLOCK_VARS (block) = copy;
2080 SET_DECL_VALUE_EXPR (copy, unshare_expr (value_expr));
2081 DECL_HAS_VALUE_EXPR_P (copy) = 1;
2085 *expr_p = unshare_expr (value_expr);
2086 return GS_OK;
2089 return GS_ALL_DONE;
2092 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
2093 node *EXPR_P.
2095 compound_lval
2096 : min_lval '[' val ']'
2097 | min_lval '.' ID
2098 | compound_lval '[' val ']'
2099 | compound_lval '.' ID
2101 This is not part of the original SIMPLE definition, which separates
2102 array and member references, but it seems reasonable to handle them
2103 together. Also, this way we don't run into problems with union
2104 aliasing; gcc requires that for accesses through a union to alias, the
2105 union reference must be explicit, which was not always the case when we
2106 were splitting up array and member refs.
2108 PRE_P points to the sequence where side effects that must happen before
2109 *EXPR_P should be stored.
2111 POST_P points to the sequence where side effects that must happen after
2112 *EXPR_P should be stored. */
2114 static enum gimplify_status
2115 gimplify_compound_lval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2116 fallback_t fallback)
2118 tree *p;
2119 vec<tree> expr_stack;
2120 enum gimplify_status ret = GS_ALL_DONE, tret;
2121 int i;
2122 location_t loc = EXPR_LOCATION (*expr_p);
2123 tree expr = *expr_p;
2125 /* Create a stack of the subexpressions so later we can walk them in
2126 order from inner to outer. */
2127 expr_stack.create (10);
2129 /* We can handle anything that get_inner_reference can deal with. */
2130 for (p = expr_p; ; p = &TREE_OPERAND (*p, 0))
2132 restart:
2133 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2134 if (TREE_CODE (*p) == INDIRECT_REF)
2135 *p = fold_indirect_ref_loc (loc, *p);
2137 if (handled_component_p (*p))
2139 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2140 additional COMPONENT_REFs. */
2141 else if ((TREE_CODE (*p) == VAR_DECL || TREE_CODE (*p) == PARM_DECL)
2142 && gimplify_var_or_parm_decl (p) == GS_OK)
2143 goto restart;
2144 else
2145 break;
2147 expr_stack.safe_push (*p);
2150 gcc_assert (expr_stack.length ());
2152 /* Now EXPR_STACK is a stack of pointers to all the refs we've
2153 walked through and P points to the innermost expression.
2155 Java requires that we elaborated nodes in source order. That
2156 means we must gimplify the inner expression followed by each of
2157 the indices, in order. But we can't gimplify the inner
2158 expression until we deal with any variable bounds, sizes, or
2159 positions in order to deal with PLACEHOLDER_EXPRs.
2161 So we do this in three steps. First we deal with the annotations
2162 for any variables in the components, then we gimplify the base,
2163 then we gimplify any indices, from left to right. */
2164 for (i = expr_stack.length () - 1; i >= 0; i--)
2166 tree t = expr_stack[i];
2168 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2170 /* Gimplify the low bound and element type size and put them into
2171 the ARRAY_REF. If these values are set, they have already been
2172 gimplified. */
2173 if (TREE_OPERAND (t, 2) == NULL_TREE)
2175 tree low = unshare_expr (array_ref_low_bound (t));
2176 if (!is_gimple_min_invariant (low))
2178 TREE_OPERAND (t, 2) = low;
2179 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2180 post_p, is_gimple_reg,
2181 fb_rvalue);
2182 ret = MIN (ret, tret);
2185 else
2187 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2188 is_gimple_reg, fb_rvalue);
2189 ret = MIN (ret, tret);
2192 if (TREE_OPERAND (t, 3) == NULL_TREE)
2194 tree elmt_type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (t, 0)));
2195 tree elmt_size = unshare_expr (array_ref_element_size (t));
2196 tree factor = size_int (TYPE_ALIGN_UNIT (elmt_type));
2198 /* Divide the element size by the alignment of the element
2199 type (above). */
2200 elmt_size
2201 = size_binop_loc (loc, EXACT_DIV_EXPR, elmt_size, factor);
2203 if (!is_gimple_min_invariant (elmt_size))
2205 TREE_OPERAND (t, 3) = elmt_size;
2206 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p,
2207 post_p, is_gimple_reg,
2208 fb_rvalue);
2209 ret = MIN (ret, tret);
2212 else
2214 tret = gimplify_expr (&TREE_OPERAND (t, 3), pre_p, post_p,
2215 is_gimple_reg, fb_rvalue);
2216 ret = MIN (ret, tret);
2219 else if (TREE_CODE (t) == COMPONENT_REF)
2221 /* Set the field offset into T and gimplify it. */
2222 if (TREE_OPERAND (t, 2) == NULL_TREE)
2224 tree offset = unshare_expr (component_ref_field_offset (t));
2225 tree field = TREE_OPERAND (t, 1);
2226 tree factor
2227 = size_int (DECL_OFFSET_ALIGN (field) / BITS_PER_UNIT);
2229 /* Divide the offset by its alignment. */
2230 offset = size_binop_loc (loc, EXACT_DIV_EXPR, offset, factor);
2232 if (!is_gimple_min_invariant (offset))
2234 TREE_OPERAND (t, 2) = offset;
2235 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p,
2236 post_p, is_gimple_reg,
2237 fb_rvalue);
2238 ret = MIN (ret, tret);
2241 else
2243 tret = gimplify_expr (&TREE_OPERAND (t, 2), pre_p, post_p,
2244 is_gimple_reg, fb_rvalue);
2245 ret = MIN (ret, tret);
2250 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2251 so as to match the min_lval predicate. Failure to do so may result
2252 in the creation of large aggregate temporaries. */
2253 tret = gimplify_expr (p, pre_p, post_p, is_gimple_min_lval,
2254 fallback | fb_lvalue);
2255 ret = MIN (ret, tret);
2257 /* And finally, the indices and operands of ARRAY_REF. During this
2258 loop we also remove any useless conversions. */
2259 for (; expr_stack.length () > 0; )
2261 tree t = expr_stack.pop ();
2263 if (TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
2265 /* Gimplify the dimension. */
2266 if (!is_gimple_min_invariant (TREE_OPERAND (t, 1)))
2268 tret = gimplify_expr (&TREE_OPERAND (t, 1), pre_p, post_p,
2269 is_gimple_val, fb_rvalue);
2270 ret = MIN (ret, tret);
2274 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t, 0));
2276 /* The innermost expression P may have originally had
2277 TREE_SIDE_EFFECTS set which would have caused all the outer
2278 expressions in *EXPR_P leading to P to also have had
2279 TREE_SIDE_EFFECTS set. */
2280 recalculate_side_effects (t);
2283 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2284 if ((fallback & fb_rvalue) && TREE_CODE (*expr_p) == COMPONENT_REF)
2286 canonicalize_component_ref (expr_p);
2289 expr_stack.release ();
2291 gcc_assert (*expr_p == expr || ret != GS_ALL_DONE);
2293 return ret;
2296 /* Gimplify the self modifying expression pointed to by EXPR_P
2297 (++, --, +=, -=).
2299 PRE_P points to the list where side effects that must happen before
2300 *EXPR_P should be stored.
2302 POST_P points to the list where side effects that must happen after
2303 *EXPR_P should be stored.
2305 WANT_VALUE is nonzero iff we want to use the value of this expression
2306 in another expression.
2308 ARITH_TYPE is the type the computation should be performed in. */
2310 enum gimplify_status
2311 gimplify_self_mod_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
2312 bool want_value, tree arith_type)
2314 enum tree_code code;
2315 tree lhs, lvalue, rhs, t1;
2316 gimple_seq post = NULL, *orig_post_p = post_p;
2317 bool postfix;
2318 enum tree_code arith_code;
2319 enum gimplify_status ret;
2320 location_t loc = EXPR_LOCATION (*expr_p);
2322 code = TREE_CODE (*expr_p);
2324 gcc_assert (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR
2325 || code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR);
2327 /* Prefix or postfix? */
2328 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
2329 /* Faster to treat as prefix if result is not used. */
2330 postfix = want_value;
2331 else
2332 postfix = false;
2334 /* For postfix, make sure the inner expression's post side effects
2335 are executed after side effects from this expression. */
2336 if (postfix)
2337 post_p = &post;
2339 /* Add or subtract? */
2340 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2341 arith_code = PLUS_EXPR;
2342 else
2343 arith_code = MINUS_EXPR;
2345 /* Gimplify the LHS into a GIMPLE lvalue. */
2346 lvalue = TREE_OPERAND (*expr_p, 0);
2347 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
2348 if (ret == GS_ERROR)
2349 return ret;
2351 /* Extract the operands to the arithmetic operation. */
2352 lhs = lvalue;
2353 rhs = TREE_OPERAND (*expr_p, 1);
2355 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2356 that as the result value and in the postqueue operation. */
2357 if (postfix)
2359 ret = gimplify_expr (&lhs, pre_p, post_p, is_gimple_val, fb_rvalue);
2360 if (ret == GS_ERROR)
2361 return ret;
2363 lhs = get_initialized_tmp_var (lhs, pre_p, NULL);
2366 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2367 if (POINTER_TYPE_P (TREE_TYPE (lhs)))
2369 rhs = convert_to_ptrofftype_loc (loc, rhs);
2370 if (arith_code == MINUS_EXPR)
2371 rhs = fold_build1_loc (loc, NEGATE_EXPR, TREE_TYPE (rhs), rhs);
2372 t1 = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (*expr_p), lhs, rhs);
2374 else
2375 t1 = fold_convert (TREE_TYPE (*expr_p),
2376 fold_build2 (arith_code, arith_type,
2377 fold_convert (arith_type, lhs),
2378 fold_convert (arith_type, rhs)));
2380 if (postfix)
2382 gimplify_assign (lvalue, t1, pre_p);
2383 gimplify_seq_add_seq (orig_post_p, post);
2384 *expr_p = lhs;
2385 return GS_ALL_DONE;
2387 else
2389 *expr_p = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
2390 return GS_OK;
2394 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2396 static void
2397 maybe_with_size_expr (tree *expr_p)
2399 tree expr = *expr_p;
2400 tree type = TREE_TYPE (expr);
2401 tree size;
2403 /* If we've already wrapped this or the type is error_mark_node, we can't do
2404 anything. */
2405 if (TREE_CODE (expr) == WITH_SIZE_EXPR
2406 || type == error_mark_node)
2407 return;
2409 /* If the size isn't known or is a constant, we have nothing to do. */
2410 size = TYPE_SIZE_UNIT (type);
2411 if (!size || TREE_CODE (size) == INTEGER_CST)
2412 return;
2414 /* Otherwise, make a WITH_SIZE_EXPR. */
2415 size = unshare_expr (size);
2416 size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (size, expr);
2417 *expr_p = build2 (WITH_SIZE_EXPR, type, expr, size);
2420 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2421 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2422 the CALL_EXPR. */
2424 static enum gimplify_status
2425 gimplify_arg (tree *arg_p, gimple_seq *pre_p, location_t call_location)
2427 bool (*test) (tree);
2428 fallback_t fb;
2430 /* In general, we allow lvalues for function arguments to avoid
2431 extra overhead of copying large aggregates out of even larger
2432 aggregates into temporaries only to copy the temporaries to
2433 the argument list. Make optimizers happy by pulling out to
2434 temporaries those types that fit in registers. */
2435 if (is_gimple_reg_type (TREE_TYPE (*arg_p)))
2436 test = is_gimple_val, fb = fb_rvalue;
2437 else
2439 test = is_gimple_lvalue, fb = fb_either;
2440 /* Also strip a TARGET_EXPR that would force an extra copy. */
2441 if (TREE_CODE (*arg_p) == TARGET_EXPR)
2443 tree init = TARGET_EXPR_INITIAL (*arg_p);
2444 if (init
2445 && !VOID_TYPE_P (TREE_TYPE (init)))
2446 *arg_p = init;
2450 /* If this is a variable sized type, we must remember the size. */
2451 maybe_with_size_expr (arg_p);
2453 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2454 /* Make sure arguments have the same location as the function call
2455 itself. */
2456 protected_set_expr_location (*arg_p, call_location);
2458 /* There is a sequence point before a function call. Side effects in
2459 the argument list must occur before the actual call. So, when
2460 gimplifying arguments, force gimplify_expr to use an internal
2461 post queue which is then appended to the end of PRE_P. */
2462 return gimplify_expr (arg_p, pre_p, NULL, test, fb);
2465 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2466 WANT_VALUE is true if the result of the call is desired. */
2468 static enum gimplify_status
2469 gimplify_call_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
2471 tree fndecl, parms, p, fnptrtype;
2472 enum gimplify_status ret;
2473 int i, nargs;
2474 gimple call;
2475 bool builtin_va_start_p = FALSE;
2476 location_t loc = EXPR_LOCATION (*expr_p);
2478 gcc_assert (TREE_CODE (*expr_p) == CALL_EXPR);
2480 /* For reliable diagnostics during inlining, it is necessary that
2481 every call_expr be annotated with file and line. */
2482 if (! EXPR_HAS_LOCATION (*expr_p))
2483 SET_EXPR_LOCATION (*expr_p, input_location);
2485 /* This may be a call to a builtin function.
2487 Builtin function calls may be transformed into different
2488 (and more efficient) builtin function calls under certain
2489 circumstances. Unfortunately, gimplification can muck things
2490 up enough that the builtin expanders are not aware that certain
2491 transformations are still valid.
2493 So we attempt transformation/gimplification of the call before
2494 we gimplify the CALL_EXPR. At this time we do not manage to
2495 transform all calls in the same manner as the expanders do, but
2496 we do transform most of them. */
2497 fndecl = get_callee_fndecl (*expr_p);
2498 if (fndecl
2499 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
2500 switch (DECL_FUNCTION_CODE (fndecl))
2502 case BUILT_IN_VA_START:
2504 builtin_va_start_p = TRUE;
2505 if (call_expr_nargs (*expr_p) < 2)
2507 error ("too few arguments to function %<va_start%>");
2508 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2509 return GS_OK;
2512 if (fold_builtin_next_arg (*expr_p, true))
2514 *expr_p = build_empty_stmt (EXPR_LOCATION (*expr_p));
2515 return GS_OK;
2517 break;
2519 case BUILT_IN_LINE:
2521 expanded_location loc = expand_location (EXPR_LOCATION (*expr_p));
2522 *expr_p = build_int_cst (TREE_TYPE (*expr_p), loc.line);
2523 return GS_OK;
2525 case BUILT_IN_FILE:
2527 expanded_location loc = expand_location (EXPR_LOCATION (*expr_p));
2528 *expr_p = build_string_literal (strlen (loc.file) + 1, loc.file);
2529 return GS_OK;
2531 case BUILT_IN_FUNCTION:
2533 const char *function;
2534 function = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
2535 *expr_p = build_string_literal (strlen (function) + 1, function);
2536 return GS_OK;
2538 default:
2541 if (fndecl && DECL_BUILT_IN (fndecl))
2543 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2544 if (new_tree && new_tree != *expr_p)
2546 /* There was a transformation of this call which computes the
2547 same value, but in a more efficient way. Return and try
2548 again. */
2549 *expr_p = new_tree;
2550 return GS_OK;
2554 /* Remember the original function pointer type. */
2555 fnptrtype = TREE_TYPE (CALL_EXPR_FN (*expr_p));
2557 /* There is a sequence point before the call, so any side effects in
2558 the calling expression must occur before the actual call. Force
2559 gimplify_expr to use an internal post queue. */
2560 ret = gimplify_expr (&CALL_EXPR_FN (*expr_p), pre_p, NULL,
2561 is_gimple_call_addr, fb_rvalue);
2563 nargs = call_expr_nargs (*expr_p);
2565 /* Get argument types for verification. */
2566 fndecl = get_callee_fndecl (*expr_p);
2567 parms = NULL_TREE;
2568 if (fndecl)
2569 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
2570 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p))))
2571 parms = TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p))));
2573 if (fndecl && DECL_ARGUMENTS (fndecl))
2574 p = DECL_ARGUMENTS (fndecl);
2575 else if (parms)
2576 p = parms;
2577 else
2578 p = NULL_TREE;
2579 for (i = 0; i < nargs && p; i++, p = TREE_CHAIN (p))
2582 /* If the last argument is __builtin_va_arg_pack () and it is not
2583 passed as a named argument, decrease the number of CALL_EXPR
2584 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2585 if (!p
2586 && i < nargs
2587 && TREE_CODE (CALL_EXPR_ARG (*expr_p, nargs - 1)) == CALL_EXPR)
2589 tree last_arg = CALL_EXPR_ARG (*expr_p, nargs - 1);
2590 tree last_arg_fndecl = get_callee_fndecl (last_arg);
2592 if (last_arg_fndecl
2593 && TREE_CODE (last_arg_fndecl) == FUNCTION_DECL
2594 && DECL_BUILT_IN_CLASS (last_arg_fndecl) == BUILT_IN_NORMAL
2595 && DECL_FUNCTION_CODE (last_arg_fndecl) == BUILT_IN_VA_ARG_PACK)
2597 tree call = *expr_p;
2599 --nargs;
2600 *expr_p = build_call_array_loc (loc, TREE_TYPE (call),
2601 CALL_EXPR_FN (call),
2602 nargs, CALL_EXPR_ARGP (call));
2604 /* Copy all CALL_EXPR flags, location and block, except
2605 CALL_EXPR_VA_ARG_PACK flag. */
2606 CALL_EXPR_STATIC_CHAIN (*expr_p) = CALL_EXPR_STATIC_CHAIN (call);
2607 CALL_EXPR_TAILCALL (*expr_p) = CALL_EXPR_TAILCALL (call);
2608 CALL_EXPR_RETURN_SLOT_OPT (*expr_p)
2609 = CALL_EXPR_RETURN_SLOT_OPT (call);
2610 CALL_FROM_THUNK_P (*expr_p) = CALL_FROM_THUNK_P (call);
2611 SET_EXPR_LOCATION (*expr_p, EXPR_LOCATION (call));
2613 /* Set CALL_EXPR_VA_ARG_PACK. */
2614 CALL_EXPR_VA_ARG_PACK (*expr_p) = 1;
2618 /* Finally, gimplify the function arguments. */
2619 if (nargs > 0)
2621 for (i = (PUSH_ARGS_REVERSED ? nargs - 1 : 0);
2622 PUSH_ARGS_REVERSED ? i >= 0 : i < nargs;
2623 PUSH_ARGS_REVERSED ? i-- : i++)
2625 enum gimplify_status t;
2627 /* Avoid gimplifying the second argument to va_start, which needs to
2628 be the plain PARM_DECL. */
2629 if ((i != 1) || !builtin_va_start_p)
2631 t = gimplify_arg (&CALL_EXPR_ARG (*expr_p, i), pre_p,
2632 EXPR_LOCATION (*expr_p));
2634 if (t == GS_ERROR)
2635 ret = GS_ERROR;
2640 /* Verify the function result. */
2641 if (want_value && fndecl
2642 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype))))
2644 error_at (loc, "using result of function returning %<void%>");
2645 ret = GS_ERROR;
2648 /* Try this again in case gimplification exposed something. */
2649 if (ret != GS_ERROR)
2651 tree new_tree = fold_call_expr (input_location, *expr_p, !want_value);
2653 if (new_tree && new_tree != *expr_p)
2655 /* There was a transformation of this call which computes the
2656 same value, but in a more efficient way. Return and try
2657 again. */
2658 *expr_p = new_tree;
2659 return GS_OK;
2662 else
2664 *expr_p = error_mark_node;
2665 return GS_ERROR;
2668 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2669 decl. This allows us to eliminate redundant or useless
2670 calls to "const" functions. */
2671 if (TREE_CODE (*expr_p) == CALL_EXPR)
2673 int flags = call_expr_flags (*expr_p);
2674 if (flags & (ECF_CONST | ECF_PURE)
2675 /* An infinite loop is considered a side effect. */
2676 && !(flags & (ECF_LOOPING_CONST_OR_PURE)))
2677 TREE_SIDE_EFFECTS (*expr_p) = 0;
2680 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2681 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2682 form and delegate the creation of a GIMPLE_CALL to
2683 gimplify_modify_expr. This is always possible because when
2684 WANT_VALUE is true, the caller wants the result of this call into
2685 a temporary, which means that we will emit an INIT_EXPR in
2686 internal_get_tmp_var which will then be handled by
2687 gimplify_modify_expr. */
2688 if (!want_value)
2690 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2691 have to do is replicate it as a GIMPLE_CALL tuple. */
2692 gimple_stmt_iterator gsi;
2693 call = gimple_build_call_from_tree (*expr_p);
2694 gimple_call_set_fntype (call, TREE_TYPE (fnptrtype));
2695 notice_special_calls (call);
2696 gimplify_seq_add_stmt (pre_p, call);
2697 gsi = gsi_last (*pre_p);
2698 fold_stmt (&gsi);
2699 *expr_p = NULL_TREE;
2701 else
2702 /* Remember the original function type. */
2703 CALL_EXPR_FN (*expr_p) = build1 (NOP_EXPR, fnptrtype,
2704 CALL_EXPR_FN (*expr_p));
2706 return ret;
2709 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2710 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2712 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2713 condition is true or false, respectively. If null, we should generate
2714 our own to skip over the evaluation of this specific expression.
2716 LOCUS is the source location of the COND_EXPR.
2718 This function is the tree equivalent of do_jump.
2720 shortcut_cond_r should only be called by shortcut_cond_expr. */
2722 static tree
2723 shortcut_cond_r (tree pred, tree *true_label_p, tree *false_label_p,
2724 location_t locus)
2726 tree local_label = NULL_TREE;
2727 tree t, expr = NULL;
2729 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2730 retain the shortcut semantics. Just insert the gotos here;
2731 shortcut_cond_expr will append the real blocks later. */
2732 if (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2734 location_t new_locus;
2736 /* Turn if (a && b) into
2738 if (a); else goto no;
2739 if (b) goto yes; else goto no;
2740 (no:) */
2742 if (false_label_p == NULL)
2743 false_label_p = &local_label;
2745 /* Keep the original source location on the first 'if'. */
2746 t = shortcut_cond_r (TREE_OPERAND (pred, 0), NULL, false_label_p, locus);
2747 append_to_statement_list (t, &expr);
2749 /* Set the source location of the && on the second 'if'. */
2750 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2751 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2752 new_locus);
2753 append_to_statement_list (t, &expr);
2755 else if (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2757 location_t new_locus;
2759 /* Turn if (a || b) into
2761 if (a) goto yes;
2762 if (b) goto yes; else goto no;
2763 (yes:) */
2765 if (true_label_p == NULL)
2766 true_label_p = &local_label;
2768 /* Keep the original source location on the first 'if'. */
2769 t = shortcut_cond_r (TREE_OPERAND (pred, 0), true_label_p, NULL, locus);
2770 append_to_statement_list (t, &expr);
2772 /* Set the source location of the || on the second 'if'. */
2773 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2774 t = shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p, false_label_p,
2775 new_locus);
2776 append_to_statement_list (t, &expr);
2778 else if (TREE_CODE (pred) == COND_EXPR
2779 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 1)))
2780 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred, 2))))
2782 location_t new_locus;
2784 /* As long as we're messing with gotos, turn if (a ? b : c) into
2785 if (a)
2786 if (b) goto yes; else goto no;
2787 else
2788 if (c) goto yes; else goto no;
2790 Don't do this if one of the arms has void type, which can happen
2791 in C++ when the arm is throw. */
2793 /* Keep the original source location on the first 'if'. Set the source
2794 location of the ? on the second 'if'. */
2795 new_locus = EXPR_HAS_LOCATION (pred) ? EXPR_LOCATION (pred) : locus;
2796 expr = build3 (COND_EXPR, void_type_node, TREE_OPERAND (pred, 0),
2797 shortcut_cond_r (TREE_OPERAND (pred, 1), true_label_p,
2798 false_label_p, locus),
2799 shortcut_cond_r (TREE_OPERAND (pred, 2), true_label_p,
2800 false_label_p, new_locus));
2802 else
2804 expr = build3 (COND_EXPR, void_type_node, pred,
2805 build_and_jump (true_label_p),
2806 build_and_jump (false_label_p));
2807 SET_EXPR_LOCATION (expr, locus);
2810 if (local_label)
2812 t = build1 (LABEL_EXPR, void_type_node, local_label);
2813 append_to_statement_list (t, &expr);
2816 return expr;
2819 /* Given a conditional expression EXPR with short-circuit boolean
2820 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2821 predicate apart into the equivalent sequence of conditionals. */
2823 static tree
2824 shortcut_cond_expr (tree expr)
2826 tree pred = TREE_OPERAND (expr, 0);
2827 tree then_ = TREE_OPERAND (expr, 1);
2828 tree else_ = TREE_OPERAND (expr, 2);
2829 tree true_label, false_label, end_label, t;
2830 tree *true_label_p;
2831 tree *false_label_p;
2832 bool emit_end, emit_false, jump_over_else;
2833 bool then_se = then_ && TREE_SIDE_EFFECTS (then_);
2834 bool else_se = else_ && TREE_SIDE_EFFECTS (else_);
2836 /* First do simple transformations. */
2837 if (!else_se)
2839 /* If there is no 'else', turn
2840 if (a && b) then c
2841 into
2842 if (a) if (b) then c. */
2843 while (TREE_CODE (pred) == TRUTH_ANDIF_EXPR)
2845 /* Keep the original source location on the first 'if'. */
2846 location_t locus = EXPR_LOC_OR_HERE (expr);
2847 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2848 /* Set the source location of the && on the second 'if'. */
2849 if (EXPR_HAS_LOCATION (pred))
2850 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2851 then_ = shortcut_cond_expr (expr);
2852 then_se = then_ && TREE_SIDE_EFFECTS (then_);
2853 pred = TREE_OPERAND (pred, 0);
2854 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE);
2855 SET_EXPR_LOCATION (expr, locus);
2859 if (!then_se)
2861 /* If there is no 'then', turn
2862 if (a || b); else d
2863 into
2864 if (a); else if (b); else d. */
2865 while (TREE_CODE (pred) == TRUTH_ORIF_EXPR)
2867 /* Keep the original source location on the first 'if'. */
2868 location_t locus = EXPR_LOC_OR_HERE (expr);
2869 TREE_OPERAND (expr, 0) = TREE_OPERAND (pred, 1);
2870 /* Set the source location of the || on the second 'if'. */
2871 if (EXPR_HAS_LOCATION (pred))
2872 SET_EXPR_LOCATION (expr, EXPR_LOCATION (pred));
2873 else_ = shortcut_cond_expr (expr);
2874 else_se = else_ && TREE_SIDE_EFFECTS (else_);
2875 pred = TREE_OPERAND (pred, 0);
2876 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_);
2877 SET_EXPR_LOCATION (expr, locus);
2881 /* If we're done, great. */
2882 if (TREE_CODE (pred) != TRUTH_ANDIF_EXPR
2883 && TREE_CODE (pred) != TRUTH_ORIF_EXPR)
2884 return expr;
2886 /* Otherwise we need to mess with gotos. Change
2887 if (a) c; else d;
2889 if (a); else goto no;
2890 c; goto end;
2891 no: d; end:
2892 and recursively gimplify the condition. */
2894 true_label = false_label = end_label = NULL_TREE;
2896 /* If our arms just jump somewhere, hijack those labels so we don't
2897 generate jumps to jumps. */
2899 if (then_
2900 && TREE_CODE (then_) == GOTO_EXPR
2901 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL)
2903 true_label = GOTO_DESTINATION (then_);
2904 then_ = NULL;
2905 then_se = false;
2908 if (else_
2909 && TREE_CODE (else_) == GOTO_EXPR
2910 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL)
2912 false_label = GOTO_DESTINATION (else_);
2913 else_ = NULL;
2914 else_se = false;
2917 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2918 if (true_label)
2919 true_label_p = &true_label;
2920 else
2921 true_label_p = NULL;
2923 /* The 'else' branch also needs a label if it contains interesting code. */
2924 if (false_label || else_se)
2925 false_label_p = &false_label;
2926 else
2927 false_label_p = NULL;
2929 /* If there was nothing else in our arms, just forward the label(s). */
2930 if (!then_se && !else_se)
2931 return shortcut_cond_r (pred, true_label_p, false_label_p,
2932 EXPR_LOC_OR_HERE (expr));
2934 /* If our last subexpression already has a terminal label, reuse it. */
2935 if (else_se)
2936 t = expr_last (else_);
2937 else if (then_se)
2938 t = expr_last (then_);
2939 else
2940 t = NULL;
2941 if (t && TREE_CODE (t) == LABEL_EXPR)
2942 end_label = LABEL_EXPR_LABEL (t);
2944 /* If we don't care about jumping to the 'else' branch, jump to the end
2945 if the condition is false. */
2946 if (!false_label_p)
2947 false_label_p = &end_label;
2949 /* We only want to emit these labels if we aren't hijacking them. */
2950 emit_end = (end_label == NULL_TREE);
2951 emit_false = (false_label == NULL_TREE);
2953 /* We only emit the jump over the else clause if we have to--if the
2954 then clause may fall through. Otherwise we can wind up with a
2955 useless jump and a useless label at the end of gimplified code,
2956 which will cause us to think that this conditional as a whole
2957 falls through even if it doesn't. If we then inline a function
2958 which ends with such a condition, that can cause us to issue an
2959 inappropriate warning about control reaching the end of a
2960 non-void function. */
2961 jump_over_else = block_may_fallthru (then_);
2963 pred = shortcut_cond_r (pred, true_label_p, false_label_p,
2964 EXPR_LOC_OR_HERE (expr));
2966 expr = NULL;
2967 append_to_statement_list (pred, &expr);
2969 append_to_statement_list (then_, &expr);
2970 if (else_se)
2972 if (jump_over_else)
2974 tree last = expr_last (expr);
2975 t = build_and_jump (&end_label);
2976 if (EXPR_HAS_LOCATION (last))
2977 SET_EXPR_LOCATION (t, EXPR_LOCATION (last));
2978 append_to_statement_list (t, &expr);
2980 if (emit_false)
2982 t = build1 (LABEL_EXPR, void_type_node, false_label);
2983 append_to_statement_list (t, &expr);
2985 append_to_statement_list (else_, &expr);
2987 if (emit_end && end_label)
2989 t = build1 (LABEL_EXPR, void_type_node, end_label);
2990 append_to_statement_list (t, &expr);
2993 return expr;
2996 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
2998 tree
2999 gimple_boolify (tree expr)
3001 tree type = TREE_TYPE (expr);
3002 location_t loc = EXPR_LOCATION (expr);
3004 if (TREE_CODE (expr) == NE_EXPR
3005 && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR
3006 && integer_zerop (TREE_OPERAND (expr, 1)))
3008 tree call = TREE_OPERAND (expr, 0);
3009 tree fn = get_callee_fndecl (call);
3011 /* For __builtin_expect ((long) (x), y) recurse into x as well
3012 if x is truth_value_p. */
3013 if (fn
3014 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
3015 && DECL_FUNCTION_CODE (fn) == BUILT_IN_EXPECT
3016 && call_expr_nargs (call) == 2)
3018 tree arg = CALL_EXPR_ARG (call, 0);
3019 if (arg)
3021 if (TREE_CODE (arg) == NOP_EXPR
3022 && TREE_TYPE (arg) == TREE_TYPE (call))
3023 arg = TREE_OPERAND (arg, 0);
3024 if (truth_value_p (TREE_CODE (arg)))
3026 arg = gimple_boolify (arg);
3027 CALL_EXPR_ARG (call, 0)
3028 = fold_convert_loc (loc, TREE_TYPE (call), arg);
3034 switch (TREE_CODE (expr))
3036 case TRUTH_AND_EXPR:
3037 case TRUTH_OR_EXPR:
3038 case TRUTH_XOR_EXPR:
3039 case TRUTH_ANDIF_EXPR:
3040 case TRUTH_ORIF_EXPR:
3041 /* Also boolify the arguments of truth exprs. */
3042 TREE_OPERAND (expr, 1) = gimple_boolify (TREE_OPERAND (expr, 1));
3043 /* FALLTHRU */
3045 case TRUTH_NOT_EXPR:
3046 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3048 /* These expressions always produce boolean results. */
3049 if (TREE_CODE (type) != BOOLEAN_TYPE)
3050 TREE_TYPE (expr) = boolean_type_node;
3051 return expr;
3053 default:
3054 if (COMPARISON_CLASS_P (expr))
3056 /* There expressions always prduce boolean results. */
3057 if (TREE_CODE (type) != BOOLEAN_TYPE)
3058 TREE_TYPE (expr) = boolean_type_node;
3059 return expr;
3061 /* Other expressions that get here must have boolean values, but
3062 might need to be converted to the appropriate mode. */
3063 if (TREE_CODE (type) == BOOLEAN_TYPE)
3064 return expr;
3065 return fold_convert_loc (loc, boolean_type_node, expr);
3069 /* Given a conditional expression *EXPR_P without side effects, gimplify
3070 its operands. New statements are inserted to PRE_P. */
3072 static enum gimplify_status
3073 gimplify_pure_cond_expr (tree *expr_p, gimple_seq *pre_p)
3075 tree expr = *expr_p, cond;
3076 enum gimplify_status ret, tret;
3077 enum tree_code code;
3079 cond = gimple_boolify (COND_EXPR_COND (expr));
3081 /* We need to handle && and || specially, as their gimplification
3082 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
3083 code = TREE_CODE (cond);
3084 if (code == TRUTH_ANDIF_EXPR)
3085 TREE_SET_CODE (cond, TRUTH_AND_EXPR);
3086 else if (code == TRUTH_ORIF_EXPR)
3087 TREE_SET_CODE (cond, TRUTH_OR_EXPR);
3088 ret = gimplify_expr (&cond, pre_p, NULL, is_gimple_condexpr, fb_rvalue);
3089 COND_EXPR_COND (*expr_p) = cond;
3091 tret = gimplify_expr (&COND_EXPR_THEN (expr), pre_p, NULL,
3092 is_gimple_val, fb_rvalue);
3093 ret = MIN (ret, tret);
3094 tret = gimplify_expr (&COND_EXPR_ELSE (expr), pre_p, NULL,
3095 is_gimple_val, fb_rvalue);
3097 return MIN (ret, tret);
3100 /* Return true if evaluating EXPR could trap.
3101 EXPR is GENERIC, while tree_could_trap_p can be called
3102 only on GIMPLE. */
3104 static bool
3105 generic_expr_could_trap_p (tree expr)
3107 unsigned i, n;
3109 if (!expr || is_gimple_val (expr))
3110 return false;
3112 if (!EXPR_P (expr) || tree_could_trap_p (expr))
3113 return true;
3115 n = TREE_OPERAND_LENGTH (expr);
3116 for (i = 0; i < n; i++)
3117 if (generic_expr_could_trap_p (TREE_OPERAND (expr, i)))
3118 return true;
3120 return false;
3123 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
3124 into
3126 if (p) if (p)
3127 t1 = a; a;
3128 else or else
3129 t1 = b; b;
3132 The second form is used when *EXPR_P is of type void.
3134 PRE_P points to the list where side effects that must happen before
3135 *EXPR_P should be stored. */
3137 static enum gimplify_status
3138 gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
3140 tree expr = *expr_p;
3141 tree type = TREE_TYPE (expr);
3142 location_t loc = EXPR_LOCATION (expr);
3143 tree tmp, arm1, arm2;
3144 enum gimplify_status ret;
3145 tree label_true, label_false, label_cont;
3146 bool have_then_clause_p, have_else_clause_p;
3147 gimple gimple_cond;
3148 enum tree_code pred_code;
3149 gimple_seq seq = NULL;
3151 /* If this COND_EXPR has a value, copy the values into a temporary within
3152 the arms. */
3153 if (!VOID_TYPE_P (type))
3155 tree then_ = TREE_OPERAND (expr, 1), else_ = TREE_OPERAND (expr, 2);
3156 tree result;
3158 /* If either an rvalue is ok or we do not require an lvalue, create the
3159 temporary. But we cannot do that if the type is addressable. */
3160 if (((fallback & fb_rvalue) || !(fallback & fb_lvalue))
3161 && !TREE_ADDRESSABLE (type))
3163 if (gimplify_ctxp->allow_rhs_cond_expr
3164 /* If either branch has side effects or could trap, it can't be
3165 evaluated unconditionally. */
3166 && !TREE_SIDE_EFFECTS (then_)
3167 && !generic_expr_could_trap_p (then_)
3168 && !TREE_SIDE_EFFECTS (else_)
3169 && !generic_expr_could_trap_p (else_))
3170 return gimplify_pure_cond_expr (expr_p, pre_p);
3172 tmp = create_tmp_var (type, "iftmp");
3173 result = tmp;
3176 /* Otherwise, only create and copy references to the values. */
3177 else
3179 type = build_pointer_type (type);
3181 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3182 then_ = build_fold_addr_expr_loc (loc, then_);
3184 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3185 else_ = build_fold_addr_expr_loc (loc, else_);
3187 expr
3188 = build3 (COND_EXPR, type, TREE_OPERAND (expr, 0), then_, else_);
3190 tmp = create_tmp_var (type, "iftmp");
3191 result = build_simple_mem_ref_loc (loc, tmp);
3194 /* Build the new then clause, `tmp = then_;'. But don't build the
3195 assignment if the value is void; in C++ it can be if it's a throw. */
3196 if (!VOID_TYPE_P (TREE_TYPE (then_)))
3197 TREE_OPERAND (expr, 1) = build2 (MODIFY_EXPR, type, tmp, then_);
3199 /* Similarly, build the new else clause, `tmp = else_;'. */
3200 if (!VOID_TYPE_P (TREE_TYPE (else_)))
3201 TREE_OPERAND (expr, 2) = build2 (MODIFY_EXPR, type, tmp, else_);
3203 TREE_TYPE (expr) = void_type_node;
3204 recalculate_side_effects (expr);
3206 /* Move the COND_EXPR to the prequeue. */
3207 gimplify_stmt (&expr, pre_p);
3209 *expr_p = result;
3210 return GS_ALL_DONE;
3213 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3214 STRIP_TYPE_NOPS (TREE_OPERAND (expr, 0));
3215 if (TREE_CODE (TREE_OPERAND (expr, 0)) == COMPOUND_EXPR)
3216 gimplify_compound_expr (&TREE_OPERAND (expr, 0), pre_p, true);
3218 /* Make sure the condition has BOOLEAN_TYPE. */
3219 TREE_OPERAND (expr, 0) = gimple_boolify (TREE_OPERAND (expr, 0));
3221 /* Break apart && and || conditions. */
3222 if (TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ANDIF_EXPR
3223 || TREE_CODE (TREE_OPERAND (expr, 0)) == TRUTH_ORIF_EXPR)
3225 expr = shortcut_cond_expr (expr);
3227 if (expr != *expr_p)
3229 *expr_p = expr;
3231 /* We can't rely on gimplify_expr to re-gimplify the expanded
3232 form properly, as cleanups might cause the target labels to be
3233 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3234 set up a conditional context. */
3235 gimple_push_condition ();
3236 gimplify_stmt (expr_p, &seq);
3237 gimple_pop_condition (pre_p);
3238 gimple_seq_add_seq (pre_p, seq);
3240 return GS_ALL_DONE;
3244 /* Now do the normal gimplification. */
3246 /* Gimplify condition. */
3247 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, NULL, is_gimple_condexpr,
3248 fb_rvalue);
3249 if (ret == GS_ERROR)
3250 return GS_ERROR;
3251 gcc_assert (TREE_OPERAND (expr, 0) != NULL_TREE);
3253 gimple_push_condition ();
3255 have_then_clause_p = have_else_clause_p = false;
3256 if (TREE_OPERAND (expr, 1) != NULL
3257 && TREE_CODE (TREE_OPERAND (expr, 1)) == GOTO_EXPR
3258 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 1))) == LABEL_DECL
3259 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 1)))
3260 == current_function_decl)
3261 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3262 have different locations, otherwise we end up with incorrect
3263 location information on the branches. */
3264 && (optimize
3265 || !EXPR_HAS_LOCATION (expr)
3266 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 1))
3267 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 1))))
3269 label_true = GOTO_DESTINATION (TREE_OPERAND (expr, 1));
3270 have_then_clause_p = true;
3272 else
3273 label_true = create_artificial_label (UNKNOWN_LOCATION);
3274 if (TREE_OPERAND (expr, 2) != NULL
3275 && TREE_CODE (TREE_OPERAND (expr, 2)) == GOTO_EXPR
3276 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr, 2))) == LABEL_DECL
3277 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr, 2)))
3278 == current_function_decl)
3279 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3280 have different locations, otherwise we end up with incorrect
3281 location information on the branches. */
3282 && (optimize
3283 || !EXPR_HAS_LOCATION (expr)
3284 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr, 2))
3285 || EXPR_LOCATION (expr) == EXPR_LOCATION (TREE_OPERAND (expr, 2))))
3287 label_false = GOTO_DESTINATION (TREE_OPERAND (expr, 2));
3288 have_else_clause_p = true;
3290 else
3291 label_false = create_artificial_label (UNKNOWN_LOCATION);
3293 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1,
3294 &arm2);
3296 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true,
3297 label_false);
3299 gimplify_seq_add_stmt (&seq, gimple_cond);
3300 label_cont = NULL_TREE;
3301 if (!have_then_clause_p)
3303 /* For if (...) {} else { code; } put label_true after
3304 the else block. */
3305 if (TREE_OPERAND (expr, 1) == NULL_TREE
3306 && !have_else_clause_p
3307 && TREE_OPERAND (expr, 2) != NULL_TREE)
3308 label_cont = label_true;
3309 else
3311 gimplify_seq_add_stmt (&seq, gimple_build_label (label_true));
3312 have_then_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 1), &seq);
3313 /* For if (...) { code; } else {} or
3314 if (...) { code; } else goto label; or
3315 if (...) { code; return; } else { ... }
3316 label_cont isn't needed. */
3317 if (!have_else_clause_p
3318 && TREE_OPERAND (expr, 2) != NULL_TREE
3319 && gimple_seq_may_fallthru (seq))
3321 gimple g;
3322 label_cont = create_artificial_label (UNKNOWN_LOCATION);
3324 g = gimple_build_goto (label_cont);
3326 /* GIMPLE_COND's are very low level; they have embedded
3327 gotos. This particular embedded goto should not be marked
3328 with the location of the original COND_EXPR, as it would
3329 correspond to the COND_EXPR's condition, not the ELSE or the
3330 THEN arms. To avoid marking it with the wrong location, flag
3331 it as "no location". */
3332 gimple_set_do_not_emit_location (g);
3334 gimplify_seq_add_stmt (&seq, g);
3338 if (!have_else_clause_p)
3340 gimplify_seq_add_stmt (&seq, gimple_build_label (label_false));
3341 have_else_clause_p = gimplify_stmt (&TREE_OPERAND (expr, 2), &seq);
3343 if (label_cont)
3344 gimplify_seq_add_stmt (&seq, gimple_build_label (label_cont));
3346 gimple_pop_condition (pre_p);
3347 gimple_seq_add_seq (pre_p, seq);
3349 if (ret == GS_ERROR)
3350 ; /* Do nothing. */
3351 else if (have_then_clause_p || have_else_clause_p)
3352 ret = GS_ALL_DONE;
3353 else
3355 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3356 expr = TREE_OPERAND (expr, 0);
3357 gimplify_stmt (&expr, pre_p);
3360 *expr_p = NULL;
3361 return ret;
3364 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3365 to be marked addressable.
3367 We cannot rely on such an expression being directly markable if a temporary
3368 has been created by the gimplification. In this case, we create another
3369 temporary and initialize it with a copy, which will become a store after we
3370 mark it addressable. This can happen if the front-end passed us something
3371 that it could not mark addressable yet, like a Fortran pass-by-reference
3372 parameter (int) floatvar. */
3374 static void
3375 prepare_gimple_addressable (tree *expr_p, gimple_seq *seq_p)
3377 while (handled_component_p (*expr_p))
3378 expr_p = &TREE_OPERAND (*expr_p, 0);
3379 if (is_gimple_reg (*expr_p))
3380 *expr_p = get_initialized_tmp_var (*expr_p, seq_p, NULL);
3383 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3384 a call to __builtin_memcpy. */
3386 static enum gimplify_status
3387 gimplify_modify_expr_to_memcpy (tree *expr_p, tree size, bool want_value,
3388 gimple_seq *seq_p)
3390 tree t, to, to_ptr, from, from_ptr;
3391 gimple gs;
3392 location_t loc = EXPR_LOCATION (*expr_p);
3394 to = TREE_OPERAND (*expr_p, 0);
3395 from = TREE_OPERAND (*expr_p, 1);
3397 /* Mark the RHS addressable. Beware that it may not be possible to do so
3398 directly if a temporary has been created by the gimplification. */
3399 prepare_gimple_addressable (&from, seq_p);
3401 mark_addressable (from);
3402 from_ptr = build_fold_addr_expr_loc (loc, from);
3403 gimplify_arg (&from_ptr, seq_p, loc);
3405 mark_addressable (to);
3406 to_ptr = build_fold_addr_expr_loc (loc, to);
3407 gimplify_arg (&to_ptr, seq_p, loc);
3409 t = builtin_decl_implicit (BUILT_IN_MEMCPY);
3411 gs = gimple_build_call (t, 3, to_ptr, from_ptr, size);
3413 if (want_value)
3415 /* tmp = memcpy() */
3416 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3417 gimple_call_set_lhs (gs, t);
3418 gimplify_seq_add_stmt (seq_p, gs);
3420 *expr_p = build_simple_mem_ref (t);
3421 return GS_ALL_DONE;
3424 gimplify_seq_add_stmt (seq_p, gs);
3425 *expr_p = NULL;
3426 return GS_ALL_DONE;
3429 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3430 a call to __builtin_memset. In this case we know that the RHS is
3431 a CONSTRUCTOR with an empty element list. */
3433 static enum gimplify_status
3434 gimplify_modify_expr_to_memset (tree *expr_p, tree size, bool want_value,
3435 gimple_seq *seq_p)
3437 tree t, from, to, to_ptr;
3438 gimple gs;
3439 location_t loc = EXPR_LOCATION (*expr_p);
3441 /* Assert our assumptions, to abort instead of producing wrong code
3442 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3443 not be immediately exposed. */
3444 from = TREE_OPERAND (*expr_p, 1);
3445 if (TREE_CODE (from) == WITH_SIZE_EXPR)
3446 from = TREE_OPERAND (from, 0);
3448 gcc_assert (TREE_CODE (from) == CONSTRUCTOR
3449 && vec_safe_is_empty (CONSTRUCTOR_ELTS (from)));
3451 /* Now proceed. */
3452 to = TREE_OPERAND (*expr_p, 0);
3454 to_ptr = build_fold_addr_expr_loc (loc, to);
3455 gimplify_arg (&to_ptr, seq_p, loc);
3456 t = builtin_decl_implicit (BUILT_IN_MEMSET);
3458 gs = gimple_build_call (t, 3, to_ptr, integer_zero_node, size);
3460 if (want_value)
3462 /* tmp = memset() */
3463 t = create_tmp_var (TREE_TYPE (to_ptr), NULL);
3464 gimple_call_set_lhs (gs, t);
3465 gimplify_seq_add_stmt (seq_p, gs);
3467 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (to), t);
3468 return GS_ALL_DONE;
3471 gimplify_seq_add_stmt (seq_p, gs);
3472 *expr_p = NULL;
3473 return GS_ALL_DONE;
3476 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3477 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3478 assignment. Return non-null if we detect a potential overlap. */
3480 struct gimplify_init_ctor_preeval_data
3482 /* The base decl of the lhs object. May be NULL, in which case we
3483 have to assume the lhs is indirect. */
3484 tree lhs_base_decl;
3486 /* The alias set of the lhs object. */
3487 alias_set_type lhs_alias_set;
3490 static tree
3491 gimplify_init_ctor_preeval_1 (tree *tp, int *walk_subtrees, void *xdata)
3493 struct gimplify_init_ctor_preeval_data *data
3494 = (struct gimplify_init_ctor_preeval_data *) xdata;
3495 tree t = *tp;
3497 /* If we find the base object, obviously we have overlap. */
3498 if (data->lhs_base_decl == t)
3499 return t;
3501 /* If the constructor component is indirect, determine if we have a
3502 potential overlap with the lhs. The only bits of information we
3503 have to go on at this point are addressability and alias sets. */
3504 if ((INDIRECT_REF_P (t)
3505 || TREE_CODE (t) == MEM_REF)
3506 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3507 && alias_sets_conflict_p (data->lhs_alias_set, get_alias_set (t)))
3508 return t;
3510 /* If the constructor component is a call, determine if it can hide a
3511 potential overlap with the lhs through an INDIRECT_REF like above.
3512 ??? Ugh - this is completely broken. In fact this whole analysis
3513 doesn't look conservative. */
3514 if (TREE_CODE (t) == CALL_EXPR)
3516 tree type, fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t)));
3518 for (type = TYPE_ARG_TYPES (fntype); type; type = TREE_CHAIN (type))
3519 if (POINTER_TYPE_P (TREE_VALUE (type))
3520 && (!data->lhs_base_decl || TREE_ADDRESSABLE (data->lhs_base_decl))
3521 && alias_sets_conflict_p (data->lhs_alias_set,
3522 get_alias_set
3523 (TREE_TYPE (TREE_VALUE (type)))))
3524 return t;
3527 if (IS_TYPE_OR_DECL_P (t))
3528 *walk_subtrees = 0;
3529 return NULL;
3532 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3533 force values that overlap with the lhs (as described by *DATA)
3534 into temporaries. */
3536 static void
3537 gimplify_init_ctor_preeval (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3538 struct gimplify_init_ctor_preeval_data *data)
3540 enum gimplify_status one;
3542 /* If the value is constant, then there's nothing to pre-evaluate. */
3543 if (TREE_CONSTANT (*expr_p))
3545 /* Ensure it does not have side effects, it might contain a reference to
3546 the object we're initializing. */
3547 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p));
3548 return;
3551 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3552 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p)))
3553 return;
3555 /* Recurse for nested constructors. */
3556 if (TREE_CODE (*expr_p) == CONSTRUCTOR)
3558 unsigned HOST_WIDE_INT ix;
3559 constructor_elt *ce;
3560 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (*expr_p);
3562 FOR_EACH_VEC_SAFE_ELT (v, ix, ce)
3563 gimplify_init_ctor_preeval (&ce->value, pre_p, post_p, data);
3565 return;
3568 /* If this is a variable sized type, we must remember the size. */
3569 maybe_with_size_expr (expr_p);
3571 /* Gimplify the constructor element to something appropriate for the rhs
3572 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3573 the gimplifier will consider this a store to memory. Doing this
3574 gimplification now means that we won't have to deal with complicated
3575 language-specific trees, nor trees like SAVE_EXPR that can induce
3576 exponential search behavior. */
3577 one = gimplify_expr (expr_p, pre_p, post_p, is_gimple_mem_rhs, fb_rvalue);
3578 if (one == GS_ERROR)
3580 *expr_p = NULL;
3581 return;
3584 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3585 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3586 always be true for all scalars, since is_gimple_mem_rhs insists on a
3587 temporary variable for them. */
3588 if (DECL_P (*expr_p))
3589 return;
3591 /* If this is of variable size, we have no choice but to assume it doesn't
3592 overlap since we can't make a temporary for it. */
3593 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p))) != INTEGER_CST)
3594 return;
3596 /* Otherwise, we must search for overlap ... */
3597 if (!walk_tree (expr_p, gimplify_init_ctor_preeval_1, data, NULL))
3598 return;
3600 /* ... and if found, force the value into a temporary. */
3601 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
3604 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3605 a RANGE_EXPR in a CONSTRUCTOR for an array.
3607 var = lower;
3608 loop_entry:
3609 object[var] = value;
3610 if (var == upper)
3611 goto loop_exit;
3612 var = var + 1;
3613 goto loop_entry;
3614 loop_exit:
3616 We increment var _after_ the loop exit check because we might otherwise
3617 fail if upper == TYPE_MAX_VALUE (type for upper).
3619 Note that we never have to deal with SAVE_EXPRs here, because this has
3620 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3622 static void gimplify_init_ctor_eval (tree, vec<constructor_elt, va_gc> *,
3623 gimple_seq *, bool);
3625 static void
3626 gimplify_init_ctor_eval_range (tree object, tree lower, tree upper,
3627 tree value, tree array_elt_type,
3628 gimple_seq *pre_p, bool cleared)
3630 tree loop_entry_label, loop_exit_label, fall_thru_label;
3631 tree var, var_type, cref, tmp;
3633 loop_entry_label = create_artificial_label (UNKNOWN_LOCATION);
3634 loop_exit_label = create_artificial_label (UNKNOWN_LOCATION);
3635 fall_thru_label = create_artificial_label (UNKNOWN_LOCATION);
3637 /* Create and initialize the index variable. */
3638 var_type = TREE_TYPE (upper);
3639 var = create_tmp_var (var_type, NULL);
3640 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, lower));
3642 /* Add the loop entry label. */
3643 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_entry_label));
3645 /* Build the reference. */
3646 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3647 var, NULL_TREE, NULL_TREE);
3649 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3650 the store. Otherwise just assign value to the reference. */
3652 if (TREE_CODE (value) == CONSTRUCTOR)
3653 /* NB we might have to call ourself recursively through
3654 gimplify_init_ctor_eval if the value is a constructor. */
3655 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3656 pre_p, cleared);
3657 else
3658 gimplify_seq_add_stmt (pre_p, gimple_build_assign (cref, value));
3660 /* We exit the loop when the index var is equal to the upper bound. */
3661 gimplify_seq_add_stmt (pre_p,
3662 gimple_build_cond (EQ_EXPR, var, upper,
3663 loop_exit_label, fall_thru_label));
3665 gimplify_seq_add_stmt (pre_p, gimple_build_label (fall_thru_label));
3667 /* Otherwise, increment the index var... */
3668 tmp = build2 (PLUS_EXPR, var_type, var,
3669 fold_convert (var_type, integer_one_node));
3670 gimplify_seq_add_stmt (pre_p, gimple_build_assign (var, tmp));
3672 /* ...and jump back to the loop entry. */
3673 gimplify_seq_add_stmt (pre_p, gimple_build_goto (loop_entry_label));
3675 /* Add the loop exit label. */
3676 gimplify_seq_add_stmt (pre_p, gimple_build_label (loop_exit_label));
3679 /* Return true if FDECL is accessing a field that is zero sized. */
3681 static bool
3682 zero_sized_field_decl (const_tree fdecl)
3684 if (TREE_CODE (fdecl) == FIELD_DECL && DECL_SIZE (fdecl)
3685 && integer_zerop (DECL_SIZE (fdecl)))
3686 return true;
3687 return false;
3690 /* Return true if TYPE is zero sized. */
3692 static bool
3693 zero_sized_type (const_tree type)
3695 if (AGGREGATE_TYPE_P (type) && TYPE_SIZE (type)
3696 && integer_zerop (TYPE_SIZE (type)))
3697 return true;
3698 return false;
3701 /* A subroutine of gimplify_init_constructor. Generate individual
3702 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3703 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3704 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3705 zeroed first. */
3707 static void
3708 gimplify_init_ctor_eval (tree object, vec<constructor_elt, va_gc> *elts,
3709 gimple_seq *pre_p, bool cleared)
3711 tree array_elt_type = NULL;
3712 unsigned HOST_WIDE_INT ix;
3713 tree purpose, value;
3715 if (TREE_CODE (TREE_TYPE (object)) == ARRAY_TYPE)
3716 array_elt_type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object)));
3718 FOR_EACH_CONSTRUCTOR_ELT (elts, ix, purpose, value)
3720 tree cref;
3722 /* NULL values are created above for gimplification errors. */
3723 if (value == NULL)
3724 continue;
3726 if (cleared && initializer_zerop (value))
3727 continue;
3729 /* ??? Here's to hoping the front end fills in all of the indices,
3730 so we don't have to figure out what's missing ourselves. */
3731 gcc_assert (purpose);
3733 /* Skip zero-sized fields, unless value has side-effects. This can
3734 happen with calls to functions returning a zero-sized type, which
3735 we shouldn't discard. As a number of downstream passes don't
3736 expect sets of zero-sized fields, we rely on the gimplification of
3737 the MODIFY_EXPR we make below to drop the assignment statement. */
3738 if (! TREE_SIDE_EFFECTS (value) && zero_sized_field_decl (purpose))
3739 continue;
3741 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3742 whole range. */
3743 if (TREE_CODE (purpose) == RANGE_EXPR)
3745 tree lower = TREE_OPERAND (purpose, 0);
3746 tree upper = TREE_OPERAND (purpose, 1);
3748 /* If the lower bound is equal to upper, just treat it as if
3749 upper was the index. */
3750 if (simple_cst_equal (lower, upper))
3751 purpose = upper;
3752 else
3754 gimplify_init_ctor_eval_range (object, lower, upper, value,
3755 array_elt_type, pre_p, cleared);
3756 continue;
3760 if (array_elt_type)
3762 /* Do not use bitsizetype for ARRAY_REF indices. */
3763 if (TYPE_DOMAIN (TREE_TYPE (object)))
3764 purpose
3765 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object))),
3766 purpose);
3767 cref = build4 (ARRAY_REF, array_elt_type, unshare_expr (object),
3768 purpose, NULL_TREE, NULL_TREE);
3770 else
3772 gcc_assert (TREE_CODE (purpose) == FIELD_DECL);
3773 cref = build3 (COMPONENT_REF, TREE_TYPE (purpose),
3774 unshare_expr (object), purpose, NULL_TREE);
3777 if (TREE_CODE (value) == CONSTRUCTOR
3778 && TREE_CODE (TREE_TYPE (value)) != VECTOR_TYPE)
3779 gimplify_init_ctor_eval (cref, CONSTRUCTOR_ELTS (value),
3780 pre_p, cleared);
3781 else
3783 tree init = build2 (INIT_EXPR, TREE_TYPE (cref), cref, value);
3784 gimplify_and_add (init, pre_p);
3785 ggc_free (init);
3790 /* Return the appropriate RHS predicate for this LHS. */
3792 gimple_predicate
3793 rhs_predicate_for (tree lhs)
3795 if (is_gimple_reg (lhs))
3796 return is_gimple_reg_rhs_or_call;
3797 else
3798 return is_gimple_mem_rhs_or_call;
3801 /* Gimplify a C99 compound literal expression. This just means adding
3802 the DECL_EXPR before the current statement and using its anonymous
3803 decl instead. */
3805 static enum gimplify_status
3806 gimplify_compound_literal_expr (tree *expr_p, gimple_seq *pre_p,
3807 bool (*gimple_test_f) (tree),
3808 fallback_t fallback)
3810 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p);
3811 tree decl = DECL_EXPR_DECL (decl_s);
3812 tree init = DECL_INITIAL (decl);
3813 /* Mark the decl as addressable if the compound literal
3814 expression is addressable now, otherwise it is marked too late
3815 after we gimplify the initialization expression. */
3816 if (TREE_ADDRESSABLE (*expr_p))
3817 TREE_ADDRESSABLE (decl) = 1;
3818 /* Otherwise, if we don't need an lvalue and have a literal directly
3819 substitute it. Check if it matches the gimple predicate, as
3820 otherwise we'd generate a new temporary, and we can as well just
3821 use the decl we already have. */
3822 else if (!TREE_ADDRESSABLE (decl)
3823 && init
3824 && (fallback & fb_lvalue) == 0
3825 && gimple_test_f (init))
3827 *expr_p = init;
3828 return GS_OK;
3831 /* Preliminarily mark non-addressed complex variables as eligible
3832 for promotion to gimple registers. We'll transform their uses
3833 as we find them. */
3834 if ((TREE_CODE (TREE_TYPE (decl)) == COMPLEX_TYPE
3835 || TREE_CODE (TREE_TYPE (decl)) == VECTOR_TYPE)
3836 && !TREE_THIS_VOLATILE (decl)
3837 && !needs_to_live_in_memory (decl))
3838 DECL_GIMPLE_REG_P (decl) = 1;
3840 /* If the decl is not addressable, then it is being used in some
3841 expression or on the right hand side of a statement, and it can
3842 be put into a readonly data section. */
3843 if (!TREE_ADDRESSABLE (decl) && (fallback & fb_lvalue) == 0)
3844 TREE_READONLY (decl) = 1;
3846 /* This decl isn't mentioned in the enclosing block, so add it to the
3847 list of temps. FIXME it seems a bit of a kludge to say that
3848 anonymous artificial vars aren't pushed, but everything else is. */
3849 if (DECL_NAME (decl) == NULL_TREE && !DECL_SEEN_IN_BIND_EXPR_P (decl))
3850 gimple_add_tmp_var (decl);
3852 gimplify_and_add (decl_s, pre_p);
3853 *expr_p = decl;
3854 return GS_OK;
3857 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3858 return a new CONSTRUCTOR if something changed. */
3860 static tree
3861 optimize_compound_literals_in_ctor (tree orig_ctor)
3863 tree ctor = orig_ctor;
3864 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ctor);
3865 unsigned int idx, num = vec_safe_length (elts);
3867 for (idx = 0; idx < num; idx++)
3869 tree value = (*elts)[idx].value;
3870 tree newval = value;
3871 if (TREE_CODE (value) == CONSTRUCTOR)
3872 newval = optimize_compound_literals_in_ctor (value);
3873 else if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR)
3875 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (value);
3876 tree decl = DECL_EXPR_DECL (decl_s);
3877 tree init = DECL_INITIAL (decl);
3879 if (!TREE_ADDRESSABLE (value)
3880 && !TREE_ADDRESSABLE (decl)
3881 && init
3882 && TREE_CODE (init) == CONSTRUCTOR)
3883 newval = optimize_compound_literals_in_ctor (init);
3885 if (newval == value)
3886 continue;
3888 if (ctor == orig_ctor)
3890 ctor = copy_node (orig_ctor);
3891 CONSTRUCTOR_ELTS (ctor) = vec_safe_copy (elts);
3892 elts = CONSTRUCTOR_ELTS (ctor);
3894 (*elts)[idx].value = newval;
3896 return ctor;
3899 /* A subroutine of gimplify_modify_expr. Break out elements of a
3900 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3902 Note that we still need to clear any elements that don't have explicit
3903 initializers, so if not all elements are initialized we keep the
3904 original MODIFY_EXPR, we just remove all of the constructor elements.
3906 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3907 GS_ERROR if we would have to create a temporary when gimplifying
3908 this constructor. Otherwise, return GS_OK.
3910 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3912 static enum gimplify_status
3913 gimplify_init_constructor (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
3914 bool want_value, bool notify_temp_creation)
3916 tree object, ctor, type;
3917 enum gimplify_status ret;
3918 vec<constructor_elt, va_gc> *elts;
3920 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == CONSTRUCTOR);
3922 if (!notify_temp_creation)
3924 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
3925 is_gimple_lvalue, fb_lvalue);
3926 if (ret == GS_ERROR)
3927 return ret;
3930 object = TREE_OPERAND (*expr_p, 0);
3931 ctor = TREE_OPERAND (*expr_p, 1) =
3932 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p, 1));
3933 type = TREE_TYPE (ctor);
3934 elts = CONSTRUCTOR_ELTS (ctor);
3935 ret = GS_ALL_DONE;
3937 switch (TREE_CODE (type))
3939 case RECORD_TYPE:
3940 case UNION_TYPE:
3941 case QUAL_UNION_TYPE:
3942 case ARRAY_TYPE:
3944 struct gimplify_init_ctor_preeval_data preeval_data;
3945 HOST_WIDE_INT num_ctor_elements, num_nonzero_elements;
3946 bool cleared, complete_p, valid_const_initializer;
3948 /* Aggregate types must lower constructors to initialization of
3949 individual elements. The exception is that a CONSTRUCTOR node
3950 with no elements indicates zero-initialization of the whole. */
3951 if (vec_safe_is_empty (elts))
3953 if (notify_temp_creation)
3954 return GS_OK;
3955 break;
3958 /* Fetch information about the constructor to direct later processing.
3959 We might want to make static versions of it in various cases, and
3960 can only do so if it known to be a valid constant initializer. */
3961 valid_const_initializer
3962 = categorize_ctor_elements (ctor, &num_nonzero_elements,
3963 &num_ctor_elements, &complete_p);
3965 /* If a const aggregate variable is being initialized, then it
3966 should never be a lose to promote the variable to be static. */
3967 if (valid_const_initializer
3968 && num_nonzero_elements > 1
3969 && TREE_READONLY (object)
3970 && TREE_CODE (object) == VAR_DECL
3971 && (flag_merge_constants >= 2 || !TREE_ADDRESSABLE (object)))
3973 if (notify_temp_creation)
3974 return GS_ERROR;
3975 DECL_INITIAL (object) = ctor;
3976 TREE_STATIC (object) = 1;
3977 if (!DECL_NAME (object))
3978 DECL_NAME (object) = create_tmp_var_name ("C");
3979 walk_tree (&DECL_INITIAL (object), force_labels_r, NULL, NULL);
3981 /* ??? C++ doesn't automatically append a .<number> to the
3982 assembler name, and even when it does, it looks at FE private
3983 data structures to figure out what that number should be,
3984 which are not set for this variable. I suppose this is
3985 important for local statics for inline functions, which aren't
3986 "local" in the object file sense. So in order to get a unique
3987 TU-local symbol, we must invoke the lhd version now. */
3988 lhd_set_decl_assembler_name (object);
3990 *expr_p = NULL_TREE;
3991 break;
3994 /* If there are "lots" of initialized elements, even discounting
3995 those that are not address constants (and thus *must* be
3996 computed at runtime), then partition the constructor into
3997 constant and non-constant parts. Block copy the constant
3998 parts in, then generate code for the non-constant parts. */
3999 /* TODO. There's code in cp/typeck.c to do this. */
4001 if (int_size_in_bytes (TREE_TYPE (ctor)) < 0)
4002 /* store_constructor will ignore the clearing of variable-sized
4003 objects. Initializers for such objects must explicitly set
4004 every field that needs to be set. */
4005 cleared = false;
4006 else if (!complete_p)
4007 /* If the constructor isn't complete, clear the whole object
4008 beforehand.
4010 ??? This ought not to be needed. For any element not present
4011 in the initializer, we should simply set them to zero. Except
4012 we'd need to *find* the elements that are not present, and that
4013 requires trickery to avoid quadratic compile-time behavior in
4014 large cases or excessive memory use in small cases. */
4015 cleared = true;
4016 else if (num_ctor_elements - num_nonzero_elements
4017 > CLEAR_RATIO (optimize_function_for_speed_p (cfun))
4018 && num_nonzero_elements < num_ctor_elements / 4)
4019 /* If there are "lots" of zeros, it's more efficient to clear
4020 the memory and then set the nonzero elements. */
4021 cleared = true;
4022 else
4023 cleared = false;
4025 /* If there are "lots" of initialized elements, and all of them
4026 are valid address constants, then the entire initializer can
4027 be dropped to memory, and then memcpy'd out. Don't do this
4028 for sparse arrays, though, as it's more efficient to follow
4029 the standard CONSTRUCTOR behavior of memset followed by
4030 individual element initialization. Also don't do this for small
4031 all-zero initializers (which aren't big enough to merit
4032 clearing), and don't try to make bitwise copies of
4033 TREE_ADDRESSABLE types. */
4034 if (valid_const_initializer
4035 && !(cleared || num_nonzero_elements == 0)
4036 && !TREE_ADDRESSABLE (type))
4038 HOST_WIDE_INT size = int_size_in_bytes (type);
4039 unsigned int align;
4041 /* ??? We can still get unbounded array types, at least
4042 from the C++ front end. This seems wrong, but attempt
4043 to work around it for now. */
4044 if (size < 0)
4046 size = int_size_in_bytes (TREE_TYPE (object));
4047 if (size >= 0)
4048 TREE_TYPE (ctor) = type = TREE_TYPE (object);
4051 /* Find the maximum alignment we can assume for the object. */
4052 /* ??? Make use of DECL_OFFSET_ALIGN. */
4053 if (DECL_P (object))
4054 align = DECL_ALIGN (object);
4055 else
4056 align = TYPE_ALIGN (type);
4058 /* Do a block move either if the size is so small as to make
4059 each individual move a sub-unit move on average, or if it
4060 is so large as to make individual moves inefficient. */
4061 if (size > 0
4062 && num_nonzero_elements > 1
4063 && (size < num_nonzero_elements
4064 || !can_move_by_pieces (size, align)))
4066 if (notify_temp_creation)
4067 return GS_ERROR;
4069 walk_tree (&ctor, force_labels_r, NULL, NULL);
4070 ctor = tree_output_constant_def (ctor);
4071 if (!useless_type_conversion_p (type, TREE_TYPE (ctor)))
4072 ctor = build1 (VIEW_CONVERT_EXPR, type, ctor);
4073 TREE_OPERAND (*expr_p, 1) = ctor;
4075 /* This is no longer an assignment of a CONSTRUCTOR, but
4076 we still may have processing to do on the LHS. So
4077 pretend we didn't do anything here to let that happen. */
4078 return GS_UNHANDLED;
4082 /* If the target is volatile, we have non-zero elements and more than
4083 one field to assign, initialize the target from a temporary. */
4084 if (TREE_THIS_VOLATILE (object)
4085 && !TREE_ADDRESSABLE (type)
4086 && num_nonzero_elements > 0
4087 && vec_safe_length (elts) > 1)
4089 tree temp = create_tmp_var (TYPE_MAIN_VARIANT (type), NULL);
4090 TREE_OPERAND (*expr_p, 0) = temp;
4091 *expr_p = build2 (COMPOUND_EXPR, TREE_TYPE (*expr_p),
4092 *expr_p,
4093 build2 (MODIFY_EXPR, void_type_node,
4094 object, temp));
4095 return GS_OK;
4098 if (notify_temp_creation)
4099 return GS_OK;
4101 /* If there are nonzero elements and if needed, pre-evaluate to capture
4102 elements overlapping with the lhs into temporaries. We must do this
4103 before clearing to fetch the values before they are zeroed-out. */
4104 if (num_nonzero_elements > 0 && TREE_CODE (*expr_p) != INIT_EXPR)
4106 preeval_data.lhs_base_decl = get_base_address (object);
4107 if (!DECL_P (preeval_data.lhs_base_decl))
4108 preeval_data.lhs_base_decl = NULL;
4109 preeval_data.lhs_alias_set = get_alias_set (object);
4111 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p, 1),
4112 pre_p, post_p, &preeval_data);
4115 if (cleared)
4117 /* Zap the CONSTRUCTOR element list, which simplifies this case.
4118 Note that we still have to gimplify, in order to handle the
4119 case of variable sized types. Avoid shared tree structures. */
4120 CONSTRUCTOR_ELTS (ctor) = NULL;
4121 TREE_SIDE_EFFECTS (ctor) = 0;
4122 object = unshare_expr (object);
4123 gimplify_stmt (expr_p, pre_p);
4126 /* If we have not block cleared the object, or if there are nonzero
4127 elements in the constructor, add assignments to the individual
4128 scalar fields of the object. */
4129 if (!cleared || num_nonzero_elements > 0)
4130 gimplify_init_ctor_eval (object, elts, pre_p, cleared);
4132 *expr_p = NULL_TREE;
4134 break;
4136 case COMPLEX_TYPE:
4138 tree r, i;
4140 if (notify_temp_creation)
4141 return GS_OK;
4143 /* Extract the real and imaginary parts out of the ctor. */
4144 gcc_assert (elts->length () == 2);
4145 r = (*elts)[0].value;
4146 i = (*elts)[1].value;
4147 if (r == NULL || i == NULL)
4149 tree zero = build_zero_cst (TREE_TYPE (type));
4150 if (r == NULL)
4151 r = zero;
4152 if (i == NULL)
4153 i = zero;
4156 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
4157 represent creation of a complex value. */
4158 if (TREE_CONSTANT (r) && TREE_CONSTANT (i))
4160 ctor = build_complex (type, r, i);
4161 TREE_OPERAND (*expr_p, 1) = ctor;
4163 else
4165 ctor = build2 (COMPLEX_EXPR, type, r, i);
4166 TREE_OPERAND (*expr_p, 1) = ctor;
4167 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 1),
4168 pre_p,
4169 post_p,
4170 rhs_predicate_for (TREE_OPERAND (*expr_p, 0)),
4171 fb_rvalue);
4174 break;
4176 case VECTOR_TYPE:
4178 unsigned HOST_WIDE_INT ix;
4179 constructor_elt *ce;
4181 if (notify_temp_creation)
4182 return GS_OK;
4184 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4185 if (TREE_CONSTANT (ctor))
4187 bool constant_p = true;
4188 tree value;
4190 /* Even when ctor is constant, it might contain non-*_CST
4191 elements, such as addresses or trapping values like
4192 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4193 in VECTOR_CST nodes. */
4194 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
4195 if (!CONSTANT_CLASS_P (value))
4197 constant_p = false;
4198 break;
4201 if (constant_p)
4203 TREE_OPERAND (*expr_p, 1) = build_vector_from_ctor (type, elts);
4204 break;
4207 /* Don't reduce an initializer constant even if we can't
4208 make a VECTOR_CST. It won't do anything for us, and it'll
4209 prevent us from representing it as a single constant. */
4210 if (initializer_constant_valid_p (ctor, type))
4211 break;
4213 TREE_CONSTANT (ctor) = 0;
4216 /* Vector types use CONSTRUCTOR all the way through gimple
4217 compilation as a general initializer. */
4218 FOR_EACH_VEC_SAFE_ELT (elts, ix, ce)
4220 enum gimplify_status tret;
4221 tret = gimplify_expr (&ce->value, pre_p, post_p, is_gimple_val,
4222 fb_rvalue);
4223 if (tret == GS_ERROR)
4224 ret = GS_ERROR;
4226 if (!is_gimple_reg (TREE_OPERAND (*expr_p, 0)))
4227 TREE_OPERAND (*expr_p, 1) = get_formal_tmp_var (ctor, pre_p);
4229 break;
4231 default:
4232 /* So how did we get a CONSTRUCTOR for a scalar type? */
4233 gcc_unreachable ();
4236 if (ret == GS_ERROR)
4237 return GS_ERROR;
4238 else if (want_value)
4240 *expr_p = object;
4241 return GS_OK;
4243 else
4245 /* If we have gimplified both sides of the initializer but have
4246 not emitted an assignment, do so now. */
4247 if (*expr_p)
4249 tree lhs = TREE_OPERAND (*expr_p, 0);
4250 tree rhs = TREE_OPERAND (*expr_p, 1);
4251 gimple init = gimple_build_assign (lhs, rhs);
4252 gimplify_seq_add_stmt (pre_p, init);
4253 *expr_p = NULL;
4256 return GS_ALL_DONE;
4260 /* Given a pointer value OP0, return a simplified version of an
4261 indirection through OP0, or NULL_TREE if no simplification is
4262 possible. Note that the resulting type may be different from
4263 the type pointed to in the sense that it is still compatible
4264 from the langhooks point of view. */
4266 tree
4267 gimple_fold_indirect_ref (tree t)
4269 tree ptype = TREE_TYPE (t), type = TREE_TYPE (ptype);
4270 tree sub = t;
4271 tree subtype;
4273 STRIP_NOPS (sub);
4274 subtype = TREE_TYPE (sub);
4275 if (!POINTER_TYPE_P (subtype))
4276 return NULL_TREE;
4278 if (TREE_CODE (sub) == ADDR_EXPR)
4280 tree op = TREE_OPERAND (sub, 0);
4281 tree optype = TREE_TYPE (op);
4282 /* *&p => p */
4283 if (useless_type_conversion_p (type, optype))
4284 return op;
4286 /* *(foo *)&fooarray => fooarray[0] */
4287 if (TREE_CODE (optype) == ARRAY_TYPE
4288 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype))) == INTEGER_CST
4289 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4291 tree type_domain = TYPE_DOMAIN (optype);
4292 tree min_val = size_zero_node;
4293 if (type_domain && TYPE_MIN_VALUE (type_domain))
4294 min_val = TYPE_MIN_VALUE (type_domain);
4295 if (TREE_CODE (min_val) == INTEGER_CST)
4296 return build4 (ARRAY_REF, type, op, min_val, NULL_TREE, NULL_TREE);
4298 /* *(foo *)&complexfoo => __real__ complexfoo */
4299 else if (TREE_CODE (optype) == COMPLEX_TYPE
4300 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4301 return fold_build1 (REALPART_EXPR, type, op);
4302 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4303 else if (TREE_CODE (optype) == VECTOR_TYPE
4304 && useless_type_conversion_p (type, TREE_TYPE (optype)))
4306 tree part_width = TYPE_SIZE (type);
4307 tree index = bitsize_int (0);
4308 return fold_build3 (BIT_FIELD_REF, type, op, part_width, index);
4312 /* *(p + CST) -> ... */
4313 if (TREE_CODE (sub) == POINTER_PLUS_EXPR
4314 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
4316 tree addr = TREE_OPERAND (sub, 0);
4317 tree off = TREE_OPERAND (sub, 1);
4318 tree addrtype;
4320 STRIP_NOPS (addr);
4321 addrtype = TREE_TYPE (addr);
4323 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4324 if (TREE_CODE (addr) == ADDR_EXPR
4325 && TREE_CODE (TREE_TYPE (addrtype)) == VECTOR_TYPE
4326 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype)))
4327 && host_integerp (off, 1))
4329 unsigned HOST_WIDE_INT offset = tree_low_cst (off, 1);
4330 tree part_width = TYPE_SIZE (type);
4331 unsigned HOST_WIDE_INT part_widthi
4332 = tree_low_cst (part_width, 0) / BITS_PER_UNIT;
4333 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
4334 tree index = bitsize_int (indexi);
4335 if (offset / part_widthi
4336 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype)))
4337 return fold_build3 (BIT_FIELD_REF, type, TREE_OPERAND (addr, 0),
4338 part_width, index);
4341 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4342 if (TREE_CODE (addr) == ADDR_EXPR
4343 && TREE_CODE (TREE_TYPE (addrtype)) == COMPLEX_TYPE
4344 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (addrtype))))
4346 tree size = TYPE_SIZE_UNIT (type);
4347 if (tree_int_cst_equal (size, off))
4348 return fold_build1 (IMAGPART_EXPR, type, TREE_OPERAND (addr, 0));
4351 /* *(p + CST) -> MEM_REF <p, CST>. */
4352 if (TREE_CODE (addr) != ADDR_EXPR
4353 || DECL_P (TREE_OPERAND (addr, 0)))
4354 return fold_build2 (MEM_REF, type,
4355 addr,
4356 build_int_cst_wide (ptype,
4357 TREE_INT_CST_LOW (off),
4358 TREE_INT_CST_HIGH (off)));
4361 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4362 if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
4363 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype)))) == INTEGER_CST
4364 && useless_type_conversion_p (type, TREE_TYPE (TREE_TYPE (subtype))))
4366 tree type_domain;
4367 tree min_val = size_zero_node;
4368 tree osub = sub;
4369 sub = gimple_fold_indirect_ref (sub);
4370 if (! sub)
4371 sub = build1 (INDIRECT_REF, TREE_TYPE (subtype), osub);
4372 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
4373 if (type_domain && TYPE_MIN_VALUE (type_domain))
4374 min_val = TYPE_MIN_VALUE (type_domain);
4375 if (TREE_CODE (min_val) == INTEGER_CST)
4376 return build4 (ARRAY_REF, type, sub, min_val, NULL_TREE, NULL_TREE);
4379 return NULL_TREE;
4382 /* Given a pointer value OP0, return a simplified version of an
4383 indirection through OP0, or NULL_TREE if no simplification is
4384 possible. This may only be applied to a rhs of an expression.
4385 Note that the resulting type may be different from the type pointed
4386 to in the sense that it is still compatible from the langhooks
4387 point of view. */
4389 static tree
4390 gimple_fold_indirect_ref_rhs (tree t)
4392 return gimple_fold_indirect_ref (t);
4395 /* Subroutine of gimplify_modify_expr to do simplifications of
4396 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4397 something changes. */
4399 static enum gimplify_status
4400 gimplify_modify_expr_rhs (tree *expr_p, tree *from_p, tree *to_p,
4401 gimple_seq *pre_p, gimple_seq *post_p,
4402 bool want_value)
4404 enum gimplify_status ret = GS_UNHANDLED;
4405 bool changed;
4409 changed = false;
4410 switch (TREE_CODE (*from_p))
4412 case VAR_DECL:
4413 /* If we're assigning from a read-only variable initialized with
4414 a constructor, do the direct assignment from the constructor,
4415 but only if neither source nor target are volatile since this
4416 latter assignment might end up being done on a per-field basis. */
4417 if (DECL_INITIAL (*from_p)
4418 && TREE_READONLY (*from_p)
4419 && !TREE_THIS_VOLATILE (*from_p)
4420 && !TREE_THIS_VOLATILE (*to_p)
4421 && TREE_CODE (DECL_INITIAL (*from_p)) == CONSTRUCTOR)
4423 tree old_from = *from_p;
4424 enum gimplify_status subret;
4426 /* Move the constructor into the RHS. */
4427 *from_p = unshare_expr (DECL_INITIAL (*from_p));
4429 /* Let's see if gimplify_init_constructor will need to put
4430 it in memory. */
4431 subret = gimplify_init_constructor (expr_p, NULL, NULL,
4432 false, true);
4433 if (subret == GS_ERROR)
4435 /* If so, revert the change. */
4436 *from_p = old_from;
4438 else
4440 ret = GS_OK;
4441 changed = true;
4444 break;
4445 case INDIRECT_REF:
4447 /* If we have code like
4449 *(const A*)(A*)&x
4451 where the type of "x" is a (possibly cv-qualified variant
4452 of "A"), treat the entire expression as identical to "x".
4453 This kind of code arises in C++ when an object is bound
4454 to a const reference, and if "x" is a TARGET_EXPR we want
4455 to take advantage of the optimization below. */
4456 bool volatile_p = TREE_THIS_VOLATILE (*from_p);
4457 tree t = gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p, 0));
4458 if (t)
4460 if (TREE_THIS_VOLATILE (t) != volatile_p)
4462 if (TREE_CODE_CLASS (TREE_CODE (t)) == tcc_declaration)
4463 t = build_simple_mem_ref_loc (EXPR_LOCATION (*from_p),
4464 build_fold_addr_expr (t));
4465 if (REFERENCE_CLASS_P (t))
4466 TREE_THIS_VOLATILE (t) = volatile_p;
4468 *from_p = t;
4469 ret = GS_OK;
4470 changed = true;
4472 break;
4475 case TARGET_EXPR:
4477 /* If we are initializing something from a TARGET_EXPR, strip the
4478 TARGET_EXPR and initialize it directly, if possible. This can't
4479 be done if the initializer is void, since that implies that the
4480 temporary is set in some non-trivial way.
4482 ??? What about code that pulls out the temp and uses it
4483 elsewhere? I think that such code never uses the TARGET_EXPR as
4484 an initializer. If I'm wrong, we'll die because the temp won't
4485 have any RTL. In that case, I guess we'll need to replace
4486 references somehow. */
4487 tree init = TARGET_EXPR_INITIAL (*from_p);
4489 if (init
4490 && !VOID_TYPE_P (TREE_TYPE (init)))
4492 *from_p = init;
4493 ret = GS_OK;
4494 changed = true;
4497 break;
4499 case COMPOUND_EXPR:
4500 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4501 caught. */
4502 gimplify_compound_expr (from_p, pre_p, true);
4503 ret = GS_OK;
4504 changed = true;
4505 break;
4507 case CONSTRUCTOR:
4508 /* If we already made some changes, let the front end have a
4509 crack at this before we break it down. */
4510 if (ret != GS_UNHANDLED)
4511 break;
4512 /* If we're initializing from a CONSTRUCTOR, break this into
4513 individual MODIFY_EXPRs. */
4514 return gimplify_init_constructor (expr_p, pre_p, post_p, want_value,
4515 false);
4517 case COND_EXPR:
4518 /* If we're assigning to a non-register type, push the assignment
4519 down into the branches. This is mandatory for ADDRESSABLE types,
4520 since we cannot generate temporaries for such, but it saves a
4521 copy in other cases as well. */
4522 if (!is_gimple_reg_type (TREE_TYPE (*from_p)))
4524 /* This code should mirror the code in gimplify_cond_expr. */
4525 enum tree_code code = TREE_CODE (*expr_p);
4526 tree cond = *from_p;
4527 tree result = *to_p;
4529 ret = gimplify_expr (&result, pre_p, post_p,
4530 is_gimple_lvalue, fb_lvalue);
4531 if (ret != GS_ERROR)
4532 ret = GS_OK;
4534 if (TREE_TYPE (TREE_OPERAND (cond, 1)) != void_type_node)
4535 TREE_OPERAND (cond, 1)
4536 = build2 (code, void_type_node, result,
4537 TREE_OPERAND (cond, 1));
4538 if (TREE_TYPE (TREE_OPERAND (cond, 2)) != void_type_node)
4539 TREE_OPERAND (cond, 2)
4540 = build2 (code, void_type_node, unshare_expr (result),
4541 TREE_OPERAND (cond, 2));
4543 TREE_TYPE (cond) = void_type_node;
4544 recalculate_side_effects (cond);
4546 if (want_value)
4548 gimplify_and_add (cond, pre_p);
4549 *expr_p = unshare_expr (result);
4551 else
4552 *expr_p = cond;
4553 return ret;
4555 break;
4557 case CALL_EXPR:
4558 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4559 return slot so that we don't generate a temporary. */
4560 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p)
4561 && aggregate_value_p (*from_p, *from_p))
4563 bool use_target;
4565 if (!(rhs_predicate_for (*to_p))(*from_p))
4566 /* If we need a temporary, *to_p isn't accurate. */
4567 use_target = false;
4568 /* It's OK to use the return slot directly unless it's an NRV. */
4569 else if (TREE_CODE (*to_p) == RESULT_DECL
4570 && DECL_NAME (*to_p) == NULL_TREE
4571 && needs_to_live_in_memory (*to_p))
4572 use_target = true;
4573 else if (is_gimple_reg_type (TREE_TYPE (*to_p))
4574 || (DECL_P (*to_p) && DECL_REGISTER (*to_p)))
4575 /* Don't force regs into memory. */
4576 use_target = false;
4577 else if (TREE_CODE (*expr_p) == INIT_EXPR)
4578 /* It's OK to use the target directly if it's being
4579 initialized. */
4580 use_target = true;
4581 else if (variably_modified_type_p (TREE_TYPE (*to_p), NULL_TREE))
4582 /* Always use the target and thus RSO for variable-sized types.
4583 GIMPLE cannot deal with a variable-sized assignment
4584 embedded in a call statement. */
4585 use_target = true;
4586 else if (TREE_CODE (*to_p) != SSA_NAME
4587 && (!is_gimple_variable (*to_p)
4588 || needs_to_live_in_memory (*to_p)))
4589 /* Don't use the original target if it's already addressable;
4590 if its address escapes, and the called function uses the
4591 NRV optimization, a conforming program could see *to_p
4592 change before the called function returns; see c++/19317.
4593 When optimizing, the return_slot pass marks more functions
4594 as safe after we have escape info. */
4595 use_target = false;
4596 else
4597 use_target = true;
4599 if (use_target)
4601 CALL_EXPR_RETURN_SLOT_OPT (*from_p) = 1;
4602 mark_addressable (*to_p);
4605 break;
4607 case WITH_SIZE_EXPR:
4608 /* Likewise for calls that return an aggregate of non-constant size,
4609 since we would not be able to generate a temporary at all. */
4610 if (TREE_CODE (TREE_OPERAND (*from_p, 0)) == CALL_EXPR)
4612 *from_p = TREE_OPERAND (*from_p, 0);
4613 /* We don't change ret in this case because the
4614 WITH_SIZE_EXPR might have been added in
4615 gimplify_modify_expr, so returning GS_OK would lead to an
4616 infinite loop. */
4617 changed = true;
4619 break;
4621 /* If we're initializing from a container, push the initialization
4622 inside it. */
4623 case CLEANUP_POINT_EXPR:
4624 case BIND_EXPR:
4625 case STATEMENT_LIST:
4627 tree wrap = *from_p;
4628 tree t;
4630 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_min_lval,
4631 fb_lvalue);
4632 if (ret != GS_ERROR)
4633 ret = GS_OK;
4635 t = voidify_wrapper_expr (wrap, *expr_p);
4636 gcc_assert (t == *expr_p);
4638 if (want_value)
4640 gimplify_and_add (wrap, pre_p);
4641 *expr_p = unshare_expr (*to_p);
4643 else
4644 *expr_p = wrap;
4645 return GS_OK;
4648 case COMPOUND_LITERAL_EXPR:
4650 tree complit = TREE_OPERAND (*expr_p, 1);
4651 tree decl_s = COMPOUND_LITERAL_EXPR_DECL_EXPR (complit);
4652 tree decl = DECL_EXPR_DECL (decl_s);
4653 tree init = DECL_INITIAL (decl);
4655 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4656 into struct T x = { 0, 1, 2 } if the address of the
4657 compound literal has never been taken. */
4658 if (!TREE_ADDRESSABLE (complit)
4659 && !TREE_ADDRESSABLE (decl)
4660 && init)
4662 *expr_p = copy_node (*expr_p);
4663 TREE_OPERAND (*expr_p, 1) = init;
4664 return GS_OK;
4668 default:
4669 break;
4672 while (changed);
4674 return ret;
4678 /* Return true if T looks like a valid GIMPLE statement. */
4680 static bool
4681 is_gimple_stmt (tree t)
4683 const enum tree_code code = TREE_CODE (t);
4685 switch (code)
4687 case NOP_EXPR:
4688 /* The only valid NOP_EXPR is the empty statement. */
4689 return IS_EMPTY_STMT (t);
4691 case BIND_EXPR:
4692 case COND_EXPR:
4693 /* These are only valid if they're void. */
4694 return TREE_TYPE (t) == NULL || VOID_TYPE_P (TREE_TYPE (t));
4696 case SWITCH_EXPR:
4697 case GOTO_EXPR:
4698 case RETURN_EXPR:
4699 case LABEL_EXPR:
4700 case CASE_LABEL_EXPR:
4701 case TRY_CATCH_EXPR:
4702 case TRY_FINALLY_EXPR:
4703 case EH_FILTER_EXPR:
4704 case CATCH_EXPR:
4705 case ASM_EXPR:
4706 case STATEMENT_LIST:
4707 case OMP_PARALLEL:
4708 case OMP_FOR:
4709 case OMP_SECTIONS:
4710 case OMP_SECTION:
4711 case OMP_SINGLE:
4712 case OMP_MASTER:
4713 case OMP_ORDERED:
4714 case OMP_CRITICAL:
4715 case OMP_TASK:
4716 /* These are always void. */
4717 return true;
4719 case CALL_EXPR:
4720 case MODIFY_EXPR:
4721 case PREDICT_EXPR:
4722 /* These are valid regardless of their type. */
4723 return true;
4725 default:
4726 return false;
4731 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4732 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4733 DECL_GIMPLE_REG_P set.
4735 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4736 other, unmodified part of the complex object just before the total store.
4737 As a consequence, if the object is still uninitialized, an undefined value
4738 will be loaded into a register, which may result in a spurious exception
4739 if the register is floating-point and the value happens to be a signaling
4740 NaN for example. Then the fully-fledged complex operations lowering pass
4741 followed by a DCE pass are necessary in order to fix things up. */
4743 static enum gimplify_status
4744 gimplify_modify_expr_complex_part (tree *expr_p, gimple_seq *pre_p,
4745 bool want_value)
4747 enum tree_code code, ocode;
4748 tree lhs, rhs, new_rhs, other, realpart, imagpart;
4750 lhs = TREE_OPERAND (*expr_p, 0);
4751 rhs = TREE_OPERAND (*expr_p, 1);
4752 code = TREE_CODE (lhs);
4753 lhs = TREE_OPERAND (lhs, 0);
4755 ocode = code == REALPART_EXPR ? IMAGPART_EXPR : REALPART_EXPR;
4756 other = build1 (ocode, TREE_TYPE (rhs), lhs);
4757 TREE_NO_WARNING (other) = 1;
4758 other = get_formal_tmp_var (other, pre_p);
4760 realpart = code == REALPART_EXPR ? rhs : other;
4761 imagpart = code == REALPART_EXPR ? other : rhs;
4763 if (TREE_CONSTANT (realpart) && TREE_CONSTANT (imagpart))
4764 new_rhs = build_complex (TREE_TYPE (lhs), realpart, imagpart);
4765 else
4766 new_rhs = build2 (COMPLEX_EXPR, TREE_TYPE (lhs), realpart, imagpart);
4768 gimplify_seq_add_stmt (pre_p, gimple_build_assign (lhs, new_rhs));
4769 *expr_p = (want_value) ? rhs : NULL_TREE;
4771 return GS_ALL_DONE;
4774 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4776 modify_expr
4777 : varname '=' rhs
4778 | '*' ID '=' rhs
4780 PRE_P points to the list where side effects that must happen before
4781 *EXPR_P should be stored.
4783 POST_P points to the list where side effects that must happen after
4784 *EXPR_P should be stored.
4786 WANT_VALUE is nonzero iff we want to use the value of this expression
4787 in another expression. */
4789 static enum gimplify_status
4790 gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
4791 bool want_value)
4793 tree *from_p = &TREE_OPERAND (*expr_p, 1);
4794 tree *to_p = &TREE_OPERAND (*expr_p, 0);
4795 enum gimplify_status ret = GS_UNHANDLED;
4796 gimple assign;
4797 location_t loc = EXPR_LOCATION (*expr_p);
4798 gimple_stmt_iterator gsi;
4800 gcc_assert (TREE_CODE (*expr_p) == MODIFY_EXPR
4801 || TREE_CODE (*expr_p) == INIT_EXPR);
4803 /* Trying to simplify a clobber using normal logic doesn't work,
4804 so handle it here. */
4805 if (TREE_CLOBBER_P (*from_p))
4807 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4808 if (ret == GS_ERROR)
4809 return ret;
4810 gcc_assert (!want_value
4811 && (TREE_CODE (*to_p) == VAR_DECL
4812 || TREE_CODE (*to_p) == MEM_REF));
4813 gimplify_seq_add_stmt (pre_p, gimple_build_assign (*to_p, *from_p));
4814 *expr_p = NULL;
4815 return GS_ALL_DONE;
4818 /* Insert pointer conversions required by the middle-end that are not
4819 required by the frontend. This fixes middle-end type checking for
4820 for example gcc.dg/redecl-6.c. */
4821 if (POINTER_TYPE_P (TREE_TYPE (*to_p)))
4823 STRIP_USELESS_TYPE_CONVERSION (*from_p);
4824 if (!useless_type_conversion_p (TREE_TYPE (*to_p), TREE_TYPE (*from_p)))
4825 *from_p = fold_convert_loc (loc, TREE_TYPE (*to_p), *from_p);
4828 /* See if any simplifications can be done based on what the RHS is. */
4829 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4830 want_value);
4831 if (ret != GS_UNHANDLED)
4832 return ret;
4834 /* For zero sized types only gimplify the left hand side and right hand
4835 side as statements and throw away the assignment. Do this after
4836 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4837 types properly. */
4838 if (zero_sized_type (TREE_TYPE (*from_p)) && !want_value)
4840 gimplify_stmt (from_p, pre_p);
4841 gimplify_stmt (to_p, pre_p);
4842 *expr_p = NULL_TREE;
4843 return GS_ALL_DONE;
4846 /* If the value being copied is of variable width, compute the length
4847 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4848 before gimplifying any of the operands so that we can resolve any
4849 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4850 the size of the expression to be copied, not of the destination, so
4851 that is what we must do here. */
4852 maybe_with_size_expr (from_p);
4854 ret = gimplify_expr (to_p, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
4855 if (ret == GS_ERROR)
4856 return ret;
4858 /* As a special case, we have to temporarily allow for assignments
4859 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4860 a toplevel statement, when gimplifying the GENERIC expression
4861 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4862 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4864 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4865 prevent gimplify_expr from trying to create a new temporary for
4866 foo's LHS, we tell it that it should only gimplify until it
4867 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4868 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4869 and all we need to do here is set 'a' to be its LHS. */
4870 ret = gimplify_expr (from_p, pre_p, post_p, rhs_predicate_for (*to_p),
4871 fb_rvalue);
4872 if (ret == GS_ERROR)
4873 return ret;
4875 /* Now see if the above changed *from_p to something we handle specially. */
4876 ret = gimplify_modify_expr_rhs (expr_p, from_p, to_p, pre_p, post_p,
4877 want_value);
4878 if (ret != GS_UNHANDLED)
4879 return ret;
4881 /* If we've got a variable sized assignment between two lvalues (i.e. does
4882 not involve a call), then we can make things a bit more straightforward
4883 by converting the assignment to memcpy or memset. */
4884 if (TREE_CODE (*from_p) == WITH_SIZE_EXPR)
4886 tree from = TREE_OPERAND (*from_p, 0);
4887 tree size = TREE_OPERAND (*from_p, 1);
4889 if (TREE_CODE (from) == CONSTRUCTOR)
4890 return gimplify_modify_expr_to_memset (expr_p, size, want_value, pre_p);
4892 if (is_gimple_addressable (from))
4894 *from_p = from;
4895 return gimplify_modify_expr_to_memcpy (expr_p, size, want_value,
4896 pre_p);
4900 /* Transform partial stores to non-addressable complex variables into
4901 total stores. This allows us to use real instead of virtual operands
4902 for these variables, which improves optimization. */
4903 if ((TREE_CODE (*to_p) == REALPART_EXPR
4904 || TREE_CODE (*to_p) == IMAGPART_EXPR)
4905 && is_gimple_reg (TREE_OPERAND (*to_p, 0)))
4906 return gimplify_modify_expr_complex_part (expr_p, pre_p, want_value);
4908 /* Try to alleviate the effects of the gimplification creating artificial
4909 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4910 if (!gimplify_ctxp->into_ssa
4911 && TREE_CODE (*from_p) == VAR_DECL
4912 && DECL_IGNORED_P (*from_p)
4913 && DECL_P (*to_p)
4914 && !DECL_IGNORED_P (*to_p))
4916 if (!DECL_NAME (*from_p) && DECL_NAME (*to_p))
4917 DECL_NAME (*from_p)
4918 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p)));
4919 DECL_HAS_DEBUG_EXPR_P (*from_p) = 1;
4920 SET_DECL_DEBUG_EXPR (*from_p, *to_p);
4923 if (want_value && TREE_THIS_VOLATILE (*to_p))
4924 *from_p = get_initialized_tmp_var (*from_p, pre_p, post_p);
4926 if (TREE_CODE (*from_p) == CALL_EXPR)
4928 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4929 instead of a GIMPLE_ASSIGN. */
4930 tree fnptrtype = TREE_TYPE (CALL_EXPR_FN (*from_p));
4931 CALL_EXPR_FN (*from_p) = TREE_OPERAND (CALL_EXPR_FN (*from_p), 0);
4932 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p));
4933 assign = gimple_build_call_from_tree (*from_p);
4934 gimple_call_set_fntype (assign, TREE_TYPE (fnptrtype));
4935 notice_special_calls (assign);
4936 if (!gimple_call_noreturn_p (assign))
4937 gimple_call_set_lhs (assign, *to_p);
4939 else
4941 assign = gimple_build_assign (*to_p, *from_p);
4942 gimple_set_location (assign, EXPR_LOCATION (*expr_p));
4945 if (gimplify_ctxp->into_ssa && is_gimple_reg (*to_p))
4947 /* We should have got an SSA name from the start. */
4948 gcc_assert (TREE_CODE (*to_p) == SSA_NAME);
4951 gimplify_seq_add_stmt (pre_p, assign);
4952 gsi = gsi_last (*pre_p);
4953 fold_stmt (&gsi);
4955 if (want_value)
4957 *expr_p = TREE_THIS_VOLATILE (*to_p) ? *from_p : unshare_expr (*to_p);
4958 return GS_OK;
4960 else
4961 *expr_p = NULL;
4963 return GS_ALL_DONE;
4966 /* Gimplify a comparison between two variable-sized objects. Do this
4967 with a call to BUILT_IN_MEMCMP. */
4969 static enum gimplify_status
4970 gimplify_variable_sized_compare (tree *expr_p)
4972 location_t loc = EXPR_LOCATION (*expr_p);
4973 tree op0 = TREE_OPERAND (*expr_p, 0);
4974 tree op1 = TREE_OPERAND (*expr_p, 1);
4975 tree t, arg, dest, src, expr;
4977 arg = TYPE_SIZE_UNIT (TREE_TYPE (op0));
4978 arg = unshare_expr (arg);
4979 arg = SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg, op0);
4980 src = build_fold_addr_expr_loc (loc, op1);
4981 dest = build_fold_addr_expr_loc (loc, op0);
4982 t = builtin_decl_implicit (BUILT_IN_MEMCMP);
4983 t = build_call_expr_loc (loc, t, 3, dest, src, arg);
4985 expr
4986 = build2 (TREE_CODE (*expr_p), TREE_TYPE (*expr_p), t, integer_zero_node);
4987 SET_EXPR_LOCATION (expr, loc);
4988 *expr_p = expr;
4990 return GS_OK;
4993 /* Gimplify a comparison between two aggregate objects of integral scalar
4994 mode as a comparison between the bitwise equivalent scalar values. */
4996 static enum gimplify_status
4997 gimplify_scalar_mode_aggregate_compare (tree *expr_p)
4999 location_t loc = EXPR_LOCATION (*expr_p);
5000 tree op0 = TREE_OPERAND (*expr_p, 0);
5001 tree op1 = TREE_OPERAND (*expr_p, 1);
5003 tree type = TREE_TYPE (op0);
5004 tree scalar_type = lang_hooks.types.type_for_mode (TYPE_MODE (type), 1);
5006 op0 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op0);
5007 op1 = fold_build1_loc (loc, VIEW_CONVERT_EXPR, scalar_type, op1);
5009 *expr_p
5010 = fold_build2_loc (loc, TREE_CODE (*expr_p), TREE_TYPE (*expr_p), op0, op1);
5012 return GS_OK;
5015 /* Gimplify an expression sequence. This function gimplifies each
5016 expression and rewrites the original expression with the last
5017 expression of the sequence in GIMPLE form.
5019 PRE_P points to the list where the side effects for all the
5020 expressions in the sequence will be emitted.
5022 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
5024 static enum gimplify_status
5025 gimplify_compound_expr (tree *expr_p, gimple_seq *pre_p, bool want_value)
5027 tree t = *expr_p;
5031 tree *sub_p = &TREE_OPERAND (t, 0);
5033 if (TREE_CODE (*sub_p) == COMPOUND_EXPR)
5034 gimplify_compound_expr (sub_p, pre_p, false);
5035 else
5036 gimplify_stmt (sub_p, pre_p);
5038 t = TREE_OPERAND (t, 1);
5040 while (TREE_CODE (t) == COMPOUND_EXPR);
5042 *expr_p = t;
5043 if (want_value)
5044 return GS_OK;
5045 else
5047 gimplify_stmt (expr_p, pre_p);
5048 return GS_ALL_DONE;
5052 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
5053 gimplify. After gimplification, EXPR_P will point to a new temporary
5054 that holds the original value of the SAVE_EXPR node.
5056 PRE_P points to the list where side effects that must happen before
5057 *EXPR_P should be stored. */
5059 static enum gimplify_status
5060 gimplify_save_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5062 enum gimplify_status ret = GS_ALL_DONE;
5063 tree val;
5065 gcc_assert (TREE_CODE (*expr_p) == SAVE_EXPR);
5066 val = TREE_OPERAND (*expr_p, 0);
5068 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
5069 if (!SAVE_EXPR_RESOLVED_P (*expr_p))
5071 /* The operand may be a void-valued expression such as SAVE_EXPRs
5072 generated by the Java frontend for class initialization. It is
5073 being executed only for its side-effects. */
5074 if (TREE_TYPE (val) == void_type_node)
5076 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
5077 is_gimple_stmt, fb_none);
5078 val = NULL;
5080 else
5081 val = get_initialized_tmp_var (val, pre_p, post_p);
5083 TREE_OPERAND (*expr_p, 0) = val;
5084 SAVE_EXPR_RESOLVED_P (*expr_p) = 1;
5087 *expr_p = val;
5089 return ret;
5092 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
5094 unary_expr
5095 : ...
5096 | '&' varname
5099 PRE_P points to the list where side effects that must happen before
5100 *EXPR_P should be stored.
5102 POST_P points to the list where side effects that must happen after
5103 *EXPR_P should be stored. */
5105 static enum gimplify_status
5106 gimplify_addr_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5108 tree expr = *expr_p;
5109 tree op0 = TREE_OPERAND (expr, 0);
5110 enum gimplify_status ret;
5111 location_t loc = EXPR_LOCATION (*expr_p);
5113 switch (TREE_CODE (op0))
5115 case INDIRECT_REF:
5116 do_indirect_ref:
5117 /* Check if we are dealing with an expression of the form '&*ptr'.
5118 While the front end folds away '&*ptr' into 'ptr', these
5119 expressions may be generated internally by the compiler (e.g.,
5120 builtins like __builtin_va_end). */
5121 /* Caution: the silent array decomposition semantics we allow for
5122 ADDR_EXPR means we can't always discard the pair. */
5123 /* Gimplification of the ADDR_EXPR operand may drop
5124 cv-qualification conversions, so make sure we add them if
5125 needed. */
5127 tree op00 = TREE_OPERAND (op0, 0);
5128 tree t_expr = TREE_TYPE (expr);
5129 tree t_op00 = TREE_TYPE (op00);
5131 if (!useless_type_conversion_p (t_expr, t_op00))
5132 op00 = fold_convert_loc (loc, TREE_TYPE (expr), op00);
5133 *expr_p = op00;
5134 ret = GS_OK;
5136 break;
5138 case VIEW_CONVERT_EXPR:
5139 /* Take the address of our operand and then convert it to the type of
5140 this ADDR_EXPR.
5142 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
5143 all clear. The impact of this transformation is even less clear. */
5145 /* If the operand is a useless conversion, look through it. Doing so
5146 guarantees that the ADDR_EXPR and its operand will remain of the
5147 same type. */
5148 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0, 0)))
5149 op0 = TREE_OPERAND (op0, 0);
5151 *expr_p = fold_convert_loc (loc, TREE_TYPE (expr),
5152 build_fold_addr_expr_loc (loc,
5153 TREE_OPERAND (op0, 0)));
5154 ret = GS_OK;
5155 break;
5157 default:
5158 /* We use fb_either here because the C frontend sometimes takes
5159 the address of a call that returns a struct; see
5160 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
5161 the implied temporary explicit. */
5163 /* Make the operand addressable. */
5164 ret = gimplify_expr (&TREE_OPERAND (expr, 0), pre_p, post_p,
5165 is_gimple_addressable, fb_either);
5166 if (ret == GS_ERROR)
5167 break;
5169 /* Then mark it. Beware that it may not be possible to do so directly
5170 if a temporary has been created by the gimplification. */
5171 prepare_gimple_addressable (&TREE_OPERAND (expr, 0), pre_p);
5173 op0 = TREE_OPERAND (expr, 0);
5175 /* For various reasons, the gimplification of the expression
5176 may have made a new INDIRECT_REF. */
5177 if (TREE_CODE (op0) == INDIRECT_REF)
5178 goto do_indirect_ref;
5180 mark_addressable (TREE_OPERAND (expr, 0));
5182 /* The FEs may end up building ADDR_EXPRs early on a decl with
5183 an incomplete type. Re-build ADDR_EXPRs in canonical form
5184 here. */
5185 if (!types_compatible_p (TREE_TYPE (op0), TREE_TYPE (TREE_TYPE (expr))))
5186 *expr_p = build_fold_addr_expr (op0);
5188 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
5189 recompute_tree_invariant_for_addr_expr (*expr_p);
5191 /* If we re-built the ADDR_EXPR add a conversion to the original type
5192 if required. */
5193 if (!useless_type_conversion_p (TREE_TYPE (expr), TREE_TYPE (*expr_p)))
5194 *expr_p = fold_convert (TREE_TYPE (expr), *expr_p);
5196 break;
5199 return ret;
5202 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
5203 value; output operands should be a gimple lvalue. */
5205 static enum gimplify_status
5206 gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5208 tree expr;
5209 int noutputs;
5210 const char **oconstraints;
5211 int i;
5212 tree link;
5213 const char *constraint;
5214 bool allows_mem, allows_reg, is_inout;
5215 enum gimplify_status ret, tret;
5216 gimple stmt;
5217 vec<tree, va_gc> *inputs;
5218 vec<tree, va_gc> *outputs;
5219 vec<tree, va_gc> *clobbers;
5220 vec<tree, va_gc> *labels;
5221 tree link_next;
5223 expr = *expr_p;
5224 noutputs = list_length (ASM_OUTPUTS (expr));
5225 oconstraints = (const char **) alloca ((noutputs) * sizeof (const char *));
5227 inputs = NULL;
5228 outputs = NULL;
5229 clobbers = NULL;
5230 labels = NULL;
5232 ret = GS_ALL_DONE;
5233 link_next = NULL_TREE;
5234 for (i = 0, link = ASM_OUTPUTS (expr); link; ++i, link = link_next)
5236 bool ok;
5237 size_t constraint_len;
5239 link_next = TREE_CHAIN (link);
5241 oconstraints[i]
5242 = constraint
5243 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5244 constraint_len = strlen (constraint);
5245 if (constraint_len == 0)
5246 continue;
5248 ok = parse_output_constraint (&constraint, i, 0, 0,
5249 &allows_mem, &allows_reg, &is_inout);
5250 if (!ok)
5252 ret = GS_ERROR;
5253 is_inout = false;
5256 if (!allows_reg && allows_mem)
5257 mark_addressable (TREE_VALUE (link));
5259 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5260 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
5261 fb_lvalue | fb_mayfail);
5262 if (tret == GS_ERROR)
5264 error ("invalid lvalue in asm output %d", i);
5265 ret = tret;
5268 vec_safe_push (outputs, link);
5269 TREE_CHAIN (link) = NULL_TREE;
5271 if (is_inout)
5273 /* An input/output operand. To give the optimizers more
5274 flexibility, split it into separate input and output
5275 operands. */
5276 tree input;
5277 char buf[10];
5279 /* Turn the in/out constraint into an output constraint. */
5280 char *p = xstrdup (constraint);
5281 p[0] = '=';
5282 TREE_VALUE (TREE_PURPOSE (link)) = build_string (constraint_len, p);
5284 /* And add a matching input constraint. */
5285 if (allows_reg)
5287 sprintf (buf, "%d", i);
5289 /* If there are multiple alternatives in the constraint,
5290 handle each of them individually. Those that allow register
5291 will be replaced with operand number, the others will stay
5292 unchanged. */
5293 if (strchr (p, ',') != NULL)
5295 size_t len = 0, buflen = strlen (buf);
5296 char *beg, *end, *str, *dst;
5298 for (beg = p + 1;;)
5300 end = strchr (beg, ',');
5301 if (end == NULL)
5302 end = strchr (beg, '\0');
5303 if ((size_t) (end - beg) < buflen)
5304 len += buflen + 1;
5305 else
5306 len += end - beg + 1;
5307 if (*end)
5308 beg = end + 1;
5309 else
5310 break;
5313 str = (char *) alloca (len);
5314 for (beg = p + 1, dst = str;;)
5316 const char *tem;
5317 bool mem_p, reg_p, inout_p;
5319 end = strchr (beg, ',');
5320 if (end)
5321 *end = '\0';
5322 beg[-1] = '=';
5323 tem = beg - 1;
5324 parse_output_constraint (&tem, i, 0, 0,
5325 &mem_p, &reg_p, &inout_p);
5326 if (dst != str)
5327 *dst++ = ',';
5328 if (reg_p)
5330 memcpy (dst, buf, buflen);
5331 dst += buflen;
5333 else
5335 if (end)
5336 len = end - beg;
5337 else
5338 len = strlen (beg);
5339 memcpy (dst, beg, len);
5340 dst += len;
5342 if (end)
5343 beg = end + 1;
5344 else
5345 break;
5347 *dst = '\0';
5348 input = build_string (dst - str, str);
5350 else
5351 input = build_string (strlen (buf), buf);
5353 else
5354 input = build_string (constraint_len - 1, constraint + 1);
5356 free (p);
5358 input = build_tree_list (build_tree_list (NULL_TREE, input),
5359 unshare_expr (TREE_VALUE (link)));
5360 ASM_INPUTS (expr) = chainon (ASM_INPUTS (expr), input);
5364 link_next = NULL_TREE;
5365 for (link = ASM_INPUTS (expr); link; ++i, link = link_next)
5367 link_next = TREE_CHAIN (link);
5368 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
5369 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
5370 oconstraints, &allows_mem, &allows_reg);
5372 /* If we can't make copies, we can only accept memory. */
5373 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
5375 if (allows_mem)
5376 allows_reg = 0;
5377 else
5379 error ("impossible constraint in %<asm%>");
5380 error ("non-memory input %d must stay in memory", i);
5381 return GS_ERROR;
5385 /* If the operand is a memory input, it should be an lvalue. */
5386 if (!allows_reg && allows_mem)
5388 tree inputv = TREE_VALUE (link);
5389 STRIP_NOPS (inputv);
5390 if (TREE_CODE (inputv) == PREDECREMENT_EXPR
5391 || TREE_CODE (inputv) == PREINCREMENT_EXPR
5392 || TREE_CODE (inputv) == POSTDECREMENT_EXPR
5393 || TREE_CODE (inputv) == POSTINCREMENT_EXPR)
5394 TREE_VALUE (link) = error_mark_node;
5395 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5396 is_gimple_lvalue, fb_lvalue | fb_mayfail);
5397 mark_addressable (TREE_VALUE (link));
5398 if (tret == GS_ERROR)
5400 if (EXPR_HAS_LOCATION (TREE_VALUE (link)))
5401 input_location = EXPR_LOCATION (TREE_VALUE (link));
5402 error ("memory input %d is not directly addressable", i);
5403 ret = tret;
5406 else
5408 tret = gimplify_expr (&TREE_VALUE (link), pre_p, post_p,
5409 is_gimple_asm_val, fb_rvalue);
5410 if (tret == GS_ERROR)
5411 ret = tret;
5414 TREE_CHAIN (link) = NULL_TREE;
5415 vec_safe_push (inputs, link);
5418 for (link = ASM_CLOBBERS (expr); link; ++i, link = TREE_CHAIN (link))
5419 vec_safe_push (clobbers, link);
5421 for (link = ASM_LABELS (expr); link; ++i, link = TREE_CHAIN (link))
5422 vec_safe_push (labels, link);
5424 /* Do not add ASMs with errors to the gimple IL stream. */
5425 if (ret != GS_ERROR)
5427 stmt = gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr)),
5428 inputs, outputs, clobbers, labels);
5430 gimple_asm_set_volatile (stmt, ASM_VOLATILE_P (expr));
5431 gimple_asm_set_input (stmt, ASM_INPUT_P (expr));
5433 gimplify_seq_add_stmt (pre_p, stmt);
5436 return ret;
5439 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5440 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5441 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5442 return to this function.
5444 FIXME should we complexify the prequeue handling instead? Or use flags
5445 for all the cleanups and let the optimizer tighten them up? The current
5446 code seems pretty fragile; it will break on a cleanup within any
5447 non-conditional nesting. But any such nesting would be broken, anyway;
5448 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5449 and continues out of it. We can do that at the RTL level, though, so
5450 having an optimizer to tighten up try/finally regions would be a Good
5451 Thing. */
5453 static enum gimplify_status
5454 gimplify_cleanup_point_expr (tree *expr_p, gimple_seq *pre_p)
5456 gimple_stmt_iterator iter;
5457 gimple_seq body_sequence = NULL;
5459 tree temp = voidify_wrapper_expr (*expr_p, NULL);
5461 /* We only care about the number of conditions between the innermost
5462 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5463 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5464 int old_conds = gimplify_ctxp->conditions;
5465 gimple_seq old_cleanups = gimplify_ctxp->conditional_cleanups;
5466 bool old_in_cleanup_point_expr = gimplify_ctxp->in_cleanup_point_expr;
5467 gimplify_ctxp->conditions = 0;
5468 gimplify_ctxp->conditional_cleanups = NULL;
5469 gimplify_ctxp->in_cleanup_point_expr = true;
5471 gimplify_stmt (&TREE_OPERAND (*expr_p, 0), &body_sequence);
5473 gimplify_ctxp->conditions = old_conds;
5474 gimplify_ctxp->conditional_cleanups = old_cleanups;
5475 gimplify_ctxp->in_cleanup_point_expr = old_in_cleanup_point_expr;
5477 for (iter = gsi_start (body_sequence); !gsi_end_p (iter); )
5479 gimple wce = gsi_stmt (iter);
5481 if (gimple_code (wce) == GIMPLE_WITH_CLEANUP_EXPR)
5483 if (gsi_one_before_end_p (iter))
5485 /* Note that gsi_insert_seq_before and gsi_remove do not
5486 scan operands, unlike some other sequence mutators. */
5487 if (!gimple_wce_cleanup_eh_only (wce))
5488 gsi_insert_seq_before_without_update (&iter,
5489 gimple_wce_cleanup (wce),
5490 GSI_SAME_STMT);
5491 gsi_remove (&iter, true);
5492 break;
5494 else
5496 gimple gtry;
5497 gimple_seq seq;
5498 enum gimple_try_flags kind;
5500 if (gimple_wce_cleanup_eh_only (wce))
5501 kind = GIMPLE_TRY_CATCH;
5502 else
5503 kind = GIMPLE_TRY_FINALLY;
5504 seq = gsi_split_seq_after (iter);
5506 gtry = gimple_build_try (seq, gimple_wce_cleanup (wce), kind);
5507 /* Do not use gsi_replace here, as it may scan operands.
5508 We want to do a simple structural modification only. */
5509 gsi_set_stmt (&iter, gtry);
5510 iter = gsi_start (gtry->gimple_try.eval);
5513 else
5514 gsi_next (&iter);
5517 gimplify_seq_add_seq (pre_p, body_sequence);
5518 if (temp)
5520 *expr_p = temp;
5521 return GS_OK;
5523 else
5525 *expr_p = NULL;
5526 return GS_ALL_DONE;
5530 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5531 is the cleanup action required. EH_ONLY is true if the cleanup should
5532 only be executed if an exception is thrown, not on normal exit. */
5534 static void
5535 gimple_push_cleanup (tree var, tree cleanup, bool eh_only, gimple_seq *pre_p)
5537 gimple wce;
5538 gimple_seq cleanup_stmts = NULL;
5540 /* Errors can result in improperly nested cleanups. Which results in
5541 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5542 if (seen_error ())
5543 return;
5545 if (gimple_conditional_context ())
5547 /* If we're in a conditional context, this is more complex. We only
5548 want to run the cleanup if we actually ran the initialization that
5549 necessitates it, but we want to run it after the end of the
5550 conditional context. So we wrap the try/finally around the
5551 condition and use a flag to determine whether or not to actually
5552 run the destructor. Thus
5554 test ? f(A()) : 0
5556 becomes (approximately)
5558 flag = 0;
5559 try {
5560 if (test) { A::A(temp); flag = 1; val = f(temp); }
5561 else { val = 0; }
5562 } finally {
5563 if (flag) A::~A(temp);
5567 tree flag = create_tmp_var (boolean_type_node, "cleanup");
5568 gimple ffalse = gimple_build_assign (flag, boolean_false_node);
5569 gimple ftrue = gimple_build_assign (flag, boolean_true_node);
5571 cleanup = build3 (COND_EXPR, void_type_node, flag, cleanup, NULL);
5572 gimplify_stmt (&cleanup, &cleanup_stmts);
5573 wce = gimple_build_wce (cleanup_stmts);
5575 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, ffalse);
5576 gimplify_seq_add_stmt (&gimplify_ctxp->conditional_cleanups, wce);
5577 gimplify_seq_add_stmt (pre_p, ftrue);
5579 /* Because of this manipulation, and the EH edges that jump
5580 threading cannot redirect, the temporary (VAR) will appear
5581 to be used uninitialized. Don't warn. */
5582 TREE_NO_WARNING (var) = 1;
5584 else
5586 gimplify_stmt (&cleanup, &cleanup_stmts);
5587 wce = gimple_build_wce (cleanup_stmts);
5588 gimple_wce_set_cleanup_eh_only (wce, eh_only);
5589 gimplify_seq_add_stmt (pre_p, wce);
5593 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5595 static enum gimplify_status
5596 gimplify_target_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
5598 tree targ = *expr_p;
5599 tree temp = TARGET_EXPR_SLOT (targ);
5600 tree init = TARGET_EXPR_INITIAL (targ);
5601 enum gimplify_status ret;
5603 if (init)
5605 tree cleanup = NULL_TREE;
5607 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5608 to the temps list. Handle also variable length TARGET_EXPRs. */
5609 if (TREE_CODE (DECL_SIZE (temp)) != INTEGER_CST)
5611 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp)))
5612 gimplify_type_sizes (TREE_TYPE (temp), pre_p);
5613 gimplify_vla_decl (temp, pre_p);
5615 else
5616 gimple_add_tmp_var (temp);
5618 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5619 expression is supposed to initialize the slot. */
5620 if (VOID_TYPE_P (TREE_TYPE (init)))
5621 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5622 else
5624 tree init_expr = build2 (INIT_EXPR, void_type_node, temp, init);
5625 init = init_expr;
5626 ret = gimplify_expr (&init, pre_p, post_p, is_gimple_stmt, fb_none);
5627 init = NULL;
5628 ggc_free (init_expr);
5630 if (ret == GS_ERROR)
5632 /* PR c++/28266 Make sure this is expanded only once. */
5633 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5634 return GS_ERROR;
5636 if (init)
5637 gimplify_and_add (init, pre_p);
5639 /* If needed, push the cleanup for the temp. */
5640 if (TARGET_EXPR_CLEANUP (targ))
5642 if (CLEANUP_EH_ONLY (targ))
5643 gimple_push_cleanup (temp, TARGET_EXPR_CLEANUP (targ),
5644 CLEANUP_EH_ONLY (targ), pre_p);
5645 else
5646 cleanup = TARGET_EXPR_CLEANUP (targ);
5649 /* Add a clobber for the temporary going out of scope, like
5650 gimplify_bind_expr. */
5651 if (gimplify_ctxp->in_cleanup_point_expr
5652 && needs_to_live_in_memory (temp)
5653 && flag_stack_reuse == SR_ALL)
5655 tree clobber = build_constructor (TREE_TYPE (temp),
5656 NULL);
5657 TREE_THIS_VOLATILE (clobber) = true;
5658 clobber = build2 (MODIFY_EXPR, TREE_TYPE (temp), temp, clobber);
5659 if (cleanup)
5660 cleanup = build2 (COMPOUND_EXPR, void_type_node, cleanup,
5661 clobber);
5662 else
5663 cleanup = clobber;
5666 if (cleanup)
5667 gimple_push_cleanup (temp, cleanup, false, pre_p);
5669 /* Only expand this once. */
5670 TREE_OPERAND (targ, 3) = init;
5671 TARGET_EXPR_INITIAL (targ) = NULL_TREE;
5673 else
5674 /* We should have expanded this before. */
5675 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp));
5677 *expr_p = temp;
5678 return GS_OK;
5681 /* Gimplification of expression trees. */
5683 /* Gimplify an expression which appears at statement context. The
5684 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5685 NULL, a new sequence is allocated.
5687 Return true if we actually added a statement to the queue. */
5689 bool
5690 gimplify_stmt (tree *stmt_p, gimple_seq *seq_p)
5692 gimple_seq_node last;
5694 last = gimple_seq_last (*seq_p);
5695 gimplify_expr (stmt_p, seq_p, NULL, is_gimple_stmt, fb_none);
5696 return last != gimple_seq_last (*seq_p);
5699 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5700 to CTX. If entries already exist, force them to be some flavor of private.
5701 If there is no enclosing parallel, do nothing. */
5703 void
5704 omp_firstprivatize_variable (struct gimplify_omp_ctx *ctx, tree decl)
5706 splay_tree_node n;
5708 if (decl == NULL || !DECL_P (decl))
5709 return;
5713 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5714 if (n != NULL)
5716 if (n->value & GOVD_SHARED)
5717 n->value = GOVD_FIRSTPRIVATE | (n->value & GOVD_SEEN);
5718 else
5719 return;
5721 else if (ctx->region_type != ORT_WORKSHARE)
5722 omp_add_variable (ctx, decl, GOVD_FIRSTPRIVATE);
5724 ctx = ctx->outer_context;
5726 while (ctx);
5729 /* Similarly for each of the type sizes of TYPE. */
5731 static void
5732 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *ctx, tree type)
5734 if (type == NULL || type == error_mark_node)
5735 return;
5736 type = TYPE_MAIN_VARIANT (type);
5738 if (pointer_set_insert (ctx->privatized_types, type))
5739 return;
5741 switch (TREE_CODE (type))
5743 case INTEGER_TYPE:
5744 case ENUMERAL_TYPE:
5745 case BOOLEAN_TYPE:
5746 case REAL_TYPE:
5747 case FIXED_POINT_TYPE:
5748 omp_firstprivatize_variable (ctx, TYPE_MIN_VALUE (type));
5749 omp_firstprivatize_variable (ctx, TYPE_MAX_VALUE (type));
5750 break;
5752 case ARRAY_TYPE:
5753 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5754 omp_firstprivatize_type_sizes (ctx, TYPE_DOMAIN (type));
5755 break;
5757 case RECORD_TYPE:
5758 case UNION_TYPE:
5759 case QUAL_UNION_TYPE:
5761 tree field;
5762 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
5763 if (TREE_CODE (field) == FIELD_DECL)
5765 omp_firstprivatize_variable (ctx, DECL_FIELD_OFFSET (field));
5766 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (field));
5769 break;
5771 case POINTER_TYPE:
5772 case REFERENCE_TYPE:
5773 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (type));
5774 break;
5776 default:
5777 break;
5780 omp_firstprivatize_variable (ctx, TYPE_SIZE (type));
5781 omp_firstprivatize_variable (ctx, TYPE_SIZE_UNIT (type));
5782 lang_hooks.types.omp_firstprivatize_type_sizes (ctx, type);
5785 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5787 static void
5788 omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags)
5790 splay_tree_node n;
5791 unsigned int nflags;
5792 tree t;
5794 if (error_operand_p (decl))
5795 return;
5797 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5798 there are constructors involved somewhere. */
5799 if (TREE_ADDRESSABLE (TREE_TYPE (decl))
5800 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl)))
5801 flags |= GOVD_SEEN;
5803 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5804 if (n != NULL)
5806 /* We shouldn't be re-adding the decl with the same data
5807 sharing class. */
5808 gcc_assert ((n->value & GOVD_DATA_SHARE_CLASS & flags) == 0);
5809 /* The only combination of data sharing classes we should see is
5810 FIRSTPRIVATE and LASTPRIVATE. */
5811 nflags = n->value | flags;
5812 gcc_assert ((nflags & GOVD_DATA_SHARE_CLASS)
5813 == (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE));
5814 n->value = nflags;
5815 return;
5818 /* When adding a variable-sized variable, we have to handle all sorts
5819 of additional bits of data: the pointer replacement variable, and
5820 the parameters of the type. */
5821 if (DECL_SIZE (decl) && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
5823 /* Add the pointer replacement variable as PRIVATE if the variable
5824 replacement is private, else FIRSTPRIVATE since we'll need the
5825 address of the original variable either for SHARED, or for the
5826 copy into or out of the context. */
5827 if (!(flags & GOVD_LOCAL))
5829 nflags = flags & GOVD_PRIVATE ? GOVD_PRIVATE : GOVD_FIRSTPRIVATE;
5830 nflags |= flags & GOVD_SEEN;
5831 t = DECL_VALUE_EXPR (decl);
5832 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
5833 t = TREE_OPERAND (t, 0);
5834 gcc_assert (DECL_P (t));
5835 omp_add_variable (ctx, t, nflags);
5838 /* Add all of the variable and type parameters (which should have
5839 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5840 omp_firstprivatize_variable (ctx, DECL_SIZE_UNIT (decl));
5841 omp_firstprivatize_variable (ctx, DECL_SIZE (decl));
5842 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5844 /* The variable-sized variable itself is never SHARED, only some form
5845 of PRIVATE. The sharing would take place via the pointer variable
5846 which we remapped above. */
5847 if (flags & GOVD_SHARED)
5848 flags = GOVD_PRIVATE | GOVD_DEBUG_PRIVATE
5849 | (flags & (GOVD_SEEN | GOVD_EXPLICIT));
5851 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5852 alloca statement we generate for the variable, so make sure it
5853 is available. This isn't automatically needed for the SHARED
5854 case, since we won't be allocating local storage then.
5855 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5856 in this case omp_notice_variable will be called later
5857 on when it is gimplified. */
5858 else if (! (flags & GOVD_LOCAL)
5859 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl))))
5860 omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true);
5862 else if (lang_hooks.decls.omp_privatize_by_reference (decl))
5864 gcc_assert ((flags & GOVD_LOCAL) == 0);
5865 omp_firstprivatize_type_sizes (ctx, TREE_TYPE (decl));
5867 /* Similar to the direct variable sized case above, we'll need the
5868 size of references being privatized. */
5869 if ((flags & GOVD_SHARED) == 0)
5871 t = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl)));
5872 if (TREE_CODE (t) != INTEGER_CST)
5873 omp_notice_variable (ctx, t, true);
5877 splay_tree_insert (ctx->variables, (splay_tree_key)decl, flags);
5880 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5881 This just prints out diagnostics about threadprivate variable uses
5882 in untied tasks. If DECL2 is non-NULL, prevent this warning
5883 on that variable. */
5885 static bool
5886 omp_notice_threadprivate_variable (struct gimplify_omp_ctx *ctx, tree decl,
5887 tree decl2)
5889 splay_tree_node n;
5891 if (ctx->region_type != ORT_UNTIED_TASK)
5892 return false;
5893 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5894 if (n == NULL)
5896 error ("threadprivate variable %qE used in untied task",
5897 DECL_NAME (decl));
5898 error_at (ctx->location, "enclosing task");
5899 splay_tree_insert (ctx->variables, (splay_tree_key)decl, 0);
5901 if (decl2)
5902 splay_tree_insert (ctx->variables, (splay_tree_key)decl2, 0);
5903 return false;
5906 /* Record the fact that DECL was used within the OpenMP context CTX.
5907 IN_CODE is true when real code uses DECL, and false when we should
5908 merely emit default(none) errors. Return true if DECL is going to
5909 be remapped and thus DECL shouldn't be gimplified into its
5910 DECL_VALUE_EXPR (if any). */
5912 static bool
5913 omp_notice_variable (struct gimplify_omp_ctx *ctx, tree decl, bool in_code)
5915 splay_tree_node n;
5916 unsigned flags = in_code ? GOVD_SEEN : 0;
5917 bool ret = false, shared;
5919 if (error_operand_p (decl))
5920 return false;
5922 /* Threadprivate variables are predetermined. */
5923 if (is_global_var (decl))
5925 if (DECL_THREAD_LOCAL_P (decl))
5926 return omp_notice_threadprivate_variable (ctx, decl, NULL_TREE);
5928 if (DECL_HAS_VALUE_EXPR_P (decl))
5930 tree value = get_base_address (DECL_VALUE_EXPR (decl));
5932 if (value && DECL_P (value) && DECL_THREAD_LOCAL_P (value))
5933 return omp_notice_threadprivate_variable (ctx, decl, value);
5937 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
5938 if (n == NULL)
5940 enum omp_clause_default_kind default_kind, kind;
5941 struct gimplify_omp_ctx *octx;
5943 if (ctx->region_type == ORT_WORKSHARE)
5944 goto do_outer;
5946 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5947 remapped firstprivate instead of shared. To some extent this is
5948 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5949 default_kind = ctx->default_kind;
5950 kind = lang_hooks.decls.omp_predetermined_sharing (decl);
5951 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
5952 default_kind = kind;
5954 switch (default_kind)
5956 case OMP_CLAUSE_DEFAULT_NONE:
5957 error ("%qE not specified in enclosing parallel",
5958 DECL_NAME (lang_hooks.decls.omp_report_decl (decl)));
5959 if ((ctx->region_type & ORT_TASK) != 0)
5960 error_at (ctx->location, "enclosing task");
5961 else
5962 error_at (ctx->location, "enclosing parallel");
5963 /* FALLTHRU */
5964 case OMP_CLAUSE_DEFAULT_SHARED:
5965 flags |= GOVD_SHARED;
5966 break;
5967 case OMP_CLAUSE_DEFAULT_PRIVATE:
5968 flags |= GOVD_PRIVATE;
5969 break;
5970 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE:
5971 flags |= GOVD_FIRSTPRIVATE;
5972 break;
5973 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
5974 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5975 gcc_assert ((ctx->region_type & ORT_TASK) != 0);
5976 if (ctx->outer_context)
5977 omp_notice_variable (ctx->outer_context, decl, in_code);
5978 for (octx = ctx->outer_context; octx; octx = octx->outer_context)
5980 splay_tree_node n2;
5982 n2 = splay_tree_lookup (octx->variables, (splay_tree_key) decl);
5983 if (n2 && (n2->value & GOVD_DATA_SHARE_CLASS) != GOVD_SHARED)
5985 flags |= GOVD_FIRSTPRIVATE;
5986 break;
5988 if ((octx->region_type & ORT_PARALLEL) != 0)
5989 break;
5991 if (flags & GOVD_FIRSTPRIVATE)
5992 break;
5993 if (octx == NULL
5994 && (TREE_CODE (decl) == PARM_DECL
5995 || (!is_global_var (decl)
5996 && DECL_CONTEXT (decl) == current_function_decl)))
5998 flags |= GOVD_FIRSTPRIVATE;
5999 break;
6001 flags |= GOVD_SHARED;
6002 break;
6003 default:
6004 gcc_unreachable ();
6007 if ((flags & GOVD_PRIVATE)
6008 && lang_hooks.decls.omp_private_outer_ref (decl))
6009 flags |= GOVD_PRIVATE_OUTER_REF;
6011 omp_add_variable (ctx, decl, flags);
6013 shared = (flags & GOVD_SHARED) != 0;
6014 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
6015 goto do_outer;
6018 if ((n->value & (GOVD_SEEN | GOVD_LOCAL)) == 0
6019 && (flags & (GOVD_SEEN | GOVD_LOCAL)) == GOVD_SEEN
6020 && DECL_SIZE (decl)
6021 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
6023 splay_tree_node n2;
6024 tree t = DECL_VALUE_EXPR (decl);
6025 gcc_assert (TREE_CODE (t) == INDIRECT_REF);
6026 t = TREE_OPERAND (t, 0);
6027 gcc_assert (DECL_P (t));
6028 n2 = splay_tree_lookup (ctx->variables, (splay_tree_key) t);
6029 n2->value |= GOVD_SEEN;
6032 shared = ((flags | n->value) & GOVD_SHARED) != 0;
6033 ret = lang_hooks.decls.omp_disregard_value_expr (decl, shared);
6035 /* If nothing changed, there's nothing left to do. */
6036 if ((n->value & flags) == flags)
6037 return ret;
6038 flags |= n->value;
6039 n->value = flags;
6041 do_outer:
6042 /* If the variable is private in the current context, then we don't
6043 need to propagate anything to an outer context. */
6044 if ((flags & GOVD_PRIVATE) && !(flags & GOVD_PRIVATE_OUTER_REF))
6045 return ret;
6046 if (ctx->outer_context
6047 && omp_notice_variable (ctx->outer_context, decl, in_code))
6048 return true;
6049 return ret;
6052 /* Verify that DECL is private within CTX. If there's specific information
6053 to the contrary in the innermost scope, generate an error. */
6055 static bool
6056 omp_is_private (struct gimplify_omp_ctx *ctx, tree decl)
6058 splay_tree_node n;
6060 n = splay_tree_lookup (ctx->variables, (splay_tree_key)decl);
6061 if (n != NULL)
6063 if (n->value & GOVD_SHARED)
6065 if (ctx == gimplify_omp_ctxp)
6067 error ("iteration variable %qE should be private",
6068 DECL_NAME (decl));
6069 n->value = GOVD_PRIVATE;
6070 return true;
6072 else
6073 return false;
6075 else if ((n->value & GOVD_EXPLICIT) != 0
6076 && (ctx == gimplify_omp_ctxp
6077 || (ctx->region_type == ORT_COMBINED_PARALLEL
6078 && gimplify_omp_ctxp->outer_context == ctx)))
6080 if ((n->value & GOVD_FIRSTPRIVATE) != 0)
6081 error ("iteration variable %qE should not be firstprivate",
6082 DECL_NAME (decl));
6083 else if ((n->value & GOVD_REDUCTION) != 0)
6084 error ("iteration variable %qE should not be reduction",
6085 DECL_NAME (decl));
6087 return (ctx == gimplify_omp_ctxp
6088 || (ctx->region_type == ORT_COMBINED_PARALLEL
6089 && gimplify_omp_ctxp->outer_context == ctx));
6092 if (ctx->region_type != ORT_WORKSHARE)
6093 return false;
6094 else if (ctx->outer_context)
6095 return omp_is_private (ctx->outer_context, decl);
6096 return false;
6099 /* Return true if DECL is private within a parallel region
6100 that binds to the current construct's context or in parallel
6101 region's REDUCTION clause. */
6103 static bool
6104 omp_check_private (struct gimplify_omp_ctx *ctx, tree decl)
6106 splay_tree_node n;
6110 ctx = ctx->outer_context;
6111 if (ctx == NULL)
6112 return !(is_global_var (decl)
6113 /* References might be private, but might be shared too. */
6114 || lang_hooks.decls.omp_privatize_by_reference (decl));
6116 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6117 if (n != NULL)
6118 return (n->value & GOVD_SHARED) == 0;
6120 while (ctx->region_type == ORT_WORKSHARE);
6121 return false;
6124 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
6125 and previous omp contexts. */
6127 static void
6128 gimplify_scan_omp_clauses (tree *list_p, gimple_seq *pre_p,
6129 enum omp_region_type region_type)
6131 struct gimplify_omp_ctx *ctx, *outer_ctx;
6132 struct gimplify_ctx gctx;
6133 tree c;
6135 ctx = new_omp_context (region_type);
6136 outer_ctx = ctx->outer_context;
6138 while ((c = *list_p) != NULL)
6140 bool remove = false;
6141 bool notice_outer = true;
6142 const char *check_non_private = NULL;
6143 unsigned int flags;
6144 tree decl;
6146 switch (OMP_CLAUSE_CODE (c))
6148 case OMP_CLAUSE_PRIVATE:
6149 flags = GOVD_PRIVATE | GOVD_EXPLICIT;
6150 if (lang_hooks.decls.omp_private_outer_ref (OMP_CLAUSE_DECL (c)))
6152 flags |= GOVD_PRIVATE_OUTER_REF;
6153 OMP_CLAUSE_PRIVATE_OUTER_REF (c) = 1;
6155 else
6156 notice_outer = false;
6157 goto do_add;
6158 case OMP_CLAUSE_SHARED:
6159 flags = GOVD_SHARED | GOVD_EXPLICIT;
6160 goto do_add;
6161 case OMP_CLAUSE_FIRSTPRIVATE:
6162 flags = GOVD_FIRSTPRIVATE | GOVD_EXPLICIT;
6163 check_non_private = "firstprivate";
6164 goto do_add;
6165 case OMP_CLAUSE_LASTPRIVATE:
6166 flags = GOVD_LASTPRIVATE | GOVD_SEEN | GOVD_EXPLICIT;
6167 check_non_private = "lastprivate";
6168 goto do_add;
6169 case OMP_CLAUSE_REDUCTION:
6170 flags = GOVD_REDUCTION | GOVD_SEEN | GOVD_EXPLICIT;
6171 check_non_private = "reduction";
6172 goto do_add;
6174 do_add:
6175 decl = OMP_CLAUSE_DECL (c);
6176 if (error_operand_p (decl))
6178 remove = true;
6179 break;
6181 omp_add_variable (ctx, decl, flags);
6182 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
6183 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c))
6185 omp_add_variable (ctx, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c),
6186 GOVD_LOCAL | GOVD_SEEN);
6187 gimplify_omp_ctxp = ctx;
6188 push_gimplify_context (&gctx);
6190 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c) = NULL;
6191 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c) = NULL;
6193 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c),
6194 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c));
6195 pop_gimplify_context
6196 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c)));
6197 push_gimplify_context (&gctx);
6198 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c),
6199 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c));
6200 pop_gimplify_context
6201 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c)));
6202 OMP_CLAUSE_REDUCTION_INIT (c) = NULL_TREE;
6203 OMP_CLAUSE_REDUCTION_MERGE (c) = NULL_TREE;
6205 gimplify_omp_ctxp = outer_ctx;
6207 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6208 && OMP_CLAUSE_LASTPRIVATE_STMT (c))
6210 gimplify_omp_ctxp = ctx;
6211 push_gimplify_context (&gctx);
6212 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c)) != BIND_EXPR)
6214 tree bind = build3 (BIND_EXPR, void_type_node, NULL,
6215 NULL, NULL);
6216 TREE_SIDE_EFFECTS (bind) = 1;
6217 BIND_EXPR_BODY (bind) = OMP_CLAUSE_LASTPRIVATE_STMT (c);
6218 OMP_CLAUSE_LASTPRIVATE_STMT (c) = bind;
6220 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c),
6221 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6222 pop_gimplify_context
6223 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c)));
6224 OMP_CLAUSE_LASTPRIVATE_STMT (c) = NULL_TREE;
6226 gimplify_omp_ctxp = outer_ctx;
6228 if (notice_outer)
6229 goto do_notice;
6230 break;
6232 case OMP_CLAUSE_COPYIN:
6233 case OMP_CLAUSE_COPYPRIVATE:
6234 decl = OMP_CLAUSE_DECL (c);
6235 if (error_operand_p (decl))
6237 remove = true;
6238 break;
6240 do_notice:
6241 if (outer_ctx)
6242 omp_notice_variable (outer_ctx, decl, true);
6243 if (check_non_private
6244 && region_type == ORT_WORKSHARE
6245 && omp_check_private (ctx, decl))
6247 error ("%s variable %qE is private in outer context",
6248 check_non_private, DECL_NAME (decl));
6249 remove = true;
6251 break;
6253 case OMP_CLAUSE_FINAL:
6254 case OMP_CLAUSE_IF:
6255 OMP_CLAUSE_OPERAND (c, 0)
6256 = gimple_boolify (OMP_CLAUSE_OPERAND (c, 0));
6257 /* Fall through. */
6259 case OMP_CLAUSE_SCHEDULE:
6260 case OMP_CLAUSE_NUM_THREADS:
6261 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c, 0), pre_p, NULL,
6262 is_gimple_val, fb_rvalue) == GS_ERROR)
6263 remove = true;
6264 break;
6266 case OMP_CLAUSE_NOWAIT:
6267 case OMP_CLAUSE_ORDERED:
6268 case OMP_CLAUSE_UNTIED:
6269 case OMP_CLAUSE_COLLAPSE:
6270 case OMP_CLAUSE_MERGEABLE:
6271 break;
6273 case OMP_CLAUSE_DEFAULT:
6274 ctx->default_kind = OMP_CLAUSE_DEFAULT_KIND (c);
6275 break;
6277 default:
6278 gcc_unreachable ();
6281 if (remove)
6282 *list_p = OMP_CLAUSE_CHAIN (c);
6283 else
6284 list_p = &OMP_CLAUSE_CHAIN (c);
6287 gimplify_omp_ctxp = ctx;
6290 /* For all variables that were not actually used within the context,
6291 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6293 static int
6294 gimplify_adjust_omp_clauses_1 (splay_tree_node n, void *data)
6296 tree *list_p = (tree *) data;
6297 tree decl = (tree) n->key;
6298 unsigned flags = n->value;
6299 enum omp_clause_code code;
6300 tree clause;
6301 bool private_debug;
6303 if (flags & (GOVD_EXPLICIT | GOVD_LOCAL))
6304 return 0;
6305 if ((flags & GOVD_SEEN) == 0)
6306 return 0;
6307 if (flags & GOVD_DEBUG_PRIVATE)
6309 gcc_assert ((flags & GOVD_DATA_SHARE_CLASS) == GOVD_PRIVATE);
6310 private_debug = true;
6312 else
6313 private_debug
6314 = lang_hooks.decls.omp_private_debug_clause (decl,
6315 !!(flags & GOVD_SHARED));
6316 if (private_debug)
6317 code = OMP_CLAUSE_PRIVATE;
6318 else if (flags & GOVD_SHARED)
6320 if (is_global_var (decl))
6322 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp->outer_context;
6323 while (ctx != NULL)
6325 splay_tree_node on
6326 = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6327 if (on && (on->value & (GOVD_FIRSTPRIVATE | GOVD_LASTPRIVATE
6328 | GOVD_PRIVATE | GOVD_REDUCTION)) != 0)
6329 break;
6330 ctx = ctx->outer_context;
6332 if (ctx == NULL)
6333 return 0;
6335 code = OMP_CLAUSE_SHARED;
6337 else if (flags & GOVD_PRIVATE)
6338 code = OMP_CLAUSE_PRIVATE;
6339 else if (flags & GOVD_FIRSTPRIVATE)
6340 code = OMP_CLAUSE_FIRSTPRIVATE;
6341 else
6342 gcc_unreachable ();
6344 clause = build_omp_clause (input_location, code);
6345 OMP_CLAUSE_DECL (clause) = decl;
6346 OMP_CLAUSE_CHAIN (clause) = *list_p;
6347 if (private_debug)
6348 OMP_CLAUSE_PRIVATE_DEBUG (clause) = 1;
6349 else if (code == OMP_CLAUSE_PRIVATE && (flags & GOVD_PRIVATE_OUTER_REF))
6350 OMP_CLAUSE_PRIVATE_OUTER_REF (clause) = 1;
6351 *list_p = clause;
6352 lang_hooks.decls.omp_finish_clause (clause);
6354 return 0;
6357 static void
6358 gimplify_adjust_omp_clauses (tree *list_p)
6360 struct gimplify_omp_ctx *ctx = gimplify_omp_ctxp;
6361 tree c, decl;
6363 while ((c = *list_p) != NULL)
6365 splay_tree_node n;
6366 bool remove = false;
6368 switch (OMP_CLAUSE_CODE (c))
6370 case OMP_CLAUSE_PRIVATE:
6371 case OMP_CLAUSE_SHARED:
6372 case OMP_CLAUSE_FIRSTPRIVATE:
6373 decl = OMP_CLAUSE_DECL (c);
6374 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6375 remove = !(n->value & GOVD_SEEN);
6376 if (! remove)
6378 bool shared = OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED;
6379 if ((n->value & GOVD_DEBUG_PRIVATE)
6380 || lang_hooks.decls.omp_private_debug_clause (decl, shared))
6382 gcc_assert ((n->value & GOVD_DEBUG_PRIVATE) == 0
6383 || ((n->value & GOVD_DATA_SHARE_CLASS)
6384 == GOVD_PRIVATE));
6385 OMP_CLAUSE_SET_CODE (c, OMP_CLAUSE_PRIVATE);
6386 OMP_CLAUSE_PRIVATE_DEBUG (c) = 1;
6389 break;
6391 case OMP_CLAUSE_LASTPRIVATE:
6392 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6393 accurately reflect the presence of a FIRSTPRIVATE clause. */
6394 decl = OMP_CLAUSE_DECL (c);
6395 n = splay_tree_lookup (ctx->variables, (splay_tree_key) decl);
6396 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c)
6397 = (n->value & GOVD_FIRSTPRIVATE) != 0;
6398 break;
6400 case OMP_CLAUSE_REDUCTION:
6401 case OMP_CLAUSE_COPYIN:
6402 case OMP_CLAUSE_COPYPRIVATE:
6403 case OMP_CLAUSE_IF:
6404 case OMP_CLAUSE_NUM_THREADS:
6405 case OMP_CLAUSE_SCHEDULE:
6406 case OMP_CLAUSE_NOWAIT:
6407 case OMP_CLAUSE_ORDERED:
6408 case OMP_CLAUSE_DEFAULT:
6409 case OMP_CLAUSE_UNTIED:
6410 case OMP_CLAUSE_COLLAPSE:
6411 case OMP_CLAUSE_FINAL:
6412 case OMP_CLAUSE_MERGEABLE:
6413 break;
6415 default:
6416 gcc_unreachable ();
6419 if (remove)
6420 *list_p = OMP_CLAUSE_CHAIN (c);
6421 else
6422 list_p = &OMP_CLAUSE_CHAIN (c);
6425 /* Add in any implicit data sharing. */
6426 splay_tree_foreach (ctx->variables, gimplify_adjust_omp_clauses_1, list_p);
6428 gimplify_omp_ctxp = ctx->outer_context;
6429 delete_omp_context (ctx);
6432 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6433 gimplification of the body, as well as scanning the body for used
6434 variables. We need to do this scan now, because variable-sized
6435 decls will be decomposed during gimplification. */
6437 static void
6438 gimplify_omp_parallel (tree *expr_p, gimple_seq *pre_p)
6440 tree expr = *expr_p;
6441 gimple g;
6442 gimple_seq body = NULL;
6443 struct gimplify_ctx gctx;
6445 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr), pre_p,
6446 OMP_PARALLEL_COMBINED (expr)
6447 ? ORT_COMBINED_PARALLEL
6448 : ORT_PARALLEL);
6450 push_gimplify_context (&gctx);
6452 g = gimplify_and_return_first (OMP_PARALLEL_BODY (expr), &body);
6453 if (gimple_code (g) == GIMPLE_BIND)
6454 pop_gimplify_context (g);
6455 else
6456 pop_gimplify_context (NULL);
6458 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr));
6460 g = gimple_build_omp_parallel (body,
6461 OMP_PARALLEL_CLAUSES (expr),
6462 NULL_TREE, NULL_TREE);
6463 if (OMP_PARALLEL_COMBINED (expr))
6464 gimple_omp_set_subcode (g, GF_OMP_PARALLEL_COMBINED);
6465 gimplify_seq_add_stmt (pre_p, g);
6466 *expr_p = NULL_TREE;
6469 /* Gimplify the contents of an OMP_TASK statement. This involves
6470 gimplification of the body, as well as scanning the body for used
6471 variables. We need to do this scan now, because variable-sized
6472 decls will be decomposed during gimplification. */
6474 static void
6475 gimplify_omp_task (tree *expr_p, gimple_seq *pre_p)
6477 tree expr = *expr_p;
6478 gimple g;
6479 gimple_seq body = NULL;
6480 struct gimplify_ctx gctx;
6482 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr), pre_p,
6483 find_omp_clause (OMP_TASK_CLAUSES (expr),
6484 OMP_CLAUSE_UNTIED)
6485 ? ORT_UNTIED_TASK : ORT_TASK);
6487 push_gimplify_context (&gctx);
6489 g = gimplify_and_return_first (OMP_TASK_BODY (expr), &body);
6490 if (gimple_code (g) == GIMPLE_BIND)
6491 pop_gimplify_context (g);
6492 else
6493 pop_gimplify_context (NULL);
6495 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr));
6497 g = gimple_build_omp_task (body,
6498 OMP_TASK_CLAUSES (expr),
6499 NULL_TREE, NULL_TREE,
6500 NULL_TREE, NULL_TREE, NULL_TREE);
6501 gimplify_seq_add_stmt (pre_p, g);
6502 *expr_p = NULL_TREE;
6505 /* Gimplify the gross structure of an OMP_FOR statement. */
6507 static enum gimplify_status
6508 gimplify_omp_for (tree *expr_p, gimple_seq *pre_p)
6510 tree for_stmt, decl, var, t;
6511 enum gimplify_status ret = GS_ALL_DONE;
6512 enum gimplify_status tret;
6513 gimple gfor;
6514 gimple_seq for_body, for_pre_body;
6515 int i;
6517 for_stmt = *expr_p;
6519 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p,
6520 ORT_WORKSHARE);
6522 /* Handle OMP_FOR_INIT. */
6523 for_pre_body = NULL;
6524 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt), &for_pre_body);
6525 OMP_FOR_PRE_BODY (for_stmt) = NULL_TREE;
6527 for_body = NULL;
6528 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6529 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt)));
6530 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt))
6531 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt)));
6532 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6534 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6535 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6536 decl = TREE_OPERAND (t, 0);
6537 gcc_assert (DECL_P (decl));
6538 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl))
6539 || POINTER_TYPE_P (TREE_TYPE (decl)));
6541 /* Make sure the iteration variable is private. */
6542 if (omp_is_private (gimplify_omp_ctxp, decl))
6543 omp_notice_variable (gimplify_omp_ctxp, decl, true);
6544 else
6545 omp_add_variable (gimplify_omp_ctxp, decl, GOVD_PRIVATE | GOVD_SEEN);
6547 /* If DECL is not a gimple register, create a temporary variable to act
6548 as an iteration counter. This is valid, since DECL cannot be
6549 modified in the body of the loop. */
6550 if (!is_gimple_reg (decl))
6552 var = create_tmp_var (TREE_TYPE (decl), get_name (decl));
6553 TREE_OPERAND (t, 0) = var;
6555 gimplify_seq_add_stmt (&for_body, gimple_build_assign (decl, var));
6557 omp_add_variable (gimplify_omp_ctxp, var, GOVD_PRIVATE | GOVD_SEEN);
6559 else
6560 var = decl;
6562 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6563 is_gimple_val, fb_rvalue);
6564 ret = MIN (ret, tret);
6565 if (ret == GS_ERROR)
6566 return ret;
6568 /* Handle OMP_FOR_COND. */
6569 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6570 gcc_assert (COMPARISON_CLASS_P (t));
6571 gcc_assert (TREE_OPERAND (t, 0) == decl);
6573 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6574 is_gimple_val, fb_rvalue);
6575 ret = MIN (ret, tret);
6577 /* Handle OMP_FOR_INCR. */
6578 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6579 switch (TREE_CODE (t))
6581 case PREINCREMENT_EXPR:
6582 case POSTINCREMENT_EXPR:
6583 t = build_int_cst (TREE_TYPE (decl), 1);
6584 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6585 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6586 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6587 break;
6589 case PREDECREMENT_EXPR:
6590 case POSTDECREMENT_EXPR:
6591 t = build_int_cst (TREE_TYPE (decl), -1);
6592 t = build2 (PLUS_EXPR, TREE_TYPE (decl), var, t);
6593 t = build2 (MODIFY_EXPR, TREE_TYPE (var), var, t);
6594 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i) = t;
6595 break;
6597 case MODIFY_EXPR:
6598 gcc_assert (TREE_OPERAND (t, 0) == decl);
6599 TREE_OPERAND (t, 0) = var;
6601 t = TREE_OPERAND (t, 1);
6602 switch (TREE_CODE (t))
6604 case PLUS_EXPR:
6605 if (TREE_OPERAND (t, 1) == decl)
6607 TREE_OPERAND (t, 1) = TREE_OPERAND (t, 0);
6608 TREE_OPERAND (t, 0) = var;
6609 break;
6612 /* Fallthru. */
6613 case MINUS_EXPR:
6614 case POINTER_PLUS_EXPR:
6615 gcc_assert (TREE_OPERAND (t, 0) == decl);
6616 TREE_OPERAND (t, 0) = var;
6617 break;
6618 default:
6619 gcc_unreachable ();
6622 tret = gimplify_expr (&TREE_OPERAND (t, 1), &for_pre_body, NULL,
6623 is_gimple_val, fb_rvalue);
6624 ret = MIN (ret, tret);
6625 break;
6627 default:
6628 gcc_unreachable ();
6631 if (var != decl || TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)) > 1)
6633 tree c;
6634 for (c = OMP_FOR_CLAUSES (for_stmt); c ; c = OMP_CLAUSE_CHAIN (c))
6635 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
6636 && OMP_CLAUSE_DECL (c) == decl
6637 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c) == NULL)
6639 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6640 gcc_assert (TREE_CODE (t) == MODIFY_EXPR);
6641 gcc_assert (TREE_OPERAND (t, 0) == var);
6642 t = TREE_OPERAND (t, 1);
6643 gcc_assert (TREE_CODE (t) == PLUS_EXPR
6644 || TREE_CODE (t) == MINUS_EXPR
6645 || TREE_CODE (t) == POINTER_PLUS_EXPR);
6646 gcc_assert (TREE_OPERAND (t, 0) == var);
6647 t = build2 (TREE_CODE (t), TREE_TYPE (decl), decl,
6648 TREE_OPERAND (t, 1));
6649 gimplify_assign (decl, t,
6650 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c));
6655 gimplify_and_add (OMP_FOR_BODY (for_stmt), &for_body);
6657 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt));
6659 gfor = gimple_build_omp_for (for_body, OMP_FOR_CLAUSES (for_stmt),
6660 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)),
6661 for_pre_body);
6663 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt)); i++)
6665 t = TREE_VEC_ELT (OMP_FOR_INIT (for_stmt), i);
6666 gimple_omp_for_set_index (gfor, i, TREE_OPERAND (t, 0));
6667 gimple_omp_for_set_initial (gfor, i, TREE_OPERAND (t, 1));
6668 t = TREE_VEC_ELT (OMP_FOR_COND (for_stmt), i);
6669 gimple_omp_for_set_cond (gfor, i, TREE_CODE (t));
6670 gimple_omp_for_set_final (gfor, i, TREE_OPERAND (t, 1));
6671 t = TREE_VEC_ELT (OMP_FOR_INCR (for_stmt), i);
6672 gimple_omp_for_set_incr (gfor, i, TREE_OPERAND (t, 1));
6675 gimplify_seq_add_stmt (pre_p, gfor);
6676 return ret == GS_ALL_DONE ? GS_ALL_DONE : GS_ERROR;
6679 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6680 In particular, OMP_SECTIONS and OMP_SINGLE. */
6682 static void
6683 gimplify_omp_workshare (tree *expr_p, gimple_seq *pre_p)
6685 tree expr = *expr_p;
6686 gimple stmt;
6687 gimple_seq body = NULL;
6689 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr), pre_p, ORT_WORKSHARE);
6690 gimplify_and_add (OMP_BODY (expr), &body);
6691 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr));
6693 if (TREE_CODE (expr) == OMP_SECTIONS)
6694 stmt = gimple_build_omp_sections (body, OMP_CLAUSES (expr));
6695 else if (TREE_CODE (expr) == OMP_SINGLE)
6696 stmt = gimple_build_omp_single (body, OMP_CLAUSES (expr));
6697 else
6698 gcc_unreachable ();
6700 gimplify_seq_add_stmt (pre_p, stmt);
6703 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6704 stabilized the lhs of the atomic operation as *ADDR. Return true if
6705 EXPR is this stabilized form. */
6707 static bool
6708 goa_lhs_expr_p (tree expr, tree addr)
6710 /* Also include casts to other type variants. The C front end is fond
6711 of adding these for e.g. volatile variables. This is like
6712 STRIP_TYPE_NOPS but includes the main variant lookup. */
6713 STRIP_USELESS_TYPE_CONVERSION (expr);
6715 if (TREE_CODE (expr) == INDIRECT_REF)
6717 expr = TREE_OPERAND (expr, 0);
6718 while (expr != addr
6719 && (CONVERT_EXPR_P (expr)
6720 || TREE_CODE (expr) == NON_LVALUE_EXPR)
6721 && TREE_CODE (expr) == TREE_CODE (addr)
6722 && types_compatible_p (TREE_TYPE (expr), TREE_TYPE (addr)))
6724 expr = TREE_OPERAND (expr, 0);
6725 addr = TREE_OPERAND (addr, 0);
6727 if (expr == addr)
6728 return true;
6729 return (TREE_CODE (addr) == ADDR_EXPR
6730 && TREE_CODE (expr) == ADDR_EXPR
6731 && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));
6733 if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0))
6734 return true;
6735 return false;
6738 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6739 expression does not involve the lhs, evaluate it into a temporary.
6740 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6741 or -1 if an error was encountered. */
6743 static int
6744 goa_stabilize_expr (tree *expr_p, gimple_seq *pre_p, tree lhs_addr,
6745 tree lhs_var)
6747 tree expr = *expr_p;
6748 int saw_lhs;
6750 if (goa_lhs_expr_p (expr, lhs_addr))
6752 *expr_p = lhs_var;
6753 return 1;
6755 if (is_gimple_val (expr))
6756 return 0;
6758 saw_lhs = 0;
6759 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
6761 case tcc_binary:
6762 case tcc_comparison:
6763 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p, lhs_addr,
6764 lhs_var);
6765 case tcc_unary:
6766 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p, lhs_addr,
6767 lhs_var);
6768 break;
6769 case tcc_expression:
6770 switch (TREE_CODE (expr))
6772 case TRUTH_ANDIF_EXPR:
6773 case TRUTH_ORIF_EXPR:
6774 case TRUTH_AND_EXPR:
6775 case TRUTH_OR_EXPR:
6776 case TRUTH_XOR_EXPR:
6777 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 1), pre_p,
6778 lhs_addr, lhs_var);
6779 case TRUTH_NOT_EXPR:
6780 saw_lhs |= goa_stabilize_expr (&TREE_OPERAND (expr, 0), pre_p,
6781 lhs_addr, lhs_var);
6782 break;
6783 case COMPOUND_EXPR:
6784 /* Break out any preevaluations from cp_build_modify_expr. */
6785 for (; TREE_CODE (expr) == COMPOUND_EXPR;
6786 expr = TREE_OPERAND (expr, 1))
6787 gimplify_stmt (&TREE_OPERAND (expr, 0), pre_p);
6788 *expr_p = expr;
6789 return goa_stabilize_expr (expr_p, pre_p, lhs_addr, lhs_var);
6790 default:
6791 break;
6793 break;
6794 default:
6795 break;
6798 if (saw_lhs == 0)
6800 enum gimplify_status gs;
6801 gs = gimplify_expr (expr_p, pre_p, NULL, is_gimple_val, fb_rvalue);
6802 if (gs != GS_ALL_DONE)
6803 saw_lhs = -1;
6806 return saw_lhs;
6809 /* Gimplify an OMP_ATOMIC statement. */
6811 static enum gimplify_status
6812 gimplify_omp_atomic (tree *expr_p, gimple_seq *pre_p)
6814 tree addr = TREE_OPERAND (*expr_p, 0);
6815 tree rhs = TREE_CODE (*expr_p) == OMP_ATOMIC_READ
6816 ? NULL : TREE_OPERAND (*expr_p, 1);
6817 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr)));
6818 tree tmp_load;
6819 gimple loadstmt, storestmt;
6821 tmp_load = create_tmp_reg (type, NULL);
6822 if (rhs && goa_stabilize_expr (&rhs, pre_p, addr, tmp_load) < 0)
6823 return GS_ERROR;
6825 if (gimplify_expr (&addr, pre_p, NULL, is_gimple_val, fb_rvalue)
6826 != GS_ALL_DONE)
6827 return GS_ERROR;
6829 loadstmt = gimple_build_omp_atomic_load (tmp_load, addr);
6830 gimplify_seq_add_stmt (pre_p, loadstmt);
6831 if (rhs && gimplify_expr (&rhs, pre_p, NULL, is_gimple_val, fb_rvalue)
6832 != GS_ALL_DONE)
6833 return GS_ERROR;
6835 if (TREE_CODE (*expr_p) == OMP_ATOMIC_READ)
6836 rhs = tmp_load;
6837 storestmt = gimple_build_omp_atomic_store (rhs);
6838 gimplify_seq_add_stmt (pre_p, storestmt);
6839 switch (TREE_CODE (*expr_p))
6841 case OMP_ATOMIC_READ:
6842 case OMP_ATOMIC_CAPTURE_OLD:
6843 *expr_p = tmp_load;
6844 gimple_omp_atomic_set_need_value (loadstmt);
6845 break;
6846 case OMP_ATOMIC_CAPTURE_NEW:
6847 *expr_p = rhs;
6848 gimple_omp_atomic_set_need_value (storestmt);
6849 break;
6850 default:
6851 *expr_p = NULL;
6852 break;
6855 return GS_ALL_DONE;
6858 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6859 body, and adding some EH bits. */
6861 static enum gimplify_status
6862 gimplify_transaction (tree *expr_p, gimple_seq *pre_p)
6864 tree expr = *expr_p, temp, tbody = TRANSACTION_EXPR_BODY (expr);
6865 gimple g;
6866 gimple_seq body = NULL;
6867 struct gimplify_ctx gctx;
6868 int subcode = 0;
6870 /* Wrap the transaction body in a BIND_EXPR so we have a context
6871 where to put decls for OpenMP. */
6872 if (TREE_CODE (tbody) != BIND_EXPR)
6874 tree bind = build3 (BIND_EXPR, void_type_node, NULL, tbody, NULL);
6875 TREE_SIDE_EFFECTS (bind) = 1;
6876 SET_EXPR_LOCATION (bind, EXPR_LOCATION (tbody));
6877 TRANSACTION_EXPR_BODY (expr) = bind;
6880 push_gimplify_context (&gctx);
6881 temp = voidify_wrapper_expr (*expr_p, NULL);
6883 g = gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr), &body);
6884 pop_gimplify_context (g);
6886 g = gimple_build_transaction (body, NULL);
6887 if (TRANSACTION_EXPR_OUTER (expr))
6888 subcode = GTMA_IS_OUTER;
6889 else if (TRANSACTION_EXPR_RELAXED (expr))
6890 subcode = GTMA_IS_RELAXED;
6891 gimple_transaction_set_subcode (g, subcode);
6893 gimplify_seq_add_stmt (pre_p, g);
6895 if (temp)
6897 *expr_p = temp;
6898 return GS_OK;
6901 *expr_p = NULL_TREE;
6902 return GS_ALL_DONE;
6905 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6906 expression produces a value to be used as an operand inside a GIMPLE
6907 statement, the value will be stored back in *EXPR_P. This value will
6908 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6909 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6910 emitted in PRE_P and POST_P.
6912 Additionally, this process may overwrite parts of the input
6913 expression during gimplification. Ideally, it should be
6914 possible to do non-destructive gimplification.
6916 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6917 the expression needs to evaluate to a value to be used as
6918 an operand in a GIMPLE statement, this value will be stored in
6919 *EXPR_P on exit. This happens when the caller specifies one
6920 of fb_lvalue or fb_rvalue fallback flags.
6922 PRE_P will contain the sequence of GIMPLE statements corresponding
6923 to the evaluation of EXPR and all the side-effects that must
6924 be executed before the main expression. On exit, the last
6925 statement of PRE_P is the core statement being gimplified. For
6926 instance, when gimplifying 'if (++a)' the last statement in
6927 PRE_P will be 'if (t.1)' where t.1 is the result of
6928 pre-incrementing 'a'.
6930 POST_P will contain the sequence of GIMPLE statements corresponding
6931 to the evaluation of all the side-effects that must be executed
6932 after the main expression. If this is NULL, the post
6933 side-effects are stored at the end of PRE_P.
6935 The reason why the output is split in two is to handle post
6936 side-effects explicitly. In some cases, an expression may have
6937 inner and outer post side-effects which need to be emitted in
6938 an order different from the one given by the recursive
6939 traversal. For instance, for the expression (*p--)++ the post
6940 side-effects of '--' must actually occur *after* the post
6941 side-effects of '++'. However, gimplification will first visit
6942 the inner expression, so if a separate POST sequence was not
6943 used, the resulting sequence would be:
6945 1 t.1 = *p
6946 2 p = p - 1
6947 3 t.2 = t.1 + 1
6948 4 *p = t.2
6950 However, the post-decrement operation in line #2 must not be
6951 evaluated until after the store to *p at line #4, so the
6952 correct sequence should be:
6954 1 t.1 = *p
6955 2 t.2 = t.1 + 1
6956 3 *p = t.2
6957 4 p = p - 1
6959 So, by specifying a separate post queue, it is possible
6960 to emit the post side-effects in the correct order.
6961 If POST_P is NULL, an internal queue will be used. Before
6962 returning to the caller, the sequence POST_P is appended to
6963 the main output sequence PRE_P.
6965 GIMPLE_TEST_F points to a function that takes a tree T and
6966 returns nonzero if T is in the GIMPLE form requested by the
6967 caller. The GIMPLE predicates are in gimple.c.
6969 FALLBACK tells the function what sort of a temporary we want if
6970 gimplification cannot produce an expression that complies with
6971 GIMPLE_TEST_F.
6973 fb_none means that no temporary should be generated
6974 fb_rvalue means that an rvalue is OK to generate
6975 fb_lvalue means that an lvalue is OK to generate
6976 fb_either means that either is OK, but an lvalue is preferable.
6977 fb_mayfail means that gimplification may fail (in which case
6978 GS_ERROR will be returned)
6980 The return value is either GS_ERROR or GS_ALL_DONE, since this
6981 function iterates until EXPR is completely gimplified or an error
6982 occurs. */
6984 enum gimplify_status
6985 gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p,
6986 bool (*gimple_test_f) (tree), fallback_t fallback)
6988 tree tmp;
6989 gimple_seq internal_pre = NULL;
6990 gimple_seq internal_post = NULL;
6991 tree save_expr;
6992 bool is_statement;
6993 location_t saved_location;
6994 enum gimplify_status ret;
6995 gimple_stmt_iterator pre_last_gsi, post_last_gsi;
6997 save_expr = *expr_p;
6998 if (save_expr == NULL_TREE)
6999 return GS_ALL_DONE;
7001 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
7002 is_statement = gimple_test_f == is_gimple_stmt;
7003 if (is_statement)
7004 gcc_assert (pre_p);
7006 /* Consistency checks. */
7007 if (gimple_test_f == is_gimple_reg)
7008 gcc_assert (fallback & (fb_rvalue | fb_lvalue));
7009 else if (gimple_test_f == is_gimple_val
7010 || gimple_test_f == is_gimple_call_addr
7011 || gimple_test_f == is_gimple_condexpr
7012 || gimple_test_f == is_gimple_mem_rhs
7013 || gimple_test_f == is_gimple_mem_rhs_or_call
7014 || gimple_test_f == is_gimple_reg_rhs
7015 || gimple_test_f == is_gimple_reg_rhs_or_call
7016 || gimple_test_f == is_gimple_asm_val
7017 || gimple_test_f == is_gimple_mem_ref_addr)
7018 gcc_assert (fallback & fb_rvalue);
7019 else if (gimple_test_f == is_gimple_min_lval
7020 || gimple_test_f == is_gimple_lvalue)
7021 gcc_assert (fallback & fb_lvalue);
7022 else if (gimple_test_f == is_gimple_addressable)
7023 gcc_assert (fallback & fb_either);
7024 else if (gimple_test_f == is_gimple_stmt)
7025 gcc_assert (fallback == fb_none);
7026 else
7028 /* We should have recognized the GIMPLE_TEST_F predicate to
7029 know what kind of fallback to use in case a temporary is
7030 needed to hold the value or address of *EXPR_P. */
7031 gcc_unreachable ();
7034 /* We used to check the predicate here and return immediately if it
7035 succeeds. This is wrong; the design is for gimplification to be
7036 idempotent, and for the predicates to only test for valid forms, not
7037 whether they are fully simplified. */
7038 if (pre_p == NULL)
7039 pre_p = &internal_pre;
7041 if (post_p == NULL)
7042 post_p = &internal_post;
7044 /* Remember the last statements added to PRE_P and POST_P. Every
7045 new statement added by the gimplification helpers needs to be
7046 annotated with location information. To centralize the
7047 responsibility, we remember the last statement that had been
7048 added to both queues before gimplifying *EXPR_P. If
7049 gimplification produces new statements in PRE_P and POST_P, those
7050 statements will be annotated with the same location information
7051 as *EXPR_P. */
7052 pre_last_gsi = gsi_last (*pre_p);
7053 post_last_gsi = gsi_last (*post_p);
7055 saved_location = input_location;
7056 if (save_expr != error_mark_node
7057 && EXPR_HAS_LOCATION (*expr_p))
7058 input_location = EXPR_LOCATION (*expr_p);
7060 /* Loop over the specific gimplifiers until the toplevel node
7061 remains the same. */
7064 /* Strip away as many useless type conversions as possible
7065 at the toplevel. */
7066 STRIP_USELESS_TYPE_CONVERSION (*expr_p);
7068 /* Remember the expr. */
7069 save_expr = *expr_p;
7071 /* Die, die, die, my darling. */
7072 if (save_expr == error_mark_node
7073 || (TREE_TYPE (save_expr)
7074 && TREE_TYPE (save_expr) == error_mark_node))
7076 ret = GS_ERROR;
7077 break;
7080 /* Do any language-specific gimplification. */
7081 ret = ((enum gimplify_status)
7082 lang_hooks.gimplify_expr (expr_p, pre_p, post_p));
7083 if (ret == GS_OK)
7085 if (*expr_p == NULL_TREE)
7086 break;
7087 if (*expr_p != save_expr)
7088 continue;
7090 else if (ret != GS_UNHANDLED)
7091 break;
7093 /* Make sure that all the cases set 'ret' appropriately. */
7094 ret = GS_UNHANDLED;
7095 switch (TREE_CODE (*expr_p))
7097 /* First deal with the special cases. */
7099 case POSTINCREMENT_EXPR:
7100 case POSTDECREMENT_EXPR:
7101 case PREINCREMENT_EXPR:
7102 case PREDECREMENT_EXPR:
7103 ret = gimplify_self_mod_expr (expr_p, pre_p, post_p,
7104 fallback != fb_none,
7105 TREE_TYPE (*expr_p));
7106 break;
7108 case ARRAY_REF:
7109 case ARRAY_RANGE_REF:
7110 case REALPART_EXPR:
7111 case IMAGPART_EXPR:
7112 case COMPONENT_REF:
7113 case VIEW_CONVERT_EXPR:
7114 ret = gimplify_compound_lval (expr_p, pre_p, post_p,
7115 fallback ? fallback : fb_rvalue);
7116 break;
7118 case COND_EXPR:
7119 ret = gimplify_cond_expr (expr_p, pre_p, fallback);
7121 /* C99 code may assign to an array in a structure value of a
7122 conditional expression, and this has undefined behavior
7123 only on execution, so create a temporary if an lvalue is
7124 required. */
7125 if (fallback == fb_lvalue)
7127 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7128 mark_addressable (*expr_p);
7129 ret = GS_OK;
7131 break;
7133 case CALL_EXPR:
7134 ret = gimplify_call_expr (expr_p, pre_p, fallback != fb_none);
7136 /* C99 code may assign to an array in a structure returned
7137 from a function, and this has undefined behavior only on
7138 execution, so create a temporary if an lvalue is
7139 required. */
7140 if (fallback == fb_lvalue)
7142 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7143 mark_addressable (*expr_p);
7144 ret = GS_OK;
7146 break;
7148 case TREE_LIST:
7149 gcc_unreachable ();
7151 case COMPOUND_EXPR:
7152 ret = gimplify_compound_expr (expr_p, pre_p, fallback != fb_none);
7153 break;
7155 case COMPOUND_LITERAL_EXPR:
7156 ret = gimplify_compound_literal_expr (expr_p, pre_p,
7157 gimple_test_f, fallback);
7158 break;
7160 case MODIFY_EXPR:
7161 case INIT_EXPR:
7162 ret = gimplify_modify_expr (expr_p, pre_p, post_p,
7163 fallback != fb_none);
7164 break;
7166 case TRUTH_ANDIF_EXPR:
7167 case TRUTH_ORIF_EXPR:
7169 /* Preserve the original type of the expression and the
7170 source location of the outer expression. */
7171 tree org_type = TREE_TYPE (*expr_p);
7172 *expr_p = gimple_boolify (*expr_p);
7173 *expr_p = build3_loc (input_location, COND_EXPR,
7174 org_type, *expr_p,
7175 fold_convert_loc
7176 (input_location,
7177 org_type, boolean_true_node),
7178 fold_convert_loc
7179 (input_location,
7180 org_type, boolean_false_node));
7181 ret = GS_OK;
7182 break;
7185 case TRUTH_NOT_EXPR:
7187 tree type = TREE_TYPE (*expr_p);
7188 /* The parsers are careful to generate TRUTH_NOT_EXPR
7189 only with operands that are always zero or one.
7190 We do not fold here but handle the only interesting case
7191 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
7192 *expr_p = gimple_boolify (*expr_p);
7193 if (TYPE_PRECISION (TREE_TYPE (*expr_p)) == 1)
7194 *expr_p = build1_loc (input_location, BIT_NOT_EXPR,
7195 TREE_TYPE (*expr_p),
7196 TREE_OPERAND (*expr_p, 0));
7197 else
7198 *expr_p = build2_loc (input_location, BIT_XOR_EXPR,
7199 TREE_TYPE (*expr_p),
7200 TREE_OPERAND (*expr_p, 0),
7201 build_int_cst (TREE_TYPE (*expr_p), 1));
7202 if (!useless_type_conversion_p (type, TREE_TYPE (*expr_p)))
7203 *expr_p = fold_convert_loc (input_location, type, *expr_p);
7204 ret = GS_OK;
7205 break;
7208 case ADDR_EXPR:
7209 ret = gimplify_addr_expr (expr_p, pre_p, post_p);
7210 break;
7212 case VA_ARG_EXPR:
7213 ret = gimplify_va_arg_expr (expr_p, pre_p, post_p);
7214 break;
7216 CASE_CONVERT:
7217 if (IS_EMPTY_STMT (*expr_p))
7219 ret = GS_ALL_DONE;
7220 break;
7223 if (VOID_TYPE_P (TREE_TYPE (*expr_p))
7224 || fallback == fb_none)
7226 /* Just strip a conversion to void (or in void context) and
7227 try again. */
7228 *expr_p = TREE_OPERAND (*expr_p, 0);
7229 ret = GS_OK;
7230 break;
7233 ret = gimplify_conversion (expr_p);
7234 if (ret == GS_ERROR)
7235 break;
7236 if (*expr_p != save_expr)
7237 break;
7238 /* FALLTHRU */
7240 case FIX_TRUNC_EXPR:
7241 /* unary_expr: ... | '(' cast ')' val | ... */
7242 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7243 is_gimple_val, fb_rvalue);
7244 recalculate_side_effects (*expr_p);
7245 break;
7247 case INDIRECT_REF:
7249 bool volatilep = TREE_THIS_VOLATILE (*expr_p);
7250 bool notrap = TREE_THIS_NOTRAP (*expr_p);
7251 tree saved_ptr_type = TREE_TYPE (TREE_OPERAND (*expr_p, 0));
7253 *expr_p = fold_indirect_ref_loc (input_location, *expr_p);
7254 if (*expr_p != save_expr)
7256 ret = GS_OK;
7257 break;
7260 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7261 is_gimple_reg, fb_rvalue);
7262 if (ret == GS_ERROR)
7263 break;
7265 recalculate_side_effects (*expr_p);
7266 *expr_p = fold_build2_loc (input_location, MEM_REF,
7267 TREE_TYPE (*expr_p),
7268 TREE_OPERAND (*expr_p, 0),
7269 build_int_cst (saved_ptr_type, 0));
7270 TREE_THIS_VOLATILE (*expr_p) = volatilep;
7271 TREE_THIS_NOTRAP (*expr_p) = notrap;
7272 ret = GS_OK;
7273 break;
7276 /* We arrive here through the various re-gimplifcation paths. */
7277 case MEM_REF:
7278 /* First try re-folding the whole thing. */
7279 tmp = fold_binary (MEM_REF, TREE_TYPE (*expr_p),
7280 TREE_OPERAND (*expr_p, 0),
7281 TREE_OPERAND (*expr_p, 1));
7282 if (tmp)
7284 *expr_p = tmp;
7285 recalculate_side_effects (*expr_p);
7286 ret = GS_OK;
7287 break;
7289 /* Avoid re-gimplifying the address operand if it is already
7290 in suitable form. Re-gimplifying would mark the address
7291 operand addressable. Always gimplify when not in SSA form
7292 as we still may have to gimplify decls with value-exprs. */
7293 if (!gimplify_ctxp || !gimplify_ctxp->into_ssa
7294 || !is_gimple_mem_ref_addr (TREE_OPERAND (*expr_p, 0)))
7296 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7297 is_gimple_mem_ref_addr, fb_rvalue);
7298 if (ret == GS_ERROR)
7299 break;
7301 recalculate_side_effects (*expr_p);
7302 ret = GS_ALL_DONE;
7303 break;
7305 /* Constants need not be gimplified. */
7306 case INTEGER_CST:
7307 case REAL_CST:
7308 case FIXED_CST:
7309 case STRING_CST:
7310 case COMPLEX_CST:
7311 case VECTOR_CST:
7312 ret = GS_ALL_DONE;
7313 break;
7315 case CONST_DECL:
7316 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7317 CONST_DECL node. Otherwise the decl is replaceable by its
7318 value. */
7319 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7320 if (fallback & fb_lvalue)
7321 ret = GS_ALL_DONE;
7322 else
7324 *expr_p = DECL_INITIAL (*expr_p);
7325 ret = GS_OK;
7327 break;
7329 case DECL_EXPR:
7330 ret = gimplify_decl_expr (expr_p, pre_p);
7331 break;
7333 case BIND_EXPR:
7334 ret = gimplify_bind_expr (expr_p, pre_p);
7335 break;
7337 case LOOP_EXPR:
7338 ret = gimplify_loop_expr (expr_p, pre_p);
7339 break;
7341 case SWITCH_EXPR:
7342 ret = gimplify_switch_expr (expr_p, pre_p);
7343 break;
7345 case EXIT_EXPR:
7346 ret = gimplify_exit_expr (expr_p);
7347 break;
7349 case GOTO_EXPR:
7350 /* If the target is not LABEL, then it is a computed jump
7351 and the target needs to be gimplified. */
7352 if (TREE_CODE (GOTO_DESTINATION (*expr_p)) != LABEL_DECL)
7354 ret = gimplify_expr (&GOTO_DESTINATION (*expr_p), pre_p,
7355 NULL, is_gimple_val, fb_rvalue);
7356 if (ret == GS_ERROR)
7357 break;
7359 gimplify_seq_add_stmt (pre_p,
7360 gimple_build_goto (GOTO_DESTINATION (*expr_p)));
7361 ret = GS_ALL_DONE;
7362 break;
7364 case PREDICT_EXPR:
7365 gimplify_seq_add_stmt (pre_p,
7366 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p),
7367 PREDICT_EXPR_OUTCOME (*expr_p)));
7368 ret = GS_ALL_DONE;
7369 break;
7371 case LABEL_EXPR:
7372 ret = GS_ALL_DONE;
7373 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p))
7374 == current_function_decl);
7375 gimplify_seq_add_stmt (pre_p,
7376 gimple_build_label (LABEL_EXPR_LABEL (*expr_p)));
7377 break;
7379 case CASE_LABEL_EXPR:
7380 ret = gimplify_case_label_expr (expr_p, pre_p);
7381 break;
7383 case RETURN_EXPR:
7384 ret = gimplify_return_expr (*expr_p, pre_p);
7385 break;
7387 case CONSTRUCTOR:
7388 /* Don't reduce this in place; let gimplify_init_constructor work its
7389 magic. Buf if we're just elaborating this for side effects, just
7390 gimplify any element that has side-effects. */
7391 if (fallback == fb_none)
7393 unsigned HOST_WIDE_INT ix;
7394 tree val;
7395 tree temp = NULL_TREE;
7396 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p), ix, val)
7397 if (TREE_SIDE_EFFECTS (val))
7398 append_to_statement_list (val, &temp);
7400 *expr_p = temp;
7401 ret = temp ? GS_OK : GS_ALL_DONE;
7403 /* C99 code may assign to an array in a constructed
7404 structure or union, and this has undefined behavior only
7405 on execution, so create a temporary if an lvalue is
7406 required. */
7407 else if (fallback == fb_lvalue)
7409 *expr_p = get_initialized_tmp_var (*expr_p, pre_p, post_p);
7410 mark_addressable (*expr_p);
7411 ret = GS_OK;
7413 else
7414 ret = GS_ALL_DONE;
7415 break;
7417 /* The following are special cases that are not handled by the
7418 original GIMPLE grammar. */
7420 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7421 eliminated. */
7422 case SAVE_EXPR:
7423 ret = gimplify_save_expr (expr_p, pre_p, post_p);
7424 break;
7426 case BIT_FIELD_REF:
7427 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7428 post_p, is_gimple_lvalue, fb_either);
7429 recalculate_side_effects (*expr_p);
7430 break;
7432 case TARGET_MEM_REF:
7434 enum gimplify_status r0 = GS_ALL_DONE, r1 = GS_ALL_DONE;
7436 if (TMR_BASE (*expr_p))
7437 r0 = gimplify_expr (&TMR_BASE (*expr_p), pre_p,
7438 post_p, is_gimple_mem_ref_addr, fb_either);
7439 if (TMR_INDEX (*expr_p))
7440 r1 = gimplify_expr (&TMR_INDEX (*expr_p), pre_p,
7441 post_p, is_gimple_val, fb_rvalue);
7442 if (TMR_INDEX2 (*expr_p))
7443 r1 = gimplify_expr (&TMR_INDEX2 (*expr_p), pre_p,
7444 post_p, is_gimple_val, fb_rvalue);
7445 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7446 ret = MIN (r0, r1);
7448 break;
7450 case NON_LVALUE_EXPR:
7451 /* This should have been stripped above. */
7452 gcc_unreachable ();
7454 case ASM_EXPR:
7455 ret = gimplify_asm_expr (expr_p, pre_p, post_p);
7456 break;
7458 case TRY_FINALLY_EXPR:
7459 case TRY_CATCH_EXPR:
7461 gimple_seq eval, cleanup;
7462 gimple try_;
7464 /* Calls to destructors are generated automatically in FINALLY/CATCH
7465 block. They should have location as UNKNOWN_LOCATION. However,
7466 gimplify_call_expr will reset these call stmts to input_location
7467 if it finds stmt's location is unknown. To prevent resetting for
7468 destructors, we set the input_location to unknown.
7469 Note that this only affects the destructor calls in FINALLY/CATCH
7470 block, and will automatically reset to its original value by the
7471 end of gimplify_expr. */
7472 input_location = UNKNOWN_LOCATION;
7473 eval = cleanup = NULL;
7474 gimplify_and_add (TREE_OPERAND (*expr_p, 0), &eval);
7475 gimplify_and_add (TREE_OPERAND (*expr_p, 1), &cleanup);
7476 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7477 if (gimple_seq_empty_p (cleanup))
7479 gimple_seq_add_seq (pre_p, eval);
7480 ret = GS_ALL_DONE;
7481 break;
7483 try_ = gimple_build_try (eval, cleanup,
7484 TREE_CODE (*expr_p) == TRY_FINALLY_EXPR
7485 ? GIMPLE_TRY_FINALLY
7486 : GIMPLE_TRY_CATCH);
7487 if (LOCATION_LOCUS (saved_location) != UNKNOWN_LOCATION)
7488 gimple_set_location (try_, saved_location);
7489 else
7490 gimple_set_location (try_, EXPR_LOCATION (save_expr));
7491 if (TREE_CODE (*expr_p) == TRY_CATCH_EXPR)
7492 gimple_try_set_catch_is_cleanup (try_,
7493 TRY_CATCH_IS_CLEANUP (*expr_p));
7494 gimplify_seq_add_stmt (pre_p, try_);
7495 ret = GS_ALL_DONE;
7496 break;
7499 case CLEANUP_POINT_EXPR:
7500 ret = gimplify_cleanup_point_expr (expr_p, pre_p);
7501 break;
7503 case TARGET_EXPR:
7504 ret = gimplify_target_expr (expr_p, pre_p, post_p);
7505 break;
7507 case CATCH_EXPR:
7509 gimple c;
7510 gimple_seq handler = NULL;
7511 gimplify_and_add (CATCH_BODY (*expr_p), &handler);
7512 c = gimple_build_catch (CATCH_TYPES (*expr_p), handler);
7513 gimplify_seq_add_stmt (pre_p, c);
7514 ret = GS_ALL_DONE;
7515 break;
7518 case EH_FILTER_EXPR:
7520 gimple ehf;
7521 gimple_seq failure = NULL;
7523 gimplify_and_add (EH_FILTER_FAILURE (*expr_p), &failure);
7524 ehf = gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p), failure);
7525 gimple_set_no_warning (ehf, TREE_NO_WARNING (*expr_p));
7526 gimplify_seq_add_stmt (pre_p, ehf);
7527 ret = GS_ALL_DONE;
7528 break;
7531 case OBJ_TYPE_REF:
7533 enum gimplify_status r0, r1;
7534 r0 = gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p), pre_p,
7535 post_p, is_gimple_val, fb_rvalue);
7536 r1 = gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p), pre_p,
7537 post_p, is_gimple_val, fb_rvalue);
7538 TREE_SIDE_EFFECTS (*expr_p) = 0;
7539 ret = MIN (r0, r1);
7541 break;
7543 case LABEL_DECL:
7544 /* We get here when taking the address of a label. We mark
7545 the label as "forced"; meaning it can never be removed and
7546 it is a potential target for any computed goto. */
7547 FORCED_LABEL (*expr_p) = 1;
7548 ret = GS_ALL_DONE;
7549 break;
7551 case STATEMENT_LIST:
7552 ret = gimplify_statement_list (expr_p, pre_p);
7553 break;
7555 case WITH_SIZE_EXPR:
7557 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7558 post_p == &internal_post ? NULL : post_p,
7559 gimple_test_f, fallback);
7560 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7561 is_gimple_val, fb_rvalue);
7562 ret = GS_ALL_DONE;
7564 break;
7566 case VAR_DECL:
7567 case PARM_DECL:
7568 ret = gimplify_var_or_parm_decl (expr_p);
7569 break;
7571 case RESULT_DECL:
7572 /* When within an OpenMP context, notice uses of variables. */
7573 if (gimplify_omp_ctxp)
7574 omp_notice_variable (gimplify_omp_ctxp, *expr_p, true);
7575 ret = GS_ALL_DONE;
7576 break;
7578 case SSA_NAME:
7579 /* Allow callbacks into the gimplifier during optimization. */
7580 ret = GS_ALL_DONE;
7581 break;
7583 case OMP_PARALLEL:
7584 gimplify_omp_parallel (expr_p, pre_p);
7585 ret = GS_ALL_DONE;
7586 break;
7588 case OMP_TASK:
7589 gimplify_omp_task (expr_p, pre_p);
7590 ret = GS_ALL_DONE;
7591 break;
7593 case OMP_FOR:
7594 ret = gimplify_omp_for (expr_p, pre_p);
7595 break;
7597 case OMP_SECTIONS:
7598 case OMP_SINGLE:
7599 gimplify_omp_workshare (expr_p, pre_p);
7600 ret = GS_ALL_DONE;
7601 break;
7603 case OMP_SECTION:
7604 case OMP_MASTER:
7605 case OMP_ORDERED:
7606 case OMP_CRITICAL:
7608 gimple_seq body = NULL;
7609 gimple g;
7611 gimplify_and_add (OMP_BODY (*expr_p), &body);
7612 switch (TREE_CODE (*expr_p))
7614 case OMP_SECTION:
7615 g = gimple_build_omp_section (body);
7616 break;
7617 case OMP_MASTER:
7618 g = gimple_build_omp_master (body);
7619 break;
7620 case OMP_ORDERED:
7621 g = gimple_build_omp_ordered (body);
7622 break;
7623 case OMP_CRITICAL:
7624 g = gimple_build_omp_critical (body,
7625 OMP_CRITICAL_NAME (*expr_p));
7626 break;
7627 default:
7628 gcc_unreachable ();
7630 gimplify_seq_add_stmt (pre_p, g);
7631 ret = GS_ALL_DONE;
7632 break;
7635 case OMP_ATOMIC:
7636 case OMP_ATOMIC_READ:
7637 case OMP_ATOMIC_CAPTURE_OLD:
7638 case OMP_ATOMIC_CAPTURE_NEW:
7639 ret = gimplify_omp_atomic (expr_p, pre_p);
7640 break;
7642 case TRANSACTION_EXPR:
7643 ret = gimplify_transaction (expr_p, pre_p);
7644 break;
7646 case TRUTH_AND_EXPR:
7647 case TRUTH_OR_EXPR:
7648 case TRUTH_XOR_EXPR:
7650 tree orig_type = TREE_TYPE (*expr_p);
7651 tree new_type, xop0, xop1;
7652 *expr_p = gimple_boolify (*expr_p);
7653 new_type = TREE_TYPE (*expr_p);
7654 if (!useless_type_conversion_p (orig_type, new_type))
7656 *expr_p = fold_convert_loc (input_location, orig_type, *expr_p);
7657 ret = GS_OK;
7658 break;
7661 /* Boolified binary truth expressions are semantically equivalent
7662 to bitwise binary expressions. Canonicalize them to the
7663 bitwise variant. */
7664 switch (TREE_CODE (*expr_p))
7666 case TRUTH_AND_EXPR:
7667 TREE_SET_CODE (*expr_p, BIT_AND_EXPR);
7668 break;
7669 case TRUTH_OR_EXPR:
7670 TREE_SET_CODE (*expr_p, BIT_IOR_EXPR);
7671 break;
7672 case TRUTH_XOR_EXPR:
7673 TREE_SET_CODE (*expr_p, BIT_XOR_EXPR);
7674 break;
7675 default:
7676 break;
7678 /* Now make sure that operands have compatible type to
7679 expression's new_type. */
7680 xop0 = TREE_OPERAND (*expr_p, 0);
7681 xop1 = TREE_OPERAND (*expr_p, 1);
7682 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop0)))
7683 TREE_OPERAND (*expr_p, 0) = fold_convert_loc (input_location,
7684 new_type,
7685 xop0);
7686 if (!useless_type_conversion_p (new_type, TREE_TYPE (xop1)))
7687 TREE_OPERAND (*expr_p, 1) = fold_convert_loc (input_location,
7688 new_type,
7689 xop1);
7690 /* Continue classified as tcc_binary. */
7691 goto expr_2;
7694 case FMA_EXPR:
7695 case VEC_COND_EXPR:
7696 case VEC_PERM_EXPR:
7697 /* Classified as tcc_expression. */
7698 goto expr_3;
7700 case POINTER_PLUS_EXPR:
7702 enum gimplify_status r0, r1;
7703 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7704 post_p, is_gimple_val, fb_rvalue);
7705 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7706 post_p, is_gimple_val, fb_rvalue);
7707 recalculate_side_effects (*expr_p);
7708 ret = MIN (r0, r1);
7709 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7710 after gimplifying operands - this is similar to how
7711 it would be folding all gimplified stmts on creation
7712 to have them canonicalized, which is what we eventually
7713 should do anyway. */
7714 if (TREE_CODE (TREE_OPERAND (*expr_p, 1)) == INTEGER_CST
7715 && is_gimple_min_invariant (TREE_OPERAND (*expr_p, 0)))
7717 *expr_p = build_fold_addr_expr_with_type_loc
7718 (input_location,
7719 fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (*expr_p)),
7720 TREE_OPERAND (*expr_p, 0),
7721 fold_convert (ptr_type_node,
7722 TREE_OPERAND (*expr_p, 1))),
7723 TREE_TYPE (*expr_p));
7724 ret = MIN (ret, GS_OK);
7726 break;
7729 default:
7730 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p)))
7732 case tcc_comparison:
7733 /* Handle comparison of objects of non scalar mode aggregates
7734 with a call to memcmp. It would be nice to only have to do
7735 this for variable-sized objects, but then we'd have to allow
7736 the same nest of reference nodes we allow for MODIFY_EXPR and
7737 that's too complex.
7739 Compare scalar mode aggregates as scalar mode values. Using
7740 memcmp for them would be very inefficient at best, and is
7741 plain wrong if bitfields are involved. */
7743 tree type = TREE_TYPE (TREE_OPERAND (*expr_p, 1));
7745 /* Vector comparisons need no boolification. */
7746 if (TREE_CODE (type) == VECTOR_TYPE)
7747 goto expr_2;
7748 else if (!AGGREGATE_TYPE_P (type))
7750 tree org_type = TREE_TYPE (*expr_p);
7751 *expr_p = gimple_boolify (*expr_p);
7752 if (!useless_type_conversion_p (org_type,
7753 TREE_TYPE (*expr_p)))
7755 *expr_p = fold_convert_loc (input_location,
7756 org_type, *expr_p);
7757 ret = GS_OK;
7759 else
7760 goto expr_2;
7762 else if (TYPE_MODE (type) != BLKmode)
7763 ret = gimplify_scalar_mode_aggregate_compare (expr_p);
7764 else
7765 ret = gimplify_variable_sized_compare (expr_p);
7767 break;
7770 /* If *EXPR_P does not need to be special-cased, handle it
7771 according to its class. */
7772 case tcc_unary:
7773 ret = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7774 post_p, is_gimple_val, fb_rvalue);
7775 break;
7777 case tcc_binary:
7778 expr_2:
7780 enum gimplify_status r0, r1;
7782 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7783 post_p, is_gimple_val, fb_rvalue);
7784 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7785 post_p, is_gimple_val, fb_rvalue);
7787 ret = MIN (r0, r1);
7788 break;
7791 expr_3:
7793 enum gimplify_status r0, r1, r2;
7795 r0 = gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p,
7796 post_p, is_gimple_val, fb_rvalue);
7797 r1 = gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p,
7798 post_p, is_gimple_val, fb_rvalue);
7799 r2 = gimplify_expr (&TREE_OPERAND (*expr_p, 2), pre_p,
7800 post_p, is_gimple_val, fb_rvalue);
7802 ret = MIN (MIN (r0, r1), r2);
7803 break;
7806 case tcc_declaration:
7807 case tcc_constant:
7808 ret = GS_ALL_DONE;
7809 goto dont_recalculate;
7811 default:
7812 gcc_unreachable ();
7815 recalculate_side_effects (*expr_p);
7817 dont_recalculate:
7818 break;
7821 gcc_assert (*expr_p || ret != GS_OK);
7823 while (ret == GS_OK);
7825 /* If we encountered an error_mark somewhere nested inside, either
7826 stub out the statement or propagate the error back out. */
7827 if (ret == GS_ERROR)
7829 if (is_statement)
7830 *expr_p = NULL;
7831 goto out;
7834 /* This was only valid as a return value from the langhook, which
7835 we handled. Make sure it doesn't escape from any other context. */
7836 gcc_assert (ret != GS_UNHANDLED);
7838 if (fallback == fb_none && *expr_p && !is_gimple_stmt (*expr_p))
7840 /* We aren't looking for a value, and we don't have a valid
7841 statement. If it doesn't have side-effects, throw it away. */
7842 if (!TREE_SIDE_EFFECTS (*expr_p))
7843 *expr_p = NULL;
7844 else if (!TREE_THIS_VOLATILE (*expr_p))
7846 /* This is probably a _REF that contains something nested that
7847 has side effects. Recurse through the operands to find it. */
7848 enum tree_code code = TREE_CODE (*expr_p);
7850 switch (code)
7852 case COMPONENT_REF:
7853 case REALPART_EXPR:
7854 case IMAGPART_EXPR:
7855 case VIEW_CONVERT_EXPR:
7856 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7857 gimple_test_f, fallback);
7858 break;
7860 case ARRAY_REF:
7861 case ARRAY_RANGE_REF:
7862 gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
7863 gimple_test_f, fallback);
7864 gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, post_p,
7865 gimple_test_f, fallback);
7866 break;
7868 default:
7869 /* Anything else with side-effects must be converted to
7870 a valid statement before we get here. */
7871 gcc_unreachable ();
7874 *expr_p = NULL;
7876 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p))
7877 && TYPE_MODE (TREE_TYPE (*expr_p)) != BLKmode)
7879 /* Historically, the compiler has treated a bare reference
7880 to a non-BLKmode volatile lvalue as forcing a load. */
7881 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p));
7883 /* Normally, we do not want to create a temporary for a
7884 TREE_ADDRESSABLE type because such a type should not be
7885 copied by bitwise-assignment. However, we make an
7886 exception here, as all we are doing here is ensuring that
7887 we read the bytes that make up the type. We use
7888 create_tmp_var_raw because create_tmp_var will abort when
7889 given a TREE_ADDRESSABLE type. */
7890 tree tmp = create_tmp_var_raw (type, "vol");
7891 gimple_add_tmp_var (tmp);
7892 gimplify_assign (tmp, *expr_p, pre_p);
7893 *expr_p = NULL;
7895 else
7896 /* We can't do anything useful with a volatile reference to
7897 an incomplete type, so just throw it away. Likewise for
7898 a BLKmode type, since any implicit inner load should
7899 already have been turned into an explicit one by the
7900 gimplification process. */
7901 *expr_p = NULL;
7904 /* If we are gimplifying at the statement level, we're done. Tack
7905 everything together and return. */
7906 if (fallback == fb_none || is_statement)
7908 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7909 it out for GC to reclaim it. */
7910 *expr_p = NULL_TREE;
7912 if (!gimple_seq_empty_p (internal_pre)
7913 || !gimple_seq_empty_p (internal_post))
7915 gimplify_seq_add_seq (&internal_pre, internal_post);
7916 gimplify_seq_add_seq (pre_p, internal_pre);
7919 /* The result of gimplifying *EXPR_P is going to be the last few
7920 statements in *PRE_P and *POST_P. Add location information
7921 to all the statements that were added by the gimplification
7922 helpers. */
7923 if (!gimple_seq_empty_p (*pre_p))
7924 annotate_all_with_location_after (*pre_p, pre_last_gsi, input_location);
7926 if (!gimple_seq_empty_p (*post_p))
7927 annotate_all_with_location_after (*post_p, post_last_gsi,
7928 input_location);
7930 goto out;
7933 #ifdef ENABLE_GIMPLE_CHECKING
7934 if (*expr_p)
7936 enum tree_code code = TREE_CODE (*expr_p);
7937 /* These expressions should already be in gimple IR form. */
7938 gcc_assert (code != MODIFY_EXPR
7939 && code != ASM_EXPR
7940 && code != BIND_EXPR
7941 && code != CATCH_EXPR
7942 && (code != COND_EXPR || gimplify_ctxp->allow_rhs_cond_expr)
7943 && code != EH_FILTER_EXPR
7944 && code != GOTO_EXPR
7945 && code != LABEL_EXPR
7946 && code != LOOP_EXPR
7947 && code != SWITCH_EXPR
7948 && code != TRY_FINALLY_EXPR
7949 && code != OMP_CRITICAL
7950 && code != OMP_FOR
7951 && code != OMP_MASTER
7952 && code != OMP_ORDERED
7953 && code != OMP_PARALLEL
7954 && code != OMP_SECTIONS
7955 && code != OMP_SECTION
7956 && code != OMP_SINGLE);
7958 #endif
7960 /* Otherwise we're gimplifying a subexpression, so the resulting
7961 value is interesting. If it's a valid operand that matches
7962 GIMPLE_TEST_F, we're done. Unless we are handling some
7963 post-effects internally; if that's the case, we need to copy into
7964 a temporary before adding the post-effects to POST_P. */
7965 if (gimple_seq_empty_p (internal_post) && (*gimple_test_f) (*expr_p))
7966 goto out;
7968 /* Otherwise, we need to create a new temporary for the gimplified
7969 expression. */
7971 /* We can't return an lvalue if we have an internal postqueue. The
7972 object the lvalue refers to would (probably) be modified by the
7973 postqueue; we need to copy the value out first, which means an
7974 rvalue. */
7975 if ((fallback & fb_lvalue)
7976 && gimple_seq_empty_p (internal_post)
7977 && is_gimple_addressable (*expr_p))
7979 /* An lvalue will do. Take the address of the expression, store it
7980 in a temporary, and replace the expression with an INDIRECT_REF of
7981 that temporary. */
7982 tmp = build_fold_addr_expr_loc (input_location, *expr_p);
7983 gimplify_expr (&tmp, pre_p, post_p, is_gimple_reg, fb_rvalue);
7984 *expr_p = build_simple_mem_ref (tmp);
7986 else if ((fallback & fb_rvalue) && is_gimple_reg_rhs_or_call (*expr_p))
7988 /* An rvalue will do. Assign the gimplified expression into a
7989 new temporary TMP and replace the original expression with
7990 TMP. First, make sure that the expression has a type so that
7991 it can be assigned into a temporary. */
7992 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p)));
7993 *expr_p = get_formal_tmp_var (*expr_p, pre_p);
7995 else
7997 #ifdef ENABLE_GIMPLE_CHECKING
7998 if (!(fallback & fb_mayfail))
8000 fprintf (stderr, "gimplification failed:\n");
8001 print_generic_expr (stderr, *expr_p, 0);
8002 debug_tree (*expr_p);
8003 internal_error ("gimplification failed");
8005 #endif
8006 gcc_assert (fallback & fb_mayfail);
8008 /* If this is an asm statement, and the user asked for the
8009 impossible, don't die. Fail and let gimplify_asm_expr
8010 issue an error. */
8011 ret = GS_ERROR;
8012 goto out;
8015 /* Make sure the temporary matches our predicate. */
8016 gcc_assert ((*gimple_test_f) (*expr_p));
8018 if (!gimple_seq_empty_p (internal_post))
8020 annotate_all_with_location (internal_post, input_location);
8021 gimplify_seq_add_seq (pre_p, internal_post);
8024 out:
8025 input_location = saved_location;
8026 return ret;
8029 /* Look through TYPE for variable-sized objects and gimplify each such
8030 size that we find. Add to LIST_P any statements generated. */
8032 void
8033 gimplify_type_sizes (tree type, gimple_seq *list_p)
8035 tree field, t;
8037 if (type == NULL || type == error_mark_node)
8038 return;
8040 /* We first do the main variant, then copy into any other variants. */
8041 type = TYPE_MAIN_VARIANT (type);
8043 /* Avoid infinite recursion. */
8044 if (TYPE_SIZES_GIMPLIFIED (type))
8045 return;
8047 TYPE_SIZES_GIMPLIFIED (type) = 1;
8049 switch (TREE_CODE (type))
8051 case INTEGER_TYPE:
8052 case ENUMERAL_TYPE:
8053 case BOOLEAN_TYPE:
8054 case REAL_TYPE:
8055 case FIXED_POINT_TYPE:
8056 gimplify_one_sizepos (&TYPE_MIN_VALUE (type), list_p);
8057 gimplify_one_sizepos (&TYPE_MAX_VALUE (type), list_p);
8059 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8061 TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
8062 TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
8064 break;
8066 case ARRAY_TYPE:
8067 /* These types may not have declarations, so handle them here. */
8068 gimplify_type_sizes (TREE_TYPE (type), list_p);
8069 gimplify_type_sizes (TYPE_DOMAIN (type), list_p);
8070 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
8071 with assigned stack slots, for -O1+ -g they should be tracked
8072 by VTA. */
8073 if (!(TYPE_NAME (type)
8074 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
8075 && DECL_IGNORED_P (TYPE_NAME (type)))
8076 && TYPE_DOMAIN (type)
8077 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type)))
8079 t = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
8080 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8081 DECL_IGNORED_P (t) = 0;
8082 t = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
8083 if (t && TREE_CODE (t) == VAR_DECL && DECL_ARTIFICIAL (t))
8084 DECL_IGNORED_P (t) = 0;
8086 break;
8088 case RECORD_TYPE:
8089 case UNION_TYPE:
8090 case QUAL_UNION_TYPE:
8091 for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8092 if (TREE_CODE (field) == FIELD_DECL)
8094 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field), list_p);
8095 gimplify_one_sizepos (&DECL_SIZE (field), list_p);
8096 gimplify_one_sizepos (&DECL_SIZE_UNIT (field), list_p);
8097 gimplify_type_sizes (TREE_TYPE (field), list_p);
8099 break;
8101 case POINTER_TYPE:
8102 case REFERENCE_TYPE:
8103 /* We used to recurse on the pointed-to type here, which turned out to
8104 be incorrect because its definition might refer to variables not
8105 yet initialized at this point if a forward declaration is involved.
8107 It was actually useful for anonymous pointed-to types to ensure
8108 that the sizes evaluation dominates every possible later use of the
8109 values. Restricting to such types here would be safe since there
8110 is no possible forward declaration around, but would introduce an
8111 undesirable middle-end semantic to anonymity. We then defer to
8112 front-ends the responsibility of ensuring that the sizes are
8113 evaluated both early and late enough, e.g. by attaching artificial
8114 type declarations to the tree. */
8115 break;
8117 default:
8118 break;
8121 gimplify_one_sizepos (&TYPE_SIZE (type), list_p);
8122 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type), list_p);
8124 for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
8126 TYPE_SIZE (t) = TYPE_SIZE (type);
8127 TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
8128 TYPE_SIZES_GIMPLIFIED (t) = 1;
8132 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
8133 a size or position, has had all of its SAVE_EXPRs evaluated.
8134 We add any required statements to *STMT_P. */
8136 void
8137 gimplify_one_sizepos (tree *expr_p, gimple_seq *stmt_p)
8139 tree expr = *expr_p;
8141 /* We don't do anything if the value isn't there, is constant, or contains
8142 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
8143 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
8144 will want to replace it with a new variable, but that will cause problems
8145 if this type is from outside the function. It's OK to have that here. */
8146 if (is_gimple_sizepos (expr))
8147 return;
8149 *expr_p = unshare_expr (expr);
8151 gimplify_expr (expr_p, stmt_p, NULL, is_gimple_val, fb_rvalue);
8154 /* Gimplify the body of statements of FNDECL and return a GIMPLE_BIND node
8155 containing the sequence of corresponding GIMPLE statements. If DO_PARMS
8156 is true, also gimplify the parameters. */
8158 gimple
8159 gimplify_body (tree fndecl, bool do_parms)
8161 location_t saved_location = input_location;
8162 gimple_seq parm_stmts, seq;
8163 gimple outer_bind;
8164 struct gimplify_ctx gctx;
8165 struct cgraph_node *cgn;
8167 timevar_push (TV_TREE_GIMPLIFY);
8169 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
8170 gimplification. */
8171 default_rtl_profile ();
8173 gcc_assert (gimplify_ctxp == NULL);
8174 push_gimplify_context (&gctx);
8176 /* Unshare most shared trees in the body and in that of any nested functions.
8177 It would seem we don't have to do this for nested functions because
8178 they are supposed to be output and then the outer function gimplified
8179 first, but the g++ front end doesn't always do it that way. */
8180 unshare_body (fndecl);
8181 unvisit_body (fndecl);
8183 cgn = cgraph_get_node (fndecl);
8184 if (cgn && cgn->origin)
8185 nonlocal_vlas = pointer_set_create ();
8187 /* Make sure input_location isn't set to something weird. */
8188 input_location = DECL_SOURCE_LOCATION (fndecl);
8190 /* Resolve callee-copies. This has to be done before processing
8191 the body so that DECL_VALUE_EXPR gets processed correctly. */
8192 parm_stmts = do_parms ? gimplify_parameters () : NULL;
8194 /* Gimplify the function's body. */
8195 seq = NULL;
8196 gimplify_stmt (&DECL_SAVED_TREE (fndecl), &seq);
8197 outer_bind = gimple_seq_first_stmt (seq);
8198 if (!outer_bind)
8200 outer_bind = gimple_build_nop ();
8201 gimplify_seq_add_stmt (&seq, outer_bind);
8204 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
8205 not the case, wrap everything in a GIMPLE_BIND to make it so. */
8206 if (gimple_code (outer_bind) == GIMPLE_BIND
8207 && gimple_seq_first (seq) == gimple_seq_last (seq))
8209 else
8210 outer_bind = gimple_build_bind (NULL_TREE, seq, NULL);
8212 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8214 /* If we had callee-copies statements, insert them at the beginning
8215 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8216 if (!gimple_seq_empty_p (parm_stmts))
8218 tree parm;
8220 gimplify_seq_add_seq (&parm_stmts, gimple_bind_body (outer_bind));
8221 gimple_bind_set_body (outer_bind, parm_stmts);
8223 for (parm = DECL_ARGUMENTS (current_function_decl);
8224 parm; parm = DECL_CHAIN (parm))
8225 if (DECL_HAS_VALUE_EXPR_P (parm))
8227 DECL_HAS_VALUE_EXPR_P (parm) = 0;
8228 DECL_IGNORED_P (parm) = 0;
8232 if (nonlocal_vlas)
8234 pointer_set_destroy (nonlocal_vlas);
8235 nonlocal_vlas = NULL;
8238 pop_gimplify_context (outer_bind);
8239 gcc_assert (gimplify_ctxp == NULL);
8241 #ifdef ENABLE_CHECKING
8242 if (!seen_error ())
8243 verify_gimple_in_seq (gimple_bind_body (outer_bind));
8244 #endif
8246 timevar_pop (TV_TREE_GIMPLIFY);
8247 input_location = saved_location;
8249 return outer_bind;
8252 typedef char *char_p; /* For DEF_VEC_P. */
8254 /* Return whether we should exclude FNDECL from instrumentation. */
8256 bool
8257 flag_instrument_functions_exclude_p (tree fndecl)
8259 vec<char_p> *v;
8261 v = (vec<char_p> *) flag_instrument_functions_exclude_functions;
8262 if (v && v->length () > 0)
8264 const char *name;
8265 int i;
8266 char *s;
8268 name = lang_hooks.decl_printable_name (fndecl, 0);
8269 FOR_EACH_VEC_ELT (*v, i, s)
8270 if (strstr (name, s) != NULL)
8271 return true;
8274 v = (vec<char_p> *) flag_instrument_functions_exclude_files;
8275 if (v && v->length () > 0)
8277 const char *name;
8278 int i;
8279 char *s;
8281 name = DECL_SOURCE_FILE (fndecl);
8282 FOR_EACH_VEC_ELT (*v, i, s)
8283 if (strstr (name, s) != NULL)
8284 return true;
8287 return false;
8290 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8291 node for the function we want to gimplify.
8293 Return the sequence of GIMPLE statements corresponding to the body
8294 of FNDECL. */
8296 void
8297 gimplify_function_tree (tree fndecl)
8299 tree parm, ret;
8300 gimple_seq seq;
8301 gimple bind;
8303 gcc_assert (!gimple_body (fndecl));
8305 if (DECL_STRUCT_FUNCTION (fndecl))
8306 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
8307 else
8308 push_struct_function (fndecl);
8310 for (parm = DECL_ARGUMENTS (fndecl); parm ; parm = DECL_CHAIN (parm))
8312 /* Preliminarily mark non-addressed complex variables as eligible
8313 for promotion to gimple registers. We'll transform their uses
8314 as we find them. */
8315 if ((TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE
8316 || TREE_CODE (TREE_TYPE (parm)) == VECTOR_TYPE)
8317 && !TREE_THIS_VOLATILE (parm)
8318 && !needs_to_live_in_memory (parm))
8319 DECL_GIMPLE_REG_P (parm) = 1;
8322 ret = DECL_RESULT (fndecl);
8323 if ((TREE_CODE (TREE_TYPE (ret)) == COMPLEX_TYPE
8324 || TREE_CODE (TREE_TYPE (ret)) == VECTOR_TYPE)
8325 && !needs_to_live_in_memory (ret))
8326 DECL_GIMPLE_REG_P (ret) = 1;
8328 bind = gimplify_body (fndecl, true);
8330 /* The tree body of the function is no longer needed, replace it
8331 with the new GIMPLE body. */
8332 seq = NULL;
8333 gimple_seq_add_stmt (&seq, bind);
8334 gimple_set_body (fndecl, seq);
8336 /* If we're instrumenting function entry/exit, then prepend the call to
8337 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8338 catch the exit hook. */
8339 /* ??? Add some way to ignore exceptions for this TFE. */
8340 if (flag_instrument_function_entry_exit
8341 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl)
8342 && !flag_instrument_functions_exclude_p (fndecl))
8344 tree x;
8345 gimple new_bind;
8346 gimple tf;
8347 gimple_seq cleanup = NULL, body = NULL;
8348 tree tmp_var;
8349 gimple call;
8351 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8352 call = gimple_build_call (x, 1, integer_zero_node);
8353 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8354 gimple_call_set_lhs (call, tmp_var);
8355 gimplify_seq_add_stmt (&cleanup, call);
8356 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT);
8357 call = gimple_build_call (x, 2,
8358 build_fold_addr_expr (current_function_decl),
8359 tmp_var);
8360 gimplify_seq_add_stmt (&cleanup, call);
8361 tf = gimple_build_try (seq, cleanup, GIMPLE_TRY_FINALLY);
8363 x = builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS);
8364 call = gimple_build_call (x, 1, integer_zero_node);
8365 tmp_var = create_tmp_var (ptr_type_node, "return_addr");
8366 gimple_call_set_lhs (call, tmp_var);
8367 gimplify_seq_add_stmt (&body, call);
8368 x = builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER);
8369 call = gimple_build_call (x, 2,
8370 build_fold_addr_expr (current_function_decl),
8371 tmp_var);
8372 gimplify_seq_add_stmt (&body, call);
8373 gimplify_seq_add_stmt (&body, tf);
8374 new_bind = gimple_build_bind (NULL, body, gimple_bind_block (bind));
8375 /* Clear the block for BIND, since it is no longer directly inside
8376 the function, but within a try block. */
8377 gimple_bind_set_block (bind, NULL);
8379 /* Replace the current function body with the body
8380 wrapped in the try/finally TF. */
8381 seq = NULL;
8382 gimple_seq_add_stmt (&seq, new_bind);
8383 gimple_set_body (fndecl, seq);
8386 DECL_SAVED_TREE (fndecl) = NULL_TREE;
8387 cfun->curr_properties = PROP_gimple_any;
8389 pop_cfun ();
8392 /* Some transformations like inlining may invalidate the GIMPLE form
8393 for operands. This function traverses all the operands in STMT and
8394 gimplifies anything that is not a valid gimple operand. Any new
8395 GIMPLE statements are inserted before *GSI_P. */
8397 void
8398 gimple_regimplify_operands (gimple stmt, gimple_stmt_iterator *gsi_p)
8400 size_t i, num_ops;
8401 tree lhs;
8402 gimple_seq pre = NULL;
8403 gimple post_stmt = NULL;
8404 struct gimplify_ctx gctx;
8406 push_gimplify_context (&gctx);
8407 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8409 switch (gimple_code (stmt))
8411 case GIMPLE_COND:
8412 gimplify_expr (gimple_cond_lhs_ptr (stmt), &pre, NULL,
8413 is_gimple_val, fb_rvalue);
8414 gimplify_expr (gimple_cond_rhs_ptr (stmt), &pre, NULL,
8415 is_gimple_val, fb_rvalue);
8416 break;
8417 case GIMPLE_SWITCH:
8418 gimplify_expr (gimple_switch_index_ptr (stmt), &pre, NULL,
8419 is_gimple_val, fb_rvalue);
8420 break;
8421 case GIMPLE_OMP_ATOMIC_LOAD:
8422 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt), &pre, NULL,
8423 is_gimple_val, fb_rvalue);
8424 break;
8425 case GIMPLE_ASM:
8427 size_t i, noutputs = gimple_asm_noutputs (stmt);
8428 const char *constraint, **oconstraints;
8429 bool allows_mem, allows_reg, is_inout;
8431 oconstraints
8432 = (const char **) alloca ((noutputs) * sizeof (const char *));
8433 for (i = 0; i < noutputs; i++)
8435 tree op = gimple_asm_output_op (stmt, i);
8436 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8437 oconstraints[i] = constraint;
8438 parse_output_constraint (&constraint, i, 0, 0, &allows_mem,
8439 &allows_reg, &is_inout);
8440 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8441 is_inout ? is_gimple_min_lval : is_gimple_lvalue,
8442 fb_lvalue | fb_mayfail);
8444 for (i = 0; i < gimple_asm_ninputs (stmt); i++)
8446 tree op = gimple_asm_input_op (stmt, i);
8447 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op)));
8448 parse_input_constraint (&constraint, 0, 0, noutputs, 0,
8449 oconstraints, &allows_mem, &allows_reg);
8450 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op))) && allows_mem)
8451 allows_reg = 0;
8452 if (!allows_reg && allows_mem)
8453 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8454 is_gimple_lvalue, fb_lvalue | fb_mayfail);
8455 else
8456 gimplify_expr (&TREE_VALUE (op), &pre, NULL,
8457 is_gimple_asm_val, fb_rvalue);
8460 break;
8461 default:
8462 /* NOTE: We start gimplifying operands from last to first to
8463 make sure that side-effects on the RHS of calls, assignments
8464 and ASMs are executed before the LHS. The ordering is not
8465 important for other statements. */
8466 num_ops = gimple_num_ops (stmt);
8467 for (i = num_ops; i > 0; i--)
8469 tree op = gimple_op (stmt, i - 1);
8470 if (op == NULL_TREE)
8471 continue;
8472 if (i == 1 && (is_gimple_call (stmt) || is_gimple_assign (stmt)))
8473 gimplify_expr (&op, &pre, NULL, is_gimple_lvalue, fb_lvalue);
8474 else if (i == 2
8475 && is_gimple_assign (stmt)
8476 && num_ops == 2
8477 && get_gimple_rhs_class (gimple_expr_code (stmt))
8478 == GIMPLE_SINGLE_RHS)
8479 gimplify_expr (&op, &pre, NULL,
8480 rhs_predicate_for (gimple_assign_lhs (stmt)),
8481 fb_rvalue);
8482 else if (i == 2 && is_gimple_call (stmt))
8484 if (TREE_CODE (op) == FUNCTION_DECL)
8485 continue;
8486 gimplify_expr (&op, &pre, NULL, is_gimple_call_addr, fb_rvalue);
8488 else
8489 gimplify_expr (&op, &pre, NULL, is_gimple_val, fb_rvalue);
8490 gimple_set_op (stmt, i - 1, op);
8493 lhs = gimple_get_lhs (stmt);
8494 /* If the LHS changed it in a way that requires a simple RHS,
8495 create temporary. */
8496 if (lhs && !is_gimple_reg (lhs))
8498 bool need_temp = false;
8500 if (is_gimple_assign (stmt)
8501 && num_ops == 2
8502 && get_gimple_rhs_class (gimple_expr_code (stmt))
8503 == GIMPLE_SINGLE_RHS)
8504 gimplify_expr (gimple_assign_rhs1_ptr (stmt), &pre, NULL,
8505 rhs_predicate_for (gimple_assign_lhs (stmt)),
8506 fb_rvalue);
8507 else if (is_gimple_reg (lhs))
8509 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8511 if (is_gimple_call (stmt))
8513 i = gimple_call_flags (stmt);
8514 if ((i & ECF_LOOPING_CONST_OR_PURE)
8515 || !(i & (ECF_CONST | ECF_PURE)))
8516 need_temp = true;
8518 if (stmt_can_throw_internal (stmt))
8519 need_temp = true;
8522 else
8524 if (is_gimple_reg_type (TREE_TYPE (lhs)))
8525 need_temp = true;
8526 else if (TYPE_MODE (TREE_TYPE (lhs)) != BLKmode)
8528 if (is_gimple_call (stmt))
8530 tree fndecl = gimple_call_fndecl (stmt);
8532 if (!aggregate_value_p (TREE_TYPE (lhs), fndecl)
8533 && !(fndecl && DECL_RESULT (fndecl)
8534 && DECL_BY_REFERENCE (DECL_RESULT (fndecl))))
8535 need_temp = true;
8537 else
8538 need_temp = true;
8541 if (need_temp)
8543 tree temp = create_tmp_reg (TREE_TYPE (lhs), NULL);
8544 if (gimple_in_ssa_p (cfun))
8545 temp = make_ssa_name (temp, NULL);
8546 gimple_set_lhs (stmt, temp);
8547 post_stmt = gimple_build_assign (lhs, temp);
8548 if (TREE_CODE (lhs) == SSA_NAME)
8549 SSA_NAME_DEF_STMT (lhs) = post_stmt;
8552 break;
8555 if (!gimple_seq_empty_p (pre))
8556 gsi_insert_seq_before (gsi_p, pre, GSI_SAME_STMT);
8557 if (post_stmt)
8558 gsi_insert_after (gsi_p, post_stmt, GSI_NEW_STMT);
8560 pop_gimplify_context (NULL);
8563 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8564 the predicate that will hold for the result. If VAR is not NULL, make the
8565 base variable of the final destination be VAR if suitable. */
8567 tree
8568 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
8569 gimple_predicate gimple_test_f, tree var)
8571 enum gimplify_status ret;
8572 struct gimplify_ctx gctx;
8573 location_t saved_location;
8575 *stmts = NULL;
8577 /* gimple_test_f might be more strict than is_gimple_val, make
8578 sure we pass both. Just checking gimple_test_f doesn't work
8579 because most gimple predicates do not work recursively. */
8580 if (is_gimple_val (expr)
8581 && (*gimple_test_f) (expr))
8582 return expr;
8584 push_gimplify_context (&gctx);
8585 gimplify_ctxp->into_ssa = gimple_in_ssa_p (cfun);
8586 gimplify_ctxp->allow_rhs_cond_expr = true;
8587 saved_location = input_location;
8588 input_location = UNKNOWN_LOCATION;
8590 if (var)
8592 if (gimplify_ctxp->into_ssa
8593 && is_gimple_reg (var))
8594 var = make_ssa_name (var, NULL);
8595 expr = build2 (MODIFY_EXPR, TREE_TYPE (var), var, expr);
8598 if (TREE_CODE (expr) != MODIFY_EXPR
8599 && TREE_TYPE (expr) == void_type_node)
8601 gimplify_and_add (expr, stmts);
8602 expr = NULL_TREE;
8604 else
8606 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
8607 gcc_assert (ret != GS_ERROR);
8610 input_location = saved_location;
8611 pop_gimplify_context (NULL);
8613 return expr;
8616 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8617 force the result to be either ssa_name or an invariant, otherwise
8618 just force it to be a rhs expression. If VAR is not NULL, make the
8619 base variable of the final destination be VAR if suitable. */
8621 tree
8622 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
8624 return force_gimple_operand_1 (expr, stmts,
8625 simple ? is_gimple_val : is_gimple_reg_rhs,
8626 var);
8629 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8630 and VAR. If some statements are produced, emits them at GSI.
8631 If BEFORE is true. the statements are appended before GSI, otherwise
8632 they are appended after it. M specifies the way GSI moves after
8633 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8635 tree
8636 force_gimple_operand_gsi_1 (gimple_stmt_iterator *gsi, tree expr,
8637 gimple_predicate gimple_test_f,
8638 tree var, bool before,
8639 enum gsi_iterator_update m)
8641 gimple_seq stmts;
8643 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var);
8645 if (!gimple_seq_empty_p (stmts))
8647 if (before)
8648 gsi_insert_seq_before (gsi, stmts, m);
8649 else
8650 gsi_insert_seq_after (gsi, stmts, m);
8653 return expr;
8656 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8657 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8658 otherwise just force it to be a rhs expression. If some statements are
8659 produced, emits them at GSI. If BEFORE is true, the statements are
8660 appended before GSI, otherwise they are appended after it. M specifies
8661 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8662 are the usual values). */
8664 tree
8665 force_gimple_operand_gsi (gimple_stmt_iterator *gsi, tree expr,
8666 bool simple_p, tree var, bool before,
8667 enum gsi_iterator_update m)
8669 return force_gimple_operand_gsi_1 (gsi, expr,
8670 simple_p
8671 ? is_gimple_val : is_gimple_reg_rhs,
8672 var, before, m);
8676 #include "gt-gimplify.h"