1 /* Tree lowering pass. This pass converts the GENERIC functions-as-trees
2 tree representation into the GIMPLE form.
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
4 2012 Free Software Foundation, Inc.
5 Major work done by Sebastian Pop <s.pop@laposte.net>,
6 Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>.
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
26 #include "coretypes.h"
30 #include "tree-iterator.h"
31 #include "tree-inline.h"
32 #include "tree-pretty-print.h"
33 #include "langhooks.h"
34 #include "tree-flow.h"
41 #include "diagnostic-core.h"
43 #include "pointer-set.h"
44 #include "splay-tree.h"
48 #include "langhooks-def.h" /* FIXME: for lhd_set_decl_assembler_name */
49 #include "tree-pass.h" /* FIXME: only for PROP_gimple_any */
51 enum gimplify_omp_var_data
57 GOVD_FIRSTPRIVATE
= 16,
58 GOVD_LASTPRIVATE
= 32,
61 GOVD_DEBUG_PRIVATE
= 256,
62 GOVD_PRIVATE_OUTER_REF
= 512,
63 GOVD_DATA_SHARE_CLASS
= (GOVD_SHARED
| GOVD_PRIVATE
| GOVD_FIRSTPRIVATE
64 | GOVD_LASTPRIVATE
| GOVD_REDUCTION
| GOVD_LOCAL
)
72 ORT_COMBINED_PARALLEL
= 3,
77 struct gimplify_omp_ctx
79 struct gimplify_omp_ctx
*outer_context
;
81 struct pointer_set_t
*privatized_types
;
83 enum omp_clause_default_kind default_kind
;
84 enum omp_region_type region_type
;
87 static struct gimplify_ctx
*gimplify_ctxp
;
88 static struct gimplify_omp_ctx
*gimplify_omp_ctxp
;
91 /* Formal (expression) temporary table handling: multiple occurrences of
92 the same scalar expression are evaluated into the same temporary. */
94 typedef struct gimple_temp_hash_elt
97 tree temp
; /* Value */
100 /* Forward declaration. */
101 static enum gimplify_status
gimplify_compound_expr (tree
*, gimple_seq
*, bool);
103 /* Mark X addressable. Unlike the langhook we expect X to be in gimple
104 form and we don't do any syntax checking. */
107 mark_addressable (tree x
)
109 while (handled_component_p (x
))
110 x
= TREE_OPERAND (x
, 0);
111 if (TREE_CODE (x
) == MEM_REF
112 && TREE_CODE (TREE_OPERAND (x
, 0)) == ADDR_EXPR
)
113 x
= TREE_OPERAND (TREE_OPERAND (x
, 0), 0);
114 if (TREE_CODE (x
) != VAR_DECL
115 && TREE_CODE (x
) != PARM_DECL
116 && TREE_CODE (x
) != RESULT_DECL
)
118 TREE_ADDRESSABLE (x
) = 1;
120 /* Also mark the artificial SSA_NAME that points to the partition of X. */
121 if (TREE_CODE (x
) == VAR_DECL
122 && !DECL_EXTERNAL (x
)
124 && cfun
->gimple_df
!= NULL
125 && cfun
->gimple_df
->decls_to_pointers
!= NULL
)
128 = pointer_map_contains (cfun
->gimple_df
->decls_to_pointers
, x
);
130 TREE_ADDRESSABLE (*(tree
*)namep
) = 1;
134 /* Return a hash value for a formal temporary table entry. */
137 gimple_tree_hash (const void *p
)
139 tree t
= ((const elt_t
*) p
)->val
;
140 return iterative_hash_expr (t
, 0);
143 /* Compare two formal temporary table entries. */
146 gimple_tree_eq (const void *p1
, const void *p2
)
148 tree t1
= ((const elt_t
*) p1
)->val
;
149 tree t2
= ((const elt_t
*) p2
)->val
;
150 enum tree_code code
= TREE_CODE (t1
);
152 if (TREE_CODE (t2
) != code
153 || TREE_TYPE (t1
) != TREE_TYPE (t2
))
156 if (!operand_equal_p (t1
, t2
, 0))
159 #ifdef ENABLE_CHECKING
160 /* Only allow them to compare equal if they also hash equal; otherwise
161 results are nondeterminate, and we fail bootstrap comparison. */
162 gcc_assert (gimple_tree_hash (p1
) == gimple_tree_hash (p2
));
168 /* Link gimple statement GS to the end of the sequence *SEQ_P. If
169 *SEQ_P is NULL, a new sequence is allocated. This function is
170 similar to gimple_seq_add_stmt, but does not scan the operands.
171 During gimplification, we need to manipulate statement sequences
172 before the def/use vectors have been constructed. */
175 gimple_seq_add_stmt_without_update (gimple_seq
*seq_p
, gimple gs
)
177 gimple_stmt_iterator si
;
182 si
= gsi_last (*seq_p
);
183 gsi_insert_after_without_update (&si
, gs
, GSI_NEW_STMT
);
186 /* Shorter alias name for the above function for use in gimplify.c
190 gimplify_seq_add_stmt (gimple_seq
*seq_p
, gimple gs
)
192 gimple_seq_add_stmt_without_update (seq_p
, gs
);
195 /* Append sequence SRC to the end of sequence *DST_P. If *DST_P is
196 NULL, a new sequence is allocated. This function is
197 similar to gimple_seq_add_seq, but does not scan the operands.
198 During gimplification, we need to manipulate statement sequences
199 before the def/use vectors have been constructed. */
202 gimplify_seq_add_seq (gimple_seq
*dst_p
, gimple_seq src
)
204 gimple_stmt_iterator si
;
209 si
= gsi_last (*dst_p
);
210 gsi_insert_seq_after_without_update (&si
, src
, GSI_NEW_STMT
);
213 /* Set up a context for the gimplifier. */
216 push_gimplify_context (struct gimplify_ctx
*c
)
218 memset (c
, '\0', sizeof (*c
));
219 c
->prev_context
= gimplify_ctxp
;
223 /* Tear down a context for the gimplifier. If BODY is non-null, then
224 put the temporaries into the outer BIND_EXPR. Otherwise, put them
227 BODY is not a sequence, but the first tuple in a sequence. */
230 pop_gimplify_context (gimple body
)
232 struct gimplify_ctx
*c
= gimplify_ctxp
;
234 gcc_assert (c
&& (c
->bind_expr_stack
== NULL
235 || VEC_empty (gimple
, c
->bind_expr_stack
)));
236 VEC_free (gimple
, heap
, c
->bind_expr_stack
);
237 gimplify_ctxp
= c
->prev_context
;
240 declare_vars (c
->temps
, body
, false);
242 record_vars (c
->temps
);
245 htab_delete (c
->temp_htab
);
248 /* Push a GIMPLE_BIND tuple onto the stack of bindings. */
251 gimple_push_bind_expr (gimple gimple_bind
)
253 if (gimplify_ctxp
->bind_expr_stack
== NULL
)
254 gimplify_ctxp
->bind_expr_stack
= VEC_alloc (gimple
, heap
, 8);
255 VEC_safe_push (gimple
, heap
, gimplify_ctxp
->bind_expr_stack
, gimple_bind
);
258 /* Pop the first element off the stack of bindings. */
261 gimple_pop_bind_expr (void)
263 VEC_pop (gimple
, gimplify_ctxp
->bind_expr_stack
);
266 /* Return the first element of the stack of bindings. */
269 gimple_current_bind_expr (void)
271 return VEC_last (gimple
, gimplify_ctxp
->bind_expr_stack
);
274 /* Return the stack of bindings created during gimplification. */
277 gimple_bind_expr_stack (void)
279 return gimplify_ctxp
->bind_expr_stack
;
282 /* Return true iff there is a COND_EXPR between us and the innermost
283 CLEANUP_POINT_EXPR. This info is used by gimple_push_cleanup. */
286 gimple_conditional_context (void)
288 return gimplify_ctxp
->conditions
> 0;
291 /* Note that we've entered a COND_EXPR. */
294 gimple_push_condition (void)
296 #ifdef ENABLE_GIMPLE_CHECKING
297 if (gimplify_ctxp
->conditions
== 0)
298 gcc_assert (gimple_seq_empty_p (gimplify_ctxp
->conditional_cleanups
));
300 ++(gimplify_ctxp
->conditions
);
303 /* Note that we've left a COND_EXPR. If we're back at unconditional scope
304 now, add any conditional cleanups we've seen to the prequeue. */
307 gimple_pop_condition (gimple_seq
*pre_p
)
309 int conds
= --(gimplify_ctxp
->conditions
);
311 gcc_assert (conds
>= 0);
314 gimplify_seq_add_seq (pre_p
, gimplify_ctxp
->conditional_cleanups
);
315 gimplify_ctxp
->conditional_cleanups
= NULL
;
319 /* A stable comparison routine for use with splay trees and DECLs. */
322 splay_tree_compare_decl_uid (splay_tree_key xa
, splay_tree_key xb
)
327 return DECL_UID (a
) - DECL_UID (b
);
330 /* Create a new omp construct that deals with variable remapping. */
332 static struct gimplify_omp_ctx
*
333 new_omp_context (enum omp_region_type region_type
)
335 struct gimplify_omp_ctx
*c
;
337 c
= XCNEW (struct gimplify_omp_ctx
);
338 c
->outer_context
= gimplify_omp_ctxp
;
339 c
->variables
= splay_tree_new (splay_tree_compare_decl_uid
, 0, 0);
340 c
->privatized_types
= pointer_set_create ();
341 c
->location
= input_location
;
342 c
->region_type
= region_type
;
343 if ((region_type
& ORT_TASK
) == 0)
344 c
->default_kind
= OMP_CLAUSE_DEFAULT_SHARED
;
346 c
->default_kind
= OMP_CLAUSE_DEFAULT_UNSPECIFIED
;
351 /* Destroy an omp construct that deals with variable remapping. */
354 delete_omp_context (struct gimplify_omp_ctx
*c
)
356 splay_tree_delete (c
->variables
);
357 pointer_set_destroy (c
->privatized_types
);
361 static void omp_add_variable (struct gimplify_omp_ctx
*, tree
, unsigned int);
362 static bool omp_notice_variable (struct gimplify_omp_ctx
*, tree
, bool);
364 /* Both gimplify the statement T and append it to *SEQ_P. This function
365 behaves exactly as gimplify_stmt, but you don't have to pass T as a
369 gimplify_and_add (tree t
, gimple_seq
*seq_p
)
371 gimplify_stmt (&t
, seq_p
);
374 /* Gimplify statement T into sequence *SEQ_P, and return the first
375 tuple in the sequence of generated tuples for this statement.
376 Return NULL if gimplifying T produced no tuples. */
379 gimplify_and_return_first (tree t
, gimple_seq
*seq_p
)
381 gimple_stmt_iterator last
= gsi_last (*seq_p
);
383 gimplify_and_add (t
, seq_p
);
385 if (!gsi_end_p (last
))
388 return gsi_stmt (last
);
391 return gimple_seq_first_stmt (*seq_p
);
394 /* Strip off a legitimate source ending from the input string NAME of
395 length LEN. Rather than having to know the names used by all of
396 our front ends, we strip off an ending of a period followed by
397 up to five characters. (Java uses ".class".) */
400 remove_suffix (char *name
, int len
)
404 for (i
= 2; i
< 8 && len
> i
; i
++)
406 if (name
[len
- i
] == '.')
408 name
[len
- i
] = '\0';
414 /* Create a new temporary name with PREFIX. Return an identifier. */
416 static GTY(()) unsigned int tmp_var_id_num
;
419 create_tmp_var_name (const char *prefix
)
425 char *preftmp
= ASTRDUP (prefix
);
427 remove_suffix (preftmp
, strlen (preftmp
));
428 clean_symbol_name (preftmp
);
433 ASM_FORMAT_PRIVATE_NAME (tmp_name
, prefix
? prefix
: "T", tmp_var_id_num
++);
434 return get_identifier (tmp_name
);
437 /* Create a new temporary variable declaration of type TYPE.
438 Do NOT push it into the current binding. */
441 create_tmp_var_raw (tree type
, const char *prefix
)
445 tmp_var
= build_decl (input_location
,
446 VAR_DECL
, prefix
? create_tmp_var_name (prefix
) : NULL
,
449 /* The variable was declared by the compiler. */
450 DECL_ARTIFICIAL (tmp_var
) = 1;
451 /* And we don't want debug info for it. */
452 DECL_IGNORED_P (tmp_var
) = 1;
454 /* Make the variable writable. */
455 TREE_READONLY (tmp_var
) = 0;
457 DECL_EXTERNAL (tmp_var
) = 0;
458 TREE_STATIC (tmp_var
) = 0;
459 TREE_USED (tmp_var
) = 1;
464 /* Create a new temporary variable declaration of type TYPE. DO push the
465 variable into the current binding. Further, assume that this is called
466 only from gimplification or optimization, at which point the creation of
467 certain types are bugs. */
470 create_tmp_var (tree type
, const char *prefix
)
474 /* We don't allow types that are addressable (meaning we can't make copies),
475 or incomplete. We also used to reject every variable size objects here,
476 but now support those for which a constant upper bound can be obtained.
477 The processing for variable sizes is performed in gimple_add_tmp_var,
478 point at which it really matters and possibly reached via paths not going
479 through this function, e.g. after direct calls to create_tmp_var_raw. */
480 gcc_assert (!TREE_ADDRESSABLE (type
) && COMPLETE_TYPE_P (type
));
482 tmp_var
= create_tmp_var_raw (type
, prefix
);
483 gimple_add_tmp_var (tmp_var
);
487 /* Create a new temporary variable declaration of type TYPE by calling
488 create_tmp_var and if TYPE is a vector or a complex number, mark the new
489 temporary as gimple register. */
492 create_tmp_reg (tree type
, const char *prefix
)
496 tmp
= create_tmp_var (type
, prefix
);
497 if (TREE_CODE (type
) == COMPLEX_TYPE
498 || TREE_CODE (type
) == VECTOR_TYPE
)
499 DECL_GIMPLE_REG_P (tmp
) = 1;
504 /* Returns true iff T is a valid RHS for an assignment to a renamed
505 user -- or front-end generated artificial -- variable. */
508 is_gimple_reg_rhs (tree t
)
510 return get_gimple_rhs_class (TREE_CODE (t
)) != GIMPLE_INVALID_RHS
;
513 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
514 LHS, or for a call argument. */
517 is_gimple_mem_rhs (tree t
)
519 /* If we're dealing with a renamable type, either source or dest must be
520 a renamed variable. */
521 if (is_gimple_reg_type (TREE_TYPE (t
)))
522 return is_gimple_val (t
);
524 return is_gimple_val (t
) || is_gimple_lvalue (t
);
527 /* Return true if T is a CALL_EXPR or an expression that can be
528 assigned to a temporary. Note that this predicate should only be
529 used during gimplification. See the rationale for this in
530 gimplify_modify_expr. */
533 is_gimple_reg_rhs_or_call (tree t
)
535 return (get_gimple_rhs_class (TREE_CODE (t
)) != GIMPLE_INVALID_RHS
536 || TREE_CODE (t
) == CALL_EXPR
);
539 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
540 this predicate should only be used during gimplification. See the
541 rationale for this in gimplify_modify_expr. */
544 is_gimple_mem_rhs_or_call (tree t
)
546 /* If we're dealing with a renamable type, either source or dest must be
547 a renamed variable. */
548 if (is_gimple_reg_type (TREE_TYPE (t
)))
549 return is_gimple_val (t
);
551 return (is_gimple_val (t
) || is_gimple_lvalue (t
)
552 || TREE_CODE (t
) == CALL_EXPR
);
555 /* Create a temporary with a name derived from VAL. Subroutine of
556 lookup_tmp_var; nobody else should call this function. */
559 create_tmp_from_val (tree val
, bool is_formal
)
561 /* Drop all qualifiers and address-space information from the value type. */
562 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (val
));
563 tree var
= create_tmp_var (type
, get_name (val
));
565 && (TREE_CODE (TREE_TYPE (var
)) == COMPLEX_TYPE
566 || TREE_CODE (TREE_TYPE (var
)) == VECTOR_TYPE
))
567 DECL_GIMPLE_REG_P (var
) = 1;
571 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
572 an existing expression temporary. */
575 lookup_tmp_var (tree val
, bool is_formal
)
579 /* If not optimizing, never really reuse a temporary. local-alloc
580 won't allocate any variable that is used in more than one basic
581 block, which means it will go into memory, causing much extra
582 work in reload and final and poorer code generation, outweighing
583 the extra memory allocation here. */
584 if (!optimize
|| !is_formal
|| TREE_SIDE_EFFECTS (val
))
585 ret
= create_tmp_from_val (val
, is_formal
);
592 if (gimplify_ctxp
->temp_htab
== NULL
)
593 gimplify_ctxp
->temp_htab
594 = htab_create (1000, gimple_tree_hash
, gimple_tree_eq
, free
);
595 slot
= htab_find_slot (gimplify_ctxp
->temp_htab
, (void *)&elt
, INSERT
);
598 elt_p
= XNEW (elt_t
);
600 elt_p
->temp
= ret
= create_tmp_from_val (val
, is_formal
);
601 *slot
= (void *) elt_p
;
605 elt_p
= (elt_t
*) *slot
;
613 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
616 internal_get_tmp_var (tree val
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
621 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
622 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
623 gimplify_expr (&val
, pre_p
, post_p
, is_gimple_reg_rhs_or_call
,
626 if (gimplify_ctxp
->into_ssa
627 && is_gimple_reg_type (TREE_TYPE (val
)))
628 t
= make_ssa_name (TYPE_MAIN_VARIANT (TREE_TYPE (val
)), NULL
);
630 t
= lookup_tmp_var (val
, is_formal
);
632 mod
= build2 (INIT_EXPR
, TREE_TYPE (t
), t
, unshare_expr (val
));
634 SET_EXPR_LOCATION (mod
, EXPR_LOC_OR_HERE (val
));
636 /* gimplify_modify_expr might want to reduce this further. */
637 gimplify_and_add (mod
, pre_p
);
643 /* Return a formal temporary variable initialized with VAL. PRE_P is as
644 in gimplify_expr. Only use this function if:
646 1) The value of the unfactored expression represented by VAL will not
647 change between the initialization and use of the temporary, and
648 2) The temporary will not be otherwise modified.
650 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
651 and #2 means it is inappropriate for && temps.
653 For other cases, use get_initialized_tmp_var instead. */
656 get_formal_tmp_var (tree val
, gimple_seq
*pre_p
)
658 return internal_get_tmp_var (val
, pre_p
, NULL
, true);
661 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
662 are as in gimplify_expr. */
665 get_initialized_tmp_var (tree val
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
667 return internal_get_tmp_var (val
, pre_p
, post_p
, false);
670 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
671 generate debug info for them; otherwise don't. */
674 declare_vars (tree vars
, gimple scope
, bool debug_info
)
681 gcc_assert (gimple_code (scope
) == GIMPLE_BIND
);
683 temps
= nreverse (last
);
685 block
= gimple_bind_block (scope
);
686 gcc_assert (!block
|| TREE_CODE (block
) == BLOCK
);
687 if (!block
|| !debug_info
)
689 DECL_CHAIN (last
) = gimple_bind_vars (scope
);
690 gimple_bind_set_vars (scope
, temps
);
694 /* We need to attach the nodes both to the BIND_EXPR and to its
695 associated BLOCK for debugging purposes. The key point here
696 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
697 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
698 if (BLOCK_VARS (block
))
699 BLOCK_VARS (block
) = chainon (BLOCK_VARS (block
), temps
);
702 gimple_bind_set_vars (scope
,
703 chainon (gimple_bind_vars (scope
), temps
));
704 BLOCK_VARS (block
) = temps
;
710 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
711 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
712 no such upper bound can be obtained. */
715 force_constant_size (tree var
)
717 /* The only attempt we make is by querying the maximum size of objects
718 of the variable's type. */
720 HOST_WIDE_INT max_size
;
722 gcc_assert (TREE_CODE (var
) == VAR_DECL
);
724 max_size
= max_int_size_in_bytes (TREE_TYPE (var
));
726 gcc_assert (max_size
>= 0);
729 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var
)), max_size
);
731 = build_int_cst (TREE_TYPE (DECL_SIZE (var
)), max_size
* BITS_PER_UNIT
);
734 /* Push the temporary variable TMP into the current binding. */
737 gimple_add_tmp_var (tree tmp
)
739 gcc_assert (!DECL_CHAIN (tmp
) && !DECL_SEEN_IN_BIND_EXPR_P (tmp
));
741 /* Later processing assumes that the object size is constant, which might
742 not be true at this point. Force the use of a constant upper bound in
744 if (!host_integerp (DECL_SIZE_UNIT (tmp
), 1))
745 force_constant_size (tmp
);
747 DECL_CONTEXT (tmp
) = current_function_decl
;
748 DECL_SEEN_IN_BIND_EXPR_P (tmp
) = 1;
752 DECL_CHAIN (tmp
) = gimplify_ctxp
->temps
;
753 gimplify_ctxp
->temps
= tmp
;
755 /* Mark temporaries local within the nearest enclosing parallel. */
756 if (gimplify_omp_ctxp
)
758 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
;
759 while (ctx
&& ctx
->region_type
== ORT_WORKSHARE
)
760 ctx
= ctx
->outer_context
;
762 omp_add_variable (ctx
, tmp
, GOVD_LOCAL
| GOVD_SEEN
);
771 /* This case is for nested functions. We need to expose the locals
773 body_seq
= gimple_body (current_function_decl
);
774 declare_vars (tmp
, gimple_seq_first_stmt (body_seq
), false);
778 /* Determine whether to assign a location to the statement GS. */
781 should_carry_location_p (gimple gs
)
783 /* Don't emit a line note for a label. We particularly don't want to
784 emit one for the break label, since it doesn't actually correspond
785 to the beginning of the loop/switch. */
786 if (gimple_code (gs
) == GIMPLE_LABEL
)
792 /* Return true if a location should not be emitted for this statement
793 by annotate_one_with_location. */
796 gimple_do_not_emit_location_p (gimple g
)
798 return gimple_plf (g
, GF_PLF_1
);
801 /* Mark statement G so a location will not be emitted by
802 annotate_one_with_location. */
805 gimple_set_do_not_emit_location (gimple g
)
807 /* The PLF flags are initialized to 0 when a new tuple is created,
808 so no need to initialize it anywhere. */
809 gimple_set_plf (g
, GF_PLF_1
, true);
812 /* Set the location for gimple statement GS to LOCATION. */
815 annotate_one_with_location (gimple gs
, location_t location
)
817 if (!gimple_has_location (gs
)
818 && !gimple_do_not_emit_location_p (gs
)
819 && should_carry_location_p (gs
))
820 gimple_set_location (gs
, location
);
823 /* Set LOCATION for all the statements after iterator GSI in sequence
824 SEQ. If GSI is pointing to the end of the sequence, start with the
825 first statement in SEQ. */
828 annotate_all_with_location_after (gimple_seq seq
, gimple_stmt_iterator gsi
,
832 gsi
= gsi_start (seq
);
836 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
837 annotate_one_with_location (gsi_stmt (gsi
), location
);
840 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
843 annotate_all_with_location (gimple_seq stmt_p
, location_t location
)
845 gimple_stmt_iterator i
;
847 if (gimple_seq_empty_p (stmt_p
))
850 for (i
= gsi_start (stmt_p
); !gsi_end_p (i
); gsi_next (&i
))
852 gimple gs
= gsi_stmt (i
);
853 annotate_one_with_location (gs
, location
);
857 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
858 nodes that are referenced more than once in GENERIC functions. This is
859 necessary because gimplification (translation into GIMPLE) is performed
860 by modifying tree nodes in-place, so gimplication of a shared node in a
861 first context could generate an invalid GIMPLE form in a second context.
863 This is achieved with a simple mark/copy/unmark algorithm that walks the
864 GENERIC representation top-down, marks nodes with TREE_VISITED the first
865 time it encounters them, duplicates them if they already have TREE_VISITED
866 set, and finally removes the TREE_VISITED marks it has set.
868 The algorithm works only at the function level, i.e. it generates a GENERIC
869 representation of a function with no nodes shared within the function when
870 passed a GENERIC function (except for nodes that are allowed to be shared).
872 At the global level, it is also necessary to unshare tree nodes that are
873 referenced in more than one function, for the same aforementioned reason.
874 This requires some cooperation from the front-end. There are 2 strategies:
876 1. Manual unsharing. The front-end needs to call unshare_expr on every
877 expression that might end up being shared across functions.
879 2. Deep unsharing. This is an extension of regular unsharing. Instead
880 of calling unshare_expr on expressions that might be shared across
881 functions, the front-end pre-marks them with TREE_VISITED. This will
882 ensure that they are unshared on the first reference within functions
883 when the regular unsharing algorithm runs. The counterpart is that
884 this algorithm must look deeper than for manual unsharing, which is
885 specified by LANG_HOOKS_DEEP_UNSHARING.
887 If there are only few specific cases of node sharing across functions, it is
888 probably easier for a front-end to unshare the expressions manually. On the
889 contrary, if the expressions generated at the global level are as widespread
890 as expressions generated within functions, deep unsharing is very likely the
893 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
894 These nodes model computations that must be done once. If we were to
895 unshare something like SAVE_EXPR(i++), the gimplification process would
896 create wrong code. However, if DATA is non-null, it must hold a pointer
897 set that is used to unshare the subtrees of these nodes. */
900 mostly_copy_tree_r (tree
*tp
, int *walk_subtrees
, void *data
)
903 enum tree_code code
= TREE_CODE (t
);
905 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
906 copy their subtrees if we can make sure to do it only once. */
907 if (code
== SAVE_EXPR
|| code
== TARGET_EXPR
|| code
== BIND_EXPR
)
909 if (data
&& !pointer_set_insert ((struct pointer_set_t
*)data
, t
))
915 /* Stop at types, decls, constants like copy_tree_r. */
916 else if (TREE_CODE_CLASS (code
) == tcc_type
917 || TREE_CODE_CLASS (code
) == tcc_declaration
918 || TREE_CODE_CLASS (code
) == tcc_constant
919 /* We can't do anything sensible with a BLOCK used as an
920 expression, but we also can't just die when we see it
921 because of non-expression uses. So we avert our eyes
922 and cross our fingers. Silly Java. */
926 /* Cope with the statement expression extension. */
927 else if (code
== STATEMENT_LIST
)
930 /* Leave the bulk of the work to copy_tree_r itself. */
932 copy_tree_r (tp
, walk_subtrees
, NULL
);
937 /* Callback for walk_tree to unshare most of the shared trees rooted at *TP.
938 If *TP has been visited already, then *TP is deeply copied by calling
939 mostly_copy_tree_r. DATA is passed to mostly_copy_tree_r unmodified. */
942 copy_if_shared_r (tree
*tp
, int *walk_subtrees
, void *data
)
945 enum tree_code code
= TREE_CODE (t
);
947 /* Skip types, decls, and constants. But we do want to look at their
948 types and the bounds of types. Mark them as visited so we properly
949 unmark their subtrees on the unmark pass. If we've already seen them,
950 don't look down further. */
951 if (TREE_CODE_CLASS (code
) == tcc_type
952 || TREE_CODE_CLASS (code
) == tcc_declaration
953 || TREE_CODE_CLASS (code
) == tcc_constant
)
955 if (TREE_VISITED (t
))
958 TREE_VISITED (t
) = 1;
961 /* If this node has been visited already, unshare it and don't look
963 else if (TREE_VISITED (t
))
965 walk_tree (tp
, mostly_copy_tree_r
, data
, NULL
);
969 /* Otherwise, mark the node as visited and keep looking. */
971 TREE_VISITED (t
) = 1;
976 /* Unshare most of the shared trees rooted at *TP. DATA is passed to the
977 copy_if_shared_r callback unmodified. */
980 copy_if_shared (tree
*tp
, void *data
)
982 walk_tree (tp
, copy_if_shared_r
, data
, NULL
);
985 /* Unshare all the trees in the body of FNDECL, as well as in the bodies of
986 any nested functions. */
989 unshare_body (tree fndecl
)
991 struct cgraph_node
*cgn
= cgraph_get_node (fndecl
);
992 /* If the language requires deep unsharing, we need a pointer set to make
993 sure we don't repeatedly unshare subtrees of unshareable nodes. */
994 struct pointer_set_t
*visited
995 = lang_hooks
.deep_unsharing
? pointer_set_create () : NULL
;
997 copy_if_shared (&DECL_SAVED_TREE (fndecl
), visited
);
998 copy_if_shared (&DECL_SIZE (DECL_RESULT (fndecl
)), visited
);
999 copy_if_shared (&DECL_SIZE_UNIT (DECL_RESULT (fndecl
)), visited
);
1002 pointer_set_destroy (visited
);
1005 for (cgn
= cgn
->nested
; cgn
; cgn
= cgn
->next_nested
)
1006 unshare_body (cgn
->symbol
.decl
);
1009 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
1010 Subtrees are walked until the first unvisited node is encountered. */
1013 unmark_visited_r (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
1017 /* If this node has been visited, unmark it and keep looking. */
1018 if (TREE_VISITED (t
))
1019 TREE_VISITED (t
) = 0;
1021 /* Otherwise, don't look any deeper. */
1028 /* Unmark the visited trees rooted at *TP. */
1031 unmark_visited (tree
*tp
)
1033 walk_tree (tp
, unmark_visited_r
, NULL
, NULL
);
1036 /* Likewise, but mark all trees as not visited. */
1039 unvisit_body (tree fndecl
)
1041 struct cgraph_node
*cgn
= cgraph_get_node (fndecl
);
1043 unmark_visited (&DECL_SAVED_TREE (fndecl
));
1044 unmark_visited (&DECL_SIZE (DECL_RESULT (fndecl
)));
1045 unmark_visited (&DECL_SIZE_UNIT (DECL_RESULT (fndecl
)));
1048 for (cgn
= cgn
->nested
; cgn
; cgn
= cgn
->next_nested
)
1049 unvisit_body (cgn
->symbol
.decl
);
1052 /* Unconditionally make an unshared copy of EXPR. This is used when using
1053 stored expressions which span multiple functions, such as BINFO_VTABLE,
1054 as the normal unsharing process can't tell that they're shared. */
1057 unshare_expr (tree expr
)
1059 walk_tree (&expr
, mostly_copy_tree_r
, NULL
, NULL
);
1063 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1064 contain statements and have a value. Assign its value to a temporary
1065 and give it void_type_node. Return the temporary, or NULL_TREE if
1066 WRAPPER was already void. */
1069 voidify_wrapper_expr (tree wrapper
, tree temp
)
1071 tree type
= TREE_TYPE (wrapper
);
1072 if (type
&& !VOID_TYPE_P (type
))
1076 /* Set p to point to the body of the wrapper. Loop until we find
1077 something that isn't a wrapper. */
1078 for (p
= &wrapper
; p
&& *p
; )
1080 switch (TREE_CODE (*p
))
1083 TREE_SIDE_EFFECTS (*p
) = 1;
1084 TREE_TYPE (*p
) = void_type_node
;
1085 /* For a BIND_EXPR, the body is operand 1. */
1086 p
= &BIND_EXPR_BODY (*p
);
1089 case CLEANUP_POINT_EXPR
:
1090 case TRY_FINALLY_EXPR
:
1091 case TRY_CATCH_EXPR
:
1092 TREE_SIDE_EFFECTS (*p
) = 1;
1093 TREE_TYPE (*p
) = void_type_node
;
1094 p
= &TREE_OPERAND (*p
, 0);
1097 case STATEMENT_LIST
:
1099 tree_stmt_iterator i
= tsi_last (*p
);
1100 TREE_SIDE_EFFECTS (*p
) = 1;
1101 TREE_TYPE (*p
) = void_type_node
;
1102 p
= tsi_end_p (i
) ? NULL
: tsi_stmt_ptr (i
);
1107 /* Advance to the last statement. Set all container types to
1109 for (; TREE_CODE (*p
) == COMPOUND_EXPR
; p
= &TREE_OPERAND (*p
, 1))
1111 TREE_SIDE_EFFECTS (*p
) = 1;
1112 TREE_TYPE (*p
) = void_type_node
;
1116 case TRANSACTION_EXPR
:
1117 TREE_SIDE_EFFECTS (*p
) = 1;
1118 TREE_TYPE (*p
) = void_type_node
;
1119 p
= &TRANSACTION_EXPR_BODY (*p
);
1123 /* Assume that any tree upon which voidify_wrapper_expr is
1124 directly called is a wrapper, and that its body is op0. */
1127 TREE_SIDE_EFFECTS (*p
) = 1;
1128 TREE_TYPE (*p
) = void_type_node
;
1129 p
= &TREE_OPERAND (*p
, 0);
1137 if (p
== NULL
|| IS_EMPTY_STMT (*p
))
1141 /* The wrapper is on the RHS of an assignment that we're pushing
1143 gcc_assert (TREE_CODE (temp
) == INIT_EXPR
1144 || TREE_CODE (temp
) == MODIFY_EXPR
);
1145 TREE_OPERAND (temp
, 1) = *p
;
1150 temp
= create_tmp_var (type
, "retval");
1151 *p
= build2 (INIT_EXPR
, type
, temp
, *p
);
1160 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1161 a temporary through which they communicate. */
1164 build_stack_save_restore (gimple
*save
, gimple
*restore
)
1168 *save
= gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE
), 0);
1169 tmp_var
= create_tmp_var (ptr_type_node
, "saved_stack");
1170 gimple_call_set_lhs (*save
, tmp_var
);
1173 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE
),
1177 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1179 static enum gimplify_status
1180 gimplify_bind_expr (tree
*expr_p
, gimple_seq
*pre_p
)
1182 tree bind_expr
= *expr_p
;
1183 bool old_save_stack
= gimplify_ctxp
->save_stack
;
1186 gimple_seq body
, cleanup
;
1189 tree temp
= voidify_wrapper_expr (bind_expr
, NULL
);
1191 /* Mark variables seen in this bind expr. */
1192 for (t
= BIND_EXPR_VARS (bind_expr
); t
; t
= DECL_CHAIN (t
))
1194 if (TREE_CODE (t
) == VAR_DECL
)
1196 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
;
1198 /* Mark variable as local. */
1199 if (ctx
&& !DECL_EXTERNAL (t
)
1200 && (! DECL_SEEN_IN_BIND_EXPR_P (t
)
1201 || splay_tree_lookup (ctx
->variables
,
1202 (splay_tree_key
) t
) == NULL
))
1203 omp_add_variable (gimplify_omp_ctxp
, t
, GOVD_LOCAL
| GOVD_SEEN
);
1205 DECL_SEEN_IN_BIND_EXPR_P (t
) = 1;
1207 if (DECL_HARD_REGISTER (t
) && !is_global_var (t
) && cfun
)
1208 cfun
->has_local_explicit_reg_vars
= true;
1211 /* Preliminarily mark non-addressed complex variables as eligible
1212 for promotion to gimple registers. We'll transform their uses
1214 if ((TREE_CODE (TREE_TYPE (t
)) == COMPLEX_TYPE
1215 || TREE_CODE (TREE_TYPE (t
)) == VECTOR_TYPE
)
1216 && !TREE_THIS_VOLATILE (t
)
1217 && (TREE_CODE (t
) == VAR_DECL
&& !DECL_HARD_REGISTER (t
))
1218 && !needs_to_live_in_memory (t
))
1219 DECL_GIMPLE_REG_P (t
) = 1;
1222 gimple_bind
= gimple_build_bind (BIND_EXPR_VARS (bind_expr
), NULL
,
1223 BIND_EXPR_BLOCK (bind_expr
));
1224 gimple_push_bind_expr (gimple_bind
);
1226 gimplify_ctxp
->save_stack
= false;
1228 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1230 gimplify_stmt (&BIND_EXPR_BODY (bind_expr
), &body
);
1231 gimple_bind_set_body (gimple_bind
, body
);
1235 if (gimplify_ctxp
->save_stack
)
1237 gimple stack_restore
;
1239 /* Save stack on entry and restore it on exit. Add a try_finally
1240 block to achieve this. Note that mudflap depends on the
1241 format of the emitted code: see mx_register_decls(). */
1242 build_stack_save_restore (&stack_save
, &stack_restore
);
1244 gimplify_seq_add_stmt (&cleanup
, stack_restore
);
1247 /* Add clobbers for all variables that go out of scope. */
1248 for (t
= BIND_EXPR_VARS (bind_expr
); t
; t
= DECL_CHAIN (t
))
1250 if (TREE_CODE (t
) == VAR_DECL
1251 && !is_global_var (t
)
1252 && DECL_CONTEXT (t
) == current_function_decl
1253 && !DECL_HARD_REGISTER (t
)
1254 && !TREE_THIS_VOLATILE (t
)
1255 && !DECL_HAS_VALUE_EXPR_P (t
)
1256 /* Only care for variables that have to be in memory. Others
1257 will be rewritten into SSA names, hence moved to the top-level. */
1258 && !is_gimple_reg (t
)
1259 && flag_stack_reuse
!= SR_NONE
)
1261 tree clobber
= build_constructor (TREE_TYPE (t
), NULL
);
1262 TREE_THIS_VOLATILE (clobber
) = 1;
1263 gimplify_seq_add_stmt (&cleanup
, gimple_build_assign (t
, clobber
));
1270 gimple_seq new_body
;
1273 gs
= gimple_build_try (gimple_bind_body (gimple_bind
), cleanup
,
1274 GIMPLE_TRY_FINALLY
);
1277 gimplify_seq_add_stmt (&new_body
, stack_save
);
1278 gimplify_seq_add_stmt (&new_body
, gs
);
1279 gimple_bind_set_body (gimple_bind
, new_body
);
1282 gimplify_ctxp
->save_stack
= old_save_stack
;
1283 gimple_pop_bind_expr ();
1285 gimplify_seq_add_stmt (pre_p
, gimple_bind
);
1293 *expr_p
= NULL_TREE
;
1297 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1298 GIMPLE value, it is assigned to a new temporary and the statement is
1299 re-written to return the temporary.
1301 PRE_P points to the sequence where side effects that must happen before
1302 STMT should be stored. */
1304 static enum gimplify_status
1305 gimplify_return_expr (tree stmt
, gimple_seq
*pre_p
)
1308 tree ret_expr
= TREE_OPERAND (stmt
, 0);
1309 tree result_decl
, result
;
1311 if (ret_expr
== error_mark_node
)
1315 || TREE_CODE (ret_expr
) == RESULT_DECL
1316 || ret_expr
== error_mark_node
)
1318 gimple ret
= gimple_build_return (ret_expr
);
1319 gimple_set_no_warning (ret
, TREE_NO_WARNING (stmt
));
1320 gimplify_seq_add_stmt (pre_p
, ret
);
1324 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl
))))
1325 result_decl
= NULL_TREE
;
1328 result_decl
= TREE_OPERAND (ret_expr
, 0);
1330 /* See through a return by reference. */
1331 if (TREE_CODE (result_decl
) == INDIRECT_REF
)
1332 result_decl
= TREE_OPERAND (result_decl
, 0);
1334 gcc_assert ((TREE_CODE (ret_expr
) == MODIFY_EXPR
1335 || TREE_CODE (ret_expr
) == INIT_EXPR
)
1336 && TREE_CODE (result_decl
) == RESULT_DECL
);
1339 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1340 Recall that aggregate_value_p is FALSE for any aggregate type that is
1341 returned in registers. If we're returning values in registers, then
1342 we don't want to extend the lifetime of the RESULT_DECL, particularly
1343 across another call. In addition, for those aggregates for which
1344 hard_function_value generates a PARALLEL, we'll die during normal
1345 expansion of structure assignments; there's special code in expand_return
1346 to handle this case that does not exist in expand_expr. */
1349 else if (aggregate_value_p (result_decl
, TREE_TYPE (current_function_decl
)))
1351 if (TREE_CODE (DECL_SIZE (result_decl
)) != INTEGER_CST
)
1353 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl
)))
1354 gimplify_type_sizes (TREE_TYPE (result_decl
), pre_p
);
1355 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1356 should be effectively allocated by the caller, i.e. all calls to
1357 this function must be subject to the Return Slot Optimization. */
1358 gimplify_one_sizepos (&DECL_SIZE (result_decl
), pre_p
);
1359 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl
), pre_p
);
1361 result
= result_decl
;
1363 else if (gimplify_ctxp
->return_temp
)
1364 result
= gimplify_ctxp
->return_temp
;
1367 result
= create_tmp_reg (TREE_TYPE (result_decl
), NULL
);
1369 /* ??? With complex control flow (usually involving abnormal edges),
1370 we can wind up warning about an uninitialized value for this. Due
1371 to how this variable is constructed and initialized, this is never
1372 true. Give up and never warn. */
1373 TREE_NO_WARNING (result
) = 1;
1375 gimplify_ctxp
->return_temp
= result
;
1378 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1379 Then gimplify the whole thing. */
1380 if (result
!= result_decl
)
1381 TREE_OPERAND (ret_expr
, 0) = result
;
1383 gimplify_and_add (TREE_OPERAND (stmt
, 0), pre_p
);
1385 ret
= gimple_build_return (result
);
1386 gimple_set_no_warning (ret
, TREE_NO_WARNING (stmt
));
1387 gimplify_seq_add_stmt (pre_p
, ret
);
1392 /* Gimplify a variable-length array DECL. */
1395 gimplify_vla_decl (tree decl
, gimple_seq
*seq_p
)
1397 /* This is a variable-sized decl. Simplify its size and mark it
1398 for deferred expansion. Note that mudflap depends on the format
1399 of the emitted code: see mx_register_decls(). */
1400 tree t
, addr
, ptr_type
;
1402 gimplify_one_sizepos (&DECL_SIZE (decl
), seq_p
);
1403 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl
), seq_p
);
1405 /* All occurrences of this decl in final gimplified code will be
1406 replaced by indirection. Setting DECL_VALUE_EXPR does two
1407 things: First, it lets the rest of the gimplifier know what
1408 replacement to use. Second, it lets the debug info know
1409 where to find the value. */
1410 ptr_type
= build_pointer_type (TREE_TYPE (decl
));
1411 addr
= create_tmp_var (ptr_type
, get_name (decl
));
1412 DECL_IGNORED_P (addr
) = 0;
1413 t
= build_fold_indirect_ref (addr
);
1414 TREE_THIS_NOTRAP (t
) = 1;
1415 SET_DECL_VALUE_EXPR (decl
, t
);
1416 DECL_HAS_VALUE_EXPR_P (decl
) = 1;
1418 t
= builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
);
1419 t
= build_call_expr (t
, 2, DECL_SIZE_UNIT (decl
),
1420 size_int (DECL_ALIGN (decl
)));
1421 /* The call has been built for a variable-sized object. */
1422 CALL_ALLOCA_FOR_VAR_P (t
) = 1;
1423 t
= fold_convert (ptr_type
, t
);
1424 t
= build2 (MODIFY_EXPR
, TREE_TYPE (addr
), addr
, t
);
1426 gimplify_and_add (t
, seq_p
);
1428 /* Indicate that we need to restore the stack level when the
1429 enclosing BIND_EXPR is exited. */
1430 gimplify_ctxp
->save_stack
= true;
1433 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1434 and initialization explicit. */
1436 static enum gimplify_status
1437 gimplify_decl_expr (tree
*stmt_p
, gimple_seq
*seq_p
)
1439 tree stmt
= *stmt_p
;
1440 tree decl
= DECL_EXPR_DECL (stmt
);
1442 *stmt_p
= NULL_TREE
;
1444 if (TREE_TYPE (decl
) == error_mark_node
)
1447 if ((TREE_CODE (decl
) == TYPE_DECL
1448 || TREE_CODE (decl
) == VAR_DECL
)
1449 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl
)))
1450 gimplify_type_sizes (TREE_TYPE (decl
), seq_p
);
1452 /* ??? DECL_ORIGINAL_TYPE is streamed for LTO so it needs to be gimplified
1453 in case its size expressions contain problematic nodes like CALL_EXPR. */
1454 if (TREE_CODE (decl
) == TYPE_DECL
1455 && DECL_ORIGINAL_TYPE (decl
)
1456 && !TYPE_SIZES_GIMPLIFIED (DECL_ORIGINAL_TYPE (decl
)))
1457 gimplify_type_sizes (DECL_ORIGINAL_TYPE (decl
), seq_p
);
1459 if (TREE_CODE (decl
) == VAR_DECL
&& !DECL_EXTERNAL (decl
))
1461 tree init
= DECL_INITIAL (decl
);
1463 if (TREE_CODE (DECL_SIZE_UNIT (decl
)) != INTEGER_CST
1464 || (!TREE_STATIC (decl
)
1465 && flag_stack_check
== GENERIC_STACK_CHECK
1466 && compare_tree_int (DECL_SIZE_UNIT (decl
),
1467 STACK_CHECK_MAX_VAR_SIZE
) > 0))
1468 gimplify_vla_decl (decl
, seq_p
);
1470 /* Some front ends do not explicitly declare all anonymous
1471 artificial variables. We compensate here by declaring the
1472 variables, though it would be better if the front ends would
1473 explicitly declare them. */
1474 if (!DECL_SEEN_IN_BIND_EXPR_P (decl
)
1475 && DECL_ARTIFICIAL (decl
) && DECL_NAME (decl
) == NULL_TREE
)
1476 gimple_add_tmp_var (decl
);
1478 if (init
&& init
!= error_mark_node
)
1480 if (!TREE_STATIC (decl
))
1482 DECL_INITIAL (decl
) = NULL_TREE
;
1483 init
= build2 (INIT_EXPR
, void_type_node
, decl
, init
);
1484 gimplify_and_add (init
, seq_p
);
1488 /* We must still examine initializers for static variables
1489 as they may contain a label address. */
1490 walk_tree (&init
, force_labels_r
, NULL
, NULL
);
1497 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1498 and replacing the LOOP_EXPR with goto, but if the loop contains an
1499 EXIT_EXPR, we need to append a label for it to jump to. */
1501 static enum gimplify_status
1502 gimplify_loop_expr (tree
*expr_p
, gimple_seq
*pre_p
)
1504 tree saved_label
= gimplify_ctxp
->exit_label
;
1505 tree start_label
= create_artificial_label (UNKNOWN_LOCATION
);
1507 gimplify_seq_add_stmt (pre_p
, gimple_build_label (start_label
));
1509 gimplify_ctxp
->exit_label
= NULL_TREE
;
1511 gimplify_and_add (LOOP_EXPR_BODY (*expr_p
), pre_p
);
1513 gimplify_seq_add_stmt (pre_p
, gimple_build_goto (start_label
));
1515 if (gimplify_ctxp
->exit_label
)
1516 gimplify_seq_add_stmt (pre_p
,
1517 gimple_build_label (gimplify_ctxp
->exit_label
));
1519 gimplify_ctxp
->exit_label
= saved_label
;
1525 /* Gimplify a statement list onto a sequence. These may be created either
1526 by an enlightened front-end, or by shortcut_cond_expr. */
1528 static enum gimplify_status
1529 gimplify_statement_list (tree
*expr_p
, gimple_seq
*pre_p
)
1531 tree temp
= voidify_wrapper_expr (*expr_p
, NULL
);
1533 tree_stmt_iterator i
= tsi_start (*expr_p
);
1535 while (!tsi_end_p (i
))
1537 gimplify_stmt (tsi_stmt_ptr (i
), pre_p
);
1550 /* Compare two case labels. Because the front end should already have
1551 made sure that case ranges do not overlap, it is enough to only compare
1552 the CASE_LOW values of each case label. */
1555 compare_case_labels (const void *p1
, const void *p2
)
1557 const_tree
const case1
= *(const_tree
const*)p1
;
1558 const_tree
const case2
= *(const_tree
const*)p2
;
1560 /* The 'default' case label always goes first. */
1561 if (!CASE_LOW (case1
))
1563 else if (!CASE_LOW (case2
))
1566 return tree_int_cst_compare (CASE_LOW (case1
), CASE_LOW (case2
));
1569 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1572 sort_case_labels (VEC(tree
,heap
)* label_vec
)
1574 VEC_qsort (tree
, label_vec
, compare_case_labels
);
1577 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
1579 LABELS is a vector that contains all case labels to look at.
1581 INDEX_TYPE is the type of the switch index expression. Case labels
1582 in LABELS are discarded if their values are not in the value range
1583 covered by INDEX_TYPE. The remaining case label values are folded
1586 If a default case exists in LABELS, it is removed from LABELS and
1587 returned in DEFAULT_CASEP. If no default case exists, but the
1588 case labels already cover the whole range of INDEX_TYPE, a default
1589 case is returned pointing to one of the existing case labels.
1590 Otherwise DEFAULT_CASEP is set to NULL_TREE.
1592 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
1593 apply and no action is taken regardless of whether a default case is
1597 preprocess_case_label_vec_for_gimple (VEC(tree
,heap
) *labels
,
1599 tree
*default_casep
)
1601 tree min_value
, max_value
;
1602 tree default_case
= NULL_TREE
;
1606 min_value
= TYPE_MIN_VALUE (index_type
);
1607 max_value
= TYPE_MAX_VALUE (index_type
);
1608 while (i
< VEC_length (tree
, labels
))
1610 tree elt
= VEC_index (tree
, labels
, i
);
1611 tree low
= CASE_LOW (elt
);
1612 tree high
= CASE_HIGH (elt
);
1613 bool remove_element
= FALSE
;
1617 gcc_checking_assert (TREE_CODE (low
) == INTEGER_CST
);
1618 gcc_checking_assert (!high
|| TREE_CODE (high
) == INTEGER_CST
);
1620 /* This is a non-default case label, i.e. it has a value.
1622 See if the case label is reachable within the range of
1623 the index type. Remove out-of-range case values. Turn
1624 case ranges into a canonical form (high > low strictly)
1625 and convert the case label values to the index type.
1627 NB: The type of gimple_switch_index() may be the promoted
1628 type, but the case labels retain the original type. */
1632 /* This is a case range. Discard empty ranges.
1633 If the bounds or the range are equal, turn this
1634 into a simple (one-value) case. */
1635 int cmp
= tree_int_cst_compare (high
, low
);
1637 remove_element
= TRUE
;
1644 /* If the simple case value is unreachable, ignore it. */
1645 if ((TREE_CODE (min_value
) == INTEGER_CST
1646 && tree_int_cst_compare (low
, min_value
) < 0)
1647 || (TREE_CODE (max_value
) == INTEGER_CST
1648 && tree_int_cst_compare (low
, max_value
) > 0))
1649 remove_element
= TRUE
;
1651 low
= fold_convert (index_type
, low
);
1655 /* If the entire case range is unreachable, ignore it. */
1656 if ((TREE_CODE (min_value
) == INTEGER_CST
1657 && tree_int_cst_compare (high
, min_value
) < 0)
1658 || (TREE_CODE (max_value
) == INTEGER_CST
1659 && tree_int_cst_compare (low
, max_value
) > 0))
1660 remove_element
= TRUE
;
1663 /* If the lower bound is less than the index type's
1664 minimum value, truncate the range bounds. */
1665 if (TREE_CODE (min_value
) == INTEGER_CST
1666 && tree_int_cst_compare (low
, min_value
) < 0)
1668 low
= fold_convert (index_type
, low
);
1670 /* If the upper bound is greater than the index type's
1671 maximum value, truncate the range bounds. */
1672 if (TREE_CODE (max_value
) == INTEGER_CST
1673 && tree_int_cst_compare (high
, max_value
) > 0)
1675 high
= fold_convert (index_type
, high
);
1677 /* We may have folded a case range to a one-value case. */
1678 if (tree_int_cst_equal (low
, high
))
1683 CASE_LOW (elt
) = low
;
1684 CASE_HIGH (elt
) = high
;
1688 gcc_assert (!default_case
);
1690 /* The default case must be passed separately to the
1691 gimple_build_switch routine. But if DEFAULT_CASEP
1692 is NULL, we do not remove the default case (it would
1693 be completely lost). */
1695 remove_element
= TRUE
;
1699 VEC_ordered_remove (tree
, labels
, i
);
1705 if (!VEC_empty (tree
, labels
))
1706 sort_case_labels (labels
);
1708 if (default_casep
&& !default_case
)
1710 /* If the switch has no default label, add one, so that we jump
1711 around the switch body. If the labels already cover the whole
1712 range of the switch index_type, add the default label pointing
1713 to one of the existing labels. */
1715 && TYPE_MIN_VALUE (index_type
)
1716 && TYPE_MAX_VALUE (index_type
)
1717 && tree_int_cst_equal (CASE_LOW (VEC_index (tree
, labels
, 0)),
1718 TYPE_MIN_VALUE (index_type
)))
1720 tree low
, high
= CASE_HIGH (VEC_index (tree
, labels
, len
- 1));
1722 high
= CASE_LOW (VEC_index (tree
, labels
, len
- 1));
1723 if (tree_int_cst_equal (high
, TYPE_MAX_VALUE (index_type
)))
1725 for (i
= 1; i
< len
; i
++)
1727 high
= CASE_LOW (VEC_index (tree
, labels
, i
));
1728 low
= CASE_HIGH (VEC_index (tree
, labels
, i
- 1));
1730 low
= CASE_LOW (VEC_index (tree
, labels
, i
- 1));
1731 if ((TREE_INT_CST_LOW (low
) + 1
1732 != TREE_INT_CST_LOW (high
))
1733 || (TREE_INT_CST_HIGH (low
)
1734 + (TREE_INT_CST_LOW (high
) == 0)
1735 != TREE_INT_CST_HIGH (high
)))
1740 tree label
= CASE_LABEL (VEC_index (tree
, labels
, 0));
1741 default_case
= build_case_label (NULL_TREE
, NULL_TREE
,
1749 *default_casep
= default_case
;
1752 /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
1755 static enum gimplify_status
1756 gimplify_switch_expr (tree
*expr_p
, gimple_seq
*pre_p
)
1758 tree switch_expr
= *expr_p
;
1759 gimple_seq switch_body_seq
= NULL
;
1760 enum gimplify_status ret
;
1761 tree index_type
= TREE_TYPE (switch_expr
);
1762 if (index_type
== NULL_TREE
)
1763 index_type
= TREE_TYPE (SWITCH_COND (switch_expr
));
1765 ret
= gimplify_expr (&SWITCH_COND (switch_expr
), pre_p
, NULL
, is_gimple_val
,
1767 if (ret
== GS_ERROR
|| ret
== GS_UNHANDLED
)
1770 if (SWITCH_BODY (switch_expr
))
1772 VEC (tree
,heap
) *labels
;
1773 VEC (tree
,heap
) *saved_labels
;
1774 tree default_case
= NULL_TREE
;
1775 gimple gimple_switch
;
1777 /* If someone can be bothered to fill in the labels, they can
1778 be bothered to null out the body too. */
1779 gcc_assert (!SWITCH_LABELS (switch_expr
));
1781 /* Save old labels, get new ones from body, then restore the old
1782 labels. Save all the things from the switch body to append after. */
1783 saved_labels
= gimplify_ctxp
->case_labels
;
1784 gimplify_ctxp
->case_labels
= VEC_alloc (tree
, heap
, 8);
1786 gimplify_stmt (&SWITCH_BODY (switch_expr
), &switch_body_seq
);
1787 labels
= gimplify_ctxp
->case_labels
;
1788 gimplify_ctxp
->case_labels
= saved_labels
;
1790 preprocess_case_label_vec_for_gimple (labels
, index_type
,
1798 = build_case_label (NULL_TREE
, NULL_TREE
,
1799 create_artificial_label (UNKNOWN_LOCATION
));
1800 new_default
= gimple_build_label (CASE_LABEL (default_case
));
1801 gimplify_seq_add_stmt (&switch_body_seq
, new_default
);
1804 gimple_switch
= gimple_build_switch (SWITCH_COND (switch_expr
),
1805 default_case
, labels
);
1806 gimplify_seq_add_stmt (pre_p
, gimple_switch
);
1807 gimplify_seq_add_seq (pre_p
, switch_body_seq
);
1808 VEC_free(tree
, heap
, labels
);
1811 gcc_assert (SWITCH_LABELS (switch_expr
));
1816 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1818 static enum gimplify_status
1819 gimplify_case_label_expr (tree
*expr_p
, gimple_seq
*pre_p
)
1821 struct gimplify_ctx
*ctxp
;
1822 gimple gimple_label
;
1824 /* Invalid OpenMP programs can play Duff's Device type games with
1825 #pragma omp parallel. At least in the C front end, we don't
1826 detect such invalid branches until after gimplification. */
1827 for (ctxp
= gimplify_ctxp
; ; ctxp
= ctxp
->prev_context
)
1828 if (ctxp
->case_labels
)
1831 gimple_label
= gimple_build_label (CASE_LABEL (*expr_p
));
1832 VEC_safe_push (tree
, heap
, ctxp
->case_labels
, *expr_p
);
1833 gimplify_seq_add_stmt (pre_p
, gimple_label
);
1838 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1842 build_and_jump (tree
*label_p
)
1844 if (label_p
== NULL
)
1845 /* If there's nowhere to jump, just fall through. */
1848 if (*label_p
== NULL_TREE
)
1850 tree label
= create_artificial_label (UNKNOWN_LOCATION
);
1854 return build1 (GOTO_EXPR
, void_type_node
, *label_p
);
1857 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1858 This also involves building a label to jump to and communicating it to
1859 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1861 static enum gimplify_status
1862 gimplify_exit_expr (tree
*expr_p
)
1864 tree cond
= TREE_OPERAND (*expr_p
, 0);
1867 expr
= build_and_jump (&gimplify_ctxp
->exit_label
);
1868 expr
= build3 (COND_EXPR
, void_type_node
, cond
, expr
, NULL_TREE
);
1874 /* A helper function to be called via walk_tree. Mark all labels under *TP
1875 as being forced. To be called for DECL_INITIAL of static variables. */
1878 force_labels_r (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
1882 if (TREE_CODE (*tp
) == LABEL_DECL
)
1883 FORCED_LABEL (*tp
) = 1;
1888 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1889 different from its canonical type, wrap the whole thing inside a
1890 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1893 The canonical type of a COMPONENT_REF is the type of the field being
1894 referenced--unless the field is a bit-field which can be read directly
1895 in a smaller mode, in which case the canonical type is the
1896 sign-appropriate type corresponding to that mode. */
1899 canonicalize_component_ref (tree
*expr_p
)
1901 tree expr
= *expr_p
;
1904 gcc_assert (TREE_CODE (expr
) == COMPONENT_REF
);
1906 if (INTEGRAL_TYPE_P (TREE_TYPE (expr
)))
1907 type
= TREE_TYPE (get_unwidened (expr
, NULL_TREE
));
1909 type
= TREE_TYPE (TREE_OPERAND (expr
, 1));
1911 /* One could argue that all the stuff below is not necessary for
1912 the non-bitfield case and declare it a FE error if type
1913 adjustment would be needed. */
1914 if (TREE_TYPE (expr
) != type
)
1916 #ifdef ENABLE_TYPES_CHECKING
1917 tree old_type
= TREE_TYPE (expr
);
1921 /* We need to preserve qualifiers and propagate them from
1923 type_quals
= TYPE_QUALS (type
)
1924 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr
, 0)));
1925 if (TYPE_QUALS (type
) != type_quals
)
1926 type
= build_qualified_type (TYPE_MAIN_VARIANT (type
), type_quals
);
1928 /* Set the type of the COMPONENT_REF to the underlying type. */
1929 TREE_TYPE (expr
) = type
;
1931 #ifdef ENABLE_TYPES_CHECKING
1932 /* It is now a FE error, if the conversion from the canonical
1933 type to the original expression type is not useless. */
1934 gcc_assert (useless_type_conversion_p (old_type
, type
));
1939 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1940 to foo, embed that change in the ADDR_EXPR by converting
1945 where L is the lower bound. For simplicity, only do this for constant
1947 The constraint is that the type of &array[L] is trivially convertible
1951 canonicalize_addr_expr (tree
*expr_p
)
1953 tree expr
= *expr_p
;
1954 tree addr_expr
= TREE_OPERAND (expr
, 0);
1955 tree datype
, ddatype
, pddatype
;
1957 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1958 if (!POINTER_TYPE_P (TREE_TYPE (expr
))
1959 || TREE_CODE (addr_expr
) != ADDR_EXPR
)
1962 /* The addr_expr type should be a pointer to an array. */
1963 datype
= TREE_TYPE (TREE_TYPE (addr_expr
));
1964 if (TREE_CODE (datype
) != ARRAY_TYPE
)
1967 /* The pointer to element type shall be trivially convertible to
1968 the expression pointer type. */
1969 ddatype
= TREE_TYPE (datype
);
1970 pddatype
= build_pointer_type (ddatype
);
1971 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr
)),
1975 /* The lower bound and element sizes must be constant. */
1976 if (!TYPE_SIZE_UNIT (ddatype
)
1977 || TREE_CODE (TYPE_SIZE_UNIT (ddatype
)) != INTEGER_CST
1978 || !TYPE_DOMAIN (datype
) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype
))
1979 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype
))) != INTEGER_CST
)
1982 /* All checks succeeded. Build a new node to merge the cast. */
1983 *expr_p
= build4 (ARRAY_REF
, ddatype
, TREE_OPERAND (addr_expr
, 0),
1984 TYPE_MIN_VALUE (TYPE_DOMAIN (datype
)),
1985 NULL_TREE
, NULL_TREE
);
1986 *expr_p
= build1 (ADDR_EXPR
, pddatype
, *expr_p
);
1988 /* We can have stripped a required restrict qualifier above. */
1989 if (!useless_type_conversion_p (TREE_TYPE (expr
), TREE_TYPE (*expr_p
)))
1990 *expr_p
= fold_convert (TREE_TYPE (expr
), *expr_p
);
1993 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1994 underneath as appropriate. */
1996 static enum gimplify_status
1997 gimplify_conversion (tree
*expr_p
)
1999 location_t loc
= EXPR_LOCATION (*expr_p
);
2000 gcc_assert (CONVERT_EXPR_P (*expr_p
));
2002 /* Then strip away all but the outermost conversion. */
2003 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p
, 0));
2005 /* And remove the outermost conversion if it's useless. */
2006 if (tree_ssa_useless_type_conversion (*expr_p
))
2007 *expr_p
= TREE_OPERAND (*expr_p
, 0);
2009 /* If we still have a conversion at the toplevel,
2010 then canonicalize some constructs. */
2011 if (CONVERT_EXPR_P (*expr_p
))
2013 tree sub
= TREE_OPERAND (*expr_p
, 0);
2015 /* If a NOP conversion is changing the type of a COMPONENT_REF
2016 expression, then canonicalize its type now in order to expose more
2017 redundant conversions. */
2018 if (TREE_CODE (sub
) == COMPONENT_REF
)
2019 canonicalize_component_ref (&TREE_OPERAND (*expr_p
, 0));
2021 /* If a NOP conversion is changing a pointer to array of foo
2022 to a pointer to foo, embed that change in the ADDR_EXPR. */
2023 else if (TREE_CODE (sub
) == ADDR_EXPR
)
2024 canonicalize_addr_expr (expr_p
);
2027 /* If we have a conversion to a non-register type force the
2028 use of a VIEW_CONVERT_EXPR instead. */
2029 if (CONVERT_EXPR_P (*expr_p
) && !is_gimple_reg_type (TREE_TYPE (*expr_p
)))
2030 *expr_p
= fold_build1_loc (loc
, VIEW_CONVERT_EXPR
, TREE_TYPE (*expr_p
),
2031 TREE_OPERAND (*expr_p
, 0));
2036 /* Nonlocal VLAs seen in the current function. */
2037 static struct pointer_set_t
*nonlocal_vlas
;
2039 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
2040 DECL_VALUE_EXPR, and it's worth re-examining things. */
2042 static enum gimplify_status
2043 gimplify_var_or_parm_decl (tree
*expr_p
)
2045 tree decl
= *expr_p
;
2047 /* ??? If this is a local variable, and it has not been seen in any
2048 outer BIND_EXPR, then it's probably the result of a duplicate
2049 declaration, for which we've already issued an error. It would
2050 be really nice if the front end wouldn't leak these at all.
2051 Currently the only known culprit is C++ destructors, as seen
2052 in g++.old-deja/g++.jason/binding.C. */
2053 if (TREE_CODE (decl
) == VAR_DECL
2054 && !DECL_SEEN_IN_BIND_EXPR_P (decl
)
2055 && !TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
)
2056 && decl_function_context (decl
) == current_function_decl
)
2058 gcc_assert (seen_error ());
2062 /* When within an OpenMP context, notice uses of variables. */
2063 if (gimplify_omp_ctxp
&& omp_notice_variable (gimplify_omp_ctxp
, decl
, true))
2066 /* If the decl is an alias for another expression, substitute it now. */
2067 if (DECL_HAS_VALUE_EXPR_P (decl
))
2069 tree value_expr
= DECL_VALUE_EXPR (decl
);
2071 /* For referenced nonlocal VLAs add a decl for debugging purposes
2072 to the current function. */
2073 if (TREE_CODE (decl
) == VAR_DECL
2074 && TREE_CODE (DECL_SIZE_UNIT (decl
)) != INTEGER_CST
2075 && nonlocal_vlas
!= NULL
2076 && TREE_CODE (value_expr
) == INDIRECT_REF
2077 && TREE_CODE (TREE_OPERAND (value_expr
, 0)) == VAR_DECL
2078 && decl_function_context (decl
) != current_function_decl
)
2080 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
;
2081 while (ctx
&& ctx
->region_type
== ORT_WORKSHARE
)
2082 ctx
= ctx
->outer_context
;
2083 if (!ctx
&& !pointer_set_insert (nonlocal_vlas
, decl
))
2085 tree copy
= copy_node (decl
), block
;
2087 lang_hooks
.dup_lang_specific_decl (copy
);
2088 SET_DECL_RTL (copy
, 0);
2089 TREE_USED (copy
) = 1;
2090 block
= DECL_INITIAL (current_function_decl
);
2091 DECL_CHAIN (copy
) = BLOCK_VARS (block
);
2092 BLOCK_VARS (block
) = copy
;
2093 SET_DECL_VALUE_EXPR (copy
, unshare_expr (value_expr
));
2094 DECL_HAS_VALUE_EXPR_P (copy
) = 1;
2098 *expr_p
= unshare_expr (value_expr
);
2105 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
2109 : min_lval '[' val ']'
2111 | compound_lval '[' val ']'
2112 | compound_lval '.' ID
2114 This is not part of the original SIMPLE definition, which separates
2115 array and member references, but it seems reasonable to handle them
2116 together. Also, this way we don't run into problems with union
2117 aliasing; gcc requires that for accesses through a union to alias, the
2118 union reference must be explicit, which was not always the case when we
2119 were splitting up array and member refs.
2121 PRE_P points to the sequence where side effects that must happen before
2122 *EXPR_P should be stored.
2124 POST_P points to the sequence where side effects that must happen after
2125 *EXPR_P should be stored. */
2127 static enum gimplify_status
2128 gimplify_compound_lval (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
2129 fallback_t fallback
)
2132 VEC(tree
,heap
) *expr_stack
;
2133 enum gimplify_status ret
= GS_ALL_DONE
, tret
;
2135 location_t loc
= EXPR_LOCATION (*expr_p
);
2136 tree expr
= *expr_p
;
2138 /* Create a stack of the subexpressions so later we can walk them in
2139 order from inner to outer. */
2140 expr_stack
= VEC_alloc (tree
, heap
, 10);
2142 /* We can handle anything that get_inner_reference can deal with. */
2143 for (p
= expr_p
; ; p
= &TREE_OPERAND (*p
, 0))
2146 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2147 if (TREE_CODE (*p
) == INDIRECT_REF
)
2148 *p
= fold_indirect_ref_loc (loc
, *p
);
2150 if (handled_component_p (*p
))
2152 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2153 additional COMPONENT_REFs. */
2154 else if ((TREE_CODE (*p
) == VAR_DECL
|| TREE_CODE (*p
) == PARM_DECL
)
2155 && gimplify_var_or_parm_decl (p
) == GS_OK
)
2160 VEC_safe_push (tree
, heap
, expr_stack
, *p
);
2163 gcc_assert (VEC_length (tree
, expr_stack
));
2165 /* Now EXPR_STACK is a stack of pointers to all the refs we've
2166 walked through and P points to the innermost expression.
2168 Java requires that we elaborated nodes in source order. That
2169 means we must gimplify the inner expression followed by each of
2170 the indices, in order. But we can't gimplify the inner
2171 expression until we deal with any variable bounds, sizes, or
2172 positions in order to deal with PLACEHOLDER_EXPRs.
2174 So we do this in three steps. First we deal with the annotations
2175 for any variables in the components, then we gimplify the base,
2176 then we gimplify any indices, from left to right. */
2177 for (i
= VEC_length (tree
, expr_stack
) - 1; i
>= 0; i
--)
2179 tree t
= VEC_index (tree
, expr_stack
, i
);
2181 if (TREE_CODE (t
) == ARRAY_REF
|| TREE_CODE (t
) == ARRAY_RANGE_REF
)
2183 /* Gimplify the low bound and element type size and put them into
2184 the ARRAY_REF. If these values are set, they have already been
2186 if (TREE_OPERAND (t
, 2) == NULL_TREE
)
2188 tree low
= unshare_expr (array_ref_low_bound (t
));
2189 if (!is_gimple_min_invariant (low
))
2191 TREE_OPERAND (t
, 2) = low
;
2192 tret
= gimplify_expr (&TREE_OPERAND (t
, 2), pre_p
,
2193 post_p
, is_gimple_reg
,
2195 ret
= MIN (ret
, tret
);
2200 tret
= gimplify_expr (&TREE_OPERAND (t
, 2), pre_p
, post_p
,
2201 is_gimple_reg
, fb_rvalue
);
2202 ret
= MIN (ret
, tret
);
2205 if (TREE_OPERAND (t
, 3) == NULL_TREE
)
2207 tree elmt_type
= TREE_TYPE (TREE_TYPE (TREE_OPERAND (t
, 0)));
2208 tree elmt_size
= unshare_expr (array_ref_element_size (t
));
2209 tree factor
= size_int (TYPE_ALIGN_UNIT (elmt_type
));
2211 /* Divide the element size by the alignment of the element
2214 = size_binop_loc (loc
, EXACT_DIV_EXPR
, elmt_size
, factor
);
2216 if (!is_gimple_min_invariant (elmt_size
))
2218 TREE_OPERAND (t
, 3) = elmt_size
;
2219 tret
= gimplify_expr (&TREE_OPERAND (t
, 3), pre_p
,
2220 post_p
, is_gimple_reg
,
2222 ret
= MIN (ret
, tret
);
2227 tret
= gimplify_expr (&TREE_OPERAND (t
, 3), pre_p
, post_p
,
2228 is_gimple_reg
, fb_rvalue
);
2229 ret
= MIN (ret
, tret
);
2232 else if (TREE_CODE (t
) == COMPONENT_REF
)
2234 /* Set the field offset into T and gimplify it. */
2235 if (TREE_OPERAND (t
, 2) == NULL_TREE
)
2237 tree offset
= unshare_expr (component_ref_field_offset (t
));
2238 tree field
= TREE_OPERAND (t
, 1);
2240 = size_int (DECL_OFFSET_ALIGN (field
) / BITS_PER_UNIT
);
2242 /* Divide the offset by its alignment. */
2243 offset
= size_binop_loc (loc
, EXACT_DIV_EXPR
, offset
, factor
);
2245 if (!is_gimple_min_invariant (offset
))
2247 TREE_OPERAND (t
, 2) = offset
;
2248 tret
= gimplify_expr (&TREE_OPERAND (t
, 2), pre_p
,
2249 post_p
, is_gimple_reg
,
2251 ret
= MIN (ret
, tret
);
2256 tret
= gimplify_expr (&TREE_OPERAND (t
, 2), pre_p
, post_p
,
2257 is_gimple_reg
, fb_rvalue
);
2258 ret
= MIN (ret
, tret
);
2263 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2264 so as to match the min_lval predicate. Failure to do so may result
2265 in the creation of large aggregate temporaries. */
2266 tret
= gimplify_expr (p
, pre_p
, post_p
, is_gimple_min_lval
,
2267 fallback
| fb_lvalue
);
2268 ret
= MIN (ret
, tret
);
2270 /* And finally, the indices and operands of ARRAY_REF. During this
2271 loop we also remove any useless conversions. */
2272 for (; VEC_length (tree
, expr_stack
) > 0; )
2274 tree t
= VEC_pop (tree
, expr_stack
);
2276 if (TREE_CODE (t
) == ARRAY_REF
|| TREE_CODE (t
) == ARRAY_RANGE_REF
)
2278 /* Gimplify the dimension. */
2279 if (!is_gimple_min_invariant (TREE_OPERAND (t
, 1)))
2281 tret
= gimplify_expr (&TREE_OPERAND (t
, 1), pre_p
, post_p
,
2282 is_gimple_val
, fb_rvalue
);
2283 ret
= MIN (ret
, tret
);
2287 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t
, 0));
2289 /* The innermost expression P may have originally had
2290 TREE_SIDE_EFFECTS set which would have caused all the outer
2291 expressions in *EXPR_P leading to P to also have had
2292 TREE_SIDE_EFFECTS set. */
2293 recalculate_side_effects (t
);
2296 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2297 if ((fallback
& fb_rvalue
) && TREE_CODE (*expr_p
) == COMPONENT_REF
)
2299 canonicalize_component_ref (expr_p
);
2302 VEC_free (tree
, heap
, expr_stack
);
2304 gcc_assert (*expr_p
== expr
|| ret
!= GS_ALL_DONE
);
2309 /* Gimplify the self modifying expression pointed to by EXPR_P
2312 PRE_P points to the list where side effects that must happen before
2313 *EXPR_P should be stored.
2315 POST_P points to the list where side effects that must happen after
2316 *EXPR_P should be stored.
2318 WANT_VALUE is nonzero iff we want to use the value of this expression
2319 in another expression. */
2321 static enum gimplify_status
2322 gimplify_self_mod_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
2325 enum tree_code code
;
2326 tree lhs
, lvalue
, rhs
, t1
;
2327 gimple_seq post
= NULL
, *orig_post_p
= post_p
;
2329 enum tree_code arith_code
;
2330 enum gimplify_status ret
;
2331 location_t loc
= EXPR_LOCATION (*expr_p
);
2333 code
= TREE_CODE (*expr_p
);
2335 gcc_assert (code
== POSTINCREMENT_EXPR
|| code
== POSTDECREMENT_EXPR
2336 || code
== PREINCREMENT_EXPR
|| code
== PREDECREMENT_EXPR
);
2338 /* Prefix or postfix? */
2339 if (code
== POSTINCREMENT_EXPR
|| code
== POSTDECREMENT_EXPR
)
2340 /* Faster to treat as prefix if result is not used. */
2341 postfix
= want_value
;
2345 /* For postfix, make sure the inner expression's post side effects
2346 are executed after side effects from this expression. */
2350 /* Add or subtract? */
2351 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
2352 arith_code
= PLUS_EXPR
;
2354 arith_code
= MINUS_EXPR
;
2356 /* Gimplify the LHS into a GIMPLE lvalue. */
2357 lvalue
= TREE_OPERAND (*expr_p
, 0);
2358 ret
= gimplify_expr (&lvalue
, pre_p
, post_p
, is_gimple_lvalue
, fb_lvalue
);
2359 if (ret
== GS_ERROR
)
2362 /* Extract the operands to the arithmetic operation. */
2364 rhs
= TREE_OPERAND (*expr_p
, 1);
2366 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2367 that as the result value and in the postqueue operation. We also
2368 make sure to make lvalue a minimal lval, see
2369 gcc.c-torture/execute/20040313-1.c for an example where this matters. */
2372 if (!is_gimple_min_lval (lvalue
))
2374 mark_addressable (lvalue
);
2375 lvalue
= build_fold_addr_expr_loc (input_location
, lvalue
);
2376 gimplify_expr (&lvalue
, pre_p
, post_p
, is_gimple_val
, fb_rvalue
);
2377 lvalue
= build_fold_indirect_ref_loc (input_location
, lvalue
);
2379 ret
= gimplify_expr (&lhs
, pre_p
, post_p
, is_gimple_val
, fb_rvalue
);
2380 if (ret
== GS_ERROR
)
2384 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2385 if (POINTER_TYPE_P (TREE_TYPE (lhs
)))
2387 rhs
= convert_to_ptrofftype_loc (loc
, rhs
);
2388 if (arith_code
== MINUS_EXPR
)
2389 rhs
= fold_build1_loc (loc
, NEGATE_EXPR
, TREE_TYPE (rhs
), rhs
);
2390 arith_code
= POINTER_PLUS_EXPR
;
2395 tree t2
= get_initialized_tmp_var (lhs
, pre_p
, NULL
);
2396 t1
= build2 (arith_code
, TREE_TYPE (*expr_p
), t2
, rhs
);
2397 gimplify_assign (lvalue
, t1
, pre_p
);
2398 gimplify_seq_add_seq (orig_post_p
, post
);
2404 t1
= build2 (arith_code
, TREE_TYPE (*expr_p
), lhs
, rhs
);
2405 *expr_p
= build2 (MODIFY_EXPR
, TREE_TYPE (lvalue
), lvalue
, t1
);
2410 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2413 maybe_with_size_expr (tree
*expr_p
)
2415 tree expr
= *expr_p
;
2416 tree type
= TREE_TYPE (expr
);
2419 /* If we've already wrapped this or the type is error_mark_node, we can't do
2421 if (TREE_CODE (expr
) == WITH_SIZE_EXPR
2422 || type
== error_mark_node
)
2425 /* If the size isn't known or is a constant, we have nothing to do. */
2426 size
= TYPE_SIZE_UNIT (type
);
2427 if (!size
|| TREE_CODE (size
) == INTEGER_CST
)
2430 /* Otherwise, make a WITH_SIZE_EXPR. */
2431 size
= unshare_expr (size
);
2432 size
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (size
, expr
);
2433 *expr_p
= build2 (WITH_SIZE_EXPR
, type
, expr
, size
);
2436 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2437 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2440 static enum gimplify_status
2441 gimplify_arg (tree
*arg_p
, gimple_seq
*pre_p
, location_t call_location
)
2443 bool (*test
) (tree
);
2446 /* In general, we allow lvalues for function arguments to avoid
2447 extra overhead of copying large aggregates out of even larger
2448 aggregates into temporaries only to copy the temporaries to
2449 the argument list. Make optimizers happy by pulling out to
2450 temporaries those types that fit in registers. */
2451 if (is_gimple_reg_type (TREE_TYPE (*arg_p
)))
2452 test
= is_gimple_val
, fb
= fb_rvalue
;
2455 test
= is_gimple_lvalue
, fb
= fb_either
;
2456 /* Also strip a TARGET_EXPR that would force an extra copy. */
2457 if (TREE_CODE (*arg_p
) == TARGET_EXPR
)
2459 tree init
= TARGET_EXPR_INITIAL (*arg_p
);
2461 && !VOID_TYPE_P (TREE_TYPE (init
)))
2466 /* If this is a variable sized type, we must remember the size. */
2467 maybe_with_size_expr (arg_p
);
2469 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2470 /* Make sure arguments have the same location as the function call
2472 protected_set_expr_location (*arg_p
, call_location
);
2474 /* There is a sequence point before a function call. Side effects in
2475 the argument list must occur before the actual call. So, when
2476 gimplifying arguments, force gimplify_expr to use an internal
2477 post queue which is then appended to the end of PRE_P. */
2478 return gimplify_expr (arg_p
, pre_p
, NULL
, test
, fb
);
2481 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2482 WANT_VALUE is true if the result of the call is desired. */
2484 static enum gimplify_status
2485 gimplify_call_expr (tree
*expr_p
, gimple_seq
*pre_p
, bool want_value
)
2487 tree fndecl
, parms
, p
, fnptrtype
;
2488 enum gimplify_status ret
;
2491 bool builtin_va_start_p
= FALSE
;
2492 location_t loc
= EXPR_LOCATION (*expr_p
);
2494 gcc_assert (TREE_CODE (*expr_p
) == CALL_EXPR
);
2496 /* For reliable diagnostics during inlining, it is necessary that
2497 every call_expr be annotated with file and line. */
2498 if (! EXPR_HAS_LOCATION (*expr_p
))
2499 SET_EXPR_LOCATION (*expr_p
, input_location
);
2501 /* This may be a call to a builtin function.
2503 Builtin function calls may be transformed into different
2504 (and more efficient) builtin function calls under certain
2505 circumstances. Unfortunately, gimplification can muck things
2506 up enough that the builtin expanders are not aware that certain
2507 transformations are still valid.
2509 So we attempt transformation/gimplification of the call before
2510 we gimplify the CALL_EXPR. At this time we do not manage to
2511 transform all calls in the same manner as the expanders do, but
2512 we do transform most of them. */
2513 fndecl
= get_callee_fndecl (*expr_p
);
2515 && DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
2516 switch (DECL_FUNCTION_CODE (fndecl
))
2518 case BUILT_IN_VA_START
:
2520 builtin_va_start_p
= TRUE
;
2521 if (call_expr_nargs (*expr_p
) < 2)
2523 error ("too few arguments to function %<va_start%>");
2524 *expr_p
= build_empty_stmt (EXPR_LOCATION (*expr_p
));
2528 if (fold_builtin_next_arg (*expr_p
, true))
2530 *expr_p
= build_empty_stmt (EXPR_LOCATION (*expr_p
));
2537 expanded_location loc
= expand_location (EXPR_LOCATION (*expr_p
));
2538 *expr_p
= build_int_cst (TREE_TYPE (*expr_p
), loc
.line
);
2543 expanded_location loc
= expand_location (EXPR_LOCATION (*expr_p
));
2544 *expr_p
= build_string_literal (strlen (loc
.file
) + 1, loc
.file
);
2547 case BUILT_IN_FUNCTION
:
2549 const char *function
;
2550 function
= IDENTIFIER_POINTER (DECL_NAME (current_function_decl
));
2551 *expr_p
= build_string_literal (strlen (function
) + 1, function
);
2557 if (fndecl
&& DECL_BUILT_IN (fndecl
))
2559 tree new_tree
= fold_call_expr (input_location
, *expr_p
, !want_value
);
2560 if (new_tree
&& new_tree
!= *expr_p
)
2562 /* There was a transformation of this call which computes the
2563 same value, but in a more efficient way. Return and try
2570 /* Remember the original function pointer type. */
2571 fnptrtype
= TREE_TYPE (CALL_EXPR_FN (*expr_p
));
2573 /* There is a sequence point before the call, so any side effects in
2574 the calling expression must occur before the actual call. Force
2575 gimplify_expr to use an internal post queue. */
2576 ret
= gimplify_expr (&CALL_EXPR_FN (*expr_p
), pre_p
, NULL
,
2577 is_gimple_call_addr
, fb_rvalue
);
2579 nargs
= call_expr_nargs (*expr_p
);
2581 /* Get argument types for verification. */
2582 fndecl
= get_callee_fndecl (*expr_p
);
2585 parms
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
2586 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p
))))
2587 parms
= TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p
))));
2589 if (fndecl
&& DECL_ARGUMENTS (fndecl
))
2590 p
= DECL_ARGUMENTS (fndecl
);
2595 for (i
= 0; i
< nargs
&& p
; i
++, p
= TREE_CHAIN (p
))
2598 /* If the last argument is __builtin_va_arg_pack () and it is not
2599 passed as a named argument, decrease the number of CALL_EXPR
2600 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2603 && TREE_CODE (CALL_EXPR_ARG (*expr_p
, nargs
- 1)) == CALL_EXPR
)
2605 tree last_arg
= CALL_EXPR_ARG (*expr_p
, nargs
- 1);
2606 tree last_arg_fndecl
= get_callee_fndecl (last_arg
);
2609 && TREE_CODE (last_arg_fndecl
) == FUNCTION_DECL
2610 && DECL_BUILT_IN_CLASS (last_arg_fndecl
) == BUILT_IN_NORMAL
2611 && DECL_FUNCTION_CODE (last_arg_fndecl
) == BUILT_IN_VA_ARG_PACK
)
2613 tree call
= *expr_p
;
2616 *expr_p
= build_call_array_loc (loc
, TREE_TYPE (call
),
2617 CALL_EXPR_FN (call
),
2618 nargs
, CALL_EXPR_ARGP (call
));
2620 /* Copy all CALL_EXPR flags, location and block, except
2621 CALL_EXPR_VA_ARG_PACK flag. */
2622 CALL_EXPR_STATIC_CHAIN (*expr_p
) = CALL_EXPR_STATIC_CHAIN (call
);
2623 CALL_EXPR_TAILCALL (*expr_p
) = CALL_EXPR_TAILCALL (call
);
2624 CALL_EXPR_RETURN_SLOT_OPT (*expr_p
)
2625 = CALL_EXPR_RETURN_SLOT_OPT (call
);
2626 CALL_FROM_THUNK_P (*expr_p
) = CALL_FROM_THUNK_P (call
);
2627 SET_EXPR_LOCATION (*expr_p
, EXPR_LOCATION (call
));
2629 /* Set CALL_EXPR_VA_ARG_PACK. */
2630 CALL_EXPR_VA_ARG_PACK (*expr_p
) = 1;
2634 /* Finally, gimplify the function arguments. */
2637 for (i
= (PUSH_ARGS_REVERSED
? nargs
- 1 : 0);
2638 PUSH_ARGS_REVERSED
? i
>= 0 : i
< nargs
;
2639 PUSH_ARGS_REVERSED
? i
-- : i
++)
2641 enum gimplify_status t
;
2643 /* Avoid gimplifying the second argument to va_start, which needs to
2644 be the plain PARM_DECL. */
2645 if ((i
!= 1) || !builtin_va_start_p
)
2647 t
= gimplify_arg (&CALL_EXPR_ARG (*expr_p
, i
), pre_p
,
2648 EXPR_LOCATION (*expr_p
));
2656 /* Verify the function result. */
2657 if (want_value
&& fndecl
2658 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype
))))
2660 error_at (loc
, "using result of function returning %<void%>");
2664 /* Try this again in case gimplification exposed something. */
2665 if (ret
!= GS_ERROR
)
2667 tree new_tree
= fold_call_expr (input_location
, *expr_p
, !want_value
);
2669 if (new_tree
&& new_tree
!= *expr_p
)
2671 /* There was a transformation of this call which computes the
2672 same value, but in a more efficient way. Return and try
2680 *expr_p
= error_mark_node
;
2684 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2685 decl. This allows us to eliminate redundant or useless
2686 calls to "const" functions. */
2687 if (TREE_CODE (*expr_p
) == CALL_EXPR
)
2689 int flags
= call_expr_flags (*expr_p
);
2690 if (flags
& (ECF_CONST
| ECF_PURE
)
2691 /* An infinite loop is considered a side effect. */
2692 && !(flags
& (ECF_LOOPING_CONST_OR_PURE
)))
2693 TREE_SIDE_EFFECTS (*expr_p
) = 0;
2696 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2697 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2698 form and delegate the creation of a GIMPLE_CALL to
2699 gimplify_modify_expr. This is always possible because when
2700 WANT_VALUE is true, the caller wants the result of this call into
2701 a temporary, which means that we will emit an INIT_EXPR in
2702 internal_get_tmp_var which will then be handled by
2703 gimplify_modify_expr. */
2706 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2707 have to do is replicate it as a GIMPLE_CALL tuple. */
2708 gimple_stmt_iterator gsi
;
2709 call
= gimple_build_call_from_tree (*expr_p
);
2710 gimple_call_set_fntype (call
, TREE_TYPE (fnptrtype
));
2711 gimplify_seq_add_stmt (pre_p
, call
);
2712 gsi
= gsi_last (*pre_p
);
2714 *expr_p
= NULL_TREE
;
2717 /* Remember the original function type. */
2718 CALL_EXPR_FN (*expr_p
) = build1 (NOP_EXPR
, fnptrtype
,
2719 CALL_EXPR_FN (*expr_p
));
2724 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2725 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2727 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2728 condition is true or false, respectively. If null, we should generate
2729 our own to skip over the evaluation of this specific expression.
2731 LOCUS is the source location of the COND_EXPR.
2733 This function is the tree equivalent of do_jump.
2735 shortcut_cond_r should only be called by shortcut_cond_expr. */
2738 shortcut_cond_r (tree pred
, tree
*true_label_p
, tree
*false_label_p
,
2741 tree local_label
= NULL_TREE
;
2742 tree t
, expr
= NULL
;
2744 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2745 retain the shortcut semantics. Just insert the gotos here;
2746 shortcut_cond_expr will append the real blocks later. */
2747 if (TREE_CODE (pred
) == TRUTH_ANDIF_EXPR
)
2749 location_t new_locus
;
2751 /* Turn if (a && b) into
2753 if (a); else goto no;
2754 if (b) goto yes; else goto no;
2757 if (false_label_p
== NULL
)
2758 false_label_p
= &local_label
;
2760 /* Keep the original source location on the first 'if'. */
2761 t
= shortcut_cond_r (TREE_OPERAND (pred
, 0), NULL
, false_label_p
, locus
);
2762 append_to_statement_list (t
, &expr
);
2764 /* Set the source location of the && on the second 'if'. */
2765 new_locus
= EXPR_HAS_LOCATION (pred
) ? EXPR_LOCATION (pred
) : locus
;
2766 t
= shortcut_cond_r (TREE_OPERAND (pred
, 1), true_label_p
, false_label_p
,
2768 append_to_statement_list (t
, &expr
);
2770 else if (TREE_CODE (pred
) == TRUTH_ORIF_EXPR
)
2772 location_t new_locus
;
2774 /* Turn if (a || b) into
2777 if (b) goto yes; else goto no;
2780 if (true_label_p
== NULL
)
2781 true_label_p
= &local_label
;
2783 /* Keep the original source location on the first 'if'. */
2784 t
= shortcut_cond_r (TREE_OPERAND (pred
, 0), true_label_p
, NULL
, locus
);
2785 append_to_statement_list (t
, &expr
);
2787 /* Set the source location of the || on the second 'if'. */
2788 new_locus
= EXPR_HAS_LOCATION (pred
) ? EXPR_LOCATION (pred
) : locus
;
2789 t
= shortcut_cond_r (TREE_OPERAND (pred
, 1), true_label_p
, false_label_p
,
2791 append_to_statement_list (t
, &expr
);
2793 else if (TREE_CODE (pred
) == COND_EXPR
2794 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred
, 1)))
2795 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred
, 2))))
2797 location_t new_locus
;
2799 /* As long as we're messing with gotos, turn if (a ? b : c) into
2801 if (b) goto yes; else goto no;
2803 if (c) goto yes; else goto no;
2805 Don't do this if one of the arms has void type, which can happen
2806 in C++ when the arm is throw. */
2808 /* Keep the original source location on the first 'if'. Set the source
2809 location of the ? on the second 'if'. */
2810 new_locus
= EXPR_HAS_LOCATION (pred
) ? EXPR_LOCATION (pred
) : locus
;
2811 expr
= build3 (COND_EXPR
, void_type_node
, TREE_OPERAND (pred
, 0),
2812 shortcut_cond_r (TREE_OPERAND (pred
, 1), true_label_p
,
2813 false_label_p
, locus
),
2814 shortcut_cond_r (TREE_OPERAND (pred
, 2), true_label_p
,
2815 false_label_p
, new_locus
));
2819 expr
= build3 (COND_EXPR
, void_type_node
, pred
,
2820 build_and_jump (true_label_p
),
2821 build_and_jump (false_label_p
));
2822 SET_EXPR_LOCATION (expr
, locus
);
2827 t
= build1 (LABEL_EXPR
, void_type_node
, local_label
);
2828 append_to_statement_list (t
, &expr
);
2834 /* Given a conditional expression EXPR with short-circuit boolean
2835 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2836 predicate apart into the equivalent sequence of conditionals. */
2839 shortcut_cond_expr (tree expr
)
2841 tree pred
= TREE_OPERAND (expr
, 0);
2842 tree then_
= TREE_OPERAND (expr
, 1);
2843 tree else_
= TREE_OPERAND (expr
, 2);
2844 tree true_label
, false_label
, end_label
, t
;
2846 tree
*false_label_p
;
2847 bool emit_end
, emit_false
, jump_over_else
;
2848 bool then_se
= then_
&& TREE_SIDE_EFFECTS (then_
);
2849 bool else_se
= else_
&& TREE_SIDE_EFFECTS (else_
);
2851 /* First do simple transformations. */
2854 /* If there is no 'else', turn
2857 if (a) if (b) then c. */
2858 while (TREE_CODE (pred
) == TRUTH_ANDIF_EXPR
)
2860 /* Keep the original source location on the first 'if'. */
2861 location_t locus
= EXPR_LOC_OR_HERE (expr
);
2862 TREE_OPERAND (expr
, 0) = TREE_OPERAND (pred
, 1);
2863 /* Set the source location of the && on the second 'if'. */
2864 if (EXPR_HAS_LOCATION (pred
))
2865 SET_EXPR_LOCATION (expr
, EXPR_LOCATION (pred
));
2866 then_
= shortcut_cond_expr (expr
);
2867 then_se
= then_
&& TREE_SIDE_EFFECTS (then_
);
2868 pred
= TREE_OPERAND (pred
, 0);
2869 expr
= build3 (COND_EXPR
, void_type_node
, pred
, then_
, NULL_TREE
);
2870 SET_EXPR_LOCATION (expr
, locus
);
2876 /* If there is no 'then', turn
2879 if (a); else if (b); else d. */
2880 while (TREE_CODE (pred
) == TRUTH_ORIF_EXPR
)
2882 /* Keep the original source location on the first 'if'. */
2883 location_t locus
= EXPR_LOC_OR_HERE (expr
);
2884 TREE_OPERAND (expr
, 0) = TREE_OPERAND (pred
, 1);
2885 /* Set the source location of the || on the second 'if'. */
2886 if (EXPR_HAS_LOCATION (pred
))
2887 SET_EXPR_LOCATION (expr
, EXPR_LOCATION (pred
));
2888 else_
= shortcut_cond_expr (expr
);
2889 else_se
= else_
&& TREE_SIDE_EFFECTS (else_
);
2890 pred
= TREE_OPERAND (pred
, 0);
2891 expr
= build3 (COND_EXPR
, void_type_node
, pred
, NULL_TREE
, else_
);
2892 SET_EXPR_LOCATION (expr
, locus
);
2896 /* If we're done, great. */
2897 if (TREE_CODE (pred
) != TRUTH_ANDIF_EXPR
2898 && TREE_CODE (pred
) != TRUTH_ORIF_EXPR
)
2901 /* Otherwise we need to mess with gotos. Change
2904 if (a); else goto no;
2907 and recursively gimplify the condition. */
2909 true_label
= false_label
= end_label
= NULL_TREE
;
2911 /* If our arms just jump somewhere, hijack those labels so we don't
2912 generate jumps to jumps. */
2915 && TREE_CODE (then_
) == GOTO_EXPR
2916 && TREE_CODE (GOTO_DESTINATION (then_
)) == LABEL_DECL
)
2918 true_label
= GOTO_DESTINATION (then_
);
2924 && TREE_CODE (else_
) == GOTO_EXPR
2925 && TREE_CODE (GOTO_DESTINATION (else_
)) == LABEL_DECL
)
2927 false_label
= GOTO_DESTINATION (else_
);
2932 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2934 true_label_p
= &true_label
;
2936 true_label_p
= NULL
;
2938 /* The 'else' branch also needs a label if it contains interesting code. */
2939 if (false_label
|| else_se
)
2940 false_label_p
= &false_label
;
2942 false_label_p
= NULL
;
2944 /* If there was nothing else in our arms, just forward the label(s). */
2945 if (!then_se
&& !else_se
)
2946 return shortcut_cond_r (pred
, true_label_p
, false_label_p
,
2947 EXPR_LOC_OR_HERE (expr
));
2949 /* If our last subexpression already has a terminal label, reuse it. */
2951 t
= expr_last (else_
);
2953 t
= expr_last (then_
);
2956 if (t
&& TREE_CODE (t
) == LABEL_EXPR
)
2957 end_label
= LABEL_EXPR_LABEL (t
);
2959 /* If we don't care about jumping to the 'else' branch, jump to the end
2960 if the condition is false. */
2962 false_label_p
= &end_label
;
2964 /* We only want to emit these labels if we aren't hijacking them. */
2965 emit_end
= (end_label
== NULL_TREE
);
2966 emit_false
= (false_label
== NULL_TREE
);
2968 /* We only emit the jump over the else clause if we have to--if the
2969 then clause may fall through. Otherwise we can wind up with a
2970 useless jump and a useless label at the end of gimplified code,
2971 which will cause us to think that this conditional as a whole
2972 falls through even if it doesn't. If we then inline a function
2973 which ends with such a condition, that can cause us to issue an
2974 inappropriate warning about control reaching the end of a
2975 non-void function. */
2976 jump_over_else
= block_may_fallthru (then_
);
2978 pred
= shortcut_cond_r (pred
, true_label_p
, false_label_p
,
2979 EXPR_LOC_OR_HERE (expr
));
2982 append_to_statement_list (pred
, &expr
);
2984 append_to_statement_list (then_
, &expr
);
2989 tree last
= expr_last (expr
);
2990 t
= build_and_jump (&end_label
);
2991 if (EXPR_HAS_LOCATION (last
))
2992 SET_EXPR_LOCATION (t
, EXPR_LOCATION (last
));
2993 append_to_statement_list (t
, &expr
);
2997 t
= build1 (LABEL_EXPR
, void_type_node
, false_label
);
2998 append_to_statement_list (t
, &expr
);
3000 append_to_statement_list (else_
, &expr
);
3002 if (emit_end
&& end_label
)
3004 t
= build1 (LABEL_EXPR
, void_type_node
, end_label
);
3005 append_to_statement_list (t
, &expr
);
3011 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
3014 gimple_boolify (tree expr
)
3016 tree type
= TREE_TYPE (expr
);
3017 location_t loc
= EXPR_LOCATION (expr
);
3019 if (TREE_CODE (expr
) == NE_EXPR
3020 && TREE_CODE (TREE_OPERAND (expr
, 0)) == CALL_EXPR
3021 && integer_zerop (TREE_OPERAND (expr
, 1)))
3023 tree call
= TREE_OPERAND (expr
, 0);
3024 tree fn
= get_callee_fndecl (call
);
3026 /* For __builtin_expect ((long) (x), y) recurse into x as well
3027 if x is truth_value_p. */
3029 && DECL_BUILT_IN_CLASS (fn
) == BUILT_IN_NORMAL
3030 && DECL_FUNCTION_CODE (fn
) == BUILT_IN_EXPECT
3031 && call_expr_nargs (call
) == 2)
3033 tree arg
= CALL_EXPR_ARG (call
, 0);
3036 if (TREE_CODE (arg
) == NOP_EXPR
3037 && TREE_TYPE (arg
) == TREE_TYPE (call
))
3038 arg
= TREE_OPERAND (arg
, 0);
3039 if (truth_value_p (TREE_CODE (arg
)))
3041 arg
= gimple_boolify (arg
);
3042 CALL_EXPR_ARG (call
, 0)
3043 = fold_convert_loc (loc
, TREE_TYPE (call
), arg
);
3049 switch (TREE_CODE (expr
))
3051 case TRUTH_AND_EXPR
:
3053 case TRUTH_XOR_EXPR
:
3054 case TRUTH_ANDIF_EXPR
:
3055 case TRUTH_ORIF_EXPR
:
3056 /* Also boolify the arguments of truth exprs. */
3057 TREE_OPERAND (expr
, 1) = gimple_boolify (TREE_OPERAND (expr
, 1));
3060 case TRUTH_NOT_EXPR
:
3061 TREE_OPERAND (expr
, 0) = gimple_boolify (TREE_OPERAND (expr
, 0));
3063 /* These expressions always produce boolean results. */
3064 if (TREE_CODE (type
) != BOOLEAN_TYPE
)
3065 TREE_TYPE (expr
) = boolean_type_node
;
3069 if (COMPARISON_CLASS_P (expr
))
3071 /* There expressions always prduce boolean results. */
3072 if (TREE_CODE (type
) != BOOLEAN_TYPE
)
3073 TREE_TYPE (expr
) = boolean_type_node
;
3076 /* Other expressions that get here must have boolean values, but
3077 might need to be converted to the appropriate mode. */
3078 if (TREE_CODE (type
) == BOOLEAN_TYPE
)
3080 return fold_convert_loc (loc
, boolean_type_node
, expr
);
3084 /* Given a conditional expression *EXPR_P without side effects, gimplify
3085 its operands. New statements are inserted to PRE_P. */
3087 static enum gimplify_status
3088 gimplify_pure_cond_expr (tree
*expr_p
, gimple_seq
*pre_p
)
3090 tree expr
= *expr_p
, cond
;
3091 enum gimplify_status ret
, tret
;
3092 enum tree_code code
;
3094 cond
= gimple_boolify (COND_EXPR_COND (expr
));
3096 /* We need to handle && and || specially, as their gimplification
3097 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
3098 code
= TREE_CODE (cond
);
3099 if (code
== TRUTH_ANDIF_EXPR
)
3100 TREE_SET_CODE (cond
, TRUTH_AND_EXPR
);
3101 else if (code
== TRUTH_ORIF_EXPR
)
3102 TREE_SET_CODE (cond
, TRUTH_OR_EXPR
);
3103 ret
= gimplify_expr (&cond
, pre_p
, NULL
, is_gimple_condexpr
, fb_rvalue
);
3104 COND_EXPR_COND (*expr_p
) = cond
;
3106 tret
= gimplify_expr (&COND_EXPR_THEN (expr
), pre_p
, NULL
,
3107 is_gimple_val
, fb_rvalue
);
3108 ret
= MIN (ret
, tret
);
3109 tret
= gimplify_expr (&COND_EXPR_ELSE (expr
), pre_p
, NULL
,
3110 is_gimple_val
, fb_rvalue
);
3112 return MIN (ret
, tret
);
3115 /* Return true if evaluating EXPR could trap.
3116 EXPR is GENERIC, while tree_could_trap_p can be called
3120 generic_expr_could_trap_p (tree expr
)
3124 if (!expr
|| is_gimple_val (expr
))
3127 if (!EXPR_P (expr
) || tree_could_trap_p (expr
))
3130 n
= TREE_OPERAND_LENGTH (expr
);
3131 for (i
= 0; i
< n
; i
++)
3132 if (generic_expr_could_trap_p (TREE_OPERAND (expr
, i
)))
3138 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
3147 The second form is used when *EXPR_P is of type void.
3149 PRE_P points to the list where side effects that must happen before
3150 *EXPR_P should be stored. */
3152 static enum gimplify_status
3153 gimplify_cond_expr (tree
*expr_p
, gimple_seq
*pre_p
, fallback_t fallback
)
3155 tree expr
= *expr_p
;
3156 tree type
= TREE_TYPE (expr
);
3157 location_t loc
= EXPR_LOCATION (expr
);
3158 tree tmp
, arm1
, arm2
;
3159 enum gimplify_status ret
;
3160 tree label_true
, label_false
, label_cont
;
3161 bool have_then_clause_p
, have_else_clause_p
;
3163 enum tree_code pred_code
;
3164 gimple_seq seq
= NULL
;
3166 /* If this COND_EXPR has a value, copy the values into a temporary within
3168 if (!VOID_TYPE_P (type
))
3170 tree then_
= TREE_OPERAND (expr
, 1), else_
= TREE_OPERAND (expr
, 2);
3173 /* If either an rvalue is ok or we do not require an lvalue, create the
3174 temporary. But we cannot do that if the type is addressable. */
3175 if (((fallback
& fb_rvalue
) || !(fallback
& fb_lvalue
))
3176 && !TREE_ADDRESSABLE (type
))
3178 if (gimplify_ctxp
->allow_rhs_cond_expr
3179 /* If either branch has side effects or could trap, it can't be
3180 evaluated unconditionally. */
3181 && !TREE_SIDE_EFFECTS (then_
)
3182 && !generic_expr_could_trap_p (then_
)
3183 && !TREE_SIDE_EFFECTS (else_
)
3184 && !generic_expr_could_trap_p (else_
))
3185 return gimplify_pure_cond_expr (expr_p
, pre_p
);
3187 tmp
= create_tmp_var (type
, "iftmp");
3191 /* Otherwise, only create and copy references to the values. */
3194 type
= build_pointer_type (type
);
3196 if (!VOID_TYPE_P (TREE_TYPE (then_
)))
3197 then_
= build_fold_addr_expr_loc (loc
, then_
);
3199 if (!VOID_TYPE_P (TREE_TYPE (else_
)))
3200 else_
= build_fold_addr_expr_loc (loc
, else_
);
3203 = build3 (COND_EXPR
, type
, TREE_OPERAND (expr
, 0), then_
, else_
);
3205 tmp
= create_tmp_var (type
, "iftmp");
3206 result
= build_simple_mem_ref_loc (loc
, tmp
);
3209 /* Build the new then clause, `tmp = then_;'. But don't build the
3210 assignment if the value is void; in C++ it can be if it's a throw. */
3211 if (!VOID_TYPE_P (TREE_TYPE (then_
)))
3212 TREE_OPERAND (expr
, 1) = build2 (MODIFY_EXPR
, type
, tmp
, then_
);
3214 /* Similarly, build the new else clause, `tmp = else_;'. */
3215 if (!VOID_TYPE_P (TREE_TYPE (else_
)))
3216 TREE_OPERAND (expr
, 2) = build2 (MODIFY_EXPR
, type
, tmp
, else_
);
3218 TREE_TYPE (expr
) = void_type_node
;
3219 recalculate_side_effects (expr
);
3221 /* Move the COND_EXPR to the prequeue. */
3222 gimplify_stmt (&expr
, pre_p
);
3228 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3229 STRIP_TYPE_NOPS (TREE_OPERAND (expr
, 0));
3230 if (TREE_CODE (TREE_OPERAND (expr
, 0)) == COMPOUND_EXPR
)
3231 gimplify_compound_expr (&TREE_OPERAND (expr
, 0), pre_p
, true);
3233 /* Make sure the condition has BOOLEAN_TYPE. */
3234 TREE_OPERAND (expr
, 0) = gimple_boolify (TREE_OPERAND (expr
, 0));
3236 /* Break apart && and || conditions. */
3237 if (TREE_CODE (TREE_OPERAND (expr
, 0)) == TRUTH_ANDIF_EXPR
3238 || TREE_CODE (TREE_OPERAND (expr
, 0)) == TRUTH_ORIF_EXPR
)
3240 expr
= shortcut_cond_expr (expr
);
3242 if (expr
!= *expr_p
)
3246 /* We can't rely on gimplify_expr to re-gimplify the expanded
3247 form properly, as cleanups might cause the target labels to be
3248 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3249 set up a conditional context. */
3250 gimple_push_condition ();
3251 gimplify_stmt (expr_p
, &seq
);
3252 gimple_pop_condition (pre_p
);
3253 gimple_seq_add_seq (pre_p
, seq
);
3259 /* Now do the normal gimplification. */
3261 /* Gimplify condition. */
3262 ret
= gimplify_expr (&TREE_OPERAND (expr
, 0), pre_p
, NULL
, is_gimple_condexpr
,
3264 if (ret
== GS_ERROR
)
3266 gcc_assert (TREE_OPERAND (expr
, 0) != NULL_TREE
);
3268 gimple_push_condition ();
3270 have_then_clause_p
= have_else_clause_p
= false;
3271 if (TREE_OPERAND (expr
, 1) != NULL
3272 && TREE_CODE (TREE_OPERAND (expr
, 1)) == GOTO_EXPR
3273 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr
, 1))) == LABEL_DECL
3274 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr
, 1)))
3275 == current_function_decl
)
3276 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3277 have different locations, otherwise we end up with incorrect
3278 location information on the branches. */
3280 || !EXPR_HAS_LOCATION (expr
)
3281 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr
, 1))
3282 || EXPR_LOCATION (expr
) == EXPR_LOCATION (TREE_OPERAND (expr
, 1))))
3284 label_true
= GOTO_DESTINATION (TREE_OPERAND (expr
, 1));
3285 have_then_clause_p
= true;
3288 label_true
= create_artificial_label (UNKNOWN_LOCATION
);
3289 if (TREE_OPERAND (expr
, 2) != NULL
3290 && TREE_CODE (TREE_OPERAND (expr
, 2)) == GOTO_EXPR
3291 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr
, 2))) == LABEL_DECL
3292 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr
, 2)))
3293 == current_function_decl
)
3294 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3295 have different locations, otherwise we end up with incorrect
3296 location information on the branches. */
3298 || !EXPR_HAS_LOCATION (expr
)
3299 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr
, 2))
3300 || EXPR_LOCATION (expr
) == EXPR_LOCATION (TREE_OPERAND (expr
, 2))))
3302 label_false
= GOTO_DESTINATION (TREE_OPERAND (expr
, 2));
3303 have_else_clause_p
= true;
3306 label_false
= create_artificial_label (UNKNOWN_LOCATION
);
3308 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr
), &pred_code
, &arm1
,
3311 gimple_cond
= gimple_build_cond (pred_code
, arm1
, arm2
, label_true
,
3314 gimplify_seq_add_stmt (&seq
, gimple_cond
);
3315 label_cont
= NULL_TREE
;
3316 if (!have_then_clause_p
)
3318 /* For if (...) {} else { code; } put label_true after
3320 if (TREE_OPERAND (expr
, 1) == NULL_TREE
3321 && !have_else_clause_p
3322 && TREE_OPERAND (expr
, 2) != NULL_TREE
)
3323 label_cont
= label_true
;
3326 gimplify_seq_add_stmt (&seq
, gimple_build_label (label_true
));
3327 have_then_clause_p
= gimplify_stmt (&TREE_OPERAND (expr
, 1), &seq
);
3328 /* For if (...) { code; } else {} or
3329 if (...) { code; } else goto label; or
3330 if (...) { code; return; } else { ... }
3331 label_cont isn't needed. */
3332 if (!have_else_clause_p
3333 && TREE_OPERAND (expr
, 2) != NULL_TREE
3334 && gimple_seq_may_fallthru (seq
))
3337 label_cont
= create_artificial_label (UNKNOWN_LOCATION
);
3339 g
= gimple_build_goto (label_cont
);
3341 /* GIMPLE_COND's are very low level; they have embedded
3342 gotos. This particular embedded goto should not be marked
3343 with the location of the original COND_EXPR, as it would
3344 correspond to the COND_EXPR's condition, not the ELSE or the
3345 THEN arms. To avoid marking it with the wrong location, flag
3346 it as "no location". */
3347 gimple_set_do_not_emit_location (g
);
3349 gimplify_seq_add_stmt (&seq
, g
);
3353 if (!have_else_clause_p
)
3355 gimplify_seq_add_stmt (&seq
, gimple_build_label (label_false
));
3356 have_else_clause_p
= gimplify_stmt (&TREE_OPERAND (expr
, 2), &seq
);
3359 gimplify_seq_add_stmt (&seq
, gimple_build_label (label_cont
));
3361 gimple_pop_condition (pre_p
);
3362 gimple_seq_add_seq (pre_p
, seq
);
3364 if (ret
== GS_ERROR
)
3366 else if (have_then_clause_p
|| have_else_clause_p
)
3370 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3371 expr
= TREE_OPERAND (expr
, 0);
3372 gimplify_stmt (&expr
, pre_p
);
3379 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3380 to be marked addressable.
3382 We cannot rely on such an expression being directly markable if a temporary
3383 has been created by the gimplification. In this case, we create another
3384 temporary and initialize it with a copy, which will become a store after we
3385 mark it addressable. This can happen if the front-end passed us something
3386 that it could not mark addressable yet, like a Fortran pass-by-reference
3387 parameter (int) floatvar. */
3390 prepare_gimple_addressable (tree
*expr_p
, gimple_seq
*seq_p
)
3392 while (handled_component_p (*expr_p
))
3393 expr_p
= &TREE_OPERAND (*expr_p
, 0);
3394 if (is_gimple_reg (*expr_p
))
3395 *expr_p
= get_initialized_tmp_var (*expr_p
, seq_p
, NULL
);
3398 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3399 a call to __builtin_memcpy. */
3401 static enum gimplify_status
3402 gimplify_modify_expr_to_memcpy (tree
*expr_p
, tree size
, bool want_value
,
3405 tree t
, to
, to_ptr
, from
, from_ptr
;
3407 location_t loc
= EXPR_LOCATION (*expr_p
);
3409 to
= TREE_OPERAND (*expr_p
, 0);
3410 from
= TREE_OPERAND (*expr_p
, 1);
3412 /* Mark the RHS addressable. Beware that it may not be possible to do so
3413 directly if a temporary has been created by the gimplification. */
3414 prepare_gimple_addressable (&from
, seq_p
);
3416 mark_addressable (from
);
3417 from_ptr
= build_fold_addr_expr_loc (loc
, from
);
3418 gimplify_arg (&from_ptr
, seq_p
, loc
);
3420 mark_addressable (to
);
3421 to_ptr
= build_fold_addr_expr_loc (loc
, to
);
3422 gimplify_arg (&to_ptr
, seq_p
, loc
);
3424 t
= builtin_decl_implicit (BUILT_IN_MEMCPY
);
3426 gs
= gimple_build_call (t
, 3, to_ptr
, from_ptr
, size
);
3430 /* tmp = memcpy() */
3431 t
= create_tmp_var (TREE_TYPE (to_ptr
), NULL
);
3432 gimple_call_set_lhs (gs
, t
);
3433 gimplify_seq_add_stmt (seq_p
, gs
);
3435 *expr_p
= build_simple_mem_ref (t
);
3439 gimplify_seq_add_stmt (seq_p
, gs
);
3444 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3445 a call to __builtin_memset. In this case we know that the RHS is
3446 a CONSTRUCTOR with an empty element list. */
3448 static enum gimplify_status
3449 gimplify_modify_expr_to_memset (tree
*expr_p
, tree size
, bool want_value
,
3452 tree t
, from
, to
, to_ptr
;
3454 location_t loc
= EXPR_LOCATION (*expr_p
);
3456 /* Assert our assumptions, to abort instead of producing wrong code
3457 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3458 not be immediately exposed. */
3459 from
= TREE_OPERAND (*expr_p
, 1);
3460 if (TREE_CODE (from
) == WITH_SIZE_EXPR
)
3461 from
= TREE_OPERAND (from
, 0);
3463 gcc_assert (TREE_CODE (from
) == CONSTRUCTOR
3464 && VEC_empty (constructor_elt
, CONSTRUCTOR_ELTS (from
)));
3467 to
= TREE_OPERAND (*expr_p
, 0);
3469 to_ptr
= build_fold_addr_expr_loc (loc
, to
);
3470 gimplify_arg (&to_ptr
, seq_p
, loc
);
3471 t
= builtin_decl_implicit (BUILT_IN_MEMSET
);
3473 gs
= gimple_build_call (t
, 3, to_ptr
, integer_zero_node
, size
);
3477 /* tmp = memset() */
3478 t
= create_tmp_var (TREE_TYPE (to_ptr
), NULL
);
3479 gimple_call_set_lhs (gs
, t
);
3480 gimplify_seq_add_stmt (seq_p
, gs
);
3482 *expr_p
= build1 (INDIRECT_REF
, TREE_TYPE (to
), t
);
3486 gimplify_seq_add_stmt (seq_p
, gs
);
3491 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3492 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3493 assignment. Return non-null if we detect a potential overlap. */
3495 struct gimplify_init_ctor_preeval_data
3497 /* The base decl of the lhs object. May be NULL, in which case we
3498 have to assume the lhs is indirect. */
3501 /* The alias set of the lhs object. */
3502 alias_set_type lhs_alias_set
;
3506 gimplify_init_ctor_preeval_1 (tree
*tp
, int *walk_subtrees
, void *xdata
)
3508 struct gimplify_init_ctor_preeval_data
*data
3509 = (struct gimplify_init_ctor_preeval_data
*) xdata
;
3512 /* If we find the base object, obviously we have overlap. */
3513 if (data
->lhs_base_decl
== t
)
3516 /* If the constructor component is indirect, determine if we have a
3517 potential overlap with the lhs. The only bits of information we
3518 have to go on at this point are addressability and alias sets. */
3519 if ((INDIRECT_REF_P (t
)
3520 || TREE_CODE (t
) == MEM_REF
)
3521 && (!data
->lhs_base_decl
|| TREE_ADDRESSABLE (data
->lhs_base_decl
))
3522 && alias_sets_conflict_p (data
->lhs_alias_set
, get_alias_set (t
)))
3525 /* If the constructor component is a call, determine if it can hide a
3526 potential overlap with the lhs through an INDIRECT_REF like above.
3527 ??? Ugh - this is completely broken. In fact this whole analysis
3528 doesn't look conservative. */
3529 if (TREE_CODE (t
) == CALL_EXPR
)
3531 tree type
, fntype
= TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t
)));
3533 for (type
= TYPE_ARG_TYPES (fntype
); type
; type
= TREE_CHAIN (type
))
3534 if (POINTER_TYPE_P (TREE_VALUE (type
))
3535 && (!data
->lhs_base_decl
|| TREE_ADDRESSABLE (data
->lhs_base_decl
))
3536 && alias_sets_conflict_p (data
->lhs_alias_set
,
3538 (TREE_TYPE (TREE_VALUE (type
)))))
3542 if (IS_TYPE_OR_DECL_P (t
))
3547 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3548 force values that overlap with the lhs (as described by *DATA)
3549 into temporaries. */
3552 gimplify_init_ctor_preeval (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
3553 struct gimplify_init_ctor_preeval_data
*data
)
3555 enum gimplify_status one
;
3557 /* If the value is constant, then there's nothing to pre-evaluate. */
3558 if (TREE_CONSTANT (*expr_p
))
3560 /* Ensure it does not have side effects, it might contain a reference to
3561 the object we're initializing. */
3562 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p
));
3566 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3567 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p
)))
3570 /* Recurse for nested constructors. */
3571 if (TREE_CODE (*expr_p
) == CONSTRUCTOR
)
3573 unsigned HOST_WIDE_INT ix
;
3574 constructor_elt
*ce
;
3575 VEC(constructor_elt
,gc
) *v
= CONSTRUCTOR_ELTS (*expr_p
);
3577 FOR_EACH_VEC_ELT (constructor_elt
, v
, ix
, ce
)
3578 gimplify_init_ctor_preeval (&ce
->value
, pre_p
, post_p
, data
);
3583 /* If this is a variable sized type, we must remember the size. */
3584 maybe_with_size_expr (expr_p
);
3586 /* Gimplify the constructor element to something appropriate for the rhs
3587 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3588 the gimplifier will consider this a store to memory. Doing this
3589 gimplification now means that we won't have to deal with complicated
3590 language-specific trees, nor trees like SAVE_EXPR that can induce
3591 exponential search behavior. */
3592 one
= gimplify_expr (expr_p
, pre_p
, post_p
, is_gimple_mem_rhs
, fb_rvalue
);
3593 if (one
== GS_ERROR
)
3599 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3600 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3601 always be true for all scalars, since is_gimple_mem_rhs insists on a
3602 temporary variable for them. */
3603 if (DECL_P (*expr_p
))
3606 /* If this is of variable size, we have no choice but to assume it doesn't
3607 overlap since we can't make a temporary for it. */
3608 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p
))) != INTEGER_CST
)
3611 /* Otherwise, we must search for overlap ... */
3612 if (!walk_tree (expr_p
, gimplify_init_ctor_preeval_1
, data
, NULL
))
3615 /* ... and if found, force the value into a temporary. */
3616 *expr_p
= get_formal_tmp_var (*expr_p
, pre_p
);
3619 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3620 a RANGE_EXPR in a CONSTRUCTOR for an array.
3624 object[var] = value;
3631 We increment var _after_ the loop exit check because we might otherwise
3632 fail if upper == TYPE_MAX_VALUE (type for upper).
3634 Note that we never have to deal with SAVE_EXPRs here, because this has
3635 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3637 static void gimplify_init_ctor_eval (tree
, VEC(constructor_elt
,gc
) *,
3638 gimple_seq
*, bool);
3641 gimplify_init_ctor_eval_range (tree object
, tree lower
, tree upper
,
3642 tree value
, tree array_elt_type
,
3643 gimple_seq
*pre_p
, bool cleared
)
3645 tree loop_entry_label
, loop_exit_label
, fall_thru_label
;
3646 tree var
, var_type
, cref
, tmp
;
3648 loop_entry_label
= create_artificial_label (UNKNOWN_LOCATION
);
3649 loop_exit_label
= create_artificial_label (UNKNOWN_LOCATION
);
3650 fall_thru_label
= create_artificial_label (UNKNOWN_LOCATION
);
3652 /* Create and initialize the index variable. */
3653 var_type
= TREE_TYPE (upper
);
3654 var
= create_tmp_var (var_type
, NULL
);
3655 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (var
, lower
));
3657 /* Add the loop entry label. */
3658 gimplify_seq_add_stmt (pre_p
, gimple_build_label (loop_entry_label
));
3660 /* Build the reference. */
3661 cref
= build4 (ARRAY_REF
, array_elt_type
, unshare_expr (object
),
3662 var
, NULL_TREE
, NULL_TREE
);
3664 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3665 the store. Otherwise just assign value to the reference. */
3667 if (TREE_CODE (value
) == CONSTRUCTOR
)
3668 /* NB we might have to call ourself recursively through
3669 gimplify_init_ctor_eval if the value is a constructor. */
3670 gimplify_init_ctor_eval (cref
, CONSTRUCTOR_ELTS (value
),
3673 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (cref
, value
));
3675 /* We exit the loop when the index var is equal to the upper bound. */
3676 gimplify_seq_add_stmt (pre_p
,
3677 gimple_build_cond (EQ_EXPR
, var
, upper
,
3678 loop_exit_label
, fall_thru_label
));
3680 gimplify_seq_add_stmt (pre_p
, gimple_build_label (fall_thru_label
));
3682 /* Otherwise, increment the index var... */
3683 tmp
= build2 (PLUS_EXPR
, var_type
, var
,
3684 fold_convert (var_type
, integer_one_node
));
3685 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (var
, tmp
));
3687 /* ...and jump back to the loop entry. */
3688 gimplify_seq_add_stmt (pre_p
, gimple_build_goto (loop_entry_label
));
3690 /* Add the loop exit label. */
3691 gimplify_seq_add_stmt (pre_p
, gimple_build_label (loop_exit_label
));
3694 /* Return true if FDECL is accessing a field that is zero sized. */
3697 zero_sized_field_decl (const_tree fdecl
)
3699 if (TREE_CODE (fdecl
) == FIELD_DECL
&& DECL_SIZE (fdecl
)
3700 && integer_zerop (DECL_SIZE (fdecl
)))
3705 /* Return true if TYPE is zero sized. */
3708 zero_sized_type (const_tree type
)
3710 if (AGGREGATE_TYPE_P (type
) && TYPE_SIZE (type
)
3711 && integer_zerop (TYPE_SIZE (type
)))
3716 /* A subroutine of gimplify_init_constructor. Generate individual
3717 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3718 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3719 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3723 gimplify_init_ctor_eval (tree object
, VEC(constructor_elt
,gc
) *elts
,
3724 gimple_seq
*pre_p
, bool cleared
)
3726 tree array_elt_type
= NULL
;
3727 unsigned HOST_WIDE_INT ix
;
3728 tree purpose
, value
;
3730 if (TREE_CODE (TREE_TYPE (object
)) == ARRAY_TYPE
)
3731 array_elt_type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object
)));
3733 FOR_EACH_CONSTRUCTOR_ELT (elts
, ix
, purpose
, value
)
3737 /* NULL values are created above for gimplification errors. */
3741 if (cleared
&& initializer_zerop (value
))
3744 /* ??? Here's to hoping the front end fills in all of the indices,
3745 so we don't have to figure out what's missing ourselves. */
3746 gcc_assert (purpose
);
3748 /* Skip zero-sized fields, unless value has side-effects. This can
3749 happen with calls to functions returning a zero-sized type, which
3750 we shouldn't discard. As a number of downstream passes don't
3751 expect sets of zero-sized fields, we rely on the gimplification of
3752 the MODIFY_EXPR we make below to drop the assignment statement. */
3753 if (! TREE_SIDE_EFFECTS (value
) && zero_sized_field_decl (purpose
))
3756 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3758 if (TREE_CODE (purpose
) == RANGE_EXPR
)
3760 tree lower
= TREE_OPERAND (purpose
, 0);
3761 tree upper
= TREE_OPERAND (purpose
, 1);
3763 /* If the lower bound is equal to upper, just treat it as if
3764 upper was the index. */
3765 if (simple_cst_equal (lower
, upper
))
3769 gimplify_init_ctor_eval_range (object
, lower
, upper
, value
,
3770 array_elt_type
, pre_p
, cleared
);
3777 /* Do not use bitsizetype for ARRAY_REF indices. */
3778 if (TYPE_DOMAIN (TREE_TYPE (object
)))
3780 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object
))),
3782 cref
= build4 (ARRAY_REF
, array_elt_type
, unshare_expr (object
),
3783 purpose
, NULL_TREE
, NULL_TREE
);
3787 gcc_assert (TREE_CODE (purpose
) == FIELD_DECL
);
3788 cref
= build3 (COMPONENT_REF
, TREE_TYPE (purpose
),
3789 unshare_expr (object
), purpose
, NULL_TREE
);
3792 if (TREE_CODE (value
) == CONSTRUCTOR
3793 && TREE_CODE (TREE_TYPE (value
)) != VECTOR_TYPE
)
3794 gimplify_init_ctor_eval (cref
, CONSTRUCTOR_ELTS (value
),
3798 tree init
= build2 (INIT_EXPR
, TREE_TYPE (cref
), cref
, value
);
3799 gimplify_and_add (init
, pre_p
);
3805 /* Return the appropriate RHS predicate for this LHS. */
3808 rhs_predicate_for (tree lhs
)
3810 if (is_gimple_reg (lhs
))
3811 return is_gimple_reg_rhs_or_call
;
3813 return is_gimple_mem_rhs_or_call
;
3816 /* Gimplify a C99 compound literal expression. This just means adding
3817 the DECL_EXPR before the current statement and using its anonymous
3820 static enum gimplify_status
3821 gimplify_compound_literal_expr (tree
*expr_p
, gimple_seq
*pre_p
,
3822 bool (*gimple_test_f
) (tree
),
3823 fallback_t fallback
)
3825 tree decl_s
= COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p
);
3826 tree decl
= DECL_EXPR_DECL (decl_s
);
3827 tree init
= DECL_INITIAL (decl
);
3828 /* Mark the decl as addressable if the compound literal
3829 expression is addressable now, otherwise it is marked too late
3830 after we gimplify the initialization expression. */
3831 if (TREE_ADDRESSABLE (*expr_p
))
3832 TREE_ADDRESSABLE (decl
) = 1;
3833 /* Otherwise, if we don't need an lvalue and have a literal directly
3834 substitute it. Check if it matches the gimple predicate, as
3835 otherwise we'd generate a new temporary, and we can as well just
3836 use the decl we already have. */
3837 else if (!TREE_ADDRESSABLE (decl
)
3839 && (fallback
& fb_lvalue
) == 0
3840 && gimple_test_f (init
))
3846 /* Preliminarily mark non-addressed complex variables as eligible
3847 for promotion to gimple registers. We'll transform their uses
3849 if ((TREE_CODE (TREE_TYPE (decl
)) == COMPLEX_TYPE
3850 || TREE_CODE (TREE_TYPE (decl
)) == VECTOR_TYPE
)
3851 && !TREE_THIS_VOLATILE (decl
)
3852 && !needs_to_live_in_memory (decl
))
3853 DECL_GIMPLE_REG_P (decl
) = 1;
3855 /* If the decl is not addressable, then it is being used in some
3856 expression or on the right hand side of a statement, and it can
3857 be put into a readonly data section. */
3858 if (!TREE_ADDRESSABLE (decl
) && (fallback
& fb_lvalue
) == 0)
3859 TREE_READONLY (decl
) = 1;
3861 /* This decl isn't mentioned in the enclosing block, so add it to the
3862 list of temps. FIXME it seems a bit of a kludge to say that
3863 anonymous artificial vars aren't pushed, but everything else is. */
3864 if (DECL_NAME (decl
) == NULL_TREE
&& !DECL_SEEN_IN_BIND_EXPR_P (decl
))
3865 gimple_add_tmp_var (decl
);
3867 gimplify_and_add (decl_s
, pre_p
);
3872 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3873 return a new CONSTRUCTOR if something changed. */
3876 optimize_compound_literals_in_ctor (tree orig_ctor
)
3878 tree ctor
= orig_ctor
;
3879 VEC(constructor_elt
,gc
) *elts
= CONSTRUCTOR_ELTS (ctor
);
3880 unsigned int idx
, num
= VEC_length (constructor_elt
, elts
);
3882 for (idx
= 0; idx
< num
; idx
++)
3884 tree value
= VEC_index (constructor_elt
, elts
, idx
).value
;
3885 tree newval
= value
;
3886 if (TREE_CODE (value
) == CONSTRUCTOR
)
3887 newval
= optimize_compound_literals_in_ctor (value
);
3888 else if (TREE_CODE (value
) == COMPOUND_LITERAL_EXPR
)
3890 tree decl_s
= COMPOUND_LITERAL_EXPR_DECL_EXPR (value
);
3891 tree decl
= DECL_EXPR_DECL (decl_s
);
3892 tree init
= DECL_INITIAL (decl
);
3894 if (!TREE_ADDRESSABLE (value
)
3895 && !TREE_ADDRESSABLE (decl
)
3897 && TREE_CODE (init
) == CONSTRUCTOR
)
3898 newval
= optimize_compound_literals_in_ctor (init
);
3900 if (newval
== value
)
3903 if (ctor
== orig_ctor
)
3905 ctor
= copy_node (orig_ctor
);
3906 CONSTRUCTOR_ELTS (ctor
) = VEC_copy (constructor_elt
, gc
, elts
);
3907 elts
= CONSTRUCTOR_ELTS (ctor
);
3909 VEC_index (constructor_elt
, elts
, idx
).value
= newval
;
3914 /* A subroutine of gimplify_modify_expr. Break out elements of a
3915 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3917 Note that we still need to clear any elements that don't have explicit
3918 initializers, so if not all elements are initialized we keep the
3919 original MODIFY_EXPR, we just remove all of the constructor elements.
3921 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3922 GS_ERROR if we would have to create a temporary when gimplifying
3923 this constructor. Otherwise, return GS_OK.
3925 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3927 static enum gimplify_status
3928 gimplify_init_constructor (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
3929 bool want_value
, bool notify_temp_creation
)
3931 tree object
, ctor
, type
;
3932 enum gimplify_status ret
;
3933 VEC(constructor_elt
,gc
) *elts
;
3935 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p
, 1)) == CONSTRUCTOR
);
3937 if (!notify_temp_creation
)
3939 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
3940 is_gimple_lvalue
, fb_lvalue
);
3941 if (ret
== GS_ERROR
)
3945 object
= TREE_OPERAND (*expr_p
, 0);
3946 ctor
= TREE_OPERAND (*expr_p
, 1) =
3947 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p
, 1));
3948 type
= TREE_TYPE (ctor
);
3949 elts
= CONSTRUCTOR_ELTS (ctor
);
3952 switch (TREE_CODE (type
))
3956 case QUAL_UNION_TYPE
:
3959 struct gimplify_init_ctor_preeval_data preeval_data
;
3960 HOST_WIDE_INT num_ctor_elements
, num_nonzero_elements
;
3961 bool cleared
, complete_p
, valid_const_initializer
;
3963 /* Aggregate types must lower constructors to initialization of
3964 individual elements. The exception is that a CONSTRUCTOR node
3965 with no elements indicates zero-initialization of the whole. */
3966 if (VEC_empty (constructor_elt
, elts
))
3968 if (notify_temp_creation
)
3973 /* Fetch information about the constructor to direct later processing.
3974 We might want to make static versions of it in various cases, and
3975 can only do so if it known to be a valid constant initializer. */
3976 valid_const_initializer
3977 = categorize_ctor_elements (ctor
, &num_nonzero_elements
,
3978 &num_ctor_elements
, &complete_p
);
3980 /* If a const aggregate variable is being initialized, then it
3981 should never be a lose to promote the variable to be static. */
3982 if (valid_const_initializer
3983 && num_nonzero_elements
> 1
3984 && TREE_READONLY (object
)
3985 && TREE_CODE (object
) == VAR_DECL
3986 && (flag_merge_constants
>= 2 || !TREE_ADDRESSABLE (object
)))
3988 if (notify_temp_creation
)
3990 DECL_INITIAL (object
) = ctor
;
3991 TREE_STATIC (object
) = 1;
3992 if (!DECL_NAME (object
))
3993 DECL_NAME (object
) = create_tmp_var_name ("C");
3994 walk_tree (&DECL_INITIAL (object
), force_labels_r
, NULL
, NULL
);
3996 /* ??? C++ doesn't automatically append a .<number> to the
3997 assembler name, and even when it does, it looks at FE private
3998 data structures to figure out what that number should be,
3999 which are not set for this variable. I suppose this is
4000 important for local statics for inline functions, which aren't
4001 "local" in the object file sense. So in order to get a unique
4002 TU-local symbol, we must invoke the lhd version now. */
4003 lhd_set_decl_assembler_name (object
);
4005 *expr_p
= NULL_TREE
;
4009 /* If there are "lots" of initialized elements, even discounting
4010 those that are not address constants (and thus *must* be
4011 computed at runtime), then partition the constructor into
4012 constant and non-constant parts. Block copy the constant
4013 parts in, then generate code for the non-constant parts. */
4014 /* TODO. There's code in cp/typeck.c to do this. */
4016 if (int_size_in_bytes (TREE_TYPE (ctor
)) < 0)
4017 /* store_constructor will ignore the clearing of variable-sized
4018 objects. Initializers for such objects must explicitly set
4019 every field that needs to be set. */
4021 else if (!complete_p
)
4022 /* If the constructor isn't complete, clear the whole object
4025 ??? This ought not to be needed. For any element not present
4026 in the initializer, we should simply set them to zero. Except
4027 we'd need to *find* the elements that are not present, and that
4028 requires trickery to avoid quadratic compile-time behavior in
4029 large cases or excessive memory use in small cases. */
4031 else if (num_ctor_elements
- num_nonzero_elements
4032 > CLEAR_RATIO (optimize_function_for_speed_p (cfun
))
4033 && num_nonzero_elements
< num_ctor_elements
/ 4)
4034 /* If there are "lots" of zeros, it's more efficient to clear
4035 the memory and then set the nonzero elements. */
4040 /* If there are "lots" of initialized elements, and all of them
4041 are valid address constants, then the entire initializer can
4042 be dropped to memory, and then memcpy'd out. Don't do this
4043 for sparse arrays, though, as it's more efficient to follow
4044 the standard CONSTRUCTOR behavior of memset followed by
4045 individual element initialization. Also don't do this for small
4046 all-zero initializers (which aren't big enough to merit
4047 clearing), and don't try to make bitwise copies of
4048 TREE_ADDRESSABLE types. */
4049 if (valid_const_initializer
4050 && !(cleared
|| num_nonzero_elements
== 0)
4051 && !TREE_ADDRESSABLE (type
))
4053 HOST_WIDE_INT size
= int_size_in_bytes (type
);
4056 /* ??? We can still get unbounded array types, at least
4057 from the C++ front end. This seems wrong, but attempt
4058 to work around it for now. */
4061 size
= int_size_in_bytes (TREE_TYPE (object
));
4063 TREE_TYPE (ctor
) = type
= TREE_TYPE (object
);
4066 /* Find the maximum alignment we can assume for the object. */
4067 /* ??? Make use of DECL_OFFSET_ALIGN. */
4068 if (DECL_P (object
))
4069 align
= DECL_ALIGN (object
);
4071 align
= TYPE_ALIGN (type
);
4073 /* Do a block move either if the size is so small as to make
4074 each individual move a sub-unit move on average, or if it
4075 is so large as to make individual moves inefficient. */
4077 && num_nonzero_elements
> 1
4078 && (size
< num_nonzero_elements
4079 || !can_move_by_pieces (size
, align
)))
4081 if (notify_temp_creation
)
4084 walk_tree (&ctor
, force_labels_r
, NULL
, NULL
);
4085 ctor
= tree_output_constant_def (ctor
);
4086 if (!useless_type_conversion_p (type
, TREE_TYPE (ctor
)))
4087 ctor
= build1 (VIEW_CONVERT_EXPR
, type
, ctor
);
4088 TREE_OPERAND (*expr_p
, 1) = ctor
;
4090 /* This is no longer an assignment of a CONSTRUCTOR, but
4091 we still may have processing to do on the LHS. So
4092 pretend we didn't do anything here to let that happen. */
4093 return GS_UNHANDLED
;
4097 /* If the target is volatile, we have non-zero elements and more than
4098 one field to assign, initialize the target from a temporary. */
4099 if (TREE_THIS_VOLATILE (object
)
4100 && !TREE_ADDRESSABLE (type
)
4101 && num_nonzero_elements
> 0
4102 && VEC_length (constructor_elt
, elts
) > 1)
4104 tree temp
= create_tmp_var (TYPE_MAIN_VARIANT (type
), NULL
);
4105 TREE_OPERAND (*expr_p
, 0) = temp
;
4106 *expr_p
= build2 (COMPOUND_EXPR
, TREE_TYPE (*expr_p
),
4108 build2 (MODIFY_EXPR
, void_type_node
,
4113 if (notify_temp_creation
)
4116 /* If there are nonzero elements and if needed, pre-evaluate to capture
4117 elements overlapping with the lhs into temporaries. We must do this
4118 before clearing to fetch the values before they are zeroed-out. */
4119 if (num_nonzero_elements
> 0 && TREE_CODE (*expr_p
) != INIT_EXPR
)
4121 preeval_data
.lhs_base_decl
= get_base_address (object
);
4122 if (!DECL_P (preeval_data
.lhs_base_decl
))
4123 preeval_data
.lhs_base_decl
= NULL
;
4124 preeval_data
.lhs_alias_set
= get_alias_set (object
);
4126 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p
, 1),
4127 pre_p
, post_p
, &preeval_data
);
4132 /* Zap the CONSTRUCTOR element list, which simplifies this case.
4133 Note that we still have to gimplify, in order to handle the
4134 case of variable sized types. Avoid shared tree structures. */
4135 CONSTRUCTOR_ELTS (ctor
) = NULL
;
4136 TREE_SIDE_EFFECTS (ctor
) = 0;
4137 object
= unshare_expr (object
);
4138 gimplify_stmt (expr_p
, pre_p
);
4141 /* If we have not block cleared the object, or if there are nonzero
4142 elements in the constructor, add assignments to the individual
4143 scalar fields of the object. */
4144 if (!cleared
|| num_nonzero_elements
> 0)
4145 gimplify_init_ctor_eval (object
, elts
, pre_p
, cleared
);
4147 *expr_p
= NULL_TREE
;
4155 if (notify_temp_creation
)
4158 /* Extract the real and imaginary parts out of the ctor. */
4159 gcc_assert (VEC_length (constructor_elt
, elts
) == 2);
4160 r
= VEC_index (constructor_elt
, elts
, 0).value
;
4161 i
= VEC_index (constructor_elt
, elts
, 1).value
;
4162 if (r
== NULL
|| i
== NULL
)
4164 tree zero
= build_zero_cst (TREE_TYPE (type
));
4171 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
4172 represent creation of a complex value. */
4173 if (TREE_CONSTANT (r
) && TREE_CONSTANT (i
))
4175 ctor
= build_complex (type
, r
, i
);
4176 TREE_OPERAND (*expr_p
, 1) = ctor
;
4180 ctor
= build2 (COMPLEX_EXPR
, type
, r
, i
);
4181 TREE_OPERAND (*expr_p
, 1) = ctor
;
4182 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 1),
4185 rhs_predicate_for (TREE_OPERAND (*expr_p
, 0)),
4193 unsigned HOST_WIDE_INT ix
;
4194 constructor_elt
*ce
;
4196 if (notify_temp_creation
)
4199 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4200 if (TREE_CONSTANT (ctor
))
4202 bool constant_p
= true;
4205 /* Even when ctor is constant, it might contain non-*_CST
4206 elements, such as addresses or trapping values like
4207 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4208 in VECTOR_CST nodes. */
4209 FOR_EACH_CONSTRUCTOR_VALUE (elts
, ix
, value
)
4210 if (!CONSTANT_CLASS_P (value
))
4218 TREE_OPERAND (*expr_p
, 1) = build_vector_from_ctor (type
, elts
);
4222 /* Don't reduce an initializer constant even if we can't
4223 make a VECTOR_CST. It won't do anything for us, and it'll
4224 prevent us from representing it as a single constant. */
4225 if (initializer_constant_valid_p (ctor
, type
))
4228 TREE_CONSTANT (ctor
) = 0;
4231 /* Vector types use CONSTRUCTOR all the way through gimple
4232 compilation as a general initializer. */
4233 FOR_EACH_VEC_ELT (constructor_elt
, elts
, ix
, ce
)
4235 enum gimplify_status tret
;
4236 tret
= gimplify_expr (&ce
->value
, pre_p
, post_p
, is_gimple_val
,
4238 if (tret
== GS_ERROR
)
4241 if (!is_gimple_reg (TREE_OPERAND (*expr_p
, 0)))
4242 TREE_OPERAND (*expr_p
, 1) = get_formal_tmp_var (ctor
, pre_p
);
4247 /* So how did we get a CONSTRUCTOR for a scalar type? */
4251 if (ret
== GS_ERROR
)
4253 else if (want_value
)
4260 /* If we have gimplified both sides of the initializer but have
4261 not emitted an assignment, do so now. */
4264 tree lhs
= TREE_OPERAND (*expr_p
, 0);
4265 tree rhs
= TREE_OPERAND (*expr_p
, 1);
4266 gimple init
= gimple_build_assign (lhs
, rhs
);
4267 gimplify_seq_add_stmt (pre_p
, init
);
4275 /* Given a pointer value OP0, return a simplified version of an
4276 indirection through OP0, or NULL_TREE if no simplification is
4277 possible. Note that the resulting type may be different from
4278 the type pointed to in the sense that it is still compatible
4279 from the langhooks point of view. */
4282 gimple_fold_indirect_ref (tree t
)
4284 tree ptype
= TREE_TYPE (t
), type
= TREE_TYPE (ptype
);
4289 subtype
= TREE_TYPE (sub
);
4290 if (!POINTER_TYPE_P (subtype
))
4293 if (TREE_CODE (sub
) == ADDR_EXPR
)
4295 tree op
= TREE_OPERAND (sub
, 0);
4296 tree optype
= TREE_TYPE (op
);
4298 if (useless_type_conversion_p (type
, optype
))
4301 /* *(foo *)&fooarray => fooarray[0] */
4302 if (TREE_CODE (optype
) == ARRAY_TYPE
4303 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype
))) == INTEGER_CST
4304 && useless_type_conversion_p (type
, TREE_TYPE (optype
)))
4306 tree type_domain
= TYPE_DOMAIN (optype
);
4307 tree min_val
= size_zero_node
;
4308 if (type_domain
&& TYPE_MIN_VALUE (type_domain
))
4309 min_val
= TYPE_MIN_VALUE (type_domain
);
4310 if (TREE_CODE (min_val
) == INTEGER_CST
)
4311 return build4 (ARRAY_REF
, type
, op
, min_val
, NULL_TREE
, NULL_TREE
);
4313 /* *(foo *)&complexfoo => __real__ complexfoo */
4314 else if (TREE_CODE (optype
) == COMPLEX_TYPE
4315 && useless_type_conversion_p (type
, TREE_TYPE (optype
)))
4316 return fold_build1 (REALPART_EXPR
, type
, op
);
4317 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4318 else if (TREE_CODE (optype
) == VECTOR_TYPE
4319 && useless_type_conversion_p (type
, TREE_TYPE (optype
)))
4321 tree part_width
= TYPE_SIZE (type
);
4322 tree index
= bitsize_int (0);
4323 return fold_build3 (BIT_FIELD_REF
, type
, op
, part_width
, index
);
4327 /* *(p + CST) -> ... */
4328 if (TREE_CODE (sub
) == POINTER_PLUS_EXPR
4329 && TREE_CODE (TREE_OPERAND (sub
, 1)) == INTEGER_CST
)
4331 tree addr
= TREE_OPERAND (sub
, 0);
4332 tree off
= TREE_OPERAND (sub
, 1);
4336 addrtype
= TREE_TYPE (addr
);
4338 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4339 if (TREE_CODE (addr
) == ADDR_EXPR
4340 && TREE_CODE (TREE_TYPE (addrtype
)) == VECTOR_TYPE
4341 && useless_type_conversion_p (type
, TREE_TYPE (TREE_TYPE (addrtype
)))
4342 && host_integerp (off
, 1))
4344 unsigned HOST_WIDE_INT offset
= tree_low_cst (off
, 1);
4345 tree part_width
= TYPE_SIZE (type
);
4346 unsigned HOST_WIDE_INT part_widthi
4347 = tree_low_cst (part_width
, 0) / BITS_PER_UNIT
;
4348 unsigned HOST_WIDE_INT indexi
= offset
* BITS_PER_UNIT
;
4349 tree index
= bitsize_int (indexi
);
4350 if (offset
/ part_widthi
4351 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype
)))
4352 return fold_build3 (BIT_FIELD_REF
, type
, TREE_OPERAND (addr
, 0),
4356 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4357 if (TREE_CODE (addr
) == ADDR_EXPR
4358 && TREE_CODE (TREE_TYPE (addrtype
)) == COMPLEX_TYPE
4359 && useless_type_conversion_p (type
, TREE_TYPE (TREE_TYPE (addrtype
))))
4361 tree size
= TYPE_SIZE_UNIT (type
);
4362 if (tree_int_cst_equal (size
, off
))
4363 return fold_build1 (IMAGPART_EXPR
, type
, TREE_OPERAND (addr
, 0));
4366 /* *(p + CST) -> MEM_REF <p, CST>. */
4367 if (TREE_CODE (addr
) != ADDR_EXPR
4368 || DECL_P (TREE_OPERAND (addr
, 0)))
4369 return fold_build2 (MEM_REF
, type
,
4371 build_int_cst_wide (ptype
,
4372 TREE_INT_CST_LOW (off
),
4373 TREE_INT_CST_HIGH (off
)));
4376 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4377 if (TREE_CODE (TREE_TYPE (subtype
)) == ARRAY_TYPE
4378 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype
)))) == INTEGER_CST
4379 && useless_type_conversion_p (type
, TREE_TYPE (TREE_TYPE (subtype
))))
4382 tree min_val
= size_zero_node
;
4384 sub
= gimple_fold_indirect_ref (sub
);
4386 sub
= build1 (INDIRECT_REF
, TREE_TYPE (subtype
), osub
);
4387 type_domain
= TYPE_DOMAIN (TREE_TYPE (sub
));
4388 if (type_domain
&& TYPE_MIN_VALUE (type_domain
))
4389 min_val
= TYPE_MIN_VALUE (type_domain
);
4390 if (TREE_CODE (min_val
) == INTEGER_CST
)
4391 return build4 (ARRAY_REF
, type
, sub
, min_val
, NULL_TREE
, NULL_TREE
);
4397 /* Given a pointer value OP0, return a simplified version of an
4398 indirection through OP0, or NULL_TREE if no simplification is
4399 possible. This may only be applied to a rhs of an expression.
4400 Note that the resulting type may be different from the type pointed
4401 to in the sense that it is still compatible from the langhooks
4405 gimple_fold_indirect_ref_rhs (tree t
)
4407 return gimple_fold_indirect_ref (t
);
4410 /* Subroutine of gimplify_modify_expr to do simplifications of
4411 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4412 something changes. */
4414 static enum gimplify_status
4415 gimplify_modify_expr_rhs (tree
*expr_p
, tree
*from_p
, tree
*to_p
,
4416 gimple_seq
*pre_p
, gimple_seq
*post_p
,
4419 enum gimplify_status ret
= GS_UNHANDLED
;
4425 switch (TREE_CODE (*from_p
))
4428 /* If we're assigning from a read-only variable initialized with
4429 a constructor, do the direct assignment from the constructor,
4430 but only if neither source nor target are volatile since this
4431 latter assignment might end up being done on a per-field basis. */
4432 if (DECL_INITIAL (*from_p
)
4433 && TREE_READONLY (*from_p
)
4434 && !TREE_THIS_VOLATILE (*from_p
)
4435 && !TREE_THIS_VOLATILE (*to_p
)
4436 && TREE_CODE (DECL_INITIAL (*from_p
)) == CONSTRUCTOR
)
4438 tree old_from
= *from_p
;
4439 enum gimplify_status subret
;
4441 /* Move the constructor into the RHS. */
4442 *from_p
= unshare_expr (DECL_INITIAL (*from_p
));
4444 /* Let's see if gimplify_init_constructor will need to put
4446 subret
= gimplify_init_constructor (expr_p
, NULL
, NULL
,
4448 if (subret
== GS_ERROR
)
4450 /* If so, revert the change. */
4462 /* If we have code like
4466 where the type of "x" is a (possibly cv-qualified variant
4467 of "A"), treat the entire expression as identical to "x".
4468 This kind of code arises in C++ when an object is bound
4469 to a const reference, and if "x" is a TARGET_EXPR we want
4470 to take advantage of the optimization below. */
4471 bool volatile_p
= TREE_THIS_VOLATILE (*from_p
);
4472 tree t
= gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p
, 0));
4475 if (TREE_THIS_VOLATILE (t
) != volatile_p
)
4477 if (TREE_CODE_CLASS (TREE_CODE (t
)) == tcc_declaration
)
4478 t
= build_simple_mem_ref_loc (EXPR_LOCATION (*from_p
),
4479 build_fold_addr_expr (t
));
4480 if (REFERENCE_CLASS_P (t
))
4481 TREE_THIS_VOLATILE (t
) = volatile_p
;
4492 /* If we are initializing something from a TARGET_EXPR, strip the
4493 TARGET_EXPR and initialize it directly, if possible. This can't
4494 be done if the initializer is void, since that implies that the
4495 temporary is set in some non-trivial way.
4497 ??? What about code that pulls out the temp and uses it
4498 elsewhere? I think that such code never uses the TARGET_EXPR as
4499 an initializer. If I'm wrong, we'll die because the temp won't
4500 have any RTL. In that case, I guess we'll need to replace
4501 references somehow. */
4502 tree init
= TARGET_EXPR_INITIAL (*from_p
);
4505 && !VOID_TYPE_P (TREE_TYPE (init
)))
4515 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4517 gimplify_compound_expr (from_p
, pre_p
, true);
4523 /* If we already made some changes, let the front end have a
4524 crack at this before we break it down. */
4525 if (ret
!= GS_UNHANDLED
)
4527 /* If we're initializing from a CONSTRUCTOR, break this into
4528 individual MODIFY_EXPRs. */
4529 return gimplify_init_constructor (expr_p
, pre_p
, post_p
, want_value
,
4533 /* If we're assigning to a non-register type, push the assignment
4534 down into the branches. This is mandatory for ADDRESSABLE types,
4535 since we cannot generate temporaries for such, but it saves a
4536 copy in other cases as well. */
4537 if (!is_gimple_reg_type (TREE_TYPE (*from_p
)))
4539 /* This code should mirror the code in gimplify_cond_expr. */
4540 enum tree_code code
= TREE_CODE (*expr_p
);
4541 tree cond
= *from_p
;
4542 tree result
= *to_p
;
4544 ret
= gimplify_expr (&result
, pre_p
, post_p
,
4545 is_gimple_lvalue
, fb_lvalue
);
4546 if (ret
!= GS_ERROR
)
4549 if (TREE_TYPE (TREE_OPERAND (cond
, 1)) != void_type_node
)
4550 TREE_OPERAND (cond
, 1)
4551 = build2 (code
, void_type_node
, result
,
4552 TREE_OPERAND (cond
, 1));
4553 if (TREE_TYPE (TREE_OPERAND (cond
, 2)) != void_type_node
)
4554 TREE_OPERAND (cond
, 2)
4555 = build2 (code
, void_type_node
, unshare_expr (result
),
4556 TREE_OPERAND (cond
, 2));
4558 TREE_TYPE (cond
) = void_type_node
;
4559 recalculate_side_effects (cond
);
4563 gimplify_and_add (cond
, pre_p
);
4564 *expr_p
= unshare_expr (result
);
4573 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4574 return slot so that we don't generate a temporary. */
4575 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p
)
4576 && aggregate_value_p (*from_p
, *from_p
))
4580 if (!(rhs_predicate_for (*to_p
))(*from_p
))
4581 /* If we need a temporary, *to_p isn't accurate. */
4583 /* It's OK to use the return slot directly unless it's an NRV. */
4584 else if (TREE_CODE (*to_p
) == RESULT_DECL
4585 && DECL_NAME (*to_p
) == NULL_TREE
4586 && needs_to_live_in_memory (*to_p
))
4588 else if (is_gimple_reg_type (TREE_TYPE (*to_p
))
4589 || (DECL_P (*to_p
) && DECL_REGISTER (*to_p
)))
4590 /* Don't force regs into memory. */
4592 else if (TREE_CODE (*expr_p
) == INIT_EXPR
)
4593 /* It's OK to use the target directly if it's being
4596 else if (variably_modified_type_p (TREE_TYPE (*to_p
), NULL_TREE
))
4597 /* Always use the target and thus RSO for variable-sized types.
4598 GIMPLE cannot deal with a variable-sized assignment
4599 embedded in a call statement. */
4601 else if (TREE_CODE (*to_p
) != SSA_NAME
4602 && (!is_gimple_variable (*to_p
)
4603 || needs_to_live_in_memory (*to_p
)))
4604 /* Don't use the original target if it's already addressable;
4605 if its address escapes, and the called function uses the
4606 NRV optimization, a conforming program could see *to_p
4607 change before the called function returns; see c++/19317.
4608 When optimizing, the return_slot pass marks more functions
4609 as safe after we have escape info. */
4616 CALL_EXPR_RETURN_SLOT_OPT (*from_p
) = 1;
4617 mark_addressable (*to_p
);
4622 case WITH_SIZE_EXPR
:
4623 /* Likewise for calls that return an aggregate of non-constant size,
4624 since we would not be able to generate a temporary at all. */
4625 if (TREE_CODE (TREE_OPERAND (*from_p
, 0)) == CALL_EXPR
)
4627 *from_p
= TREE_OPERAND (*from_p
, 0);
4628 /* We don't change ret in this case because the
4629 WITH_SIZE_EXPR might have been added in
4630 gimplify_modify_expr, so returning GS_OK would lead to an
4636 /* If we're initializing from a container, push the initialization
4638 case CLEANUP_POINT_EXPR
:
4640 case STATEMENT_LIST
:
4642 tree wrap
= *from_p
;
4645 ret
= gimplify_expr (to_p
, pre_p
, post_p
, is_gimple_min_lval
,
4647 if (ret
!= GS_ERROR
)
4650 t
= voidify_wrapper_expr (wrap
, *expr_p
);
4651 gcc_assert (t
== *expr_p
);
4655 gimplify_and_add (wrap
, pre_p
);
4656 *expr_p
= unshare_expr (*to_p
);
4663 case COMPOUND_LITERAL_EXPR
:
4665 tree complit
= TREE_OPERAND (*expr_p
, 1);
4666 tree decl_s
= COMPOUND_LITERAL_EXPR_DECL_EXPR (complit
);
4667 tree decl
= DECL_EXPR_DECL (decl_s
);
4668 tree init
= DECL_INITIAL (decl
);
4670 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4671 into struct T x = { 0, 1, 2 } if the address of the
4672 compound literal has never been taken. */
4673 if (!TREE_ADDRESSABLE (complit
)
4674 && !TREE_ADDRESSABLE (decl
)
4677 *expr_p
= copy_node (*expr_p
);
4678 TREE_OPERAND (*expr_p
, 1) = init
;
4693 /* Return true if T looks like a valid GIMPLE statement. */
4696 is_gimple_stmt (tree t
)
4698 const enum tree_code code
= TREE_CODE (t
);
4703 /* The only valid NOP_EXPR is the empty statement. */
4704 return IS_EMPTY_STMT (t
);
4708 /* These are only valid if they're void. */
4709 return TREE_TYPE (t
) == NULL
|| VOID_TYPE_P (TREE_TYPE (t
));
4715 case CASE_LABEL_EXPR
:
4716 case TRY_CATCH_EXPR
:
4717 case TRY_FINALLY_EXPR
:
4718 case EH_FILTER_EXPR
:
4721 case STATEMENT_LIST
:
4731 /* These are always void. */
4737 /* These are valid regardless of their type. */
4746 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4747 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4748 DECL_GIMPLE_REG_P set.
4750 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4751 other, unmodified part of the complex object just before the total store.
4752 As a consequence, if the object is still uninitialized, an undefined value
4753 will be loaded into a register, which may result in a spurious exception
4754 if the register is floating-point and the value happens to be a signaling
4755 NaN for example. Then the fully-fledged complex operations lowering pass
4756 followed by a DCE pass are necessary in order to fix things up. */
4758 static enum gimplify_status
4759 gimplify_modify_expr_complex_part (tree
*expr_p
, gimple_seq
*pre_p
,
4762 enum tree_code code
, ocode
;
4763 tree lhs
, rhs
, new_rhs
, other
, realpart
, imagpart
;
4765 lhs
= TREE_OPERAND (*expr_p
, 0);
4766 rhs
= TREE_OPERAND (*expr_p
, 1);
4767 code
= TREE_CODE (lhs
);
4768 lhs
= TREE_OPERAND (lhs
, 0);
4770 ocode
= code
== REALPART_EXPR
? IMAGPART_EXPR
: REALPART_EXPR
;
4771 other
= build1 (ocode
, TREE_TYPE (rhs
), lhs
);
4772 TREE_NO_WARNING (other
) = 1;
4773 other
= get_formal_tmp_var (other
, pre_p
);
4775 realpart
= code
== REALPART_EXPR
? rhs
: other
;
4776 imagpart
= code
== REALPART_EXPR
? other
: rhs
;
4778 if (TREE_CONSTANT (realpart
) && TREE_CONSTANT (imagpart
))
4779 new_rhs
= build_complex (TREE_TYPE (lhs
), realpart
, imagpart
);
4781 new_rhs
= build2 (COMPLEX_EXPR
, TREE_TYPE (lhs
), realpart
, imagpart
);
4783 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (lhs
, new_rhs
));
4784 *expr_p
= (want_value
) ? rhs
: NULL_TREE
;
4789 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4795 PRE_P points to the list where side effects that must happen before
4796 *EXPR_P should be stored.
4798 POST_P points to the list where side effects that must happen after
4799 *EXPR_P should be stored.
4801 WANT_VALUE is nonzero iff we want to use the value of this expression
4802 in another expression. */
4804 static enum gimplify_status
4805 gimplify_modify_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
4808 tree
*from_p
= &TREE_OPERAND (*expr_p
, 1);
4809 tree
*to_p
= &TREE_OPERAND (*expr_p
, 0);
4810 enum gimplify_status ret
= GS_UNHANDLED
;
4812 location_t loc
= EXPR_LOCATION (*expr_p
);
4813 gimple_stmt_iterator gsi
;
4815 gcc_assert (TREE_CODE (*expr_p
) == MODIFY_EXPR
4816 || TREE_CODE (*expr_p
) == INIT_EXPR
);
4818 /* Trying to simplify a clobber using normal logic doesn't work,
4819 so handle it here. */
4820 if (TREE_CLOBBER_P (*from_p
))
4822 gcc_assert (!want_value
&& TREE_CODE (*to_p
) == VAR_DECL
);
4823 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (*to_p
, *from_p
));
4828 /* Insert pointer conversions required by the middle-end that are not
4829 required by the frontend. This fixes middle-end type checking for
4830 for example gcc.dg/redecl-6.c. */
4831 if (POINTER_TYPE_P (TREE_TYPE (*to_p
)))
4833 STRIP_USELESS_TYPE_CONVERSION (*from_p
);
4834 if (!useless_type_conversion_p (TREE_TYPE (*to_p
), TREE_TYPE (*from_p
)))
4835 *from_p
= fold_convert_loc (loc
, TREE_TYPE (*to_p
), *from_p
);
4838 /* See if any simplifications can be done based on what the RHS is. */
4839 ret
= gimplify_modify_expr_rhs (expr_p
, from_p
, to_p
, pre_p
, post_p
,
4841 if (ret
!= GS_UNHANDLED
)
4844 /* For zero sized types only gimplify the left hand side and right hand
4845 side as statements and throw away the assignment. Do this after
4846 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4848 if (zero_sized_type (TREE_TYPE (*from_p
)) && !want_value
)
4850 gimplify_stmt (from_p
, pre_p
);
4851 gimplify_stmt (to_p
, pre_p
);
4852 *expr_p
= NULL_TREE
;
4856 /* If the value being copied is of variable width, compute the length
4857 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4858 before gimplifying any of the operands so that we can resolve any
4859 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4860 the size of the expression to be copied, not of the destination, so
4861 that is what we must do here. */
4862 maybe_with_size_expr (from_p
);
4864 ret
= gimplify_expr (to_p
, pre_p
, post_p
, is_gimple_lvalue
, fb_lvalue
);
4865 if (ret
== GS_ERROR
)
4868 /* As a special case, we have to temporarily allow for assignments
4869 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4870 a toplevel statement, when gimplifying the GENERIC expression
4871 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4872 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4874 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4875 prevent gimplify_expr from trying to create a new temporary for
4876 foo's LHS, we tell it that it should only gimplify until it
4877 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4878 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4879 and all we need to do here is set 'a' to be its LHS. */
4880 ret
= gimplify_expr (from_p
, pre_p
, post_p
, rhs_predicate_for (*to_p
),
4882 if (ret
== GS_ERROR
)
4885 /* Now see if the above changed *from_p to something we handle specially. */
4886 ret
= gimplify_modify_expr_rhs (expr_p
, from_p
, to_p
, pre_p
, post_p
,
4888 if (ret
!= GS_UNHANDLED
)
4891 /* If we've got a variable sized assignment between two lvalues (i.e. does
4892 not involve a call), then we can make things a bit more straightforward
4893 by converting the assignment to memcpy or memset. */
4894 if (TREE_CODE (*from_p
) == WITH_SIZE_EXPR
)
4896 tree from
= TREE_OPERAND (*from_p
, 0);
4897 tree size
= TREE_OPERAND (*from_p
, 1);
4899 if (TREE_CODE (from
) == CONSTRUCTOR
)
4900 return gimplify_modify_expr_to_memset (expr_p
, size
, want_value
, pre_p
);
4902 if (is_gimple_addressable (from
))
4905 return gimplify_modify_expr_to_memcpy (expr_p
, size
, want_value
,
4910 /* Transform partial stores to non-addressable complex variables into
4911 total stores. This allows us to use real instead of virtual operands
4912 for these variables, which improves optimization. */
4913 if ((TREE_CODE (*to_p
) == REALPART_EXPR
4914 || TREE_CODE (*to_p
) == IMAGPART_EXPR
)
4915 && is_gimple_reg (TREE_OPERAND (*to_p
, 0)))
4916 return gimplify_modify_expr_complex_part (expr_p
, pre_p
, want_value
);
4918 /* Try to alleviate the effects of the gimplification creating artificial
4919 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4920 if (!gimplify_ctxp
->into_ssa
4921 && TREE_CODE (*from_p
) == VAR_DECL
4922 && DECL_IGNORED_P (*from_p
)
4924 && !DECL_IGNORED_P (*to_p
))
4926 if (!DECL_NAME (*from_p
) && DECL_NAME (*to_p
))
4928 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p
)));
4929 DECL_DEBUG_EXPR_IS_FROM (*from_p
) = 1;
4930 SET_DECL_DEBUG_EXPR (*from_p
, *to_p
);
4933 if (want_value
&& TREE_THIS_VOLATILE (*to_p
))
4934 *from_p
= get_initialized_tmp_var (*from_p
, pre_p
, post_p
);
4936 if (TREE_CODE (*from_p
) == CALL_EXPR
)
4938 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4939 instead of a GIMPLE_ASSIGN. */
4940 tree fnptrtype
= TREE_TYPE (CALL_EXPR_FN (*from_p
));
4941 CALL_EXPR_FN (*from_p
) = TREE_OPERAND (CALL_EXPR_FN (*from_p
), 0);
4942 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p
));
4943 assign
= gimple_build_call_from_tree (*from_p
);
4944 gimple_call_set_fntype (assign
, TREE_TYPE (fnptrtype
));
4945 if (!gimple_call_noreturn_p (assign
))
4946 gimple_call_set_lhs (assign
, *to_p
);
4950 assign
= gimple_build_assign (*to_p
, *from_p
);
4951 gimple_set_location (assign
, EXPR_LOCATION (*expr_p
));
4954 if (gimplify_ctxp
->into_ssa
&& is_gimple_reg (*to_p
))
4956 /* We should have got an SSA name from the start. */
4957 gcc_assert (TREE_CODE (*to_p
) == SSA_NAME
);
4960 gimplify_seq_add_stmt (pre_p
, assign
);
4961 gsi
= gsi_last (*pre_p
);
4966 *expr_p
= TREE_THIS_VOLATILE (*to_p
) ? *from_p
: unshare_expr (*to_p
);
4975 /* Gimplify a comparison between two variable-sized objects. Do this
4976 with a call to BUILT_IN_MEMCMP. */
4978 static enum gimplify_status
4979 gimplify_variable_sized_compare (tree
*expr_p
)
4981 location_t loc
= EXPR_LOCATION (*expr_p
);
4982 tree op0
= TREE_OPERAND (*expr_p
, 0);
4983 tree op1
= TREE_OPERAND (*expr_p
, 1);
4984 tree t
, arg
, dest
, src
, expr
;
4986 arg
= TYPE_SIZE_UNIT (TREE_TYPE (op0
));
4987 arg
= unshare_expr (arg
);
4988 arg
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg
, op0
);
4989 src
= build_fold_addr_expr_loc (loc
, op1
);
4990 dest
= build_fold_addr_expr_loc (loc
, op0
);
4991 t
= builtin_decl_implicit (BUILT_IN_MEMCMP
);
4992 t
= build_call_expr_loc (loc
, t
, 3, dest
, src
, arg
);
4995 = build2 (TREE_CODE (*expr_p
), TREE_TYPE (*expr_p
), t
, integer_zero_node
);
4996 SET_EXPR_LOCATION (expr
, loc
);
5002 /* Gimplify a comparison between two aggregate objects of integral scalar
5003 mode as a comparison between the bitwise equivalent scalar values. */
5005 static enum gimplify_status
5006 gimplify_scalar_mode_aggregate_compare (tree
*expr_p
)
5008 location_t loc
= EXPR_LOCATION (*expr_p
);
5009 tree op0
= TREE_OPERAND (*expr_p
, 0);
5010 tree op1
= TREE_OPERAND (*expr_p
, 1);
5012 tree type
= TREE_TYPE (op0
);
5013 tree scalar_type
= lang_hooks
.types
.type_for_mode (TYPE_MODE (type
), 1);
5015 op0
= fold_build1_loc (loc
, VIEW_CONVERT_EXPR
, scalar_type
, op0
);
5016 op1
= fold_build1_loc (loc
, VIEW_CONVERT_EXPR
, scalar_type
, op1
);
5019 = fold_build2_loc (loc
, TREE_CODE (*expr_p
), TREE_TYPE (*expr_p
), op0
, op1
);
5024 /* Gimplify an expression sequence. This function gimplifies each
5025 expression and rewrites the original expression with the last
5026 expression of the sequence in GIMPLE form.
5028 PRE_P points to the list where the side effects for all the
5029 expressions in the sequence will be emitted.
5031 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
5033 static enum gimplify_status
5034 gimplify_compound_expr (tree
*expr_p
, gimple_seq
*pre_p
, bool want_value
)
5040 tree
*sub_p
= &TREE_OPERAND (t
, 0);
5042 if (TREE_CODE (*sub_p
) == COMPOUND_EXPR
)
5043 gimplify_compound_expr (sub_p
, pre_p
, false);
5045 gimplify_stmt (sub_p
, pre_p
);
5047 t
= TREE_OPERAND (t
, 1);
5049 while (TREE_CODE (t
) == COMPOUND_EXPR
);
5056 gimplify_stmt (expr_p
, pre_p
);
5061 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
5062 gimplify. After gimplification, EXPR_P will point to a new temporary
5063 that holds the original value of the SAVE_EXPR node.
5065 PRE_P points to the list where side effects that must happen before
5066 *EXPR_P should be stored. */
5068 static enum gimplify_status
5069 gimplify_save_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
5071 enum gimplify_status ret
= GS_ALL_DONE
;
5074 gcc_assert (TREE_CODE (*expr_p
) == SAVE_EXPR
);
5075 val
= TREE_OPERAND (*expr_p
, 0);
5077 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
5078 if (!SAVE_EXPR_RESOLVED_P (*expr_p
))
5080 /* The operand may be a void-valued expression such as SAVE_EXPRs
5081 generated by the Java frontend for class initialization. It is
5082 being executed only for its side-effects. */
5083 if (TREE_TYPE (val
) == void_type_node
)
5085 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
5086 is_gimple_stmt
, fb_none
);
5090 val
= get_initialized_tmp_var (val
, pre_p
, post_p
);
5092 TREE_OPERAND (*expr_p
, 0) = val
;
5093 SAVE_EXPR_RESOLVED_P (*expr_p
) = 1;
5101 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
5108 PRE_P points to the list where side effects that must happen before
5109 *EXPR_P should be stored.
5111 POST_P points to the list where side effects that must happen after
5112 *EXPR_P should be stored. */
5114 static enum gimplify_status
5115 gimplify_addr_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
5117 tree expr
= *expr_p
;
5118 tree op0
= TREE_OPERAND (expr
, 0);
5119 enum gimplify_status ret
;
5120 location_t loc
= EXPR_LOCATION (*expr_p
);
5122 switch (TREE_CODE (op0
))
5126 /* Check if we are dealing with an expression of the form '&*ptr'.
5127 While the front end folds away '&*ptr' into 'ptr', these
5128 expressions may be generated internally by the compiler (e.g.,
5129 builtins like __builtin_va_end). */
5130 /* Caution: the silent array decomposition semantics we allow for
5131 ADDR_EXPR means we can't always discard the pair. */
5132 /* Gimplification of the ADDR_EXPR operand may drop
5133 cv-qualification conversions, so make sure we add them if
5136 tree op00
= TREE_OPERAND (op0
, 0);
5137 tree t_expr
= TREE_TYPE (expr
);
5138 tree t_op00
= TREE_TYPE (op00
);
5140 if (!useless_type_conversion_p (t_expr
, t_op00
))
5141 op00
= fold_convert_loc (loc
, TREE_TYPE (expr
), op00
);
5147 case VIEW_CONVERT_EXPR
:
5148 /* Take the address of our operand and then convert it to the type of
5151 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
5152 all clear. The impact of this transformation is even less clear. */
5154 /* If the operand is a useless conversion, look through it. Doing so
5155 guarantees that the ADDR_EXPR and its operand will remain of the
5157 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0
, 0)))
5158 op0
= TREE_OPERAND (op0
, 0);
5160 *expr_p
= fold_convert_loc (loc
, TREE_TYPE (expr
),
5161 build_fold_addr_expr_loc (loc
,
5162 TREE_OPERAND (op0
, 0)));
5167 /* We use fb_either here because the C frontend sometimes takes
5168 the address of a call that returns a struct; see
5169 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
5170 the implied temporary explicit. */
5172 /* Make the operand addressable. */
5173 ret
= gimplify_expr (&TREE_OPERAND (expr
, 0), pre_p
, post_p
,
5174 is_gimple_addressable
, fb_either
);
5175 if (ret
== GS_ERROR
)
5178 /* Then mark it. Beware that it may not be possible to do so directly
5179 if a temporary has been created by the gimplification. */
5180 prepare_gimple_addressable (&TREE_OPERAND (expr
, 0), pre_p
);
5182 op0
= TREE_OPERAND (expr
, 0);
5184 /* For various reasons, the gimplification of the expression
5185 may have made a new INDIRECT_REF. */
5186 if (TREE_CODE (op0
) == INDIRECT_REF
)
5187 goto do_indirect_ref
;
5189 mark_addressable (TREE_OPERAND (expr
, 0));
5191 /* The FEs may end up building ADDR_EXPRs early on a decl with
5192 an incomplete type. Re-build ADDR_EXPRs in canonical form
5194 if (!types_compatible_p (TREE_TYPE (op0
), TREE_TYPE (TREE_TYPE (expr
))))
5195 *expr_p
= build_fold_addr_expr (op0
);
5197 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
5198 recompute_tree_invariant_for_addr_expr (*expr_p
);
5200 /* If we re-built the ADDR_EXPR add a conversion to the original type
5202 if (!useless_type_conversion_p (TREE_TYPE (expr
), TREE_TYPE (*expr_p
)))
5203 *expr_p
= fold_convert (TREE_TYPE (expr
), *expr_p
);
5211 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
5212 value; output operands should be a gimple lvalue. */
5214 static enum gimplify_status
5215 gimplify_asm_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
5219 const char **oconstraints
;
5222 const char *constraint
;
5223 bool allows_mem
, allows_reg
, is_inout
;
5224 enum gimplify_status ret
, tret
;
5226 VEC(tree
, gc
) *inputs
;
5227 VEC(tree
, gc
) *outputs
;
5228 VEC(tree
, gc
) *clobbers
;
5229 VEC(tree
, gc
) *labels
;
5233 noutputs
= list_length (ASM_OUTPUTS (expr
));
5234 oconstraints
= (const char **) alloca ((noutputs
) * sizeof (const char *));
5236 inputs
= outputs
= clobbers
= labels
= NULL
;
5239 link_next
= NULL_TREE
;
5240 for (i
= 0, link
= ASM_OUTPUTS (expr
); link
; ++i
, link
= link_next
)
5243 size_t constraint_len
;
5245 link_next
= TREE_CHAIN (link
);
5249 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
5250 constraint_len
= strlen (constraint
);
5251 if (constraint_len
== 0)
5254 ok
= parse_output_constraint (&constraint
, i
, 0, 0,
5255 &allows_mem
, &allows_reg
, &is_inout
);
5262 if (!allows_reg
&& allows_mem
)
5263 mark_addressable (TREE_VALUE (link
));
5265 tret
= gimplify_expr (&TREE_VALUE (link
), pre_p
, post_p
,
5266 is_inout
? is_gimple_min_lval
: is_gimple_lvalue
,
5267 fb_lvalue
| fb_mayfail
);
5268 if (tret
== GS_ERROR
)
5270 error ("invalid lvalue in asm output %d", i
);
5274 VEC_safe_push (tree
, gc
, outputs
, link
);
5275 TREE_CHAIN (link
) = NULL_TREE
;
5279 /* An input/output operand. To give the optimizers more
5280 flexibility, split it into separate input and output
5285 /* Turn the in/out constraint into an output constraint. */
5286 char *p
= xstrdup (constraint
);
5288 TREE_VALUE (TREE_PURPOSE (link
)) = build_string (constraint_len
, p
);
5290 /* And add a matching input constraint. */
5293 sprintf (buf
, "%d", i
);
5295 /* If there are multiple alternatives in the constraint,
5296 handle each of them individually. Those that allow register
5297 will be replaced with operand number, the others will stay
5299 if (strchr (p
, ',') != NULL
)
5301 size_t len
= 0, buflen
= strlen (buf
);
5302 char *beg
, *end
, *str
, *dst
;
5306 end
= strchr (beg
, ',');
5308 end
= strchr (beg
, '\0');
5309 if ((size_t) (end
- beg
) < buflen
)
5312 len
+= end
- beg
+ 1;
5319 str
= (char *) alloca (len
);
5320 for (beg
= p
+ 1, dst
= str
;;)
5323 bool mem_p
, reg_p
, inout_p
;
5325 end
= strchr (beg
, ',');
5330 parse_output_constraint (&tem
, i
, 0, 0,
5331 &mem_p
, ®_p
, &inout_p
);
5336 memcpy (dst
, buf
, buflen
);
5345 memcpy (dst
, beg
, len
);
5354 input
= build_string (dst
- str
, str
);
5357 input
= build_string (strlen (buf
), buf
);
5360 input
= build_string (constraint_len
- 1, constraint
+ 1);
5364 input
= build_tree_list (build_tree_list (NULL_TREE
, input
),
5365 unshare_expr (TREE_VALUE (link
)));
5366 ASM_INPUTS (expr
) = chainon (ASM_INPUTS (expr
), input
);
5370 link_next
= NULL_TREE
;
5371 for (link
= ASM_INPUTS (expr
); link
; ++i
, link
= link_next
)
5373 link_next
= TREE_CHAIN (link
);
5374 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
5375 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0,
5376 oconstraints
, &allows_mem
, &allows_reg
);
5378 /* If we can't make copies, we can only accept memory. */
5379 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link
))))
5385 error ("impossible constraint in %<asm%>");
5386 error ("non-memory input %d must stay in memory", i
);
5391 /* If the operand is a memory input, it should be an lvalue. */
5392 if (!allows_reg
&& allows_mem
)
5394 tree inputv
= TREE_VALUE (link
);
5395 STRIP_NOPS (inputv
);
5396 if (TREE_CODE (inputv
) == PREDECREMENT_EXPR
5397 || TREE_CODE (inputv
) == PREINCREMENT_EXPR
5398 || TREE_CODE (inputv
) == POSTDECREMENT_EXPR
5399 || TREE_CODE (inputv
) == POSTINCREMENT_EXPR
)
5400 TREE_VALUE (link
) = error_mark_node
;
5401 tret
= gimplify_expr (&TREE_VALUE (link
), pre_p
, post_p
,
5402 is_gimple_lvalue
, fb_lvalue
| fb_mayfail
);
5403 mark_addressable (TREE_VALUE (link
));
5404 if (tret
== GS_ERROR
)
5406 if (EXPR_HAS_LOCATION (TREE_VALUE (link
)))
5407 input_location
= EXPR_LOCATION (TREE_VALUE (link
));
5408 error ("memory input %d is not directly addressable", i
);
5414 tret
= gimplify_expr (&TREE_VALUE (link
), pre_p
, post_p
,
5415 is_gimple_asm_val
, fb_rvalue
);
5416 if (tret
== GS_ERROR
)
5420 TREE_CHAIN (link
) = NULL_TREE
;
5421 VEC_safe_push (tree
, gc
, inputs
, link
);
5424 for (link
= ASM_CLOBBERS (expr
); link
; ++i
, link
= TREE_CHAIN (link
))
5425 VEC_safe_push (tree
, gc
, clobbers
, link
);
5427 for (link
= ASM_LABELS (expr
); link
; ++i
, link
= TREE_CHAIN (link
))
5428 VEC_safe_push (tree
, gc
, labels
, link
);
5430 /* Do not add ASMs with errors to the gimple IL stream. */
5431 if (ret
!= GS_ERROR
)
5433 stmt
= gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr
)),
5434 inputs
, outputs
, clobbers
, labels
);
5436 gimple_asm_set_volatile (stmt
, ASM_VOLATILE_P (expr
));
5437 gimple_asm_set_input (stmt
, ASM_INPUT_P (expr
));
5439 gimplify_seq_add_stmt (pre_p
, stmt
);
5445 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5446 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5447 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5448 return to this function.
5450 FIXME should we complexify the prequeue handling instead? Or use flags
5451 for all the cleanups and let the optimizer tighten them up? The current
5452 code seems pretty fragile; it will break on a cleanup within any
5453 non-conditional nesting. But any such nesting would be broken, anyway;
5454 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5455 and continues out of it. We can do that at the RTL level, though, so
5456 having an optimizer to tighten up try/finally regions would be a Good
5459 static enum gimplify_status
5460 gimplify_cleanup_point_expr (tree
*expr_p
, gimple_seq
*pre_p
)
5462 gimple_stmt_iterator iter
;
5463 gimple_seq body_sequence
= NULL
;
5465 tree temp
= voidify_wrapper_expr (*expr_p
, NULL
);
5467 /* We only care about the number of conditions between the innermost
5468 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5469 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5470 int old_conds
= gimplify_ctxp
->conditions
;
5471 gimple_seq old_cleanups
= gimplify_ctxp
->conditional_cleanups
;
5472 bool old_in_cleanup_point_expr
= gimplify_ctxp
->in_cleanup_point_expr
;
5473 gimplify_ctxp
->conditions
= 0;
5474 gimplify_ctxp
->conditional_cleanups
= NULL
;
5475 gimplify_ctxp
->in_cleanup_point_expr
= true;
5477 gimplify_stmt (&TREE_OPERAND (*expr_p
, 0), &body_sequence
);
5479 gimplify_ctxp
->conditions
= old_conds
;
5480 gimplify_ctxp
->conditional_cleanups
= old_cleanups
;
5481 gimplify_ctxp
->in_cleanup_point_expr
= old_in_cleanup_point_expr
;
5483 for (iter
= gsi_start (body_sequence
); !gsi_end_p (iter
); )
5485 gimple wce
= gsi_stmt (iter
);
5487 if (gimple_code (wce
) == GIMPLE_WITH_CLEANUP_EXPR
)
5489 if (gsi_one_before_end_p (iter
))
5491 /* Note that gsi_insert_seq_before and gsi_remove do not
5492 scan operands, unlike some other sequence mutators. */
5493 if (!gimple_wce_cleanup_eh_only (wce
))
5494 gsi_insert_seq_before_without_update (&iter
,
5495 gimple_wce_cleanup (wce
),
5497 gsi_remove (&iter
, true);
5504 enum gimple_try_flags kind
;
5506 if (gimple_wce_cleanup_eh_only (wce
))
5507 kind
= GIMPLE_TRY_CATCH
;
5509 kind
= GIMPLE_TRY_FINALLY
;
5510 seq
= gsi_split_seq_after (iter
);
5512 gtry
= gimple_build_try (seq
, gimple_wce_cleanup (wce
), kind
);
5513 /* Do not use gsi_replace here, as it may scan operands.
5514 We want to do a simple structural modification only. */
5515 gsi_set_stmt (&iter
, gtry
);
5516 iter
= gsi_start (gtry
->gimple_try
.eval
);
5523 gimplify_seq_add_seq (pre_p
, body_sequence
);
5536 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5537 is the cleanup action required. EH_ONLY is true if the cleanup should
5538 only be executed if an exception is thrown, not on normal exit. */
5541 gimple_push_cleanup (tree var
, tree cleanup
, bool eh_only
, gimple_seq
*pre_p
)
5544 gimple_seq cleanup_stmts
= NULL
;
5546 /* Errors can result in improperly nested cleanups. Which results in
5547 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5551 if (gimple_conditional_context ())
5553 /* If we're in a conditional context, this is more complex. We only
5554 want to run the cleanup if we actually ran the initialization that
5555 necessitates it, but we want to run it after the end of the
5556 conditional context. So we wrap the try/finally around the
5557 condition and use a flag to determine whether or not to actually
5558 run the destructor. Thus
5562 becomes (approximately)
5566 if (test) { A::A(temp); flag = 1; val = f(temp); }
5569 if (flag) A::~A(temp);
5573 tree flag
= create_tmp_var (boolean_type_node
, "cleanup");
5574 gimple ffalse
= gimple_build_assign (flag
, boolean_false_node
);
5575 gimple ftrue
= gimple_build_assign (flag
, boolean_true_node
);
5577 cleanup
= build3 (COND_EXPR
, void_type_node
, flag
, cleanup
, NULL
);
5578 gimplify_stmt (&cleanup
, &cleanup_stmts
);
5579 wce
= gimple_build_wce (cleanup_stmts
);
5581 gimplify_seq_add_stmt (&gimplify_ctxp
->conditional_cleanups
, ffalse
);
5582 gimplify_seq_add_stmt (&gimplify_ctxp
->conditional_cleanups
, wce
);
5583 gimplify_seq_add_stmt (pre_p
, ftrue
);
5585 /* Because of this manipulation, and the EH edges that jump
5586 threading cannot redirect, the temporary (VAR) will appear
5587 to be used uninitialized. Don't warn. */
5588 TREE_NO_WARNING (var
) = 1;
5592 gimplify_stmt (&cleanup
, &cleanup_stmts
);
5593 wce
= gimple_build_wce (cleanup_stmts
);
5594 gimple_wce_set_cleanup_eh_only (wce
, eh_only
);
5595 gimplify_seq_add_stmt (pre_p
, wce
);
5599 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5601 static enum gimplify_status
5602 gimplify_target_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
5604 tree targ
= *expr_p
;
5605 tree temp
= TARGET_EXPR_SLOT (targ
);
5606 tree init
= TARGET_EXPR_INITIAL (targ
);
5607 enum gimplify_status ret
;
5611 tree cleanup
= NULL_TREE
;
5613 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5614 to the temps list. Handle also variable length TARGET_EXPRs. */
5615 if (TREE_CODE (DECL_SIZE (temp
)) != INTEGER_CST
)
5617 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp
)))
5618 gimplify_type_sizes (TREE_TYPE (temp
), pre_p
);
5619 gimplify_vla_decl (temp
, pre_p
);
5622 gimple_add_tmp_var (temp
);
5624 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5625 expression is supposed to initialize the slot. */
5626 if (VOID_TYPE_P (TREE_TYPE (init
)))
5627 ret
= gimplify_expr (&init
, pre_p
, post_p
, is_gimple_stmt
, fb_none
);
5630 tree init_expr
= build2 (INIT_EXPR
, void_type_node
, temp
, init
);
5632 ret
= gimplify_expr (&init
, pre_p
, post_p
, is_gimple_stmt
, fb_none
);
5634 ggc_free (init_expr
);
5636 if (ret
== GS_ERROR
)
5638 /* PR c++/28266 Make sure this is expanded only once. */
5639 TARGET_EXPR_INITIAL (targ
) = NULL_TREE
;
5643 gimplify_and_add (init
, pre_p
);
5645 /* If needed, push the cleanup for the temp. */
5646 if (TARGET_EXPR_CLEANUP (targ
))
5648 if (CLEANUP_EH_ONLY (targ
))
5649 gimple_push_cleanup (temp
, TARGET_EXPR_CLEANUP (targ
),
5650 CLEANUP_EH_ONLY (targ
), pre_p
);
5652 cleanup
= TARGET_EXPR_CLEANUP (targ
);
5655 /* Add a clobber for the temporary going out of scope, like
5656 gimplify_bind_expr. */
5657 if (gimplify_ctxp
->in_cleanup_point_expr
5658 && needs_to_live_in_memory (temp
)
5659 && flag_stack_reuse
== SR_ALL
)
5661 tree clobber
= build_constructor (TREE_TYPE (temp
), NULL
);
5662 TREE_THIS_VOLATILE (clobber
) = true;
5663 clobber
= build2 (MODIFY_EXPR
, TREE_TYPE (temp
), temp
, clobber
);
5665 cleanup
= build2 (COMPOUND_EXPR
, void_type_node
, cleanup
,
5672 gimple_push_cleanup (temp
, cleanup
, false, pre_p
);
5674 /* Only expand this once. */
5675 TREE_OPERAND (targ
, 3) = init
;
5676 TARGET_EXPR_INITIAL (targ
) = NULL_TREE
;
5679 /* We should have expanded this before. */
5680 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp
));
5686 /* Gimplification of expression trees. */
5688 /* Gimplify an expression which appears at statement context. The
5689 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5690 NULL, a new sequence is allocated.
5692 Return true if we actually added a statement to the queue. */
5695 gimplify_stmt (tree
*stmt_p
, gimple_seq
*seq_p
)
5697 gimple_seq_node last
;
5699 last
= gimple_seq_last (*seq_p
);
5700 gimplify_expr (stmt_p
, seq_p
, NULL
, is_gimple_stmt
, fb_none
);
5701 return last
!= gimple_seq_last (*seq_p
);
5704 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5705 to CTX. If entries already exist, force them to be some flavor of private.
5706 If there is no enclosing parallel, do nothing. */
5709 omp_firstprivatize_variable (struct gimplify_omp_ctx
*ctx
, tree decl
)
5713 if (decl
== NULL
|| !DECL_P (decl
))
5718 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
5721 if (n
->value
& GOVD_SHARED
)
5722 n
->value
= GOVD_FIRSTPRIVATE
| (n
->value
& GOVD_SEEN
);
5726 else if (ctx
->region_type
!= ORT_WORKSHARE
)
5727 omp_add_variable (ctx
, decl
, GOVD_FIRSTPRIVATE
);
5729 ctx
= ctx
->outer_context
;
5734 /* Similarly for each of the type sizes of TYPE. */
5737 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx
*ctx
, tree type
)
5739 if (type
== NULL
|| type
== error_mark_node
)
5741 type
= TYPE_MAIN_VARIANT (type
);
5743 if (pointer_set_insert (ctx
->privatized_types
, type
))
5746 switch (TREE_CODE (type
))
5752 case FIXED_POINT_TYPE
:
5753 omp_firstprivatize_variable (ctx
, TYPE_MIN_VALUE (type
));
5754 omp_firstprivatize_variable (ctx
, TYPE_MAX_VALUE (type
));
5758 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (type
));
5759 omp_firstprivatize_type_sizes (ctx
, TYPE_DOMAIN (type
));
5764 case QUAL_UNION_TYPE
:
5767 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
5768 if (TREE_CODE (field
) == FIELD_DECL
)
5770 omp_firstprivatize_variable (ctx
, DECL_FIELD_OFFSET (field
));
5771 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (field
));
5777 case REFERENCE_TYPE
:
5778 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (type
));
5785 omp_firstprivatize_variable (ctx
, TYPE_SIZE (type
));
5786 omp_firstprivatize_variable (ctx
, TYPE_SIZE_UNIT (type
));
5787 lang_hooks
.types
.omp_firstprivatize_type_sizes (ctx
, type
);
5790 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5793 omp_add_variable (struct gimplify_omp_ctx
*ctx
, tree decl
, unsigned int flags
)
5796 unsigned int nflags
;
5799 if (error_operand_p (decl
))
5802 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5803 there are constructors involved somewhere. */
5804 if (TREE_ADDRESSABLE (TREE_TYPE (decl
))
5805 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
5808 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
5811 /* We shouldn't be re-adding the decl with the same data
5813 gcc_assert ((n
->value
& GOVD_DATA_SHARE_CLASS
& flags
) == 0);
5814 /* The only combination of data sharing classes we should see is
5815 FIRSTPRIVATE and LASTPRIVATE. */
5816 nflags
= n
->value
| flags
;
5817 gcc_assert ((nflags
& GOVD_DATA_SHARE_CLASS
)
5818 == (GOVD_FIRSTPRIVATE
| GOVD_LASTPRIVATE
));
5823 /* When adding a variable-sized variable, we have to handle all sorts
5824 of additional bits of data: the pointer replacement variable, and
5825 the parameters of the type. */
5826 if (DECL_SIZE (decl
) && TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
5828 /* Add the pointer replacement variable as PRIVATE if the variable
5829 replacement is private, else FIRSTPRIVATE since we'll need the
5830 address of the original variable either for SHARED, or for the
5831 copy into or out of the context. */
5832 if (!(flags
& GOVD_LOCAL
))
5834 nflags
= flags
& GOVD_PRIVATE
? GOVD_PRIVATE
: GOVD_FIRSTPRIVATE
;
5835 nflags
|= flags
& GOVD_SEEN
;
5836 t
= DECL_VALUE_EXPR (decl
);
5837 gcc_assert (TREE_CODE (t
) == INDIRECT_REF
);
5838 t
= TREE_OPERAND (t
, 0);
5839 gcc_assert (DECL_P (t
));
5840 omp_add_variable (ctx
, t
, nflags
);
5843 /* Add all of the variable and type parameters (which should have
5844 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5845 omp_firstprivatize_variable (ctx
, DECL_SIZE_UNIT (decl
));
5846 omp_firstprivatize_variable (ctx
, DECL_SIZE (decl
));
5847 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (decl
));
5849 /* The variable-sized variable itself is never SHARED, only some form
5850 of PRIVATE. The sharing would take place via the pointer variable
5851 which we remapped above. */
5852 if (flags
& GOVD_SHARED
)
5853 flags
= GOVD_PRIVATE
| GOVD_DEBUG_PRIVATE
5854 | (flags
& (GOVD_SEEN
| GOVD_EXPLICIT
));
5856 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5857 alloca statement we generate for the variable, so make sure it
5858 is available. This isn't automatically needed for the SHARED
5859 case, since we won't be allocating local storage then.
5860 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5861 in this case omp_notice_variable will be called later
5862 on when it is gimplified. */
5863 else if (! (flags
& GOVD_LOCAL
)
5864 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl
))))
5865 omp_notice_variable (ctx
, TYPE_SIZE_UNIT (TREE_TYPE (decl
)), true);
5867 else if (lang_hooks
.decls
.omp_privatize_by_reference (decl
))
5869 gcc_assert ((flags
& GOVD_LOCAL
) == 0);
5870 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (decl
));
5872 /* Similar to the direct variable sized case above, we'll need the
5873 size of references being privatized. */
5874 if ((flags
& GOVD_SHARED
) == 0)
5876 t
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl
)));
5877 if (TREE_CODE (t
) != INTEGER_CST
)
5878 omp_notice_variable (ctx
, t
, true);
5882 splay_tree_insert (ctx
->variables
, (splay_tree_key
)decl
, flags
);
5885 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5886 This just prints out diagnostics about threadprivate variable uses
5887 in untied tasks. If DECL2 is non-NULL, prevent this warning
5888 on that variable. */
5891 omp_notice_threadprivate_variable (struct gimplify_omp_ctx
*ctx
, tree decl
,
5896 if (ctx
->region_type
!= ORT_UNTIED_TASK
)
5898 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
5901 error ("threadprivate variable %qE used in untied task",
5903 error_at (ctx
->location
, "enclosing task");
5904 splay_tree_insert (ctx
->variables
, (splay_tree_key
)decl
, 0);
5907 splay_tree_insert (ctx
->variables
, (splay_tree_key
)decl2
, 0);
5911 /* Record the fact that DECL was used within the OpenMP context CTX.
5912 IN_CODE is true when real code uses DECL, and false when we should
5913 merely emit default(none) errors. Return true if DECL is going to
5914 be remapped and thus DECL shouldn't be gimplified into its
5915 DECL_VALUE_EXPR (if any). */
5918 omp_notice_variable (struct gimplify_omp_ctx
*ctx
, tree decl
, bool in_code
)
5921 unsigned flags
= in_code
? GOVD_SEEN
: 0;
5922 bool ret
= false, shared
;
5924 if (error_operand_p (decl
))
5927 /* Threadprivate variables are predetermined. */
5928 if (is_global_var (decl
))
5930 if (DECL_THREAD_LOCAL_P (decl
))
5931 return omp_notice_threadprivate_variable (ctx
, decl
, NULL_TREE
);
5933 if (DECL_HAS_VALUE_EXPR_P (decl
))
5935 tree value
= get_base_address (DECL_VALUE_EXPR (decl
));
5937 if (value
&& DECL_P (value
) && DECL_THREAD_LOCAL_P (value
))
5938 return omp_notice_threadprivate_variable (ctx
, decl
, value
);
5942 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
5945 enum omp_clause_default_kind default_kind
, kind
;
5946 struct gimplify_omp_ctx
*octx
;
5948 if (ctx
->region_type
== ORT_WORKSHARE
)
5951 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5952 remapped firstprivate instead of shared. To some extent this is
5953 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5954 default_kind
= ctx
->default_kind
;
5955 kind
= lang_hooks
.decls
.omp_predetermined_sharing (decl
);
5956 if (kind
!= OMP_CLAUSE_DEFAULT_UNSPECIFIED
)
5957 default_kind
= kind
;
5959 switch (default_kind
)
5961 case OMP_CLAUSE_DEFAULT_NONE
:
5962 error ("%qE not specified in enclosing parallel",
5963 DECL_NAME (lang_hooks
.decls
.omp_report_decl (decl
)));
5964 if ((ctx
->region_type
& ORT_TASK
) != 0)
5965 error_at (ctx
->location
, "enclosing task");
5967 error_at (ctx
->location
, "enclosing parallel");
5969 case OMP_CLAUSE_DEFAULT_SHARED
:
5970 flags
|= GOVD_SHARED
;
5972 case OMP_CLAUSE_DEFAULT_PRIVATE
:
5973 flags
|= GOVD_PRIVATE
;
5975 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE
:
5976 flags
|= GOVD_FIRSTPRIVATE
;
5978 case OMP_CLAUSE_DEFAULT_UNSPECIFIED
:
5979 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5980 gcc_assert ((ctx
->region_type
& ORT_TASK
) != 0);
5981 if (ctx
->outer_context
)
5982 omp_notice_variable (ctx
->outer_context
, decl
, in_code
);
5983 for (octx
= ctx
->outer_context
; octx
; octx
= octx
->outer_context
)
5987 n2
= splay_tree_lookup (octx
->variables
, (splay_tree_key
) decl
);
5988 if (n2
&& (n2
->value
& GOVD_DATA_SHARE_CLASS
) != GOVD_SHARED
)
5990 flags
|= GOVD_FIRSTPRIVATE
;
5993 if ((octx
->region_type
& ORT_PARALLEL
) != 0)
5996 if (flags
& GOVD_FIRSTPRIVATE
)
5999 && (TREE_CODE (decl
) == PARM_DECL
6000 || (!is_global_var (decl
)
6001 && DECL_CONTEXT (decl
) == current_function_decl
)))
6003 flags
|= GOVD_FIRSTPRIVATE
;
6006 flags
|= GOVD_SHARED
;
6012 if ((flags
& GOVD_PRIVATE
)
6013 && lang_hooks
.decls
.omp_private_outer_ref (decl
))
6014 flags
|= GOVD_PRIVATE_OUTER_REF
;
6016 omp_add_variable (ctx
, decl
, flags
);
6018 shared
= (flags
& GOVD_SHARED
) != 0;
6019 ret
= lang_hooks
.decls
.omp_disregard_value_expr (decl
, shared
);
6023 if ((n
->value
& (GOVD_SEEN
| GOVD_LOCAL
)) == 0
6024 && (flags
& (GOVD_SEEN
| GOVD_LOCAL
)) == GOVD_SEEN
6026 && TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
6029 tree t
= DECL_VALUE_EXPR (decl
);
6030 gcc_assert (TREE_CODE (t
) == INDIRECT_REF
);
6031 t
= TREE_OPERAND (t
, 0);
6032 gcc_assert (DECL_P (t
));
6033 n2
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
) t
);
6034 n2
->value
|= GOVD_SEEN
;
6037 shared
= ((flags
| n
->value
) & GOVD_SHARED
) != 0;
6038 ret
= lang_hooks
.decls
.omp_disregard_value_expr (decl
, shared
);
6040 /* If nothing changed, there's nothing left to do. */
6041 if ((n
->value
& flags
) == flags
)
6047 /* If the variable is private in the current context, then we don't
6048 need to propagate anything to an outer context. */
6049 if ((flags
& GOVD_PRIVATE
) && !(flags
& GOVD_PRIVATE_OUTER_REF
))
6051 if (ctx
->outer_context
6052 && omp_notice_variable (ctx
->outer_context
, decl
, in_code
))
6057 /* Verify that DECL is private within CTX. If there's specific information
6058 to the contrary in the innermost scope, generate an error. */
6061 omp_is_private (struct gimplify_omp_ctx
*ctx
, tree decl
)
6065 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
6068 if (n
->value
& GOVD_SHARED
)
6070 if (ctx
== gimplify_omp_ctxp
)
6072 error ("iteration variable %qE should be private",
6074 n
->value
= GOVD_PRIVATE
;
6080 else if ((n
->value
& GOVD_EXPLICIT
) != 0
6081 && (ctx
== gimplify_omp_ctxp
6082 || (ctx
->region_type
== ORT_COMBINED_PARALLEL
6083 && gimplify_omp_ctxp
->outer_context
== ctx
)))
6085 if ((n
->value
& GOVD_FIRSTPRIVATE
) != 0)
6086 error ("iteration variable %qE should not be firstprivate",
6088 else if ((n
->value
& GOVD_REDUCTION
) != 0)
6089 error ("iteration variable %qE should not be reduction",
6092 return (ctx
== gimplify_omp_ctxp
6093 || (ctx
->region_type
== ORT_COMBINED_PARALLEL
6094 && gimplify_omp_ctxp
->outer_context
== ctx
));
6097 if (ctx
->region_type
!= ORT_WORKSHARE
)
6099 else if (ctx
->outer_context
)
6100 return omp_is_private (ctx
->outer_context
, decl
);
6104 /* Return true if DECL is private within a parallel region
6105 that binds to the current construct's context or in parallel
6106 region's REDUCTION clause. */
6109 omp_check_private (struct gimplify_omp_ctx
*ctx
, tree decl
)
6115 ctx
= ctx
->outer_context
;
6117 return !(is_global_var (decl
)
6118 /* References might be private, but might be shared too. */
6119 || lang_hooks
.decls
.omp_privatize_by_reference (decl
));
6121 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
) decl
);
6123 return (n
->value
& GOVD_SHARED
) == 0;
6125 while (ctx
->region_type
== ORT_WORKSHARE
);
6129 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
6130 and previous omp contexts. */
6133 gimplify_scan_omp_clauses (tree
*list_p
, gimple_seq
*pre_p
,
6134 enum omp_region_type region_type
)
6136 struct gimplify_omp_ctx
*ctx
, *outer_ctx
;
6137 struct gimplify_ctx gctx
;
6140 ctx
= new_omp_context (region_type
);
6141 outer_ctx
= ctx
->outer_context
;
6143 while ((c
= *list_p
) != NULL
)
6145 bool remove
= false;
6146 bool notice_outer
= true;
6147 const char *check_non_private
= NULL
;
6151 switch (OMP_CLAUSE_CODE (c
))
6153 case OMP_CLAUSE_PRIVATE
:
6154 flags
= GOVD_PRIVATE
| GOVD_EXPLICIT
;
6155 if (lang_hooks
.decls
.omp_private_outer_ref (OMP_CLAUSE_DECL (c
)))
6157 flags
|= GOVD_PRIVATE_OUTER_REF
;
6158 OMP_CLAUSE_PRIVATE_OUTER_REF (c
) = 1;
6161 notice_outer
= false;
6163 case OMP_CLAUSE_SHARED
:
6164 flags
= GOVD_SHARED
| GOVD_EXPLICIT
;
6166 case OMP_CLAUSE_FIRSTPRIVATE
:
6167 flags
= GOVD_FIRSTPRIVATE
| GOVD_EXPLICIT
;
6168 check_non_private
= "firstprivate";
6170 case OMP_CLAUSE_LASTPRIVATE
:
6171 flags
= GOVD_LASTPRIVATE
| GOVD_SEEN
| GOVD_EXPLICIT
;
6172 check_non_private
= "lastprivate";
6174 case OMP_CLAUSE_REDUCTION
:
6175 flags
= GOVD_REDUCTION
| GOVD_SEEN
| GOVD_EXPLICIT
;
6176 check_non_private
= "reduction";
6180 decl
= OMP_CLAUSE_DECL (c
);
6181 if (error_operand_p (decl
))
6186 omp_add_variable (ctx
, decl
, flags
);
6187 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
6188 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
6190 omp_add_variable (ctx
, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
),
6191 GOVD_LOCAL
| GOVD_SEEN
);
6192 gimplify_omp_ctxp
= ctx
;
6193 push_gimplify_context (&gctx
);
6195 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
6196 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
6198 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c
),
6199 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
));
6200 pop_gimplify_context
6201 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
)));
6202 push_gimplify_context (&gctx
);
6203 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c
),
6204 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
));
6205 pop_gimplify_context
6206 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
)));
6207 OMP_CLAUSE_REDUCTION_INIT (c
) = NULL_TREE
;
6208 OMP_CLAUSE_REDUCTION_MERGE (c
) = NULL_TREE
;
6210 gimplify_omp_ctxp
= outer_ctx
;
6212 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6213 && OMP_CLAUSE_LASTPRIVATE_STMT (c
))
6215 gimplify_omp_ctxp
= ctx
;
6216 push_gimplify_context (&gctx
);
6217 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c
)) != BIND_EXPR
)
6219 tree bind
= build3 (BIND_EXPR
, void_type_node
, NULL
,
6221 TREE_SIDE_EFFECTS (bind
) = 1;
6222 BIND_EXPR_BODY (bind
) = OMP_CLAUSE_LASTPRIVATE_STMT (c
);
6223 OMP_CLAUSE_LASTPRIVATE_STMT (c
) = bind
;
6225 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c
),
6226 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
));
6227 pop_gimplify_context
6228 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
)));
6229 OMP_CLAUSE_LASTPRIVATE_STMT (c
) = NULL_TREE
;
6231 gimplify_omp_ctxp
= outer_ctx
;
6237 case OMP_CLAUSE_COPYIN
:
6238 case OMP_CLAUSE_COPYPRIVATE
:
6239 decl
= OMP_CLAUSE_DECL (c
);
6240 if (error_operand_p (decl
))
6247 omp_notice_variable (outer_ctx
, decl
, true);
6248 if (check_non_private
6249 && region_type
== ORT_WORKSHARE
6250 && omp_check_private (ctx
, decl
))
6252 error ("%s variable %qE is private in outer context",
6253 check_non_private
, DECL_NAME (decl
));
6258 case OMP_CLAUSE_FINAL
:
6260 OMP_CLAUSE_OPERAND (c
, 0)
6261 = gimple_boolify (OMP_CLAUSE_OPERAND (c
, 0));
6264 case OMP_CLAUSE_SCHEDULE
:
6265 case OMP_CLAUSE_NUM_THREADS
:
6266 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c
, 0), pre_p
, NULL
,
6267 is_gimple_val
, fb_rvalue
) == GS_ERROR
)
6271 case OMP_CLAUSE_NOWAIT
:
6272 case OMP_CLAUSE_ORDERED
:
6273 case OMP_CLAUSE_UNTIED
:
6274 case OMP_CLAUSE_COLLAPSE
:
6275 case OMP_CLAUSE_MERGEABLE
:
6278 case OMP_CLAUSE_DEFAULT
:
6279 ctx
->default_kind
= OMP_CLAUSE_DEFAULT_KIND (c
);
6287 *list_p
= OMP_CLAUSE_CHAIN (c
);
6289 list_p
= &OMP_CLAUSE_CHAIN (c
);
6292 gimplify_omp_ctxp
= ctx
;
6295 /* For all variables that were not actually used within the context,
6296 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6299 gimplify_adjust_omp_clauses_1 (splay_tree_node n
, void *data
)
6301 tree
*list_p
= (tree
*) data
;
6302 tree decl
= (tree
) n
->key
;
6303 unsigned flags
= n
->value
;
6304 enum omp_clause_code code
;
6308 if (flags
& (GOVD_EXPLICIT
| GOVD_LOCAL
))
6310 if ((flags
& GOVD_SEEN
) == 0)
6312 if (flags
& GOVD_DEBUG_PRIVATE
)
6314 gcc_assert ((flags
& GOVD_DATA_SHARE_CLASS
) == GOVD_PRIVATE
);
6315 private_debug
= true;
6319 = lang_hooks
.decls
.omp_private_debug_clause (decl
,
6320 !!(flags
& GOVD_SHARED
));
6322 code
= OMP_CLAUSE_PRIVATE
;
6323 else if (flags
& GOVD_SHARED
)
6325 if (is_global_var (decl
))
6327 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
->outer_context
;
6331 = splay_tree_lookup (ctx
->variables
, (splay_tree_key
) decl
);
6332 if (on
&& (on
->value
& (GOVD_FIRSTPRIVATE
| GOVD_LASTPRIVATE
6333 | GOVD_PRIVATE
| GOVD_REDUCTION
)) != 0)
6335 ctx
= ctx
->outer_context
;
6340 code
= OMP_CLAUSE_SHARED
;
6342 else if (flags
& GOVD_PRIVATE
)
6343 code
= OMP_CLAUSE_PRIVATE
;
6344 else if (flags
& GOVD_FIRSTPRIVATE
)
6345 code
= OMP_CLAUSE_FIRSTPRIVATE
;
6349 clause
= build_omp_clause (input_location
, code
);
6350 OMP_CLAUSE_DECL (clause
) = decl
;
6351 OMP_CLAUSE_CHAIN (clause
) = *list_p
;
6353 OMP_CLAUSE_PRIVATE_DEBUG (clause
) = 1;
6354 else if (code
== OMP_CLAUSE_PRIVATE
&& (flags
& GOVD_PRIVATE_OUTER_REF
))
6355 OMP_CLAUSE_PRIVATE_OUTER_REF (clause
) = 1;
6357 lang_hooks
.decls
.omp_finish_clause (clause
);
6363 gimplify_adjust_omp_clauses (tree
*list_p
)
6365 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
;
6368 while ((c
= *list_p
) != NULL
)
6371 bool remove
= false;
6373 switch (OMP_CLAUSE_CODE (c
))
6375 case OMP_CLAUSE_PRIVATE
:
6376 case OMP_CLAUSE_SHARED
:
6377 case OMP_CLAUSE_FIRSTPRIVATE
:
6378 decl
= OMP_CLAUSE_DECL (c
);
6379 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
) decl
);
6380 remove
= !(n
->value
& GOVD_SEEN
);
6383 bool shared
= OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_SHARED
;
6384 if ((n
->value
& GOVD_DEBUG_PRIVATE
)
6385 || lang_hooks
.decls
.omp_private_debug_clause (decl
, shared
))
6387 gcc_assert ((n
->value
& GOVD_DEBUG_PRIVATE
) == 0
6388 || ((n
->value
& GOVD_DATA_SHARE_CLASS
)
6390 OMP_CLAUSE_SET_CODE (c
, OMP_CLAUSE_PRIVATE
);
6391 OMP_CLAUSE_PRIVATE_DEBUG (c
) = 1;
6396 case OMP_CLAUSE_LASTPRIVATE
:
6397 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6398 accurately reflect the presence of a FIRSTPRIVATE clause. */
6399 decl
= OMP_CLAUSE_DECL (c
);
6400 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
) decl
);
6401 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c
)
6402 = (n
->value
& GOVD_FIRSTPRIVATE
) != 0;
6405 case OMP_CLAUSE_REDUCTION
:
6406 case OMP_CLAUSE_COPYIN
:
6407 case OMP_CLAUSE_COPYPRIVATE
:
6409 case OMP_CLAUSE_NUM_THREADS
:
6410 case OMP_CLAUSE_SCHEDULE
:
6411 case OMP_CLAUSE_NOWAIT
:
6412 case OMP_CLAUSE_ORDERED
:
6413 case OMP_CLAUSE_DEFAULT
:
6414 case OMP_CLAUSE_UNTIED
:
6415 case OMP_CLAUSE_COLLAPSE
:
6416 case OMP_CLAUSE_FINAL
:
6417 case OMP_CLAUSE_MERGEABLE
:
6425 *list_p
= OMP_CLAUSE_CHAIN (c
);
6427 list_p
= &OMP_CLAUSE_CHAIN (c
);
6430 /* Add in any implicit data sharing. */
6431 splay_tree_foreach (ctx
->variables
, gimplify_adjust_omp_clauses_1
, list_p
);
6433 gimplify_omp_ctxp
= ctx
->outer_context
;
6434 delete_omp_context (ctx
);
6437 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6438 gimplification of the body, as well as scanning the body for used
6439 variables. We need to do this scan now, because variable-sized
6440 decls will be decomposed during gimplification. */
6443 gimplify_omp_parallel (tree
*expr_p
, gimple_seq
*pre_p
)
6445 tree expr
= *expr_p
;
6447 gimple_seq body
= NULL
;
6448 struct gimplify_ctx gctx
;
6450 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr
), pre_p
,
6451 OMP_PARALLEL_COMBINED (expr
)
6452 ? ORT_COMBINED_PARALLEL
6455 push_gimplify_context (&gctx
);
6457 g
= gimplify_and_return_first (OMP_PARALLEL_BODY (expr
), &body
);
6458 if (gimple_code (g
) == GIMPLE_BIND
)
6459 pop_gimplify_context (g
);
6461 pop_gimplify_context (NULL
);
6463 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr
));
6465 g
= gimple_build_omp_parallel (body
,
6466 OMP_PARALLEL_CLAUSES (expr
),
6467 NULL_TREE
, NULL_TREE
);
6468 if (OMP_PARALLEL_COMBINED (expr
))
6469 gimple_omp_set_subcode (g
, GF_OMP_PARALLEL_COMBINED
);
6470 gimplify_seq_add_stmt (pre_p
, g
);
6471 *expr_p
= NULL_TREE
;
6474 /* Gimplify the contents of an OMP_TASK statement. This involves
6475 gimplification of the body, as well as scanning the body for used
6476 variables. We need to do this scan now, because variable-sized
6477 decls will be decomposed during gimplification. */
6480 gimplify_omp_task (tree
*expr_p
, gimple_seq
*pre_p
)
6482 tree expr
= *expr_p
;
6484 gimple_seq body
= NULL
;
6485 struct gimplify_ctx gctx
;
6487 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr
), pre_p
,
6488 find_omp_clause (OMP_TASK_CLAUSES (expr
),
6490 ? ORT_UNTIED_TASK
: ORT_TASK
);
6492 push_gimplify_context (&gctx
);
6494 g
= gimplify_and_return_first (OMP_TASK_BODY (expr
), &body
);
6495 if (gimple_code (g
) == GIMPLE_BIND
)
6496 pop_gimplify_context (g
);
6498 pop_gimplify_context (NULL
);
6500 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr
));
6502 g
= gimple_build_omp_task (body
,
6503 OMP_TASK_CLAUSES (expr
),
6504 NULL_TREE
, NULL_TREE
,
6505 NULL_TREE
, NULL_TREE
, NULL_TREE
);
6506 gimplify_seq_add_stmt (pre_p
, g
);
6507 *expr_p
= NULL_TREE
;
6510 /* Gimplify the gross structure of an OMP_FOR statement. */
6512 static enum gimplify_status
6513 gimplify_omp_for (tree
*expr_p
, gimple_seq
*pre_p
)
6515 tree for_stmt
, decl
, var
, t
;
6516 enum gimplify_status ret
= GS_ALL_DONE
;
6517 enum gimplify_status tret
;
6519 gimple_seq for_body
, for_pre_body
;
6524 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt
), pre_p
,
6527 /* Handle OMP_FOR_INIT. */
6528 for_pre_body
= NULL
;
6529 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt
), &for_pre_body
);
6530 OMP_FOR_PRE_BODY (for_stmt
) = NULL_TREE
;
6533 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
))
6534 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt
)));
6535 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
))
6536 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt
)));
6537 for (i
= 0; i
< TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
)); i
++)
6539 t
= TREE_VEC_ELT (OMP_FOR_INIT (for_stmt
), i
);
6540 gcc_assert (TREE_CODE (t
) == MODIFY_EXPR
);
6541 decl
= TREE_OPERAND (t
, 0);
6542 gcc_assert (DECL_P (decl
));
6543 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl
))
6544 || POINTER_TYPE_P (TREE_TYPE (decl
)));
6546 /* Make sure the iteration variable is private. */
6547 if (omp_is_private (gimplify_omp_ctxp
, decl
))
6548 omp_notice_variable (gimplify_omp_ctxp
, decl
, true);
6550 omp_add_variable (gimplify_omp_ctxp
, decl
, GOVD_PRIVATE
| GOVD_SEEN
);
6552 /* If DECL is not a gimple register, create a temporary variable to act
6553 as an iteration counter. This is valid, since DECL cannot be
6554 modified in the body of the loop. */
6555 if (!is_gimple_reg (decl
))
6557 var
= create_tmp_var (TREE_TYPE (decl
), get_name (decl
));
6558 TREE_OPERAND (t
, 0) = var
;
6560 gimplify_seq_add_stmt (&for_body
, gimple_build_assign (decl
, var
));
6562 omp_add_variable (gimplify_omp_ctxp
, var
, GOVD_PRIVATE
| GOVD_SEEN
);
6567 tret
= gimplify_expr (&TREE_OPERAND (t
, 1), &for_pre_body
, NULL
,
6568 is_gimple_val
, fb_rvalue
);
6569 ret
= MIN (ret
, tret
);
6570 if (ret
== GS_ERROR
)
6573 /* Handle OMP_FOR_COND. */
6574 t
= TREE_VEC_ELT (OMP_FOR_COND (for_stmt
), i
);
6575 gcc_assert (COMPARISON_CLASS_P (t
));
6576 gcc_assert (TREE_OPERAND (t
, 0) == decl
);
6578 tret
= gimplify_expr (&TREE_OPERAND (t
, 1), &for_pre_body
, NULL
,
6579 is_gimple_val
, fb_rvalue
);
6580 ret
= MIN (ret
, tret
);
6582 /* Handle OMP_FOR_INCR. */
6583 t
= TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
);
6584 switch (TREE_CODE (t
))
6586 case PREINCREMENT_EXPR
:
6587 case POSTINCREMENT_EXPR
:
6588 t
= build_int_cst (TREE_TYPE (decl
), 1);
6589 t
= build2 (PLUS_EXPR
, TREE_TYPE (decl
), var
, t
);
6590 t
= build2 (MODIFY_EXPR
, TREE_TYPE (var
), var
, t
);
6591 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
) = t
;
6594 case PREDECREMENT_EXPR
:
6595 case POSTDECREMENT_EXPR
:
6596 t
= build_int_cst (TREE_TYPE (decl
), -1);
6597 t
= build2 (PLUS_EXPR
, TREE_TYPE (decl
), var
, t
);
6598 t
= build2 (MODIFY_EXPR
, TREE_TYPE (var
), var
, t
);
6599 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
) = t
;
6603 gcc_assert (TREE_OPERAND (t
, 0) == decl
);
6604 TREE_OPERAND (t
, 0) = var
;
6606 t
= TREE_OPERAND (t
, 1);
6607 switch (TREE_CODE (t
))
6610 if (TREE_OPERAND (t
, 1) == decl
)
6612 TREE_OPERAND (t
, 1) = TREE_OPERAND (t
, 0);
6613 TREE_OPERAND (t
, 0) = var
;
6619 case POINTER_PLUS_EXPR
:
6620 gcc_assert (TREE_OPERAND (t
, 0) == decl
);
6621 TREE_OPERAND (t
, 0) = var
;
6627 tret
= gimplify_expr (&TREE_OPERAND (t
, 1), &for_pre_body
, NULL
,
6628 is_gimple_val
, fb_rvalue
);
6629 ret
= MIN (ret
, tret
);
6636 if (var
!= decl
|| TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
)) > 1)
6639 for (c
= OMP_FOR_CLAUSES (for_stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
6640 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6641 && OMP_CLAUSE_DECL (c
) == decl
6642 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
) == NULL
)
6644 t
= TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
);
6645 gcc_assert (TREE_CODE (t
) == MODIFY_EXPR
);
6646 gcc_assert (TREE_OPERAND (t
, 0) == var
);
6647 t
= TREE_OPERAND (t
, 1);
6648 gcc_assert (TREE_CODE (t
) == PLUS_EXPR
6649 || TREE_CODE (t
) == MINUS_EXPR
6650 || TREE_CODE (t
) == POINTER_PLUS_EXPR
);
6651 gcc_assert (TREE_OPERAND (t
, 0) == var
);
6652 t
= build2 (TREE_CODE (t
), TREE_TYPE (decl
), decl
,
6653 TREE_OPERAND (t
, 1));
6654 gimplify_assign (decl
, t
,
6655 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
));
6660 gimplify_and_add (OMP_FOR_BODY (for_stmt
), &for_body
);
6662 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt
));
6664 gfor
= gimple_build_omp_for (for_body
, OMP_FOR_CLAUSES (for_stmt
),
6665 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
)),
6668 for (i
= 0; i
< TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
)); i
++)
6670 t
= TREE_VEC_ELT (OMP_FOR_INIT (for_stmt
), i
);
6671 gimple_omp_for_set_index (gfor
, i
, TREE_OPERAND (t
, 0));
6672 gimple_omp_for_set_initial (gfor
, i
, TREE_OPERAND (t
, 1));
6673 t
= TREE_VEC_ELT (OMP_FOR_COND (for_stmt
), i
);
6674 gimple_omp_for_set_cond (gfor
, i
, TREE_CODE (t
));
6675 gimple_omp_for_set_final (gfor
, i
, TREE_OPERAND (t
, 1));
6676 t
= TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
);
6677 gimple_omp_for_set_incr (gfor
, i
, TREE_OPERAND (t
, 1));
6680 gimplify_seq_add_stmt (pre_p
, gfor
);
6681 return ret
== GS_ALL_DONE
? GS_ALL_DONE
: GS_ERROR
;
6684 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6685 In particular, OMP_SECTIONS and OMP_SINGLE. */
6688 gimplify_omp_workshare (tree
*expr_p
, gimple_seq
*pre_p
)
6690 tree expr
= *expr_p
;
6692 gimple_seq body
= NULL
;
6694 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr
), pre_p
, ORT_WORKSHARE
);
6695 gimplify_and_add (OMP_BODY (expr
), &body
);
6696 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr
));
6698 if (TREE_CODE (expr
) == OMP_SECTIONS
)
6699 stmt
= gimple_build_omp_sections (body
, OMP_CLAUSES (expr
));
6700 else if (TREE_CODE (expr
) == OMP_SINGLE
)
6701 stmt
= gimple_build_omp_single (body
, OMP_CLAUSES (expr
));
6705 gimplify_seq_add_stmt (pre_p
, stmt
);
6708 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6709 stabilized the lhs of the atomic operation as *ADDR. Return true if
6710 EXPR is this stabilized form. */
6713 goa_lhs_expr_p (tree expr
, tree addr
)
6715 /* Also include casts to other type variants. The C front end is fond
6716 of adding these for e.g. volatile variables. This is like
6717 STRIP_TYPE_NOPS but includes the main variant lookup. */
6718 STRIP_USELESS_TYPE_CONVERSION (expr
);
6720 if (TREE_CODE (expr
) == INDIRECT_REF
)
6722 expr
= TREE_OPERAND (expr
, 0);
6724 && (CONVERT_EXPR_P (expr
)
6725 || TREE_CODE (expr
) == NON_LVALUE_EXPR
)
6726 && TREE_CODE (expr
) == TREE_CODE (addr
)
6727 && types_compatible_p (TREE_TYPE (expr
), TREE_TYPE (addr
)))
6729 expr
= TREE_OPERAND (expr
, 0);
6730 addr
= TREE_OPERAND (addr
, 0);
6734 return (TREE_CODE (addr
) == ADDR_EXPR
6735 && TREE_CODE (expr
) == ADDR_EXPR
6736 && TREE_OPERAND (addr
, 0) == TREE_OPERAND (expr
, 0));
6738 if (TREE_CODE (addr
) == ADDR_EXPR
&& expr
== TREE_OPERAND (addr
, 0))
6743 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6744 expression does not involve the lhs, evaluate it into a temporary.
6745 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6746 or -1 if an error was encountered. */
6749 goa_stabilize_expr (tree
*expr_p
, gimple_seq
*pre_p
, tree lhs_addr
,
6752 tree expr
= *expr_p
;
6755 if (goa_lhs_expr_p (expr
, lhs_addr
))
6760 if (is_gimple_val (expr
))
6764 switch (TREE_CODE_CLASS (TREE_CODE (expr
)))
6767 case tcc_comparison
:
6768 saw_lhs
|= goa_stabilize_expr (&TREE_OPERAND (expr
, 1), pre_p
, lhs_addr
,
6771 saw_lhs
|= goa_stabilize_expr (&TREE_OPERAND (expr
, 0), pre_p
, lhs_addr
,
6774 case tcc_expression
:
6775 switch (TREE_CODE (expr
))
6777 case TRUTH_ANDIF_EXPR
:
6778 case TRUTH_ORIF_EXPR
:
6779 case TRUTH_AND_EXPR
:
6781 case TRUTH_XOR_EXPR
:
6782 saw_lhs
|= goa_stabilize_expr (&TREE_OPERAND (expr
, 1), pre_p
,
6784 case TRUTH_NOT_EXPR
:
6785 saw_lhs
|= goa_stabilize_expr (&TREE_OPERAND (expr
, 0), pre_p
,
6789 /* Break out any preevaluations from cp_build_modify_expr. */
6790 for (; TREE_CODE (expr
) == COMPOUND_EXPR
;
6791 expr
= TREE_OPERAND (expr
, 1))
6792 gimplify_stmt (&TREE_OPERAND (expr
, 0), pre_p
);
6794 return goa_stabilize_expr (expr_p
, pre_p
, lhs_addr
, lhs_var
);
6805 enum gimplify_status gs
;
6806 gs
= gimplify_expr (expr_p
, pre_p
, NULL
, is_gimple_val
, fb_rvalue
);
6807 if (gs
!= GS_ALL_DONE
)
6814 /* Gimplify an OMP_ATOMIC statement. */
6816 static enum gimplify_status
6817 gimplify_omp_atomic (tree
*expr_p
, gimple_seq
*pre_p
)
6819 tree addr
= TREE_OPERAND (*expr_p
, 0);
6820 tree rhs
= TREE_CODE (*expr_p
) == OMP_ATOMIC_READ
6821 ? NULL
: TREE_OPERAND (*expr_p
, 1);
6822 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr
)));
6824 gimple loadstmt
, storestmt
;
6826 tmp_load
= create_tmp_reg (type
, NULL
);
6827 if (rhs
&& goa_stabilize_expr (&rhs
, pre_p
, addr
, tmp_load
) < 0)
6830 if (gimplify_expr (&addr
, pre_p
, NULL
, is_gimple_val
, fb_rvalue
)
6834 loadstmt
= gimple_build_omp_atomic_load (tmp_load
, addr
);
6835 gimplify_seq_add_stmt (pre_p
, loadstmt
);
6836 if (rhs
&& gimplify_expr (&rhs
, pre_p
, NULL
, is_gimple_val
, fb_rvalue
)
6840 if (TREE_CODE (*expr_p
) == OMP_ATOMIC_READ
)
6842 storestmt
= gimple_build_omp_atomic_store (rhs
);
6843 gimplify_seq_add_stmt (pre_p
, storestmt
);
6844 switch (TREE_CODE (*expr_p
))
6846 case OMP_ATOMIC_READ
:
6847 case OMP_ATOMIC_CAPTURE_OLD
:
6849 gimple_omp_atomic_set_need_value (loadstmt
);
6851 case OMP_ATOMIC_CAPTURE_NEW
:
6853 gimple_omp_atomic_set_need_value (storestmt
);
6863 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6864 body, and adding some EH bits. */
6866 static enum gimplify_status
6867 gimplify_transaction (tree
*expr_p
, gimple_seq
*pre_p
)
6869 tree expr
= *expr_p
, temp
, tbody
= TRANSACTION_EXPR_BODY (expr
);
6871 gimple_seq body
= NULL
;
6872 struct gimplify_ctx gctx
;
6875 /* Wrap the transaction body in a BIND_EXPR so we have a context
6876 where to put decls for OpenMP. */
6877 if (TREE_CODE (tbody
) != BIND_EXPR
)
6879 tree bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, tbody
, NULL
);
6880 TREE_SIDE_EFFECTS (bind
) = 1;
6881 SET_EXPR_LOCATION (bind
, EXPR_LOCATION (tbody
));
6882 TRANSACTION_EXPR_BODY (expr
) = bind
;
6885 push_gimplify_context (&gctx
);
6886 temp
= voidify_wrapper_expr (*expr_p
, NULL
);
6888 g
= gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr
), &body
);
6889 pop_gimplify_context (g
);
6891 g
= gimple_build_transaction (body
, NULL
);
6892 if (TRANSACTION_EXPR_OUTER (expr
))
6893 subcode
= GTMA_IS_OUTER
;
6894 else if (TRANSACTION_EXPR_RELAXED (expr
))
6895 subcode
= GTMA_IS_RELAXED
;
6896 gimple_transaction_set_subcode (g
, subcode
);
6898 gimplify_seq_add_stmt (pre_p
, g
);
6906 *expr_p
= NULL_TREE
;
6910 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6911 expression produces a value to be used as an operand inside a GIMPLE
6912 statement, the value will be stored back in *EXPR_P. This value will
6913 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6914 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6915 emitted in PRE_P and POST_P.
6917 Additionally, this process may overwrite parts of the input
6918 expression during gimplification. Ideally, it should be
6919 possible to do non-destructive gimplification.
6921 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6922 the expression needs to evaluate to a value to be used as
6923 an operand in a GIMPLE statement, this value will be stored in
6924 *EXPR_P on exit. This happens when the caller specifies one
6925 of fb_lvalue or fb_rvalue fallback flags.
6927 PRE_P will contain the sequence of GIMPLE statements corresponding
6928 to the evaluation of EXPR and all the side-effects that must
6929 be executed before the main expression. On exit, the last
6930 statement of PRE_P is the core statement being gimplified. For
6931 instance, when gimplifying 'if (++a)' the last statement in
6932 PRE_P will be 'if (t.1)' where t.1 is the result of
6933 pre-incrementing 'a'.
6935 POST_P will contain the sequence of GIMPLE statements corresponding
6936 to the evaluation of all the side-effects that must be executed
6937 after the main expression. If this is NULL, the post
6938 side-effects are stored at the end of PRE_P.
6940 The reason why the output is split in two is to handle post
6941 side-effects explicitly. In some cases, an expression may have
6942 inner and outer post side-effects which need to be emitted in
6943 an order different from the one given by the recursive
6944 traversal. For instance, for the expression (*p--)++ the post
6945 side-effects of '--' must actually occur *after* the post
6946 side-effects of '++'. However, gimplification will first visit
6947 the inner expression, so if a separate POST sequence was not
6948 used, the resulting sequence would be:
6955 However, the post-decrement operation in line #2 must not be
6956 evaluated until after the store to *p at line #4, so the
6957 correct sequence should be:
6964 So, by specifying a separate post queue, it is possible
6965 to emit the post side-effects in the correct order.
6966 If POST_P is NULL, an internal queue will be used. Before
6967 returning to the caller, the sequence POST_P is appended to
6968 the main output sequence PRE_P.
6970 GIMPLE_TEST_F points to a function that takes a tree T and
6971 returns nonzero if T is in the GIMPLE form requested by the
6972 caller. The GIMPLE predicates are in gimple.c.
6974 FALLBACK tells the function what sort of a temporary we want if
6975 gimplification cannot produce an expression that complies with
6978 fb_none means that no temporary should be generated
6979 fb_rvalue means that an rvalue is OK to generate
6980 fb_lvalue means that an lvalue is OK to generate
6981 fb_either means that either is OK, but an lvalue is preferable.
6982 fb_mayfail means that gimplification may fail (in which case
6983 GS_ERROR will be returned)
6985 The return value is either GS_ERROR or GS_ALL_DONE, since this
6986 function iterates until EXPR is completely gimplified or an error
6989 enum gimplify_status
6990 gimplify_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
6991 bool (*gimple_test_f
) (tree
), fallback_t fallback
)
6994 gimple_seq internal_pre
= NULL
;
6995 gimple_seq internal_post
= NULL
;
6998 location_t saved_location
;
6999 enum gimplify_status ret
;
7000 gimple_stmt_iterator pre_last_gsi
, post_last_gsi
;
7002 save_expr
= *expr_p
;
7003 if (save_expr
== NULL_TREE
)
7006 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
7007 is_statement
= gimple_test_f
== is_gimple_stmt
;
7011 /* Consistency checks. */
7012 if (gimple_test_f
== is_gimple_reg
)
7013 gcc_assert (fallback
& (fb_rvalue
| fb_lvalue
));
7014 else if (gimple_test_f
== is_gimple_val
7015 || gimple_test_f
== is_gimple_call_addr
7016 || gimple_test_f
== is_gimple_condexpr
7017 || gimple_test_f
== is_gimple_mem_rhs
7018 || gimple_test_f
== is_gimple_mem_rhs_or_call
7019 || gimple_test_f
== is_gimple_reg_rhs
7020 || gimple_test_f
== is_gimple_reg_rhs_or_call
7021 || gimple_test_f
== is_gimple_asm_val
7022 || gimple_test_f
== is_gimple_mem_ref_addr
)
7023 gcc_assert (fallback
& fb_rvalue
);
7024 else if (gimple_test_f
== is_gimple_min_lval
7025 || gimple_test_f
== is_gimple_lvalue
)
7026 gcc_assert (fallback
& fb_lvalue
);
7027 else if (gimple_test_f
== is_gimple_addressable
)
7028 gcc_assert (fallback
& fb_either
);
7029 else if (gimple_test_f
== is_gimple_stmt
)
7030 gcc_assert (fallback
== fb_none
);
7033 /* We should have recognized the GIMPLE_TEST_F predicate to
7034 know what kind of fallback to use in case a temporary is
7035 needed to hold the value or address of *EXPR_P. */
7039 /* We used to check the predicate here and return immediately if it
7040 succeeds. This is wrong; the design is for gimplification to be
7041 idempotent, and for the predicates to only test for valid forms, not
7042 whether they are fully simplified. */
7044 pre_p
= &internal_pre
;
7047 post_p
= &internal_post
;
7049 /* Remember the last statements added to PRE_P and POST_P. Every
7050 new statement added by the gimplification helpers needs to be
7051 annotated with location information. To centralize the
7052 responsibility, we remember the last statement that had been
7053 added to both queues before gimplifying *EXPR_P. If
7054 gimplification produces new statements in PRE_P and POST_P, those
7055 statements will be annotated with the same location information
7057 pre_last_gsi
= gsi_last (*pre_p
);
7058 post_last_gsi
= gsi_last (*post_p
);
7060 saved_location
= input_location
;
7061 if (save_expr
!= error_mark_node
7062 && EXPR_HAS_LOCATION (*expr_p
))
7063 input_location
= EXPR_LOCATION (*expr_p
);
7065 /* Loop over the specific gimplifiers until the toplevel node
7066 remains the same. */
7069 /* Strip away as many useless type conversions as possible
7071 STRIP_USELESS_TYPE_CONVERSION (*expr_p
);
7073 /* Remember the expr. */
7074 save_expr
= *expr_p
;
7076 /* Die, die, die, my darling. */
7077 if (save_expr
== error_mark_node
7078 || (TREE_TYPE (save_expr
)
7079 && TREE_TYPE (save_expr
) == error_mark_node
))
7085 /* Do any language-specific gimplification. */
7086 ret
= ((enum gimplify_status
)
7087 lang_hooks
.gimplify_expr (expr_p
, pre_p
, post_p
));
7090 if (*expr_p
== NULL_TREE
)
7092 if (*expr_p
!= save_expr
)
7095 else if (ret
!= GS_UNHANDLED
)
7098 /* Make sure that all the cases set 'ret' appropriately. */
7100 switch (TREE_CODE (*expr_p
))
7102 /* First deal with the special cases. */
7104 case POSTINCREMENT_EXPR
:
7105 case POSTDECREMENT_EXPR
:
7106 case PREINCREMENT_EXPR
:
7107 case PREDECREMENT_EXPR
:
7108 ret
= gimplify_self_mod_expr (expr_p
, pre_p
, post_p
,
7109 fallback
!= fb_none
);
7113 case ARRAY_RANGE_REF
:
7117 case VIEW_CONVERT_EXPR
:
7118 ret
= gimplify_compound_lval (expr_p
, pre_p
, post_p
,
7119 fallback
? fallback
: fb_rvalue
);
7123 ret
= gimplify_cond_expr (expr_p
, pre_p
, fallback
);
7125 /* C99 code may assign to an array in a structure value of a
7126 conditional expression, and this has undefined behavior
7127 only on execution, so create a temporary if an lvalue is
7129 if (fallback
== fb_lvalue
)
7131 *expr_p
= get_initialized_tmp_var (*expr_p
, pre_p
, post_p
);
7132 mark_addressable (*expr_p
);
7138 ret
= gimplify_call_expr (expr_p
, pre_p
, fallback
!= fb_none
);
7140 /* C99 code may assign to an array in a structure returned
7141 from a function, and this has undefined behavior only on
7142 execution, so create a temporary if an lvalue is
7144 if (fallback
== fb_lvalue
)
7146 *expr_p
= get_initialized_tmp_var (*expr_p
, pre_p
, post_p
);
7147 mark_addressable (*expr_p
);
7156 ret
= gimplify_compound_expr (expr_p
, pre_p
, fallback
!= fb_none
);
7159 case COMPOUND_LITERAL_EXPR
:
7160 ret
= gimplify_compound_literal_expr (expr_p
, pre_p
,
7161 gimple_test_f
, fallback
);
7166 ret
= gimplify_modify_expr (expr_p
, pre_p
, post_p
,
7167 fallback
!= fb_none
);
7170 case TRUTH_ANDIF_EXPR
:
7171 case TRUTH_ORIF_EXPR
:
7173 /* Preserve the original type of the expression and the
7174 source location of the outer expression. */
7175 tree org_type
= TREE_TYPE (*expr_p
);
7176 *expr_p
= gimple_boolify (*expr_p
);
7177 *expr_p
= build3_loc (input_location
, COND_EXPR
,
7181 org_type
, boolean_true_node
),
7184 org_type
, boolean_false_node
));
7189 case TRUTH_NOT_EXPR
:
7191 tree type
= TREE_TYPE (*expr_p
);
7192 /* The parsers are careful to generate TRUTH_NOT_EXPR
7193 only with operands that are always zero or one.
7194 We do not fold here but handle the only interesting case
7195 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
7196 *expr_p
= gimple_boolify (*expr_p
);
7197 if (TYPE_PRECISION (TREE_TYPE (*expr_p
)) == 1)
7198 *expr_p
= build1_loc (input_location
, BIT_NOT_EXPR
,
7199 TREE_TYPE (*expr_p
),
7200 TREE_OPERAND (*expr_p
, 0));
7202 *expr_p
= build2_loc (input_location
, BIT_XOR_EXPR
,
7203 TREE_TYPE (*expr_p
),
7204 TREE_OPERAND (*expr_p
, 0),
7205 build_int_cst (TREE_TYPE (*expr_p
), 1));
7206 if (!useless_type_conversion_p (type
, TREE_TYPE (*expr_p
)))
7207 *expr_p
= fold_convert_loc (input_location
, type
, *expr_p
);
7213 ret
= gimplify_addr_expr (expr_p
, pre_p
, post_p
);
7217 ret
= gimplify_va_arg_expr (expr_p
, pre_p
, post_p
);
7221 if (IS_EMPTY_STMT (*expr_p
))
7227 if (VOID_TYPE_P (TREE_TYPE (*expr_p
))
7228 || fallback
== fb_none
)
7230 /* Just strip a conversion to void (or in void context) and
7232 *expr_p
= TREE_OPERAND (*expr_p
, 0);
7237 ret
= gimplify_conversion (expr_p
);
7238 if (ret
== GS_ERROR
)
7240 if (*expr_p
!= save_expr
)
7244 case FIX_TRUNC_EXPR
:
7245 /* unary_expr: ... | '(' cast ')' val | ... */
7246 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7247 is_gimple_val
, fb_rvalue
);
7248 recalculate_side_effects (*expr_p
);
7253 bool volatilep
= TREE_THIS_VOLATILE (*expr_p
);
7254 bool notrap
= TREE_THIS_NOTRAP (*expr_p
);
7255 tree saved_ptr_type
= TREE_TYPE (TREE_OPERAND (*expr_p
, 0));
7257 *expr_p
= fold_indirect_ref_loc (input_location
, *expr_p
);
7258 if (*expr_p
!= save_expr
)
7264 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7265 is_gimple_reg
, fb_rvalue
);
7266 if (ret
== GS_ERROR
)
7269 recalculate_side_effects (*expr_p
);
7270 *expr_p
= fold_build2_loc (input_location
, MEM_REF
,
7271 TREE_TYPE (*expr_p
),
7272 TREE_OPERAND (*expr_p
, 0),
7273 build_int_cst (saved_ptr_type
, 0));
7274 TREE_THIS_VOLATILE (*expr_p
) = volatilep
;
7275 TREE_THIS_NOTRAP (*expr_p
) = notrap
;
7280 /* We arrive here through the various re-gimplifcation paths. */
7282 /* First try re-folding the whole thing. */
7283 tmp
= fold_binary (MEM_REF
, TREE_TYPE (*expr_p
),
7284 TREE_OPERAND (*expr_p
, 0),
7285 TREE_OPERAND (*expr_p
, 1));
7289 recalculate_side_effects (*expr_p
);
7293 /* Avoid re-gimplifying the address operand if it is already
7294 in suitable form. Re-gimplifying would mark the address
7295 operand addressable. Always gimplify when not in SSA form
7296 as we still may have to gimplify decls with value-exprs. */
7297 if (!gimplify_ctxp
|| !gimplify_ctxp
->into_ssa
7298 || !is_gimple_mem_ref_addr (TREE_OPERAND (*expr_p
, 0)))
7300 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7301 is_gimple_mem_ref_addr
, fb_rvalue
);
7302 if (ret
== GS_ERROR
)
7305 recalculate_side_effects (*expr_p
);
7309 /* Constants need not be gimplified. */
7320 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7321 CONST_DECL node. Otherwise the decl is replaceable by its
7323 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7324 if (fallback
& fb_lvalue
)
7328 *expr_p
= DECL_INITIAL (*expr_p
);
7334 ret
= gimplify_decl_expr (expr_p
, pre_p
);
7338 ret
= gimplify_bind_expr (expr_p
, pre_p
);
7342 ret
= gimplify_loop_expr (expr_p
, pre_p
);
7346 ret
= gimplify_switch_expr (expr_p
, pre_p
);
7350 ret
= gimplify_exit_expr (expr_p
);
7354 /* If the target is not LABEL, then it is a computed jump
7355 and the target needs to be gimplified. */
7356 if (TREE_CODE (GOTO_DESTINATION (*expr_p
)) != LABEL_DECL
)
7358 ret
= gimplify_expr (&GOTO_DESTINATION (*expr_p
), pre_p
,
7359 NULL
, is_gimple_val
, fb_rvalue
);
7360 if (ret
== GS_ERROR
)
7363 gimplify_seq_add_stmt (pre_p
,
7364 gimple_build_goto (GOTO_DESTINATION (*expr_p
)));
7369 gimplify_seq_add_stmt (pre_p
,
7370 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p
),
7371 PREDICT_EXPR_OUTCOME (*expr_p
)));
7377 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p
))
7378 == current_function_decl
);
7379 gimplify_seq_add_stmt (pre_p
,
7380 gimple_build_label (LABEL_EXPR_LABEL (*expr_p
)));
7383 case CASE_LABEL_EXPR
:
7384 ret
= gimplify_case_label_expr (expr_p
, pre_p
);
7388 ret
= gimplify_return_expr (*expr_p
, pre_p
);
7392 /* Don't reduce this in place; let gimplify_init_constructor work its
7393 magic. Buf if we're just elaborating this for side effects, just
7394 gimplify any element that has side-effects. */
7395 if (fallback
== fb_none
)
7397 unsigned HOST_WIDE_INT ix
;
7399 tree temp
= NULL_TREE
;
7400 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p
), ix
, val
)
7401 if (TREE_SIDE_EFFECTS (val
))
7402 append_to_statement_list (val
, &temp
);
7405 ret
= temp
? GS_OK
: GS_ALL_DONE
;
7407 /* C99 code may assign to an array in a constructed
7408 structure or union, and this has undefined behavior only
7409 on execution, so create a temporary if an lvalue is
7411 else if (fallback
== fb_lvalue
)
7413 *expr_p
= get_initialized_tmp_var (*expr_p
, pre_p
, post_p
);
7414 mark_addressable (*expr_p
);
7421 /* The following are special cases that are not handled by the
7422 original GIMPLE grammar. */
7424 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7427 ret
= gimplify_save_expr (expr_p
, pre_p
, post_p
);
7431 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7432 post_p
, is_gimple_lvalue
, fb_either
);
7433 recalculate_side_effects (*expr_p
);
7436 case TARGET_MEM_REF
:
7438 enum gimplify_status r0
= GS_ALL_DONE
, r1
= GS_ALL_DONE
;
7440 if (TMR_BASE (*expr_p
))
7441 r0
= gimplify_expr (&TMR_BASE (*expr_p
), pre_p
,
7442 post_p
, is_gimple_mem_ref_addr
, fb_either
);
7443 if (TMR_INDEX (*expr_p
))
7444 r1
= gimplify_expr (&TMR_INDEX (*expr_p
), pre_p
,
7445 post_p
, is_gimple_val
, fb_rvalue
);
7446 if (TMR_INDEX2 (*expr_p
))
7447 r1
= gimplify_expr (&TMR_INDEX2 (*expr_p
), pre_p
,
7448 post_p
, is_gimple_val
, fb_rvalue
);
7449 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7454 case NON_LVALUE_EXPR
:
7455 /* This should have been stripped above. */
7459 ret
= gimplify_asm_expr (expr_p
, pre_p
, post_p
);
7462 case TRY_FINALLY_EXPR
:
7463 case TRY_CATCH_EXPR
:
7465 gimple_seq eval
, cleanup
;
7468 /* Calls to destructors are generated automatically in FINALLY/CATCH
7469 block. They should have location as UNKNOWN_LOCATION. However,
7470 gimplify_call_expr will reset these call stmts to input_location
7471 if it finds stmt's location is unknown. To prevent resetting for
7472 destructors, we set the input_location to unknown.
7473 Note that this only affects the destructor calls in FINALLY/CATCH
7474 block, and will automatically reset to its original value by the
7475 end of gimplify_expr. */
7476 input_location
= UNKNOWN_LOCATION
;
7477 eval
= cleanup
= NULL
;
7478 gimplify_and_add (TREE_OPERAND (*expr_p
, 0), &eval
);
7479 gimplify_and_add (TREE_OPERAND (*expr_p
, 1), &cleanup
);
7480 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7481 if (gimple_seq_empty_p (cleanup
))
7483 gimple_seq_add_seq (pre_p
, eval
);
7487 try_
= gimple_build_try (eval
, cleanup
,
7488 TREE_CODE (*expr_p
) == TRY_FINALLY_EXPR
7489 ? GIMPLE_TRY_FINALLY
7490 : GIMPLE_TRY_CATCH
);
7491 if (LOCATION_LOCUS (saved_location
) != UNKNOWN_LOCATION
)
7492 gimple_set_location (try_
, saved_location
);
7494 gimple_set_location (try_
, EXPR_LOCATION (save_expr
));
7495 if (TREE_CODE (*expr_p
) == TRY_CATCH_EXPR
)
7496 gimple_try_set_catch_is_cleanup (try_
,
7497 TRY_CATCH_IS_CLEANUP (*expr_p
));
7498 gimplify_seq_add_stmt (pre_p
, try_
);
7503 case CLEANUP_POINT_EXPR
:
7504 ret
= gimplify_cleanup_point_expr (expr_p
, pre_p
);
7508 ret
= gimplify_target_expr (expr_p
, pre_p
, post_p
);
7514 gimple_seq handler
= NULL
;
7515 gimplify_and_add (CATCH_BODY (*expr_p
), &handler
);
7516 c
= gimple_build_catch (CATCH_TYPES (*expr_p
), handler
);
7517 gimplify_seq_add_stmt (pre_p
, c
);
7522 case EH_FILTER_EXPR
:
7525 gimple_seq failure
= NULL
;
7527 gimplify_and_add (EH_FILTER_FAILURE (*expr_p
), &failure
);
7528 ehf
= gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p
), failure
);
7529 gimple_set_no_warning (ehf
, TREE_NO_WARNING (*expr_p
));
7530 gimplify_seq_add_stmt (pre_p
, ehf
);
7537 enum gimplify_status r0
, r1
;
7538 r0
= gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p
), pre_p
,
7539 post_p
, is_gimple_val
, fb_rvalue
);
7540 r1
= gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p
), pre_p
,
7541 post_p
, is_gimple_val
, fb_rvalue
);
7542 TREE_SIDE_EFFECTS (*expr_p
) = 0;
7548 /* We get here when taking the address of a label. We mark
7549 the label as "forced"; meaning it can never be removed and
7550 it is a potential target for any computed goto. */
7551 FORCED_LABEL (*expr_p
) = 1;
7555 case STATEMENT_LIST
:
7556 ret
= gimplify_statement_list (expr_p
, pre_p
);
7559 case WITH_SIZE_EXPR
:
7561 gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7562 post_p
== &internal_post
? NULL
: post_p
,
7563 gimple_test_f
, fallback
);
7564 gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
, post_p
,
7565 is_gimple_val
, fb_rvalue
);
7572 ret
= gimplify_var_or_parm_decl (expr_p
);
7576 /* When within an OpenMP context, notice uses of variables. */
7577 if (gimplify_omp_ctxp
)
7578 omp_notice_variable (gimplify_omp_ctxp
, *expr_p
, true);
7583 /* Allow callbacks into the gimplifier during optimization. */
7588 gimplify_omp_parallel (expr_p
, pre_p
);
7593 gimplify_omp_task (expr_p
, pre_p
);
7598 ret
= gimplify_omp_for (expr_p
, pre_p
);
7603 gimplify_omp_workshare (expr_p
, pre_p
);
7612 gimple_seq body
= NULL
;
7615 gimplify_and_add (OMP_BODY (*expr_p
), &body
);
7616 switch (TREE_CODE (*expr_p
))
7619 g
= gimple_build_omp_section (body
);
7622 g
= gimple_build_omp_master (body
);
7625 g
= gimple_build_omp_ordered (body
);
7628 g
= gimple_build_omp_critical (body
,
7629 OMP_CRITICAL_NAME (*expr_p
));
7634 gimplify_seq_add_stmt (pre_p
, g
);
7640 case OMP_ATOMIC_READ
:
7641 case OMP_ATOMIC_CAPTURE_OLD
:
7642 case OMP_ATOMIC_CAPTURE_NEW
:
7643 ret
= gimplify_omp_atomic (expr_p
, pre_p
);
7646 case TRANSACTION_EXPR
:
7647 ret
= gimplify_transaction (expr_p
, pre_p
);
7650 case TRUTH_AND_EXPR
:
7652 case TRUTH_XOR_EXPR
:
7654 tree orig_type
= TREE_TYPE (*expr_p
);
7655 tree new_type
, xop0
, xop1
;
7656 *expr_p
= gimple_boolify (*expr_p
);
7657 new_type
= TREE_TYPE (*expr_p
);
7658 if (!useless_type_conversion_p (orig_type
, new_type
))
7660 *expr_p
= fold_convert_loc (input_location
, orig_type
, *expr_p
);
7665 /* Boolified binary truth expressions are semantically equivalent
7666 to bitwise binary expressions. Canonicalize them to the
7668 switch (TREE_CODE (*expr_p
))
7670 case TRUTH_AND_EXPR
:
7671 TREE_SET_CODE (*expr_p
, BIT_AND_EXPR
);
7674 TREE_SET_CODE (*expr_p
, BIT_IOR_EXPR
);
7676 case TRUTH_XOR_EXPR
:
7677 TREE_SET_CODE (*expr_p
, BIT_XOR_EXPR
);
7682 /* Now make sure that operands have compatible type to
7683 expression's new_type. */
7684 xop0
= TREE_OPERAND (*expr_p
, 0);
7685 xop1
= TREE_OPERAND (*expr_p
, 1);
7686 if (!useless_type_conversion_p (new_type
, TREE_TYPE (xop0
)))
7687 TREE_OPERAND (*expr_p
, 0) = fold_convert_loc (input_location
,
7690 if (!useless_type_conversion_p (new_type
, TREE_TYPE (xop1
)))
7691 TREE_OPERAND (*expr_p
, 1) = fold_convert_loc (input_location
,
7694 /* Continue classified as tcc_binary. */
7701 /* Classified as tcc_expression. */
7704 case POINTER_PLUS_EXPR
:
7706 enum gimplify_status r0
, r1
;
7707 r0
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7708 post_p
, is_gimple_val
, fb_rvalue
);
7709 r1
= gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
,
7710 post_p
, is_gimple_val
, fb_rvalue
);
7711 recalculate_side_effects (*expr_p
);
7713 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7714 after gimplifying operands - this is similar to how
7715 it would be folding all gimplified stmts on creation
7716 to have them canonicalized, which is what we eventually
7717 should do anyway. */
7718 if (TREE_CODE (TREE_OPERAND (*expr_p
, 1)) == INTEGER_CST
7719 && is_gimple_min_invariant (TREE_OPERAND (*expr_p
, 0)))
7721 *expr_p
= build_fold_addr_expr_with_type_loc
7723 fold_build2 (MEM_REF
, TREE_TYPE (TREE_TYPE (*expr_p
)),
7724 TREE_OPERAND (*expr_p
, 0),
7725 fold_convert (ptr_type_node
,
7726 TREE_OPERAND (*expr_p
, 1))),
7727 TREE_TYPE (*expr_p
));
7728 ret
= MIN (ret
, GS_OK
);
7734 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p
)))
7736 case tcc_comparison
:
7737 /* Handle comparison of objects of non scalar mode aggregates
7738 with a call to memcmp. It would be nice to only have to do
7739 this for variable-sized objects, but then we'd have to allow
7740 the same nest of reference nodes we allow for MODIFY_EXPR and
7743 Compare scalar mode aggregates as scalar mode values. Using
7744 memcmp for them would be very inefficient at best, and is
7745 plain wrong if bitfields are involved. */
7747 tree type
= TREE_TYPE (TREE_OPERAND (*expr_p
, 1));
7749 /* Vector comparisons need no boolification. */
7750 if (TREE_CODE (type
) == VECTOR_TYPE
)
7752 else if (!AGGREGATE_TYPE_P (type
))
7754 tree org_type
= TREE_TYPE (*expr_p
);
7755 *expr_p
= gimple_boolify (*expr_p
);
7756 if (!useless_type_conversion_p (org_type
,
7757 TREE_TYPE (*expr_p
)))
7759 *expr_p
= fold_convert_loc (input_location
,
7766 else if (TYPE_MODE (type
) != BLKmode
)
7767 ret
= gimplify_scalar_mode_aggregate_compare (expr_p
);
7769 ret
= gimplify_variable_sized_compare (expr_p
);
7774 /* If *EXPR_P does not need to be special-cased, handle it
7775 according to its class. */
7777 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7778 post_p
, is_gimple_val
, fb_rvalue
);
7784 enum gimplify_status r0
, r1
;
7786 r0
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7787 post_p
, is_gimple_val
, fb_rvalue
);
7788 r1
= gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
,
7789 post_p
, is_gimple_val
, fb_rvalue
);
7797 enum gimplify_status r0
, r1
, r2
;
7799 r0
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7800 post_p
, is_gimple_val
, fb_rvalue
);
7801 r1
= gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
,
7802 post_p
, is_gimple_val
, fb_rvalue
);
7803 r2
= gimplify_expr (&TREE_OPERAND (*expr_p
, 2), pre_p
,
7804 post_p
, is_gimple_val
, fb_rvalue
);
7806 ret
= MIN (MIN (r0
, r1
), r2
);
7810 case tcc_declaration
:
7813 goto dont_recalculate
;
7819 recalculate_side_effects (*expr_p
);
7825 gcc_assert (*expr_p
|| ret
!= GS_OK
);
7827 while (ret
== GS_OK
);
7829 /* If we encountered an error_mark somewhere nested inside, either
7830 stub out the statement or propagate the error back out. */
7831 if (ret
== GS_ERROR
)
7838 /* This was only valid as a return value from the langhook, which
7839 we handled. Make sure it doesn't escape from any other context. */
7840 gcc_assert (ret
!= GS_UNHANDLED
);
7842 if (fallback
== fb_none
&& *expr_p
&& !is_gimple_stmt (*expr_p
))
7844 /* We aren't looking for a value, and we don't have a valid
7845 statement. If it doesn't have side-effects, throw it away. */
7846 if (!TREE_SIDE_EFFECTS (*expr_p
))
7848 else if (!TREE_THIS_VOLATILE (*expr_p
))
7850 /* This is probably a _REF that contains something nested that
7851 has side effects. Recurse through the operands to find it. */
7852 enum tree_code code
= TREE_CODE (*expr_p
);
7859 case VIEW_CONVERT_EXPR
:
7860 gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7861 gimple_test_f
, fallback
);
7865 case ARRAY_RANGE_REF
:
7866 gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7867 gimple_test_f
, fallback
);
7868 gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
, post_p
,
7869 gimple_test_f
, fallback
);
7873 /* Anything else with side-effects must be converted to
7874 a valid statement before we get here. */
7880 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p
))
7881 && TYPE_MODE (TREE_TYPE (*expr_p
)) != BLKmode
)
7883 /* Historically, the compiler has treated a bare reference
7884 to a non-BLKmode volatile lvalue as forcing a load. */
7885 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p
));
7887 /* Normally, we do not want to create a temporary for a
7888 TREE_ADDRESSABLE type because such a type should not be
7889 copied by bitwise-assignment. However, we make an
7890 exception here, as all we are doing here is ensuring that
7891 we read the bytes that make up the type. We use
7892 create_tmp_var_raw because create_tmp_var will abort when
7893 given a TREE_ADDRESSABLE type. */
7894 tree tmp
= create_tmp_var_raw (type
, "vol");
7895 gimple_add_tmp_var (tmp
);
7896 gimplify_assign (tmp
, *expr_p
, pre_p
);
7900 /* We can't do anything useful with a volatile reference to
7901 an incomplete type, so just throw it away. Likewise for
7902 a BLKmode type, since any implicit inner load should
7903 already have been turned into an explicit one by the
7904 gimplification process. */
7908 /* If we are gimplifying at the statement level, we're done. Tack
7909 everything together and return. */
7910 if (fallback
== fb_none
|| is_statement
)
7912 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7913 it out for GC to reclaim it. */
7914 *expr_p
= NULL_TREE
;
7916 if (!gimple_seq_empty_p (internal_pre
)
7917 || !gimple_seq_empty_p (internal_post
))
7919 gimplify_seq_add_seq (&internal_pre
, internal_post
);
7920 gimplify_seq_add_seq (pre_p
, internal_pre
);
7923 /* The result of gimplifying *EXPR_P is going to be the last few
7924 statements in *PRE_P and *POST_P. Add location information
7925 to all the statements that were added by the gimplification
7927 if (!gimple_seq_empty_p (*pre_p
))
7928 annotate_all_with_location_after (*pre_p
, pre_last_gsi
, input_location
);
7930 if (!gimple_seq_empty_p (*post_p
))
7931 annotate_all_with_location_after (*post_p
, post_last_gsi
,
7937 #ifdef ENABLE_GIMPLE_CHECKING
7940 enum tree_code code
= TREE_CODE (*expr_p
);
7941 /* These expressions should already be in gimple IR form. */
7942 gcc_assert (code
!= MODIFY_EXPR
7944 && code
!= BIND_EXPR
7945 && code
!= CATCH_EXPR
7946 && (code
!= COND_EXPR
|| gimplify_ctxp
->allow_rhs_cond_expr
)
7947 && code
!= EH_FILTER_EXPR
7948 && code
!= GOTO_EXPR
7949 && code
!= LABEL_EXPR
7950 && code
!= LOOP_EXPR
7951 && code
!= SWITCH_EXPR
7952 && code
!= TRY_FINALLY_EXPR
7953 && code
!= OMP_CRITICAL
7955 && code
!= OMP_MASTER
7956 && code
!= OMP_ORDERED
7957 && code
!= OMP_PARALLEL
7958 && code
!= OMP_SECTIONS
7959 && code
!= OMP_SECTION
7960 && code
!= OMP_SINGLE
);
7964 /* Otherwise we're gimplifying a subexpression, so the resulting
7965 value is interesting. If it's a valid operand that matches
7966 GIMPLE_TEST_F, we're done. Unless we are handling some
7967 post-effects internally; if that's the case, we need to copy into
7968 a temporary before adding the post-effects to POST_P. */
7969 if (gimple_seq_empty_p (internal_post
) && (*gimple_test_f
) (*expr_p
))
7972 /* Otherwise, we need to create a new temporary for the gimplified
7975 /* We can't return an lvalue if we have an internal postqueue. The
7976 object the lvalue refers to would (probably) be modified by the
7977 postqueue; we need to copy the value out first, which means an
7979 if ((fallback
& fb_lvalue
)
7980 && gimple_seq_empty_p (internal_post
)
7981 && is_gimple_addressable (*expr_p
))
7983 /* An lvalue will do. Take the address of the expression, store it
7984 in a temporary, and replace the expression with an INDIRECT_REF of
7986 tmp
= build_fold_addr_expr_loc (input_location
, *expr_p
);
7987 gimplify_expr (&tmp
, pre_p
, post_p
, is_gimple_reg
, fb_rvalue
);
7988 *expr_p
= build_simple_mem_ref (tmp
);
7990 else if ((fallback
& fb_rvalue
) && is_gimple_reg_rhs_or_call (*expr_p
))
7992 /* An rvalue will do. Assign the gimplified expression into a
7993 new temporary TMP and replace the original expression with
7994 TMP. First, make sure that the expression has a type so that
7995 it can be assigned into a temporary. */
7996 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p
)));
7997 *expr_p
= get_formal_tmp_var (*expr_p
, pre_p
);
8001 #ifdef ENABLE_GIMPLE_CHECKING
8002 if (!(fallback
& fb_mayfail
))
8004 fprintf (stderr
, "gimplification failed:\n");
8005 print_generic_expr (stderr
, *expr_p
, 0);
8006 debug_tree (*expr_p
);
8007 internal_error ("gimplification failed");
8010 gcc_assert (fallback
& fb_mayfail
);
8012 /* If this is an asm statement, and the user asked for the
8013 impossible, don't die. Fail and let gimplify_asm_expr
8019 /* Make sure the temporary matches our predicate. */
8020 gcc_assert ((*gimple_test_f
) (*expr_p
));
8022 if (!gimple_seq_empty_p (internal_post
))
8024 annotate_all_with_location (internal_post
, input_location
);
8025 gimplify_seq_add_seq (pre_p
, internal_post
);
8029 input_location
= saved_location
;
8033 /* Look through TYPE for variable-sized objects and gimplify each such
8034 size that we find. Add to LIST_P any statements generated. */
8037 gimplify_type_sizes (tree type
, gimple_seq
*list_p
)
8041 if (type
== NULL
|| type
== error_mark_node
)
8044 /* We first do the main variant, then copy into any other variants. */
8045 type
= TYPE_MAIN_VARIANT (type
);
8047 /* Avoid infinite recursion. */
8048 if (TYPE_SIZES_GIMPLIFIED (type
))
8051 TYPE_SIZES_GIMPLIFIED (type
) = 1;
8053 switch (TREE_CODE (type
))
8059 case FIXED_POINT_TYPE
:
8060 gimplify_one_sizepos (&TYPE_MIN_VALUE (type
), list_p
);
8061 gimplify_one_sizepos (&TYPE_MAX_VALUE (type
), list_p
);
8063 for (t
= TYPE_NEXT_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
8065 TYPE_MIN_VALUE (t
) = TYPE_MIN_VALUE (type
);
8066 TYPE_MAX_VALUE (t
) = TYPE_MAX_VALUE (type
);
8071 /* These types may not have declarations, so handle them here. */
8072 gimplify_type_sizes (TREE_TYPE (type
), list_p
);
8073 gimplify_type_sizes (TYPE_DOMAIN (type
), list_p
);
8074 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
8075 with assigned stack slots, for -O1+ -g they should be tracked
8077 if (!(TYPE_NAME (type
)
8078 && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
8079 && DECL_IGNORED_P (TYPE_NAME (type
)))
8080 && TYPE_DOMAIN (type
)
8081 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type
)))
8083 t
= TYPE_MIN_VALUE (TYPE_DOMAIN (type
));
8084 if (t
&& TREE_CODE (t
) == VAR_DECL
&& DECL_ARTIFICIAL (t
))
8085 DECL_IGNORED_P (t
) = 0;
8086 t
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
8087 if (t
&& TREE_CODE (t
) == VAR_DECL
&& DECL_ARTIFICIAL (t
))
8088 DECL_IGNORED_P (t
) = 0;
8094 case QUAL_UNION_TYPE
:
8095 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
8096 if (TREE_CODE (field
) == FIELD_DECL
)
8098 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field
), list_p
);
8099 gimplify_one_sizepos (&DECL_SIZE (field
), list_p
);
8100 gimplify_one_sizepos (&DECL_SIZE_UNIT (field
), list_p
);
8101 gimplify_type_sizes (TREE_TYPE (field
), list_p
);
8106 case REFERENCE_TYPE
:
8107 /* We used to recurse on the pointed-to type here, which turned out to
8108 be incorrect because its definition might refer to variables not
8109 yet initialized at this point if a forward declaration is involved.
8111 It was actually useful for anonymous pointed-to types to ensure
8112 that the sizes evaluation dominates every possible later use of the
8113 values. Restricting to such types here would be safe since there
8114 is no possible forward declaration around, but would introduce an
8115 undesirable middle-end semantic to anonymity. We then defer to
8116 front-ends the responsibility of ensuring that the sizes are
8117 evaluated both early and late enough, e.g. by attaching artificial
8118 type declarations to the tree. */
8125 gimplify_one_sizepos (&TYPE_SIZE (type
), list_p
);
8126 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type
), list_p
);
8128 for (t
= TYPE_NEXT_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
8130 TYPE_SIZE (t
) = TYPE_SIZE (type
);
8131 TYPE_SIZE_UNIT (t
) = TYPE_SIZE_UNIT (type
);
8132 TYPE_SIZES_GIMPLIFIED (t
) = 1;
8136 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
8137 a size or position, has had all of its SAVE_EXPRs evaluated.
8138 We add any required statements to *STMT_P. */
8141 gimplify_one_sizepos (tree
*expr_p
, gimple_seq
*stmt_p
)
8143 tree expr
= *expr_p
;
8145 /* We don't do anything if the value isn't there, is constant, or contains
8146 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
8147 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
8148 will want to replace it with a new variable, but that will cause problems
8149 if this type is from outside the function. It's OK to have that here. */
8150 if (is_gimple_sizepos (expr
))
8153 *expr_p
= unshare_expr (expr
);
8155 gimplify_expr (expr_p
, stmt_p
, NULL
, is_gimple_val
, fb_rvalue
);
8158 /* Gimplify the body of statements of FNDECL and return a GIMPLE_BIND node
8159 containing the sequence of corresponding GIMPLE statements. If DO_PARMS
8160 is true, also gimplify the parameters. */
8163 gimplify_body (tree fndecl
, bool do_parms
)
8165 location_t saved_location
= input_location
;
8166 gimple_seq parm_stmts
, seq
;
8168 struct gimplify_ctx gctx
;
8169 struct cgraph_node
*cgn
;
8171 timevar_push (TV_TREE_GIMPLIFY
);
8173 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
8175 default_rtl_profile ();
8177 gcc_assert (gimplify_ctxp
== NULL
);
8178 push_gimplify_context (&gctx
);
8180 /* Unshare most shared trees in the body and in that of any nested functions.
8181 It would seem we don't have to do this for nested functions because
8182 they are supposed to be output and then the outer function gimplified
8183 first, but the g++ front end doesn't always do it that way. */
8184 unshare_body (fndecl
);
8185 unvisit_body (fndecl
);
8187 cgn
= cgraph_get_node (fndecl
);
8188 if (cgn
&& cgn
->origin
)
8189 nonlocal_vlas
= pointer_set_create ();
8191 /* Make sure input_location isn't set to something weird. */
8192 input_location
= DECL_SOURCE_LOCATION (fndecl
);
8194 /* Resolve callee-copies. This has to be done before processing
8195 the body so that DECL_VALUE_EXPR gets processed correctly. */
8196 parm_stmts
= do_parms
? gimplify_parameters () : NULL
;
8198 /* Gimplify the function's body. */
8200 gimplify_stmt (&DECL_SAVED_TREE (fndecl
), &seq
);
8201 outer_bind
= gimple_seq_first_stmt (seq
);
8204 outer_bind
= gimple_build_nop ();
8205 gimplify_seq_add_stmt (&seq
, outer_bind
);
8208 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
8209 not the case, wrap everything in a GIMPLE_BIND to make it so. */
8210 if (gimple_code (outer_bind
) == GIMPLE_BIND
8211 && gimple_seq_first (seq
) == gimple_seq_last (seq
))
8214 outer_bind
= gimple_build_bind (NULL_TREE
, seq
, NULL
);
8216 DECL_SAVED_TREE (fndecl
) = NULL_TREE
;
8218 /* If we had callee-copies statements, insert them at the beginning
8219 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8220 if (!gimple_seq_empty_p (parm_stmts
))
8224 gimplify_seq_add_seq (&parm_stmts
, gimple_bind_body (outer_bind
));
8225 gimple_bind_set_body (outer_bind
, parm_stmts
);
8227 for (parm
= DECL_ARGUMENTS (current_function_decl
);
8228 parm
; parm
= DECL_CHAIN (parm
))
8229 if (DECL_HAS_VALUE_EXPR_P (parm
))
8231 DECL_HAS_VALUE_EXPR_P (parm
) = 0;
8232 DECL_IGNORED_P (parm
) = 0;
8238 pointer_set_destroy (nonlocal_vlas
);
8239 nonlocal_vlas
= NULL
;
8242 pop_gimplify_context (outer_bind
);
8243 gcc_assert (gimplify_ctxp
== NULL
);
8245 #ifdef ENABLE_CHECKING
8247 verify_gimple_in_seq (gimple_bind_body (outer_bind
));
8250 timevar_pop (TV_TREE_GIMPLIFY
);
8251 input_location
= saved_location
;
8256 typedef char *char_p
; /* For DEF_VEC_P. */
8258 DEF_VEC_ALLOC_P(char_p
,heap
);
8260 /* Return whether we should exclude FNDECL from instrumentation. */
8263 flag_instrument_functions_exclude_p (tree fndecl
)
8265 VEC(char_p
,heap
) *vec
;
8267 vec
= (VEC(char_p
,heap
) *) flag_instrument_functions_exclude_functions
;
8268 if (VEC_length (char_p
, vec
) > 0)
8274 name
= lang_hooks
.decl_printable_name (fndecl
, 0);
8275 FOR_EACH_VEC_ELT (char_p
, vec
, i
, s
)
8276 if (strstr (name
, s
) != NULL
)
8280 vec
= (VEC(char_p
,heap
) *) flag_instrument_functions_exclude_files
;
8281 if (VEC_length (char_p
, vec
) > 0)
8287 name
= DECL_SOURCE_FILE (fndecl
);
8288 FOR_EACH_VEC_ELT (char_p
, vec
, i
, s
)
8289 if (strstr (name
, s
) != NULL
)
8296 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8297 node for the function we want to gimplify.
8299 Return the sequence of GIMPLE statements corresponding to the body
8303 gimplify_function_tree (tree fndecl
)
8309 gcc_assert (!gimple_body (fndecl
));
8311 if (DECL_STRUCT_FUNCTION (fndecl
))
8312 push_cfun (DECL_STRUCT_FUNCTION (fndecl
));
8314 push_struct_function (fndecl
);
8316 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
8318 /* Preliminarily mark non-addressed complex variables as eligible
8319 for promotion to gimple registers. We'll transform their uses
8321 if ((TREE_CODE (TREE_TYPE (parm
)) == COMPLEX_TYPE
8322 || TREE_CODE (TREE_TYPE (parm
)) == VECTOR_TYPE
)
8323 && !TREE_THIS_VOLATILE (parm
)
8324 && !needs_to_live_in_memory (parm
))
8325 DECL_GIMPLE_REG_P (parm
) = 1;
8328 ret
= DECL_RESULT (fndecl
);
8329 if ((TREE_CODE (TREE_TYPE (ret
)) == COMPLEX_TYPE
8330 || TREE_CODE (TREE_TYPE (ret
)) == VECTOR_TYPE
)
8331 && !needs_to_live_in_memory (ret
))
8332 DECL_GIMPLE_REG_P (ret
) = 1;
8334 bind
= gimplify_body (fndecl
, true);
8336 /* The tree body of the function is no longer needed, replace it
8337 with the new GIMPLE body. */
8339 gimple_seq_add_stmt (&seq
, bind
);
8340 gimple_set_body (fndecl
, seq
);
8342 /* If we're instrumenting function entry/exit, then prepend the call to
8343 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8344 catch the exit hook. */
8345 /* ??? Add some way to ignore exceptions for this TFE. */
8346 if (flag_instrument_function_entry_exit
8347 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl
)
8348 && !flag_instrument_functions_exclude_p (fndecl
))
8353 gimple_seq cleanup
= NULL
, body
= NULL
;
8357 x
= builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS
);
8358 call
= gimple_build_call (x
, 1, integer_zero_node
);
8359 tmp_var
= create_tmp_var (ptr_type_node
, "return_addr");
8360 gimple_call_set_lhs (call
, tmp_var
);
8361 gimplify_seq_add_stmt (&cleanup
, call
);
8362 x
= builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT
);
8363 call
= gimple_build_call (x
, 2,
8364 build_fold_addr_expr (current_function_decl
),
8366 gimplify_seq_add_stmt (&cleanup
, call
);
8367 tf
= gimple_build_try (seq
, cleanup
, GIMPLE_TRY_FINALLY
);
8369 x
= builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS
);
8370 call
= gimple_build_call (x
, 1, integer_zero_node
);
8371 tmp_var
= create_tmp_var (ptr_type_node
, "return_addr");
8372 gimple_call_set_lhs (call
, tmp_var
);
8373 gimplify_seq_add_stmt (&body
, call
);
8374 x
= builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER
);
8375 call
= gimple_build_call (x
, 2,
8376 build_fold_addr_expr (current_function_decl
),
8378 gimplify_seq_add_stmt (&body
, call
);
8379 gimplify_seq_add_stmt (&body
, tf
);
8380 new_bind
= gimple_build_bind (NULL
, body
, gimple_bind_block (bind
));
8381 /* Clear the block for BIND, since it is no longer directly inside
8382 the function, but within a try block. */
8383 gimple_bind_set_block (bind
, NULL
);
8385 /* Replace the current function body with the body
8386 wrapped in the try/finally TF. */
8388 gimple_seq_add_stmt (&seq
, new_bind
);
8389 gimple_set_body (fndecl
, seq
);
8392 DECL_SAVED_TREE (fndecl
) = NULL_TREE
;
8393 cfun
->curr_properties
= PROP_gimple_any
;
8398 /* Some transformations like inlining may invalidate the GIMPLE form
8399 for operands. This function traverses all the operands in STMT and
8400 gimplifies anything that is not a valid gimple operand. Any new
8401 GIMPLE statements are inserted before *GSI_P. */
8404 gimple_regimplify_operands (gimple stmt
, gimple_stmt_iterator
*gsi_p
)
8408 gimple_seq pre
= NULL
;
8409 gimple post_stmt
= NULL
;
8410 struct gimplify_ctx gctx
;
8412 push_gimplify_context (&gctx
);
8413 gimplify_ctxp
->into_ssa
= gimple_in_ssa_p (cfun
);
8415 switch (gimple_code (stmt
))
8418 gimplify_expr (gimple_cond_lhs_ptr (stmt
), &pre
, NULL
,
8419 is_gimple_val
, fb_rvalue
);
8420 gimplify_expr (gimple_cond_rhs_ptr (stmt
), &pre
, NULL
,
8421 is_gimple_val
, fb_rvalue
);
8424 gimplify_expr (gimple_switch_index_ptr (stmt
), &pre
, NULL
,
8425 is_gimple_val
, fb_rvalue
);
8427 case GIMPLE_OMP_ATOMIC_LOAD
:
8428 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt
), &pre
, NULL
,
8429 is_gimple_val
, fb_rvalue
);
8433 size_t i
, noutputs
= gimple_asm_noutputs (stmt
);
8434 const char *constraint
, **oconstraints
;
8435 bool allows_mem
, allows_reg
, is_inout
;
8438 = (const char **) alloca ((noutputs
) * sizeof (const char *));
8439 for (i
= 0; i
< noutputs
; i
++)
8441 tree op
= gimple_asm_output_op (stmt
, i
);
8442 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
8443 oconstraints
[i
] = constraint
;
8444 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
8445 &allows_reg
, &is_inout
);
8446 gimplify_expr (&TREE_VALUE (op
), &pre
, NULL
,
8447 is_inout
? is_gimple_min_lval
: is_gimple_lvalue
,
8448 fb_lvalue
| fb_mayfail
);
8450 for (i
= 0; i
< gimple_asm_ninputs (stmt
); i
++)
8452 tree op
= gimple_asm_input_op (stmt
, i
);
8453 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
8454 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0,
8455 oconstraints
, &allows_mem
, &allows_reg
);
8456 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op
))) && allows_mem
)
8458 if (!allows_reg
&& allows_mem
)
8459 gimplify_expr (&TREE_VALUE (op
), &pre
, NULL
,
8460 is_gimple_lvalue
, fb_lvalue
| fb_mayfail
);
8462 gimplify_expr (&TREE_VALUE (op
), &pre
, NULL
,
8463 is_gimple_asm_val
, fb_rvalue
);
8468 /* NOTE: We start gimplifying operands from last to first to
8469 make sure that side-effects on the RHS of calls, assignments
8470 and ASMs are executed before the LHS. The ordering is not
8471 important for other statements. */
8472 num_ops
= gimple_num_ops (stmt
);
8473 for (i
= num_ops
; i
> 0; i
--)
8475 tree op
= gimple_op (stmt
, i
- 1);
8476 if (op
== NULL_TREE
)
8478 if (i
== 1 && (is_gimple_call (stmt
) || is_gimple_assign (stmt
)))
8479 gimplify_expr (&op
, &pre
, NULL
, is_gimple_lvalue
, fb_lvalue
);
8481 && is_gimple_assign (stmt
)
8483 && get_gimple_rhs_class (gimple_expr_code (stmt
))
8484 == GIMPLE_SINGLE_RHS
)
8485 gimplify_expr (&op
, &pre
, NULL
,
8486 rhs_predicate_for (gimple_assign_lhs (stmt
)),
8488 else if (i
== 2 && is_gimple_call (stmt
))
8490 if (TREE_CODE (op
) == FUNCTION_DECL
)
8492 gimplify_expr (&op
, &pre
, NULL
, is_gimple_call_addr
, fb_rvalue
);
8495 gimplify_expr (&op
, &pre
, NULL
, is_gimple_val
, fb_rvalue
);
8496 gimple_set_op (stmt
, i
- 1, op
);
8499 lhs
= gimple_get_lhs (stmt
);
8500 /* If the LHS changed it in a way that requires a simple RHS,
8501 create temporary. */
8502 if (lhs
&& !is_gimple_reg (lhs
))
8504 bool need_temp
= false;
8506 if (is_gimple_assign (stmt
)
8508 && get_gimple_rhs_class (gimple_expr_code (stmt
))
8509 == GIMPLE_SINGLE_RHS
)
8510 gimplify_expr (gimple_assign_rhs1_ptr (stmt
), &pre
, NULL
,
8511 rhs_predicate_for (gimple_assign_lhs (stmt
)),
8513 else if (is_gimple_reg (lhs
))
8515 if (is_gimple_reg_type (TREE_TYPE (lhs
)))
8517 if (is_gimple_call (stmt
))
8519 i
= gimple_call_flags (stmt
);
8520 if ((i
& ECF_LOOPING_CONST_OR_PURE
)
8521 || !(i
& (ECF_CONST
| ECF_PURE
)))
8524 if (stmt_can_throw_internal (stmt
))
8530 if (is_gimple_reg_type (TREE_TYPE (lhs
)))
8532 else if (TYPE_MODE (TREE_TYPE (lhs
)) != BLKmode
)
8534 if (is_gimple_call (stmt
))
8536 tree fndecl
= gimple_call_fndecl (stmt
);
8538 if (!aggregate_value_p (TREE_TYPE (lhs
), fndecl
)
8539 && !(fndecl
&& DECL_RESULT (fndecl
)
8540 && DECL_BY_REFERENCE (DECL_RESULT (fndecl
))))
8549 tree temp
= create_tmp_reg (TREE_TYPE (lhs
), NULL
);
8550 if (gimple_in_ssa_p (cfun
))
8551 temp
= make_ssa_name (temp
, NULL
);
8552 gimple_set_lhs (stmt
, temp
);
8553 post_stmt
= gimple_build_assign (lhs
, temp
);
8554 if (TREE_CODE (lhs
) == SSA_NAME
)
8555 SSA_NAME_DEF_STMT (lhs
) = post_stmt
;
8561 if (!gimple_seq_empty_p (pre
))
8562 gsi_insert_seq_before (gsi_p
, pre
, GSI_SAME_STMT
);
8564 gsi_insert_after (gsi_p
, post_stmt
, GSI_NEW_STMT
);
8566 pop_gimplify_context (NULL
);
8569 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8570 the predicate that will hold for the result. If VAR is not NULL, make the
8571 base variable of the final destination be VAR if suitable. */
8574 force_gimple_operand_1 (tree expr
, gimple_seq
*stmts
,
8575 gimple_predicate gimple_test_f
, tree var
)
8577 enum gimplify_status ret
;
8578 struct gimplify_ctx gctx
;
8582 /* gimple_test_f might be more strict than is_gimple_val, make
8583 sure we pass both. Just checking gimple_test_f doesn't work
8584 because most gimple predicates do not work recursively. */
8585 if (is_gimple_val (expr
)
8586 && (*gimple_test_f
) (expr
))
8589 push_gimplify_context (&gctx
);
8590 gimplify_ctxp
->into_ssa
= gimple_in_ssa_p (cfun
);
8591 gimplify_ctxp
->allow_rhs_cond_expr
= true;
8595 if (gimplify_ctxp
->into_ssa
8596 && is_gimple_reg (var
))
8597 var
= make_ssa_name (var
, NULL
);
8598 expr
= build2 (MODIFY_EXPR
, TREE_TYPE (var
), var
, expr
);
8601 if (TREE_CODE (expr
) != MODIFY_EXPR
8602 && TREE_TYPE (expr
) == void_type_node
)
8604 gimplify_and_add (expr
, stmts
);
8609 ret
= gimplify_expr (&expr
, stmts
, NULL
, gimple_test_f
, fb_rvalue
);
8610 gcc_assert (ret
!= GS_ERROR
);
8613 pop_gimplify_context (NULL
);
8618 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8619 force the result to be either ssa_name or an invariant, otherwise
8620 just force it to be a rhs expression. If VAR is not NULL, make the
8621 base variable of the final destination be VAR if suitable. */
8624 force_gimple_operand (tree expr
, gimple_seq
*stmts
, bool simple
, tree var
)
8626 return force_gimple_operand_1 (expr
, stmts
,
8627 simple
? is_gimple_val
: is_gimple_reg_rhs
,
8631 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8632 and VAR. If some statements are produced, emits them at GSI.
8633 If BEFORE is true. the statements are appended before GSI, otherwise
8634 they are appended after it. M specifies the way GSI moves after
8635 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8638 force_gimple_operand_gsi_1 (gimple_stmt_iterator
*gsi
, tree expr
,
8639 gimple_predicate gimple_test_f
,
8640 tree var
, bool before
,
8641 enum gsi_iterator_update m
)
8645 expr
= force_gimple_operand_1 (expr
, &stmts
, gimple_test_f
, var
);
8647 if (!gimple_seq_empty_p (stmts
))
8650 gsi_insert_seq_before (gsi
, stmts
, m
);
8652 gsi_insert_seq_after (gsi
, stmts
, m
);
8658 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8659 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8660 otherwise just force it to be a rhs expression. If some statements are
8661 produced, emits them at GSI. If BEFORE is true, the statements are
8662 appended before GSI, otherwise they are appended after it. M specifies
8663 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8664 are the usual values). */
8667 force_gimple_operand_gsi (gimple_stmt_iterator
*gsi
, tree expr
,
8668 bool simple_p
, tree var
, bool before
,
8669 enum gsi_iterator_update m
)
8671 return force_gimple_operand_gsi_1 (gsi
, expr
,
8673 ? is_gimple_val
: is_gimple_reg_rhs
,
8678 #include "gt-gimplify.h"