1 /* Data flow functions for trees.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
24 #include "coretypes.h"
27 #include "pointer-set.h"
31 #include "hard-reg-set.h"
32 #include "basic-block.h"
37 #include "langhooks.h"
40 #include "diagnostic.h"
41 #include "tree-dump.h"
42 #include "tree-gimple.h"
43 #include "tree-flow.h"
44 #include "tree-inline.h"
45 #include "tree-pass.h"
50 /* Build and maintain data flow information for trees. */
52 /* Counters used to display DFA and SSA statistics. */
68 /* State information for find_vars_r. */
71 /* Hash table used to avoid adding the same variable more than once. */
76 /* Local functions. */
77 static void collect_dfa_stats (struct dfa_stats_d
*);
78 static tree
collect_dfa_stats_r (tree
*, int *, void *);
79 static tree
find_vars_r (tree
*, int *, void *);
80 static void add_referenced_var (tree
, struct walk_state
*);
83 /* Global declarations. */
85 /* Array of all variables referenced in the function. */
86 htab_t referenced_vars
;
88 /* Default definition for this symbols. If set for symbol, it
89 means that the first reference to this variable in the function is a
90 USE or a VUSE. In those cases, the SSA renamer creates an SSA name
91 for this variable with an empty defining statement. */
95 /*---------------------------------------------------------------------------
96 Dataflow analysis (DFA) routines
97 ---------------------------------------------------------------------------*/
98 /* Find all the variables referenced in the function. This function
99 builds the global arrays REFERENCED_VARS and CALL_CLOBBERED_VARS.
101 Note that this function does not look for statement operands, it simply
102 determines what variables are referenced in the program and detects
103 various attributes for each variable used by alias analysis and the
107 find_referenced_vars (void)
111 block_stmt_iterator si
;
112 struct walk_state walk_state
;
114 vars_found
= htab_create (50, htab_hash_pointer
, htab_eq_pointer
, NULL
);
115 memset (&walk_state
, 0, sizeof (walk_state
));
116 walk_state
.vars_found
= vars_found
;
119 for (si
= bsi_start (bb
); !bsi_end_p (si
); bsi_next (&si
))
121 tree
*stmt_p
= bsi_stmt_ptr (si
);
122 walk_tree (stmt_p
, find_vars_r
, &walk_state
, NULL
);
125 htab_delete (vars_found
);
128 struct tree_opt_pass pass_referenced_vars
=
132 find_referenced_vars
, /* execute */
135 0, /* static_pass_number */
136 TV_FIND_REFERENCED_VARS
, /* tv_id */
137 PROP_gimple_leh
| PROP_cfg
, /* properties_required */
138 PROP_referenced_vars
, /* properties_provided */
139 0, /* properties_destroyed */
140 0, /* todo_flags_start */
141 0, /* todo_flags_finish */
146 /*---------------------------------------------------------------------------
148 ---------------------------------------------------------------------------*/
149 /* Create a new annotation for a _DECL node T. */
152 create_var_ann (tree t
)
157 gcc_assert (DECL_P (t
));
158 gcc_assert (!t
->common
.ann
|| t
->common
.ann
->common
.type
== VAR_ANN
);
160 ann
= GGC_NEW (struct var_ann_d
);
161 memset ((void *) ann
, 0, sizeof (*ann
));
163 ann
->common
.type
= VAR_ANN
;
165 t
->common
.ann
= (tree_ann_t
) ann
;
170 /* Create a new annotation for a FUNCTION_DECL node T. */
173 create_function_ann (tree t
)
178 gcc_assert (TREE_CODE (t
) == FUNCTION_DECL
);
179 gcc_assert (!t
->common
.ann
|| t
->common
.ann
->common
.type
== FUNCTION_ANN
);
181 ann
= ggc_alloc (sizeof (*ann
));
182 memset ((void *) ann
, 0, sizeof (*ann
));
184 ann
->common
.type
= FUNCTION_ANN
;
186 t
->common
.ann
= (tree_ann_t
) ann
;
191 /* Create a new annotation for a statement node T. */
194 create_stmt_ann (tree t
)
198 gcc_assert (is_gimple_stmt (t
));
199 gcc_assert (!t
->common
.ann
|| t
->common
.ann
->common
.type
== STMT_ANN
);
201 ann
= GGC_NEW (struct stmt_ann_d
);
202 memset ((void *) ann
, 0, sizeof (*ann
));
204 ann
->common
.type
= STMT_ANN
;
206 /* Since we just created the annotation, mark the statement modified. */
207 ann
->modified
= true;
209 t
->common
.ann
= (tree_ann_t
) ann
;
214 /* Create a new annotation for a tree T. */
217 create_tree_ann (tree t
)
222 gcc_assert (!t
->common
.ann
|| t
->common
.ann
->common
.type
== TREE_ANN_COMMON
);
224 ann
= GGC_NEW (union tree_ann_d
);
225 memset ((void *) ann
, 0, sizeof (*ann
));
227 ann
->common
.type
= TREE_ANN_COMMON
;
233 /* Build a temporary. Make sure and register it to be renamed. */
236 make_rename_temp (tree type
, const char *prefix
)
238 tree t
= create_tmp_var (type
, prefix
);
240 if (TREE_CODE (type
) == COMPLEX_TYPE
)
241 DECL_COMPLEX_GIMPLE_REG_P (t
) = 1;
245 add_referenced_tmp_var (t
);
246 mark_sym_for_renaming (t
);
254 /*---------------------------------------------------------------------------
256 ---------------------------------------------------------------------------*/
257 /* Dump the list of all the referenced variables in the current function to
261 dump_referenced_vars (FILE *file
)
264 referenced_var_iterator rvi
;
266 fprintf (file
, "\nReferenced variables in %s: %u\n\n",
267 get_name (current_function_decl
), (unsigned) num_referenced_vars
);
269 FOR_EACH_REFERENCED_VAR (var
, rvi
)
271 fprintf (file
, "Variable: ");
272 dump_variable (file
, var
);
273 fprintf (file
, "\n");
278 /* Dump the list of all the referenced variables to stderr. */
281 debug_referenced_vars (void)
283 dump_referenced_vars (stderr
);
287 /* Dump sub-variables for VAR to FILE. */
290 dump_subvars_for (FILE *file
, tree var
)
292 subvar_t sv
= get_subvars_for_var (var
);
297 fprintf (file
, "{ ");
299 for (; sv
; sv
= sv
->next
)
301 print_generic_expr (file
, sv
->var
, dump_flags
);
309 /* Dumb sub-variables for VAR to stderr. */
312 debug_subvars_for (tree var
)
314 dump_subvars_for (stderr
, var
);
318 /* Dump variable VAR and its may-aliases to FILE. */
321 dump_variable (FILE *file
, tree var
)
325 if (TREE_CODE (var
) == SSA_NAME
)
327 if (POINTER_TYPE_P (TREE_TYPE (var
)))
328 dump_points_to_info_for (file
, var
);
329 var
= SSA_NAME_VAR (var
);
332 if (var
== NULL_TREE
)
334 fprintf (file
, "<nil>");
338 print_generic_expr (file
, var
, dump_flags
);
342 fprintf (file
, ", UID %u", (unsigned) DECL_UID (var
));
344 fprintf (file
, ", ");
345 print_generic_expr (file
, TREE_TYPE (var
), dump_flags
);
347 if (ann
&& ann
->type_mem_tag
)
349 fprintf (file
, ", type memory tag: ");
350 print_generic_expr (file
, ann
->type_mem_tag
, dump_flags
);
353 if (ann
&& ann
->is_alias_tag
)
354 fprintf (file
, ", is an alias tag");
356 if (TREE_ADDRESSABLE (var
))
357 fprintf (file
, ", is addressable");
359 if (is_global_var (var
))
360 fprintf (file
, ", is global");
362 if (TREE_THIS_VOLATILE (var
))
363 fprintf (file
, ", is volatile");
365 if (is_call_clobbered (var
))
367 fprintf (file
, ", call clobbered");
368 if (dump_flags
& TDF_DETAILS
)
370 var_ann_t va
= var_ann (var
);
371 unsigned int escape_mask
= va
->escape_mask
;
373 fprintf (file
, " (");
374 if (escape_mask
& ESCAPE_STORED_IN_GLOBAL
)
375 fprintf (file
, ", stored in global");
376 if (escape_mask
& ESCAPE_TO_ASM
)
377 fprintf (file
, ", goes through ASM");
378 if (escape_mask
& ESCAPE_TO_CALL
)
379 fprintf (file
, ", passed to call");
380 if (escape_mask
& ESCAPE_BAD_CAST
)
381 fprintf (file
, ", bad cast");
382 if (escape_mask
& ESCAPE_TO_RETURN
)
383 fprintf (file
, ", returned from func");
384 if (escape_mask
& ESCAPE_TO_PURE_CONST
)
385 fprintf (file
, ", passed to pure/const");
386 if (escape_mask
& ESCAPE_IS_GLOBAL
)
387 fprintf (file
, ", is global var");
388 if (escape_mask
& ESCAPE_IS_PARM
)
389 fprintf (file
, ", is incoming pointer");
390 if (escape_mask
& ESCAPE_UNKNOWN
)
391 fprintf (file
, ", unknown escape");
392 fprintf (file
, " )");
396 if (default_def (var
))
398 fprintf (file
, ", default def: ");
399 print_generic_expr (file
, default_def (var
), dump_flags
);
402 if (may_aliases (var
))
404 fprintf (file
, ", may aliases: ");
405 dump_may_aliases_for (file
, var
);
408 if (get_subvars_for_var (var
))
410 fprintf (file
, ", sub-vars: ");
411 dump_subvars_for (file
, var
);
414 fprintf (file
, "\n");
418 /* Dump variable VAR and its may-aliases to stderr. */
421 debug_variable (tree var
)
423 dump_variable (stderr
, var
);
427 /* Dump various DFA statistics to FILE. */
430 dump_dfa_stats (FILE *file
)
432 struct dfa_stats_d dfa_stats
;
434 unsigned long size
, total
= 0;
435 const char * const fmt_str
= "%-30s%-13s%12s\n";
436 const char * const fmt_str_1
= "%-30s%13lu%11lu%c\n";
437 const char * const fmt_str_3
= "%-43s%11lu%c\n";
439 = lang_hooks
.decl_printable_name (current_function_decl
, 2);
441 collect_dfa_stats (&dfa_stats
);
443 fprintf (file
, "\nDFA Statistics for %s\n\n", funcname
);
445 fprintf (file
, "---------------------------------------------------------\n");
446 fprintf (file
, fmt_str
, "", " Number of ", "Memory");
447 fprintf (file
, fmt_str
, "", " instances ", "used ");
448 fprintf (file
, "---------------------------------------------------------\n");
450 size
= num_referenced_vars
* sizeof (tree
);
452 fprintf (file
, fmt_str_1
, "Referenced variables", (unsigned long)num_referenced_vars
,
453 SCALE (size
), LABEL (size
));
455 size
= dfa_stats
.num_stmt_anns
* sizeof (struct stmt_ann_d
);
457 fprintf (file
, fmt_str_1
, "Statements annotated", dfa_stats
.num_stmt_anns
,
458 SCALE (size
), LABEL (size
));
460 size
= dfa_stats
.num_var_anns
* sizeof (struct var_ann_d
);
462 fprintf (file
, fmt_str_1
, "Variables annotated", dfa_stats
.num_var_anns
,
463 SCALE (size
), LABEL (size
));
465 size
= dfa_stats
.num_uses
* sizeof (tree
*);
467 fprintf (file
, fmt_str_1
, "USE operands", dfa_stats
.num_uses
,
468 SCALE (size
), LABEL (size
));
470 size
= dfa_stats
.num_defs
* sizeof (tree
*);
472 fprintf (file
, fmt_str_1
, "DEF operands", dfa_stats
.num_defs
,
473 SCALE (size
), LABEL (size
));
475 size
= dfa_stats
.num_vuses
* sizeof (tree
*);
477 fprintf (file
, fmt_str_1
, "VUSE operands", dfa_stats
.num_vuses
,
478 SCALE (size
), LABEL (size
));
480 size
= dfa_stats
.num_v_may_defs
* sizeof (tree
*);
482 fprintf (file
, fmt_str_1
, "V_MAY_DEF operands", dfa_stats
.num_v_may_defs
,
483 SCALE (size
), LABEL (size
));
485 size
= dfa_stats
.num_v_must_defs
* sizeof (tree
*);
487 fprintf (file
, fmt_str_1
, "V_MUST_DEF operands", dfa_stats
.num_v_must_defs
,
488 SCALE (size
), LABEL (size
));
490 size
= dfa_stats
.num_phis
* sizeof (struct tree_phi_node
);
492 fprintf (file
, fmt_str_1
, "PHI nodes", dfa_stats
.num_phis
,
493 SCALE (size
), LABEL (size
));
495 size
= dfa_stats
.num_phi_args
* sizeof (struct phi_arg_d
);
497 fprintf (file
, fmt_str_1
, "PHI arguments", dfa_stats
.num_phi_args
,
498 SCALE (size
), LABEL (size
));
500 fprintf (file
, "---------------------------------------------------------\n");
501 fprintf (file
, fmt_str_3
, "Total memory used by DFA/SSA data", SCALE (total
),
503 fprintf (file
, "---------------------------------------------------------\n");
504 fprintf (file
, "\n");
506 if (dfa_stats
.num_phis
)
507 fprintf (file
, "Average number of arguments per PHI node: %.1f (max: %d)\n",
508 (float) dfa_stats
.num_phi_args
/ (float) dfa_stats
.num_phis
,
509 dfa_stats
.max_num_phi_args
);
511 fprintf (file
, "\n");
515 /* Dump DFA statistics on stderr. */
518 debug_dfa_stats (void)
520 dump_dfa_stats (stderr
);
524 /* Collect DFA statistics and store them in the structure pointed to by
528 collect_dfa_stats (struct dfa_stats_d
*dfa_stats_p
)
530 struct pointer_set_t
*pset
;
532 block_stmt_iterator i
;
534 gcc_assert (dfa_stats_p
);
536 memset ((void *)dfa_stats_p
, 0, sizeof (struct dfa_stats_d
));
538 /* Walk all the trees in the function counting references. Start at
539 basic block NUM_FIXED_BLOCKS, but don't stop at block boundaries. */
540 pset
= pointer_set_create ();
542 for (i
= bsi_start (BASIC_BLOCK (NUM_FIXED_BLOCKS
));
543 !bsi_end_p (i
); bsi_next (&i
))
544 walk_tree (bsi_stmt_ptr (i
), collect_dfa_stats_r
, (void *) dfa_stats_p
,
547 pointer_set_destroy (pset
);
552 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
554 dfa_stats_p
->num_phis
++;
555 dfa_stats_p
->num_phi_args
+= PHI_NUM_ARGS (phi
);
556 if (PHI_NUM_ARGS (phi
) > dfa_stats_p
->max_num_phi_args
)
557 dfa_stats_p
->max_num_phi_args
= PHI_NUM_ARGS (phi
);
563 /* Callback for walk_tree to collect DFA statistics for a tree and its
567 collect_dfa_stats_r (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
571 struct dfa_stats_d
*dfa_stats_p
= (struct dfa_stats_d
*)data
;
575 switch (ann_type (t
->common
.ann
))
579 dfa_stats_p
->num_stmt_anns
++;
580 dfa_stats_p
->num_defs
+= NUM_SSA_OPERANDS (t
, SSA_OP_DEF
);
581 dfa_stats_p
->num_uses
+= NUM_SSA_OPERANDS (t
, SSA_OP_USE
);
582 dfa_stats_p
->num_v_may_defs
+= NUM_SSA_OPERANDS (t
, SSA_OP_VMAYDEF
);
583 dfa_stats_p
->num_vuses
+= NUM_SSA_OPERANDS (t
, SSA_OP_VUSE
);
584 dfa_stats_p
->num_v_must_defs
+=
585 NUM_SSA_OPERANDS (t
, SSA_OP_VMUSTDEF
);
590 dfa_stats_p
->num_var_anns
++;
602 /*---------------------------------------------------------------------------
603 Miscellaneous helpers
604 ---------------------------------------------------------------------------*/
605 /* Callback for walk_tree. Used to collect variables referenced in
609 find_vars_r (tree
*tp
, int *walk_subtrees
, void *data
)
611 struct walk_state
*walk_state
= (struct walk_state
*) data
;
613 /* If T is a regular variable that the optimizers are interested
614 in, add it to the list of variables. */
616 add_referenced_var (*tp
, walk_state
);
618 /* Type, _DECL and constant nodes have no interesting children.
620 else if (IS_TYPE_OR_DECL_P (*tp
) || CONSTANT_CLASS_P (*tp
))
627 /* Lookup UID in the referenced_vars hashtable and return the associated
628 variable or NULL if it is not there. */
631 referenced_var_lookup_if_exists (unsigned int uid
)
633 struct int_tree_map
*h
, in
;
635 h
= (struct int_tree_map
*) htab_find_with_hash (referenced_vars
, &in
, uid
);
641 /* Lookup UID in the referenced_vars hashtable and return the associated
645 referenced_var_lookup (unsigned int uid
)
647 struct int_tree_map
*h
, in
;
649 h
= (struct int_tree_map
*) htab_find_with_hash (referenced_vars
, &in
, uid
);
650 gcc_assert (h
|| uid
== 0);
656 /* Insert the pair UID, TO into the referenced_vars hashtable. */
659 referenced_var_insert (unsigned int uid
, tree to
)
661 struct int_tree_map
*h
;
664 h
= GGC_NEW (struct int_tree_map
);
667 loc
= htab_find_slot_with_hash (referenced_vars
, h
, uid
, INSERT
);
668 *(struct int_tree_map
**) loc
= h
;
671 /* Lookup VAR UID in the default_defs hashtable and return the associated
675 default_def (tree var
)
677 struct int_tree_map
*h
, in
;
678 gcc_assert (SSA_VAR_P (var
));
679 in
.uid
= DECL_UID (var
);
680 h
= (struct int_tree_map
*) htab_find_with_hash (default_defs
, &in
,
687 /* Insert the pair VAR's UID, DEF into the default_defs hashtable. */
690 set_default_def (tree var
, tree def
)
692 struct int_tree_map in
;
693 struct int_tree_map
*h
;
696 gcc_assert (SSA_VAR_P (var
));
697 in
.uid
= DECL_UID (var
);
698 if (!def
&& default_def (var
))
700 loc
= htab_find_slot_with_hash (default_defs
, &in
, DECL_UID (var
), INSERT
);
701 htab_remove_elt (default_defs
, *loc
);
704 gcc_assert (TREE_CODE (def
) == SSA_NAME
);
705 loc
= htab_find_slot_with_hash (default_defs
, &in
, DECL_UID (var
), INSERT
);
706 /* Default definition might be changed by tail call optimization. */
709 h
= GGC_NEW (struct int_tree_map
);
710 h
->uid
= DECL_UID (var
);
712 *(struct int_tree_map
**) loc
= h
;
716 h
= (struct int_tree_map
*) *loc
;
721 /* Add VAR to the list of dereferenced variables.
723 WALK_STATE contains a hash table used to avoid adding the same
724 variable more than once. Note that this function assumes that
725 VAR is a valid SSA variable. If WALK_STATE is NULL, no
726 duplicate checking is done. */
729 add_referenced_var (tree var
, struct walk_state
*walk_state
)
734 v_ann
= get_var_ann (var
);
737 slot
= htab_find_slot (walk_state
->vars_found
, (void *) var
, INSERT
);
741 if (slot
== NULL
|| *slot
== NULL
)
743 /* This is the first time we find this variable, add it to the
744 REFERENCED_VARS array and annotate it with attributes that are
745 intrinsic to the variable. */
747 *slot
= (void *) var
;
749 referenced_var_insert (DECL_UID (var
), var
);
751 /* Tag's don't have DECL_INITIAL. */
755 /* Scan DECL_INITIAL for pointer variables as they may contain
756 address arithmetic referencing the address of other
758 if (DECL_INITIAL (var
)
759 /* Initializers of external variables are not useful to the
761 && !DECL_EXTERNAL (var
)
762 /* It's not necessary to walk the initial value of non-constant
763 variables because it cannot be propagated by the
765 && (TREE_CONSTANT (var
) || TREE_READONLY (var
)))
766 walk_tree (&DECL_INITIAL (var
), find_vars_r
, walk_state
, 0);
771 /* Return the virtual variable associated to the non-scalar variable VAR. */
774 get_virtual_var (tree var
)
778 if (TREE_CODE (var
) == SSA_NAME
)
779 var
= SSA_NAME_VAR (var
);
781 while (TREE_CODE (var
) == REALPART_EXPR
|| TREE_CODE (var
) == IMAGPART_EXPR
782 || handled_component_p (var
))
783 var
= TREE_OPERAND (var
, 0);
785 /* Treating GIMPLE registers as virtual variables makes no sense.
786 Also complain if we couldn't extract a _DECL out of the original
788 gcc_assert (SSA_VAR_P (var
));
789 gcc_assert (!is_gimple_reg (var
));
794 /* Add a temporary variable to REFERENCED_VARS. This is similar to
795 add_referenced_var, but is used by passes that need to add new temps to
796 the REFERENCED_VARS array after the program has been scanned for
797 variables. The variable will just receive a new UID and be added
798 to the REFERENCED_VARS array without checking for duplicates. */
801 add_referenced_tmp_var (tree var
)
803 add_referenced_var (var
, NULL
);
807 /* Mark all the non-SSA variables found in STMT's operands to be
808 processed by update_ssa. */
811 mark_new_vars_to_rename (tree stmt
)
815 bitmap vars_in_vops_to_rename
;
816 bool found_exposed_symbol
= false;
817 int v_may_defs_before
, v_may_defs_after
;
818 int v_must_defs_before
, v_must_defs_after
;
820 if (TREE_CODE (stmt
) == PHI_NODE
)
824 vars_in_vops_to_rename
= BITMAP_ALLOC (NULL
);
826 /* Before re-scanning the statement for operands, mark the existing
827 virtual operands to be renamed again. We do this because when new
828 symbols are exposed, the virtual operands that were here before due to
829 aliasing will probably be removed by the call to get_stmt_operand.
830 Therefore, we need to flag them to be renamed beforehand.
832 We flag them in a separate bitmap because we don't really want to
833 rename them if there are not any newly exposed symbols in the
834 statement operands. */
835 v_may_defs_before
= NUM_SSA_OPERANDS (stmt
, SSA_OP_VMAYDEF
);
836 v_must_defs_before
= NUM_SSA_OPERANDS (stmt
, SSA_OP_VMUSTDEF
);
838 FOR_EACH_SSA_TREE_OPERAND (val
, stmt
, iter
,
839 SSA_OP_VMAYDEF
| SSA_OP_VUSE
| SSA_OP_VMUSTDEF
)
842 val
= SSA_NAME_VAR (val
);
843 bitmap_set_bit (vars_in_vops_to_rename
, DECL_UID (val
));
846 /* Now force an operand re-scan on the statement and mark any newly
847 exposed variables. */
850 v_may_defs_after
= NUM_SSA_OPERANDS (stmt
, SSA_OP_VMAYDEF
);
851 v_must_defs_after
= NUM_SSA_OPERANDS (stmt
, SSA_OP_VMUSTDEF
);
853 FOR_EACH_SSA_TREE_OPERAND (val
, stmt
, iter
, SSA_OP_ALL_OPERANDS
)
856 found_exposed_symbol
= true;
857 mark_sym_for_renaming (val
);
860 /* If we found any newly exposed symbols, or if there are fewer VDEF
861 operands in the statement, add the variables we had set in
862 VARS_IN_VOPS_TO_RENAME to VARS_TO_RENAME. We need to check for
863 vanishing VDEFs because in those cases, the names that were formerly
864 generated by this statement are not going to be available anymore. */
865 if (found_exposed_symbol
866 || v_may_defs_before
> v_may_defs_after
867 || v_must_defs_before
> v_must_defs_after
)
868 mark_set_for_renaming (vars_in_vops_to_rename
);
870 BITMAP_FREE (vars_in_vops_to_rename
);
873 /* Find all variables within the gimplified statement that were not previously
874 visible to the function and add them to the referenced variables list. */
877 find_new_referenced_vars_1 (tree
*tp
, int *walk_subtrees
,
878 void *data ATTRIBUTE_UNUSED
)
882 if (TREE_CODE (t
) == VAR_DECL
&& !var_ann (t
))
884 add_referenced_tmp_var (t
);
885 mark_sym_for_renaming (t
);
888 if (IS_TYPE_OR_DECL_P (t
))
895 find_new_referenced_vars (tree
*stmt_p
)
897 walk_tree (stmt_p
, find_new_referenced_vars_1
, NULL
, NULL
);
901 /* If REF is a handled component reference for a structure, return the
902 base variable. The access range is delimited by bit positions *POFFSET and
903 *POFFSET + *PMAX_SIZE. The access size is *PSIZE bits. If either
904 *PSIZE or *PMAX_SIZE is -1, they could not be determined. If *PSIZE
905 and *PMAX_SIZE are equal, the access is non-variable. */
908 get_ref_base_and_extent (tree exp
, HOST_WIDE_INT
*poffset
,
909 HOST_WIDE_INT
*psize
,
910 HOST_WIDE_INT
*pmax_size
)
912 HOST_WIDE_INT bitsize
= -1;
913 HOST_WIDE_INT maxsize
= -1;
914 tree size_tree
= NULL_TREE
;
915 tree bit_offset
= bitsize_zero_node
;
917 gcc_assert (!SSA_VAR_P (exp
));
919 /* First get the final access size from just the outermost expression. */
920 if (TREE_CODE (exp
) == COMPONENT_REF
)
921 size_tree
= DECL_SIZE (TREE_OPERAND (exp
, 1));
922 else if (TREE_CODE (exp
) == BIT_FIELD_REF
)
923 size_tree
= TREE_OPERAND (exp
, 1);
926 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (exp
));
928 size_tree
= TYPE_SIZE (TREE_TYPE (exp
));
930 bitsize
= GET_MODE_BITSIZE (mode
);
932 if (size_tree
!= NULL_TREE
)
934 if (! host_integerp (size_tree
, 1))
937 bitsize
= TREE_INT_CST_LOW (size_tree
);
940 /* Initially, maxsize is the same as the accessed element size.
941 In the following it will only grow (or become -1). */
944 /* Compute cumulative bit-offset for nested component-refs and array-refs,
945 and find the ultimate containing object. */
948 switch (TREE_CODE (exp
))
951 bit_offset
= size_binop (PLUS_EXPR
, bit_offset
,
952 TREE_OPERAND (exp
, 2));
957 tree field
= TREE_OPERAND (exp
, 1);
958 tree this_offset
= component_ref_field_offset (exp
);
960 if (this_offset
&& TREE_CODE (this_offset
) == INTEGER_CST
)
962 this_offset
= size_binop (MULT_EXPR
,
963 fold_convert (bitsizetype
,
966 bit_offset
= size_binop (PLUS_EXPR
,
967 bit_offset
, this_offset
);
968 bit_offset
= size_binop (PLUS_EXPR
, bit_offset
,
969 DECL_FIELD_BIT_OFFSET (field
));
973 tree csize
= TYPE_SIZE (TREE_TYPE (TREE_OPERAND (exp
, 0)));
974 /* We need to adjust maxsize to the whole structure bitsize.
975 But we can subtract any constant offset seen sofar,
976 because that would get us out of the structure otherwise. */
978 && csize
&& host_integerp (csize
, 1))
980 maxsize
= (TREE_INT_CST_LOW (csize
)
981 - TREE_INT_CST_LOW (bit_offset
));
990 case ARRAY_RANGE_REF
:
992 tree index
= TREE_OPERAND (exp
, 1);
993 tree low_bound
= array_ref_low_bound (exp
);
994 tree unit_size
= array_ref_element_size (exp
);
996 if (! integer_zerop (low_bound
))
997 index
= fold_build2 (MINUS_EXPR
, TREE_TYPE (index
),
999 index
= size_binop (MULT_EXPR
,
1000 fold_convert (sizetype
, index
), unit_size
);
1001 if (TREE_CODE (index
) == INTEGER_CST
)
1003 index
= size_binop (MULT_EXPR
,
1004 fold_convert (bitsizetype
, index
),
1006 bit_offset
= size_binop (PLUS_EXPR
, bit_offset
, index
);
1010 tree asize
= TYPE_SIZE (TREE_TYPE (TREE_OPERAND (exp
, 0)));
1011 /* We need to adjust maxsize to the whole array bitsize.
1012 But we can subtract any constant offset seen sofar,
1013 because that would get us outside of the array otherwise. */
1015 && asize
&& host_integerp (asize
, 1))
1017 maxsize
= (TREE_INT_CST_LOW (asize
)
1018 - TREE_INT_CST_LOW (bit_offset
));
1030 bit_offset
= size_binop (PLUS_EXPR
, bit_offset
,
1031 bitsize_int (bitsize
));
1034 case VIEW_CONVERT_EXPR
:
1035 /* ??? We probably should give up here and bail out. */
1042 exp
= TREE_OPERAND (exp
, 0);
1046 /* ??? Due to negative offsets in ARRAY_REF we can end up with
1047 negative bit_offset here. We might want to store a zero offset
1049 *poffset
= TREE_INT_CST_LOW (bit_offset
);
1051 *pmax_size
= maxsize
;