1 /* Miscellaneous SSA utility functions.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to
18 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
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"
40 #include "tree-gimple.h"
41 #include "tree-inline.h"
45 #include "tree-dump.h"
46 #include "tree-pass.h"
49 /* Remove the corresponding arguments from the PHI nodes in E's
50 destination block and redirect it to DEST. Return redirected edge.
51 The list of removed arguments is stored in PENDING_STMT (e). */
54 ssa_redirect_edge (edge e
, basic_block dest
)
57 tree list
= NULL
, *last
= &list
;
60 /* Remove the appropriate PHI arguments in E's destination block. */
61 for (phi
= phi_nodes (e
->dest
); phi
; phi
= PHI_CHAIN (phi
))
63 if (PHI_ARG_DEF (phi
, e
->dest_idx
) == NULL_TREE
)
66 src
= PHI_ARG_DEF (phi
, e
->dest_idx
);
67 dst
= PHI_RESULT (phi
);
68 node
= build_tree_list (dst
, src
);
70 last
= &TREE_CHAIN (node
);
73 e
= redirect_edge_succ_nodup (e
, dest
);
74 PENDING_STMT (e
) = list
;
79 /* Add PHI arguments queued in PENDING_STMT list on edge E to edge
83 flush_pending_stmts (edge e
)
87 if (!PENDING_STMT (e
))
90 for (phi
= phi_nodes (e
->dest
), arg
= PENDING_STMT (e
);
92 phi
= PHI_CHAIN (phi
), arg
= TREE_CHAIN (arg
))
94 tree def
= TREE_VALUE (arg
);
95 add_phi_arg (phi
, def
, e
);
98 PENDING_STMT (e
) = NULL
;
101 /* Return true if SSA_NAME is malformed and mark it visited.
103 IS_VIRTUAL is true if this SSA_NAME was found inside a virtual
107 verify_ssa_name (tree ssa_name
, bool is_virtual
)
109 if (TREE_CODE (ssa_name
) != SSA_NAME
)
111 error ("expected an SSA_NAME object");
115 if (TREE_TYPE (ssa_name
) != TREE_TYPE (SSA_NAME_VAR (ssa_name
)))
117 error ("type mismatch between an SSA_NAME and its symbol");
121 if (SSA_NAME_IN_FREE_LIST (ssa_name
))
123 error ("found an SSA_NAME that had been released into the free pool");
127 if (is_virtual
&& is_gimple_reg (ssa_name
))
129 error ("found a virtual definition for a GIMPLE register");
133 if (!is_virtual
&& !is_gimple_reg (ssa_name
))
135 error ("found a real definition for a non-register");
139 if (is_virtual
&& var_ann (SSA_NAME_VAR (ssa_name
))
140 && get_subvars_for_var (SSA_NAME_VAR (ssa_name
)) != NULL
)
142 error ("found real variable when subvariables should have appeared");
146 if (SSA_NAME_IS_DEFAULT_DEF (ssa_name
)
147 && !IS_EMPTY_STMT (SSA_NAME_DEF_STMT (ssa_name
)))
149 error ("found a default name with a non-empty defining statement");
157 /* Return true if the definition of SSA_NAME at block BB is malformed.
159 STMT is the statement where SSA_NAME is created.
161 DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
162 version numbers. If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
163 it means that the block in that array slot contains the
164 definition of SSA_NAME.
166 IS_VIRTUAL is true if SSA_NAME is created by a VDEF. */
169 verify_def (basic_block bb
, basic_block
*definition_block
, tree ssa_name
,
170 tree stmt
, bool is_virtual
)
172 if (verify_ssa_name (ssa_name
, is_virtual
))
175 if (definition_block
[SSA_NAME_VERSION (ssa_name
)])
177 error ("SSA_NAME created in two different blocks %i and %i",
178 definition_block
[SSA_NAME_VERSION (ssa_name
)]->index
, bb
->index
);
182 definition_block
[SSA_NAME_VERSION (ssa_name
)] = bb
;
184 if (SSA_NAME_DEF_STMT (ssa_name
) != stmt
)
186 error ("SSA_NAME_DEF_STMT is wrong");
187 fprintf (stderr
, "Expected definition statement:\n");
188 print_generic_stmt (stderr
, SSA_NAME_DEF_STMT (ssa_name
), TDF_VOPS
);
189 fprintf (stderr
, "\nActual definition statement:\n");
190 print_generic_stmt (stderr
, stmt
, TDF_VOPS
);
197 fprintf (stderr
, "while verifying SSA_NAME ");
198 print_generic_expr (stderr
, ssa_name
, 0);
199 fprintf (stderr
, " in statement\n");
200 print_generic_stmt (stderr
, stmt
, TDF_VOPS
);
206 /* Return true if the use of SSA_NAME at statement STMT in block BB is
209 DEF_BB is the block where SSA_NAME was found to be created.
211 IDOM contains immediate dominator information for the flowgraph.
213 CHECK_ABNORMAL is true if the caller wants to check whether this use
214 is flowing through an abnormal edge (only used when checking PHI
217 If NAMES_DEFINED_IN_BB is not NULL, it contains a bitmap of ssa names
218 that are defined before STMT in basic block BB. */
221 verify_use (basic_block bb
, basic_block def_bb
, use_operand_p use_p
,
222 tree stmt
, bool check_abnormal
, bitmap names_defined_in_bb
)
225 tree ssa_name
= USE_FROM_PTR (use_p
);
227 if (!TREE_VISITED (ssa_name
))
228 if (verify_imm_links (stderr
, ssa_name
))
231 TREE_VISITED (ssa_name
) = 1;
233 if (IS_EMPTY_STMT (SSA_NAME_DEF_STMT (ssa_name
))
234 && SSA_NAME_IS_DEFAULT_DEF (ssa_name
))
235 ; /* Default definitions have empty statements. Nothing to do. */
238 error ("missing definition");
241 else if (bb
!= def_bb
242 && !dominated_by_p (CDI_DOMINATORS
, bb
, def_bb
))
244 error ("definition in block %i does not dominate use in block %i",
245 def_bb
->index
, bb
->index
);
248 else if (bb
== def_bb
249 && names_defined_in_bb
!= NULL
250 && !bitmap_bit_p (names_defined_in_bb
, SSA_NAME_VERSION (ssa_name
)))
252 error ("definition in block %i follows the use", def_bb
->index
);
257 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssa_name
))
259 error ("SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set");
263 /* Make sure the use is in an appropriate list by checking the previous
264 element to make sure it's the same. */
265 if (use_p
->prev
== NULL
)
267 error ("no immediate_use list");
273 if (use_p
->prev
->use
== NULL
)
274 listvar
= use_p
->prev
->stmt
;
276 listvar
= USE_FROM_PTR (use_p
->prev
);
277 if (listvar
!= ssa_name
)
279 error ("wrong immediate use list");
286 fprintf (stderr
, "for SSA_NAME: ");
287 print_generic_expr (stderr
, ssa_name
, TDF_VOPS
);
288 fprintf (stderr
, " in statement:\n");
289 print_generic_stmt (stderr
, stmt
, TDF_VOPS
);
296 /* Return true if any of the arguments for PHI node PHI at block BB is
299 DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
300 version numbers. If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
301 it means that the block in that array slot contains the
302 definition of SSA_NAME. */
305 verify_phi_args (tree phi
, basic_block bb
, basic_block
*definition_block
)
309 unsigned i
, phi_num_args
= PHI_NUM_ARGS (phi
);
311 if (EDGE_COUNT (bb
->preds
) != phi_num_args
)
313 error ("incoming edge count does not match number of PHI arguments");
318 for (i
= 0; i
< phi_num_args
; i
++)
320 use_operand_p op_p
= PHI_ARG_DEF_PTR (phi
, i
);
321 tree op
= USE_FROM_PTR (op_p
);
323 e
= EDGE_PRED (bb
, i
);
327 error ("PHI argument is missing for edge %d->%d",
334 if (TREE_CODE (op
) != SSA_NAME
&& !is_gimple_min_invariant (op
))
336 error ("PHI argument is not SSA_NAME, or invariant");
340 if (TREE_CODE (op
) == SSA_NAME
)
342 err
= verify_ssa_name (op
, !is_gimple_reg (PHI_RESULT (phi
)));
343 err
|= verify_use (e
->src
, definition_block
[SSA_NAME_VERSION (op
)],
344 op_p
, phi
, e
->flags
& EDGE_ABNORMAL
, NULL
);
349 error ("wrong edge %d->%d for PHI argument",
350 e
->src
->index
, e
->dest
->index
);
356 fprintf (stderr
, "PHI argument\n");
357 print_generic_stmt (stderr
, op
, TDF_VOPS
);
365 fprintf (stderr
, "for PHI node\n");
366 print_generic_stmt (stderr
, phi
, TDF_VOPS
|TDF_MEMSYMS
);
375 verify_flow_insensitive_alias_info (void)
378 referenced_var_iterator rvi
;
380 FOR_EACH_REFERENCED_VAR (var
, rvi
)
387 if (!MTAG_P (var
) || !MTAG_ALIASES (var
))
390 aliases
= MTAG_ALIASES (var
);
392 EXECUTE_IF_SET_IN_BITMAP (aliases
, 0, j
, bi
)
394 alias
= referenced_var (j
);
396 if (TREE_CODE (alias
) != MEMORY_PARTITION_TAG
397 && !may_be_aliased (alias
))
399 error ("non-addressable variable inside an alias set");
400 debug_variable (alias
);
409 debug_variable (var
);
410 internal_error ("verify_flow_insensitive_alias_info failed");
415 verify_flow_sensitive_alias_info (void)
420 for (i
= 1; i
< num_ssa_names
; i
++)
424 struct ptr_info_def
*pi
;
431 /* We only care for pointers that are actually referenced in the
433 if (!POINTER_TYPE_P (TREE_TYPE (ptr
)) || !TREE_VISITED (ptr
))
436 /* RESULT_DECL is special. If it's a GIMPLE register, then it
437 is only written-to only once in the return statement.
438 Otherwise, aggregate RESULT_DECLs may be written-to more than
439 once in virtual operands. */
440 var
= SSA_NAME_VAR (ptr
);
441 if (TREE_CODE (var
) == RESULT_DECL
442 && is_gimple_reg (ptr
))
445 pi
= SSA_NAME_PTR_INFO (ptr
);
450 if (pi
->is_dereferenced
&& !pi
->name_mem_tag
&& !ann
->symbol_mem_tag
)
452 error ("dereferenced pointers should have a name or a symbol tag");
457 && (pi
->pt_vars
== NULL
|| bitmap_empty_p (pi
->pt_vars
)))
459 error ("pointers with a memory tag, should have points-to sets");
463 if (pi
->value_escapes_p
&& pi
->name_mem_tag
)
465 tree t
= memory_partition (pi
->name_mem_tag
);
467 t
= pi
->name_mem_tag
;
469 if (!is_call_clobbered (t
))
471 error ("pointer escapes but its name tag is not call-clobbered");
480 debug_variable (ptr
);
481 internal_error ("verify_flow_sensitive_alias_info failed");
485 /* Verify the consistency of call clobbering information. */
488 verify_call_clobbering (void)
493 referenced_var_iterator rvi
;
495 /* At all times, the result of the call_clobbered flag should
496 match the result of the call_clobbered_vars bitmap. Verify both
497 that everything in call_clobbered_vars is marked
498 call_clobbered, and that everything marked
499 call_clobbered is in call_clobbered_vars. */
500 EXECUTE_IF_SET_IN_BITMAP (gimple_call_clobbered_vars (cfun
), 0, i
, bi
)
502 var
= referenced_var (i
);
504 if (memory_partition (var
))
505 var
= memory_partition (var
);
507 if (!MTAG_P (var
) && !var_ann (var
)->call_clobbered
)
509 error ("variable in call_clobbered_vars but not marked "
511 debug_variable (var
);
516 FOR_EACH_REFERENCED_VAR (var
, rvi
)
518 if (is_gimple_reg (var
))
521 if (memory_partition (var
))
522 var
= memory_partition (var
);
525 && var_ann (var
)->call_clobbered
526 && !bitmap_bit_p (gimple_call_clobbered_vars (cfun
), DECL_UID (var
)))
528 error ("variable marked call_clobbered but not in "
529 "call_clobbered_vars bitmap.");
530 debug_variable (var
);
538 internal_error ("verify_call_clobbering failed");
541 /* Verify the consistency of aliasing information. */
544 verify_alias_info (void)
546 verify_flow_sensitive_alias_info ();
547 verify_call_clobbering ();
548 verify_flow_insensitive_alias_info ();
552 /* Verify common invariants in the SSA web.
553 TODO: verify the variable annotations. */
556 verify_ssa (bool check_modified_stmt
)
560 basic_block
*definition_block
= XCNEWVEC (basic_block
, num_ssa_names
);
563 enum dom_state orig_dom_state
= dom_computed
[CDI_DOMINATORS
];
564 bitmap names_defined_in_bb
= BITMAP_ALLOC (NULL
);
566 gcc_assert (!need_ssa_update_p ());
570 timevar_push (TV_TREE_SSA_VERIFY
);
572 /* Keep track of SSA names present in the IL. */
573 for (i
= 1; i
< num_ssa_names
; i
++)
575 tree name
= ssa_name (i
);
579 TREE_VISITED (name
) = 0;
581 stmt
= SSA_NAME_DEF_STMT (name
);
582 if (!IS_EMPTY_STMT (stmt
))
584 basic_block bb
= bb_for_stmt (stmt
);
585 verify_def (bb
, definition_block
,
586 name
, stmt
, !is_gimple_reg (name
));
592 calculate_dominance_info (CDI_DOMINATORS
);
594 /* Now verify all the uses and make sure they agree with the definitions
595 found in the previous pass. */
601 block_stmt_iterator bsi
;
603 /* Make sure that all edges have a clear 'aux' field. */
604 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
608 error ("AUX pointer initialized for edge %d->%d", e
->src
->index
,
614 /* Verify the arguments for every PHI node in the block. */
615 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
617 if (verify_phi_args (phi
, bb
, definition_block
))
620 bitmap_set_bit (names_defined_in_bb
,
621 SSA_NAME_VERSION (PHI_RESULT (phi
)));
624 /* Now verify all the uses and vuses in every statement of the block. */
625 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
627 tree stmt
= bsi_stmt (bsi
);
630 if (check_modified_stmt
&& stmt_modified_p (stmt
))
632 error ("stmt (%p) marked modified after optimization pass: ",
634 print_generic_stmt (stderr
, stmt
, TDF_VOPS
);
638 if (TREE_CODE (stmt
) == GIMPLE_MODIFY_STMT
639 && TREE_CODE (GIMPLE_STMT_OPERAND (stmt
, 0)) != SSA_NAME
)
641 tree lhs
, base_address
;
643 lhs
= GIMPLE_STMT_OPERAND (stmt
, 0);
644 base_address
= get_base_address (lhs
);
647 && gimple_aliases_computed_p (cfun
)
648 && SSA_VAR_P (base_address
)
649 && !stmt_ann (stmt
)->has_volatile_ops
650 && ZERO_SSA_OPERANDS (stmt
, SSA_OP_VDEF
))
652 error ("statement makes a memory store, but has no VDEFS");
653 print_generic_stmt (stderr
, stmt
, TDF_VOPS
);
658 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_ALL_VIRTUALS
)
660 if (verify_ssa_name (op
, true))
662 error ("in statement");
663 print_generic_stmt (stderr
, stmt
, TDF_VOPS
|TDF_MEMSYMS
);
668 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_USE
|SSA_OP_DEF
)
670 if (verify_ssa_name (op
, false))
672 error ("in statement");
673 print_generic_stmt (stderr
, stmt
, TDF_VOPS
|TDF_MEMSYMS
);
678 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_USE
|SSA_OP_VUSE
)
680 op
= USE_FROM_PTR (use_p
);
681 if (verify_use (bb
, definition_block
[SSA_NAME_VERSION (op
)],
682 use_p
, stmt
, false, names_defined_in_bb
))
686 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_ALL_DEFS
)
687 bitmap_set_bit (names_defined_in_bb
, SSA_NAME_VERSION (op
));
690 bitmap_clear (names_defined_in_bb
);
693 /* Finally, verify alias information. */
694 if (gimple_aliases_computed_p (cfun
))
695 verify_alias_info ();
697 free (definition_block
);
699 /* Restore the dominance information to its prior known state, so
700 that we do not perturb the compiler's subsequent behavior. */
701 if (orig_dom_state
== DOM_NONE
)
702 free_dominance_info (CDI_DOMINATORS
);
704 dom_computed
[CDI_DOMINATORS
] = orig_dom_state
;
706 BITMAP_FREE (names_defined_in_bb
);
707 timevar_pop (TV_TREE_SSA_VERIFY
);
711 internal_error ("verify_ssa failed");
714 /* Return true if the uid in both int tree maps are equal. */
717 int_tree_map_eq (const void *va
, const void *vb
)
719 const struct int_tree_map
*a
= (const struct int_tree_map
*) va
;
720 const struct int_tree_map
*b
= (const struct int_tree_map
*) vb
;
721 return (a
->uid
== b
->uid
);
724 /* Hash a UID in a int_tree_map. */
727 int_tree_map_hash (const void *item
)
729 return ((const struct int_tree_map
*)item
)->uid
;
732 /* Return true if the uid in both int tree maps are equal. */
735 var_ann_eq (const void *va
, const void *vb
)
737 const struct static_var_ann_d
*a
= (const struct static_var_ann_d
*) va
;
739 return (a
->uid
== DECL_UID (b
));
742 /* Hash a UID in a int_tree_map. */
745 var_ann_hash (const void *item
)
747 return ((const struct static_var_ann_d
*)item
)->uid
;
751 /* Initialize global DFA and SSA structures. */
756 cfun
->gimple_df
= ggc_alloc_cleared (sizeof (struct gimple_df
));
757 cfun
->gimple_df
->referenced_vars
= htab_create_ggc (20, int_tree_map_hash
,
758 int_tree_map_eq
, NULL
);
759 cfun
->gimple_df
->default_defs
= htab_create_ggc (20, int_tree_map_hash
,
760 int_tree_map_eq
, NULL
);
761 cfun
->gimple_df
->var_anns
= htab_create_ggc (20, var_ann_hash
,
763 cfun
->gimple_df
->call_clobbered_vars
= BITMAP_GGC_ALLOC ();
764 cfun
->gimple_df
->addressable_vars
= BITMAP_GGC_ALLOC ();
770 /* Deallocate memory associated with SSA data structures for FNDECL. */
773 delete_tree_ssa (void)
777 block_stmt_iterator bsi
;
778 referenced_var_iterator rvi
;
781 /* Release any ssa_names still in use. */
782 for (i
= 0; i
< num_ssa_names
; i
++)
784 tree var
= ssa_name (i
);
785 if (var
&& TREE_CODE (var
) == SSA_NAME
)
787 SSA_NAME_IMM_USE_NODE (var
).prev
= &(SSA_NAME_IMM_USE_NODE (var
));
788 SSA_NAME_IMM_USE_NODE (var
).next
= &(SSA_NAME_IMM_USE_NODE (var
));
790 release_ssa_name (var
);
793 /* Remove annotations from every tree in the function. */
796 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
798 tree stmt
= bsi_stmt (bsi
);
799 stmt_ann_t ann
= get_stmt_ann (stmt
);
801 free_ssa_operands (&ann
->operands
);
802 ann
->addresses_taken
= 0;
803 mark_stmt_modified (stmt
);
805 set_phi_nodes (bb
, NULL
);
808 /* Remove annotations from every referenced variable. */
809 FOR_EACH_REFERENCED_VAR (var
, rvi
)
812 ggc_free (var
->base
.ann
);
813 var
->base
.ann
= NULL
;
815 htab_delete (gimple_referenced_vars (cfun
));
816 cfun
->gimple_df
->referenced_vars
= NULL
;
820 /* we no longer maintain the SSA operand cache at this point. */
821 fini_ssa_operands ();
823 cfun
->gimple_df
->global_var
= NULL_TREE
;
825 htab_delete (cfun
->gimple_df
->default_defs
);
826 cfun
->gimple_df
->default_defs
= NULL
;
827 htab_delete (cfun
->gimple_df
->var_anns
);
828 cfun
->gimple_df
->var_anns
= NULL
;
829 cfun
->gimple_df
->call_clobbered_vars
= NULL
;
830 cfun
->gimple_df
->addressable_vars
= NULL
;
831 cfun
->gimple_df
->modified_noreturn_calls
= NULL
;
832 if (gimple_aliases_computed_p (cfun
))
834 delete_alias_heapvars ();
835 gcc_assert (!need_ssa_update_p ());
837 cfun
->gimple_df
->aliases_computed_p
= false;
839 cfun
->gimple_df
= NULL
;
843 /* Return true if the conversion from INNER_TYPE to OUTER_TYPE is a
844 useless type conversion, otherwise return false. */
847 tree_ssa_useless_type_conversion_1 (tree outer_type
, tree inner_type
)
849 if (inner_type
== outer_type
)
852 /* Changes in machine mode are never useless conversions. */
853 if (TYPE_MODE (inner_type
) != TYPE_MODE (outer_type
))
856 /* If the inner and outer types are effectively the same, then
857 strip the type conversion and enter the equivalence into
859 if (lang_hooks
.types_compatible_p (inner_type
, outer_type
))
862 /* If both types are pointers and the outer type is a (void *), then
863 the conversion is not necessary. The opposite is not true since
864 that conversion would result in a loss of information if the
865 equivalence was used. Consider an indirect function call where
866 we need to know the exact type of the function to correctly
867 implement the ABI. */
868 else if (POINTER_TYPE_P (inner_type
)
869 && POINTER_TYPE_P (outer_type
)
870 && TYPE_REF_CAN_ALIAS_ALL (inner_type
)
871 == TYPE_REF_CAN_ALIAS_ALL (outer_type
)
872 && TREE_CODE (TREE_TYPE (outer_type
)) == VOID_TYPE
)
875 /* Don't lose casts between pointers to volatile and non-volatile
876 qualified types. Doing so would result in changing the semantics
877 of later accesses. */
878 else if (POINTER_TYPE_P (inner_type
)
879 && POINTER_TYPE_P (outer_type
)
880 && TYPE_VOLATILE (TREE_TYPE (outer_type
))
881 != TYPE_VOLATILE (TREE_TYPE (inner_type
)))
884 /* Pointers/references are equivalent if their pointed to types
885 are effectively the same. This allows to strip conversions between
886 pointer types with different type qualifiers. */
887 else if (POINTER_TYPE_P (inner_type
)
888 && POINTER_TYPE_P (outer_type
)
889 && TYPE_REF_CAN_ALIAS_ALL (inner_type
)
890 == TYPE_REF_CAN_ALIAS_ALL (outer_type
)
891 && lang_hooks
.types_compatible_p (TREE_TYPE (inner_type
),
892 TREE_TYPE (outer_type
)))
895 /* If both the inner and outer types are integral types, then the
896 conversion is not necessary if they have the same mode and
897 signedness and precision, and both or neither are boolean. Some
898 code assumes an invariant that boolean types stay boolean and do
899 not become 1-bit bit-field types. Note that types with precision
900 not using all bits of the mode (such as bit-field types in C)
901 mean that testing of precision is necessary. */
902 else if (INTEGRAL_TYPE_P (inner_type
)
903 && INTEGRAL_TYPE_P (outer_type
)
904 && TYPE_UNSIGNED (inner_type
) == TYPE_UNSIGNED (outer_type
)
905 && TYPE_PRECISION (inner_type
) == TYPE_PRECISION (outer_type
)
906 && simple_cst_equal (TYPE_MAX_VALUE (inner_type
), TYPE_MAX_VALUE (outer_type
))
907 && simple_cst_equal (TYPE_MIN_VALUE (inner_type
), TYPE_MIN_VALUE (outer_type
)))
909 bool first_boolean
= (TREE_CODE (inner_type
) == BOOLEAN_TYPE
);
910 bool second_boolean
= (TREE_CODE (outer_type
) == BOOLEAN_TYPE
);
911 if (first_boolean
== second_boolean
)
915 /* Recurse for complex types. */
916 else if (TREE_CODE (inner_type
) == COMPLEX_TYPE
917 && TREE_CODE (outer_type
) == COMPLEX_TYPE
918 && tree_ssa_useless_type_conversion_1 (TREE_TYPE (outer_type
),
919 TREE_TYPE (inner_type
)))
925 /* Return true if EXPR is a useless type conversion, otherwise return
929 tree_ssa_useless_type_conversion (tree expr
)
931 /* If we have an assignment that merely uses a NOP_EXPR to change
932 the top of the RHS to the type of the LHS and the type conversion
933 is "safe", then strip away the type conversion so that we can
934 enter LHS = RHS into the const_and_copies table. */
935 if (TREE_CODE (expr
) == NOP_EXPR
|| TREE_CODE (expr
) == CONVERT_EXPR
936 || TREE_CODE (expr
) == VIEW_CONVERT_EXPR
937 || TREE_CODE (expr
) == NON_LVALUE_EXPR
)
938 /* FIXME: Use of GENERIC_TREE_TYPE here is a temporary measure to work
939 around known bugs with GIMPLE_MODIFY_STMTs appearing in places
940 they shouldn't. See PR 30391. */
941 return tree_ssa_useless_type_conversion_1
943 GENERIC_TREE_TYPE (TREE_OPERAND (expr
, 0)));
949 /* Internal helper for walk_use_def_chains. VAR, FN and DATA are as
950 described in walk_use_def_chains.
952 VISITED is a pointer set used to mark visited SSA_NAMEs to avoid
953 infinite loops. We used to have a bitmap for this to just mark
954 SSA versions we had visited. But non-sparse bitmaps are way too
955 expensive, while sparse bitmaps may cause quadratic behavior.
957 IS_DFS is true if the caller wants to perform a depth-first search
958 when visiting PHI nodes. A DFS will visit each PHI argument and
959 call FN after each one. Otherwise, all the arguments are
960 visited first and then FN is called with each of the visited
961 arguments in a separate pass. */
964 walk_use_def_chains_1 (tree var
, walk_use_def_chains_fn fn
, void *data
,
965 struct pointer_set_t
*visited
, bool is_dfs
)
969 if (pointer_set_insert (visited
, var
))
972 def_stmt
= SSA_NAME_DEF_STMT (var
);
974 if (TREE_CODE (def_stmt
) != PHI_NODE
)
976 /* If we reached the end of the use-def chain, call FN. */
977 return fn (var
, def_stmt
, data
);
983 /* When doing a breadth-first search, call FN before following the
984 use-def links for each argument. */
986 for (i
= 0; i
< PHI_NUM_ARGS (def_stmt
); i
++)
987 if (fn (PHI_ARG_DEF (def_stmt
, i
), def_stmt
, data
))
990 /* Follow use-def links out of each PHI argument. */
991 for (i
= 0; i
< PHI_NUM_ARGS (def_stmt
); i
++)
993 tree arg
= PHI_ARG_DEF (def_stmt
, i
);
995 /* ARG may be NULL for newly introduced PHI nodes. */
997 && TREE_CODE (arg
) == SSA_NAME
998 && walk_use_def_chains_1 (arg
, fn
, data
, visited
, is_dfs
))
1002 /* When doing a depth-first search, call FN after following the
1003 use-def links for each argument. */
1005 for (i
= 0; i
< PHI_NUM_ARGS (def_stmt
); i
++)
1006 if (fn (PHI_ARG_DEF (def_stmt
, i
), def_stmt
, data
))
1015 /* Walk use-def chains starting at the SSA variable VAR. Call
1016 function FN at each reaching definition found. FN takes three
1017 arguments: VAR, its defining statement (DEF_STMT) and a generic
1018 pointer to whatever state information that FN may want to maintain
1019 (DATA). FN is able to stop the walk by returning true, otherwise
1020 in order to continue the walk, FN should return false.
1022 Note, that if DEF_STMT is a PHI node, the semantics are slightly
1023 different. The first argument to FN is no longer the original
1024 variable VAR, but the PHI argument currently being examined. If FN
1025 wants to get at VAR, it should call PHI_RESULT (PHI).
1027 If IS_DFS is true, this function will:
1029 1- walk the use-def chains for all the PHI arguments, and,
1030 2- call (*FN) (ARG, PHI, DATA) on all the PHI arguments.
1032 If IS_DFS is false, the two steps above are done in reverse order
1033 (i.e., a breadth-first search). */
1036 walk_use_def_chains (tree var
, walk_use_def_chains_fn fn
, void *data
,
1041 gcc_assert (TREE_CODE (var
) == SSA_NAME
);
1043 def_stmt
= SSA_NAME_DEF_STMT (var
);
1045 /* We only need to recurse if the reaching definition comes from a PHI
1047 if (TREE_CODE (def_stmt
) != PHI_NODE
)
1048 (*fn
) (var
, def_stmt
, data
);
1051 struct pointer_set_t
*visited
= pointer_set_create ();
1052 walk_use_def_chains_1 (var
, fn
, data
, visited
, is_dfs
);
1053 pointer_set_destroy (visited
);
1058 /* Emit warnings for uninitialized variables. This is done in two passes.
1060 The first pass notices real uses of SSA names with default definitions.
1061 Such uses are unconditionally uninitialized, and we can be certain that
1062 such a use is a mistake. This pass is run before most optimizations,
1063 so that we catch as many as we can.
1065 The second pass follows PHI nodes to find uses that are potentially
1066 uninitialized. In this case we can't necessarily prove that the use
1067 is really uninitialized. This pass is run after most optimizations,
1068 so that we thread as many jumps and possible, and delete as much dead
1069 code as possible, in order to reduce false positives. We also look
1070 again for plain uninitialized variables, since optimization may have
1071 changed conditionally uninitialized to unconditionally uninitialized. */
1073 /* Emit a warning for T, an SSA_NAME, being uninitialized. The exact
1074 warning text is in MSGID and LOCUS may contain a location or be null. */
1077 warn_uninit (tree t
, const char *gmsgid
, void *data
)
1079 tree var
= SSA_NAME_VAR (t
);
1080 tree def
= SSA_NAME_DEF_STMT (t
);
1081 tree context
= (tree
) data
;
1083 expanded_location xloc
, floc
;
1085 /* Default uses (indicated by an empty definition statement),
1086 are uninitialized. */
1087 if (!IS_EMPTY_STMT (def
))
1090 /* Except for PARMs of course, which are always initialized. */
1091 if (TREE_CODE (var
) == PARM_DECL
)
1094 /* Hard register variables get their initial value from the ether. */
1095 if (TREE_CODE (var
) == VAR_DECL
&& DECL_HARD_REGISTER (var
))
1098 /* TREE_NO_WARNING either means we already warned, or the front end
1099 wishes to suppress the warning. */
1100 if (TREE_NO_WARNING (var
))
1103 locus
= (context
!= NULL
&& EXPR_HAS_LOCATION (context
)
1104 ? EXPR_LOCUS (context
)
1105 : &DECL_SOURCE_LOCATION (var
));
1106 warning (0, gmsgid
, locus
, var
);
1107 xloc
= expand_location (*locus
);
1108 floc
= expand_location (DECL_SOURCE_LOCATION (cfun
->decl
));
1109 if (xloc
.file
!= floc
.file
1110 || xloc
.line
< floc
.line
1111 || xloc
.line
> LOCATION_LINE (cfun
->function_end_locus
))
1112 inform ("%J%qD was declared here", var
, var
);
1114 TREE_NO_WARNING (var
) = 1;
1117 /* Called via walk_tree, look for SSA_NAMEs that have empty definitions
1118 and warn about them. */
1121 warn_uninitialized_var (tree
*tp
, int *walk_subtrees
, void *data
)
1125 switch (TREE_CODE (t
))
1128 /* We only do data flow with SSA_NAMEs, so that's all we
1130 warn_uninit (t
, "%H%qD is used uninitialized in this function", data
);
1136 /* The total store transformation performed during gimplification
1137 creates uninitialized variable uses. If all is well, these will
1138 be optimized away, so don't warn now. */
1139 if (TREE_CODE (TREE_OPERAND (t
, 0)) == SSA_NAME
)
1144 if (IS_TYPE_OR_DECL_P (t
))
1152 /* Look for inputs to PHI that are SSA_NAMEs that have empty definitions
1153 and warn about them. */
1156 warn_uninitialized_phi (tree phi
)
1158 int i
, n
= PHI_NUM_ARGS (phi
);
1160 /* Don't look at memory tags. */
1161 if (!is_gimple_reg (PHI_RESULT (phi
)))
1164 for (i
= 0; i
< n
; ++i
)
1166 tree op
= PHI_ARG_DEF (phi
, i
);
1167 if (TREE_CODE (op
) == SSA_NAME
)
1168 warn_uninit (op
, "%H%qD may be used uninitialized in this function",
1174 execute_early_warn_uninitialized (void)
1176 block_stmt_iterator bsi
;
1180 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
1182 tree context
= bsi_stmt (bsi
);
1183 walk_tree (bsi_stmt_ptr (bsi
), warn_uninitialized_var
,
1190 execute_late_warn_uninitialized (void)
1195 /* Re-do the plain uninitialized variable check, as optimization may have
1196 straightened control flow. Do this first so that we don't accidentally
1197 get a "may be" warning when we'd have seen an "is" warning later. */
1198 execute_early_warn_uninitialized ();
1201 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
1202 warn_uninitialized_phi (phi
);
1207 gate_warn_uninitialized (void)
1209 return warn_uninitialized
!= 0;
1212 struct tree_opt_pass pass_early_warn_uninitialized
=
1215 gate_warn_uninitialized
, /* gate */
1216 execute_early_warn_uninitialized
, /* execute */
1219 0, /* static_pass_number */
1221 PROP_ssa
, /* properties_required */
1222 0, /* properties_provided */
1223 0, /* properties_destroyed */
1224 0, /* todo_flags_start */
1225 0, /* todo_flags_finish */
1229 struct tree_opt_pass pass_late_warn_uninitialized
=
1232 gate_warn_uninitialized
, /* gate */
1233 execute_late_warn_uninitialized
, /* execute */
1236 0, /* static_pass_number */
1238 PROP_ssa
, /* properties_required */
1239 0, /* properties_provided */
1240 0, /* properties_destroyed */
1241 0, /* todo_flags_start */
1242 0, /* todo_flags_finish */