1 /* Miscellaneous SSA utility functions.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2008 Free Software
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 3, 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 COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
30 #include "langhooks.h"
31 #include "hard-reg-set.h"
32 #include "basic-block.h"
36 #include "diagnostic.h"
38 #include "pointer-set.h"
39 #include "tree-flow.h"
41 #include "tree-inline.h"
45 #include "tree-dump.h"
46 #include "tree-pass.h"
49 /* Pointer map of variable mappings, keyed by edge. */
50 static struct pointer_map_t
*edge_var_maps
;
53 /* Add a mapping with PHI RESULT and PHI DEF associated with edge E. */
56 redirect_edge_var_map_add (edge e
, tree result
, tree def
)
59 edge_var_map_vector old_head
, head
;
60 edge_var_map new_node
;
62 if (edge_var_maps
== NULL
)
63 edge_var_maps
= pointer_map_create ();
65 slot
= pointer_map_insert (edge_var_maps
, e
);
66 old_head
= head
= (edge_var_map_vector
) *slot
;
69 head
= VEC_alloc (edge_var_map
, heap
, 5);
73 new_node
.result
= result
;
75 VEC_safe_push (edge_var_map
, heap
, head
, &new_node
);
78 /* The push did some reallocation. Update the pointer map. */
84 /* Clear the var mappings in edge E. */
87 redirect_edge_var_map_clear (edge e
)
90 edge_var_map_vector head
;
95 slot
= pointer_map_contains (edge_var_maps
, e
);
99 head
= (edge_var_map_vector
) *slot
;
100 VEC_free (edge_var_map
, heap
, head
);
106 /* Duplicate the redirected var mappings in OLDE in NEWE.
108 Since we can't remove a mapping, let's just duplicate it. This assumes a
109 pointer_map can have multiple edges mapping to the same var_map (many to
110 one mapping), since we don't remove the previous mappings. */
113 redirect_edge_var_map_dup (edge newe
, edge olde
)
115 void **new_slot
, **old_slot
;
116 edge_var_map_vector head
;
121 new_slot
= pointer_map_insert (edge_var_maps
, newe
);
122 old_slot
= pointer_map_contains (edge_var_maps
, olde
);
125 head
= (edge_var_map_vector
) *old_slot
;
128 *new_slot
= VEC_copy (edge_var_map
, heap
, head
);
130 *new_slot
= VEC_alloc (edge_var_map
, heap
, 5);
134 /* Return the variable mappings for a given edge. If there is none, return
138 redirect_edge_var_map_vector (edge e
)
142 /* Hey, what kind of idiot would... you'd be surprised. */
146 slot
= pointer_map_contains (edge_var_maps
, e
);
150 return (edge_var_map_vector
) *slot
;
153 /* Used by redirect_edge_var_map_destroy to free all memory. */
156 free_var_map_entry (const void *key ATTRIBUTE_UNUSED
,
158 void *data ATTRIBUTE_UNUSED
)
160 edge_var_map_vector head
= (edge_var_map_vector
) *value
;
161 VEC_free (edge_var_map
, heap
, head
);
165 /* Clear the edge variable mappings. */
168 redirect_edge_var_map_destroy (void)
172 pointer_map_traverse (edge_var_maps
, free_var_map_entry
, NULL
);
173 pointer_map_destroy (edge_var_maps
);
174 edge_var_maps
= NULL
;
179 /* Remove the corresponding arguments from the PHI nodes in E's
180 destination block and redirect it to DEST. Return redirected edge.
181 The list of removed arguments is stored in a vector accessed
182 through edge_var_maps. */
185 ssa_redirect_edge (edge e
, basic_block dest
)
187 gimple_stmt_iterator gsi
;
190 redirect_edge_var_map_clear (e
);
192 /* Remove the appropriate PHI arguments in E's destination block. */
193 for (gsi
= gsi_start_phis (e
->dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
197 phi
= gsi_stmt (gsi
);
198 def
= gimple_phi_arg_def (phi
, e
->dest_idx
);
200 if (def
== NULL_TREE
)
203 redirect_edge_var_map_add (e
, gimple_phi_result (phi
), def
);
206 e
= redirect_edge_succ_nodup (e
, dest
);
212 /* Add PHI arguments queued in PENDING_STMT list on edge E to edge
216 flush_pending_stmts (edge e
)
219 edge_var_map_vector v
;
222 gimple_stmt_iterator gsi
;
224 v
= redirect_edge_var_map_vector (e
);
228 for (gsi
= gsi_start_phis (e
->dest
), i
= 0;
229 !gsi_end_p (gsi
) && VEC_iterate (edge_var_map
, v
, i
, vm
);
230 gsi_next (&gsi
), i
++)
234 phi
= gsi_stmt (gsi
);
235 def
= redirect_edge_var_map_def (vm
);
236 add_phi_arg (phi
, def
, e
);
239 redirect_edge_var_map_clear (e
);
242 /* Return true if SSA_NAME is malformed and mark it visited.
244 IS_VIRTUAL is true if this SSA_NAME was found inside a virtual
248 verify_ssa_name (tree ssa_name
, bool is_virtual
)
250 if (TREE_CODE (ssa_name
) != SSA_NAME
)
252 error ("expected an SSA_NAME object");
256 if (TREE_TYPE (ssa_name
) != TREE_TYPE (SSA_NAME_VAR (ssa_name
)))
258 error ("type mismatch between an SSA_NAME and its symbol");
262 if (SSA_NAME_IN_FREE_LIST (ssa_name
))
264 error ("found an SSA_NAME that had been released into the free pool");
268 if (is_virtual
&& is_gimple_reg (ssa_name
))
270 error ("found a virtual definition for a GIMPLE register");
274 if (!is_virtual
&& !is_gimple_reg (ssa_name
))
276 error ("found a real definition for a non-register");
280 if (SSA_NAME_IS_DEFAULT_DEF (ssa_name
)
281 && !gimple_nop_p (SSA_NAME_DEF_STMT (ssa_name
)))
283 error ("found a default name with a non-empty defining statement");
291 /* Return true if the definition of SSA_NAME at block BB is malformed.
293 STMT is the statement where SSA_NAME is created.
295 DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
296 version numbers. If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
297 it means that the block in that array slot contains the
298 definition of SSA_NAME.
300 IS_VIRTUAL is true if SSA_NAME is created by a VDEF. */
303 verify_def (basic_block bb
, basic_block
*definition_block
, tree ssa_name
,
304 gimple stmt
, bool is_virtual
)
306 if (verify_ssa_name (ssa_name
, is_virtual
))
309 if (definition_block
[SSA_NAME_VERSION (ssa_name
)])
311 error ("SSA_NAME created in two different blocks %i and %i",
312 definition_block
[SSA_NAME_VERSION (ssa_name
)]->index
, bb
->index
);
316 definition_block
[SSA_NAME_VERSION (ssa_name
)] = bb
;
318 if (SSA_NAME_DEF_STMT (ssa_name
) != stmt
)
320 error ("SSA_NAME_DEF_STMT is wrong");
321 fprintf (stderr
, "Expected definition statement:\n");
322 print_gimple_stmt (stderr
, SSA_NAME_DEF_STMT (ssa_name
), 4, TDF_VOPS
);
323 fprintf (stderr
, "\nActual definition statement:\n");
324 print_gimple_stmt (stderr
, stmt
, 4, TDF_VOPS
);
331 fprintf (stderr
, "while verifying SSA_NAME ");
332 print_generic_expr (stderr
, ssa_name
, 0);
333 fprintf (stderr
, " in statement\n");
334 print_gimple_stmt (stderr
, stmt
, 4, TDF_VOPS
);
340 /* Return true if the use of SSA_NAME at statement STMT in block BB is
343 DEF_BB is the block where SSA_NAME was found to be created.
345 IDOM contains immediate dominator information for the flowgraph.
347 CHECK_ABNORMAL is true if the caller wants to check whether this use
348 is flowing through an abnormal edge (only used when checking PHI
351 If NAMES_DEFINED_IN_BB is not NULL, it contains a bitmap of ssa names
352 that are defined before STMT in basic block BB. */
355 verify_use (basic_block bb
, basic_block def_bb
, use_operand_p use_p
,
356 gimple stmt
, bool check_abnormal
, bitmap names_defined_in_bb
)
359 tree ssa_name
= USE_FROM_PTR (use_p
);
361 if (!TREE_VISITED (ssa_name
))
362 if (verify_imm_links (stderr
, ssa_name
))
365 TREE_VISITED (ssa_name
) = 1;
367 if (gimple_nop_p (SSA_NAME_DEF_STMT (ssa_name
))
368 && SSA_NAME_IS_DEFAULT_DEF (ssa_name
))
369 ; /* Default definitions have empty statements. Nothing to do. */
372 error ("missing definition");
375 else if (bb
!= def_bb
376 && !dominated_by_p (CDI_DOMINATORS
, bb
, def_bb
))
378 error ("definition in block %i does not dominate use in block %i",
379 def_bb
->index
, bb
->index
);
382 else if (bb
== def_bb
383 && names_defined_in_bb
!= NULL
384 && !bitmap_bit_p (names_defined_in_bb
, SSA_NAME_VERSION (ssa_name
)))
386 error ("definition in block %i follows the use", def_bb
->index
);
391 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssa_name
))
393 error ("SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set");
397 /* Make sure the use is in an appropriate list by checking the previous
398 element to make sure it's the same. */
399 if (use_p
->prev
== NULL
)
401 error ("no immediate_use list");
407 if (use_p
->prev
->use
== NULL
)
408 listvar
= use_p
->prev
->loc
.ssa_name
;
410 listvar
= USE_FROM_PTR (use_p
->prev
);
411 if (listvar
!= ssa_name
)
413 error ("wrong immediate use list");
420 fprintf (stderr
, "for SSA_NAME: ");
421 print_generic_expr (stderr
, ssa_name
, TDF_VOPS
);
422 fprintf (stderr
, " in statement:\n");
423 print_gimple_stmt (stderr
, stmt
, 0, TDF_VOPS
);
430 /* Return true if any of the arguments for PHI node PHI at block BB is
433 DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
434 version numbers. If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
435 it means that the block in that array slot contains the
436 definition of SSA_NAME. */
439 verify_phi_args (gimple phi
, basic_block bb
, basic_block
*definition_block
)
443 size_t i
, phi_num_args
= gimple_phi_num_args (phi
);
445 if (EDGE_COUNT (bb
->preds
) != phi_num_args
)
447 error ("incoming edge count does not match number of PHI arguments");
452 for (i
= 0; i
< phi_num_args
; i
++)
454 use_operand_p op_p
= gimple_phi_arg_imm_use_ptr (phi
, i
);
455 tree op
= USE_FROM_PTR (op_p
);
457 e
= EDGE_PRED (bb
, i
);
461 error ("PHI argument is missing for edge %d->%d",
468 if (TREE_CODE (op
) != SSA_NAME
&& !is_gimple_min_invariant (op
))
470 error ("PHI argument is not SSA_NAME, or invariant");
474 if (TREE_CODE (op
) == SSA_NAME
)
476 err
= verify_ssa_name (op
, !is_gimple_reg (gimple_phi_result (phi
)));
477 err
|= verify_use (e
->src
, definition_block
[SSA_NAME_VERSION (op
)],
478 op_p
, phi
, e
->flags
& EDGE_ABNORMAL
, NULL
);
483 error ("wrong edge %d->%d for PHI argument",
484 e
->src
->index
, e
->dest
->index
);
490 fprintf (stderr
, "PHI argument\n");
491 print_generic_stmt (stderr
, op
, TDF_VOPS
);
499 fprintf (stderr
, "for PHI node\n");
500 print_gimple_stmt (stderr
, phi
, 0, TDF_VOPS
|TDF_MEMSYMS
);
509 verify_flow_insensitive_alias_info (void)
512 referenced_var_iterator rvi
;
514 FOR_EACH_REFERENCED_VAR (var
, rvi
)
521 if (!MTAG_P (var
) || !MTAG_ALIASES (var
))
524 aliases
= MTAG_ALIASES (var
);
526 EXECUTE_IF_SET_IN_BITMAP (aliases
, 0, j
, bi
)
528 alias
= referenced_var (j
);
530 if (TREE_CODE (alias
) != MEMORY_PARTITION_TAG
531 && !may_be_aliased (alias
))
533 error ("non-addressable variable inside an alias set");
534 debug_variable (alias
);
543 debug_variable (var
);
544 internal_error ("verify_flow_insensitive_alias_info failed");
549 verify_flow_sensitive_alias_info (void)
554 for (i
= 1; i
< num_ssa_names
; i
++)
558 struct ptr_info_def
*pi
;
565 /* We only care for pointers that are actually referenced in the
567 if (!POINTER_TYPE_P (TREE_TYPE (ptr
)) || !TREE_VISITED (ptr
))
570 /* RESULT_DECL is special. If it's a GIMPLE register, then it
571 is only written-to only once in the return statement.
572 Otherwise, aggregate RESULT_DECLs may be written-to more than
573 once in virtual operands. */
574 var
= SSA_NAME_VAR (ptr
);
575 if (TREE_CODE (var
) == RESULT_DECL
576 && is_gimple_reg (ptr
))
579 pi
= SSA_NAME_PTR_INFO (ptr
);
584 if (pi
->memory_tag_needed
&& !pi
->name_mem_tag
&& !ann
->symbol_mem_tag
)
586 error ("dereferenced pointers should have a name or a symbol tag");
591 && (pi
->pt_vars
== NULL
|| bitmap_empty_p (pi
->pt_vars
)))
593 error ("pointers with a memory tag, should have points-to sets");
597 if (pi
->value_escapes_p
598 && pi
->escape_mask
& ~ESCAPE_TO_RETURN
601 tree t
= memory_partition (pi
->name_mem_tag
);
603 t
= pi
->name_mem_tag
;
605 if (!is_call_clobbered (t
))
607 error ("pointer escapes but its name tag is not call-clobbered");
616 debug_variable (ptr
);
617 internal_error ("verify_flow_sensitive_alias_info failed");
621 /* Verify the consistency of call clobbering information. */
624 verify_call_clobbering (void)
629 referenced_var_iterator rvi
;
631 /* At all times, the result of the call_clobbered flag should
632 match the result of the call_clobbered_vars bitmap. Verify both
633 that everything in call_clobbered_vars is marked
634 call_clobbered, and that everything marked
635 call_clobbered is in call_clobbered_vars. */
636 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun
), 0, i
, bi
)
638 var
= referenced_var (i
);
640 if (memory_partition (var
))
641 var
= memory_partition (var
);
643 if (!MTAG_P (var
) && !var_ann (var
)->call_clobbered
)
645 error ("variable in call_clobbered_vars but not marked "
647 debug_variable (var
);
652 FOR_EACH_REFERENCED_VAR (var
, rvi
)
654 if (is_gimple_reg (var
))
657 if (memory_partition (var
))
658 var
= memory_partition (var
);
661 && var_ann (var
)->call_clobbered
662 && !bitmap_bit_p (gimple_call_clobbered_vars (cfun
), DECL_UID (var
)))
664 error ("variable marked call_clobbered but not in "
665 "call_clobbered_vars bitmap.");
666 debug_variable (var
);
674 internal_error ("verify_call_clobbering failed");
678 /* Verify invariants in memory partitions. */
681 verify_memory_partitions (void)
685 VEC(tree
,heap
) *mpt_table
= gimple_ssa_operands (cfun
)->mpt_table
;
686 struct pointer_set_t
*partitioned_syms
= pointer_set_create ();
688 for (i
= 0; VEC_iterate (tree
, mpt_table
, i
, mpt
); i
++)
693 if (MPT_SYMBOLS (mpt
) == NULL
)
695 error ("Memory partitions should have at least one symbol");
696 debug_variable (mpt
);
700 EXECUTE_IF_SET_IN_BITMAP (MPT_SYMBOLS (mpt
), 0, j
, bj
)
702 tree var
= referenced_var (j
);
703 if (pointer_set_insert (partitioned_syms
, var
))
705 error ("Partitioned symbols should belong to exactly one "
707 debug_variable (var
);
713 pointer_set_destroy (partitioned_syms
);
718 internal_error ("verify_memory_partitions failed");
722 /* Verify the consistency of aliasing information. */
725 verify_alias_info (void)
727 verify_flow_sensitive_alias_info ();
728 verify_call_clobbering ();
729 verify_flow_insensitive_alias_info ();
730 verify_memory_partitions ();
734 /* Verify common invariants in the SSA web.
735 TODO: verify the variable annotations. */
738 verify_ssa (bool check_modified_stmt
)
742 basic_block
*definition_block
= XCNEWVEC (basic_block
, num_ssa_names
);
745 enum dom_state orig_dom_state
= dom_info_state (CDI_DOMINATORS
);
746 bitmap names_defined_in_bb
= BITMAP_ALLOC (NULL
);
748 gcc_assert (!need_ssa_update_p ());
752 timevar_push (TV_TREE_SSA_VERIFY
);
754 /* Keep track of SSA names present in the IL. */
755 for (i
= 1; i
< num_ssa_names
; i
++)
757 tree name
= ssa_name (i
);
761 TREE_VISITED (name
) = 0;
763 stmt
= SSA_NAME_DEF_STMT (name
);
764 if (!gimple_nop_p (stmt
))
766 basic_block bb
= gimple_bb (stmt
);
767 verify_def (bb
, definition_block
,
768 name
, stmt
, !is_gimple_reg (name
));
774 calculate_dominance_info (CDI_DOMINATORS
);
776 /* Now verify all the uses and make sure they agree with the definitions
777 found in the previous pass. */
783 gimple_stmt_iterator gsi
;
785 /* Make sure that all edges have a clear 'aux' field. */
786 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
790 error ("AUX pointer initialized for edge %d->%d", e
->src
->index
,
796 /* Verify the arguments for every PHI node in the block. */
797 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
799 phi
= gsi_stmt (gsi
);
800 if (verify_phi_args (phi
, bb
, definition_block
))
803 bitmap_set_bit (names_defined_in_bb
,
804 SSA_NAME_VERSION (gimple_phi_result (phi
)));
807 /* Now verify all the uses and vuses in every statement of the block. */
808 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
810 gimple stmt
= gsi_stmt (gsi
);
813 if (check_modified_stmt
&& gimple_modified_p (stmt
))
815 error ("stmt (%p) marked modified after optimization pass: ",
817 print_gimple_stmt (stderr
, stmt
, 0, TDF_VOPS
);
821 if (is_gimple_assign (stmt
)
822 && TREE_CODE (gimple_assign_lhs (stmt
)) != SSA_NAME
)
824 tree lhs
, base_address
;
826 lhs
= gimple_assign_lhs (stmt
);
827 base_address
= get_base_address (lhs
);
830 && gimple_aliases_computed_p (cfun
)
831 && SSA_VAR_P (base_address
)
832 && !gimple_has_volatile_ops (stmt
)
833 && ZERO_SSA_OPERANDS (stmt
, SSA_OP_VDEF
))
835 error ("statement makes a memory store, but has no VDEFS");
836 print_gimple_stmt (stderr
, stmt
, 0, TDF_VOPS
);
841 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_ALL_VIRTUALS
)
843 if (verify_ssa_name (op
, true))
845 error ("in statement");
846 print_gimple_stmt (stderr
, stmt
, 0, TDF_VOPS
|TDF_MEMSYMS
);
851 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_USE
|SSA_OP_DEF
)
853 if (verify_ssa_name (op
, false))
855 error ("in statement");
856 print_gimple_stmt (stderr
, stmt
, 0, TDF_VOPS
|TDF_MEMSYMS
);
861 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_USE
|SSA_OP_VUSE
)
863 op
= USE_FROM_PTR (use_p
);
864 if (verify_use (bb
, definition_block
[SSA_NAME_VERSION (op
)],
865 use_p
, stmt
, false, names_defined_in_bb
))
869 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_ALL_DEFS
)
870 bitmap_set_bit (names_defined_in_bb
, SSA_NAME_VERSION (op
));
873 bitmap_clear (names_defined_in_bb
);
876 /* Finally, verify alias information. */
877 if (gimple_aliases_computed_p (cfun
))
878 verify_alias_info ();
880 free (definition_block
);
882 /* Restore the dominance information to its prior known state, so
883 that we do not perturb the compiler's subsequent behavior. */
884 if (orig_dom_state
== DOM_NONE
)
885 free_dominance_info (CDI_DOMINATORS
);
887 set_dom_info_availability (CDI_DOMINATORS
, orig_dom_state
);
889 BITMAP_FREE (names_defined_in_bb
);
890 timevar_pop (TV_TREE_SSA_VERIFY
);
894 internal_error ("verify_ssa failed");
897 /* Return true if the uid in both int tree maps are equal. */
900 int_tree_map_eq (const void *va
, const void *vb
)
902 const struct int_tree_map
*a
= (const struct int_tree_map
*) va
;
903 const struct int_tree_map
*b
= (const struct int_tree_map
*) vb
;
904 return (a
->uid
== b
->uid
);
907 /* Hash a UID in a int_tree_map. */
910 int_tree_map_hash (const void *item
)
912 return ((const struct int_tree_map
*)item
)->uid
;
915 /* Return true if the DECL_UID in both trees are equal. */
918 uid_decl_map_eq (const void *va
, const void *vb
)
920 const_tree a
= (const_tree
) va
;
921 const_tree b
= (const_tree
) vb
;
922 return (a
->decl_minimal
.uid
== b
->decl_minimal
.uid
);
925 /* Hash a tree in a uid_decl_map. */
928 uid_decl_map_hash (const void *item
)
930 return ((const_tree
)item
)->decl_minimal
.uid
;
933 /* Return true if the DECL_UID in both trees are equal. */
936 uid_ssaname_map_eq (const void *va
, const void *vb
)
938 const_tree a
= (const_tree
) va
;
939 const_tree b
= (const_tree
) vb
;
940 return (a
->ssa_name
.var
->decl_minimal
.uid
== b
->ssa_name
.var
->decl_minimal
.uid
);
943 /* Hash a tree in a uid_decl_map. */
946 uid_ssaname_map_hash (const void *item
)
948 return ((const_tree
)item
)->ssa_name
.var
->decl_minimal
.uid
;
952 /* Initialize global DFA and SSA structures. */
955 init_tree_ssa (struct function
*fn
)
957 fn
->gimple_df
= GGC_CNEW (struct gimple_df
);
958 fn
->gimple_df
->referenced_vars
= htab_create_ggc (20, uid_decl_map_hash
,
959 uid_decl_map_eq
, NULL
);
960 fn
->gimple_df
->default_defs
= htab_create_ggc (20, uid_ssaname_map_hash
,
961 uid_ssaname_map_eq
, NULL
);
962 fn
->gimple_df
->call_clobbered_vars
= BITMAP_GGC_ALLOC ();
963 fn
->gimple_df
->call_used_vars
= BITMAP_GGC_ALLOC ();
964 fn
->gimple_df
->addressable_vars
= BITMAP_GGC_ALLOC ();
965 init_ssanames (fn
, 0);
970 /* Deallocate memory associated with SSA data structures for FNDECL. */
973 delete_tree_ssa (void)
977 gimple_stmt_iterator gsi
;
978 referenced_var_iterator rvi
;
981 /* Release any ssa_names still in use. */
982 for (i
= 0; i
< num_ssa_names
; i
++)
984 tree var
= ssa_name (i
);
985 if (var
&& TREE_CODE (var
) == SSA_NAME
)
987 SSA_NAME_IMM_USE_NODE (var
).prev
= &(SSA_NAME_IMM_USE_NODE (var
));
988 SSA_NAME_IMM_USE_NODE (var
).next
= &(SSA_NAME_IMM_USE_NODE (var
));
990 release_ssa_name (var
);
993 /* FIXME. This may not be necessary. We will release all this
994 memory en masse in free_ssa_operands. This clearing used to be
995 necessary to avoid problems with the inliner, but it may not be
999 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1001 gimple stmt
= gsi_stmt (gsi
);
1003 if (gimple_has_ops (stmt
))
1005 gimple_set_def_ops (stmt
, NULL
);
1006 gimple_set_use_ops (stmt
, NULL
);
1007 gimple_set_addresses_taken (stmt
, NULL
);
1010 if (gimple_has_mem_ops (stmt
))
1012 gimple_set_vdef_ops (stmt
, NULL
);
1013 gimple_set_vuse_ops (stmt
, NULL
);
1014 BITMAP_FREE (stmt
->gsmem
.membase
.stores
);
1015 BITMAP_FREE (stmt
->gsmem
.membase
.loads
);
1018 gimple_set_modified (stmt
, true);
1020 set_phi_nodes (bb
, NULL
);
1023 /* Remove annotations from every referenced local variable. */
1024 FOR_EACH_REFERENCED_VAR (var
, rvi
)
1027 && (TREE_STATIC (var
) || DECL_EXTERNAL (var
)))
1029 var_ann (var
)->mpt
= NULL_TREE
;
1030 var_ann (var
)->symbol_mem_tag
= NULL_TREE
;
1034 ggc_free (var
->base
.ann
);
1035 var
->base
.ann
= NULL
;
1037 htab_delete (gimple_referenced_vars (cfun
));
1038 cfun
->gimple_df
->referenced_vars
= NULL
;
1043 /* We no longer maintain the SSA operand cache at this point. */
1044 if (ssa_operands_active ())
1045 fini_ssa_operands ();
1047 cfun
->gimple_df
->global_var
= NULL_TREE
;
1049 htab_delete (cfun
->gimple_df
->default_defs
);
1050 cfun
->gimple_df
->default_defs
= NULL
;
1051 cfun
->gimple_df
->call_clobbered_vars
= NULL
;
1052 cfun
->gimple_df
->call_used_vars
= NULL
;
1053 cfun
->gimple_df
->addressable_vars
= NULL
;
1054 cfun
->gimple_df
->modified_noreturn_calls
= NULL
;
1055 if (gimple_aliases_computed_p (cfun
))
1057 delete_alias_heapvars ();
1058 gcc_assert (!need_ssa_update_p ());
1060 cfun
->gimple_df
->aliases_computed_p
= false;
1061 delete_mem_ref_stats (cfun
);
1063 cfun
->gimple_df
= NULL
;
1065 /* We no longer need the edge variable maps. */
1066 redirect_edge_var_map_destroy ();
1069 /* Helper function for useless_type_conversion_p. */
1072 useless_type_conversion_p_1 (tree outer_type
, tree inner_type
)
1074 /* Qualifiers on value types do not matter. */
1075 inner_type
= TYPE_MAIN_VARIANT (inner_type
);
1076 outer_type
= TYPE_MAIN_VARIANT (outer_type
);
1078 if (inner_type
== outer_type
)
1081 /* If we know the canonical types, compare them. */
1082 if (TYPE_CANONICAL (inner_type
)
1083 && TYPE_CANONICAL (inner_type
) == TYPE_CANONICAL (outer_type
))
1086 /* Changes in machine mode are never useless conversions. */
1087 if (TYPE_MODE (inner_type
) != TYPE_MODE (outer_type
))
1090 /* If both the inner and outer types are integral types, then the
1091 conversion is not necessary if they have the same mode and
1092 signedness and precision, and both or neither are boolean. */
1093 if (INTEGRAL_TYPE_P (inner_type
)
1094 && INTEGRAL_TYPE_P (outer_type
))
1096 /* Preserve changes in signedness or precision. */
1097 if (TYPE_UNSIGNED (inner_type
) != TYPE_UNSIGNED (outer_type
)
1098 || TYPE_PRECISION (inner_type
) != TYPE_PRECISION (outer_type
))
1101 /* Conversions from a non-base to a base type are not useless.
1102 This way we preserve the invariant to do arithmetic in
1104 if (TREE_TYPE (inner_type
)
1105 && TREE_TYPE (inner_type
) != inner_type
1106 && (TREE_TYPE (outer_type
) == outer_type
1107 || TREE_TYPE (outer_type
) == NULL_TREE
))
1110 /* We don't need to preserve changes in the types minimum or
1111 maximum value in general as these do not generate code
1112 unless the types precisions are different. */
1117 /* Scalar floating point types with the same mode are compatible. */
1118 else if (SCALAR_FLOAT_TYPE_P (inner_type
)
1119 && SCALAR_FLOAT_TYPE_P (outer_type
))
1122 /* We need to take special care recursing to pointed-to types. */
1123 else if (POINTER_TYPE_P (inner_type
)
1124 && POINTER_TYPE_P (outer_type
))
1126 /* Don't lose casts between pointers to volatile and non-volatile
1127 qualified types. Doing so would result in changing the semantics
1128 of later accesses. */
1129 if ((TYPE_VOLATILE (TREE_TYPE (outer_type
))
1130 != TYPE_VOLATILE (TREE_TYPE (inner_type
)))
1131 && TYPE_VOLATILE (TREE_TYPE (outer_type
)))
1134 /* Do not lose casts between pointers with different
1135 TYPE_REF_CAN_ALIAS_ALL setting or alias sets. */
1136 if ((TYPE_REF_CAN_ALIAS_ALL (inner_type
)
1137 != TYPE_REF_CAN_ALIAS_ALL (outer_type
))
1138 || (get_alias_set (TREE_TYPE (inner_type
))
1139 != get_alias_set (TREE_TYPE (outer_type
))))
1142 /* We do not care for const qualification of the pointed-to types
1143 as const qualification has no semantic value to the middle-end. */
1145 /* Do not lose casts to restrict qualified pointers. */
1146 if ((TYPE_RESTRICT (outer_type
)
1147 != TYPE_RESTRICT (inner_type
))
1148 && TYPE_RESTRICT (outer_type
))
1151 /* Otherwise pointers/references are equivalent if their pointed
1152 to types are effectively the same. We can strip qualifiers
1153 on pointed-to types for further comparison, which is done in
1155 return useless_type_conversion_p_1 (TREE_TYPE (outer_type
),
1156 TREE_TYPE (inner_type
));
1159 /* Recurse for complex types. */
1160 else if (TREE_CODE (inner_type
) == COMPLEX_TYPE
1161 && TREE_CODE (outer_type
) == COMPLEX_TYPE
)
1162 return useless_type_conversion_p_1 (TREE_TYPE (outer_type
),
1163 TREE_TYPE (inner_type
));
1165 /* Recurse for vector types with the same number of subparts. */
1166 else if (TREE_CODE (inner_type
) == VECTOR_TYPE
1167 && TREE_CODE (outer_type
) == VECTOR_TYPE
1168 && TYPE_PRECISION (inner_type
) == TYPE_PRECISION (outer_type
))
1169 return useless_type_conversion_p_1 (TREE_TYPE (outer_type
),
1170 TREE_TYPE (inner_type
));
1172 /* For aggregates we may need to fall back to structural equality
1174 else if (AGGREGATE_TYPE_P (inner_type
)
1175 && AGGREGATE_TYPE_P (outer_type
))
1177 /* Different types of aggregates are incompatible. */
1178 if (TREE_CODE (inner_type
) != TREE_CODE (outer_type
))
1181 /* ??? This seems to be necessary even for aggregates that don't
1182 have TYPE_STRUCTURAL_EQUALITY_P set. */
1184 /* ??? This should eventually just return false. */
1185 return lang_hooks
.types_compatible_p (inner_type
, outer_type
);
1187 /* Also for functions and possibly other types with
1188 TYPE_STRUCTURAL_EQUALITY_P set. */
1189 else if (TYPE_STRUCTURAL_EQUALITY_P (inner_type
)
1190 && TYPE_STRUCTURAL_EQUALITY_P (outer_type
))
1191 return lang_hooks
.types_compatible_p (inner_type
, outer_type
);
1196 /* Return true if the conversion from INNER_TYPE to OUTER_TYPE is a
1197 useless type conversion, otherwise return false.
1199 This function implicitly defines the middle-end type system. With
1200 the notion of 'a < b' meaning that useless_type_conversion_p (a, b)
1201 holds and 'a > b' meaning that useless_type_conversion_p (b, a) holds,
1202 the following invariants shall be fulfilled:
1204 1) useless_type_conversion_p is transitive.
1205 If a < b and b < c then a < c.
1207 2) useless_type_conversion_p is not symmetric.
1208 From a < b does not follow a > b.
1210 3) Types define the available set of operations applicable to values.
1211 A type conversion is useless if the operations for the target type
1212 is a subset of the operations for the source type. For example
1213 casts to void* are useless, casts from void* are not (void* can't
1214 be dereferenced or offsetted, but copied, hence its set of operations
1215 is a strict subset of that of all other data pointer types). Casts
1216 to const T* are useless (can't be written to), casts from const T*
1220 useless_type_conversion_p (tree outer_type
, tree inner_type
)
1222 /* If the outer type is (void *), then the conversion is not
1223 necessary. We have to make sure to not apply this while
1224 recursing though. */
1225 if (POINTER_TYPE_P (inner_type
)
1226 && POINTER_TYPE_P (outer_type
)
1227 && TREE_CODE (TREE_TYPE (outer_type
)) == VOID_TYPE
)
1230 return useless_type_conversion_p_1 (outer_type
, inner_type
);
1233 /* Return true if a conversion from either type of TYPE1 and TYPE2
1234 to the other is not required. Otherwise return false. */
1237 types_compatible_p (tree type1
, tree type2
)
1239 return (type1
== type2
1240 || (useless_type_conversion_p (type1
, type2
)
1241 && useless_type_conversion_p (type2
, type1
)));
1244 /* Return true if EXPR is a useless type conversion, otherwise return
1248 tree_ssa_useless_type_conversion (tree expr
)
1250 /* If we have an assignment that merely uses a NOP_EXPR to change
1251 the top of the RHS to the type of the LHS and the type conversion
1252 is "safe", then strip away the type conversion so that we can
1253 enter LHS = RHS into the const_and_copies table. */
1254 if (CONVERT_EXPR_P (expr
)
1255 || TREE_CODE (expr
) == VIEW_CONVERT_EXPR
1256 || TREE_CODE (expr
) == NON_LVALUE_EXPR
)
1257 return useless_type_conversion_p
1259 TREE_TYPE (TREE_OPERAND (expr
, 0)));
1265 /* Internal helper for walk_use_def_chains. VAR, FN and DATA are as
1266 described in walk_use_def_chains.
1268 VISITED is a pointer set used to mark visited SSA_NAMEs to avoid
1269 infinite loops. We used to have a bitmap for this to just mark
1270 SSA versions we had visited. But non-sparse bitmaps are way too
1271 expensive, while sparse bitmaps may cause quadratic behavior.
1273 IS_DFS is true if the caller wants to perform a depth-first search
1274 when visiting PHI nodes. A DFS will visit each PHI argument and
1275 call FN after each one. Otherwise, all the arguments are
1276 visited first and then FN is called with each of the visited
1277 arguments in a separate pass. */
1280 walk_use_def_chains_1 (tree var
, walk_use_def_chains_fn fn
, void *data
,
1281 struct pointer_set_t
*visited
, bool is_dfs
)
1285 if (pointer_set_insert (visited
, var
))
1288 def_stmt
= SSA_NAME_DEF_STMT (var
);
1290 if (gimple_code (def_stmt
) != GIMPLE_PHI
)
1292 /* If we reached the end of the use-def chain, call FN. */
1293 return fn (var
, def_stmt
, data
);
1299 /* When doing a breadth-first search, call FN before following the
1300 use-def links for each argument. */
1302 for (i
= 0; i
< gimple_phi_num_args (def_stmt
); i
++)
1303 if (fn (gimple_phi_arg_def (def_stmt
, i
), def_stmt
, data
))
1306 /* Follow use-def links out of each PHI argument. */
1307 for (i
= 0; i
< gimple_phi_num_args (def_stmt
); i
++)
1309 tree arg
= gimple_phi_arg_def (def_stmt
, i
);
1311 /* ARG may be NULL for newly introduced PHI nodes. */
1313 && TREE_CODE (arg
) == SSA_NAME
1314 && walk_use_def_chains_1 (arg
, fn
, data
, visited
, is_dfs
))
1318 /* When doing a depth-first search, call FN after following the
1319 use-def links for each argument. */
1321 for (i
= 0; i
< gimple_phi_num_args (def_stmt
); i
++)
1322 if (fn (gimple_phi_arg_def (def_stmt
, i
), def_stmt
, data
))
1331 /* Walk use-def chains starting at the SSA variable VAR. Call
1332 function FN at each reaching definition found. FN takes three
1333 arguments: VAR, its defining statement (DEF_STMT) and a generic
1334 pointer to whatever state information that FN may want to maintain
1335 (DATA). FN is able to stop the walk by returning true, otherwise
1336 in order to continue the walk, FN should return false.
1338 Note, that if DEF_STMT is a PHI node, the semantics are slightly
1339 different. The first argument to FN is no longer the original
1340 variable VAR, but the PHI argument currently being examined. If FN
1341 wants to get at VAR, it should call PHI_RESULT (PHI).
1343 If IS_DFS is true, this function will:
1345 1- walk the use-def chains for all the PHI arguments, and,
1346 2- call (*FN) (ARG, PHI, DATA) on all the PHI arguments.
1348 If IS_DFS is false, the two steps above are done in reverse order
1349 (i.e., a breadth-first search). */
1352 walk_use_def_chains (tree var
, walk_use_def_chains_fn fn
, void *data
,
1357 gcc_assert (TREE_CODE (var
) == SSA_NAME
);
1359 def_stmt
= SSA_NAME_DEF_STMT (var
);
1361 /* We only need to recurse if the reaching definition comes from a PHI
1363 if (gimple_code (def_stmt
) != GIMPLE_PHI
)
1364 (*fn
) (var
, def_stmt
, data
);
1367 struct pointer_set_t
*visited
= pointer_set_create ();
1368 walk_use_def_chains_1 (var
, fn
, data
, visited
, is_dfs
);
1369 pointer_set_destroy (visited
);
1374 /* Return true if T, an SSA_NAME, has an undefined value. */
1377 ssa_undefined_value_p (tree t
)
1379 tree var
= SSA_NAME_VAR (t
);
1381 /* Parameters get their initial value from the function entry. */
1382 if (TREE_CODE (var
) == PARM_DECL
)
1385 /* Hard register variables get their initial value from the ether. */
1386 if (TREE_CODE (var
) == VAR_DECL
&& DECL_HARD_REGISTER (var
))
1389 /* The value is undefined iff its definition statement is empty. */
1390 return gimple_nop_p (SSA_NAME_DEF_STMT (t
));
1393 /* Emit warnings for uninitialized variables. This is done in two passes.
1395 The first pass notices real uses of SSA names with undefined values.
1396 Such uses are unconditionally uninitialized, and we can be certain that
1397 such a use is a mistake. This pass is run before most optimizations,
1398 so that we catch as many as we can.
1400 The second pass follows PHI nodes to find uses that are potentially
1401 uninitialized. In this case we can't necessarily prove that the use
1402 is really uninitialized. This pass is run after most optimizations,
1403 so that we thread as many jumps and possible, and delete as much dead
1404 code as possible, in order to reduce false positives. We also look
1405 again for plain uninitialized variables, since optimization may have
1406 changed conditionally uninitialized to unconditionally uninitialized. */
1408 /* Emit a warning for T, an SSA_NAME, being uninitialized. The exact
1409 warning text is in MSGID and LOCUS may contain a location or be null. */
1412 warn_uninit (tree t
, const char *gmsgid
, void *data
)
1414 tree var
= SSA_NAME_VAR (t
);
1415 gimple context
= (gimple
) data
;
1416 location_t location
;
1417 expanded_location xloc
, floc
;
1419 if (!ssa_undefined_value_p (t
))
1422 /* TREE_NO_WARNING either means we already warned, or the front end
1423 wishes to suppress the warning. */
1424 if (TREE_NO_WARNING (var
))
1427 /* Do not warn if it can be initialized outside this module. */
1428 if (is_global_var (var
))
1431 location
= (context
!= NULL
&& gimple_has_location (context
))
1432 ? gimple_location (context
)
1433 : DECL_SOURCE_LOCATION (var
);
1434 xloc
= expand_location (location
);
1435 floc
= expand_location (DECL_SOURCE_LOCATION (cfun
->decl
));
1436 if (warning_at (location
, OPT_Wuninitialized
, gmsgid
, var
))
1438 TREE_NO_WARNING (var
) = 1;
1440 if (xloc
.file
!= floc
.file
1441 || xloc
.line
< floc
.line
1442 || xloc
.line
> LOCATION_LINE (cfun
->function_end_locus
))
1443 inform (input_location
, "%J%qD was declared here", var
, var
);
1449 bool always_executed
;
1450 bool warn_possibly_uninitialized
;
1453 /* Called via walk_tree, look for SSA_NAMEs that have empty definitions
1454 and warn about them. */
1457 warn_uninitialized_var (tree
*tp
, int *walk_subtrees
, void *data_
)
1459 struct walk_stmt_info
*wi
= (struct walk_stmt_info
*) data_
;
1460 struct walk_data
*data
= (struct walk_data
*) wi
->info
;
1463 /* We do not care about LHS. */
1467 switch (TREE_CODE (t
))
1470 /* Taking the address of an uninitialized variable does not
1471 count as using it. */
1477 /* A VAR_DECL in the RHS of a gimple statement may mean that
1478 this variable is loaded from memory. */
1482 /* If there is not gimple stmt,
1483 or alias information has not been computed,
1484 then we cannot check VUSE ops. */
1485 if (data
->stmt
== NULL
1486 || !gimple_aliases_computed_p (cfun
))
1489 vuse
= SINGLE_SSA_USE_OPERAND (data
->stmt
, SSA_OP_VUSE
);
1490 if (vuse
== NULL_USE_OPERAND_P
)
1493 op
= USE_FROM_PTR (vuse
);
1494 if (t
!= SSA_NAME_VAR (op
)
1495 || !SSA_NAME_IS_DEFAULT_DEF (op
))
1497 /* If this is a VUSE of t and it is the default definition,
1498 then warn about op. */
1500 /* Fall through into SSA_NAME. */
1504 /* We only do data flow with SSA_NAMEs, so that's all we
1506 if (data
->always_executed
)
1507 warn_uninit (t
, "%qD is used uninitialized in this function",
1509 else if (data
->warn_possibly_uninitialized
)
1510 warn_uninit (t
, "%qD may be used uninitialized in this function",
1517 /* The total store transformation performed during gimplification
1518 creates uninitialized variable uses. If all is well, these will
1519 be optimized away, so don't warn now. */
1520 if (TREE_CODE (TREE_OPERAND (t
, 0)) == SSA_NAME
)
1525 if (IS_TYPE_OR_DECL_P (t
))
1533 /* Look for inputs to PHI that are SSA_NAMEs that have empty definitions
1534 and warn about them. */
1537 warn_uninitialized_phi (gimple phi
)
1539 size_t i
, n
= gimple_phi_num_args (phi
);
1541 /* Don't look at memory tags. */
1542 if (!is_gimple_reg (gimple_phi_result (phi
)))
1545 for (i
= 0; i
< n
; ++i
)
1547 tree op
= gimple_phi_arg_def (phi
, i
);
1548 if (TREE_CODE (op
) == SSA_NAME
)
1549 warn_uninit (op
, "%qD may be used uninitialized in this function",
1555 warn_uninitialized_vars (bool warn_possibly_uninitialized
)
1557 gimple_stmt_iterator gsi
;
1559 struct walk_data data
;
1561 data
.warn_possibly_uninitialized
= warn_possibly_uninitialized
;
1563 calculate_dominance_info (CDI_POST_DOMINATORS
);
1567 data
.always_executed
= dominated_by_p (CDI_POST_DOMINATORS
,
1568 single_succ (ENTRY_BLOCK_PTR
), bb
);
1569 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1571 struct walk_stmt_info wi
;
1572 data
.stmt
= gsi_stmt (gsi
);
1573 memset (&wi
, 0, sizeof (wi
));
1575 walk_gimple_op (gsi_stmt (gsi
), warn_uninitialized_var
, &wi
);
1582 execute_early_warn_uninitialized (void)
1584 /* Currently, this pass runs always but
1585 execute_late_warn_uninitialized only runs with optimization. With
1586 optimization we want to warn about possible uninitialized as late
1587 as possible, thus don't do it here. However, without
1588 optimization we need to warn here about "may be uninitialized".
1590 warn_uninitialized_vars (/*warn_possibly_uninitialized=*/!optimize
);
1595 execute_late_warn_uninitialized (void)
1598 gimple_stmt_iterator gsi
;
1600 /* Re-do the plain uninitialized variable check, as optimization may have
1601 straightened control flow. Do this first so that we don't accidentally
1602 get a "may be" warning when we'd have seen an "is" warning later. */
1603 warn_uninitialized_vars (/*warn_possibly_uninitialized=*/1);
1606 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1607 warn_uninitialized_phi (gsi_stmt (gsi
));
1613 gate_warn_uninitialized (void)
1615 return warn_uninitialized
!= 0;
1618 struct gimple_opt_pass pass_early_warn_uninitialized
=
1623 gate_warn_uninitialized
, /* gate */
1624 execute_early_warn_uninitialized
, /* execute */
1627 0, /* static_pass_number */
1629 PROP_ssa
, /* properties_required */
1630 0, /* properties_provided */
1631 0, /* properties_destroyed */
1632 0, /* todo_flags_start */
1633 0 /* todo_flags_finish */
1637 struct gimple_opt_pass pass_late_warn_uninitialized
=
1642 gate_warn_uninitialized
, /* gate */
1643 execute_late_warn_uninitialized
, /* execute */
1646 0, /* static_pass_number */
1648 PROP_ssa
, /* properties_required */
1649 0, /* properties_provided */
1650 0, /* properties_destroyed */
1651 0, /* todo_flags_start */
1652 0 /* todo_flags_finish */
1656 /* Compute TREE_ADDRESSABLE and DECL_GIMPLE_REG_P for local variables. */
1659 execute_update_addresses_taken (void)
1662 referenced_var_iterator rvi
;
1663 gimple_stmt_iterator gsi
;
1665 bitmap addresses_taken
= BITMAP_ALLOC (NULL
);
1666 bitmap not_reg_needs
= BITMAP_ALLOC (NULL
);
1667 bitmap vars_updated
= BITMAP_ALLOC (NULL
);
1668 bool update_vops
= false;
1670 /* Collect into ADDRESSES_TAKEN all variables whose address is taken within
1671 the function body. */
1674 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1676 const_gimple stmt
= gsi_stmt (gsi
);
1677 enum gimple_code code
= gimple_code (stmt
);
1678 bitmap taken
= gimple_addresses_taken (stmt
);
1681 bitmap_ior_into (addresses_taken
, taken
);
1683 /* If we have a call or an assignment, see if the lhs contains
1684 a local decl that requires not to be a gimple register. */
1685 if (code
== GIMPLE_ASSIGN
|| code
== GIMPLE_CALL
)
1687 tree lhs
= gimple_get_lhs (stmt
);
1688 /* A plain decl does not need it set. */
1689 if (lhs
&& handled_component_p (lhs
))
1691 var
= get_base_address (lhs
);
1693 bitmap_set_bit (not_reg_needs
, DECL_UID (var
));
1698 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1701 gimple phi
= gsi_stmt (gsi
);
1703 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
1705 tree op
= PHI_ARG_DEF (phi
, i
), var
;
1706 if (TREE_CODE (op
) == ADDR_EXPR
1707 && (var
= get_base_address (TREE_OPERAND (op
, 0))) != NULL
1709 bitmap_set_bit (addresses_taken
, DECL_UID (var
));
1714 /* When possible, clear ADDRESSABLE bit or set the REGISTER bit
1715 and mark variable for conversion into SSA. */
1716 FOR_EACH_REFERENCED_VAR (var
, rvi
)
1718 /* Global Variables, result decls cannot be changed. */
1719 if (is_global_var (var
)
1720 || TREE_CODE (var
) == RESULT_DECL
1721 || bitmap_bit_p (addresses_taken
, DECL_UID (var
)))
1724 if (TREE_ADDRESSABLE (var
))
1726 TREE_ADDRESSABLE (var
) = 0;
1727 if (is_gimple_reg (var
))
1728 mark_sym_for_renaming (var
);
1730 bitmap_set_bit (vars_updated
, DECL_UID (var
));
1733 fprintf (dump_file
, "No longer having address taken ");
1734 print_generic_expr (dump_file
, var
, 0);
1735 fprintf (dump_file
, "\n");
1738 if (!DECL_GIMPLE_REG_P (var
)
1739 && !bitmap_bit_p (not_reg_needs
, DECL_UID (var
))
1740 && (TREE_CODE (TREE_TYPE (var
)) == COMPLEX_TYPE
1741 || TREE_CODE (TREE_TYPE (var
)) == VECTOR_TYPE
))
1743 DECL_GIMPLE_REG_P (var
) = 1;
1744 mark_sym_for_renaming (var
);
1746 bitmap_set_bit (vars_updated
, DECL_UID (var
));
1749 fprintf (dump_file
, "Decl is now a gimple register ");
1750 print_generic_expr (dump_file
, var
, 0);
1751 fprintf (dump_file
, "\n");
1756 /* Operand caches needs to be recomputed for operands referencing the updated
1760 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1762 gimple stmt
= gsi_stmt (gsi
);
1764 if ((gimple_loaded_syms (stmt
)
1765 && bitmap_intersect_p (gimple_loaded_syms (stmt
), vars_updated
))
1766 || (gimple_stored_syms (stmt
)
1767 && bitmap_intersect_p (gimple_stored_syms (stmt
), vars_updated
)))
1770 BITMAP_FREE (not_reg_needs
);
1771 BITMAP_FREE (addresses_taken
);
1772 BITMAP_FREE (vars_updated
);
1776 struct gimple_opt_pass pass_update_address_taken
=
1780 "addressables", /* name */
1782 execute_update_addresses_taken
, /* execute */
1785 0, /* static_pass_number */
1787 PROP_ssa
, /* properties_required */
1788 0, /* properties_provided */
1789 0, /* properties_destroyed */
1790 0, /* todo_flags_start */
1791 TODO_update_ssa
/* todo_flags_finish */