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 /* Temps. cannot be UPC shared qualified. */
446 gcc_assert (!upc_shared_type_p (type
));
448 tmp_var
= build_decl (input_location
,
449 VAR_DECL
, prefix
? create_tmp_var_name (prefix
) : NULL
,
452 /* The variable was declared by the compiler. */
453 DECL_ARTIFICIAL (tmp_var
) = 1;
454 /* And we don't want debug info for it. */
455 DECL_IGNORED_P (tmp_var
) = 1;
457 /* Make the variable writable. */
458 TREE_READONLY (tmp_var
) = 0;
460 DECL_EXTERNAL (tmp_var
) = 0;
461 TREE_STATIC (tmp_var
) = 0;
462 TREE_USED (tmp_var
) = 1;
467 /* Create a new temporary variable declaration of type TYPE. DO push the
468 variable into the current binding. Further, assume that this is called
469 only from gimplification or optimization, at which point the creation of
470 certain types are bugs. */
473 create_tmp_var (tree type
, const char *prefix
)
477 /* We don't allow types that are addressable (meaning we can't make copies),
478 or incomplete. We also used to reject every variable size objects here,
479 but now support those for which a constant upper bound can be obtained.
480 The processing for variable sizes is performed in gimple_add_tmp_var,
481 point at which it really matters and possibly reached via paths not going
482 through this function, e.g. after direct calls to create_tmp_var_raw. */
483 gcc_assert (!TREE_ADDRESSABLE (type
) && COMPLETE_TYPE_P (type
));
485 tmp_var
= create_tmp_var_raw (type
, prefix
);
486 gimple_add_tmp_var (tmp_var
);
490 /* Create a new temporary variable declaration of type TYPE by calling
491 create_tmp_var and if TYPE is a vector or a complex number, mark the new
492 temporary as gimple register. */
495 create_tmp_reg (tree type
, const char *prefix
)
499 tmp
= create_tmp_var (type
, prefix
);
500 if (TREE_CODE (type
) == COMPLEX_TYPE
501 || TREE_CODE (type
) == VECTOR_TYPE
)
502 DECL_GIMPLE_REG_P (tmp
) = 1;
507 /* Returns true iff T is a valid RHS for an assignment to a renamed
508 user -- or front-end generated artificial -- variable. */
511 is_gimple_reg_rhs (tree t
)
513 return get_gimple_rhs_class (TREE_CODE (t
)) != GIMPLE_INVALID_RHS
;
516 /* Returns true iff T is a valid RHS for an assignment to an un-renamed
517 LHS, or for a call argument. */
520 is_gimple_mem_rhs (tree t
)
522 /* If we're dealing with a renamable type, either source or dest must be
523 a renamed variable. */
524 if (is_gimple_reg_type (TREE_TYPE (t
)))
525 return is_gimple_val (t
);
527 return is_gimple_val (t
) || is_gimple_lvalue (t
);
530 /* Return true if T is a CALL_EXPR or an expression that can be
531 assigned to a temporary. Note that this predicate should only be
532 used during gimplification. See the rationale for this in
533 gimplify_modify_expr. */
536 is_gimple_reg_rhs_or_call (tree t
)
538 return (get_gimple_rhs_class (TREE_CODE (t
)) != GIMPLE_INVALID_RHS
539 || TREE_CODE (t
) == CALL_EXPR
);
542 /* Return true if T is a valid memory RHS or a CALL_EXPR. Note that
543 this predicate should only be used during gimplification. See the
544 rationale for this in gimplify_modify_expr. */
547 is_gimple_mem_rhs_or_call (tree t
)
549 /* If we're dealing with a renamable type, either source or dest must be
550 a renamed variable. */
551 if (is_gimple_reg_type (TREE_TYPE (t
)))
552 return is_gimple_val (t
);
554 return (is_gimple_val (t
) || is_gimple_lvalue (t
)
555 || TREE_CODE (t
) == CALL_EXPR
);
558 /* Create a temporary with a name derived from VAL. Subroutine of
559 lookup_tmp_var; nobody else should call this function. */
562 create_tmp_from_val (tree val
, bool is_formal
)
564 /* Drop all qualifiers and address-space information from the value type. */
565 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (val
));
566 tree var
= create_tmp_var (type
, get_name (val
));
568 && (TREE_CODE (TREE_TYPE (var
)) == COMPLEX_TYPE
569 || TREE_CODE (TREE_TYPE (var
)) == VECTOR_TYPE
))
570 DECL_GIMPLE_REG_P (var
) = 1;
574 /* Create a temporary to hold the value of VAL. If IS_FORMAL, try to reuse
575 an existing expression temporary. */
578 lookup_tmp_var (tree val
, bool is_formal
)
582 /* If not optimizing, never really reuse a temporary. local-alloc
583 won't allocate any variable that is used in more than one basic
584 block, which means it will go into memory, causing much extra
585 work in reload and final and poorer code generation, outweighing
586 the extra memory allocation here. */
587 if (!optimize
|| !is_formal
|| TREE_SIDE_EFFECTS (val
))
588 ret
= create_tmp_from_val (val
, is_formal
);
595 if (gimplify_ctxp
->temp_htab
== NULL
)
596 gimplify_ctxp
->temp_htab
597 = htab_create (1000, gimple_tree_hash
, gimple_tree_eq
, free
);
598 slot
= htab_find_slot (gimplify_ctxp
->temp_htab
, (void *)&elt
, INSERT
);
601 elt_p
= XNEW (elt_t
);
603 elt_p
->temp
= ret
= create_tmp_from_val (val
, is_formal
);
604 *slot
= (void *) elt_p
;
608 elt_p
= (elt_t
*) *slot
;
616 /* Helper for get_formal_tmp_var and get_initialized_tmp_var. */
619 internal_get_tmp_var (tree val
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
624 /* Notice that we explicitly allow VAL to be a CALL_EXPR so that we
625 can create an INIT_EXPR and convert it into a GIMPLE_CALL below. */
626 gimplify_expr (&val
, pre_p
, post_p
, is_gimple_reg_rhs_or_call
,
629 if (gimplify_ctxp
->into_ssa
630 && is_gimple_reg_type (TREE_TYPE (val
)))
631 t
= make_ssa_name (TYPE_MAIN_VARIANT (TREE_TYPE (val
)), NULL
);
633 t
= lookup_tmp_var (val
, is_formal
);
635 mod
= build2 (INIT_EXPR
, TREE_TYPE (t
), t
, unshare_expr (val
));
637 SET_EXPR_LOCATION (mod
, EXPR_LOC_OR_HERE (val
));
639 /* gimplify_modify_expr might want to reduce this further. */
640 gimplify_and_add (mod
, pre_p
);
646 /* Return a formal temporary variable initialized with VAL. PRE_P is as
647 in gimplify_expr. Only use this function if:
649 1) The value of the unfactored expression represented by VAL will not
650 change between the initialization and use of the temporary, and
651 2) The temporary will not be otherwise modified.
653 For instance, #1 means that this is inappropriate for SAVE_EXPR temps,
654 and #2 means it is inappropriate for && temps.
656 For other cases, use get_initialized_tmp_var instead. */
659 get_formal_tmp_var (tree val
, gimple_seq
*pre_p
)
661 return internal_get_tmp_var (val
, pre_p
, NULL
, true);
664 /* Return a temporary variable initialized with VAL. PRE_P and POST_P
665 are as in gimplify_expr. */
668 get_initialized_tmp_var (tree val
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
670 return internal_get_tmp_var (val
, pre_p
, post_p
, false);
673 /* Declare all the variables in VARS in SCOPE. If DEBUG_INFO is true,
674 generate debug info for them; otherwise don't. */
677 declare_vars (tree vars
, gimple scope
, bool debug_info
)
684 gcc_assert (gimple_code (scope
) == GIMPLE_BIND
);
686 temps
= nreverse (last
);
688 block
= gimple_bind_block (scope
);
689 gcc_assert (!block
|| TREE_CODE (block
) == BLOCK
);
690 if (!block
|| !debug_info
)
692 DECL_CHAIN (last
) = gimple_bind_vars (scope
);
693 gimple_bind_set_vars (scope
, temps
);
697 /* We need to attach the nodes both to the BIND_EXPR and to its
698 associated BLOCK for debugging purposes. The key point here
699 is that the BLOCK_VARS of the BIND_EXPR_BLOCK of a BIND_EXPR
700 is a subchain of the BIND_EXPR_VARS of the BIND_EXPR. */
701 if (BLOCK_VARS (block
))
702 BLOCK_VARS (block
) = chainon (BLOCK_VARS (block
), temps
);
705 gimple_bind_set_vars (scope
,
706 chainon (gimple_bind_vars (scope
), temps
));
707 BLOCK_VARS (block
) = temps
;
713 /* For VAR a VAR_DECL of variable size, try to find a constant upper bound
714 for the size and adjust DECL_SIZE/DECL_SIZE_UNIT accordingly. Abort if
715 no such upper bound can be obtained. */
718 force_constant_size (tree var
)
720 /* The only attempt we make is by querying the maximum size of objects
721 of the variable's type. */
723 HOST_WIDE_INT max_size
;
725 gcc_assert (TREE_CODE (var
) == VAR_DECL
);
727 max_size
= max_int_size_in_bytes (TREE_TYPE (var
));
729 gcc_assert (max_size
>= 0);
732 = build_int_cst (TREE_TYPE (DECL_SIZE_UNIT (var
)), max_size
);
734 = build_int_cst (TREE_TYPE (DECL_SIZE (var
)), max_size
* BITS_PER_UNIT
);
737 /* Push the temporary variable TMP into the current binding. */
740 gimple_add_tmp_var (tree tmp
)
742 gcc_assert (!DECL_CHAIN (tmp
) && !DECL_SEEN_IN_BIND_EXPR_P (tmp
));
744 /* Later processing assumes that the object size is constant, which might
745 not be true at this point. Force the use of a constant upper bound in
747 if (!host_integerp (DECL_SIZE_UNIT (tmp
), 1))
748 force_constant_size (tmp
);
750 DECL_CONTEXT (tmp
) = current_function_decl
;
751 DECL_SEEN_IN_BIND_EXPR_P (tmp
) = 1;
755 DECL_CHAIN (tmp
) = gimplify_ctxp
->temps
;
756 gimplify_ctxp
->temps
= tmp
;
758 /* Mark temporaries local within the nearest enclosing parallel. */
759 if (gimplify_omp_ctxp
)
761 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
;
762 while (ctx
&& ctx
->region_type
== ORT_WORKSHARE
)
763 ctx
= ctx
->outer_context
;
765 omp_add_variable (ctx
, tmp
, GOVD_LOCAL
| GOVD_SEEN
);
774 /* This case is for nested functions. We need to expose the locals
776 body_seq
= gimple_body (current_function_decl
);
777 declare_vars (tmp
, gimple_seq_first_stmt (body_seq
), false);
781 /* Determine whether to assign a location to the statement GS. */
784 should_carry_location_p (gimple gs
)
786 /* Don't emit a line note for a label. We particularly don't want to
787 emit one for the break label, since it doesn't actually correspond
788 to the beginning of the loop/switch. */
789 if (gimple_code (gs
) == GIMPLE_LABEL
)
795 /* Return true if a location should not be emitted for this statement
796 by annotate_one_with_location. */
799 gimple_do_not_emit_location_p (gimple g
)
801 return gimple_plf (g
, GF_PLF_1
);
804 /* Mark statement G so a location will not be emitted by
805 annotate_one_with_location. */
808 gimple_set_do_not_emit_location (gimple g
)
810 /* The PLF flags are initialized to 0 when a new tuple is created,
811 so no need to initialize it anywhere. */
812 gimple_set_plf (g
, GF_PLF_1
, true);
815 /* Set the location for gimple statement GS to LOCATION. */
818 annotate_one_with_location (gimple gs
, location_t location
)
820 if (!gimple_has_location (gs
)
821 && !gimple_do_not_emit_location_p (gs
)
822 && should_carry_location_p (gs
))
823 gimple_set_location (gs
, location
);
826 /* Set LOCATION for all the statements after iterator GSI in sequence
827 SEQ. If GSI is pointing to the end of the sequence, start with the
828 first statement in SEQ. */
831 annotate_all_with_location_after (gimple_seq seq
, gimple_stmt_iterator gsi
,
835 gsi
= gsi_start (seq
);
839 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
840 annotate_one_with_location (gsi_stmt (gsi
), location
);
843 /* Set the location for all the statements in a sequence STMT_P to LOCATION. */
846 annotate_all_with_location (gimple_seq stmt_p
, location_t location
)
848 gimple_stmt_iterator i
;
850 if (gimple_seq_empty_p (stmt_p
))
853 for (i
= gsi_start (stmt_p
); !gsi_end_p (i
); gsi_next (&i
))
855 gimple gs
= gsi_stmt (i
);
856 annotate_one_with_location (gs
, location
);
860 /* This page contains routines to unshare tree nodes, i.e. to duplicate tree
861 nodes that are referenced more than once in GENERIC functions. This is
862 necessary because gimplification (translation into GIMPLE) is performed
863 by modifying tree nodes in-place, so gimplication of a shared node in a
864 first context could generate an invalid GIMPLE form in a second context.
866 This is achieved with a simple mark/copy/unmark algorithm that walks the
867 GENERIC representation top-down, marks nodes with TREE_VISITED the first
868 time it encounters them, duplicates them if they already have TREE_VISITED
869 set, and finally removes the TREE_VISITED marks it has set.
871 The algorithm works only at the function level, i.e. it generates a GENERIC
872 representation of a function with no nodes shared within the function when
873 passed a GENERIC function (except for nodes that are allowed to be shared).
875 At the global level, it is also necessary to unshare tree nodes that are
876 referenced in more than one function, for the same aforementioned reason.
877 This requires some cooperation from the front-end. There are 2 strategies:
879 1. Manual unsharing. The front-end needs to call unshare_expr on every
880 expression that might end up being shared across functions.
882 2. Deep unsharing. This is an extension of regular unsharing. Instead
883 of calling unshare_expr on expressions that might be shared across
884 functions, the front-end pre-marks them with TREE_VISITED. This will
885 ensure that they are unshared on the first reference within functions
886 when the regular unsharing algorithm runs. The counterpart is that
887 this algorithm must look deeper than for manual unsharing, which is
888 specified by LANG_HOOKS_DEEP_UNSHARING.
890 If there are only few specific cases of node sharing across functions, it is
891 probably easier for a front-end to unshare the expressions manually. On the
892 contrary, if the expressions generated at the global level are as widespread
893 as expressions generated within functions, deep unsharing is very likely the
896 /* Similar to copy_tree_r but do not copy SAVE_EXPR or TARGET_EXPR nodes.
897 These nodes model computations that must be done once. If we were to
898 unshare something like SAVE_EXPR(i++), the gimplification process would
899 create wrong code. However, if DATA is non-null, it must hold a pointer
900 set that is used to unshare the subtrees of these nodes. */
903 mostly_copy_tree_r (tree
*tp
, int *walk_subtrees
, void *data
)
906 enum tree_code code
= TREE_CODE (t
);
908 /* Do not copy SAVE_EXPR, TARGET_EXPR or BIND_EXPR nodes themselves, but
909 copy their subtrees if we can make sure to do it only once. */
910 if (code
== SAVE_EXPR
|| code
== TARGET_EXPR
|| code
== BIND_EXPR
)
912 if (data
&& !pointer_set_insert ((struct pointer_set_t
*)data
, t
))
918 /* Stop at types, decls, constants like copy_tree_r. */
919 else if (TREE_CODE_CLASS (code
) == tcc_type
920 || TREE_CODE_CLASS (code
) == tcc_declaration
921 || TREE_CODE_CLASS (code
) == tcc_constant
922 /* We can't do anything sensible with a BLOCK used as an
923 expression, but we also can't just die when we see it
924 because of non-expression uses. So we avert our eyes
925 and cross our fingers. Silly Java. */
929 /* Cope with the statement expression extension. */
930 else if (code
== STATEMENT_LIST
)
933 /* Leave the bulk of the work to copy_tree_r itself. */
935 copy_tree_r (tp
, walk_subtrees
, NULL
);
940 /* Callback for walk_tree to unshare most of the shared trees rooted at *TP.
941 If *TP has been visited already, then *TP is deeply copied by calling
942 mostly_copy_tree_r. DATA is passed to mostly_copy_tree_r unmodified. */
945 copy_if_shared_r (tree
*tp
, int *walk_subtrees
, void *data
)
948 enum tree_code code
= TREE_CODE (t
);
950 /* Skip types, decls, and constants. But we do want to look at their
951 types and the bounds of types. Mark them as visited so we properly
952 unmark their subtrees on the unmark pass. If we've already seen them,
953 don't look down further. */
954 if (TREE_CODE_CLASS (code
) == tcc_type
955 || TREE_CODE_CLASS (code
) == tcc_declaration
956 || TREE_CODE_CLASS (code
) == tcc_constant
)
958 if (TREE_VISITED (t
))
961 TREE_VISITED (t
) = 1;
964 /* If this node has been visited already, unshare it and don't look
966 else if (TREE_VISITED (t
))
968 walk_tree (tp
, mostly_copy_tree_r
, data
, NULL
);
972 /* Otherwise, mark the node as visited and keep looking. */
974 TREE_VISITED (t
) = 1;
979 /* Unshare most of the shared trees rooted at *TP. DATA is passed to the
980 copy_if_shared_r callback unmodified. */
983 copy_if_shared (tree
*tp
, void *data
)
985 walk_tree (tp
, copy_if_shared_r
, data
, NULL
);
988 /* Unshare all the trees in the body of FNDECL, as well as in the bodies of
989 any nested functions. */
992 unshare_body (tree fndecl
)
994 struct cgraph_node
*cgn
= cgraph_get_node (fndecl
);
995 /* If the language requires deep unsharing, we need a pointer set to make
996 sure we don't repeatedly unshare subtrees of unshareable nodes. */
997 struct pointer_set_t
*visited
998 = lang_hooks
.deep_unsharing
? pointer_set_create () : NULL
;
1000 copy_if_shared (&DECL_SAVED_TREE (fndecl
), visited
);
1001 copy_if_shared (&DECL_SIZE (DECL_RESULT (fndecl
)), visited
);
1002 copy_if_shared (&DECL_SIZE_UNIT (DECL_RESULT (fndecl
)), visited
);
1005 pointer_set_destroy (visited
);
1008 for (cgn
= cgn
->nested
; cgn
; cgn
= cgn
->next_nested
)
1009 unshare_body (cgn
->symbol
.decl
);
1012 /* Callback for walk_tree to unmark the visited trees rooted at *TP.
1013 Subtrees are walked until the first unvisited node is encountered. */
1016 unmark_visited_r (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
1020 /* If this node has been visited, unmark it and keep looking. */
1021 if (TREE_VISITED (t
))
1022 TREE_VISITED (t
) = 0;
1024 /* Otherwise, don't look any deeper. */
1031 /* Unmark the visited trees rooted at *TP. */
1034 unmark_visited (tree
*tp
)
1036 walk_tree (tp
, unmark_visited_r
, NULL
, NULL
);
1039 /* Likewise, but mark all trees as not visited. */
1042 unvisit_body (tree fndecl
)
1044 struct cgraph_node
*cgn
= cgraph_get_node (fndecl
);
1046 unmark_visited (&DECL_SAVED_TREE (fndecl
));
1047 unmark_visited (&DECL_SIZE (DECL_RESULT (fndecl
)));
1048 unmark_visited (&DECL_SIZE_UNIT (DECL_RESULT (fndecl
)));
1051 for (cgn
= cgn
->nested
; cgn
; cgn
= cgn
->next_nested
)
1052 unvisit_body (cgn
->symbol
.decl
);
1055 /* Unconditionally make an unshared copy of EXPR. This is used when using
1056 stored expressions which span multiple functions, such as BINFO_VTABLE,
1057 as the normal unsharing process can't tell that they're shared. */
1060 unshare_expr (tree expr
)
1062 walk_tree (&expr
, mostly_copy_tree_r
, NULL
, NULL
);
1066 /* WRAPPER is a code such as BIND_EXPR or CLEANUP_POINT_EXPR which can both
1067 contain statements and have a value. Assign its value to a temporary
1068 and give it void_type_node. Return the temporary, or NULL_TREE if
1069 WRAPPER was already void. */
1072 voidify_wrapper_expr (tree wrapper
, tree temp
)
1074 tree type
= TREE_TYPE (wrapper
);
1075 if (type
&& !VOID_TYPE_P (type
))
1079 /* Set p to point to the body of the wrapper. Loop until we find
1080 something that isn't a wrapper. */
1081 for (p
= &wrapper
; p
&& *p
; )
1083 switch (TREE_CODE (*p
))
1086 TREE_SIDE_EFFECTS (*p
) = 1;
1087 TREE_TYPE (*p
) = void_type_node
;
1088 /* For a BIND_EXPR, the body is operand 1. */
1089 p
= &BIND_EXPR_BODY (*p
);
1092 case CLEANUP_POINT_EXPR
:
1093 case TRY_FINALLY_EXPR
:
1094 case TRY_CATCH_EXPR
:
1095 TREE_SIDE_EFFECTS (*p
) = 1;
1096 TREE_TYPE (*p
) = void_type_node
;
1097 p
= &TREE_OPERAND (*p
, 0);
1100 case STATEMENT_LIST
:
1102 tree_stmt_iterator i
= tsi_last (*p
);
1103 TREE_SIDE_EFFECTS (*p
) = 1;
1104 TREE_TYPE (*p
) = void_type_node
;
1105 p
= tsi_end_p (i
) ? NULL
: tsi_stmt_ptr (i
);
1110 /* Advance to the last statement. Set all container types to
1112 for (; TREE_CODE (*p
) == COMPOUND_EXPR
; p
= &TREE_OPERAND (*p
, 1))
1114 TREE_SIDE_EFFECTS (*p
) = 1;
1115 TREE_TYPE (*p
) = void_type_node
;
1119 case TRANSACTION_EXPR
:
1120 TREE_SIDE_EFFECTS (*p
) = 1;
1121 TREE_TYPE (*p
) = void_type_node
;
1122 p
= &TRANSACTION_EXPR_BODY (*p
);
1126 /* Assume that any tree upon which voidify_wrapper_expr is
1127 directly called is a wrapper, and that its body is op0. */
1130 TREE_SIDE_EFFECTS (*p
) = 1;
1131 TREE_TYPE (*p
) = void_type_node
;
1132 p
= &TREE_OPERAND (*p
, 0);
1140 if (p
== NULL
|| IS_EMPTY_STMT (*p
))
1144 /* The wrapper is on the RHS of an assignment that we're pushing
1146 gcc_assert (TREE_CODE (temp
) == INIT_EXPR
1147 || TREE_CODE (temp
) == MODIFY_EXPR
);
1148 TREE_OPERAND (temp
, 1) = *p
;
1153 temp
= create_tmp_var (type
, "retval");
1154 *p
= build2 (INIT_EXPR
, type
, temp
, *p
);
1163 /* Prepare calls to builtins to SAVE and RESTORE the stack as well as
1164 a temporary through which they communicate. */
1167 build_stack_save_restore (gimple
*save
, gimple
*restore
)
1171 *save
= gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_SAVE
), 0);
1172 tmp_var
= create_tmp_var (ptr_type_node
, "saved_stack");
1173 gimple_call_set_lhs (*save
, tmp_var
);
1176 = gimple_build_call (builtin_decl_implicit (BUILT_IN_STACK_RESTORE
),
1180 /* Gimplify a BIND_EXPR. Just voidify and recurse. */
1182 static enum gimplify_status
1183 gimplify_bind_expr (tree
*expr_p
, gimple_seq
*pre_p
)
1185 tree bind_expr
= *expr_p
;
1186 bool old_save_stack
= gimplify_ctxp
->save_stack
;
1189 gimple_seq body
, cleanup
;
1192 tree temp
= voidify_wrapper_expr (bind_expr
, NULL
);
1194 /* Mark variables seen in this bind expr. */
1195 for (t
= BIND_EXPR_VARS (bind_expr
); t
; t
= DECL_CHAIN (t
))
1197 if (TREE_CODE (t
) == VAR_DECL
)
1199 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
;
1201 /* Mark variable as local. */
1202 if (ctx
&& !DECL_EXTERNAL (t
)
1203 && (! DECL_SEEN_IN_BIND_EXPR_P (t
)
1204 || splay_tree_lookup (ctx
->variables
,
1205 (splay_tree_key
) t
) == NULL
))
1206 omp_add_variable (gimplify_omp_ctxp
, t
, GOVD_LOCAL
| GOVD_SEEN
);
1208 DECL_SEEN_IN_BIND_EXPR_P (t
) = 1;
1210 if (DECL_HARD_REGISTER (t
) && !is_global_var (t
) && cfun
)
1211 cfun
->has_local_explicit_reg_vars
= true;
1214 /* Preliminarily mark non-addressed complex variables as eligible
1215 for promotion to gimple registers. We'll transform their uses
1217 if ((TREE_CODE (TREE_TYPE (t
)) == COMPLEX_TYPE
1218 || TREE_CODE (TREE_TYPE (t
)) == VECTOR_TYPE
)
1219 && !TREE_THIS_VOLATILE (t
)
1220 && (TREE_CODE (t
) == VAR_DECL
&& !DECL_HARD_REGISTER (t
))
1221 && !needs_to_live_in_memory (t
))
1222 DECL_GIMPLE_REG_P (t
) = 1;
1225 gimple_bind
= gimple_build_bind (BIND_EXPR_VARS (bind_expr
), NULL
,
1226 BIND_EXPR_BLOCK (bind_expr
));
1227 gimple_push_bind_expr (gimple_bind
);
1229 gimplify_ctxp
->save_stack
= false;
1231 /* Gimplify the body into the GIMPLE_BIND tuple's body. */
1233 gimplify_stmt (&BIND_EXPR_BODY (bind_expr
), &body
);
1234 gimple_bind_set_body (gimple_bind
, body
);
1238 if (gimplify_ctxp
->save_stack
)
1240 gimple stack_restore
;
1242 /* Save stack on entry and restore it on exit. Add a try_finally
1243 block to achieve this. Note that mudflap depends on the
1244 format of the emitted code: see mx_register_decls(). */
1245 build_stack_save_restore (&stack_save
, &stack_restore
);
1247 gimplify_seq_add_stmt (&cleanup
, stack_restore
);
1250 /* Add clobbers for all variables that go out of scope. */
1251 for (t
= BIND_EXPR_VARS (bind_expr
); t
; t
= DECL_CHAIN (t
))
1253 if (TREE_CODE (t
) == VAR_DECL
1254 && !is_global_var (t
)
1255 && DECL_CONTEXT (t
) == current_function_decl
1256 && !DECL_HARD_REGISTER (t
)
1257 && !TREE_THIS_VOLATILE (t
)
1258 && !DECL_HAS_VALUE_EXPR_P (t
)
1259 /* Only care for variables that have to be in memory. Others
1260 will be rewritten into SSA names, hence moved to the top-level. */
1261 && !is_gimple_reg (t
)
1262 && flag_stack_reuse
!= SR_NONE
)
1264 tree clobber
= build_constructor (TREE_TYPE (t
), NULL
);
1265 TREE_THIS_VOLATILE (clobber
) = 1;
1266 gimplify_seq_add_stmt (&cleanup
, gimple_build_assign (t
, clobber
));
1273 gimple_seq new_body
;
1276 gs
= gimple_build_try (gimple_bind_body (gimple_bind
), cleanup
,
1277 GIMPLE_TRY_FINALLY
);
1280 gimplify_seq_add_stmt (&new_body
, stack_save
);
1281 gimplify_seq_add_stmt (&new_body
, gs
);
1282 gimple_bind_set_body (gimple_bind
, new_body
);
1285 gimplify_ctxp
->save_stack
= old_save_stack
;
1286 gimple_pop_bind_expr ();
1288 gimplify_seq_add_stmt (pre_p
, gimple_bind
);
1296 *expr_p
= NULL_TREE
;
1300 /* Gimplify a RETURN_EXPR. If the expression to be returned is not a
1301 GIMPLE value, it is assigned to a new temporary and the statement is
1302 re-written to return the temporary.
1304 PRE_P points to the sequence where side effects that must happen before
1305 STMT should be stored. */
1307 static enum gimplify_status
1308 gimplify_return_expr (tree stmt
, gimple_seq
*pre_p
)
1311 tree ret_expr
= TREE_OPERAND (stmt
, 0);
1312 tree result_decl
, result
;
1314 if (ret_expr
== error_mark_node
)
1318 || TREE_CODE (ret_expr
) == RESULT_DECL
1319 || ret_expr
== error_mark_node
)
1321 gimple ret
= gimple_build_return (ret_expr
);
1322 gimple_set_no_warning (ret
, TREE_NO_WARNING (stmt
));
1323 gimplify_seq_add_stmt (pre_p
, ret
);
1327 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl
))))
1328 result_decl
= NULL_TREE
;
1331 result_decl
= TREE_OPERAND (ret_expr
, 0);
1333 /* See through a return by reference. */
1334 if (TREE_CODE (result_decl
) == INDIRECT_REF
)
1335 result_decl
= TREE_OPERAND (result_decl
, 0);
1337 gcc_assert ((TREE_CODE (ret_expr
) == MODIFY_EXPR
1338 || TREE_CODE (ret_expr
) == INIT_EXPR
)
1339 && TREE_CODE (result_decl
) == RESULT_DECL
);
1342 /* If aggregate_value_p is true, then we can return the bare RESULT_DECL.
1343 Recall that aggregate_value_p is FALSE for any aggregate type that is
1344 returned in registers. If we're returning values in registers, then
1345 we don't want to extend the lifetime of the RESULT_DECL, particularly
1346 across another call. In addition, for those aggregates for which
1347 hard_function_value generates a PARALLEL, we'll die during normal
1348 expansion of structure assignments; there's special code in expand_return
1349 to handle this case that does not exist in expand_expr. */
1352 else if (aggregate_value_p (result_decl
, TREE_TYPE (current_function_decl
)))
1354 if (TREE_CODE (DECL_SIZE (result_decl
)) != INTEGER_CST
)
1356 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (result_decl
)))
1357 gimplify_type_sizes (TREE_TYPE (result_decl
), pre_p
);
1358 /* Note that we don't use gimplify_vla_decl because the RESULT_DECL
1359 should be effectively allocated by the caller, i.e. all calls to
1360 this function must be subject to the Return Slot Optimization. */
1361 gimplify_one_sizepos (&DECL_SIZE (result_decl
), pre_p
);
1362 gimplify_one_sizepos (&DECL_SIZE_UNIT (result_decl
), pre_p
);
1364 result
= result_decl
;
1366 else if (gimplify_ctxp
->return_temp
)
1367 result
= gimplify_ctxp
->return_temp
;
1370 result
= create_tmp_reg (TREE_TYPE (result_decl
), NULL
);
1372 /* ??? With complex control flow (usually involving abnormal edges),
1373 we can wind up warning about an uninitialized value for this. Due
1374 to how this variable is constructed and initialized, this is never
1375 true. Give up and never warn. */
1376 TREE_NO_WARNING (result
) = 1;
1378 gimplify_ctxp
->return_temp
= result
;
1381 /* Smash the lhs of the MODIFY_EXPR to the temporary we plan to use.
1382 Then gimplify the whole thing. */
1383 if (result
!= result_decl
)
1384 TREE_OPERAND (ret_expr
, 0) = result
;
1386 gimplify_and_add (TREE_OPERAND (stmt
, 0), pre_p
);
1388 ret
= gimple_build_return (result
);
1389 gimple_set_no_warning (ret
, TREE_NO_WARNING (stmt
));
1390 gimplify_seq_add_stmt (pre_p
, ret
);
1395 /* Gimplify a variable-length array DECL. */
1398 gimplify_vla_decl (tree decl
, gimple_seq
*seq_p
)
1400 /* This is a variable-sized decl. Simplify its size and mark it
1401 for deferred expansion. Note that mudflap depends on the format
1402 of the emitted code: see mx_register_decls(). */
1403 tree t
, addr
, ptr_type
;
1405 gimplify_one_sizepos (&DECL_SIZE (decl
), seq_p
);
1406 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl
), seq_p
);
1408 /* All occurrences of this decl in final gimplified code will be
1409 replaced by indirection. Setting DECL_VALUE_EXPR does two
1410 things: First, it lets the rest of the gimplifier know what
1411 replacement to use. Second, it lets the debug info know
1412 where to find the value. */
1413 ptr_type
= build_pointer_type (TREE_TYPE (decl
));
1414 addr
= create_tmp_var (ptr_type
, get_name (decl
));
1415 DECL_IGNORED_P (addr
) = 0;
1416 t
= build_fold_indirect_ref (addr
);
1417 TREE_THIS_NOTRAP (t
) = 1;
1418 SET_DECL_VALUE_EXPR (decl
, t
);
1419 DECL_HAS_VALUE_EXPR_P (decl
) = 1;
1421 t
= builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
);
1422 t
= build_call_expr (t
, 2, DECL_SIZE_UNIT (decl
),
1423 size_int (DECL_ALIGN (decl
)));
1424 /* The call has been built for a variable-sized object. */
1425 CALL_ALLOCA_FOR_VAR_P (t
) = 1;
1426 t
= fold_convert (ptr_type
, t
);
1427 t
= build2 (MODIFY_EXPR
, TREE_TYPE (addr
), addr
, t
);
1429 gimplify_and_add (t
, seq_p
);
1431 /* Indicate that we need to restore the stack level when the
1432 enclosing BIND_EXPR is exited. */
1433 gimplify_ctxp
->save_stack
= true;
1436 /* Gimplify a DECL_EXPR node *STMT_P by making any necessary allocation
1437 and initialization explicit. */
1439 static enum gimplify_status
1440 gimplify_decl_expr (tree
*stmt_p
, gimple_seq
*seq_p
)
1442 tree stmt
= *stmt_p
;
1443 tree decl
= DECL_EXPR_DECL (stmt
);
1445 *stmt_p
= NULL_TREE
;
1447 if (TREE_TYPE (decl
) == error_mark_node
)
1450 if ((TREE_CODE (decl
) == TYPE_DECL
1451 || TREE_CODE (decl
) == VAR_DECL
)
1452 && !TYPE_SIZES_GIMPLIFIED (TREE_TYPE (decl
)))
1453 gimplify_type_sizes (TREE_TYPE (decl
), seq_p
);
1455 /* ??? DECL_ORIGINAL_TYPE is streamed for LTO so it needs to be gimplified
1456 in case its size expressions contain problematic nodes like CALL_EXPR. */
1457 if (TREE_CODE (decl
) == TYPE_DECL
1458 && DECL_ORIGINAL_TYPE (decl
)
1459 && !TYPE_SIZES_GIMPLIFIED (DECL_ORIGINAL_TYPE (decl
)))
1460 gimplify_type_sizes (DECL_ORIGINAL_TYPE (decl
), seq_p
);
1462 if (TREE_CODE (decl
) == VAR_DECL
&& !DECL_EXTERNAL (decl
))
1464 tree init
= DECL_INITIAL (decl
);
1466 if (TREE_CODE (DECL_SIZE_UNIT (decl
)) != INTEGER_CST
1467 || (!TREE_STATIC (decl
)
1468 && flag_stack_check
== GENERIC_STACK_CHECK
1469 && compare_tree_int (DECL_SIZE_UNIT (decl
),
1470 STACK_CHECK_MAX_VAR_SIZE
) > 0))
1471 gimplify_vla_decl (decl
, seq_p
);
1473 /* Some front ends do not explicitly declare all anonymous
1474 artificial variables. We compensate here by declaring the
1475 variables, though it would be better if the front ends would
1476 explicitly declare them. */
1477 if (!DECL_SEEN_IN_BIND_EXPR_P (decl
)
1478 && DECL_ARTIFICIAL (decl
) && DECL_NAME (decl
) == NULL_TREE
)
1479 gimple_add_tmp_var (decl
);
1481 if (init
&& init
!= error_mark_node
)
1483 if (!TREE_STATIC (decl
))
1485 DECL_INITIAL (decl
) = NULL_TREE
;
1486 init
= build2 (INIT_EXPR
, void_type_node
, decl
, init
);
1487 gimplify_and_add (init
, seq_p
);
1491 /* We must still examine initializers for static variables
1492 as they may contain a label address. */
1493 walk_tree (&init
, force_labels_r
, NULL
, NULL
);
1500 /* Gimplify a LOOP_EXPR. Normally this just involves gimplifying the body
1501 and replacing the LOOP_EXPR with goto, but if the loop contains an
1502 EXIT_EXPR, we need to append a label for it to jump to. */
1504 static enum gimplify_status
1505 gimplify_loop_expr (tree
*expr_p
, gimple_seq
*pre_p
)
1507 tree saved_label
= gimplify_ctxp
->exit_label
;
1508 tree start_label
= create_artificial_label (UNKNOWN_LOCATION
);
1510 gimplify_seq_add_stmt (pre_p
, gimple_build_label (start_label
));
1512 gimplify_ctxp
->exit_label
= NULL_TREE
;
1514 gimplify_and_add (LOOP_EXPR_BODY (*expr_p
), pre_p
);
1516 gimplify_seq_add_stmt (pre_p
, gimple_build_goto (start_label
));
1518 if (gimplify_ctxp
->exit_label
)
1519 gimplify_seq_add_stmt (pre_p
,
1520 gimple_build_label (gimplify_ctxp
->exit_label
));
1522 gimplify_ctxp
->exit_label
= saved_label
;
1528 /* Gimplify a statement list onto a sequence. These may be created either
1529 by an enlightened front-end, or by shortcut_cond_expr. */
1531 static enum gimplify_status
1532 gimplify_statement_list (tree
*expr_p
, gimple_seq
*pre_p
)
1534 tree temp
= voidify_wrapper_expr (*expr_p
, NULL
);
1536 tree_stmt_iterator i
= tsi_start (*expr_p
);
1538 while (!tsi_end_p (i
))
1540 gimplify_stmt (tsi_stmt_ptr (i
), pre_p
);
1553 /* Compare two case labels. Because the front end should already have
1554 made sure that case ranges do not overlap, it is enough to only compare
1555 the CASE_LOW values of each case label. */
1558 compare_case_labels (const void *p1
, const void *p2
)
1560 const_tree
const case1
= *(const_tree
const*)p1
;
1561 const_tree
const case2
= *(const_tree
const*)p2
;
1563 /* The 'default' case label always goes first. */
1564 if (!CASE_LOW (case1
))
1566 else if (!CASE_LOW (case2
))
1569 return tree_int_cst_compare (CASE_LOW (case1
), CASE_LOW (case2
));
1572 /* Sort the case labels in LABEL_VEC in place in ascending order. */
1575 sort_case_labels (VEC(tree
,heap
)* label_vec
)
1577 VEC_qsort (tree
, label_vec
, compare_case_labels
);
1580 /* Prepare a vector of case labels to be used in a GIMPLE_SWITCH statement.
1582 LABELS is a vector that contains all case labels to look at.
1584 INDEX_TYPE is the type of the switch index expression. Case labels
1585 in LABELS are discarded if their values are not in the value range
1586 covered by INDEX_TYPE. The remaining case label values are folded
1589 If a default case exists in LABELS, it is removed from LABELS and
1590 returned in DEFAULT_CASEP. If no default case exists, but the
1591 case labels already cover the whole range of INDEX_TYPE, a default
1592 case is returned pointing to one of the existing case labels.
1593 Otherwise DEFAULT_CASEP is set to NULL_TREE.
1595 DEFAULT_CASEP may be NULL, in which case the above comment doesn't
1596 apply and no action is taken regardless of whether a default case is
1600 preprocess_case_label_vec_for_gimple (VEC(tree
,heap
) *labels
,
1602 tree
*default_casep
)
1604 tree min_value
, max_value
;
1605 tree default_case
= NULL_TREE
;
1609 min_value
= TYPE_MIN_VALUE (index_type
);
1610 max_value
= TYPE_MAX_VALUE (index_type
);
1611 while (i
< VEC_length (tree
, labels
))
1613 tree elt
= VEC_index (tree
, labels
, i
);
1614 tree low
= CASE_LOW (elt
);
1615 tree high
= CASE_HIGH (elt
);
1616 bool remove_element
= FALSE
;
1620 gcc_checking_assert (TREE_CODE (low
) == INTEGER_CST
);
1621 gcc_checking_assert (!high
|| TREE_CODE (high
) == INTEGER_CST
);
1623 /* This is a non-default case label, i.e. it has a value.
1625 See if the case label is reachable within the range of
1626 the index type. Remove out-of-range case values. Turn
1627 case ranges into a canonical form (high > low strictly)
1628 and convert the case label values to the index type.
1630 NB: The type of gimple_switch_index() may be the promoted
1631 type, but the case labels retain the original type. */
1635 /* This is a case range. Discard empty ranges.
1636 If the bounds or the range are equal, turn this
1637 into a simple (one-value) case. */
1638 int cmp
= tree_int_cst_compare (high
, low
);
1640 remove_element
= TRUE
;
1647 /* If the simple case value is unreachable, ignore it. */
1648 if ((TREE_CODE (min_value
) == INTEGER_CST
1649 && tree_int_cst_compare (low
, min_value
) < 0)
1650 || (TREE_CODE (max_value
) == INTEGER_CST
1651 && tree_int_cst_compare (low
, max_value
) > 0))
1652 remove_element
= TRUE
;
1654 low
= fold_convert (index_type
, low
);
1658 /* If the entire case range is unreachable, ignore it. */
1659 if ((TREE_CODE (min_value
) == INTEGER_CST
1660 && tree_int_cst_compare (high
, min_value
) < 0)
1661 || (TREE_CODE (max_value
) == INTEGER_CST
1662 && tree_int_cst_compare (low
, max_value
) > 0))
1663 remove_element
= TRUE
;
1666 /* If the lower bound is less than the index type's
1667 minimum value, truncate the range bounds. */
1668 if (TREE_CODE (min_value
) == INTEGER_CST
1669 && tree_int_cst_compare (low
, min_value
) < 0)
1671 low
= fold_convert (index_type
, low
);
1673 /* If the upper bound is greater than the index type's
1674 maximum value, truncate the range bounds. */
1675 if (TREE_CODE (max_value
) == INTEGER_CST
1676 && tree_int_cst_compare (high
, max_value
) > 0)
1678 high
= fold_convert (index_type
, high
);
1680 /* We may have folded a case range to a one-value case. */
1681 if (tree_int_cst_equal (low
, high
))
1686 CASE_LOW (elt
) = low
;
1687 CASE_HIGH (elt
) = high
;
1691 gcc_assert (!default_case
);
1693 /* The default case must be passed separately to the
1694 gimple_build_switch routine. But if DEFAULT_CASEP
1695 is NULL, we do not remove the default case (it would
1696 be completely lost). */
1698 remove_element
= TRUE
;
1702 VEC_ordered_remove (tree
, labels
, i
);
1708 if (!VEC_empty (tree
, labels
))
1709 sort_case_labels (labels
);
1711 if (default_casep
&& !default_case
)
1713 /* If the switch has no default label, add one, so that we jump
1714 around the switch body. If the labels already cover the whole
1715 range of the switch index_type, add the default label pointing
1716 to one of the existing labels. */
1718 && TYPE_MIN_VALUE (index_type
)
1719 && TYPE_MAX_VALUE (index_type
)
1720 && tree_int_cst_equal (CASE_LOW (VEC_index (tree
, labels
, 0)),
1721 TYPE_MIN_VALUE (index_type
)))
1723 tree low
, high
= CASE_HIGH (VEC_index (tree
, labels
, len
- 1));
1725 high
= CASE_LOW (VEC_index (tree
, labels
, len
- 1));
1726 if (tree_int_cst_equal (high
, TYPE_MAX_VALUE (index_type
)))
1728 for (i
= 1; i
< len
; i
++)
1730 high
= CASE_LOW (VEC_index (tree
, labels
, i
));
1731 low
= CASE_HIGH (VEC_index (tree
, labels
, i
- 1));
1733 low
= CASE_LOW (VEC_index (tree
, labels
, i
- 1));
1734 if ((TREE_INT_CST_LOW (low
) + 1
1735 != TREE_INT_CST_LOW (high
))
1736 || (TREE_INT_CST_HIGH (low
)
1737 + (TREE_INT_CST_LOW (high
) == 0)
1738 != TREE_INT_CST_HIGH (high
)))
1743 tree label
= CASE_LABEL (VEC_index (tree
, labels
, 0));
1744 default_case
= build_case_label (NULL_TREE
, NULL_TREE
,
1752 *default_casep
= default_case
;
1755 /* Gimplify a SWITCH_EXPR, and collect the vector of labels it can
1758 static enum gimplify_status
1759 gimplify_switch_expr (tree
*expr_p
, gimple_seq
*pre_p
)
1761 tree switch_expr
= *expr_p
;
1762 gimple_seq switch_body_seq
= NULL
;
1763 enum gimplify_status ret
;
1764 tree index_type
= TREE_TYPE (switch_expr
);
1765 if (index_type
== NULL_TREE
)
1766 index_type
= TREE_TYPE (SWITCH_COND (switch_expr
));
1768 ret
= gimplify_expr (&SWITCH_COND (switch_expr
), pre_p
, NULL
, is_gimple_val
,
1770 if (ret
== GS_ERROR
|| ret
== GS_UNHANDLED
)
1773 if (SWITCH_BODY (switch_expr
))
1775 VEC (tree
,heap
) *labels
;
1776 VEC (tree
,heap
) *saved_labels
;
1777 tree default_case
= NULL_TREE
;
1778 gimple gimple_switch
;
1780 /* If someone can be bothered to fill in the labels, they can
1781 be bothered to null out the body too. */
1782 gcc_assert (!SWITCH_LABELS (switch_expr
));
1784 /* Save old labels, get new ones from body, then restore the old
1785 labels. Save all the things from the switch body to append after. */
1786 saved_labels
= gimplify_ctxp
->case_labels
;
1787 gimplify_ctxp
->case_labels
= VEC_alloc (tree
, heap
, 8);
1789 gimplify_stmt (&SWITCH_BODY (switch_expr
), &switch_body_seq
);
1790 labels
= gimplify_ctxp
->case_labels
;
1791 gimplify_ctxp
->case_labels
= saved_labels
;
1793 preprocess_case_label_vec_for_gimple (labels
, index_type
,
1801 = build_case_label (NULL_TREE
, NULL_TREE
,
1802 create_artificial_label (UNKNOWN_LOCATION
));
1803 new_default
= gimple_build_label (CASE_LABEL (default_case
));
1804 gimplify_seq_add_stmt (&switch_body_seq
, new_default
);
1807 gimple_switch
= gimple_build_switch (SWITCH_COND (switch_expr
),
1808 default_case
, labels
);
1809 gimplify_seq_add_stmt (pre_p
, gimple_switch
);
1810 gimplify_seq_add_seq (pre_p
, switch_body_seq
);
1811 VEC_free(tree
, heap
, labels
);
1814 gcc_assert (SWITCH_LABELS (switch_expr
));
1819 /* Gimplify the CASE_LABEL_EXPR pointed to by EXPR_P. */
1821 static enum gimplify_status
1822 gimplify_case_label_expr (tree
*expr_p
, gimple_seq
*pre_p
)
1824 struct gimplify_ctx
*ctxp
;
1825 gimple gimple_label
;
1827 /* Invalid OpenMP programs can play Duff's Device type games with
1828 #pragma omp parallel. At least in the C front end, we don't
1829 detect such invalid branches until after gimplification. */
1830 for (ctxp
= gimplify_ctxp
; ; ctxp
= ctxp
->prev_context
)
1831 if (ctxp
->case_labels
)
1834 gimple_label
= gimple_build_label (CASE_LABEL (*expr_p
));
1835 VEC_safe_push (tree
, heap
, ctxp
->case_labels
, *expr_p
);
1836 gimplify_seq_add_stmt (pre_p
, gimple_label
);
1841 /* Build a GOTO to the LABEL_DECL pointed to by LABEL_P, building it first
1845 build_and_jump (tree
*label_p
)
1847 if (label_p
== NULL
)
1848 /* If there's nowhere to jump, just fall through. */
1851 if (*label_p
== NULL_TREE
)
1853 tree label
= create_artificial_label (UNKNOWN_LOCATION
);
1857 return build1 (GOTO_EXPR
, void_type_node
, *label_p
);
1860 /* Gimplify an EXIT_EXPR by converting to a GOTO_EXPR inside a COND_EXPR.
1861 This also involves building a label to jump to and communicating it to
1862 gimplify_loop_expr through gimplify_ctxp->exit_label. */
1864 static enum gimplify_status
1865 gimplify_exit_expr (tree
*expr_p
)
1867 tree cond
= TREE_OPERAND (*expr_p
, 0);
1870 expr
= build_and_jump (&gimplify_ctxp
->exit_label
);
1871 expr
= build3 (COND_EXPR
, void_type_node
, cond
, expr
, NULL_TREE
);
1877 /* A helper function to be called via walk_tree. Mark all labels under *TP
1878 as being forced. To be called for DECL_INITIAL of static variables. */
1881 force_labels_r (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
1885 if (TREE_CODE (*tp
) == LABEL_DECL
)
1886 FORCED_LABEL (*tp
) = 1;
1891 /* *EXPR_P is a COMPONENT_REF being used as an rvalue. If its type is
1892 different from its canonical type, wrap the whole thing inside a
1893 NOP_EXPR and force the type of the COMPONENT_REF to be the canonical
1896 The canonical type of a COMPONENT_REF is the type of the field being
1897 referenced--unless the field is a bit-field which can be read directly
1898 in a smaller mode, in which case the canonical type is the
1899 sign-appropriate type corresponding to that mode. */
1902 canonicalize_component_ref (tree
*expr_p
)
1904 tree expr
= *expr_p
;
1907 gcc_assert (TREE_CODE (expr
) == COMPONENT_REF
);
1909 if (INTEGRAL_TYPE_P (TREE_TYPE (expr
)))
1910 type
= TREE_TYPE (get_unwidened (expr
, NULL_TREE
));
1912 type
= TREE_TYPE (TREE_OPERAND (expr
, 1));
1914 /* One could argue that all the stuff below is not necessary for
1915 the non-bitfield case and declare it a FE error if type
1916 adjustment would be needed. */
1917 if (TREE_TYPE (expr
) != type
)
1919 #ifdef ENABLE_TYPES_CHECKING
1920 tree old_type
= TREE_TYPE (expr
);
1924 /* We need to preserve qualifiers and propagate them from
1926 type_quals
= TYPE_QUALS (type
)
1927 | TYPE_QUALS (TREE_TYPE (TREE_OPERAND (expr
, 0)));
1928 if (TYPE_QUALS (type
) != type_quals
)
1929 type
= build_qualified_type (TYPE_MAIN_VARIANT (type
), type_quals
);
1931 /* Set the type of the COMPONENT_REF to the underlying type. */
1932 TREE_TYPE (expr
) = type
;
1934 #ifdef ENABLE_TYPES_CHECKING
1935 /* It is now a FE error, if the conversion from the canonical
1936 type to the original expression type is not useless. */
1937 gcc_assert (useless_type_conversion_p (old_type
, type
));
1942 /* If a NOP conversion is changing a pointer to array of foo to a pointer
1943 to foo, embed that change in the ADDR_EXPR by converting
1948 where L is the lower bound. For simplicity, only do this for constant
1950 The constraint is that the type of &array[L] is trivially convertible
1954 canonicalize_addr_expr (tree
*expr_p
)
1956 tree expr
= *expr_p
;
1957 tree addr_expr
= TREE_OPERAND (expr
, 0);
1958 tree datype
, ddatype
, pddatype
;
1960 /* We simplify only conversions from an ADDR_EXPR to a pointer type. */
1961 if (!POINTER_TYPE_P (TREE_TYPE (expr
))
1962 || TREE_CODE (addr_expr
) != ADDR_EXPR
)
1965 /* The addr_expr type should be a pointer to an array. */
1966 datype
= TREE_TYPE (TREE_TYPE (addr_expr
));
1967 if (TREE_CODE (datype
) != ARRAY_TYPE
)
1970 /* The pointer to element type shall be trivially convertible to
1971 the expression pointer type. */
1972 ddatype
= TREE_TYPE (datype
);
1973 pddatype
= build_pointer_type (ddatype
);
1974 if (!useless_type_conversion_p (TYPE_MAIN_VARIANT (TREE_TYPE (expr
)),
1978 /* The lower bound and element sizes must be constant. */
1979 if (!TYPE_SIZE_UNIT (ddatype
)
1980 || TREE_CODE (TYPE_SIZE_UNIT (ddatype
)) != INTEGER_CST
1981 || !TYPE_DOMAIN (datype
) || !TYPE_MIN_VALUE (TYPE_DOMAIN (datype
))
1982 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (datype
))) != INTEGER_CST
)
1985 /* All checks succeeded. Build a new node to merge the cast. */
1986 *expr_p
= build4 (ARRAY_REF
, ddatype
, TREE_OPERAND (addr_expr
, 0),
1987 TYPE_MIN_VALUE (TYPE_DOMAIN (datype
)),
1988 NULL_TREE
, NULL_TREE
);
1989 *expr_p
= build1 (ADDR_EXPR
, pddatype
, *expr_p
);
1991 /* We can have stripped a required restrict qualifier above. */
1992 if (!useless_type_conversion_p (TREE_TYPE (expr
), TREE_TYPE (*expr_p
)))
1993 *expr_p
= fold_convert (TREE_TYPE (expr
), *expr_p
);
1996 /* *EXPR_P is a NOP_EXPR or CONVERT_EXPR. Remove it and/or other conversions
1997 underneath as appropriate. */
1999 static enum gimplify_status
2000 gimplify_conversion (tree
*expr_p
)
2002 location_t loc
= EXPR_LOCATION (*expr_p
);
2003 gcc_assert (CONVERT_EXPR_P (*expr_p
));
2005 /* Then strip away all but the outermost conversion. */
2006 STRIP_SIGN_NOPS (TREE_OPERAND (*expr_p
, 0));
2008 /* And remove the outermost conversion if it's useless. */
2009 if (tree_ssa_useless_type_conversion (*expr_p
))
2010 *expr_p
= TREE_OPERAND (*expr_p
, 0);
2012 /* If we still have a conversion at the toplevel,
2013 then canonicalize some constructs. */
2014 if (CONVERT_EXPR_P (*expr_p
))
2016 tree sub
= TREE_OPERAND (*expr_p
, 0);
2018 /* If a NOP conversion is changing the type of a COMPONENT_REF
2019 expression, then canonicalize its type now in order to expose more
2020 redundant conversions. */
2021 if (TREE_CODE (sub
) == COMPONENT_REF
)
2022 canonicalize_component_ref (&TREE_OPERAND (*expr_p
, 0));
2024 /* If a NOP conversion is changing a pointer to array of foo
2025 to a pointer to foo, embed that change in the ADDR_EXPR. */
2026 else if (TREE_CODE (sub
) == ADDR_EXPR
)
2027 canonicalize_addr_expr (expr_p
);
2030 /* If we have a conversion to a non-register type force the
2031 use of a VIEW_CONVERT_EXPR instead. */
2032 if (CONVERT_EXPR_P (*expr_p
) && !is_gimple_reg_type (TREE_TYPE (*expr_p
)))
2033 *expr_p
= fold_build1_loc (loc
, VIEW_CONVERT_EXPR
, TREE_TYPE (*expr_p
),
2034 TREE_OPERAND (*expr_p
, 0));
2039 /* Nonlocal VLAs seen in the current function. */
2040 static struct pointer_set_t
*nonlocal_vlas
;
2042 /* Gimplify a VAR_DECL or PARM_DECL. Return GS_OK if we expanded a
2043 DECL_VALUE_EXPR, and it's worth re-examining things. */
2045 static enum gimplify_status
2046 gimplify_var_or_parm_decl (tree
*expr_p
)
2048 tree decl
= *expr_p
;
2050 /* ??? If this is a local variable, and it has not been seen in any
2051 outer BIND_EXPR, then it's probably the result of a duplicate
2052 declaration, for which we've already issued an error. It would
2053 be really nice if the front end wouldn't leak these at all.
2054 Currently the only known culprit is C++ destructors, as seen
2055 in g++.old-deja/g++.jason/binding.C. */
2056 if (TREE_CODE (decl
) == VAR_DECL
2057 && !DECL_SEEN_IN_BIND_EXPR_P (decl
)
2058 && !TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
)
2059 && decl_function_context (decl
) == current_function_decl
)
2061 gcc_assert (seen_error ());
2065 /* When within an OpenMP context, notice uses of variables. */
2066 if (gimplify_omp_ctxp
&& omp_notice_variable (gimplify_omp_ctxp
, decl
, true))
2069 /* If the decl is an alias for another expression, substitute it now. */
2070 if (DECL_HAS_VALUE_EXPR_P (decl
))
2072 tree value_expr
= DECL_VALUE_EXPR (decl
);
2074 /* For referenced nonlocal VLAs add a decl for debugging purposes
2075 to the current function. */
2076 if (TREE_CODE (decl
) == VAR_DECL
2077 && TREE_CODE (DECL_SIZE_UNIT (decl
)) != INTEGER_CST
2078 && nonlocal_vlas
!= NULL
2079 && TREE_CODE (value_expr
) == INDIRECT_REF
2080 && TREE_CODE (TREE_OPERAND (value_expr
, 0)) == VAR_DECL
2081 && decl_function_context (decl
) != current_function_decl
)
2083 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
;
2084 while (ctx
&& ctx
->region_type
== ORT_WORKSHARE
)
2085 ctx
= ctx
->outer_context
;
2086 if (!ctx
&& !pointer_set_insert (nonlocal_vlas
, decl
))
2088 tree copy
= copy_node (decl
), block
;
2090 lang_hooks
.dup_lang_specific_decl (copy
);
2091 SET_DECL_RTL (copy
, 0);
2092 TREE_USED (copy
) = 1;
2093 block
= DECL_INITIAL (current_function_decl
);
2094 DECL_CHAIN (copy
) = BLOCK_VARS (block
);
2095 BLOCK_VARS (block
) = copy
;
2096 SET_DECL_VALUE_EXPR (copy
, unshare_expr (value_expr
));
2097 DECL_HAS_VALUE_EXPR_P (copy
) = 1;
2101 *expr_p
= unshare_expr (value_expr
);
2108 /* Gimplify the COMPONENT_REF, ARRAY_REF, REALPART_EXPR or IMAGPART_EXPR
2112 : min_lval '[' val ']'
2114 | compound_lval '[' val ']'
2115 | compound_lval '.' ID
2117 This is not part of the original SIMPLE definition, which separates
2118 array and member references, but it seems reasonable to handle them
2119 together. Also, this way we don't run into problems with union
2120 aliasing; gcc requires that for accesses through a union to alias, the
2121 union reference must be explicit, which was not always the case when we
2122 were splitting up array and member refs.
2124 PRE_P points to the sequence where side effects that must happen before
2125 *EXPR_P should be stored.
2127 POST_P points to the sequence where side effects that must happen after
2128 *EXPR_P should be stored. */
2130 static enum gimplify_status
2131 gimplify_compound_lval (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
2132 fallback_t fallback
)
2135 VEC(tree
,heap
) *expr_stack
;
2136 enum gimplify_status ret
= GS_ALL_DONE
, tret
;
2138 location_t loc
= EXPR_LOCATION (*expr_p
);
2139 tree expr
= *expr_p
;
2141 /* Create a stack of the subexpressions so later we can walk them in
2142 order from inner to outer. */
2143 expr_stack
= VEC_alloc (tree
, heap
, 10);
2145 /* We can handle anything that get_inner_reference can deal with. */
2146 for (p
= expr_p
; ; p
= &TREE_OPERAND (*p
, 0))
2149 /* Fold INDIRECT_REFs now to turn them into ARRAY_REFs. */
2150 if (TREE_CODE (*p
) == INDIRECT_REF
)
2151 *p
= fold_indirect_ref_loc (loc
, *p
);
2153 if (handled_component_p (*p
))
2155 /* Expand DECL_VALUE_EXPR now. In some cases that may expose
2156 additional COMPONENT_REFs. */
2157 else if ((TREE_CODE (*p
) == VAR_DECL
|| TREE_CODE (*p
) == PARM_DECL
)
2158 && gimplify_var_or_parm_decl (p
) == GS_OK
)
2163 VEC_safe_push (tree
, heap
, expr_stack
, *p
);
2166 gcc_assert (VEC_length (tree
, expr_stack
));
2168 /* Now EXPR_STACK is a stack of pointers to all the refs we've
2169 walked through and P points to the innermost expression.
2171 Java requires that we elaborated nodes in source order. That
2172 means we must gimplify the inner expression followed by each of
2173 the indices, in order. But we can't gimplify the inner
2174 expression until we deal with any variable bounds, sizes, or
2175 positions in order to deal with PLACEHOLDER_EXPRs.
2177 So we do this in three steps. First we deal with the annotations
2178 for any variables in the components, then we gimplify the base,
2179 then we gimplify any indices, from left to right. */
2180 for (i
= VEC_length (tree
, expr_stack
) - 1; i
>= 0; i
--)
2182 tree t
= VEC_index (tree
, expr_stack
, i
);
2184 if (TREE_CODE (t
) == ARRAY_REF
|| TREE_CODE (t
) == ARRAY_RANGE_REF
)
2186 /* Gimplify the low bound and element type size and put them into
2187 the ARRAY_REF. If these values are set, they have already been
2189 if (TREE_OPERAND (t
, 2) == NULL_TREE
)
2191 tree low
= unshare_expr (array_ref_low_bound (t
));
2192 if (!is_gimple_min_invariant (low
))
2194 TREE_OPERAND (t
, 2) = low
;
2195 tret
= gimplify_expr (&TREE_OPERAND (t
, 2), pre_p
,
2196 post_p
, is_gimple_reg
,
2198 ret
= MIN (ret
, tret
);
2203 tret
= gimplify_expr (&TREE_OPERAND (t
, 2), pre_p
, post_p
,
2204 is_gimple_reg
, fb_rvalue
);
2205 ret
= MIN (ret
, tret
);
2208 if (TREE_OPERAND (t
, 3) == NULL_TREE
)
2210 tree elmt_type
= TREE_TYPE (TREE_TYPE (TREE_OPERAND (t
, 0)));
2211 tree elmt_size
= unshare_expr (array_ref_element_size (t
));
2212 tree factor
= size_int (TYPE_ALIGN_UNIT (elmt_type
));
2214 /* Divide the element size by the alignment of the element
2217 = size_binop_loc (loc
, EXACT_DIV_EXPR
, elmt_size
, factor
);
2219 if (!is_gimple_min_invariant (elmt_size
))
2221 TREE_OPERAND (t
, 3) = elmt_size
;
2222 tret
= gimplify_expr (&TREE_OPERAND (t
, 3), pre_p
,
2223 post_p
, is_gimple_reg
,
2225 ret
= MIN (ret
, tret
);
2230 tret
= gimplify_expr (&TREE_OPERAND (t
, 3), pre_p
, post_p
,
2231 is_gimple_reg
, fb_rvalue
);
2232 ret
= MIN (ret
, tret
);
2235 else if (TREE_CODE (t
) == COMPONENT_REF
)
2237 /* Set the field offset into T and gimplify it. */
2238 if (TREE_OPERAND (t
, 2) == NULL_TREE
)
2240 tree offset
= unshare_expr (component_ref_field_offset (t
));
2241 tree field
= TREE_OPERAND (t
, 1);
2243 = size_int (DECL_OFFSET_ALIGN (field
) / BITS_PER_UNIT
);
2245 /* Divide the offset by its alignment. */
2246 offset
= size_binop_loc (loc
, EXACT_DIV_EXPR
, offset
, factor
);
2248 if (!is_gimple_min_invariant (offset
))
2250 TREE_OPERAND (t
, 2) = offset
;
2251 tret
= gimplify_expr (&TREE_OPERAND (t
, 2), pre_p
,
2252 post_p
, is_gimple_reg
,
2254 ret
= MIN (ret
, tret
);
2259 tret
= gimplify_expr (&TREE_OPERAND (t
, 2), pre_p
, post_p
,
2260 is_gimple_reg
, fb_rvalue
);
2261 ret
= MIN (ret
, tret
);
2266 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
2267 so as to match the min_lval predicate. Failure to do so may result
2268 in the creation of large aggregate temporaries. */
2269 tret
= gimplify_expr (p
, pre_p
, post_p
, is_gimple_min_lval
,
2270 fallback
| fb_lvalue
);
2271 ret
= MIN (ret
, tret
);
2273 /* And finally, the indices and operands of ARRAY_REF. During this
2274 loop we also remove any useless conversions. */
2275 for (; VEC_length (tree
, expr_stack
) > 0; )
2277 tree t
= VEC_pop (tree
, expr_stack
);
2279 if (TREE_CODE (t
) == ARRAY_REF
|| TREE_CODE (t
) == ARRAY_RANGE_REF
)
2281 /* Gimplify the dimension. */
2282 if (!is_gimple_min_invariant (TREE_OPERAND (t
, 1)))
2284 tret
= gimplify_expr (&TREE_OPERAND (t
, 1), pre_p
, post_p
,
2285 is_gimple_val
, fb_rvalue
);
2286 ret
= MIN (ret
, tret
);
2290 STRIP_USELESS_TYPE_CONVERSION (TREE_OPERAND (t
, 0));
2292 /* The innermost expression P may have originally had
2293 TREE_SIDE_EFFECTS set which would have caused all the outer
2294 expressions in *EXPR_P leading to P to also have had
2295 TREE_SIDE_EFFECTS set. */
2296 recalculate_side_effects (t
);
2299 /* If the outermost expression is a COMPONENT_REF, canonicalize its type. */
2300 if ((fallback
& fb_rvalue
) && TREE_CODE (*expr_p
) == COMPONENT_REF
)
2302 canonicalize_component_ref (expr_p
);
2305 VEC_free (tree
, heap
, expr_stack
);
2307 gcc_assert (*expr_p
== expr
|| ret
!= GS_ALL_DONE
);
2312 /* Gimplify the self modifying expression pointed to by EXPR_P
2315 PRE_P points to the list where side effects that must happen before
2316 *EXPR_P should be stored.
2318 POST_P points to the list where side effects that must happen after
2319 *EXPR_P should be stored.
2321 WANT_VALUE is nonzero iff we want to use the value of this expression
2322 in another expression. */
2324 static enum gimplify_status
2325 gimplify_self_mod_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
2328 enum tree_code code
;
2329 tree lhs
, lvalue
, rhs
, t1
;
2330 gimple_seq post
= NULL
, *orig_post_p
= post_p
;
2332 enum tree_code arith_code
;
2333 enum gimplify_status ret
;
2334 location_t loc
= EXPR_LOCATION (*expr_p
);
2336 code
= TREE_CODE (*expr_p
);
2338 gcc_assert (code
== POSTINCREMENT_EXPR
|| code
== POSTDECREMENT_EXPR
2339 || code
== PREINCREMENT_EXPR
|| code
== PREDECREMENT_EXPR
);
2341 /* Prefix or postfix? */
2342 if (code
== POSTINCREMENT_EXPR
|| code
== POSTDECREMENT_EXPR
)
2343 /* Faster to treat as prefix if result is not used. */
2344 postfix
= want_value
;
2348 /* For postfix, make sure the inner expression's post side effects
2349 are executed after side effects from this expression. */
2353 /* Add or subtract? */
2354 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
2355 arith_code
= PLUS_EXPR
;
2357 arith_code
= MINUS_EXPR
;
2359 /* Gimplify the LHS into a GIMPLE lvalue. */
2360 lvalue
= TREE_OPERAND (*expr_p
, 0);
2361 ret
= gimplify_expr (&lvalue
, pre_p
, post_p
, is_gimple_lvalue
, fb_lvalue
);
2362 if (ret
== GS_ERROR
)
2365 /* Extract the operands to the arithmetic operation. */
2367 rhs
= TREE_OPERAND (*expr_p
, 1);
2369 /* For postfix operator, we evaluate the LHS to an rvalue and then use
2370 that as the result value and in the postqueue operation. We also
2371 make sure to make lvalue a minimal lval, see
2372 gcc.c-torture/execute/20040313-1.c for an example where this matters. */
2375 if (!is_gimple_min_lval (lvalue
))
2377 mark_addressable (lvalue
);
2378 lvalue
= build_fold_addr_expr_loc (input_location
, lvalue
);
2379 gimplify_expr (&lvalue
, pre_p
, post_p
, is_gimple_val
, fb_rvalue
);
2380 lvalue
= build_fold_indirect_ref_loc (input_location
, lvalue
);
2382 ret
= gimplify_expr (&lhs
, pre_p
, post_p
, is_gimple_val
, fb_rvalue
);
2383 if (ret
== GS_ERROR
)
2387 /* For POINTERs increment, use POINTER_PLUS_EXPR. */
2388 if (POINTER_TYPE_P (TREE_TYPE (lhs
)))
2390 rhs
= convert_to_ptrofftype_loc (loc
, rhs
);
2391 if (arith_code
== MINUS_EXPR
)
2392 rhs
= fold_build1_loc (loc
, NEGATE_EXPR
, TREE_TYPE (rhs
), rhs
);
2393 arith_code
= POINTER_PLUS_EXPR
;
2398 tree t2
= get_initialized_tmp_var (lhs
, pre_p
, NULL
);
2399 t1
= build2 (arith_code
, TREE_TYPE (*expr_p
), t2
, rhs
);
2400 gimplify_assign (lvalue
, t1
, pre_p
);
2401 gimplify_seq_add_seq (orig_post_p
, post
);
2407 t1
= build2 (arith_code
, TREE_TYPE (*expr_p
), lhs
, rhs
);
2408 *expr_p
= build2 (MODIFY_EXPR
, TREE_TYPE (lvalue
), lvalue
, t1
);
2413 /* If *EXPR_P has a variable sized type, wrap it in a WITH_SIZE_EXPR. */
2416 maybe_with_size_expr (tree
*expr_p
)
2418 tree expr
= *expr_p
;
2419 tree type
= TREE_TYPE (expr
);
2422 /* If we've already wrapped this or the type is error_mark_node, we can't do
2424 if (TREE_CODE (expr
) == WITH_SIZE_EXPR
2425 || type
== error_mark_node
)
2428 /* If the size isn't known or is a constant, we have nothing to do. */
2429 size
= TYPE_SIZE_UNIT (type
);
2430 if (!size
|| TREE_CODE (size
) == INTEGER_CST
)
2433 /* Otherwise, make a WITH_SIZE_EXPR. */
2434 size
= unshare_expr (size
);
2435 size
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (size
, expr
);
2436 *expr_p
= build2 (WITH_SIZE_EXPR
, type
, expr
, size
);
2439 /* Helper for gimplify_call_expr. Gimplify a single argument *ARG_P
2440 Store any side-effects in PRE_P. CALL_LOCATION is the location of
2443 static enum gimplify_status
2444 gimplify_arg (tree
*arg_p
, gimple_seq
*pre_p
, location_t call_location
)
2446 bool (*test
) (tree
);
2449 /* In general, we allow lvalues for function arguments to avoid
2450 extra overhead of copying large aggregates out of even larger
2451 aggregates into temporaries only to copy the temporaries to
2452 the argument list. Make optimizers happy by pulling out to
2453 temporaries those types that fit in registers. */
2454 if (is_gimple_reg_type (TREE_TYPE (*arg_p
)))
2455 test
= is_gimple_val
, fb
= fb_rvalue
;
2458 test
= is_gimple_lvalue
, fb
= fb_either
;
2459 /* Also strip a TARGET_EXPR that would force an extra copy. */
2460 if (TREE_CODE (*arg_p
) == TARGET_EXPR
)
2462 tree init
= TARGET_EXPR_INITIAL (*arg_p
);
2464 && !VOID_TYPE_P (TREE_TYPE (init
)))
2469 /* If this is a variable sized type, we must remember the size. */
2470 maybe_with_size_expr (arg_p
);
2472 /* FIXME diagnostics: This will mess up gcc.dg/Warray-bounds.c. */
2473 /* Make sure arguments have the same location as the function call
2475 protected_set_expr_location (*arg_p
, call_location
);
2477 /* There is a sequence point before a function call. Side effects in
2478 the argument list must occur before the actual call. So, when
2479 gimplifying arguments, force gimplify_expr to use an internal
2480 post queue which is then appended to the end of PRE_P. */
2481 return gimplify_expr (arg_p
, pre_p
, NULL
, test
, fb
);
2484 /* Gimplify the CALL_EXPR node *EXPR_P into the GIMPLE sequence PRE_P.
2485 WANT_VALUE is true if the result of the call is desired. */
2487 static enum gimplify_status
2488 gimplify_call_expr (tree
*expr_p
, gimple_seq
*pre_p
, bool want_value
)
2490 tree fndecl
, parms
, p
, fnptrtype
;
2491 enum gimplify_status ret
;
2494 bool builtin_va_start_p
= FALSE
;
2495 location_t loc
= EXPR_LOCATION (*expr_p
);
2497 gcc_assert (TREE_CODE (*expr_p
) == CALL_EXPR
);
2499 /* For reliable diagnostics during inlining, it is necessary that
2500 every call_expr be annotated with file and line. */
2501 if (! EXPR_HAS_LOCATION (*expr_p
))
2502 SET_EXPR_LOCATION (*expr_p
, input_location
);
2504 /* This may be a call to a builtin function.
2506 Builtin function calls may be transformed into different
2507 (and more efficient) builtin function calls under certain
2508 circumstances. Unfortunately, gimplification can muck things
2509 up enough that the builtin expanders are not aware that certain
2510 transformations are still valid.
2512 So we attempt transformation/gimplification of the call before
2513 we gimplify the CALL_EXPR. At this time we do not manage to
2514 transform all calls in the same manner as the expanders do, but
2515 we do transform most of them. */
2516 fndecl
= get_callee_fndecl (*expr_p
);
2518 && DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
2519 switch (DECL_FUNCTION_CODE (fndecl
))
2521 case BUILT_IN_VA_START
:
2523 builtin_va_start_p
= TRUE
;
2524 if (call_expr_nargs (*expr_p
) < 2)
2526 error ("too few arguments to function %<va_start%>");
2527 *expr_p
= build_empty_stmt (EXPR_LOCATION (*expr_p
));
2531 if (fold_builtin_next_arg (*expr_p
, true))
2533 *expr_p
= build_empty_stmt (EXPR_LOCATION (*expr_p
));
2540 expanded_location loc
= expand_location (EXPR_LOCATION (*expr_p
));
2541 *expr_p
= build_int_cst (TREE_TYPE (*expr_p
), loc
.line
);
2546 expanded_location loc
= expand_location (EXPR_LOCATION (*expr_p
));
2547 *expr_p
= build_string_literal (strlen (loc
.file
) + 1, loc
.file
);
2550 case BUILT_IN_FUNCTION
:
2552 const char *function
;
2553 function
= IDENTIFIER_POINTER (DECL_NAME (current_function_decl
));
2554 *expr_p
= build_string_literal (strlen (function
) + 1, function
);
2560 if (fndecl
&& DECL_BUILT_IN (fndecl
))
2562 tree new_tree
= fold_call_expr (input_location
, *expr_p
, !want_value
);
2563 if (new_tree
&& new_tree
!= *expr_p
)
2565 /* There was a transformation of this call which computes the
2566 same value, but in a more efficient way. Return and try
2573 /* Remember the original function pointer type. */
2574 fnptrtype
= TREE_TYPE (CALL_EXPR_FN (*expr_p
));
2576 /* There is a sequence point before the call, so any side effects in
2577 the calling expression must occur before the actual call. Force
2578 gimplify_expr to use an internal post queue. */
2579 ret
= gimplify_expr (&CALL_EXPR_FN (*expr_p
), pre_p
, NULL
,
2580 is_gimple_call_addr
, fb_rvalue
);
2582 nargs
= call_expr_nargs (*expr_p
);
2584 /* Get argument types for verification. */
2585 fndecl
= get_callee_fndecl (*expr_p
);
2588 parms
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
2589 else if (POINTER_TYPE_P (TREE_TYPE (CALL_EXPR_FN (*expr_p
))))
2590 parms
= TYPE_ARG_TYPES (TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (*expr_p
))));
2592 if (fndecl
&& DECL_ARGUMENTS (fndecl
))
2593 p
= DECL_ARGUMENTS (fndecl
);
2598 for (i
= 0; i
< nargs
&& p
; i
++, p
= TREE_CHAIN (p
))
2601 /* If the last argument is __builtin_va_arg_pack () and it is not
2602 passed as a named argument, decrease the number of CALL_EXPR
2603 arguments and set instead the CALL_EXPR_VA_ARG_PACK flag. */
2606 && TREE_CODE (CALL_EXPR_ARG (*expr_p
, nargs
- 1)) == CALL_EXPR
)
2608 tree last_arg
= CALL_EXPR_ARG (*expr_p
, nargs
- 1);
2609 tree last_arg_fndecl
= get_callee_fndecl (last_arg
);
2612 && TREE_CODE (last_arg_fndecl
) == FUNCTION_DECL
2613 && DECL_BUILT_IN_CLASS (last_arg_fndecl
) == BUILT_IN_NORMAL
2614 && DECL_FUNCTION_CODE (last_arg_fndecl
) == BUILT_IN_VA_ARG_PACK
)
2616 tree call
= *expr_p
;
2619 *expr_p
= build_call_array_loc (loc
, TREE_TYPE (call
),
2620 CALL_EXPR_FN (call
),
2621 nargs
, CALL_EXPR_ARGP (call
));
2623 /* Copy all CALL_EXPR flags, location and block, except
2624 CALL_EXPR_VA_ARG_PACK flag. */
2625 CALL_EXPR_STATIC_CHAIN (*expr_p
) = CALL_EXPR_STATIC_CHAIN (call
);
2626 CALL_EXPR_TAILCALL (*expr_p
) = CALL_EXPR_TAILCALL (call
);
2627 CALL_EXPR_RETURN_SLOT_OPT (*expr_p
)
2628 = CALL_EXPR_RETURN_SLOT_OPT (call
);
2629 CALL_FROM_THUNK_P (*expr_p
) = CALL_FROM_THUNK_P (call
);
2630 SET_EXPR_LOCATION (*expr_p
, EXPR_LOCATION (call
));
2632 /* Set CALL_EXPR_VA_ARG_PACK. */
2633 CALL_EXPR_VA_ARG_PACK (*expr_p
) = 1;
2637 /* Finally, gimplify the function arguments. */
2640 for (i
= (PUSH_ARGS_REVERSED
? nargs
- 1 : 0);
2641 PUSH_ARGS_REVERSED
? i
>= 0 : i
< nargs
;
2642 PUSH_ARGS_REVERSED
? i
-- : i
++)
2644 enum gimplify_status t
;
2646 /* Avoid gimplifying the second argument to va_start, which needs to
2647 be the plain PARM_DECL. */
2648 if ((i
!= 1) || !builtin_va_start_p
)
2650 t
= gimplify_arg (&CALL_EXPR_ARG (*expr_p
, i
), pre_p
,
2651 EXPR_LOCATION (*expr_p
));
2659 /* Verify the function result. */
2660 if (want_value
&& fndecl
2661 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fnptrtype
))))
2663 error_at (loc
, "using result of function returning %<void%>");
2667 /* Try this again in case gimplification exposed something. */
2668 if (ret
!= GS_ERROR
)
2670 tree new_tree
= fold_call_expr (input_location
, *expr_p
, !want_value
);
2672 if (new_tree
&& new_tree
!= *expr_p
)
2674 /* There was a transformation of this call which computes the
2675 same value, but in a more efficient way. Return and try
2683 *expr_p
= error_mark_node
;
2687 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
2688 decl. This allows us to eliminate redundant or useless
2689 calls to "const" functions. */
2690 if (TREE_CODE (*expr_p
) == CALL_EXPR
)
2692 int flags
= call_expr_flags (*expr_p
);
2693 if (flags
& (ECF_CONST
| ECF_PURE
)
2694 /* An infinite loop is considered a side effect. */
2695 && !(flags
& (ECF_LOOPING_CONST_OR_PURE
)))
2696 TREE_SIDE_EFFECTS (*expr_p
) = 0;
2699 /* If the value is not needed by the caller, emit a new GIMPLE_CALL
2700 and clear *EXPR_P. Otherwise, leave *EXPR_P in its gimplified
2701 form and delegate the creation of a GIMPLE_CALL to
2702 gimplify_modify_expr. This is always possible because when
2703 WANT_VALUE is true, the caller wants the result of this call into
2704 a temporary, which means that we will emit an INIT_EXPR in
2705 internal_get_tmp_var which will then be handled by
2706 gimplify_modify_expr. */
2709 /* The CALL_EXPR in *EXPR_P is already in GIMPLE form, so all we
2710 have to do is replicate it as a GIMPLE_CALL tuple. */
2711 gimple_stmt_iterator gsi
;
2712 call
= gimple_build_call_from_tree (*expr_p
);
2713 gimple_call_set_fntype (call
, TREE_TYPE (fnptrtype
));
2714 gimplify_seq_add_stmt (pre_p
, call
);
2715 gsi
= gsi_last (*pre_p
);
2717 *expr_p
= NULL_TREE
;
2720 /* Remember the original function type. */
2721 CALL_EXPR_FN (*expr_p
) = build1 (NOP_EXPR
, fnptrtype
,
2722 CALL_EXPR_FN (*expr_p
));
2727 /* Handle shortcut semantics in the predicate operand of a COND_EXPR by
2728 rewriting it into multiple COND_EXPRs, and possibly GOTO_EXPRs.
2730 TRUE_LABEL_P and FALSE_LABEL_P point to the labels to jump to if the
2731 condition is true or false, respectively. If null, we should generate
2732 our own to skip over the evaluation of this specific expression.
2734 LOCUS is the source location of the COND_EXPR.
2736 This function is the tree equivalent of do_jump.
2738 shortcut_cond_r should only be called by shortcut_cond_expr. */
2741 shortcut_cond_r (tree pred
, tree
*true_label_p
, tree
*false_label_p
,
2744 tree local_label
= NULL_TREE
;
2745 tree t
, expr
= NULL
;
2747 /* OK, it's not a simple case; we need to pull apart the COND_EXPR to
2748 retain the shortcut semantics. Just insert the gotos here;
2749 shortcut_cond_expr will append the real blocks later. */
2750 if (TREE_CODE (pred
) == TRUTH_ANDIF_EXPR
)
2752 location_t new_locus
;
2754 /* Turn if (a && b) into
2756 if (a); else goto no;
2757 if (b) goto yes; else goto no;
2760 if (false_label_p
== NULL
)
2761 false_label_p
= &local_label
;
2763 /* Keep the original source location on the first 'if'. */
2764 t
= shortcut_cond_r (TREE_OPERAND (pred
, 0), NULL
, false_label_p
, locus
);
2765 append_to_statement_list (t
, &expr
);
2767 /* Set the source location of the && on the second 'if'. */
2768 new_locus
= EXPR_HAS_LOCATION (pred
) ? EXPR_LOCATION (pred
) : locus
;
2769 t
= shortcut_cond_r (TREE_OPERAND (pred
, 1), true_label_p
, false_label_p
,
2771 append_to_statement_list (t
, &expr
);
2773 else if (TREE_CODE (pred
) == TRUTH_ORIF_EXPR
)
2775 location_t new_locus
;
2777 /* Turn if (a || b) into
2780 if (b) goto yes; else goto no;
2783 if (true_label_p
== NULL
)
2784 true_label_p
= &local_label
;
2786 /* Keep the original source location on the first 'if'. */
2787 t
= shortcut_cond_r (TREE_OPERAND (pred
, 0), true_label_p
, NULL
, locus
);
2788 append_to_statement_list (t
, &expr
);
2790 /* Set the source location of the || on the second 'if'. */
2791 new_locus
= EXPR_HAS_LOCATION (pred
) ? EXPR_LOCATION (pred
) : locus
;
2792 t
= shortcut_cond_r (TREE_OPERAND (pred
, 1), true_label_p
, false_label_p
,
2794 append_to_statement_list (t
, &expr
);
2796 else if (TREE_CODE (pred
) == COND_EXPR
2797 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred
, 1)))
2798 && !VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (pred
, 2))))
2800 location_t new_locus
;
2802 /* As long as we're messing with gotos, turn if (a ? b : c) into
2804 if (b) goto yes; else goto no;
2806 if (c) goto yes; else goto no;
2808 Don't do this if one of the arms has void type, which can happen
2809 in C++ when the arm is throw. */
2811 /* Keep the original source location on the first 'if'. Set the source
2812 location of the ? on the second 'if'. */
2813 new_locus
= EXPR_HAS_LOCATION (pred
) ? EXPR_LOCATION (pred
) : locus
;
2814 expr
= build3 (COND_EXPR
, void_type_node
, TREE_OPERAND (pred
, 0),
2815 shortcut_cond_r (TREE_OPERAND (pred
, 1), true_label_p
,
2816 false_label_p
, locus
),
2817 shortcut_cond_r (TREE_OPERAND (pred
, 2), true_label_p
,
2818 false_label_p
, new_locus
));
2822 expr
= build3 (COND_EXPR
, void_type_node
, pred
,
2823 build_and_jump (true_label_p
),
2824 build_and_jump (false_label_p
));
2825 SET_EXPR_LOCATION (expr
, locus
);
2830 t
= build1 (LABEL_EXPR
, void_type_node
, local_label
);
2831 append_to_statement_list (t
, &expr
);
2837 /* Given a conditional expression EXPR with short-circuit boolean
2838 predicates using TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR, break the
2839 predicate apart into the equivalent sequence of conditionals. */
2842 shortcut_cond_expr (tree expr
)
2844 tree pred
= TREE_OPERAND (expr
, 0);
2845 tree then_
= TREE_OPERAND (expr
, 1);
2846 tree else_
= TREE_OPERAND (expr
, 2);
2847 tree true_label
, false_label
, end_label
, t
;
2849 tree
*false_label_p
;
2850 bool emit_end
, emit_false
, jump_over_else
;
2851 bool then_se
= then_
&& TREE_SIDE_EFFECTS (then_
);
2852 bool else_se
= else_
&& TREE_SIDE_EFFECTS (else_
);
2854 /* First do simple transformations. */
2857 /* If there is no 'else', turn
2860 if (a) if (b) then c. */
2861 while (TREE_CODE (pred
) == TRUTH_ANDIF_EXPR
)
2863 /* Keep the original source location on the first 'if'. */
2864 location_t locus
= EXPR_LOC_OR_HERE (expr
);
2865 TREE_OPERAND (expr
, 0) = TREE_OPERAND (pred
, 1);
2866 /* Set the source location of the && on the second 'if'. */
2867 if (EXPR_HAS_LOCATION (pred
))
2868 SET_EXPR_LOCATION (expr
, EXPR_LOCATION (pred
));
2869 then_
= shortcut_cond_expr (expr
);
2870 then_se
= then_
&& TREE_SIDE_EFFECTS (then_
);
2871 pred
= TREE_OPERAND (pred
, 0);
2872 expr
= build3 (COND_EXPR
, void_type_node
, pred
, then_
, NULL_TREE
);
2873 SET_EXPR_LOCATION (expr
, locus
);
2879 /* If there is no 'then', turn
2882 if (a); else if (b); else d. */
2883 while (TREE_CODE (pred
) == TRUTH_ORIF_EXPR
)
2885 /* Keep the original source location on the first 'if'. */
2886 location_t locus
= EXPR_LOC_OR_HERE (expr
);
2887 TREE_OPERAND (expr
, 0) = TREE_OPERAND (pred
, 1);
2888 /* Set the source location of the || on the second 'if'. */
2889 if (EXPR_HAS_LOCATION (pred
))
2890 SET_EXPR_LOCATION (expr
, EXPR_LOCATION (pred
));
2891 else_
= shortcut_cond_expr (expr
);
2892 else_se
= else_
&& TREE_SIDE_EFFECTS (else_
);
2893 pred
= TREE_OPERAND (pred
, 0);
2894 expr
= build3 (COND_EXPR
, void_type_node
, pred
, NULL_TREE
, else_
);
2895 SET_EXPR_LOCATION (expr
, locus
);
2899 /* If we're done, great. */
2900 if (TREE_CODE (pred
) != TRUTH_ANDIF_EXPR
2901 && TREE_CODE (pred
) != TRUTH_ORIF_EXPR
)
2904 /* Otherwise we need to mess with gotos. Change
2907 if (a); else goto no;
2910 and recursively gimplify the condition. */
2912 true_label
= false_label
= end_label
= NULL_TREE
;
2914 /* If our arms just jump somewhere, hijack those labels so we don't
2915 generate jumps to jumps. */
2918 && TREE_CODE (then_
) == GOTO_EXPR
2919 && TREE_CODE (GOTO_DESTINATION (then_
)) == LABEL_DECL
)
2921 true_label
= GOTO_DESTINATION (then_
);
2927 && TREE_CODE (else_
) == GOTO_EXPR
2928 && TREE_CODE (GOTO_DESTINATION (else_
)) == LABEL_DECL
)
2930 false_label
= GOTO_DESTINATION (else_
);
2935 /* If we aren't hijacking a label for the 'then' branch, it falls through. */
2937 true_label_p
= &true_label
;
2939 true_label_p
= NULL
;
2941 /* The 'else' branch also needs a label if it contains interesting code. */
2942 if (false_label
|| else_se
)
2943 false_label_p
= &false_label
;
2945 false_label_p
= NULL
;
2947 /* If there was nothing else in our arms, just forward the label(s). */
2948 if (!then_se
&& !else_se
)
2949 return shortcut_cond_r (pred
, true_label_p
, false_label_p
,
2950 EXPR_LOC_OR_HERE (expr
));
2952 /* If our last subexpression already has a terminal label, reuse it. */
2954 t
= expr_last (else_
);
2956 t
= expr_last (then_
);
2959 if (t
&& TREE_CODE (t
) == LABEL_EXPR
)
2960 end_label
= LABEL_EXPR_LABEL (t
);
2962 /* If we don't care about jumping to the 'else' branch, jump to the end
2963 if the condition is false. */
2965 false_label_p
= &end_label
;
2967 /* We only want to emit these labels if we aren't hijacking them. */
2968 emit_end
= (end_label
== NULL_TREE
);
2969 emit_false
= (false_label
== NULL_TREE
);
2971 /* We only emit the jump over the else clause if we have to--if the
2972 then clause may fall through. Otherwise we can wind up with a
2973 useless jump and a useless label at the end of gimplified code,
2974 which will cause us to think that this conditional as a whole
2975 falls through even if it doesn't. If we then inline a function
2976 which ends with such a condition, that can cause us to issue an
2977 inappropriate warning about control reaching the end of a
2978 non-void function. */
2979 jump_over_else
= block_may_fallthru (then_
);
2981 pred
= shortcut_cond_r (pred
, true_label_p
, false_label_p
,
2982 EXPR_LOC_OR_HERE (expr
));
2985 append_to_statement_list (pred
, &expr
);
2987 append_to_statement_list (then_
, &expr
);
2992 tree last
= expr_last (expr
);
2993 t
= build_and_jump (&end_label
);
2994 if (EXPR_HAS_LOCATION (last
))
2995 SET_EXPR_LOCATION (t
, EXPR_LOCATION (last
));
2996 append_to_statement_list (t
, &expr
);
3000 t
= build1 (LABEL_EXPR
, void_type_node
, false_label
);
3001 append_to_statement_list (t
, &expr
);
3003 append_to_statement_list (else_
, &expr
);
3005 if (emit_end
&& end_label
)
3007 t
= build1 (LABEL_EXPR
, void_type_node
, end_label
);
3008 append_to_statement_list (t
, &expr
);
3014 /* EXPR is used in a boolean context; make sure it has BOOLEAN_TYPE. */
3017 gimple_boolify (tree expr
)
3019 tree type
= TREE_TYPE (expr
);
3020 location_t loc
= EXPR_LOCATION (expr
);
3022 if (TREE_CODE (expr
) == NE_EXPR
3023 && TREE_CODE (TREE_OPERAND (expr
, 0)) == CALL_EXPR
3024 && integer_zerop (TREE_OPERAND (expr
, 1)))
3026 tree call
= TREE_OPERAND (expr
, 0);
3027 tree fn
= get_callee_fndecl (call
);
3029 /* For __builtin_expect ((long) (x), y) recurse into x as well
3030 if x is truth_value_p. */
3032 && DECL_BUILT_IN_CLASS (fn
) == BUILT_IN_NORMAL
3033 && DECL_FUNCTION_CODE (fn
) == BUILT_IN_EXPECT
3034 && call_expr_nargs (call
) == 2)
3036 tree arg
= CALL_EXPR_ARG (call
, 0);
3039 if (TREE_CODE (arg
) == NOP_EXPR
3040 && TREE_TYPE (arg
) == TREE_TYPE (call
))
3041 arg
= TREE_OPERAND (arg
, 0);
3042 if (truth_value_p (TREE_CODE (arg
)))
3044 arg
= gimple_boolify (arg
);
3045 CALL_EXPR_ARG (call
, 0)
3046 = fold_convert_loc (loc
, TREE_TYPE (call
), arg
);
3052 switch (TREE_CODE (expr
))
3054 case TRUTH_AND_EXPR
:
3056 case TRUTH_XOR_EXPR
:
3057 case TRUTH_ANDIF_EXPR
:
3058 case TRUTH_ORIF_EXPR
:
3059 /* Also boolify the arguments of truth exprs. */
3060 TREE_OPERAND (expr
, 1) = gimple_boolify (TREE_OPERAND (expr
, 1));
3063 case TRUTH_NOT_EXPR
:
3064 TREE_OPERAND (expr
, 0) = gimple_boolify (TREE_OPERAND (expr
, 0));
3066 /* These expressions always produce boolean results. */
3067 if (TREE_CODE (type
) != BOOLEAN_TYPE
)
3068 TREE_TYPE (expr
) = boolean_type_node
;
3072 if (COMPARISON_CLASS_P (expr
))
3074 /* There expressions always prduce boolean results. */
3075 if (TREE_CODE (type
) != BOOLEAN_TYPE
)
3076 TREE_TYPE (expr
) = boolean_type_node
;
3079 /* Other expressions that get here must have boolean values, but
3080 might need to be converted to the appropriate mode. */
3081 if (TREE_CODE (type
) == BOOLEAN_TYPE
)
3083 return fold_convert_loc (loc
, boolean_type_node
, expr
);
3087 /* Given a conditional expression *EXPR_P without side effects, gimplify
3088 its operands. New statements are inserted to PRE_P. */
3090 static enum gimplify_status
3091 gimplify_pure_cond_expr (tree
*expr_p
, gimple_seq
*pre_p
)
3093 tree expr
= *expr_p
, cond
;
3094 enum gimplify_status ret
, tret
;
3095 enum tree_code code
;
3097 cond
= gimple_boolify (COND_EXPR_COND (expr
));
3099 /* We need to handle && and || specially, as their gimplification
3100 creates pure cond_expr, thus leading to an infinite cycle otherwise. */
3101 code
= TREE_CODE (cond
);
3102 if (code
== TRUTH_ANDIF_EXPR
)
3103 TREE_SET_CODE (cond
, TRUTH_AND_EXPR
);
3104 else if (code
== TRUTH_ORIF_EXPR
)
3105 TREE_SET_CODE (cond
, TRUTH_OR_EXPR
);
3106 ret
= gimplify_expr (&cond
, pre_p
, NULL
, is_gimple_condexpr
, fb_rvalue
);
3107 COND_EXPR_COND (*expr_p
) = cond
;
3109 tret
= gimplify_expr (&COND_EXPR_THEN (expr
), pre_p
, NULL
,
3110 is_gimple_val
, fb_rvalue
);
3111 ret
= MIN (ret
, tret
);
3112 tret
= gimplify_expr (&COND_EXPR_ELSE (expr
), pre_p
, NULL
,
3113 is_gimple_val
, fb_rvalue
);
3115 return MIN (ret
, tret
);
3118 /* Return true if evaluating EXPR could trap.
3119 EXPR is GENERIC, while tree_could_trap_p can be called
3123 generic_expr_could_trap_p (tree expr
)
3127 if (!expr
|| is_gimple_val (expr
))
3130 if (!EXPR_P (expr
) || tree_could_trap_p (expr
))
3133 n
= TREE_OPERAND_LENGTH (expr
);
3134 for (i
= 0; i
< n
; i
++)
3135 if (generic_expr_could_trap_p (TREE_OPERAND (expr
, i
)))
3141 /* Convert the conditional expression pointed to by EXPR_P '(p) ? a : b;'
3150 The second form is used when *EXPR_P is of type void.
3152 PRE_P points to the list where side effects that must happen before
3153 *EXPR_P should be stored. */
3155 static enum gimplify_status
3156 gimplify_cond_expr (tree
*expr_p
, gimple_seq
*pre_p
, fallback_t fallback
)
3158 tree expr
= *expr_p
;
3159 tree type
= TREE_TYPE (expr
);
3160 location_t loc
= EXPR_LOCATION (expr
);
3161 tree tmp
, arm1
, arm2
;
3162 enum gimplify_status ret
;
3163 tree label_true
, label_false
, label_cont
;
3164 bool have_then_clause_p
, have_else_clause_p
;
3166 enum tree_code pred_code
;
3167 gimple_seq seq
= NULL
;
3169 /* If this COND_EXPR has a value, copy the values into a temporary within
3171 if (!VOID_TYPE_P (type
))
3173 tree then_
= TREE_OPERAND (expr
, 1), else_
= TREE_OPERAND (expr
, 2);
3176 /* If either an rvalue is ok or we do not require an lvalue, create the
3177 temporary. But we cannot do that if the type is addressable. */
3178 if (((fallback
& fb_rvalue
) || !(fallback
& fb_lvalue
))
3179 && !TREE_ADDRESSABLE (type
))
3181 if (gimplify_ctxp
->allow_rhs_cond_expr
3182 /* If either branch has side effects or could trap, it can't be
3183 evaluated unconditionally. */
3184 && !TREE_SIDE_EFFECTS (then_
)
3185 && !generic_expr_could_trap_p (then_
)
3186 && !TREE_SIDE_EFFECTS (else_
)
3187 && !generic_expr_could_trap_p (else_
))
3188 return gimplify_pure_cond_expr (expr_p
, pre_p
);
3190 tmp
= create_tmp_var (type
, "iftmp");
3194 /* Otherwise, only create and copy references to the values. */
3197 type
= build_pointer_type (type
);
3199 if (!VOID_TYPE_P (TREE_TYPE (then_
)))
3200 then_
= build_fold_addr_expr_loc (loc
, then_
);
3202 if (!VOID_TYPE_P (TREE_TYPE (else_
)))
3203 else_
= build_fold_addr_expr_loc (loc
, else_
);
3206 = build3 (COND_EXPR
, type
, TREE_OPERAND (expr
, 0), then_
, else_
);
3208 tmp
= create_tmp_var (type
, "iftmp");
3209 result
= build_simple_mem_ref_loc (loc
, tmp
);
3212 /* Build the new then clause, `tmp = then_;'. But don't build the
3213 assignment if the value is void; in C++ it can be if it's a throw. */
3214 if (!VOID_TYPE_P (TREE_TYPE (then_
)))
3215 TREE_OPERAND (expr
, 1) = build2 (MODIFY_EXPR
, type
, tmp
, then_
);
3217 /* Similarly, build the new else clause, `tmp = else_;'. */
3218 if (!VOID_TYPE_P (TREE_TYPE (else_
)))
3219 TREE_OPERAND (expr
, 2) = build2 (MODIFY_EXPR
, type
, tmp
, else_
);
3221 TREE_TYPE (expr
) = void_type_node
;
3222 recalculate_side_effects (expr
);
3224 /* Move the COND_EXPR to the prequeue. */
3225 gimplify_stmt (&expr
, pre_p
);
3231 /* Remove any COMPOUND_EXPR so the following cases will be caught. */
3232 STRIP_TYPE_NOPS (TREE_OPERAND (expr
, 0));
3233 if (TREE_CODE (TREE_OPERAND (expr
, 0)) == COMPOUND_EXPR
)
3234 gimplify_compound_expr (&TREE_OPERAND (expr
, 0), pre_p
, true);
3236 /* Make sure the condition has BOOLEAN_TYPE. */
3237 TREE_OPERAND (expr
, 0) = gimple_boolify (TREE_OPERAND (expr
, 0));
3239 /* Break apart && and || conditions. */
3240 if (TREE_CODE (TREE_OPERAND (expr
, 0)) == TRUTH_ANDIF_EXPR
3241 || TREE_CODE (TREE_OPERAND (expr
, 0)) == TRUTH_ORIF_EXPR
)
3243 expr
= shortcut_cond_expr (expr
);
3245 if (expr
!= *expr_p
)
3249 /* We can't rely on gimplify_expr to re-gimplify the expanded
3250 form properly, as cleanups might cause the target labels to be
3251 wrapped in a TRY_FINALLY_EXPR. To prevent that, we need to
3252 set up a conditional context. */
3253 gimple_push_condition ();
3254 gimplify_stmt (expr_p
, &seq
);
3255 gimple_pop_condition (pre_p
);
3256 gimple_seq_add_seq (pre_p
, seq
);
3262 /* Now do the normal gimplification. */
3264 /* Gimplify condition. */
3265 ret
= gimplify_expr (&TREE_OPERAND (expr
, 0), pre_p
, NULL
, is_gimple_condexpr
,
3267 if (ret
== GS_ERROR
)
3269 gcc_assert (TREE_OPERAND (expr
, 0) != NULL_TREE
);
3271 gimple_push_condition ();
3273 have_then_clause_p
= have_else_clause_p
= false;
3274 if (TREE_OPERAND (expr
, 1) != NULL
3275 && TREE_CODE (TREE_OPERAND (expr
, 1)) == GOTO_EXPR
3276 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr
, 1))) == LABEL_DECL
3277 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr
, 1)))
3278 == current_function_decl
)
3279 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3280 have different locations, otherwise we end up with incorrect
3281 location information on the branches. */
3283 || !EXPR_HAS_LOCATION (expr
)
3284 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr
, 1))
3285 || EXPR_LOCATION (expr
) == EXPR_LOCATION (TREE_OPERAND (expr
, 1))))
3287 label_true
= GOTO_DESTINATION (TREE_OPERAND (expr
, 1));
3288 have_then_clause_p
= true;
3291 label_true
= create_artificial_label (UNKNOWN_LOCATION
);
3292 if (TREE_OPERAND (expr
, 2) != NULL
3293 && TREE_CODE (TREE_OPERAND (expr
, 2)) == GOTO_EXPR
3294 && TREE_CODE (GOTO_DESTINATION (TREE_OPERAND (expr
, 2))) == LABEL_DECL
3295 && (DECL_CONTEXT (GOTO_DESTINATION (TREE_OPERAND (expr
, 2)))
3296 == current_function_decl
)
3297 /* For -O0 avoid this optimization if the COND_EXPR and GOTO_EXPR
3298 have different locations, otherwise we end up with incorrect
3299 location information on the branches. */
3301 || !EXPR_HAS_LOCATION (expr
)
3302 || !EXPR_HAS_LOCATION (TREE_OPERAND (expr
, 2))
3303 || EXPR_LOCATION (expr
) == EXPR_LOCATION (TREE_OPERAND (expr
, 2))))
3305 label_false
= GOTO_DESTINATION (TREE_OPERAND (expr
, 2));
3306 have_else_clause_p
= true;
3309 label_false
= create_artificial_label (UNKNOWN_LOCATION
);
3311 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr
), &pred_code
, &arm1
,
3314 gimple_cond
= gimple_build_cond (pred_code
, arm1
, arm2
, label_true
,
3317 gimplify_seq_add_stmt (&seq
, gimple_cond
);
3318 label_cont
= NULL_TREE
;
3319 if (!have_then_clause_p
)
3321 /* For if (...) {} else { code; } put label_true after
3323 if (TREE_OPERAND (expr
, 1) == NULL_TREE
3324 && !have_else_clause_p
3325 && TREE_OPERAND (expr
, 2) != NULL_TREE
)
3326 label_cont
= label_true
;
3329 gimplify_seq_add_stmt (&seq
, gimple_build_label (label_true
));
3330 have_then_clause_p
= gimplify_stmt (&TREE_OPERAND (expr
, 1), &seq
);
3331 /* For if (...) { code; } else {} or
3332 if (...) { code; } else goto label; or
3333 if (...) { code; return; } else { ... }
3334 label_cont isn't needed. */
3335 if (!have_else_clause_p
3336 && TREE_OPERAND (expr
, 2) != NULL_TREE
3337 && gimple_seq_may_fallthru (seq
))
3340 label_cont
= create_artificial_label (UNKNOWN_LOCATION
);
3342 g
= gimple_build_goto (label_cont
);
3344 /* GIMPLE_COND's are very low level; they have embedded
3345 gotos. This particular embedded goto should not be marked
3346 with the location of the original COND_EXPR, as it would
3347 correspond to the COND_EXPR's condition, not the ELSE or the
3348 THEN arms. To avoid marking it with the wrong location, flag
3349 it as "no location". */
3350 gimple_set_do_not_emit_location (g
);
3352 gimplify_seq_add_stmt (&seq
, g
);
3356 if (!have_else_clause_p
)
3358 gimplify_seq_add_stmt (&seq
, gimple_build_label (label_false
));
3359 have_else_clause_p
= gimplify_stmt (&TREE_OPERAND (expr
, 2), &seq
);
3362 gimplify_seq_add_stmt (&seq
, gimple_build_label (label_cont
));
3364 gimple_pop_condition (pre_p
);
3365 gimple_seq_add_seq (pre_p
, seq
);
3367 if (ret
== GS_ERROR
)
3369 else if (have_then_clause_p
|| have_else_clause_p
)
3373 /* Both arms are empty; replace the COND_EXPR with its predicate. */
3374 expr
= TREE_OPERAND (expr
, 0);
3375 gimplify_stmt (&expr
, pre_p
);
3382 /* Prepare the node pointed to by EXPR_P, an is_gimple_addressable expression,
3383 to be marked addressable.
3385 We cannot rely on such an expression being directly markable if a temporary
3386 has been created by the gimplification. In this case, we create another
3387 temporary and initialize it with a copy, which will become a store after we
3388 mark it addressable. This can happen if the front-end passed us something
3389 that it could not mark addressable yet, like a Fortran pass-by-reference
3390 parameter (int) floatvar. */
3393 prepare_gimple_addressable (tree
*expr_p
, gimple_seq
*seq_p
)
3395 while (handled_component_p (*expr_p
))
3396 expr_p
= &TREE_OPERAND (*expr_p
, 0);
3397 if (is_gimple_reg (*expr_p
))
3398 *expr_p
= get_initialized_tmp_var (*expr_p
, seq_p
, NULL
);
3401 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3402 a call to __builtin_memcpy. */
3404 static enum gimplify_status
3405 gimplify_modify_expr_to_memcpy (tree
*expr_p
, tree size
, bool want_value
,
3408 tree t
, to
, to_ptr
, from
, from_ptr
;
3410 location_t loc
= EXPR_LOCATION (*expr_p
);
3412 to
= TREE_OPERAND (*expr_p
, 0);
3413 from
= TREE_OPERAND (*expr_p
, 1);
3415 /* Mark the RHS addressable. Beware that it may not be possible to do so
3416 directly if a temporary has been created by the gimplification. */
3417 prepare_gimple_addressable (&from
, seq_p
);
3419 mark_addressable (from
);
3420 from_ptr
= build_fold_addr_expr_loc (loc
, from
);
3421 gimplify_arg (&from_ptr
, seq_p
, loc
);
3423 mark_addressable (to
);
3424 to_ptr
= build_fold_addr_expr_loc (loc
, to
);
3425 gimplify_arg (&to_ptr
, seq_p
, loc
);
3427 t
= builtin_decl_implicit (BUILT_IN_MEMCPY
);
3429 gs
= gimple_build_call (t
, 3, to_ptr
, from_ptr
, size
);
3433 /* tmp = memcpy() */
3434 t
= create_tmp_var (TREE_TYPE (to_ptr
), NULL
);
3435 gimple_call_set_lhs (gs
, t
);
3436 gimplify_seq_add_stmt (seq_p
, gs
);
3438 *expr_p
= build_simple_mem_ref (t
);
3442 gimplify_seq_add_stmt (seq_p
, gs
);
3447 /* A subroutine of gimplify_modify_expr. Replace a MODIFY_EXPR with
3448 a call to __builtin_memset. In this case we know that the RHS is
3449 a CONSTRUCTOR with an empty element list. */
3451 static enum gimplify_status
3452 gimplify_modify_expr_to_memset (tree
*expr_p
, tree size
, bool want_value
,
3455 tree t
, from
, to
, to_ptr
;
3457 location_t loc
= EXPR_LOCATION (*expr_p
);
3459 /* Assert our assumptions, to abort instead of producing wrong code
3460 silently if they are not met. Beware that the RHS CONSTRUCTOR might
3461 not be immediately exposed. */
3462 from
= TREE_OPERAND (*expr_p
, 1);
3463 if (TREE_CODE (from
) == WITH_SIZE_EXPR
)
3464 from
= TREE_OPERAND (from
, 0);
3466 gcc_assert (TREE_CODE (from
) == CONSTRUCTOR
3467 && VEC_empty (constructor_elt
, CONSTRUCTOR_ELTS (from
)));
3470 to
= TREE_OPERAND (*expr_p
, 0);
3472 to_ptr
= build_fold_addr_expr_loc (loc
, to
);
3473 gimplify_arg (&to_ptr
, seq_p
, loc
);
3474 t
= builtin_decl_implicit (BUILT_IN_MEMSET
);
3476 gs
= gimple_build_call (t
, 3, to_ptr
, integer_zero_node
, size
);
3480 /* tmp = memset() */
3481 t
= create_tmp_var (TREE_TYPE (to_ptr
), NULL
);
3482 gimple_call_set_lhs (gs
, t
);
3483 gimplify_seq_add_stmt (seq_p
, gs
);
3485 *expr_p
= build1 (INDIRECT_REF
, TREE_TYPE (to
), t
);
3489 gimplify_seq_add_stmt (seq_p
, gs
);
3494 /* A subroutine of gimplify_init_ctor_preeval. Called via walk_tree,
3495 determine, cautiously, if a CONSTRUCTOR overlaps the lhs of an
3496 assignment. Return non-null if we detect a potential overlap. */
3498 struct gimplify_init_ctor_preeval_data
3500 /* The base decl of the lhs object. May be NULL, in which case we
3501 have to assume the lhs is indirect. */
3504 /* The alias set of the lhs object. */
3505 alias_set_type lhs_alias_set
;
3509 gimplify_init_ctor_preeval_1 (tree
*tp
, int *walk_subtrees
, void *xdata
)
3511 struct gimplify_init_ctor_preeval_data
*data
3512 = (struct gimplify_init_ctor_preeval_data
*) xdata
;
3515 /* If we find the base object, obviously we have overlap. */
3516 if (data
->lhs_base_decl
== t
)
3519 /* If the constructor component is indirect, determine if we have a
3520 potential overlap with the lhs. The only bits of information we
3521 have to go on at this point are addressability and alias sets. */
3522 if ((INDIRECT_REF_P (t
)
3523 || TREE_CODE (t
) == MEM_REF
)
3524 && (!data
->lhs_base_decl
|| TREE_ADDRESSABLE (data
->lhs_base_decl
))
3525 && alias_sets_conflict_p (data
->lhs_alias_set
, get_alias_set (t
)))
3528 /* If the constructor component is a call, determine if it can hide a
3529 potential overlap with the lhs through an INDIRECT_REF like above.
3530 ??? Ugh - this is completely broken. In fact this whole analysis
3531 doesn't look conservative. */
3532 if (TREE_CODE (t
) == CALL_EXPR
)
3534 tree type
, fntype
= TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (t
)));
3536 for (type
= TYPE_ARG_TYPES (fntype
); type
; type
= TREE_CHAIN (type
))
3537 if (POINTER_TYPE_P (TREE_VALUE (type
))
3538 && (!data
->lhs_base_decl
|| TREE_ADDRESSABLE (data
->lhs_base_decl
))
3539 && alias_sets_conflict_p (data
->lhs_alias_set
,
3541 (TREE_TYPE (TREE_VALUE (type
)))))
3545 if (IS_TYPE_OR_DECL_P (t
))
3550 /* A subroutine of gimplify_init_constructor. Pre-evaluate EXPR,
3551 force values that overlap with the lhs (as described by *DATA)
3552 into temporaries. */
3555 gimplify_init_ctor_preeval (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
3556 struct gimplify_init_ctor_preeval_data
*data
)
3558 enum gimplify_status one
;
3560 /* If the value is constant, then there's nothing to pre-evaluate. */
3561 if (TREE_CONSTANT (*expr_p
))
3563 /* Ensure it does not have side effects, it might contain a reference to
3564 the object we're initializing. */
3565 gcc_assert (!TREE_SIDE_EFFECTS (*expr_p
));
3569 /* If the type has non-trivial constructors, we can't pre-evaluate. */
3570 if (TREE_ADDRESSABLE (TREE_TYPE (*expr_p
)))
3573 /* Recurse for nested constructors. */
3574 if (TREE_CODE (*expr_p
) == CONSTRUCTOR
)
3576 unsigned HOST_WIDE_INT ix
;
3577 constructor_elt
*ce
;
3578 VEC(constructor_elt
,gc
) *v
= CONSTRUCTOR_ELTS (*expr_p
);
3580 FOR_EACH_VEC_ELT (constructor_elt
, v
, ix
, ce
)
3581 gimplify_init_ctor_preeval (&ce
->value
, pre_p
, post_p
, data
);
3586 /* If this is a variable sized type, we must remember the size. */
3587 maybe_with_size_expr (expr_p
);
3589 /* Gimplify the constructor element to something appropriate for the rhs
3590 of a MODIFY_EXPR. Given that we know the LHS is an aggregate, we know
3591 the gimplifier will consider this a store to memory. Doing this
3592 gimplification now means that we won't have to deal with complicated
3593 language-specific trees, nor trees like SAVE_EXPR that can induce
3594 exponential search behavior. */
3595 one
= gimplify_expr (expr_p
, pre_p
, post_p
, is_gimple_mem_rhs
, fb_rvalue
);
3596 if (one
== GS_ERROR
)
3602 /* If we gimplified to a bare decl, we can be sure that it doesn't overlap
3603 with the lhs, since "a = { .x=a }" doesn't make sense. This will
3604 always be true for all scalars, since is_gimple_mem_rhs insists on a
3605 temporary variable for them. */
3606 if (DECL_P (*expr_p
))
3609 /* If this is of variable size, we have no choice but to assume it doesn't
3610 overlap since we can't make a temporary for it. */
3611 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (*expr_p
))) != INTEGER_CST
)
3614 /* Otherwise, we must search for overlap ... */
3615 if (!walk_tree (expr_p
, gimplify_init_ctor_preeval_1
, data
, NULL
))
3618 /* ... and if found, force the value into a temporary. */
3619 *expr_p
= get_formal_tmp_var (*expr_p
, pre_p
);
3622 /* A subroutine of gimplify_init_ctor_eval. Create a loop for
3623 a RANGE_EXPR in a CONSTRUCTOR for an array.
3627 object[var] = value;
3634 We increment var _after_ the loop exit check because we might otherwise
3635 fail if upper == TYPE_MAX_VALUE (type for upper).
3637 Note that we never have to deal with SAVE_EXPRs here, because this has
3638 already been taken care of for us, in gimplify_init_ctor_preeval(). */
3640 static void gimplify_init_ctor_eval (tree
, VEC(constructor_elt
,gc
) *,
3641 gimple_seq
*, bool);
3644 gimplify_init_ctor_eval_range (tree object
, tree lower
, tree upper
,
3645 tree value
, tree array_elt_type
,
3646 gimple_seq
*pre_p
, bool cleared
)
3648 tree loop_entry_label
, loop_exit_label
, fall_thru_label
;
3649 tree var
, var_type
, cref
, tmp
;
3651 loop_entry_label
= create_artificial_label (UNKNOWN_LOCATION
);
3652 loop_exit_label
= create_artificial_label (UNKNOWN_LOCATION
);
3653 fall_thru_label
= create_artificial_label (UNKNOWN_LOCATION
);
3655 /* Create and initialize the index variable. */
3656 var_type
= TREE_TYPE (upper
);
3657 var
= create_tmp_var (var_type
, NULL
);
3658 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (var
, lower
));
3660 /* Add the loop entry label. */
3661 gimplify_seq_add_stmt (pre_p
, gimple_build_label (loop_entry_label
));
3663 /* Build the reference. */
3664 cref
= build4 (ARRAY_REF
, array_elt_type
, unshare_expr (object
),
3665 var
, NULL_TREE
, NULL_TREE
);
3667 /* If we are a constructor, just call gimplify_init_ctor_eval to do
3668 the store. Otherwise just assign value to the reference. */
3670 if (TREE_CODE (value
) == CONSTRUCTOR
)
3671 /* NB we might have to call ourself recursively through
3672 gimplify_init_ctor_eval if the value is a constructor. */
3673 gimplify_init_ctor_eval (cref
, CONSTRUCTOR_ELTS (value
),
3676 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (cref
, value
));
3678 /* We exit the loop when the index var is equal to the upper bound. */
3679 gimplify_seq_add_stmt (pre_p
,
3680 gimple_build_cond (EQ_EXPR
, var
, upper
,
3681 loop_exit_label
, fall_thru_label
));
3683 gimplify_seq_add_stmt (pre_p
, gimple_build_label (fall_thru_label
));
3685 /* Otherwise, increment the index var... */
3686 tmp
= build2 (PLUS_EXPR
, var_type
, var
,
3687 fold_convert (var_type
, integer_one_node
));
3688 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (var
, tmp
));
3690 /* ...and jump back to the loop entry. */
3691 gimplify_seq_add_stmt (pre_p
, gimple_build_goto (loop_entry_label
));
3693 /* Add the loop exit label. */
3694 gimplify_seq_add_stmt (pre_p
, gimple_build_label (loop_exit_label
));
3697 /* Return true if FDECL is accessing a field that is zero sized. */
3700 zero_sized_field_decl (const_tree fdecl
)
3702 if (TREE_CODE (fdecl
) == FIELD_DECL
&& DECL_SIZE (fdecl
)
3703 && integer_zerop (DECL_SIZE (fdecl
)))
3708 /* Return true if TYPE is zero sized. */
3711 zero_sized_type (const_tree type
)
3713 if (AGGREGATE_TYPE_P (type
) && TYPE_SIZE (type
)
3714 && integer_zerop (TYPE_SIZE (type
)))
3719 /* A subroutine of gimplify_init_constructor. Generate individual
3720 MODIFY_EXPRs for a CONSTRUCTOR. OBJECT is the LHS against which the
3721 assignments should happen. ELTS is the CONSTRUCTOR_ELTS of the
3722 CONSTRUCTOR. CLEARED is true if the entire LHS object has been
3726 gimplify_init_ctor_eval (tree object
, VEC(constructor_elt
,gc
) *elts
,
3727 gimple_seq
*pre_p
, bool cleared
)
3729 tree array_elt_type
= NULL
;
3730 unsigned HOST_WIDE_INT ix
;
3731 tree purpose
, value
;
3733 if (TREE_CODE (TREE_TYPE (object
)) == ARRAY_TYPE
)
3734 array_elt_type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (object
)));
3736 FOR_EACH_CONSTRUCTOR_ELT (elts
, ix
, purpose
, value
)
3740 /* NULL values are created above for gimplification errors. */
3744 if (cleared
&& initializer_zerop (value
))
3747 /* ??? Here's to hoping the front end fills in all of the indices,
3748 so we don't have to figure out what's missing ourselves. */
3749 gcc_assert (purpose
);
3751 /* Skip zero-sized fields, unless value has side-effects. This can
3752 happen with calls to functions returning a zero-sized type, which
3753 we shouldn't discard. As a number of downstream passes don't
3754 expect sets of zero-sized fields, we rely on the gimplification of
3755 the MODIFY_EXPR we make below to drop the assignment statement. */
3756 if (! TREE_SIDE_EFFECTS (value
) && zero_sized_field_decl (purpose
))
3759 /* If we have a RANGE_EXPR, we have to build a loop to assign the
3761 if (TREE_CODE (purpose
) == RANGE_EXPR
)
3763 tree lower
= TREE_OPERAND (purpose
, 0);
3764 tree upper
= TREE_OPERAND (purpose
, 1);
3766 /* If the lower bound is equal to upper, just treat it as if
3767 upper was the index. */
3768 if (simple_cst_equal (lower
, upper
))
3772 gimplify_init_ctor_eval_range (object
, lower
, upper
, value
,
3773 array_elt_type
, pre_p
, cleared
);
3780 /* Do not use bitsizetype for ARRAY_REF indices. */
3781 if (TYPE_DOMAIN (TREE_TYPE (object
)))
3783 = fold_convert (TREE_TYPE (TYPE_DOMAIN (TREE_TYPE (object
))),
3785 cref
= build4 (ARRAY_REF
, array_elt_type
, unshare_expr (object
),
3786 purpose
, NULL_TREE
, NULL_TREE
);
3790 gcc_assert (TREE_CODE (purpose
) == FIELD_DECL
);
3791 cref
= build3 (COMPONENT_REF
, TREE_TYPE (purpose
),
3792 unshare_expr (object
), purpose
, NULL_TREE
);
3795 if (TREE_CODE (value
) == CONSTRUCTOR
3796 && TREE_CODE (TREE_TYPE (value
)) != VECTOR_TYPE
)
3797 gimplify_init_ctor_eval (cref
, CONSTRUCTOR_ELTS (value
),
3801 tree init
= build2 (INIT_EXPR
, TREE_TYPE (cref
), cref
, value
);
3802 gimplify_and_add (init
, pre_p
);
3808 /* Return the appropriate RHS predicate for this LHS. */
3811 rhs_predicate_for (tree lhs
)
3813 if (is_gimple_reg (lhs
))
3814 return is_gimple_reg_rhs_or_call
;
3816 return is_gimple_mem_rhs_or_call
;
3819 /* Gimplify a C99 compound literal expression. This just means adding
3820 the DECL_EXPR before the current statement and using its anonymous
3823 static enum gimplify_status
3824 gimplify_compound_literal_expr (tree
*expr_p
, gimple_seq
*pre_p
,
3825 bool (*gimple_test_f
) (tree
),
3826 fallback_t fallback
)
3828 tree decl_s
= COMPOUND_LITERAL_EXPR_DECL_EXPR (*expr_p
);
3829 tree decl
= DECL_EXPR_DECL (decl_s
);
3830 tree init
= DECL_INITIAL (decl
);
3831 /* Mark the decl as addressable if the compound literal
3832 expression is addressable now, otherwise it is marked too late
3833 after we gimplify the initialization expression. */
3834 if (TREE_ADDRESSABLE (*expr_p
))
3835 TREE_ADDRESSABLE (decl
) = 1;
3836 /* Otherwise, if we don't need an lvalue and have a literal directly
3837 substitute it. Check if it matches the gimple predicate, as
3838 otherwise we'd generate a new temporary, and we can as well just
3839 use the decl we already have. */
3840 else if (!TREE_ADDRESSABLE (decl
)
3842 && (fallback
& fb_lvalue
) == 0
3843 && gimple_test_f (init
))
3849 /* Preliminarily mark non-addressed complex variables as eligible
3850 for promotion to gimple registers. We'll transform their uses
3852 if ((TREE_CODE (TREE_TYPE (decl
)) == COMPLEX_TYPE
3853 || TREE_CODE (TREE_TYPE (decl
)) == VECTOR_TYPE
)
3854 && !TREE_THIS_VOLATILE (decl
)
3855 && !needs_to_live_in_memory (decl
))
3856 DECL_GIMPLE_REG_P (decl
) = 1;
3858 /* If the decl is not addressable, then it is being used in some
3859 expression or on the right hand side of a statement, and it can
3860 be put into a readonly data section. */
3861 if (!TREE_ADDRESSABLE (decl
) && (fallback
& fb_lvalue
) == 0)
3862 TREE_READONLY (decl
) = 1;
3864 /* This decl isn't mentioned in the enclosing block, so add it to the
3865 list of temps. FIXME it seems a bit of a kludge to say that
3866 anonymous artificial vars aren't pushed, but everything else is. */
3867 if (DECL_NAME (decl
) == NULL_TREE
&& !DECL_SEEN_IN_BIND_EXPR_P (decl
))
3868 gimple_add_tmp_var (decl
);
3870 gimplify_and_add (decl_s
, pre_p
);
3875 /* Optimize embedded COMPOUND_LITERAL_EXPRs within a CONSTRUCTOR,
3876 return a new CONSTRUCTOR if something changed. */
3879 optimize_compound_literals_in_ctor (tree orig_ctor
)
3881 tree ctor
= orig_ctor
;
3882 VEC(constructor_elt
,gc
) *elts
= CONSTRUCTOR_ELTS (ctor
);
3883 unsigned int idx
, num
= VEC_length (constructor_elt
, elts
);
3885 for (idx
= 0; idx
< num
; idx
++)
3887 tree value
= VEC_index (constructor_elt
, elts
, idx
).value
;
3888 tree newval
= value
;
3889 if (TREE_CODE (value
) == CONSTRUCTOR
)
3890 newval
= optimize_compound_literals_in_ctor (value
);
3891 else if (TREE_CODE (value
) == COMPOUND_LITERAL_EXPR
)
3893 tree decl_s
= COMPOUND_LITERAL_EXPR_DECL_EXPR (value
);
3894 tree decl
= DECL_EXPR_DECL (decl_s
);
3895 tree init
= DECL_INITIAL (decl
);
3897 if (!TREE_ADDRESSABLE (value
)
3898 && !TREE_ADDRESSABLE (decl
)
3900 && TREE_CODE (init
) == CONSTRUCTOR
)
3901 newval
= optimize_compound_literals_in_ctor (init
);
3903 if (newval
== value
)
3906 if (ctor
== orig_ctor
)
3908 ctor
= copy_node (orig_ctor
);
3909 CONSTRUCTOR_ELTS (ctor
) = VEC_copy (constructor_elt
, gc
, elts
);
3910 elts
= CONSTRUCTOR_ELTS (ctor
);
3912 VEC_index (constructor_elt
, elts
, idx
).value
= newval
;
3917 /* A subroutine of gimplify_modify_expr. Break out elements of a
3918 CONSTRUCTOR used as an initializer into separate MODIFY_EXPRs.
3920 Note that we still need to clear any elements that don't have explicit
3921 initializers, so if not all elements are initialized we keep the
3922 original MODIFY_EXPR, we just remove all of the constructor elements.
3924 If NOTIFY_TEMP_CREATION is true, do not gimplify, just return
3925 GS_ERROR if we would have to create a temporary when gimplifying
3926 this constructor. Otherwise, return GS_OK.
3928 If NOTIFY_TEMP_CREATION is false, just do the gimplification. */
3930 static enum gimplify_status
3931 gimplify_init_constructor (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
3932 bool want_value
, bool notify_temp_creation
)
3934 tree object
, ctor
, type
;
3935 enum gimplify_status ret
;
3936 VEC(constructor_elt
,gc
) *elts
;
3938 gcc_assert (TREE_CODE (TREE_OPERAND (*expr_p
, 1)) == CONSTRUCTOR
);
3940 if (!notify_temp_creation
)
3942 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
3943 is_gimple_lvalue
, fb_lvalue
);
3944 if (ret
== GS_ERROR
)
3948 object
= TREE_OPERAND (*expr_p
, 0);
3949 ctor
= TREE_OPERAND (*expr_p
, 1) =
3950 optimize_compound_literals_in_ctor (TREE_OPERAND (*expr_p
, 1));
3951 type
= TREE_TYPE (ctor
);
3952 elts
= CONSTRUCTOR_ELTS (ctor
);
3955 switch (TREE_CODE (type
))
3959 case QUAL_UNION_TYPE
:
3962 struct gimplify_init_ctor_preeval_data preeval_data
;
3963 HOST_WIDE_INT num_ctor_elements
, num_nonzero_elements
;
3964 bool cleared
, complete_p
, valid_const_initializer
;
3966 /* Aggregate types must lower constructors to initialization of
3967 individual elements. The exception is that a CONSTRUCTOR node
3968 with no elements indicates zero-initialization of the whole. */
3969 if (VEC_empty (constructor_elt
, elts
))
3971 if (notify_temp_creation
)
3976 /* Fetch information about the constructor to direct later processing.
3977 We might want to make static versions of it in various cases, and
3978 can only do so if it known to be a valid constant initializer. */
3979 valid_const_initializer
3980 = categorize_ctor_elements (ctor
, &num_nonzero_elements
,
3981 &num_ctor_elements
, &complete_p
);
3983 /* If a const aggregate variable is being initialized, then it
3984 should never be a lose to promote the variable to be static. */
3985 if (valid_const_initializer
3986 && num_nonzero_elements
> 1
3987 && TREE_READONLY (object
)
3988 && TREE_CODE (object
) == VAR_DECL
3989 && (flag_merge_constants
>= 2 || !TREE_ADDRESSABLE (object
)))
3991 if (notify_temp_creation
)
3993 DECL_INITIAL (object
) = ctor
;
3994 TREE_STATIC (object
) = 1;
3995 if (!DECL_NAME (object
))
3996 DECL_NAME (object
) = create_tmp_var_name ("C");
3997 walk_tree (&DECL_INITIAL (object
), force_labels_r
, NULL
, NULL
);
3999 /* ??? C++ doesn't automatically append a .<number> to the
4000 assembler name, and even when it does, it looks at FE private
4001 data structures to figure out what that number should be,
4002 which are not set for this variable. I suppose this is
4003 important for local statics for inline functions, which aren't
4004 "local" in the object file sense. So in order to get a unique
4005 TU-local symbol, we must invoke the lhd version now. */
4006 lhd_set_decl_assembler_name (object
);
4008 *expr_p
= NULL_TREE
;
4012 /* If there are "lots" of initialized elements, even discounting
4013 those that are not address constants (and thus *must* be
4014 computed at runtime), then partition the constructor into
4015 constant and non-constant parts. Block copy the constant
4016 parts in, then generate code for the non-constant parts. */
4017 /* TODO. There's code in cp/typeck.c to do this. */
4019 if (int_size_in_bytes (TREE_TYPE (ctor
)) < 0)
4020 /* store_constructor will ignore the clearing of variable-sized
4021 objects. Initializers for such objects must explicitly set
4022 every field that needs to be set. */
4024 else if (!complete_p
)
4025 /* If the constructor isn't complete, clear the whole object
4028 ??? This ought not to be needed. For any element not present
4029 in the initializer, we should simply set them to zero. Except
4030 we'd need to *find* the elements that are not present, and that
4031 requires trickery to avoid quadratic compile-time behavior in
4032 large cases or excessive memory use in small cases. */
4034 else if (num_ctor_elements
- num_nonzero_elements
4035 > CLEAR_RATIO (optimize_function_for_speed_p (cfun
))
4036 && num_nonzero_elements
< num_ctor_elements
/ 4)
4037 /* If there are "lots" of zeros, it's more efficient to clear
4038 the memory and then set the nonzero elements. */
4043 /* If there are "lots" of initialized elements, and all of them
4044 are valid address constants, then the entire initializer can
4045 be dropped to memory, and then memcpy'd out. Don't do this
4046 for sparse arrays, though, as it's more efficient to follow
4047 the standard CONSTRUCTOR behavior of memset followed by
4048 individual element initialization. Also don't do this for small
4049 all-zero initializers (which aren't big enough to merit
4050 clearing), and don't try to make bitwise copies of
4051 TREE_ADDRESSABLE types. */
4052 if (valid_const_initializer
4053 && !(cleared
|| num_nonzero_elements
== 0)
4054 && !TREE_ADDRESSABLE (type
))
4056 HOST_WIDE_INT size
= int_size_in_bytes (type
);
4059 /* ??? We can still get unbounded array types, at least
4060 from the C++ front end. This seems wrong, but attempt
4061 to work around it for now. */
4064 size
= int_size_in_bytes (TREE_TYPE (object
));
4066 TREE_TYPE (ctor
) = type
= TREE_TYPE (object
);
4069 /* Find the maximum alignment we can assume for the object. */
4070 /* ??? Make use of DECL_OFFSET_ALIGN. */
4071 if (DECL_P (object
))
4072 align
= DECL_ALIGN (object
);
4074 align
= TYPE_ALIGN (type
);
4076 /* Do a block move either if the size is so small as to make
4077 each individual move a sub-unit move on average, or if it
4078 is so large as to make individual moves inefficient. */
4080 && num_nonzero_elements
> 1
4081 && (size
< num_nonzero_elements
4082 || !can_move_by_pieces (size
, align
)))
4084 if (notify_temp_creation
)
4087 walk_tree (&ctor
, force_labels_r
, NULL
, NULL
);
4088 ctor
= tree_output_constant_def (ctor
);
4089 if (!useless_type_conversion_p (type
, TREE_TYPE (ctor
)))
4090 ctor
= build1 (VIEW_CONVERT_EXPR
, type
, ctor
);
4091 TREE_OPERAND (*expr_p
, 1) = ctor
;
4093 /* This is no longer an assignment of a CONSTRUCTOR, but
4094 we still may have processing to do on the LHS. So
4095 pretend we didn't do anything here to let that happen. */
4096 return GS_UNHANDLED
;
4100 /* If the target is volatile, we have non-zero elements and more than
4101 one field to assign, initialize the target from a temporary. */
4102 if (TREE_THIS_VOLATILE (object
)
4103 && !TREE_ADDRESSABLE (type
)
4104 && num_nonzero_elements
> 0
4105 && VEC_length (constructor_elt
, elts
) > 1)
4107 tree temp
= create_tmp_var (TYPE_MAIN_VARIANT (type
), NULL
);
4108 TREE_OPERAND (*expr_p
, 0) = temp
;
4109 *expr_p
= build2 (COMPOUND_EXPR
, TREE_TYPE (*expr_p
),
4111 build2 (MODIFY_EXPR
, void_type_node
,
4116 if (notify_temp_creation
)
4119 /* If there are nonzero elements and if needed, pre-evaluate to capture
4120 elements overlapping with the lhs into temporaries. We must do this
4121 before clearing to fetch the values before they are zeroed-out. */
4122 if (num_nonzero_elements
> 0 && TREE_CODE (*expr_p
) != INIT_EXPR
)
4124 preeval_data
.lhs_base_decl
= get_base_address (object
);
4125 if (!DECL_P (preeval_data
.lhs_base_decl
))
4126 preeval_data
.lhs_base_decl
= NULL
;
4127 preeval_data
.lhs_alias_set
= get_alias_set (object
);
4129 gimplify_init_ctor_preeval (&TREE_OPERAND (*expr_p
, 1),
4130 pre_p
, post_p
, &preeval_data
);
4135 /* Zap the CONSTRUCTOR element list, which simplifies this case.
4136 Note that we still have to gimplify, in order to handle the
4137 case of variable sized types. Avoid shared tree structures. */
4138 CONSTRUCTOR_ELTS (ctor
) = NULL
;
4139 TREE_SIDE_EFFECTS (ctor
) = 0;
4140 object
= unshare_expr (object
);
4141 gimplify_stmt (expr_p
, pre_p
);
4144 /* If we have not block cleared the object, or if there are nonzero
4145 elements in the constructor, add assignments to the individual
4146 scalar fields of the object. */
4147 if (!cleared
|| num_nonzero_elements
> 0)
4148 gimplify_init_ctor_eval (object
, elts
, pre_p
, cleared
);
4150 *expr_p
= NULL_TREE
;
4158 if (notify_temp_creation
)
4161 /* Extract the real and imaginary parts out of the ctor. */
4162 gcc_assert (VEC_length (constructor_elt
, elts
) == 2);
4163 r
= VEC_index (constructor_elt
, elts
, 0).value
;
4164 i
= VEC_index (constructor_elt
, elts
, 1).value
;
4165 if (r
== NULL
|| i
== NULL
)
4167 tree zero
= build_zero_cst (TREE_TYPE (type
));
4174 /* Complex types have either COMPLEX_CST or COMPLEX_EXPR to
4175 represent creation of a complex value. */
4176 if (TREE_CONSTANT (r
) && TREE_CONSTANT (i
))
4178 ctor
= build_complex (type
, r
, i
);
4179 TREE_OPERAND (*expr_p
, 1) = ctor
;
4183 ctor
= build2 (COMPLEX_EXPR
, type
, r
, i
);
4184 TREE_OPERAND (*expr_p
, 1) = ctor
;
4185 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 1),
4188 rhs_predicate_for (TREE_OPERAND (*expr_p
, 0)),
4196 unsigned HOST_WIDE_INT ix
;
4197 constructor_elt
*ce
;
4199 if (notify_temp_creation
)
4202 /* Go ahead and simplify constant constructors to VECTOR_CST. */
4203 if (TREE_CONSTANT (ctor
))
4205 bool constant_p
= true;
4208 /* Even when ctor is constant, it might contain non-*_CST
4209 elements, such as addresses or trapping values like
4210 1.0/0.0 - 1.0/0.0. Such expressions don't belong
4211 in VECTOR_CST nodes. */
4212 FOR_EACH_CONSTRUCTOR_VALUE (elts
, ix
, value
)
4213 if (!CONSTANT_CLASS_P (value
))
4221 TREE_OPERAND (*expr_p
, 1) = build_vector_from_ctor (type
, elts
);
4225 /* Don't reduce an initializer constant even if we can't
4226 make a VECTOR_CST. It won't do anything for us, and it'll
4227 prevent us from representing it as a single constant. */
4228 if (initializer_constant_valid_p (ctor
, type
))
4231 TREE_CONSTANT (ctor
) = 0;
4234 /* Vector types use CONSTRUCTOR all the way through gimple
4235 compilation as a general initializer. */
4236 FOR_EACH_VEC_ELT (constructor_elt
, elts
, ix
, ce
)
4238 enum gimplify_status tret
;
4239 tret
= gimplify_expr (&ce
->value
, pre_p
, post_p
, is_gimple_val
,
4241 if (tret
== GS_ERROR
)
4244 if (!is_gimple_reg (TREE_OPERAND (*expr_p
, 0)))
4245 TREE_OPERAND (*expr_p
, 1) = get_formal_tmp_var (ctor
, pre_p
);
4250 /* So how did we get a CONSTRUCTOR for a scalar type? */
4254 if (ret
== GS_ERROR
)
4256 else if (want_value
)
4263 /* If we have gimplified both sides of the initializer but have
4264 not emitted an assignment, do so now. */
4267 tree lhs
= TREE_OPERAND (*expr_p
, 0);
4268 tree rhs
= TREE_OPERAND (*expr_p
, 1);
4269 gimple init
= gimple_build_assign (lhs
, rhs
);
4270 gimplify_seq_add_stmt (pre_p
, init
);
4278 /* Given a pointer value OP0, return a simplified version of an
4279 indirection through OP0, or NULL_TREE if no simplification is
4280 possible. Note that the resulting type may be different from
4281 the type pointed to in the sense that it is still compatible
4282 from the langhooks point of view. */
4285 gimple_fold_indirect_ref (tree t
)
4287 tree ptype
= TREE_TYPE (t
), type
= TREE_TYPE (ptype
);
4292 subtype
= TREE_TYPE (sub
);
4293 if (!POINTER_TYPE_P (subtype
))
4296 if (TREE_CODE (sub
) == ADDR_EXPR
)
4298 tree op
= TREE_OPERAND (sub
, 0);
4299 tree optype
= TREE_TYPE (op
);
4301 if (useless_type_conversion_p (type
, optype
))
4304 /* *(foo *)&fooarray => fooarray[0] */
4305 if (TREE_CODE (optype
) == ARRAY_TYPE
4306 && TREE_CODE (TYPE_SIZE (TREE_TYPE (optype
))) == INTEGER_CST
4307 && useless_type_conversion_p (type
, TREE_TYPE (optype
)))
4309 tree type_domain
= TYPE_DOMAIN (optype
);
4310 tree min_val
= size_zero_node
;
4311 if (type_domain
&& TYPE_MIN_VALUE (type_domain
))
4312 min_val
= TYPE_MIN_VALUE (type_domain
);
4313 if (TREE_CODE (min_val
) == INTEGER_CST
)
4314 return build4 (ARRAY_REF
, type
, op
, min_val
, NULL_TREE
, NULL_TREE
);
4316 /* *(foo *)&complexfoo => __real__ complexfoo */
4317 else if (TREE_CODE (optype
) == COMPLEX_TYPE
4318 && useless_type_conversion_p (type
, TREE_TYPE (optype
)))
4319 return fold_build1 (REALPART_EXPR
, type
, op
);
4320 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
4321 else if (TREE_CODE (optype
) == VECTOR_TYPE
4322 && useless_type_conversion_p (type
, TREE_TYPE (optype
)))
4324 tree part_width
= TYPE_SIZE (type
);
4325 tree index
= bitsize_int (0);
4326 return fold_build3 (BIT_FIELD_REF
, type
, op
, part_width
, index
);
4330 /* *(p + CST) -> ... */
4331 if (TREE_CODE (sub
) == POINTER_PLUS_EXPR
4332 && TREE_CODE (TREE_OPERAND (sub
, 1)) == INTEGER_CST
)
4334 tree addr
= TREE_OPERAND (sub
, 0);
4335 tree off
= TREE_OPERAND (sub
, 1);
4339 addrtype
= TREE_TYPE (addr
);
4341 /* ((foo*)&vectorfoo)[1] -> BIT_FIELD_REF<vectorfoo,...> */
4342 if (TREE_CODE (addr
) == ADDR_EXPR
4343 && TREE_CODE (TREE_TYPE (addrtype
)) == VECTOR_TYPE
4344 && useless_type_conversion_p (type
, TREE_TYPE (TREE_TYPE (addrtype
)))
4345 && host_integerp (off
, 1))
4347 unsigned HOST_WIDE_INT offset
= tree_low_cst (off
, 1);
4348 tree part_width
= TYPE_SIZE (type
);
4349 unsigned HOST_WIDE_INT part_widthi
4350 = tree_low_cst (part_width
, 0) / BITS_PER_UNIT
;
4351 unsigned HOST_WIDE_INT indexi
= offset
* BITS_PER_UNIT
;
4352 tree index
= bitsize_int (indexi
);
4353 if (offset
/ part_widthi
4354 <= TYPE_VECTOR_SUBPARTS (TREE_TYPE (addrtype
)))
4355 return fold_build3 (BIT_FIELD_REF
, type
, TREE_OPERAND (addr
, 0),
4359 /* ((foo*)&complexfoo)[1] -> __imag__ complexfoo */
4360 if (TREE_CODE (addr
) == ADDR_EXPR
4361 && TREE_CODE (TREE_TYPE (addrtype
)) == COMPLEX_TYPE
4362 && useless_type_conversion_p (type
, TREE_TYPE (TREE_TYPE (addrtype
))))
4364 tree size
= TYPE_SIZE_UNIT (type
);
4365 if (tree_int_cst_equal (size
, off
))
4366 return fold_build1 (IMAGPART_EXPR
, type
, TREE_OPERAND (addr
, 0));
4369 /* *(p + CST) -> MEM_REF <p, CST>. */
4370 if (TREE_CODE (addr
) != ADDR_EXPR
4371 || DECL_P (TREE_OPERAND (addr
, 0)))
4372 return fold_build2 (MEM_REF
, type
,
4374 build_int_cst_wide (ptype
,
4375 TREE_INT_CST_LOW (off
),
4376 TREE_INT_CST_HIGH (off
)));
4379 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
4380 if (TREE_CODE (TREE_TYPE (subtype
)) == ARRAY_TYPE
4381 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (subtype
)))) == INTEGER_CST
4382 && useless_type_conversion_p (type
, TREE_TYPE (TREE_TYPE (subtype
))))
4385 tree min_val
= size_zero_node
;
4387 sub
= gimple_fold_indirect_ref (sub
);
4389 sub
= build1 (INDIRECT_REF
, TREE_TYPE (subtype
), osub
);
4390 type_domain
= TYPE_DOMAIN (TREE_TYPE (sub
));
4391 if (type_domain
&& TYPE_MIN_VALUE (type_domain
))
4392 min_val
= TYPE_MIN_VALUE (type_domain
);
4393 if (TREE_CODE (min_val
) == INTEGER_CST
)
4394 return build4 (ARRAY_REF
, type
, sub
, min_val
, NULL_TREE
, NULL_TREE
);
4400 /* Given a pointer value OP0, return a simplified version of an
4401 indirection through OP0, or NULL_TREE if no simplification is
4402 possible. This may only be applied to a rhs of an expression.
4403 Note that the resulting type may be different from the type pointed
4404 to in the sense that it is still compatible from the langhooks
4408 gimple_fold_indirect_ref_rhs (tree t
)
4410 return gimple_fold_indirect_ref (t
);
4413 /* Subroutine of gimplify_modify_expr to do simplifications of
4414 MODIFY_EXPRs based on the code of the RHS. We loop for as long as
4415 something changes. */
4417 static enum gimplify_status
4418 gimplify_modify_expr_rhs (tree
*expr_p
, tree
*from_p
, tree
*to_p
,
4419 gimple_seq
*pre_p
, gimple_seq
*post_p
,
4422 enum gimplify_status ret
= GS_UNHANDLED
;
4428 switch (TREE_CODE (*from_p
))
4431 /* If we're assigning from a read-only variable initialized with
4432 a constructor, do the direct assignment from the constructor,
4433 but only if neither source nor target are volatile since this
4434 latter assignment might end up being done on a per-field basis. */
4435 if (DECL_INITIAL (*from_p
)
4436 && TREE_READONLY (*from_p
)
4437 && !TREE_THIS_VOLATILE (*from_p
)
4438 && !TREE_THIS_VOLATILE (*to_p
)
4439 && TREE_CODE (DECL_INITIAL (*from_p
)) == CONSTRUCTOR
)
4441 tree old_from
= *from_p
;
4442 enum gimplify_status subret
;
4444 /* Move the constructor into the RHS. */
4445 *from_p
= unshare_expr (DECL_INITIAL (*from_p
));
4447 /* Let's see if gimplify_init_constructor will need to put
4449 subret
= gimplify_init_constructor (expr_p
, NULL
, NULL
,
4451 if (subret
== GS_ERROR
)
4453 /* If so, revert the change. */
4465 /* If we have code like
4469 where the type of "x" is a (possibly cv-qualified variant
4470 of "A"), treat the entire expression as identical to "x".
4471 This kind of code arises in C++ when an object is bound
4472 to a const reference, and if "x" is a TARGET_EXPR we want
4473 to take advantage of the optimization below. */
4474 bool volatile_p
= TREE_THIS_VOLATILE (*from_p
);
4475 tree t
= gimple_fold_indirect_ref_rhs (TREE_OPERAND (*from_p
, 0));
4478 if (TREE_THIS_VOLATILE (t
) != volatile_p
)
4480 if (TREE_CODE_CLASS (TREE_CODE (t
)) == tcc_declaration
)
4481 t
= build_simple_mem_ref_loc (EXPR_LOCATION (*from_p
),
4482 build_fold_addr_expr (t
));
4483 if (REFERENCE_CLASS_P (t
))
4484 TREE_THIS_VOLATILE (t
) = volatile_p
;
4495 /* If we are initializing something from a TARGET_EXPR, strip the
4496 TARGET_EXPR and initialize it directly, if possible. This can't
4497 be done if the initializer is void, since that implies that the
4498 temporary is set in some non-trivial way.
4500 ??? What about code that pulls out the temp and uses it
4501 elsewhere? I think that such code never uses the TARGET_EXPR as
4502 an initializer. If I'm wrong, we'll die because the temp won't
4503 have any RTL. In that case, I guess we'll need to replace
4504 references somehow. */
4505 tree init
= TARGET_EXPR_INITIAL (*from_p
);
4508 && !VOID_TYPE_P (TREE_TYPE (init
)))
4518 /* Remove any COMPOUND_EXPR in the RHS so the following cases will be
4520 gimplify_compound_expr (from_p
, pre_p
, true);
4526 /* If we already made some changes, let the front end have a
4527 crack at this before we break it down. */
4528 if (ret
!= GS_UNHANDLED
)
4530 /* If we're initializing from a CONSTRUCTOR, break this into
4531 individual MODIFY_EXPRs. */
4532 return gimplify_init_constructor (expr_p
, pre_p
, post_p
, want_value
,
4536 /* If we're assigning to a non-register type, push the assignment
4537 down into the branches. This is mandatory for ADDRESSABLE types,
4538 since we cannot generate temporaries for such, but it saves a
4539 copy in other cases as well. */
4540 if (!is_gimple_reg_type (TREE_TYPE (*from_p
)))
4542 /* This code should mirror the code in gimplify_cond_expr. */
4543 enum tree_code code
= TREE_CODE (*expr_p
);
4544 tree cond
= *from_p
;
4545 tree result
= *to_p
;
4547 ret
= gimplify_expr (&result
, pre_p
, post_p
,
4548 is_gimple_lvalue
, fb_lvalue
);
4549 if (ret
!= GS_ERROR
)
4552 if (TREE_TYPE (TREE_OPERAND (cond
, 1)) != void_type_node
)
4553 TREE_OPERAND (cond
, 1)
4554 = build2 (code
, void_type_node
, result
,
4555 TREE_OPERAND (cond
, 1));
4556 if (TREE_TYPE (TREE_OPERAND (cond
, 2)) != void_type_node
)
4557 TREE_OPERAND (cond
, 2)
4558 = build2 (code
, void_type_node
, unshare_expr (result
),
4559 TREE_OPERAND (cond
, 2));
4561 TREE_TYPE (cond
) = void_type_node
;
4562 recalculate_side_effects (cond
);
4566 gimplify_and_add (cond
, pre_p
);
4567 *expr_p
= unshare_expr (result
);
4576 /* For calls that return in memory, give *to_p as the CALL_EXPR's
4577 return slot so that we don't generate a temporary. */
4578 if (!CALL_EXPR_RETURN_SLOT_OPT (*from_p
)
4579 && aggregate_value_p (*from_p
, *from_p
))
4583 if (!(rhs_predicate_for (*to_p
))(*from_p
))
4584 /* If we need a temporary, *to_p isn't accurate. */
4586 /* It's OK to use the return slot directly unless it's an NRV. */
4587 else if (TREE_CODE (*to_p
) == RESULT_DECL
4588 && DECL_NAME (*to_p
) == NULL_TREE
4589 && needs_to_live_in_memory (*to_p
))
4591 else if (is_gimple_reg_type (TREE_TYPE (*to_p
))
4592 || (DECL_P (*to_p
) && DECL_REGISTER (*to_p
)))
4593 /* Don't force regs into memory. */
4595 else if (TREE_CODE (*expr_p
) == INIT_EXPR
)
4596 /* It's OK to use the target directly if it's being
4599 else if (variably_modified_type_p (TREE_TYPE (*to_p
), NULL_TREE
))
4600 /* Always use the target and thus RSO for variable-sized types.
4601 GIMPLE cannot deal with a variable-sized assignment
4602 embedded in a call statement. */
4604 else if (TREE_CODE (*to_p
) != SSA_NAME
4605 && (!is_gimple_variable (*to_p
)
4606 || needs_to_live_in_memory (*to_p
)))
4607 /* Don't use the original target if it's already addressable;
4608 if its address escapes, and the called function uses the
4609 NRV optimization, a conforming program could see *to_p
4610 change before the called function returns; see c++/19317.
4611 When optimizing, the return_slot pass marks more functions
4612 as safe after we have escape info. */
4619 CALL_EXPR_RETURN_SLOT_OPT (*from_p
) = 1;
4620 mark_addressable (*to_p
);
4625 case WITH_SIZE_EXPR
:
4626 /* Likewise for calls that return an aggregate of non-constant size,
4627 since we would not be able to generate a temporary at all. */
4628 if (TREE_CODE (TREE_OPERAND (*from_p
, 0)) == CALL_EXPR
)
4630 *from_p
= TREE_OPERAND (*from_p
, 0);
4631 /* We don't change ret in this case because the
4632 WITH_SIZE_EXPR might have been added in
4633 gimplify_modify_expr, so returning GS_OK would lead to an
4639 /* If we're initializing from a container, push the initialization
4641 case CLEANUP_POINT_EXPR
:
4643 case STATEMENT_LIST
:
4645 tree wrap
= *from_p
;
4648 ret
= gimplify_expr (to_p
, pre_p
, post_p
, is_gimple_min_lval
,
4650 if (ret
!= GS_ERROR
)
4653 t
= voidify_wrapper_expr (wrap
, *expr_p
);
4654 gcc_assert (t
== *expr_p
);
4658 gimplify_and_add (wrap
, pre_p
);
4659 *expr_p
= unshare_expr (*to_p
);
4666 case COMPOUND_LITERAL_EXPR
:
4668 tree complit
= TREE_OPERAND (*expr_p
, 1);
4669 tree decl_s
= COMPOUND_LITERAL_EXPR_DECL_EXPR (complit
);
4670 tree decl
= DECL_EXPR_DECL (decl_s
);
4671 tree init
= DECL_INITIAL (decl
);
4673 /* struct T x = (struct T) { 0, 1, 2 } can be optimized
4674 into struct T x = { 0, 1, 2 } if the address of the
4675 compound literal has never been taken. */
4676 if (!TREE_ADDRESSABLE (complit
)
4677 && !TREE_ADDRESSABLE (decl
)
4680 *expr_p
= copy_node (*expr_p
);
4681 TREE_OPERAND (*expr_p
, 1) = init
;
4696 /* Return true if T looks like a valid GIMPLE statement. */
4699 is_gimple_stmt (tree t
)
4701 const enum tree_code code
= TREE_CODE (t
);
4706 /* The only valid NOP_EXPR is the empty statement. */
4707 return IS_EMPTY_STMT (t
);
4711 /* These are only valid if they're void. */
4712 return TREE_TYPE (t
) == NULL
|| VOID_TYPE_P (TREE_TYPE (t
));
4718 case CASE_LABEL_EXPR
:
4719 case TRY_CATCH_EXPR
:
4720 case TRY_FINALLY_EXPR
:
4721 case EH_FILTER_EXPR
:
4724 case STATEMENT_LIST
:
4734 /* These are always void. */
4740 /* These are valid regardless of their type. */
4749 /* Promote partial stores to COMPLEX variables to total stores. *EXPR_P is
4750 a MODIFY_EXPR with a lhs of a REAL/IMAGPART_EXPR of a variable with
4751 DECL_GIMPLE_REG_P set.
4753 IMPORTANT NOTE: This promotion is performed by introducing a load of the
4754 other, unmodified part of the complex object just before the total store.
4755 As a consequence, if the object is still uninitialized, an undefined value
4756 will be loaded into a register, which may result in a spurious exception
4757 if the register is floating-point and the value happens to be a signaling
4758 NaN for example. Then the fully-fledged complex operations lowering pass
4759 followed by a DCE pass are necessary in order to fix things up. */
4761 static enum gimplify_status
4762 gimplify_modify_expr_complex_part (tree
*expr_p
, gimple_seq
*pre_p
,
4765 enum tree_code code
, ocode
;
4766 tree lhs
, rhs
, new_rhs
, other
, realpart
, imagpart
;
4768 lhs
= TREE_OPERAND (*expr_p
, 0);
4769 rhs
= TREE_OPERAND (*expr_p
, 1);
4770 code
= TREE_CODE (lhs
);
4771 lhs
= TREE_OPERAND (lhs
, 0);
4773 ocode
= code
== REALPART_EXPR
? IMAGPART_EXPR
: REALPART_EXPR
;
4774 other
= build1 (ocode
, TREE_TYPE (rhs
), lhs
);
4775 TREE_NO_WARNING (other
) = 1;
4776 other
= get_formal_tmp_var (other
, pre_p
);
4778 realpart
= code
== REALPART_EXPR
? rhs
: other
;
4779 imagpart
= code
== REALPART_EXPR
? other
: rhs
;
4781 if (TREE_CONSTANT (realpart
) && TREE_CONSTANT (imagpart
))
4782 new_rhs
= build_complex (TREE_TYPE (lhs
), realpart
, imagpart
);
4784 new_rhs
= build2 (COMPLEX_EXPR
, TREE_TYPE (lhs
), realpart
, imagpart
);
4786 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (lhs
, new_rhs
));
4787 *expr_p
= (want_value
) ? rhs
: NULL_TREE
;
4792 /* Gimplify the MODIFY_EXPR node pointed to by EXPR_P.
4798 PRE_P points to the list where side effects that must happen before
4799 *EXPR_P should be stored.
4801 POST_P points to the list where side effects that must happen after
4802 *EXPR_P should be stored.
4804 WANT_VALUE is nonzero iff we want to use the value of this expression
4805 in another expression. */
4807 static enum gimplify_status
4808 gimplify_modify_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
4811 tree
*from_p
= &TREE_OPERAND (*expr_p
, 1);
4812 tree
*to_p
= &TREE_OPERAND (*expr_p
, 0);
4813 enum gimplify_status ret
= GS_UNHANDLED
;
4815 location_t loc
= EXPR_LOCATION (*expr_p
);
4816 gimple_stmt_iterator gsi
;
4818 gcc_assert (TREE_CODE (*expr_p
) == MODIFY_EXPR
4819 || TREE_CODE (*expr_p
) == INIT_EXPR
);
4821 /* Trying to simplify a clobber using normal logic doesn't work,
4822 so handle it here. */
4823 if (TREE_CLOBBER_P (*from_p
))
4825 gcc_assert (!want_value
&& TREE_CODE (*to_p
) == VAR_DECL
);
4826 gimplify_seq_add_stmt (pre_p
, gimple_build_assign (*to_p
, *from_p
));
4831 /* Insert pointer conversions required by the middle-end that are not
4832 required by the frontend. This fixes middle-end type checking for
4833 for example gcc.dg/redecl-6.c. */
4834 if (POINTER_TYPE_P (TREE_TYPE (*to_p
)))
4836 STRIP_USELESS_TYPE_CONVERSION (*from_p
);
4837 if (!useless_type_conversion_p (TREE_TYPE (*to_p
), TREE_TYPE (*from_p
)))
4838 *from_p
= fold_convert_loc (loc
, TREE_TYPE (*to_p
), *from_p
);
4841 /* See if any simplifications can be done based on what the RHS is. */
4842 ret
= gimplify_modify_expr_rhs (expr_p
, from_p
, to_p
, pre_p
, post_p
,
4844 if (ret
!= GS_UNHANDLED
)
4847 /* For zero sized types only gimplify the left hand side and right hand
4848 side as statements and throw away the assignment. Do this after
4849 gimplify_modify_expr_rhs so we handle TARGET_EXPRs of addressable
4851 if (zero_sized_type (TREE_TYPE (*from_p
)) && !want_value
)
4853 gimplify_stmt (from_p
, pre_p
);
4854 gimplify_stmt (to_p
, pre_p
);
4855 *expr_p
= NULL_TREE
;
4859 /* If the value being copied is of variable width, compute the length
4860 of the copy into a WITH_SIZE_EXPR. Note that we need to do this
4861 before gimplifying any of the operands so that we can resolve any
4862 PLACEHOLDER_EXPRs in the size. Also note that the RTL expander uses
4863 the size of the expression to be copied, not of the destination, so
4864 that is what we must do here. */
4865 maybe_with_size_expr (from_p
);
4867 ret
= gimplify_expr (to_p
, pre_p
, post_p
, is_gimple_lvalue
, fb_lvalue
);
4868 if (ret
== GS_ERROR
)
4871 /* As a special case, we have to temporarily allow for assignments
4872 with a CALL_EXPR on the RHS. Since in GIMPLE a function call is
4873 a toplevel statement, when gimplifying the GENERIC expression
4874 MODIFY_EXPR <a, CALL_EXPR <foo>>, we cannot create the tuple
4875 GIMPLE_ASSIGN <a, GIMPLE_CALL <foo>>.
4877 Instead, we need to create the tuple GIMPLE_CALL <a, foo>. To
4878 prevent gimplify_expr from trying to create a new temporary for
4879 foo's LHS, we tell it that it should only gimplify until it
4880 reaches the CALL_EXPR. On return from gimplify_expr, the newly
4881 created GIMPLE_CALL <foo> will be the last statement in *PRE_P
4882 and all we need to do here is set 'a' to be its LHS. */
4883 ret
= gimplify_expr (from_p
, pre_p
, post_p
, rhs_predicate_for (*to_p
),
4885 if (ret
== GS_ERROR
)
4888 /* Now see if the above changed *from_p to something we handle specially. */
4889 ret
= gimplify_modify_expr_rhs (expr_p
, from_p
, to_p
, pre_p
, post_p
,
4891 if (ret
!= GS_UNHANDLED
)
4894 /* If we've got a variable sized assignment between two lvalues (i.e. does
4895 not involve a call), then we can make things a bit more straightforward
4896 by converting the assignment to memcpy or memset. */
4897 if (TREE_CODE (*from_p
) == WITH_SIZE_EXPR
)
4899 tree from
= TREE_OPERAND (*from_p
, 0);
4900 tree size
= TREE_OPERAND (*from_p
, 1);
4902 if (TREE_CODE (from
) == CONSTRUCTOR
)
4903 return gimplify_modify_expr_to_memset (expr_p
, size
, want_value
, pre_p
);
4905 if (is_gimple_addressable (from
))
4908 return gimplify_modify_expr_to_memcpy (expr_p
, size
, want_value
,
4913 /* Transform partial stores to non-addressable complex variables into
4914 total stores. This allows us to use real instead of virtual operands
4915 for these variables, which improves optimization. */
4916 if ((TREE_CODE (*to_p
) == REALPART_EXPR
4917 || TREE_CODE (*to_p
) == IMAGPART_EXPR
)
4918 && is_gimple_reg (TREE_OPERAND (*to_p
, 0)))
4919 return gimplify_modify_expr_complex_part (expr_p
, pre_p
, want_value
);
4921 /* Try to alleviate the effects of the gimplification creating artificial
4922 temporaries (see for example is_gimple_reg_rhs) on the debug info. */
4923 if (!gimplify_ctxp
->into_ssa
4924 && TREE_CODE (*from_p
) == VAR_DECL
4925 && DECL_IGNORED_P (*from_p
)
4927 && !DECL_IGNORED_P (*to_p
))
4929 if (!DECL_NAME (*from_p
) && DECL_NAME (*to_p
))
4931 = create_tmp_var_name (IDENTIFIER_POINTER (DECL_NAME (*to_p
)));
4932 DECL_DEBUG_EXPR_IS_FROM (*from_p
) = 1;
4933 SET_DECL_DEBUG_EXPR (*from_p
, *to_p
);
4936 if (want_value
&& TREE_THIS_VOLATILE (*to_p
))
4937 *from_p
= get_initialized_tmp_var (*from_p
, pre_p
, post_p
);
4939 if (TREE_CODE (*from_p
) == CALL_EXPR
)
4941 /* Since the RHS is a CALL_EXPR, we need to create a GIMPLE_CALL
4942 instead of a GIMPLE_ASSIGN. */
4943 tree fnptrtype
= TREE_TYPE (CALL_EXPR_FN (*from_p
));
4944 CALL_EXPR_FN (*from_p
) = TREE_OPERAND (CALL_EXPR_FN (*from_p
), 0);
4945 STRIP_USELESS_TYPE_CONVERSION (CALL_EXPR_FN (*from_p
));
4946 assign
= gimple_build_call_from_tree (*from_p
);
4947 gimple_call_set_fntype (assign
, TREE_TYPE (fnptrtype
));
4948 if (!gimple_call_noreturn_p (assign
))
4949 gimple_call_set_lhs (assign
, *to_p
);
4953 assign
= gimple_build_assign (*to_p
, *from_p
);
4954 gimple_set_location (assign
, EXPR_LOCATION (*expr_p
));
4957 if (gimplify_ctxp
->into_ssa
&& is_gimple_reg (*to_p
))
4959 /* We should have got an SSA name from the start. */
4960 gcc_assert (TREE_CODE (*to_p
) == SSA_NAME
);
4963 gimplify_seq_add_stmt (pre_p
, assign
);
4964 gsi
= gsi_last (*pre_p
);
4969 *expr_p
= TREE_THIS_VOLATILE (*to_p
) ? *from_p
: unshare_expr (*to_p
);
4978 /* Gimplify a comparison between two variable-sized objects. Do this
4979 with a call to BUILT_IN_MEMCMP. */
4981 static enum gimplify_status
4982 gimplify_variable_sized_compare (tree
*expr_p
)
4984 location_t loc
= EXPR_LOCATION (*expr_p
);
4985 tree op0
= TREE_OPERAND (*expr_p
, 0);
4986 tree op1
= TREE_OPERAND (*expr_p
, 1);
4987 tree t
, arg
, dest
, src
, expr
;
4989 arg
= TYPE_SIZE_UNIT (TREE_TYPE (op0
));
4990 arg
= unshare_expr (arg
);
4991 arg
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (arg
, op0
);
4992 src
= build_fold_addr_expr_loc (loc
, op1
);
4993 dest
= build_fold_addr_expr_loc (loc
, op0
);
4994 t
= builtin_decl_implicit (BUILT_IN_MEMCMP
);
4995 t
= build_call_expr_loc (loc
, t
, 3, dest
, src
, arg
);
4998 = build2 (TREE_CODE (*expr_p
), TREE_TYPE (*expr_p
), t
, integer_zero_node
);
4999 SET_EXPR_LOCATION (expr
, loc
);
5005 /* Gimplify a comparison between two aggregate objects of integral scalar
5006 mode as a comparison between the bitwise equivalent scalar values. */
5008 static enum gimplify_status
5009 gimplify_scalar_mode_aggregate_compare (tree
*expr_p
)
5011 location_t loc
= EXPR_LOCATION (*expr_p
);
5012 tree op0
= TREE_OPERAND (*expr_p
, 0);
5013 tree op1
= TREE_OPERAND (*expr_p
, 1);
5015 tree type
= TREE_TYPE (op0
);
5016 tree scalar_type
= lang_hooks
.types
.type_for_mode (TYPE_MODE (type
), 1);
5018 op0
= fold_build1_loc (loc
, VIEW_CONVERT_EXPR
, scalar_type
, op0
);
5019 op1
= fold_build1_loc (loc
, VIEW_CONVERT_EXPR
, scalar_type
, op1
);
5022 = fold_build2_loc (loc
, TREE_CODE (*expr_p
), TREE_TYPE (*expr_p
), op0
, op1
);
5027 /* Gimplify an expression sequence. This function gimplifies each
5028 expression and rewrites the original expression with the last
5029 expression of the sequence in GIMPLE form.
5031 PRE_P points to the list where the side effects for all the
5032 expressions in the sequence will be emitted.
5034 WANT_VALUE is true when the result of the last COMPOUND_EXPR is used. */
5036 static enum gimplify_status
5037 gimplify_compound_expr (tree
*expr_p
, gimple_seq
*pre_p
, bool want_value
)
5043 tree
*sub_p
= &TREE_OPERAND (t
, 0);
5045 if (TREE_CODE (*sub_p
) == COMPOUND_EXPR
)
5046 gimplify_compound_expr (sub_p
, pre_p
, false);
5048 gimplify_stmt (sub_p
, pre_p
);
5050 t
= TREE_OPERAND (t
, 1);
5052 while (TREE_CODE (t
) == COMPOUND_EXPR
);
5059 gimplify_stmt (expr_p
, pre_p
);
5064 /* Gimplify a SAVE_EXPR node. EXPR_P points to the expression to
5065 gimplify. After gimplification, EXPR_P will point to a new temporary
5066 that holds the original value of the SAVE_EXPR node.
5068 PRE_P points to the list where side effects that must happen before
5069 *EXPR_P should be stored. */
5071 static enum gimplify_status
5072 gimplify_save_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
5074 enum gimplify_status ret
= GS_ALL_DONE
;
5077 gcc_assert (TREE_CODE (*expr_p
) == SAVE_EXPR
);
5078 val
= TREE_OPERAND (*expr_p
, 0);
5080 /* If the SAVE_EXPR has not been resolved, then evaluate it once. */
5081 if (!SAVE_EXPR_RESOLVED_P (*expr_p
))
5083 /* The operand may be a void-valued expression such as SAVE_EXPRs
5084 generated by the Java frontend for class initialization. It is
5085 being executed only for its side-effects. */
5086 if (TREE_TYPE (val
) == void_type_node
)
5088 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
5089 is_gimple_stmt
, fb_none
);
5093 val
= get_initialized_tmp_var (val
, pre_p
, post_p
);
5095 TREE_OPERAND (*expr_p
, 0) = val
;
5096 SAVE_EXPR_RESOLVED_P (*expr_p
) = 1;
5104 /* Rewrite the ADDR_EXPR node pointed to by EXPR_P
5111 PRE_P points to the list where side effects that must happen before
5112 *EXPR_P should be stored.
5114 POST_P points to the list where side effects that must happen after
5115 *EXPR_P should be stored. */
5117 static enum gimplify_status
5118 gimplify_addr_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
5120 tree expr
= *expr_p
;
5121 tree op0
= TREE_OPERAND (expr
, 0);
5122 enum gimplify_status ret
;
5123 location_t loc
= EXPR_LOCATION (*expr_p
);
5125 switch (TREE_CODE (op0
))
5129 /* Check if we are dealing with an expression of the form '&*ptr'.
5130 While the front end folds away '&*ptr' into 'ptr', these
5131 expressions may be generated internally by the compiler (e.g.,
5132 builtins like __builtin_va_end). */
5133 /* Caution: the silent array decomposition semantics we allow for
5134 ADDR_EXPR means we can't always discard the pair. */
5135 /* Gimplification of the ADDR_EXPR operand may drop
5136 cv-qualification conversions, so make sure we add them if
5139 tree op00
= TREE_OPERAND (op0
, 0);
5140 tree t_expr
= TREE_TYPE (expr
);
5141 tree t_op00
= TREE_TYPE (op00
);
5143 if (!useless_type_conversion_p (t_expr
, t_op00
))
5144 op00
= fold_convert_loc (loc
, TREE_TYPE (expr
), op00
);
5150 case VIEW_CONVERT_EXPR
:
5151 /* Take the address of our operand and then convert it to the type of
5154 ??? The interactions of VIEW_CONVERT_EXPR and aliasing is not at
5155 all clear. The impact of this transformation is even less clear. */
5157 /* If the operand is a useless conversion, look through it. Doing so
5158 guarantees that the ADDR_EXPR and its operand will remain of the
5160 if (tree_ssa_useless_type_conversion (TREE_OPERAND (op0
, 0)))
5161 op0
= TREE_OPERAND (op0
, 0);
5163 *expr_p
= fold_convert_loc (loc
, TREE_TYPE (expr
),
5164 build_fold_addr_expr_loc (loc
,
5165 TREE_OPERAND (op0
, 0)));
5170 /* We use fb_either here because the C frontend sometimes takes
5171 the address of a call that returns a struct; see
5172 gcc.dg/c99-array-lval-1.c. The gimplifier will correctly make
5173 the implied temporary explicit. */
5175 /* Make the operand addressable. */
5176 ret
= gimplify_expr (&TREE_OPERAND (expr
, 0), pre_p
, post_p
,
5177 is_gimple_addressable
, fb_either
);
5178 if (ret
== GS_ERROR
)
5181 /* Then mark it. Beware that it may not be possible to do so directly
5182 if a temporary has been created by the gimplification. */
5183 prepare_gimple_addressable (&TREE_OPERAND (expr
, 0), pre_p
);
5185 op0
= TREE_OPERAND (expr
, 0);
5187 /* For various reasons, the gimplification of the expression
5188 may have made a new INDIRECT_REF. */
5189 if (TREE_CODE (op0
) == INDIRECT_REF
)
5190 goto do_indirect_ref
;
5192 mark_addressable (TREE_OPERAND (expr
, 0));
5194 /* The FEs may end up building ADDR_EXPRs early on a decl with
5195 an incomplete type. Re-build ADDR_EXPRs in canonical form
5197 if (!types_compatible_p (TREE_TYPE (op0
), TREE_TYPE (TREE_TYPE (expr
))))
5198 *expr_p
= build_fold_addr_expr (op0
);
5200 /* Make sure TREE_CONSTANT and TREE_SIDE_EFFECTS are set properly. */
5201 recompute_tree_invariant_for_addr_expr (*expr_p
);
5203 /* If we re-built the ADDR_EXPR add a conversion to the original type
5205 if (!useless_type_conversion_p (TREE_TYPE (expr
), TREE_TYPE (*expr_p
)))
5206 *expr_p
= fold_convert (TREE_TYPE (expr
), *expr_p
);
5214 /* Gimplify the operands of an ASM_EXPR. Input operands should be a gimple
5215 value; output operands should be a gimple lvalue. */
5217 static enum gimplify_status
5218 gimplify_asm_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
5222 const char **oconstraints
;
5225 const char *constraint
;
5226 bool allows_mem
, allows_reg
, is_inout
;
5227 enum gimplify_status ret
, tret
;
5229 VEC(tree
, gc
) *inputs
;
5230 VEC(tree
, gc
) *outputs
;
5231 VEC(tree
, gc
) *clobbers
;
5232 VEC(tree
, gc
) *labels
;
5236 noutputs
= list_length (ASM_OUTPUTS (expr
));
5237 oconstraints
= (const char **) alloca ((noutputs
) * sizeof (const char *));
5239 inputs
= outputs
= clobbers
= labels
= NULL
;
5242 link_next
= NULL_TREE
;
5243 for (i
= 0, link
= ASM_OUTPUTS (expr
); link
; ++i
, link
= link_next
)
5246 size_t constraint_len
;
5248 link_next
= TREE_CHAIN (link
);
5252 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
5253 constraint_len
= strlen (constraint
);
5254 if (constraint_len
== 0)
5257 ok
= parse_output_constraint (&constraint
, i
, 0, 0,
5258 &allows_mem
, &allows_reg
, &is_inout
);
5265 if (!allows_reg
&& allows_mem
)
5266 mark_addressable (TREE_VALUE (link
));
5268 tret
= gimplify_expr (&TREE_VALUE (link
), pre_p
, post_p
,
5269 is_inout
? is_gimple_min_lval
: is_gimple_lvalue
,
5270 fb_lvalue
| fb_mayfail
);
5271 if (tret
== GS_ERROR
)
5273 error ("invalid lvalue in asm output %d", i
);
5277 VEC_safe_push (tree
, gc
, outputs
, link
);
5278 TREE_CHAIN (link
) = NULL_TREE
;
5282 /* An input/output operand. To give the optimizers more
5283 flexibility, split it into separate input and output
5288 /* Turn the in/out constraint into an output constraint. */
5289 char *p
= xstrdup (constraint
);
5291 TREE_VALUE (TREE_PURPOSE (link
)) = build_string (constraint_len
, p
);
5293 /* And add a matching input constraint. */
5296 sprintf (buf
, "%d", i
);
5298 /* If there are multiple alternatives in the constraint,
5299 handle each of them individually. Those that allow register
5300 will be replaced with operand number, the others will stay
5302 if (strchr (p
, ',') != NULL
)
5304 size_t len
= 0, buflen
= strlen (buf
);
5305 char *beg
, *end
, *str
, *dst
;
5309 end
= strchr (beg
, ',');
5311 end
= strchr (beg
, '\0');
5312 if ((size_t) (end
- beg
) < buflen
)
5315 len
+= end
- beg
+ 1;
5322 str
= (char *) alloca (len
);
5323 for (beg
= p
+ 1, dst
= str
;;)
5326 bool mem_p
, reg_p
, inout_p
;
5328 end
= strchr (beg
, ',');
5333 parse_output_constraint (&tem
, i
, 0, 0,
5334 &mem_p
, ®_p
, &inout_p
);
5339 memcpy (dst
, buf
, buflen
);
5348 memcpy (dst
, beg
, len
);
5357 input
= build_string (dst
- str
, str
);
5360 input
= build_string (strlen (buf
), buf
);
5363 input
= build_string (constraint_len
- 1, constraint
+ 1);
5367 input
= build_tree_list (build_tree_list (NULL_TREE
, input
),
5368 unshare_expr (TREE_VALUE (link
)));
5369 ASM_INPUTS (expr
) = chainon (ASM_INPUTS (expr
), input
);
5373 link_next
= NULL_TREE
;
5374 for (link
= ASM_INPUTS (expr
); link
; ++i
, link
= link_next
)
5376 link_next
= TREE_CHAIN (link
);
5377 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
5378 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0,
5379 oconstraints
, &allows_mem
, &allows_reg
);
5381 /* If we can't make copies, we can only accept memory. */
5382 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link
))))
5388 error ("impossible constraint in %<asm%>");
5389 error ("non-memory input %d must stay in memory", i
);
5394 /* If the operand is a memory input, it should be an lvalue. */
5395 if (!allows_reg
&& allows_mem
)
5397 tree inputv
= TREE_VALUE (link
);
5398 STRIP_NOPS (inputv
);
5399 if (TREE_CODE (inputv
) == PREDECREMENT_EXPR
5400 || TREE_CODE (inputv
) == PREINCREMENT_EXPR
5401 || TREE_CODE (inputv
) == POSTDECREMENT_EXPR
5402 || TREE_CODE (inputv
) == POSTINCREMENT_EXPR
)
5403 TREE_VALUE (link
) = error_mark_node
;
5404 tret
= gimplify_expr (&TREE_VALUE (link
), pre_p
, post_p
,
5405 is_gimple_lvalue
, fb_lvalue
| fb_mayfail
);
5406 mark_addressable (TREE_VALUE (link
));
5407 if (tret
== GS_ERROR
)
5409 if (EXPR_HAS_LOCATION (TREE_VALUE (link
)))
5410 input_location
= EXPR_LOCATION (TREE_VALUE (link
));
5411 error ("memory input %d is not directly addressable", i
);
5417 tret
= gimplify_expr (&TREE_VALUE (link
), pre_p
, post_p
,
5418 is_gimple_asm_val
, fb_rvalue
);
5419 if (tret
== GS_ERROR
)
5423 TREE_CHAIN (link
) = NULL_TREE
;
5424 VEC_safe_push (tree
, gc
, inputs
, link
);
5427 for (link
= ASM_CLOBBERS (expr
); link
; ++i
, link
= TREE_CHAIN (link
))
5428 VEC_safe_push (tree
, gc
, clobbers
, link
);
5430 for (link
= ASM_LABELS (expr
); link
; ++i
, link
= TREE_CHAIN (link
))
5431 VEC_safe_push (tree
, gc
, labels
, link
);
5433 /* Do not add ASMs with errors to the gimple IL stream. */
5434 if (ret
!= GS_ERROR
)
5436 stmt
= gimple_build_asm_vec (TREE_STRING_POINTER (ASM_STRING (expr
)),
5437 inputs
, outputs
, clobbers
, labels
);
5439 gimple_asm_set_volatile (stmt
, ASM_VOLATILE_P (expr
));
5440 gimple_asm_set_input (stmt
, ASM_INPUT_P (expr
));
5442 gimplify_seq_add_stmt (pre_p
, stmt
);
5448 /* Gimplify a CLEANUP_POINT_EXPR. Currently this works by adding
5449 GIMPLE_WITH_CLEANUP_EXPRs to the prequeue as we encounter cleanups while
5450 gimplifying the body, and converting them to TRY_FINALLY_EXPRs when we
5451 return to this function.
5453 FIXME should we complexify the prequeue handling instead? Or use flags
5454 for all the cleanups and let the optimizer tighten them up? The current
5455 code seems pretty fragile; it will break on a cleanup within any
5456 non-conditional nesting. But any such nesting would be broken, anyway;
5457 we can't write a TRY_FINALLY_EXPR that starts inside a nesting construct
5458 and continues out of it. We can do that at the RTL level, though, so
5459 having an optimizer to tighten up try/finally regions would be a Good
5462 static enum gimplify_status
5463 gimplify_cleanup_point_expr (tree
*expr_p
, gimple_seq
*pre_p
)
5465 gimple_stmt_iterator iter
;
5466 gimple_seq body_sequence
= NULL
;
5468 tree temp
= voidify_wrapper_expr (*expr_p
, NULL
);
5470 /* We only care about the number of conditions between the innermost
5471 CLEANUP_POINT_EXPR and the cleanup. So save and reset the count and
5472 any cleanups collected outside the CLEANUP_POINT_EXPR. */
5473 int old_conds
= gimplify_ctxp
->conditions
;
5474 gimple_seq old_cleanups
= gimplify_ctxp
->conditional_cleanups
;
5475 bool old_in_cleanup_point_expr
= gimplify_ctxp
->in_cleanup_point_expr
;
5476 gimplify_ctxp
->conditions
= 0;
5477 gimplify_ctxp
->conditional_cleanups
= NULL
;
5478 gimplify_ctxp
->in_cleanup_point_expr
= true;
5480 gimplify_stmt (&TREE_OPERAND (*expr_p
, 0), &body_sequence
);
5482 gimplify_ctxp
->conditions
= old_conds
;
5483 gimplify_ctxp
->conditional_cleanups
= old_cleanups
;
5484 gimplify_ctxp
->in_cleanup_point_expr
= old_in_cleanup_point_expr
;
5486 for (iter
= gsi_start (body_sequence
); !gsi_end_p (iter
); )
5488 gimple wce
= gsi_stmt (iter
);
5490 if (gimple_code (wce
) == GIMPLE_WITH_CLEANUP_EXPR
)
5492 if (gsi_one_before_end_p (iter
))
5494 /* Note that gsi_insert_seq_before and gsi_remove do not
5495 scan operands, unlike some other sequence mutators. */
5496 if (!gimple_wce_cleanup_eh_only (wce
))
5497 gsi_insert_seq_before_without_update (&iter
,
5498 gimple_wce_cleanup (wce
),
5500 gsi_remove (&iter
, true);
5507 enum gimple_try_flags kind
;
5509 if (gimple_wce_cleanup_eh_only (wce
))
5510 kind
= GIMPLE_TRY_CATCH
;
5512 kind
= GIMPLE_TRY_FINALLY
;
5513 seq
= gsi_split_seq_after (iter
);
5515 gtry
= gimple_build_try (seq
, gimple_wce_cleanup (wce
), kind
);
5516 /* Do not use gsi_replace here, as it may scan operands.
5517 We want to do a simple structural modification only. */
5518 gsi_set_stmt (&iter
, gtry
);
5519 iter
= gsi_start (gtry
->gimple_try
.eval
);
5526 gimplify_seq_add_seq (pre_p
, body_sequence
);
5539 /* Insert a cleanup marker for gimplify_cleanup_point_expr. CLEANUP
5540 is the cleanup action required. EH_ONLY is true if the cleanup should
5541 only be executed if an exception is thrown, not on normal exit. */
5544 gimple_push_cleanup (tree var
, tree cleanup
, bool eh_only
, gimple_seq
*pre_p
)
5547 gimple_seq cleanup_stmts
= NULL
;
5549 /* Errors can result in improperly nested cleanups. Which results in
5550 confusion when trying to resolve the GIMPLE_WITH_CLEANUP_EXPR. */
5554 if (gimple_conditional_context ())
5556 /* If we're in a conditional context, this is more complex. We only
5557 want to run the cleanup if we actually ran the initialization that
5558 necessitates it, but we want to run it after the end of the
5559 conditional context. So we wrap the try/finally around the
5560 condition and use a flag to determine whether or not to actually
5561 run the destructor. Thus
5565 becomes (approximately)
5569 if (test) { A::A(temp); flag = 1; val = f(temp); }
5572 if (flag) A::~A(temp);
5576 tree flag
= create_tmp_var (boolean_type_node
, "cleanup");
5577 gimple ffalse
= gimple_build_assign (flag
, boolean_false_node
);
5578 gimple ftrue
= gimple_build_assign (flag
, boolean_true_node
);
5580 cleanup
= build3 (COND_EXPR
, void_type_node
, flag
, cleanup
, NULL
);
5581 gimplify_stmt (&cleanup
, &cleanup_stmts
);
5582 wce
= gimple_build_wce (cleanup_stmts
);
5584 gimplify_seq_add_stmt (&gimplify_ctxp
->conditional_cleanups
, ffalse
);
5585 gimplify_seq_add_stmt (&gimplify_ctxp
->conditional_cleanups
, wce
);
5586 gimplify_seq_add_stmt (pre_p
, ftrue
);
5588 /* Because of this manipulation, and the EH edges that jump
5589 threading cannot redirect, the temporary (VAR) will appear
5590 to be used uninitialized. Don't warn. */
5591 TREE_NO_WARNING (var
) = 1;
5595 gimplify_stmt (&cleanup
, &cleanup_stmts
);
5596 wce
= gimple_build_wce (cleanup_stmts
);
5597 gimple_wce_set_cleanup_eh_only (wce
, eh_only
);
5598 gimplify_seq_add_stmt (pre_p
, wce
);
5602 /* Gimplify a TARGET_EXPR which doesn't appear on the rhs of an INIT_EXPR. */
5604 static enum gimplify_status
5605 gimplify_target_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
)
5607 tree targ
= *expr_p
;
5608 tree temp
= TARGET_EXPR_SLOT (targ
);
5609 tree init
= TARGET_EXPR_INITIAL (targ
);
5610 enum gimplify_status ret
;
5614 tree cleanup
= NULL_TREE
;
5616 /* TARGET_EXPR temps aren't part of the enclosing block, so add it
5617 to the temps list. Handle also variable length TARGET_EXPRs. */
5618 if (TREE_CODE (DECL_SIZE (temp
)) != INTEGER_CST
)
5620 if (!TYPE_SIZES_GIMPLIFIED (TREE_TYPE (temp
)))
5621 gimplify_type_sizes (TREE_TYPE (temp
), pre_p
);
5622 gimplify_vla_decl (temp
, pre_p
);
5625 gimple_add_tmp_var (temp
);
5627 /* If TARGET_EXPR_INITIAL is void, then the mere evaluation of the
5628 expression is supposed to initialize the slot. */
5629 if (VOID_TYPE_P (TREE_TYPE (init
)))
5630 ret
= gimplify_expr (&init
, pre_p
, post_p
, is_gimple_stmt
, fb_none
);
5633 tree init_expr
= build2 (INIT_EXPR
, void_type_node
, temp
, init
);
5635 ret
= gimplify_expr (&init
, pre_p
, post_p
, is_gimple_stmt
, fb_none
);
5637 ggc_free (init_expr
);
5639 if (ret
== GS_ERROR
)
5641 /* PR c++/28266 Make sure this is expanded only once. */
5642 TARGET_EXPR_INITIAL (targ
) = NULL_TREE
;
5646 gimplify_and_add (init
, pre_p
);
5648 /* If needed, push the cleanup for the temp. */
5649 if (TARGET_EXPR_CLEANUP (targ
))
5651 if (CLEANUP_EH_ONLY (targ
))
5652 gimple_push_cleanup (temp
, TARGET_EXPR_CLEANUP (targ
),
5653 CLEANUP_EH_ONLY (targ
), pre_p
);
5655 cleanup
= TARGET_EXPR_CLEANUP (targ
);
5658 /* Add a clobber for the temporary going out of scope, like
5659 gimplify_bind_expr. */
5660 if (gimplify_ctxp
->in_cleanup_point_expr
5661 && needs_to_live_in_memory (temp
)
5662 && flag_stack_reuse
== SR_ALL
)
5664 tree clobber
= build_constructor (TREE_TYPE (temp
), NULL
);
5665 TREE_THIS_VOLATILE (clobber
) = true;
5666 clobber
= build2 (MODIFY_EXPR
, TREE_TYPE (temp
), temp
, clobber
);
5668 cleanup
= build2 (COMPOUND_EXPR
, void_type_node
, cleanup
,
5675 gimple_push_cleanup (temp
, cleanup
, false, pre_p
);
5677 /* Only expand this once. */
5678 TREE_OPERAND (targ
, 3) = init
;
5679 TARGET_EXPR_INITIAL (targ
) = NULL_TREE
;
5682 /* We should have expanded this before. */
5683 gcc_assert (DECL_SEEN_IN_BIND_EXPR_P (temp
));
5689 /* Gimplification of expression trees. */
5691 /* Gimplify an expression which appears at statement context. The
5692 corresponding GIMPLE statements are added to *SEQ_P. If *SEQ_P is
5693 NULL, a new sequence is allocated.
5695 Return true if we actually added a statement to the queue. */
5698 gimplify_stmt (tree
*stmt_p
, gimple_seq
*seq_p
)
5700 gimple_seq_node last
;
5702 last
= gimple_seq_last (*seq_p
);
5703 gimplify_expr (stmt_p
, seq_p
, NULL
, is_gimple_stmt
, fb_none
);
5704 return last
!= gimple_seq_last (*seq_p
);
5707 /* Add FIRSTPRIVATE entries for DECL in the OpenMP the surrounding parallels
5708 to CTX. If entries already exist, force them to be some flavor of private.
5709 If there is no enclosing parallel, do nothing. */
5712 omp_firstprivatize_variable (struct gimplify_omp_ctx
*ctx
, tree decl
)
5716 if (decl
== NULL
|| !DECL_P (decl
))
5721 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
5724 if (n
->value
& GOVD_SHARED
)
5725 n
->value
= GOVD_FIRSTPRIVATE
| (n
->value
& GOVD_SEEN
);
5729 else if (ctx
->region_type
!= ORT_WORKSHARE
)
5730 omp_add_variable (ctx
, decl
, GOVD_FIRSTPRIVATE
);
5732 ctx
= ctx
->outer_context
;
5737 /* Similarly for each of the type sizes of TYPE. */
5740 omp_firstprivatize_type_sizes (struct gimplify_omp_ctx
*ctx
, tree type
)
5742 if (type
== NULL
|| type
== error_mark_node
)
5744 type
= TYPE_MAIN_VARIANT (type
);
5746 if (pointer_set_insert (ctx
->privatized_types
, type
))
5749 switch (TREE_CODE (type
))
5755 case FIXED_POINT_TYPE
:
5756 omp_firstprivatize_variable (ctx
, TYPE_MIN_VALUE (type
));
5757 omp_firstprivatize_variable (ctx
, TYPE_MAX_VALUE (type
));
5761 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (type
));
5762 omp_firstprivatize_type_sizes (ctx
, TYPE_DOMAIN (type
));
5767 case QUAL_UNION_TYPE
:
5770 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
5771 if (TREE_CODE (field
) == FIELD_DECL
)
5773 omp_firstprivatize_variable (ctx
, DECL_FIELD_OFFSET (field
));
5774 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (field
));
5780 case REFERENCE_TYPE
:
5781 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (type
));
5788 omp_firstprivatize_variable (ctx
, TYPE_SIZE (type
));
5789 omp_firstprivatize_variable (ctx
, TYPE_SIZE_UNIT (type
));
5790 lang_hooks
.types
.omp_firstprivatize_type_sizes (ctx
, type
);
5793 /* Add an entry for DECL in the OpenMP context CTX with FLAGS. */
5796 omp_add_variable (struct gimplify_omp_ctx
*ctx
, tree decl
, unsigned int flags
)
5799 unsigned int nflags
;
5802 if (error_operand_p (decl
))
5805 /* Never elide decls whose type has TREE_ADDRESSABLE set. This means
5806 there are constructors involved somewhere. */
5807 if (TREE_ADDRESSABLE (TREE_TYPE (decl
))
5808 || TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (decl
)))
5811 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
5814 /* We shouldn't be re-adding the decl with the same data
5816 gcc_assert ((n
->value
& GOVD_DATA_SHARE_CLASS
& flags
) == 0);
5817 /* The only combination of data sharing classes we should see is
5818 FIRSTPRIVATE and LASTPRIVATE. */
5819 nflags
= n
->value
| flags
;
5820 gcc_assert ((nflags
& GOVD_DATA_SHARE_CLASS
)
5821 == (GOVD_FIRSTPRIVATE
| GOVD_LASTPRIVATE
));
5826 /* When adding a variable-sized variable, we have to handle all sorts
5827 of additional bits of data: the pointer replacement variable, and
5828 the parameters of the type. */
5829 if (DECL_SIZE (decl
) && TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
5831 /* Add the pointer replacement variable as PRIVATE if the variable
5832 replacement is private, else FIRSTPRIVATE since we'll need the
5833 address of the original variable either for SHARED, or for the
5834 copy into or out of the context. */
5835 if (!(flags
& GOVD_LOCAL
))
5837 nflags
= flags
& GOVD_PRIVATE
? GOVD_PRIVATE
: GOVD_FIRSTPRIVATE
;
5838 nflags
|= flags
& GOVD_SEEN
;
5839 t
= DECL_VALUE_EXPR (decl
);
5840 gcc_assert (TREE_CODE (t
) == INDIRECT_REF
);
5841 t
= TREE_OPERAND (t
, 0);
5842 gcc_assert (DECL_P (t
));
5843 omp_add_variable (ctx
, t
, nflags
);
5846 /* Add all of the variable and type parameters (which should have
5847 been gimplified to a formal temporary) as FIRSTPRIVATE. */
5848 omp_firstprivatize_variable (ctx
, DECL_SIZE_UNIT (decl
));
5849 omp_firstprivatize_variable (ctx
, DECL_SIZE (decl
));
5850 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (decl
));
5852 /* The variable-sized variable itself is never SHARED, only some form
5853 of PRIVATE. The sharing would take place via the pointer variable
5854 which we remapped above. */
5855 if (flags
& GOVD_SHARED
)
5856 flags
= GOVD_PRIVATE
| GOVD_DEBUG_PRIVATE
5857 | (flags
& (GOVD_SEEN
| GOVD_EXPLICIT
));
5859 /* We're going to make use of the TYPE_SIZE_UNIT at least in the
5860 alloca statement we generate for the variable, so make sure it
5861 is available. This isn't automatically needed for the SHARED
5862 case, since we won't be allocating local storage then.
5863 For local variables TYPE_SIZE_UNIT might not be gimplified yet,
5864 in this case omp_notice_variable will be called later
5865 on when it is gimplified. */
5866 else if (! (flags
& GOVD_LOCAL
)
5867 && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl
))))
5868 omp_notice_variable (ctx
, TYPE_SIZE_UNIT (TREE_TYPE (decl
)), true);
5870 else if (lang_hooks
.decls
.omp_privatize_by_reference (decl
))
5872 gcc_assert ((flags
& GOVD_LOCAL
) == 0);
5873 omp_firstprivatize_type_sizes (ctx
, TREE_TYPE (decl
));
5875 /* Similar to the direct variable sized case above, we'll need the
5876 size of references being privatized. */
5877 if ((flags
& GOVD_SHARED
) == 0)
5879 t
= TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (decl
)));
5880 if (TREE_CODE (t
) != INTEGER_CST
)
5881 omp_notice_variable (ctx
, t
, true);
5885 splay_tree_insert (ctx
->variables
, (splay_tree_key
)decl
, flags
);
5888 /* Notice a threadprivate variable DECL used in OpenMP context CTX.
5889 This just prints out diagnostics about threadprivate variable uses
5890 in untied tasks. If DECL2 is non-NULL, prevent this warning
5891 on that variable. */
5894 omp_notice_threadprivate_variable (struct gimplify_omp_ctx
*ctx
, tree decl
,
5899 if (ctx
->region_type
!= ORT_UNTIED_TASK
)
5901 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
5904 error ("threadprivate variable %qE used in untied task",
5906 error_at (ctx
->location
, "enclosing task");
5907 splay_tree_insert (ctx
->variables
, (splay_tree_key
)decl
, 0);
5910 splay_tree_insert (ctx
->variables
, (splay_tree_key
)decl2
, 0);
5914 /* Record the fact that DECL was used within the OpenMP context CTX.
5915 IN_CODE is true when real code uses DECL, and false when we should
5916 merely emit default(none) errors. Return true if DECL is going to
5917 be remapped and thus DECL shouldn't be gimplified into its
5918 DECL_VALUE_EXPR (if any). */
5921 omp_notice_variable (struct gimplify_omp_ctx
*ctx
, tree decl
, bool in_code
)
5924 unsigned flags
= in_code
? GOVD_SEEN
: 0;
5925 bool ret
= false, shared
;
5927 if (error_operand_p (decl
))
5930 /* Threadprivate variables are predetermined. */
5931 if (is_global_var (decl
))
5933 if (DECL_THREAD_LOCAL_P (decl
))
5934 return omp_notice_threadprivate_variable (ctx
, decl
, NULL_TREE
);
5936 if (DECL_HAS_VALUE_EXPR_P (decl
))
5938 tree value
= get_base_address (DECL_VALUE_EXPR (decl
));
5940 if (value
&& DECL_P (value
) && DECL_THREAD_LOCAL_P (value
))
5941 return omp_notice_threadprivate_variable (ctx
, decl
, value
);
5945 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
5948 enum omp_clause_default_kind default_kind
, kind
;
5949 struct gimplify_omp_ctx
*octx
;
5951 if (ctx
->region_type
== ORT_WORKSHARE
)
5954 /* ??? Some compiler-generated variables (like SAVE_EXPRs) could be
5955 remapped firstprivate instead of shared. To some extent this is
5956 addressed in omp_firstprivatize_type_sizes, but not effectively. */
5957 default_kind
= ctx
->default_kind
;
5958 kind
= lang_hooks
.decls
.omp_predetermined_sharing (decl
);
5959 if (kind
!= OMP_CLAUSE_DEFAULT_UNSPECIFIED
)
5960 default_kind
= kind
;
5962 switch (default_kind
)
5964 case OMP_CLAUSE_DEFAULT_NONE
:
5965 error ("%qE not specified in enclosing parallel",
5966 DECL_NAME (lang_hooks
.decls
.omp_report_decl (decl
)));
5967 if ((ctx
->region_type
& ORT_TASK
) != 0)
5968 error_at (ctx
->location
, "enclosing task");
5970 error_at (ctx
->location
, "enclosing parallel");
5972 case OMP_CLAUSE_DEFAULT_SHARED
:
5973 flags
|= GOVD_SHARED
;
5975 case OMP_CLAUSE_DEFAULT_PRIVATE
:
5976 flags
|= GOVD_PRIVATE
;
5978 case OMP_CLAUSE_DEFAULT_FIRSTPRIVATE
:
5979 flags
|= GOVD_FIRSTPRIVATE
;
5981 case OMP_CLAUSE_DEFAULT_UNSPECIFIED
:
5982 /* decl will be either GOVD_FIRSTPRIVATE or GOVD_SHARED. */
5983 gcc_assert ((ctx
->region_type
& ORT_TASK
) != 0);
5984 if (ctx
->outer_context
)
5985 omp_notice_variable (ctx
->outer_context
, decl
, in_code
);
5986 for (octx
= ctx
->outer_context
; octx
; octx
= octx
->outer_context
)
5990 n2
= splay_tree_lookup (octx
->variables
, (splay_tree_key
) decl
);
5991 if (n2
&& (n2
->value
& GOVD_DATA_SHARE_CLASS
) != GOVD_SHARED
)
5993 flags
|= GOVD_FIRSTPRIVATE
;
5996 if ((octx
->region_type
& ORT_PARALLEL
) != 0)
5999 if (flags
& GOVD_FIRSTPRIVATE
)
6002 && (TREE_CODE (decl
) == PARM_DECL
6003 || (!is_global_var (decl
)
6004 && DECL_CONTEXT (decl
) == current_function_decl
)))
6006 flags
|= GOVD_FIRSTPRIVATE
;
6009 flags
|= GOVD_SHARED
;
6015 if ((flags
& GOVD_PRIVATE
)
6016 && lang_hooks
.decls
.omp_private_outer_ref (decl
))
6017 flags
|= GOVD_PRIVATE_OUTER_REF
;
6019 omp_add_variable (ctx
, decl
, flags
);
6021 shared
= (flags
& GOVD_SHARED
) != 0;
6022 ret
= lang_hooks
.decls
.omp_disregard_value_expr (decl
, shared
);
6026 if ((n
->value
& (GOVD_SEEN
| GOVD_LOCAL
)) == 0
6027 && (flags
& (GOVD_SEEN
| GOVD_LOCAL
)) == GOVD_SEEN
6029 && TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
6032 tree t
= DECL_VALUE_EXPR (decl
);
6033 gcc_assert (TREE_CODE (t
) == INDIRECT_REF
);
6034 t
= TREE_OPERAND (t
, 0);
6035 gcc_assert (DECL_P (t
));
6036 n2
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
) t
);
6037 n2
->value
|= GOVD_SEEN
;
6040 shared
= ((flags
| n
->value
) & GOVD_SHARED
) != 0;
6041 ret
= lang_hooks
.decls
.omp_disregard_value_expr (decl
, shared
);
6043 /* If nothing changed, there's nothing left to do. */
6044 if ((n
->value
& flags
) == flags
)
6050 /* If the variable is private in the current context, then we don't
6051 need to propagate anything to an outer context. */
6052 if ((flags
& GOVD_PRIVATE
) && !(flags
& GOVD_PRIVATE_OUTER_REF
))
6054 if (ctx
->outer_context
6055 && omp_notice_variable (ctx
->outer_context
, decl
, in_code
))
6060 /* Verify that DECL is private within CTX. If there's specific information
6061 to the contrary in the innermost scope, generate an error. */
6064 omp_is_private (struct gimplify_omp_ctx
*ctx
, tree decl
)
6068 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
)decl
);
6071 if (n
->value
& GOVD_SHARED
)
6073 if (ctx
== gimplify_omp_ctxp
)
6075 error ("iteration variable %qE should be private",
6077 n
->value
= GOVD_PRIVATE
;
6083 else if ((n
->value
& GOVD_EXPLICIT
) != 0
6084 && (ctx
== gimplify_omp_ctxp
6085 || (ctx
->region_type
== ORT_COMBINED_PARALLEL
6086 && gimplify_omp_ctxp
->outer_context
== ctx
)))
6088 if ((n
->value
& GOVD_FIRSTPRIVATE
) != 0)
6089 error ("iteration variable %qE should not be firstprivate",
6091 else if ((n
->value
& GOVD_REDUCTION
) != 0)
6092 error ("iteration variable %qE should not be reduction",
6095 return (ctx
== gimplify_omp_ctxp
6096 || (ctx
->region_type
== ORT_COMBINED_PARALLEL
6097 && gimplify_omp_ctxp
->outer_context
== ctx
));
6100 if (ctx
->region_type
!= ORT_WORKSHARE
)
6102 else if (ctx
->outer_context
)
6103 return omp_is_private (ctx
->outer_context
, decl
);
6107 /* Return true if DECL is private within a parallel region
6108 that binds to the current construct's context or in parallel
6109 region's REDUCTION clause. */
6112 omp_check_private (struct gimplify_omp_ctx
*ctx
, tree decl
)
6118 ctx
= ctx
->outer_context
;
6120 return !(is_global_var (decl
)
6121 /* References might be private, but might be shared too. */
6122 || lang_hooks
.decls
.omp_privatize_by_reference (decl
));
6124 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
) decl
);
6126 return (n
->value
& GOVD_SHARED
) == 0;
6128 while (ctx
->region_type
== ORT_WORKSHARE
);
6132 /* Scan the OpenMP clauses in *LIST_P, installing mappings into a new
6133 and previous omp contexts. */
6136 gimplify_scan_omp_clauses (tree
*list_p
, gimple_seq
*pre_p
,
6137 enum omp_region_type region_type
)
6139 struct gimplify_omp_ctx
*ctx
, *outer_ctx
;
6140 struct gimplify_ctx gctx
;
6143 ctx
= new_omp_context (region_type
);
6144 outer_ctx
= ctx
->outer_context
;
6146 while ((c
= *list_p
) != NULL
)
6148 bool remove
= false;
6149 bool notice_outer
= true;
6150 const char *check_non_private
= NULL
;
6154 switch (OMP_CLAUSE_CODE (c
))
6156 case OMP_CLAUSE_PRIVATE
:
6157 flags
= GOVD_PRIVATE
| GOVD_EXPLICIT
;
6158 if (lang_hooks
.decls
.omp_private_outer_ref (OMP_CLAUSE_DECL (c
)))
6160 flags
|= GOVD_PRIVATE_OUTER_REF
;
6161 OMP_CLAUSE_PRIVATE_OUTER_REF (c
) = 1;
6164 notice_outer
= false;
6166 case OMP_CLAUSE_SHARED
:
6167 flags
= GOVD_SHARED
| GOVD_EXPLICIT
;
6169 case OMP_CLAUSE_FIRSTPRIVATE
:
6170 flags
= GOVD_FIRSTPRIVATE
| GOVD_EXPLICIT
;
6171 check_non_private
= "firstprivate";
6173 case OMP_CLAUSE_LASTPRIVATE
:
6174 flags
= GOVD_LASTPRIVATE
| GOVD_SEEN
| GOVD_EXPLICIT
;
6175 check_non_private
= "lastprivate";
6177 case OMP_CLAUSE_REDUCTION
:
6178 flags
= GOVD_REDUCTION
| GOVD_SEEN
| GOVD_EXPLICIT
;
6179 check_non_private
= "reduction";
6183 decl
= OMP_CLAUSE_DECL (c
);
6184 if (error_operand_p (decl
))
6189 omp_add_variable (ctx
, decl
, flags
);
6190 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_REDUCTION
6191 && OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
))
6193 omp_add_variable (ctx
, OMP_CLAUSE_REDUCTION_PLACEHOLDER (c
),
6194 GOVD_LOCAL
| GOVD_SEEN
);
6195 gimplify_omp_ctxp
= ctx
;
6196 push_gimplify_context (&gctx
);
6198 OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
) = NULL
;
6199 OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
) = NULL
;
6201 gimplify_and_add (OMP_CLAUSE_REDUCTION_INIT (c
),
6202 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
));
6203 pop_gimplify_context
6204 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_INIT (c
)));
6205 push_gimplify_context (&gctx
);
6206 gimplify_and_add (OMP_CLAUSE_REDUCTION_MERGE (c
),
6207 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
));
6208 pop_gimplify_context
6209 (gimple_seq_first_stmt (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (c
)));
6210 OMP_CLAUSE_REDUCTION_INIT (c
) = NULL_TREE
;
6211 OMP_CLAUSE_REDUCTION_MERGE (c
) = NULL_TREE
;
6213 gimplify_omp_ctxp
= outer_ctx
;
6215 else if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6216 && OMP_CLAUSE_LASTPRIVATE_STMT (c
))
6218 gimplify_omp_ctxp
= ctx
;
6219 push_gimplify_context (&gctx
);
6220 if (TREE_CODE (OMP_CLAUSE_LASTPRIVATE_STMT (c
)) != BIND_EXPR
)
6222 tree bind
= build3 (BIND_EXPR
, void_type_node
, NULL
,
6224 TREE_SIDE_EFFECTS (bind
) = 1;
6225 BIND_EXPR_BODY (bind
) = OMP_CLAUSE_LASTPRIVATE_STMT (c
);
6226 OMP_CLAUSE_LASTPRIVATE_STMT (c
) = bind
;
6228 gimplify_and_add (OMP_CLAUSE_LASTPRIVATE_STMT (c
),
6229 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
));
6230 pop_gimplify_context
6231 (gimple_seq_first_stmt (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
)));
6232 OMP_CLAUSE_LASTPRIVATE_STMT (c
) = NULL_TREE
;
6234 gimplify_omp_ctxp
= outer_ctx
;
6240 case OMP_CLAUSE_COPYIN
:
6241 case OMP_CLAUSE_COPYPRIVATE
:
6242 decl
= OMP_CLAUSE_DECL (c
);
6243 if (error_operand_p (decl
))
6250 omp_notice_variable (outer_ctx
, decl
, true);
6251 if (check_non_private
6252 && region_type
== ORT_WORKSHARE
6253 && omp_check_private (ctx
, decl
))
6255 error ("%s variable %qE is private in outer context",
6256 check_non_private
, DECL_NAME (decl
));
6261 case OMP_CLAUSE_FINAL
:
6263 OMP_CLAUSE_OPERAND (c
, 0)
6264 = gimple_boolify (OMP_CLAUSE_OPERAND (c
, 0));
6267 case OMP_CLAUSE_SCHEDULE
:
6268 case OMP_CLAUSE_NUM_THREADS
:
6269 if (gimplify_expr (&OMP_CLAUSE_OPERAND (c
, 0), pre_p
, NULL
,
6270 is_gimple_val
, fb_rvalue
) == GS_ERROR
)
6274 case OMP_CLAUSE_NOWAIT
:
6275 case OMP_CLAUSE_ORDERED
:
6276 case OMP_CLAUSE_UNTIED
:
6277 case OMP_CLAUSE_COLLAPSE
:
6278 case OMP_CLAUSE_MERGEABLE
:
6281 case OMP_CLAUSE_DEFAULT
:
6282 ctx
->default_kind
= OMP_CLAUSE_DEFAULT_KIND (c
);
6290 *list_p
= OMP_CLAUSE_CHAIN (c
);
6292 list_p
= &OMP_CLAUSE_CHAIN (c
);
6295 gimplify_omp_ctxp
= ctx
;
6298 /* For all variables that were not actually used within the context,
6299 remove PRIVATE, SHARED, and FIRSTPRIVATE clauses. */
6302 gimplify_adjust_omp_clauses_1 (splay_tree_node n
, void *data
)
6304 tree
*list_p
= (tree
*) data
;
6305 tree decl
= (tree
) n
->key
;
6306 unsigned flags
= n
->value
;
6307 enum omp_clause_code code
;
6311 if (flags
& (GOVD_EXPLICIT
| GOVD_LOCAL
))
6313 if ((flags
& GOVD_SEEN
) == 0)
6315 if (flags
& GOVD_DEBUG_PRIVATE
)
6317 gcc_assert ((flags
& GOVD_DATA_SHARE_CLASS
) == GOVD_PRIVATE
);
6318 private_debug
= true;
6322 = lang_hooks
.decls
.omp_private_debug_clause (decl
,
6323 !!(flags
& GOVD_SHARED
));
6325 code
= OMP_CLAUSE_PRIVATE
;
6326 else if (flags
& GOVD_SHARED
)
6328 if (is_global_var (decl
))
6330 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
->outer_context
;
6334 = splay_tree_lookup (ctx
->variables
, (splay_tree_key
) decl
);
6335 if (on
&& (on
->value
& (GOVD_FIRSTPRIVATE
| GOVD_LASTPRIVATE
6336 | GOVD_PRIVATE
| GOVD_REDUCTION
)) != 0)
6338 ctx
= ctx
->outer_context
;
6343 code
= OMP_CLAUSE_SHARED
;
6345 else if (flags
& GOVD_PRIVATE
)
6346 code
= OMP_CLAUSE_PRIVATE
;
6347 else if (flags
& GOVD_FIRSTPRIVATE
)
6348 code
= OMP_CLAUSE_FIRSTPRIVATE
;
6352 clause
= build_omp_clause (input_location
, code
);
6353 OMP_CLAUSE_DECL (clause
) = decl
;
6354 OMP_CLAUSE_CHAIN (clause
) = *list_p
;
6356 OMP_CLAUSE_PRIVATE_DEBUG (clause
) = 1;
6357 else if (code
== OMP_CLAUSE_PRIVATE
&& (flags
& GOVD_PRIVATE_OUTER_REF
))
6358 OMP_CLAUSE_PRIVATE_OUTER_REF (clause
) = 1;
6360 lang_hooks
.decls
.omp_finish_clause (clause
);
6366 gimplify_adjust_omp_clauses (tree
*list_p
)
6368 struct gimplify_omp_ctx
*ctx
= gimplify_omp_ctxp
;
6371 while ((c
= *list_p
) != NULL
)
6374 bool remove
= false;
6376 switch (OMP_CLAUSE_CODE (c
))
6378 case OMP_CLAUSE_PRIVATE
:
6379 case OMP_CLAUSE_SHARED
:
6380 case OMP_CLAUSE_FIRSTPRIVATE
:
6381 decl
= OMP_CLAUSE_DECL (c
);
6382 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
) decl
);
6383 remove
= !(n
->value
& GOVD_SEEN
);
6386 bool shared
= OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_SHARED
;
6387 if ((n
->value
& GOVD_DEBUG_PRIVATE
)
6388 || lang_hooks
.decls
.omp_private_debug_clause (decl
, shared
))
6390 gcc_assert ((n
->value
& GOVD_DEBUG_PRIVATE
) == 0
6391 || ((n
->value
& GOVD_DATA_SHARE_CLASS
)
6393 OMP_CLAUSE_SET_CODE (c
, OMP_CLAUSE_PRIVATE
);
6394 OMP_CLAUSE_PRIVATE_DEBUG (c
) = 1;
6399 case OMP_CLAUSE_LASTPRIVATE
:
6400 /* Make sure OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE is set to
6401 accurately reflect the presence of a FIRSTPRIVATE clause. */
6402 decl
= OMP_CLAUSE_DECL (c
);
6403 n
= splay_tree_lookup (ctx
->variables
, (splay_tree_key
) decl
);
6404 OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE (c
)
6405 = (n
->value
& GOVD_FIRSTPRIVATE
) != 0;
6408 case OMP_CLAUSE_REDUCTION
:
6409 case OMP_CLAUSE_COPYIN
:
6410 case OMP_CLAUSE_COPYPRIVATE
:
6412 case OMP_CLAUSE_NUM_THREADS
:
6413 case OMP_CLAUSE_SCHEDULE
:
6414 case OMP_CLAUSE_NOWAIT
:
6415 case OMP_CLAUSE_ORDERED
:
6416 case OMP_CLAUSE_DEFAULT
:
6417 case OMP_CLAUSE_UNTIED
:
6418 case OMP_CLAUSE_COLLAPSE
:
6419 case OMP_CLAUSE_FINAL
:
6420 case OMP_CLAUSE_MERGEABLE
:
6428 *list_p
= OMP_CLAUSE_CHAIN (c
);
6430 list_p
= &OMP_CLAUSE_CHAIN (c
);
6433 /* Add in any implicit data sharing. */
6434 splay_tree_foreach (ctx
->variables
, gimplify_adjust_omp_clauses_1
, list_p
);
6436 gimplify_omp_ctxp
= ctx
->outer_context
;
6437 delete_omp_context (ctx
);
6440 /* Gimplify the contents of an OMP_PARALLEL statement. This involves
6441 gimplification of the body, as well as scanning the body for used
6442 variables. We need to do this scan now, because variable-sized
6443 decls will be decomposed during gimplification. */
6446 gimplify_omp_parallel (tree
*expr_p
, gimple_seq
*pre_p
)
6448 tree expr
= *expr_p
;
6450 gimple_seq body
= NULL
;
6451 struct gimplify_ctx gctx
;
6453 gimplify_scan_omp_clauses (&OMP_PARALLEL_CLAUSES (expr
), pre_p
,
6454 OMP_PARALLEL_COMBINED (expr
)
6455 ? ORT_COMBINED_PARALLEL
6458 push_gimplify_context (&gctx
);
6460 g
= gimplify_and_return_first (OMP_PARALLEL_BODY (expr
), &body
);
6461 if (gimple_code (g
) == GIMPLE_BIND
)
6462 pop_gimplify_context (g
);
6464 pop_gimplify_context (NULL
);
6466 gimplify_adjust_omp_clauses (&OMP_PARALLEL_CLAUSES (expr
));
6468 g
= gimple_build_omp_parallel (body
,
6469 OMP_PARALLEL_CLAUSES (expr
),
6470 NULL_TREE
, NULL_TREE
);
6471 if (OMP_PARALLEL_COMBINED (expr
))
6472 gimple_omp_set_subcode (g
, GF_OMP_PARALLEL_COMBINED
);
6473 gimplify_seq_add_stmt (pre_p
, g
);
6474 *expr_p
= NULL_TREE
;
6477 /* Gimplify the contents of an OMP_TASK statement. This involves
6478 gimplification of the body, as well as scanning the body for used
6479 variables. We need to do this scan now, because variable-sized
6480 decls will be decomposed during gimplification. */
6483 gimplify_omp_task (tree
*expr_p
, gimple_seq
*pre_p
)
6485 tree expr
= *expr_p
;
6487 gimple_seq body
= NULL
;
6488 struct gimplify_ctx gctx
;
6490 gimplify_scan_omp_clauses (&OMP_TASK_CLAUSES (expr
), pre_p
,
6491 find_omp_clause (OMP_TASK_CLAUSES (expr
),
6493 ? ORT_UNTIED_TASK
: ORT_TASK
);
6495 push_gimplify_context (&gctx
);
6497 g
= gimplify_and_return_first (OMP_TASK_BODY (expr
), &body
);
6498 if (gimple_code (g
) == GIMPLE_BIND
)
6499 pop_gimplify_context (g
);
6501 pop_gimplify_context (NULL
);
6503 gimplify_adjust_omp_clauses (&OMP_TASK_CLAUSES (expr
));
6505 g
= gimple_build_omp_task (body
,
6506 OMP_TASK_CLAUSES (expr
),
6507 NULL_TREE
, NULL_TREE
,
6508 NULL_TREE
, NULL_TREE
, NULL_TREE
);
6509 gimplify_seq_add_stmt (pre_p
, g
);
6510 *expr_p
= NULL_TREE
;
6513 /* Gimplify the gross structure of an OMP_FOR statement. */
6515 static enum gimplify_status
6516 gimplify_omp_for (tree
*expr_p
, gimple_seq
*pre_p
)
6518 tree for_stmt
, decl
, var
, t
;
6519 enum gimplify_status ret
= GS_ALL_DONE
;
6520 enum gimplify_status tret
;
6522 gimple_seq for_body
, for_pre_body
;
6527 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt
), pre_p
,
6530 /* Handle OMP_FOR_INIT. */
6531 for_pre_body
= NULL
;
6532 gimplify_and_add (OMP_FOR_PRE_BODY (for_stmt
), &for_pre_body
);
6533 OMP_FOR_PRE_BODY (for_stmt
) = NULL_TREE
;
6536 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
))
6537 == TREE_VEC_LENGTH (OMP_FOR_COND (for_stmt
)));
6538 gcc_assert (TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
))
6539 == TREE_VEC_LENGTH (OMP_FOR_INCR (for_stmt
)));
6540 for (i
= 0; i
< TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
)); i
++)
6542 t
= TREE_VEC_ELT (OMP_FOR_INIT (for_stmt
), i
);
6543 gcc_assert (TREE_CODE (t
) == MODIFY_EXPR
);
6544 decl
= TREE_OPERAND (t
, 0);
6545 gcc_assert (DECL_P (decl
));
6546 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (decl
))
6547 || POINTER_TYPE_P (TREE_TYPE (decl
)));
6549 /* Make sure the iteration variable is private. */
6550 if (omp_is_private (gimplify_omp_ctxp
, decl
))
6551 omp_notice_variable (gimplify_omp_ctxp
, decl
, true);
6553 omp_add_variable (gimplify_omp_ctxp
, decl
, GOVD_PRIVATE
| GOVD_SEEN
);
6555 /* If DECL is not a gimple register, create a temporary variable to act
6556 as an iteration counter. This is valid, since DECL cannot be
6557 modified in the body of the loop. */
6558 if (!is_gimple_reg (decl
))
6560 var
= create_tmp_var (TREE_TYPE (decl
), get_name (decl
));
6561 TREE_OPERAND (t
, 0) = var
;
6563 gimplify_seq_add_stmt (&for_body
, gimple_build_assign (decl
, var
));
6565 omp_add_variable (gimplify_omp_ctxp
, var
, GOVD_PRIVATE
| GOVD_SEEN
);
6570 tret
= gimplify_expr (&TREE_OPERAND (t
, 1), &for_pre_body
, NULL
,
6571 is_gimple_val
, fb_rvalue
);
6572 ret
= MIN (ret
, tret
);
6573 if (ret
== GS_ERROR
)
6576 /* Handle OMP_FOR_COND. */
6577 t
= TREE_VEC_ELT (OMP_FOR_COND (for_stmt
), i
);
6578 gcc_assert (COMPARISON_CLASS_P (t
));
6579 gcc_assert (TREE_OPERAND (t
, 0) == decl
);
6581 tret
= gimplify_expr (&TREE_OPERAND (t
, 1), &for_pre_body
, NULL
,
6582 is_gimple_val
, fb_rvalue
);
6583 ret
= MIN (ret
, tret
);
6585 /* Handle OMP_FOR_INCR. */
6586 t
= TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
);
6587 switch (TREE_CODE (t
))
6589 case PREINCREMENT_EXPR
:
6590 case POSTINCREMENT_EXPR
:
6591 t
= build_int_cst (TREE_TYPE (decl
), 1);
6592 t
= build2 (PLUS_EXPR
, TREE_TYPE (decl
), var
, t
);
6593 t
= build2 (MODIFY_EXPR
, TREE_TYPE (var
), var
, t
);
6594 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
) = t
;
6597 case PREDECREMENT_EXPR
:
6598 case POSTDECREMENT_EXPR
:
6599 t
= build_int_cst (TREE_TYPE (decl
), -1);
6600 t
= build2 (PLUS_EXPR
, TREE_TYPE (decl
), var
, t
);
6601 t
= build2 (MODIFY_EXPR
, TREE_TYPE (var
), var
, t
);
6602 TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
) = t
;
6606 gcc_assert (TREE_OPERAND (t
, 0) == decl
);
6607 TREE_OPERAND (t
, 0) = var
;
6609 t
= TREE_OPERAND (t
, 1);
6610 switch (TREE_CODE (t
))
6613 if (TREE_OPERAND (t
, 1) == decl
)
6615 TREE_OPERAND (t
, 1) = TREE_OPERAND (t
, 0);
6616 TREE_OPERAND (t
, 0) = var
;
6622 case POINTER_PLUS_EXPR
:
6623 gcc_assert (TREE_OPERAND (t
, 0) == decl
);
6624 TREE_OPERAND (t
, 0) = var
;
6630 tret
= gimplify_expr (&TREE_OPERAND (t
, 1), &for_pre_body
, NULL
,
6631 is_gimple_val
, fb_rvalue
);
6632 ret
= MIN (ret
, tret
);
6639 if (var
!= decl
|| TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
)) > 1)
6642 for (c
= OMP_FOR_CLAUSES (for_stmt
); c
; c
= OMP_CLAUSE_CHAIN (c
))
6643 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
6644 && OMP_CLAUSE_DECL (c
) == decl
6645 && OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
) == NULL
)
6647 t
= TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
);
6648 gcc_assert (TREE_CODE (t
) == MODIFY_EXPR
);
6649 gcc_assert (TREE_OPERAND (t
, 0) == var
);
6650 t
= TREE_OPERAND (t
, 1);
6651 gcc_assert (TREE_CODE (t
) == PLUS_EXPR
6652 || TREE_CODE (t
) == MINUS_EXPR
6653 || TREE_CODE (t
) == POINTER_PLUS_EXPR
);
6654 gcc_assert (TREE_OPERAND (t
, 0) == var
);
6655 t
= build2 (TREE_CODE (t
), TREE_TYPE (decl
), decl
,
6656 TREE_OPERAND (t
, 1));
6657 gimplify_assign (decl
, t
,
6658 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (c
));
6663 gimplify_and_add (OMP_FOR_BODY (for_stmt
), &for_body
);
6665 gimplify_adjust_omp_clauses (&OMP_FOR_CLAUSES (for_stmt
));
6667 gfor
= gimple_build_omp_for (for_body
, OMP_FOR_CLAUSES (for_stmt
),
6668 TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
)),
6671 for (i
= 0; i
< TREE_VEC_LENGTH (OMP_FOR_INIT (for_stmt
)); i
++)
6673 t
= TREE_VEC_ELT (OMP_FOR_INIT (for_stmt
), i
);
6674 gimple_omp_for_set_index (gfor
, i
, TREE_OPERAND (t
, 0));
6675 gimple_omp_for_set_initial (gfor
, i
, TREE_OPERAND (t
, 1));
6676 t
= TREE_VEC_ELT (OMP_FOR_COND (for_stmt
), i
);
6677 gimple_omp_for_set_cond (gfor
, i
, TREE_CODE (t
));
6678 gimple_omp_for_set_final (gfor
, i
, TREE_OPERAND (t
, 1));
6679 t
= TREE_VEC_ELT (OMP_FOR_INCR (for_stmt
), i
);
6680 gimple_omp_for_set_incr (gfor
, i
, TREE_OPERAND (t
, 1));
6683 gimplify_seq_add_stmt (pre_p
, gfor
);
6684 return ret
== GS_ALL_DONE
? GS_ALL_DONE
: GS_ERROR
;
6687 /* Gimplify the gross structure of other OpenMP worksharing constructs.
6688 In particular, OMP_SECTIONS and OMP_SINGLE. */
6691 gimplify_omp_workshare (tree
*expr_p
, gimple_seq
*pre_p
)
6693 tree expr
= *expr_p
;
6695 gimple_seq body
= NULL
;
6697 gimplify_scan_omp_clauses (&OMP_CLAUSES (expr
), pre_p
, ORT_WORKSHARE
);
6698 gimplify_and_add (OMP_BODY (expr
), &body
);
6699 gimplify_adjust_omp_clauses (&OMP_CLAUSES (expr
));
6701 if (TREE_CODE (expr
) == OMP_SECTIONS
)
6702 stmt
= gimple_build_omp_sections (body
, OMP_CLAUSES (expr
));
6703 else if (TREE_CODE (expr
) == OMP_SINGLE
)
6704 stmt
= gimple_build_omp_single (body
, OMP_CLAUSES (expr
));
6708 gimplify_seq_add_stmt (pre_p
, stmt
);
6711 /* A subroutine of gimplify_omp_atomic. The front end is supposed to have
6712 stabilized the lhs of the atomic operation as *ADDR. Return true if
6713 EXPR is this stabilized form. */
6716 goa_lhs_expr_p (tree expr
, tree addr
)
6718 /* Also include casts to other type variants. The C front end is fond
6719 of adding these for e.g. volatile variables. This is like
6720 STRIP_TYPE_NOPS but includes the main variant lookup. */
6721 STRIP_USELESS_TYPE_CONVERSION (expr
);
6723 if (TREE_CODE (expr
) == INDIRECT_REF
)
6725 expr
= TREE_OPERAND (expr
, 0);
6727 && (CONVERT_EXPR_P (expr
)
6728 || TREE_CODE (expr
) == NON_LVALUE_EXPR
)
6729 && TREE_CODE (expr
) == TREE_CODE (addr
)
6730 && types_compatible_p (TREE_TYPE (expr
), TREE_TYPE (addr
)))
6732 expr
= TREE_OPERAND (expr
, 0);
6733 addr
= TREE_OPERAND (addr
, 0);
6737 return (TREE_CODE (addr
) == ADDR_EXPR
6738 && TREE_CODE (expr
) == ADDR_EXPR
6739 && TREE_OPERAND (addr
, 0) == TREE_OPERAND (expr
, 0));
6741 if (TREE_CODE (addr
) == ADDR_EXPR
&& expr
== TREE_OPERAND (addr
, 0))
6746 /* Walk *EXPR_P and replace appearances of *LHS_ADDR with LHS_VAR. If an
6747 expression does not involve the lhs, evaluate it into a temporary.
6748 Return 1 if the lhs appeared as a subexpression, 0 if it did not,
6749 or -1 if an error was encountered. */
6752 goa_stabilize_expr (tree
*expr_p
, gimple_seq
*pre_p
, tree lhs_addr
,
6755 tree expr
= *expr_p
;
6758 if (goa_lhs_expr_p (expr
, lhs_addr
))
6763 if (is_gimple_val (expr
))
6767 switch (TREE_CODE_CLASS (TREE_CODE (expr
)))
6770 case tcc_comparison
:
6771 saw_lhs
|= goa_stabilize_expr (&TREE_OPERAND (expr
, 1), pre_p
, lhs_addr
,
6774 saw_lhs
|= goa_stabilize_expr (&TREE_OPERAND (expr
, 0), pre_p
, lhs_addr
,
6777 case tcc_expression
:
6778 switch (TREE_CODE (expr
))
6780 case TRUTH_ANDIF_EXPR
:
6781 case TRUTH_ORIF_EXPR
:
6782 case TRUTH_AND_EXPR
:
6784 case TRUTH_XOR_EXPR
:
6785 saw_lhs
|= goa_stabilize_expr (&TREE_OPERAND (expr
, 1), pre_p
,
6787 case TRUTH_NOT_EXPR
:
6788 saw_lhs
|= goa_stabilize_expr (&TREE_OPERAND (expr
, 0), pre_p
,
6792 /* Break out any preevaluations from cp_build_modify_expr. */
6793 for (; TREE_CODE (expr
) == COMPOUND_EXPR
;
6794 expr
= TREE_OPERAND (expr
, 1))
6795 gimplify_stmt (&TREE_OPERAND (expr
, 0), pre_p
);
6797 return goa_stabilize_expr (expr_p
, pre_p
, lhs_addr
, lhs_var
);
6808 enum gimplify_status gs
;
6809 gs
= gimplify_expr (expr_p
, pre_p
, NULL
, is_gimple_val
, fb_rvalue
);
6810 if (gs
!= GS_ALL_DONE
)
6817 /* Gimplify an OMP_ATOMIC statement. */
6819 static enum gimplify_status
6820 gimplify_omp_atomic (tree
*expr_p
, gimple_seq
*pre_p
)
6822 tree addr
= TREE_OPERAND (*expr_p
, 0);
6823 tree rhs
= TREE_CODE (*expr_p
) == OMP_ATOMIC_READ
6824 ? NULL
: TREE_OPERAND (*expr_p
, 1);
6825 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (addr
)));
6827 gimple loadstmt
, storestmt
;
6829 tmp_load
= create_tmp_reg (type
, NULL
);
6830 if (rhs
&& goa_stabilize_expr (&rhs
, pre_p
, addr
, tmp_load
) < 0)
6833 if (gimplify_expr (&addr
, pre_p
, NULL
, is_gimple_val
, fb_rvalue
)
6837 loadstmt
= gimple_build_omp_atomic_load (tmp_load
, addr
);
6838 gimplify_seq_add_stmt (pre_p
, loadstmt
);
6839 if (rhs
&& gimplify_expr (&rhs
, pre_p
, NULL
, is_gimple_val
, fb_rvalue
)
6843 if (TREE_CODE (*expr_p
) == OMP_ATOMIC_READ
)
6845 storestmt
= gimple_build_omp_atomic_store (rhs
);
6846 gimplify_seq_add_stmt (pre_p
, storestmt
);
6847 switch (TREE_CODE (*expr_p
))
6849 case OMP_ATOMIC_READ
:
6850 case OMP_ATOMIC_CAPTURE_OLD
:
6852 gimple_omp_atomic_set_need_value (loadstmt
);
6854 case OMP_ATOMIC_CAPTURE_NEW
:
6856 gimple_omp_atomic_set_need_value (storestmt
);
6866 /* Gimplify a TRANSACTION_EXPR. This involves gimplification of the
6867 body, and adding some EH bits. */
6869 static enum gimplify_status
6870 gimplify_transaction (tree
*expr_p
, gimple_seq
*pre_p
)
6872 tree expr
= *expr_p
, temp
, tbody
= TRANSACTION_EXPR_BODY (expr
);
6874 gimple_seq body
= NULL
;
6875 struct gimplify_ctx gctx
;
6878 /* Wrap the transaction body in a BIND_EXPR so we have a context
6879 where to put decls for OpenMP. */
6880 if (TREE_CODE (tbody
) != BIND_EXPR
)
6882 tree bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, tbody
, NULL
);
6883 TREE_SIDE_EFFECTS (bind
) = 1;
6884 SET_EXPR_LOCATION (bind
, EXPR_LOCATION (tbody
));
6885 TRANSACTION_EXPR_BODY (expr
) = bind
;
6888 push_gimplify_context (&gctx
);
6889 temp
= voidify_wrapper_expr (*expr_p
, NULL
);
6891 g
= gimplify_and_return_first (TRANSACTION_EXPR_BODY (expr
), &body
);
6892 pop_gimplify_context (g
);
6894 g
= gimple_build_transaction (body
, NULL
);
6895 if (TRANSACTION_EXPR_OUTER (expr
))
6896 subcode
= GTMA_IS_OUTER
;
6897 else if (TRANSACTION_EXPR_RELAXED (expr
))
6898 subcode
= GTMA_IS_RELAXED
;
6899 gimple_transaction_set_subcode (g
, subcode
);
6901 gimplify_seq_add_stmt (pre_p
, g
);
6909 *expr_p
= NULL_TREE
;
6913 /* Convert the GENERIC expression tree *EXPR_P to GIMPLE. If the
6914 expression produces a value to be used as an operand inside a GIMPLE
6915 statement, the value will be stored back in *EXPR_P. This value will
6916 be a tree of class tcc_declaration, tcc_constant, tcc_reference or
6917 an SSA_NAME. The corresponding sequence of GIMPLE statements is
6918 emitted in PRE_P and POST_P.
6920 Additionally, this process may overwrite parts of the input
6921 expression during gimplification. Ideally, it should be
6922 possible to do non-destructive gimplification.
6924 EXPR_P points to the GENERIC expression to convert to GIMPLE. If
6925 the expression needs to evaluate to a value to be used as
6926 an operand in a GIMPLE statement, this value will be stored in
6927 *EXPR_P on exit. This happens when the caller specifies one
6928 of fb_lvalue or fb_rvalue fallback flags.
6930 PRE_P will contain the sequence of GIMPLE statements corresponding
6931 to the evaluation of EXPR and all the side-effects that must
6932 be executed before the main expression. On exit, the last
6933 statement of PRE_P is the core statement being gimplified. For
6934 instance, when gimplifying 'if (++a)' the last statement in
6935 PRE_P will be 'if (t.1)' where t.1 is the result of
6936 pre-incrementing 'a'.
6938 POST_P will contain the sequence of GIMPLE statements corresponding
6939 to the evaluation of all the side-effects that must be executed
6940 after the main expression. If this is NULL, the post
6941 side-effects are stored at the end of PRE_P.
6943 The reason why the output is split in two is to handle post
6944 side-effects explicitly. In some cases, an expression may have
6945 inner and outer post side-effects which need to be emitted in
6946 an order different from the one given by the recursive
6947 traversal. For instance, for the expression (*p--)++ the post
6948 side-effects of '--' must actually occur *after* the post
6949 side-effects of '++'. However, gimplification will first visit
6950 the inner expression, so if a separate POST sequence was not
6951 used, the resulting sequence would be:
6958 However, the post-decrement operation in line #2 must not be
6959 evaluated until after the store to *p at line #4, so the
6960 correct sequence should be:
6967 So, by specifying a separate post queue, it is possible
6968 to emit the post side-effects in the correct order.
6969 If POST_P is NULL, an internal queue will be used. Before
6970 returning to the caller, the sequence POST_P is appended to
6971 the main output sequence PRE_P.
6973 GIMPLE_TEST_F points to a function that takes a tree T and
6974 returns nonzero if T is in the GIMPLE form requested by the
6975 caller. The GIMPLE predicates are in gimple.c.
6977 FALLBACK tells the function what sort of a temporary we want if
6978 gimplification cannot produce an expression that complies with
6981 fb_none means that no temporary should be generated
6982 fb_rvalue means that an rvalue is OK to generate
6983 fb_lvalue means that an lvalue is OK to generate
6984 fb_either means that either is OK, but an lvalue is preferable.
6985 fb_mayfail means that gimplification may fail (in which case
6986 GS_ERROR will be returned)
6988 The return value is either GS_ERROR or GS_ALL_DONE, since this
6989 function iterates until EXPR is completely gimplified or an error
6992 enum gimplify_status
6993 gimplify_expr (tree
*expr_p
, gimple_seq
*pre_p
, gimple_seq
*post_p
,
6994 bool (*gimple_test_f
) (tree
), fallback_t fallback
)
6997 gimple_seq internal_pre
= NULL
;
6998 gimple_seq internal_post
= NULL
;
7001 location_t saved_location
;
7002 enum gimplify_status ret
;
7003 gimple_stmt_iterator pre_last_gsi
, post_last_gsi
;
7005 save_expr
= *expr_p
;
7006 if (save_expr
== NULL_TREE
)
7009 /* If we are gimplifying a top-level statement, PRE_P must be valid. */
7010 is_statement
= gimple_test_f
== is_gimple_stmt
;
7014 /* Consistency checks. */
7015 if (gimple_test_f
== is_gimple_reg
)
7016 gcc_assert (fallback
& (fb_rvalue
| fb_lvalue
));
7017 else if (gimple_test_f
== is_gimple_val
7018 || gimple_test_f
== is_gimple_call_addr
7019 || gimple_test_f
== is_gimple_condexpr
7020 || gimple_test_f
== is_gimple_mem_rhs
7021 || gimple_test_f
== is_gimple_mem_rhs_or_call
7022 || gimple_test_f
== is_gimple_reg_rhs
7023 || gimple_test_f
== is_gimple_reg_rhs_or_call
7024 || gimple_test_f
== is_gimple_asm_val
7025 || gimple_test_f
== is_gimple_mem_ref_addr
)
7026 gcc_assert (fallback
& fb_rvalue
);
7027 else if (gimple_test_f
== is_gimple_min_lval
7028 || gimple_test_f
== is_gimple_lvalue
)
7029 gcc_assert (fallback
& fb_lvalue
);
7030 else if (gimple_test_f
== is_gimple_addressable
)
7031 gcc_assert (fallback
& fb_either
);
7032 else if (gimple_test_f
== is_gimple_stmt
)
7033 gcc_assert (fallback
== fb_none
);
7036 /* We should have recognized the GIMPLE_TEST_F predicate to
7037 know what kind of fallback to use in case a temporary is
7038 needed to hold the value or address of *EXPR_P. */
7042 /* We used to check the predicate here and return immediately if it
7043 succeeds. This is wrong; the design is for gimplification to be
7044 idempotent, and for the predicates to only test for valid forms, not
7045 whether they are fully simplified. */
7047 pre_p
= &internal_pre
;
7050 post_p
= &internal_post
;
7052 /* Remember the last statements added to PRE_P and POST_P. Every
7053 new statement added by the gimplification helpers needs to be
7054 annotated with location information. To centralize the
7055 responsibility, we remember the last statement that had been
7056 added to both queues before gimplifying *EXPR_P. If
7057 gimplification produces new statements in PRE_P and POST_P, those
7058 statements will be annotated with the same location information
7060 pre_last_gsi
= gsi_last (*pre_p
);
7061 post_last_gsi
= gsi_last (*post_p
);
7063 saved_location
= input_location
;
7064 if (save_expr
!= error_mark_node
7065 && EXPR_HAS_LOCATION (*expr_p
))
7066 input_location
= EXPR_LOCATION (*expr_p
);
7068 /* Loop over the specific gimplifiers until the toplevel node
7069 remains the same. */
7072 /* Strip away as many useless type conversions as possible
7074 STRIP_USELESS_TYPE_CONVERSION (*expr_p
);
7076 /* Remember the expr. */
7077 save_expr
= *expr_p
;
7079 /* Die, die, die, my darling. */
7080 if (save_expr
== error_mark_node
7081 || (TREE_TYPE (save_expr
)
7082 && TREE_TYPE (save_expr
) == error_mark_node
))
7088 /* Do any language-specific gimplification. */
7089 ret
= ((enum gimplify_status
)
7090 lang_hooks
.gimplify_expr (expr_p
, pre_p
, post_p
));
7093 if (*expr_p
== NULL_TREE
)
7095 if (*expr_p
!= save_expr
)
7098 else if (ret
!= GS_UNHANDLED
)
7101 /* Make sure that all the cases set 'ret' appropriately. */
7103 switch (TREE_CODE (*expr_p
))
7105 /* First deal with the special cases. */
7107 case POSTINCREMENT_EXPR
:
7108 case POSTDECREMENT_EXPR
:
7109 case PREINCREMENT_EXPR
:
7110 case PREDECREMENT_EXPR
:
7111 ret
= gimplify_self_mod_expr (expr_p
, pre_p
, post_p
,
7112 fallback
!= fb_none
);
7116 case ARRAY_RANGE_REF
:
7120 case VIEW_CONVERT_EXPR
:
7121 ret
= gimplify_compound_lval (expr_p
, pre_p
, post_p
,
7122 fallback
? fallback
: fb_rvalue
);
7126 ret
= gimplify_cond_expr (expr_p
, pre_p
, fallback
);
7128 /* C99 code may assign to an array in a structure value of a
7129 conditional expression, and this has undefined behavior
7130 only on execution, so create a temporary if an lvalue is
7132 if (fallback
== fb_lvalue
)
7134 *expr_p
= get_initialized_tmp_var (*expr_p
, pre_p
, post_p
);
7135 mark_addressable (*expr_p
);
7141 ret
= gimplify_call_expr (expr_p
, pre_p
, fallback
!= fb_none
);
7143 /* C99 code may assign to an array in a structure returned
7144 from a function, and this has undefined behavior only on
7145 execution, so create a temporary if an lvalue is
7147 if (fallback
== fb_lvalue
)
7149 *expr_p
= get_initialized_tmp_var (*expr_p
, pre_p
, post_p
);
7150 mark_addressable (*expr_p
);
7159 ret
= gimplify_compound_expr (expr_p
, pre_p
, fallback
!= fb_none
);
7162 case COMPOUND_LITERAL_EXPR
:
7163 ret
= gimplify_compound_literal_expr (expr_p
, pre_p
,
7164 gimple_test_f
, fallback
);
7169 ret
= gimplify_modify_expr (expr_p
, pre_p
, post_p
,
7170 fallback
!= fb_none
);
7173 case TRUTH_ANDIF_EXPR
:
7174 case TRUTH_ORIF_EXPR
:
7176 /* Preserve the original type of the expression and the
7177 source location of the outer expression. */
7178 tree org_type
= TREE_TYPE (*expr_p
);
7179 *expr_p
= gimple_boolify (*expr_p
);
7180 *expr_p
= build3_loc (input_location
, COND_EXPR
,
7184 org_type
, boolean_true_node
),
7187 org_type
, boolean_false_node
));
7192 case TRUTH_NOT_EXPR
:
7194 tree type
= TREE_TYPE (*expr_p
);
7195 /* The parsers are careful to generate TRUTH_NOT_EXPR
7196 only with operands that are always zero or one.
7197 We do not fold here but handle the only interesting case
7198 manually, as fold may re-introduce the TRUTH_NOT_EXPR. */
7199 *expr_p
= gimple_boolify (*expr_p
);
7200 if (TYPE_PRECISION (TREE_TYPE (*expr_p
)) == 1)
7201 *expr_p
= build1_loc (input_location
, BIT_NOT_EXPR
,
7202 TREE_TYPE (*expr_p
),
7203 TREE_OPERAND (*expr_p
, 0));
7205 *expr_p
= build2_loc (input_location
, BIT_XOR_EXPR
,
7206 TREE_TYPE (*expr_p
),
7207 TREE_OPERAND (*expr_p
, 0),
7208 build_int_cst (TREE_TYPE (*expr_p
), 1));
7209 if (!useless_type_conversion_p (type
, TREE_TYPE (*expr_p
)))
7210 *expr_p
= fold_convert_loc (input_location
, type
, *expr_p
);
7216 ret
= gimplify_addr_expr (expr_p
, pre_p
, post_p
);
7220 ret
= gimplify_va_arg_expr (expr_p
, pre_p
, post_p
);
7224 if (IS_EMPTY_STMT (*expr_p
))
7230 if (VOID_TYPE_P (TREE_TYPE (*expr_p
))
7231 || fallback
== fb_none
)
7233 /* Just strip a conversion to void (or in void context) and
7235 *expr_p
= TREE_OPERAND (*expr_p
, 0);
7240 ret
= gimplify_conversion (expr_p
);
7241 if (ret
== GS_ERROR
)
7243 if (*expr_p
!= save_expr
)
7247 case FIX_TRUNC_EXPR
:
7248 /* unary_expr: ... | '(' cast ')' val | ... */
7249 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7250 is_gimple_val
, fb_rvalue
);
7251 recalculate_side_effects (*expr_p
);
7256 bool volatilep
= TREE_THIS_VOLATILE (*expr_p
);
7257 bool notrap
= TREE_THIS_NOTRAP (*expr_p
);
7258 tree saved_ptr_type
= TREE_TYPE (TREE_OPERAND (*expr_p
, 0));
7260 *expr_p
= fold_indirect_ref_loc (input_location
, *expr_p
);
7261 if (*expr_p
!= save_expr
)
7267 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7268 is_gimple_reg
, fb_rvalue
);
7269 if (ret
== GS_ERROR
)
7272 recalculate_side_effects (*expr_p
);
7273 *expr_p
= fold_build2_loc (input_location
, MEM_REF
,
7274 TREE_TYPE (*expr_p
),
7275 TREE_OPERAND (*expr_p
, 0),
7276 build_int_cst (saved_ptr_type
, 0));
7277 TREE_THIS_VOLATILE (*expr_p
) = volatilep
;
7278 TREE_THIS_NOTRAP (*expr_p
) = notrap
;
7283 /* We arrive here through the various re-gimplifcation paths. */
7285 /* First try re-folding the whole thing. */
7286 tmp
= fold_binary (MEM_REF
, TREE_TYPE (*expr_p
),
7287 TREE_OPERAND (*expr_p
, 0),
7288 TREE_OPERAND (*expr_p
, 1));
7292 recalculate_side_effects (*expr_p
);
7296 /* Avoid re-gimplifying the address operand if it is already
7297 in suitable form. Re-gimplifying would mark the address
7298 operand addressable. Always gimplify when not in SSA form
7299 as we still may have to gimplify decls with value-exprs. */
7300 if (!gimplify_ctxp
|| !gimplify_ctxp
->into_ssa
7301 || !is_gimple_mem_ref_addr (TREE_OPERAND (*expr_p
, 0)))
7303 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7304 is_gimple_mem_ref_addr
, fb_rvalue
);
7305 if (ret
== GS_ERROR
)
7308 recalculate_side_effects (*expr_p
);
7312 /* Constants need not be gimplified. */
7323 /* If we require an lvalue, such as for ADDR_EXPR, retain the
7324 CONST_DECL node. Otherwise the decl is replaceable by its
7326 /* ??? Should be == fb_lvalue, but ADDR_EXPR passes fb_either. */
7327 if (fallback
& fb_lvalue
)
7331 *expr_p
= DECL_INITIAL (*expr_p
);
7337 ret
= gimplify_decl_expr (expr_p
, pre_p
);
7341 ret
= gimplify_bind_expr (expr_p
, pre_p
);
7345 ret
= gimplify_loop_expr (expr_p
, pre_p
);
7349 ret
= gimplify_switch_expr (expr_p
, pre_p
);
7353 ret
= gimplify_exit_expr (expr_p
);
7357 /* If the target is not LABEL, then it is a computed jump
7358 and the target needs to be gimplified. */
7359 if (TREE_CODE (GOTO_DESTINATION (*expr_p
)) != LABEL_DECL
)
7361 ret
= gimplify_expr (&GOTO_DESTINATION (*expr_p
), pre_p
,
7362 NULL
, is_gimple_val
, fb_rvalue
);
7363 if (ret
== GS_ERROR
)
7366 gimplify_seq_add_stmt (pre_p
,
7367 gimple_build_goto (GOTO_DESTINATION (*expr_p
)));
7372 gimplify_seq_add_stmt (pre_p
,
7373 gimple_build_predict (PREDICT_EXPR_PREDICTOR (*expr_p
),
7374 PREDICT_EXPR_OUTCOME (*expr_p
)));
7380 gcc_assert (decl_function_context (LABEL_EXPR_LABEL (*expr_p
))
7381 == current_function_decl
);
7382 gimplify_seq_add_stmt (pre_p
,
7383 gimple_build_label (LABEL_EXPR_LABEL (*expr_p
)));
7386 case CASE_LABEL_EXPR
:
7387 ret
= gimplify_case_label_expr (expr_p
, pre_p
);
7391 ret
= gimplify_return_expr (*expr_p
, pre_p
);
7395 /* Don't reduce this in place; let gimplify_init_constructor work its
7396 magic. Buf if we're just elaborating this for side effects, just
7397 gimplify any element that has side-effects. */
7398 if (fallback
== fb_none
)
7400 unsigned HOST_WIDE_INT ix
;
7402 tree temp
= NULL_TREE
;
7403 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (*expr_p
), ix
, val
)
7404 if (TREE_SIDE_EFFECTS (val
))
7405 append_to_statement_list (val
, &temp
);
7408 ret
= temp
? GS_OK
: GS_ALL_DONE
;
7410 /* C99 code may assign to an array in a constructed
7411 structure or union, and this has undefined behavior only
7412 on execution, so create a temporary if an lvalue is
7414 else if (fallback
== fb_lvalue
)
7416 *expr_p
= get_initialized_tmp_var (*expr_p
, pre_p
, post_p
);
7417 mark_addressable (*expr_p
);
7424 /* The following are special cases that are not handled by the
7425 original GIMPLE grammar. */
7427 /* SAVE_EXPR nodes are converted into a GIMPLE identifier and
7430 ret
= gimplify_save_expr (expr_p
, pre_p
, post_p
);
7434 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7435 post_p
, is_gimple_lvalue
, fb_either
);
7436 recalculate_side_effects (*expr_p
);
7439 case TARGET_MEM_REF
:
7441 enum gimplify_status r0
= GS_ALL_DONE
, r1
= GS_ALL_DONE
;
7443 if (TMR_BASE (*expr_p
))
7444 r0
= gimplify_expr (&TMR_BASE (*expr_p
), pre_p
,
7445 post_p
, is_gimple_mem_ref_addr
, fb_either
);
7446 if (TMR_INDEX (*expr_p
))
7447 r1
= gimplify_expr (&TMR_INDEX (*expr_p
), pre_p
,
7448 post_p
, is_gimple_val
, fb_rvalue
);
7449 if (TMR_INDEX2 (*expr_p
))
7450 r1
= gimplify_expr (&TMR_INDEX2 (*expr_p
), pre_p
,
7451 post_p
, is_gimple_val
, fb_rvalue
);
7452 /* TMR_STEP and TMR_OFFSET are always integer constants. */
7457 case NON_LVALUE_EXPR
:
7458 /* This should have been stripped above. */
7462 ret
= gimplify_asm_expr (expr_p
, pre_p
, post_p
);
7465 case TRY_FINALLY_EXPR
:
7466 case TRY_CATCH_EXPR
:
7468 gimple_seq eval
, cleanup
;
7471 /* Calls to destructors are generated automatically in FINALLY/CATCH
7472 block. They should have location as UNKNOWN_LOCATION. However,
7473 gimplify_call_expr will reset these call stmts to input_location
7474 if it finds stmt's location is unknown. To prevent resetting for
7475 destructors, we set the input_location to unknown.
7476 Note that this only affects the destructor calls in FINALLY/CATCH
7477 block, and will automatically reset to its original value by the
7478 end of gimplify_expr. */
7479 input_location
= UNKNOWN_LOCATION
;
7480 eval
= cleanup
= NULL
;
7481 gimplify_and_add (TREE_OPERAND (*expr_p
, 0), &eval
);
7482 gimplify_and_add (TREE_OPERAND (*expr_p
, 1), &cleanup
);
7483 /* Don't create bogus GIMPLE_TRY with empty cleanup. */
7484 if (gimple_seq_empty_p (cleanup
))
7486 gimple_seq_add_seq (pre_p
, eval
);
7490 try_
= gimple_build_try (eval
, cleanup
,
7491 TREE_CODE (*expr_p
) == TRY_FINALLY_EXPR
7492 ? GIMPLE_TRY_FINALLY
7493 : GIMPLE_TRY_CATCH
);
7494 if (LOCATION_LOCUS (saved_location
) != UNKNOWN_LOCATION
)
7495 gimple_set_location (try_
, saved_location
);
7497 gimple_set_location (try_
, EXPR_LOCATION (save_expr
));
7498 if (TREE_CODE (*expr_p
) == TRY_CATCH_EXPR
)
7499 gimple_try_set_catch_is_cleanup (try_
,
7500 TRY_CATCH_IS_CLEANUP (*expr_p
));
7501 gimplify_seq_add_stmt (pre_p
, try_
);
7506 case CLEANUP_POINT_EXPR
:
7507 ret
= gimplify_cleanup_point_expr (expr_p
, pre_p
);
7511 ret
= gimplify_target_expr (expr_p
, pre_p
, post_p
);
7517 gimple_seq handler
= NULL
;
7518 gimplify_and_add (CATCH_BODY (*expr_p
), &handler
);
7519 c
= gimple_build_catch (CATCH_TYPES (*expr_p
), handler
);
7520 gimplify_seq_add_stmt (pre_p
, c
);
7525 case EH_FILTER_EXPR
:
7528 gimple_seq failure
= NULL
;
7530 gimplify_and_add (EH_FILTER_FAILURE (*expr_p
), &failure
);
7531 ehf
= gimple_build_eh_filter (EH_FILTER_TYPES (*expr_p
), failure
);
7532 gimple_set_no_warning (ehf
, TREE_NO_WARNING (*expr_p
));
7533 gimplify_seq_add_stmt (pre_p
, ehf
);
7540 enum gimplify_status r0
, r1
;
7541 r0
= gimplify_expr (&OBJ_TYPE_REF_OBJECT (*expr_p
), pre_p
,
7542 post_p
, is_gimple_val
, fb_rvalue
);
7543 r1
= gimplify_expr (&OBJ_TYPE_REF_EXPR (*expr_p
), pre_p
,
7544 post_p
, is_gimple_val
, fb_rvalue
);
7545 TREE_SIDE_EFFECTS (*expr_p
) = 0;
7551 /* We get here when taking the address of a label. We mark
7552 the label as "forced"; meaning it can never be removed and
7553 it is a potential target for any computed goto. */
7554 FORCED_LABEL (*expr_p
) = 1;
7558 case STATEMENT_LIST
:
7559 ret
= gimplify_statement_list (expr_p
, pre_p
);
7562 case WITH_SIZE_EXPR
:
7564 gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7565 post_p
== &internal_post
? NULL
: post_p
,
7566 gimple_test_f
, fallback
);
7567 gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
, post_p
,
7568 is_gimple_val
, fb_rvalue
);
7575 ret
= gimplify_var_or_parm_decl (expr_p
);
7579 /* When within an OpenMP context, notice uses of variables. */
7580 if (gimplify_omp_ctxp
)
7581 omp_notice_variable (gimplify_omp_ctxp
, *expr_p
, true);
7586 /* Allow callbacks into the gimplifier during optimization. */
7591 gimplify_omp_parallel (expr_p
, pre_p
);
7596 gimplify_omp_task (expr_p
, pre_p
);
7601 ret
= gimplify_omp_for (expr_p
, pre_p
);
7606 gimplify_omp_workshare (expr_p
, pre_p
);
7615 gimple_seq body
= NULL
;
7618 gimplify_and_add (OMP_BODY (*expr_p
), &body
);
7619 switch (TREE_CODE (*expr_p
))
7622 g
= gimple_build_omp_section (body
);
7625 g
= gimple_build_omp_master (body
);
7628 g
= gimple_build_omp_ordered (body
);
7631 g
= gimple_build_omp_critical (body
,
7632 OMP_CRITICAL_NAME (*expr_p
));
7637 gimplify_seq_add_stmt (pre_p
, g
);
7643 case OMP_ATOMIC_READ
:
7644 case OMP_ATOMIC_CAPTURE_OLD
:
7645 case OMP_ATOMIC_CAPTURE_NEW
:
7646 ret
= gimplify_omp_atomic (expr_p
, pre_p
);
7649 case TRANSACTION_EXPR
:
7650 ret
= gimplify_transaction (expr_p
, pre_p
);
7653 case TRUTH_AND_EXPR
:
7655 case TRUTH_XOR_EXPR
:
7657 tree orig_type
= TREE_TYPE (*expr_p
);
7658 tree new_type
, xop0
, xop1
;
7659 *expr_p
= gimple_boolify (*expr_p
);
7660 new_type
= TREE_TYPE (*expr_p
);
7661 if (!useless_type_conversion_p (orig_type
, new_type
))
7663 *expr_p
= fold_convert_loc (input_location
, orig_type
, *expr_p
);
7668 /* Boolified binary truth expressions are semantically equivalent
7669 to bitwise binary expressions. Canonicalize them to the
7671 switch (TREE_CODE (*expr_p
))
7673 case TRUTH_AND_EXPR
:
7674 TREE_SET_CODE (*expr_p
, BIT_AND_EXPR
);
7677 TREE_SET_CODE (*expr_p
, BIT_IOR_EXPR
);
7679 case TRUTH_XOR_EXPR
:
7680 TREE_SET_CODE (*expr_p
, BIT_XOR_EXPR
);
7685 /* Now make sure that operands have compatible type to
7686 expression's new_type. */
7687 xop0
= TREE_OPERAND (*expr_p
, 0);
7688 xop1
= TREE_OPERAND (*expr_p
, 1);
7689 if (!useless_type_conversion_p (new_type
, TREE_TYPE (xop0
)))
7690 TREE_OPERAND (*expr_p
, 0) = fold_convert_loc (input_location
,
7693 if (!useless_type_conversion_p (new_type
, TREE_TYPE (xop1
)))
7694 TREE_OPERAND (*expr_p
, 1) = fold_convert_loc (input_location
,
7697 /* Continue classified as tcc_binary. */
7704 /* Classified as tcc_expression. */
7707 case POINTER_PLUS_EXPR
:
7709 enum gimplify_status r0
, r1
;
7710 r0
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7711 post_p
, is_gimple_val
, fb_rvalue
);
7712 r1
= gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
,
7713 post_p
, is_gimple_val
, fb_rvalue
);
7714 recalculate_side_effects (*expr_p
);
7716 /* Convert &X + CST to invariant &MEM[&X, CST]. Do this
7717 after gimplifying operands - this is similar to how
7718 it would be folding all gimplified stmts on creation
7719 to have them canonicalized, which is what we eventually
7720 should do anyway. */
7721 if (TREE_CODE (TREE_OPERAND (*expr_p
, 1)) == INTEGER_CST
7722 && is_gimple_min_invariant (TREE_OPERAND (*expr_p
, 0)))
7724 *expr_p
= build_fold_addr_expr_with_type_loc
7726 fold_build2 (MEM_REF
, TREE_TYPE (TREE_TYPE (*expr_p
)),
7727 TREE_OPERAND (*expr_p
, 0),
7728 fold_convert (ptr_type_node
,
7729 TREE_OPERAND (*expr_p
, 1))),
7730 TREE_TYPE (*expr_p
));
7731 ret
= MIN (ret
, GS_OK
);
7737 switch (TREE_CODE_CLASS (TREE_CODE (*expr_p
)))
7739 case tcc_comparison
:
7740 /* Handle comparison of objects of non scalar mode aggregates
7741 with a call to memcmp. It would be nice to only have to do
7742 this for variable-sized objects, but then we'd have to allow
7743 the same nest of reference nodes we allow for MODIFY_EXPR and
7746 Compare scalar mode aggregates as scalar mode values. Using
7747 memcmp for them would be very inefficient at best, and is
7748 plain wrong if bitfields are involved. */
7750 tree type
= TREE_TYPE (TREE_OPERAND (*expr_p
, 1));
7752 /* Vector comparisons need no boolification. */
7753 if (TREE_CODE (type
) == VECTOR_TYPE
)
7755 else if (!AGGREGATE_TYPE_P (type
))
7757 tree org_type
= TREE_TYPE (*expr_p
);
7758 *expr_p
= gimple_boolify (*expr_p
);
7759 if (!useless_type_conversion_p (org_type
,
7760 TREE_TYPE (*expr_p
)))
7762 *expr_p
= fold_convert_loc (input_location
,
7769 else if (TYPE_MODE (type
) != BLKmode
)
7770 ret
= gimplify_scalar_mode_aggregate_compare (expr_p
);
7772 ret
= gimplify_variable_sized_compare (expr_p
);
7777 /* If *EXPR_P does not need to be special-cased, handle it
7778 according to its class. */
7780 ret
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7781 post_p
, is_gimple_val
, fb_rvalue
);
7787 enum gimplify_status r0
, r1
;
7789 r0
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7790 post_p
, is_gimple_val
, fb_rvalue
);
7791 r1
= gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
,
7792 post_p
, is_gimple_val
, fb_rvalue
);
7800 enum gimplify_status r0
, r1
, r2
;
7802 r0
= gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
,
7803 post_p
, is_gimple_val
, fb_rvalue
);
7804 r1
= gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
,
7805 post_p
, is_gimple_val
, fb_rvalue
);
7806 r2
= gimplify_expr (&TREE_OPERAND (*expr_p
, 2), pre_p
,
7807 post_p
, is_gimple_val
, fb_rvalue
);
7809 ret
= MIN (MIN (r0
, r1
), r2
);
7813 case tcc_declaration
:
7816 goto dont_recalculate
;
7822 recalculate_side_effects (*expr_p
);
7828 gcc_assert (*expr_p
|| ret
!= GS_OK
);
7830 while (ret
== GS_OK
);
7832 /* If we encountered an error_mark somewhere nested inside, either
7833 stub out the statement or propagate the error back out. */
7834 if (ret
== GS_ERROR
)
7841 /* This was only valid as a return value from the langhook, which
7842 we handled. Make sure it doesn't escape from any other context. */
7843 gcc_assert (ret
!= GS_UNHANDLED
);
7845 if (fallback
== fb_none
&& *expr_p
&& !is_gimple_stmt (*expr_p
))
7847 /* We aren't looking for a value, and we don't have a valid
7848 statement. If it doesn't have side-effects, throw it away. */
7849 if (!TREE_SIDE_EFFECTS (*expr_p
))
7851 else if (!TREE_THIS_VOLATILE (*expr_p
))
7853 /* This is probably a _REF that contains something nested that
7854 has side effects. Recurse through the operands to find it. */
7855 enum tree_code code
= TREE_CODE (*expr_p
);
7862 case VIEW_CONVERT_EXPR
:
7863 gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7864 gimple_test_f
, fallback
);
7868 case ARRAY_RANGE_REF
:
7869 gimplify_expr (&TREE_OPERAND (*expr_p
, 0), pre_p
, post_p
,
7870 gimple_test_f
, fallback
);
7871 gimplify_expr (&TREE_OPERAND (*expr_p
, 1), pre_p
, post_p
,
7872 gimple_test_f
, fallback
);
7876 /* Anything else with side-effects must be converted to
7877 a valid statement before we get here. */
7883 else if (COMPLETE_TYPE_P (TREE_TYPE (*expr_p
))
7884 && TYPE_MODE (TREE_TYPE (*expr_p
)) != BLKmode
)
7886 /* Historically, the compiler has treated a bare reference
7887 to a non-BLKmode volatile lvalue as forcing a load. */
7888 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (*expr_p
));
7890 /* Normally, we do not want to create a temporary for a
7891 TREE_ADDRESSABLE type because such a type should not be
7892 copied by bitwise-assignment. However, we make an
7893 exception here, as all we are doing here is ensuring that
7894 we read the bytes that make up the type. We use
7895 create_tmp_var_raw because create_tmp_var will abort when
7896 given a TREE_ADDRESSABLE type. */
7897 tree tmp
= create_tmp_var_raw (type
, "vol");
7898 gimple_add_tmp_var (tmp
);
7899 gimplify_assign (tmp
, *expr_p
, pre_p
);
7903 /* We can't do anything useful with a volatile reference to
7904 an incomplete type, so just throw it away. Likewise for
7905 a BLKmode type, since any implicit inner load should
7906 already have been turned into an explicit one by the
7907 gimplification process. */
7911 /* If we are gimplifying at the statement level, we're done. Tack
7912 everything together and return. */
7913 if (fallback
== fb_none
|| is_statement
)
7915 /* Since *EXPR_P has been converted into a GIMPLE tuple, clear
7916 it out for GC to reclaim it. */
7917 *expr_p
= NULL_TREE
;
7919 if (!gimple_seq_empty_p (internal_pre
)
7920 || !gimple_seq_empty_p (internal_post
))
7922 gimplify_seq_add_seq (&internal_pre
, internal_post
);
7923 gimplify_seq_add_seq (pre_p
, internal_pre
);
7926 /* The result of gimplifying *EXPR_P is going to be the last few
7927 statements in *PRE_P and *POST_P. Add location information
7928 to all the statements that were added by the gimplification
7930 if (!gimple_seq_empty_p (*pre_p
))
7931 annotate_all_with_location_after (*pre_p
, pre_last_gsi
, input_location
);
7933 if (!gimple_seq_empty_p (*post_p
))
7934 annotate_all_with_location_after (*post_p
, post_last_gsi
,
7940 #ifdef ENABLE_GIMPLE_CHECKING
7943 enum tree_code code
= TREE_CODE (*expr_p
);
7944 /* These expressions should already be in gimple IR form. */
7945 gcc_assert (code
!= MODIFY_EXPR
7947 && code
!= BIND_EXPR
7948 && code
!= CATCH_EXPR
7949 && (code
!= COND_EXPR
|| gimplify_ctxp
->allow_rhs_cond_expr
)
7950 && code
!= EH_FILTER_EXPR
7951 && code
!= GOTO_EXPR
7952 && code
!= LABEL_EXPR
7953 && code
!= LOOP_EXPR
7954 && code
!= SWITCH_EXPR
7955 && code
!= TRY_FINALLY_EXPR
7956 && code
!= OMP_CRITICAL
7958 && code
!= OMP_MASTER
7959 && code
!= OMP_ORDERED
7960 && code
!= OMP_PARALLEL
7961 && code
!= OMP_SECTIONS
7962 && code
!= OMP_SECTION
7963 && code
!= OMP_SINGLE
);
7967 /* Otherwise we're gimplifying a subexpression, so the resulting
7968 value is interesting. If it's a valid operand that matches
7969 GIMPLE_TEST_F, we're done. Unless we are handling some
7970 post-effects internally; if that's the case, we need to copy into
7971 a temporary before adding the post-effects to POST_P. */
7972 if (gimple_seq_empty_p (internal_post
) && (*gimple_test_f
) (*expr_p
))
7975 /* Otherwise, we need to create a new temporary for the gimplified
7978 /* We can't return an lvalue if we have an internal postqueue. The
7979 object the lvalue refers to would (probably) be modified by the
7980 postqueue; we need to copy the value out first, which means an
7982 if ((fallback
& fb_lvalue
)
7983 && gimple_seq_empty_p (internal_post
)
7984 && is_gimple_addressable (*expr_p
))
7986 /* An lvalue will do. Take the address of the expression, store it
7987 in a temporary, and replace the expression with an INDIRECT_REF of
7989 tmp
= build_fold_addr_expr_loc (input_location
, *expr_p
);
7990 gimplify_expr (&tmp
, pre_p
, post_p
, is_gimple_reg
, fb_rvalue
);
7991 *expr_p
= build_simple_mem_ref (tmp
);
7993 else if ((fallback
& fb_rvalue
) && is_gimple_reg_rhs_or_call (*expr_p
))
7995 /* An rvalue will do. Assign the gimplified expression into a
7996 new temporary TMP and replace the original expression with
7997 TMP. First, make sure that the expression has a type so that
7998 it can be assigned into a temporary. */
7999 gcc_assert (!VOID_TYPE_P (TREE_TYPE (*expr_p
)));
8000 *expr_p
= get_formal_tmp_var (*expr_p
, pre_p
);
8004 #ifdef ENABLE_GIMPLE_CHECKING
8005 if (!(fallback
& fb_mayfail
))
8007 fprintf (stderr
, "gimplification failed:\n");
8008 print_generic_expr (stderr
, *expr_p
, 0);
8009 debug_tree (*expr_p
);
8010 internal_error ("gimplification failed");
8013 gcc_assert (fallback
& fb_mayfail
);
8015 /* If this is an asm statement, and the user asked for the
8016 impossible, don't die. Fail and let gimplify_asm_expr
8022 /* Make sure the temporary matches our predicate. */
8023 gcc_assert ((*gimple_test_f
) (*expr_p
));
8025 if (!gimple_seq_empty_p (internal_post
))
8027 annotate_all_with_location (internal_post
, input_location
);
8028 gimplify_seq_add_seq (pre_p
, internal_post
);
8032 input_location
= saved_location
;
8036 /* Look through TYPE for variable-sized objects and gimplify each such
8037 size that we find. Add to LIST_P any statements generated. */
8040 gimplify_type_sizes (tree type
, gimple_seq
*list_p
)
8044 if (type
== NULL
|| type
== error_mark_node
)
8047 /* We first do the main variant, then copy into any other variants. */
8048 type
= TYPE_MAIN_VARIANT (type
);
8050 /* Avoid infinite recursion. */
8051 if (TYPE_SIZES_GIMPLIFIED (type
))
8054 TYPE_SIZES_GIMPLIFIED (type
) = 1;
8056 switch (TREE_CODE (type
))
8062 case FIXED_POINT_TYPE
:
8063 gimplify_one_sizepos (&TYPE_MIN_VALUE (type
), list_p
);
8064 gimplify_one_sizepos (&TYPE_MAX_VALUE (type
), list_p
);
8066 for (t
= TYPE_NEXT_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
8068 TYPE_MIN_VALUE (t
) = TYPE_MIN_VALUE (type
);
8069 TYPE_MAX_VALUE (t
) = TYPE_MAX_VALUE (type
);
8074 /* These types may not have declarations, so handle them here. */
8075 gimplify_type_sizes (TREE_TYPE (type
), list_p
);
8076 gimplify_type_sizes (TYPE_DOMAIN (type
), list_p
);
8077 /* Ensure VLA bounds aren't removed, for -O0 they should be variables
8078 with assigned stack slots, for -O1+ -g they should be tracked
8080 if (!(TYPE_NAME (type
)
8081 && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
8082 && DECL_IGNORED_P (TYPE_NAME (type
)))
8083 && TYPE_DOMAIN (type
)
8084 && INTEGRAL_TYPE_P (TYPE_DOMAIN (type
)))
8086 t
= TYPE_MIN_VALUE (TYPE_DOMAIN (type
));
8087 if (t
&& TREE_CODE (t
) == VAR_DECL
&& DECL_ARTIFICIAL (t
))
8088 DECL_IGNORED_P (t
) = 0;
8089 t
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
8090 if (t
&& TREE_CODE (t
) == VAR_DECL
&& DECL_ARTIFICIAL (t
))
8091 DECL_IGNORED_P (t
) = 0;
8097 case QUAL_UNION_TYPE
:
8098 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
8099 if (TREE_CODE (field
) == FIELD_DECL
)
8101 gimplify_one_sizepos (&DECL_FIELD_OFFSET (field
), list_p
);
8102 gimplify_one_sizepos (&DECL_SIZE (field
), list_p
);
8103 gimplify_one_sizepos (&DECL_SIZE_UNIT (field
), list_p
);
8104 gimplify_type_sizes (TREE_TYPE (field
), list_p
);
8109 case REFERENCE_TYPE
:
8110 /* We used to recurse on the pointed-to type here, which turned out to
8111 be incorrect because its definition might refer to variables not
8112 yet initialized at this point if a forward declaration is involved.
8114 It was actually useful for anonymous pointed-to types to ensure
8115 that the sizes evaluation dominates every possible later use of the
8116 values. Restricting to such types here would be safe since there
8117 is no possible forward declaration around, but would introduce an
8118 undesirable middle-end semantic to anonymity. We then defer to
8119 front-ends the responsibility of ensuring that the sizes are
8120 evaluated both early and late enough, e.g. by attaching artificial
8121 type declarations to the tree. */
8128 gimplify_one_sizepos (&TYPE_SIZE (type
), list_p
);
8129 gimplify_one_sizepos (&TYPE_SIZE_UNIT (type
), list_p
);
8131 for (t
= TYPE_NEXT_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
8133 TYPE_SIZE (t
) = TYPE_SIZE (type
);
8134 TYPE_SIZE_UNIT (t
) = TYPE_SIZE_UNIT (type
);
8135 TYPE_SIZES_GIMPLIFIED (t
) = 1;
8139 /* A subroutine of gimplify_type_sizes to make sure that *EXPR_P,
8140 a size or position, has had all of its SAVE_EXPRs evaluated.
8141 We add any required statements to *STMT_P. */
8144 gimplify_one_sizepos (tree
*expr_p
, gimple_seq
*stmt_p
)
8146 tree expr
= *expr_p
;
8148 /* We don't do anything if the value isn't there, is constant, or contains
8149 A PLACEHOLDER_EXPR. We also don't want to do anything if it's already
8150 a VAR_DECL. If it's a VAR_DECL from another function, the gimplifier
8151 will want to replace it with a new variable, but that will cause problems
8152 if this type is from outside the function. It's OK to have that here. */
8153 if (is_gimple_sizepos (expr
))
8156 *expr_p
= unshare_expr (expr
);
8158 gimplify_expr (expr_p
, stmt_p
, NULL
, is_gimple_val
, fb_rvalue
);
8161 /* Gimplify the body of statements of FNDECL and return a GIMPLE_BIND node
8162 containing the sequence of corresponding GIMPLE statements. If DO_PARMS
8163 is true, also gimplify the parameters. */
8166 gimplify_body (tree fndecl
, bool do_parms
)
8168 location_t saved_location
= input_location
;
8169 gimple_seq parm_stmts
, seq
;
8171 struct gimplify_ctx gctx
;
8172 struct cgraph_node
*cgn
;
8174 timevar_push (TV_TREE_GIMPLIFY
);
8176 /* Initialize for optimize_insn_for_s{ize,peed}_p possibly called during
8178 default_rtl_profile ();
8180 gcc_assert (gimplify_ctxp
== NULL
);
8181 push_gimplify_context (&gctx
);
8183 /* Unshare most shared trees in the body and in that of any nested functions.
8184 It would seem we don't have to do this for nested functions because
8185 they are supposed to be output and then the outer function gimplified
8186 first, but the g++ front end doesn't always do it that way. */
8187 unshare_body (fndecl
);
8188 unvisit_body (fndecl
);
8190 cgn
= cgraph_get_node (fndecl
);
8191 if (cgn
&& cgn
->origin
)
8192 nonlocal_vlas
= pointer_set_create ();
8194 /* Make sure input_location isn't set to something weird. */
8195 input_location
= DECL_SOURCE_LOCATION (fndecl
);
8197 /* Resolve callee-copies. This has to be done before processing
8198 the body so that DECL_VALUE_EXPR gets processed correctly. */
8199 parm_stmts
= do_parms
? gimplify_parameters () : NULL
;
8201 /* Gimplify the function's body. */
8203 gimplify_stmt (&DECL_SAVED_TREE (fndecl
), &seq
);
8204 outer_bind
= gimple_seq_first_stmt (seq
);
8207 outer_bind
= gimple_build_nop ();
8208 gimplify_seq_add_stmt (&seq
, outer_bind
);
8211 /* The body must contain exactly one statement, a GIMPLE_BIND. If this is
8212 not the case, wrap everything in a GIMPLE_BIND to make it so. */
8213 if (gimple_code (outer_bind
) == GIMPLE_BIND
8214 && gimple_seq_first (seq
) == gimple_seq_last (seq
))
8217 outer_bind
= gimple_build_bind (NULL_TREE
, seq
, NULL
);
8219 DECL_SAVED_TREE (fndecl
) = NULL_TREE
;
8221 /* If we had callee-copies statements, insert them at the beginning
8222 of the function and clear DECL_VALUE_EXPR_P on the parameters. */
8223 if (!gimple_seq_empty_p (parm_stmts
))
8227 gimplify_seq_add_seq (&parm_stmts
, gimple_bind_body (outer_bind
));
8228 gimple_bind_set_body (outer_bind
, parm_stmts
);
8230 for (parm
= DECL_ARGUMENTS (current_function_decl
);
8231 parm
; parm
= DECL_CHAIN (parm
))
8232 if (DECL_HAS_VALUE_EXPR_P (parm
))
8234 DECL_HAS_VALUE_EXPR_P (parm
) = 0;
8235 DECL_IGNORED_P (parm
) = 0;
8241 pointer_set_destroy (nonlocal_vlas
);
8242 nonlocal_vlas
= NULL
;
8245 pop_gimplify_context (outer_bind
);
8246 gcc_assert (gimplify_ctxp
== NULL
);
8248 #ifdef ENABLE_CHECKING
8250 verify_gimple_in_seq (gimple_bind_body (outer_bind
));
8253 timevar_pop (TV_TREE_GIMPLIFY
);
8254 input_location
= saved_location
;
8259 typedef char *char_p
; /* For DEF_VEC_P. */
8261 DEF_VEC_ALLOC_P(char_p
,heap
);
8263 /* Return whether we should exclude FNDECL from instrumentation. */
8266 flag_instrument_functions_exclude_p (tree fndecl
)
8268 VEC(char_p
,heap
) *vec
;
8270 vec
= (VEC(char_p
,heap
) *) flag_instrument_functions_exclude_functions
;
8271 if (VEC_length (char_p
, vec
) > 0)
8277 name
= lang_hooks
.decl_printable_name (fndecl
, 0);
8278 FOR_EACH_VEC_ELT (char_p
, vec
, i
, s
)
8279 if (strstr (name
, s
) != NULL
)
8283 vec
= (VEC(char_p
,heap
) *) flag_instrument_functions_exclude_files
;
8284 if (VEC_length (char_p
, vec
) > 0)
8290 name
= DECL_SOURCE_FILE (fndecl
);
8291 FOR_EACH_VEC_ELT (char_p
, vec
, i
, s
)
8292 if (strstr (name
, s
) != NULL
)
8299 /* Entry point to the gimplification pass. FNDECL is the FUNCTION_DECL
8300 node for the function we want to gimplify.
8302 Return the sequence of GIMPLE statements corresponding to the body
8306 gimplify_function_tree (tree fndecl
)
8312 gcc_assert (!gimple_body (fndecl
));
8314 if (DECL_STRUCT_FUNCTION (fndecl
))
8315 push_cfun (DECL_STRUCT_FUNCTION (fndecl
));
8317 push_struct_function (fndecl
);
8319 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
8321 /* Preliminarily mark non-addressed complex variables as eligible
8322 for promotion to gimple registers. We'll transform their uses
8324 if ((TREE_CODE (TREE_TYPE (parm
)) == COMPLEX_TYPE
8325 || TREE_CODE (TREE_TYPE (parm
)) == VECTOR_TYPE
)
8326 && !TREE_THIS_VOLATILE (parm
)
8327 && !needs_to_live_in_memory (parm
))
8328 DECL_GIMPLE_REG_P (parm
) = 1;
8331 ret
= DECL_RESULT (fndecl
);
8332 if ((TREE_CODE (TREE_TYPE (ret
)) == COMPLEX_TYPE
8333 || TREE_CODE (TREE_TYPE (ret
)) == VECTOR_TYPE
)
8334 && !needs_to_live_in_memory (ret
))
8335 DECL_GIMPLE_REG_P (ret
) = 1;
8337 bind
= gimplify_body (fndecl
, true);
8339 /* The tree body of the function is no longer needed, replace it
8340 with the new GIMPLE body. */
8342 gimple_seq_add_stmt (&seq
, bind
);
8343 gimple_set_body (fndecl
, seq
);
8345 /* If we're instrumenting function entry/exit, then prepend the call to
8346 the entry hook and wrap the whole function in a TRY_FINALLY_EXPR to
8347 catch the exit hook. */
8348 /* ??? Add some way to ignore exceptions for this TFE. */
8349 if (flag_instrument_function_entry_exit
8350 && !DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (fndecl
)
8351 && !flag_instrument_functions_exclude_p (fndecl
))
8356 gimple_seq cleanup
= NULL
, body
= NULL
;
8360 x
= builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS
);
8361 call
= gimple_build_call (x
, 1, integer_zero_node
);
8362 tmp_var
= create_tmp_var (ptr_type_node
, "return_addr");
8363 gimple_call_set_lhs (call
, tmp_var
);
8364 gimplify_seq_add_stmt (&cleanup
, call
);
8365 x
= builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_EXIT
);
8366 call
= gimple_build_call (x
, 2,
8367 build_fold_addr_expr (current_function_decl
),
8369 gimplify_seq_add_stmt (&cleanup
, call
);
8370 tf
= gimple_build_try (seq
, cleanup
, GIMPLE_TRY_FINALLY
);
8372 x
= builtin_decl_implicit (BUILT_IN_RETURN_ADDRESS
);
8373 call
= gimple_build_call (x
, 1, integer_zero_node
);
8374 tmp_var
= create_tmp_var (ptr_type_node
, "return_addr");
8375 gimple_call_set_lhs (call
, tmp_var
);
8376 gimplify_seq_add_stmt (&body
, call
);
8377 x
= builtin_decl_implicit (BUILT_IN_PROFILE_FUNC_ENTER
);
8378 call
= gimple_build_call (x
, 2,
8379 build_fold_addr_expr (current_function_decl
),
8381 gimplify_seq_add_stmt (&body
, call
);
8382 gimplify_seq_add_stmt (&body
, tf
);
8383 new_bind
= gimple_build_bind (NULL
, body
, gimple_bind_block (bind
));
8384 /* Clear the block for BIND, since it is no longer directly inside
8385 the function, but within a try block. */
8386 gimple_bind_set_block (bind
, NULL
);
8388 /* Replace the current function body with the body
8389 wrapped in the try/finally TF. */
8391 gimple_seq_add_stmt (&seq
, new_bind
);
8392 gimple_set_body (fndecl
, seq
);
8395 DECL_SAVED_TREE (fndecl
) = NULL_TREE
;
8396 cfun
->curr_properties
= PROP_gimple_any
;
8401 /* Some transformations like inlining may invalidate the GIMPLE form
8402 for operands. This function traverses all the operands in STMT and
8403 gimplifies anything that is not a valid gimple operand. Any new
8404 GIMPLE statements are inserted before *GSI_P. */
8407 gimple_regimplify_operands (gimple stmt
, gimple_stmt_iterator
*gsi_p
)
8411 gimple_seq pre
= NULL
;
8412 gimple post_stmt
= NULL
;
8413 struct gimplify_ctx gctx
;
8415 push_gimplify_context (&gctx
);
8416 gimplify_ctxp
->into_ssa
= gimple_in_ssa_p (cfun
);
8418 switch (gimple_code (stmt
))
8421 gimplify_expr (gimple_cond_lhs_ptr (stmt
), &pre
, NULL
,
8422 is_gimple_val
, fb_rvalue
);
8423 gimplify_expr (gimple_cond_rhs_ptr (stmt
), &pre
, NULL
,
8424 is_gimple_val
, fb_rvalue
);
8427 gimplify_expr (gimple_switch_index_ptr (stmt
), &pre
, NULL
,
8428 is_gimple_val
, fb_rvalue
);
8430 case GIMPLE_OMP_ATOMIC_LOAD
:
8431 gimplify_expr (gimple_omp_atomic_load_rhs_ptr (stmt
), &pre
, NULL
,
8432 is_gimple_val
, fb_rvalue
);
8436 size_t i
, noutputs
= gimple_asm_noutputs (stmt
);
8437 const char *constraint
, **oconstraints
;
8438 bool allows_mem
, allows_reg
, is_inout
;
8441 = (const char **) alloca ((noutputs
) * sizeof (const char *));
8442 for (i
= 0; i
< noutputs
; i
++)
8444 tree op
= gimple_asm_output_op (stmt
, i
);
8445 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
8446 oconstraints
[i
] = constraint
;
8447 parse_output_constraint (&constraint
, i
, 0, 0, &allows_mem
,
8448 &allows_reg
, &is_inout
);
8449 gimplify_expr (&TREE_VALUE (op
), &pre
, NULL
,
8450 is_inout
? is_gimple_min_lval
: is_gimple_lvalue
,
8451 fb_lvalue
| fb_mayfail
);
8453 for (i
= 0; i
< gimple_asm_ninputs (stmt
); i
++)
8455 tree op
= gimple_asm_input_op (stmt
, i
);
8456 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (op
)));
8457 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0,
8458 oconstraints
, &allows_mem
, &allows_reg
);
8459 if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (op
))) && allows_mem
)
8461 if (!allows_reg
&& allows_mem
)
8462 gimplify_expr (&TREE_VALUE (op
), &pre
, NULL
,
8463 is_gimple_lvalue
, fb_lvalue
| fb_mayfail
);
8465 gimplify_expr (&TREE_VALUE (op
), &pre
, NULL
,
8466 is_gimple_asm_val
, fb_rvalue
);
8471 /* NOTE: We start gimplifying operands from last to first to
8472 make sure that side-effects on the RHS of calls, assignments
8473 and ASMs are executed before the LHS. The ordering is not
8474 important for other statements. */
8475 num_ops
= gimple_num_ops (stmt
);
8476 for (i
= num_ops
; i
> 0; i
--)
8478 tree op
= gimple_op (stmt
, i
- 1);
8479 if (op
== NULL_TREE
)
8481 if (i
== 1 && (is_gimple_call (stmt
) || is_gimple_assign (stmt
)))
8482 gimplify_expr (&op
, &pre
, NULL
, is_gimple_lvalue
, fb_lvalue
);
8484 && is_gimple_assign (stmt
)
8486 && get_gimple_rhs_class (gimple_expr_code (stmt
))
8487 == GIMPLE_SINGLE_RHS
)
8488 gimplify_expr (&op
, &pre
, NULL
,
8489 rhs_predicate_for (gimple_assign_lhs (stmt
)),
8491 else if (i
== 2 && is_gimple_call (stmt
))
8493 if (TREE_CODE (op
) == FUNCTION_DECL
)
8495 gimplify_expr (&op
, &pre
, NULL
, is_gimple_call_addr
, fb_rvalue
);
8498 gimplify_expr (&op
, &pre
, NULL
, is_gimple_val
, fb_rvalue
);
8499 gimple_set_op (stmt
, i
- 1, op
);
8502 lhs
= gimple_get_lhs (stmt
);
8503 /* If the LHS changed it in a way that requires a simple RHS,
8504 create temporary. */
8505 if (lhs
&& !is_gimple_reg (lhs
))
8507 bool need_temp
= false;
8509 if (is_gimple_assign (stmt
)
8511 && get_gimple_rhs_class (gimple_expr_code (stmt
))
8512 == GIMPLE_SINGLE_RHS
)
8513 gimplify_expr (gimple_assign_rhs1_ptr (stmt
), &pre
, NULL
,
8514 rhs_predicate_for (gimple_assign_lhs (stmt
)),
8516 else if (is_gimple_reg (lhs
))
8518 if (is_gimple_reg_type (TREE_TYPE (lhs
)))
8520 if (is_gimple_call (stmt
))
8522 i
= gimple_call_flags (stmt
);
8523 if ((i
& ECF_LOOPING_CONST_OR_PURE
)
8524 || !(i
& (ECF_CONST
| ECF_PURE
)))
8527 if (stmt_can_throw_internal (stmt
))
8533 if (is_gimple_reg_type (TREE_TYPE (lhs
)))
8535 else if (TYPE_MODE (TREE_TYPE (lhs
)) != BLKmode
)
8537 if (is_gimple_call (stmt
))
8539 tree fndecl
= gimple_call_fndecl (stmt
);
8541 if (!aggregate_value_p (TREE_TYPE (lhs
), fndecl
)
8542 && !(fndecl
&& DECL_RESULT (fndecl
)
8543 && DECL_BY_REFERENCE (DECL_RESULT (fndecl
))))
8552 tree temp
= create_tmp_reg (TREE_TYPE (lhs
), NULL
);
8553 if (gimple_in_ssa_p (cfun
))
8554 temp
= make_ssa_name (temp
, NULL
);
8555 gimple_set_lhs (stmt
, temp
);
8556 post_stmt
= gimple_build_assign (lhs
, temp
);
8557 if (TREE_CODE (lhs
) == SSA_NAME
)
8558 SSA_NAME_DEF_STMT (lhs
) = post_stmt
;
8564 if (!gimple_seq_empty_p (pre
))
8565 gsi_insert_seq_before (gsi_p
, pre
, GSI_SAME_STMT
);
8567 gsi_insert_after (gsi_p
, post_stmt
, GSI_NEW_STMT
);
8569 pop_gimplify_context (NULL
);
8572 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
8573 the predicate that will hold for the result. If VAR is not NULL, make the
8574 base variable of the final destination be VAR if suitable. */
8577 force_gimple_operand_1 (tree expr
, gimple_seq
*stmts
,
8578 gimple_predicate gimple_test_f
, tree var
)
8580 enum gimplify_status ret
;
8581 struct gimplify_ctx gctx
;
8585 /* gimple_test_f might be more strict than is_gimple_val, make
8586 sure we pass both. Just checking gimple_test_f doesn't work
8587 because most gimple predicates do not work recursively. */
8588 if (is_gimple_val (expr
)
8589 && (*gimple_test_f
) (expr
))
8592 push_gimplify_context (&gctx
);
8593 gimplify_ctxp
->into_ssa
= gimple_in_ssa_p (cfun
);
8594 gimplify_ctxp
->allow_rhs_cond_expr
= true;
8598 if (gimplify_ctxp
->into_ssa
8599 && is_gimple_reg (var
))
8600 var
= make_ssa_name (var
, NULL
);
8601 expr
= build2 (MODIFY_EXPR
, TREE_TYPE (var
), var
, expr
);
8604 if (TREE_CODE (expr
) != MODIFY_EXPR
8605 && TREE_TYPE (expr
) == void_type_node
)
8607 gimplify_and_add (expr
, stmts
);
8612 ret
= gimplify_expr (&expr
, stmts
, NULL
, gimple_test_f
, fb_rvalue
);
8613 gcc_assert (ret
!= GS_ERROR
);
8616 pop_gimplify_context (NULL
);
8621 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
8622 force the result to be either ssa_name or an invariant, otherwise
8623 just force it to be a rhs expression. If VAR is not NULL, make the
8624 base variable of the final destination be VAR if suitable. */
8627 force_gimple_operand (tree expr
, gimple_seq
*stmts
, bool simple
, tree var
)
8629 return force_gimple_operand_1 (expr
, stmts
,
8630 simple
? is_gimple_val
: is_gimple_reg_rhs
,
8634 /* Invoke force_gimple_operand_1 for EXPR with parameters GIMPLE_TEST_F
8635 and VAR. If some statements are produced, emits them at GSI.
8636 If BEFORE is true. the statements are appended before GSI, otherwise
8637 they are appended after it. M specifies the way GSI moves after
8638 insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING are the usual values). */
8641 force_gimple_operand_gsi_1 (gimple_stmt_iterator
*gsi
, tree expr
,
8642 gimple_predicate gimple_test_f
,
8643 tree var
, bool before
,
8644 enum gsi_iterator_update m
)
8648 expr
= force_gimple_operand_1 (expr
, &stmts
, gimple_test_f
, var
);
8650 if (!gimple_seq_empty_p (stmts
))
8653 gsi_insert_seq_before (gsi
, stmts
, m
);
8655 gsi_insert_seq_after (gsi
, stmts
, m
);
8661 /* Invoke force_gimple_operand_1 for EXPR with parameter VAR.
8662 If SIMPLE is true, force the result to be either ssa_name or an invariant,
8663 otherwise just force it to be a rhs expression. If some statements are
8664 produced, emits them at GSI. If BEFORE is true, the statements are
8665 appended before GSI, otherwise they are appended after it. M specifies
8666 the way GSI moves after insertion (GSI_SAME_STMT or GSI_CONTINUE_LINKING
8667 are the usual values). */
8670 force_gimple_operand_gsi (gimple_stmt_iterator
*gsi
, tree expr
,
8671 bool simple_p
, tree var
, bool before
,
8672 enum gsi_iterator_update m
)
8674 return force_gimple_operand_gsi_1 (gsi
, expr
,
8676 ? is_gimple_val
: is_gimple_reg_rhs
,
8681 #include "gt-gimplify.h"