1 /* Miscellaneous SSA utility functions.
2 Copyright (C) 2001-2015 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 3, 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 COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
26 #include "hard-reg-set.h"
29 #include "fold-const.h"
30 #include "stor-layout.h"
34 #include "langhooks.h"
35 #include "gimple-pretty-print.h"
36 #include "internal-fn.h"
37 #include "gimple-fold.h"
39 #include "gimple-iterator.h"
40 #include "gimple-walk.h"
41 #include "tree-ssa-loop-manip.h"
42 #include "tree-into-ssa.h"
44 #include "tree-inline.h"
45 #include "tree-pass.h"
46 #include "diagnostic-core.h"
48 #include "cfgexpand.h"
50 /* Pointer map of variable mappings, keyed by edge. */
51 static hash_map
<edge
, auto_vec
<edge_var_map
> > *edge_var_maps
;
54 /* Add a mapping with PHI RESULT and PHI DEF associated with edge E. */
57 redirect_edge_var_map_add (edge e
, tree result
, tree def
, source_location locus
)
59 edge_var_map new_node
;
61 if (edge_var_maps
== NULL
)
62 edge_var_maps
= new hash_map
<edge
, auto_vec
<edge_var_map
> >;
64 auto_vec
<edge_var_map
> &slot
= edge_var_maps
->get_or_insert (e
);
66 new_node
.result
= result
;
67 new_node
.locus
= locus
;
69 slot
.safe_push (new_node
);
73 /* Clear the var mappings in edge E. */
76 redirect_edge_var_map_clear (edge e
)
81 auto_vec
<edge_var_map
> *head
= edge_var_maps
->get (e
);
88 /* Duplicate the redirected var mappings in OLDE in NEWE.
90 This assumes a hash_map can have multiple edges mapping to the same
91 var_map (many to one mapping), since we don't remove the previous mappings.
95 redirect_edge_var_map_dup (edge newe
, edge olde
)
100 auto_vec
<edge_var_map
> *new_head
= &edge_var_maps
->get_or_insert (newe
);
101 auto_vec
<edge_var_map
> *old_head
= edge_var_maps
->get (olde
);
105 new_head
->safe_splice (*old_head
);
109 /* Return the variable mappings for a given edge. If there is none, return
113 redirect_edge_var_map_vector (edge e
)
115 /* Hey, what kind of idiot would... you'd be surprised. */
119 auto_vec
<edge_var_map
> *slot
= edge_var_maps
->get (e
);
126 /* Clear the edge variable mappings. */
129 redirect_edge_var_map_destroy (void)
131 delete edge_var_maps
;
132 edge_var_maps
= NULL
;
136 /* Remove the corresponding arguments from the PHI nodes in E's
137 destination block and redirect it to DEST. Return redirected edge.
138 The list of removed arguments is stored in a vector accessed
139 through edge_var_maps. */
142 ssa_redirect_edge (edge e
, basic_block dest
)
147 redirect_edge_var_map_clear (e
);
149 /* Remove the appropriate PHI arguments in E's destination block. */
150 for (gsi
= gsi_start_phis (e
->dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
153 source_location locus
;
156 def
= gimple_phi_arg_def (phi
, e
->dest_idx
);
157 locus
= gimple_phi_arg_location (phi
, e
->dest_idx
);
159 if (def
== NULL_TREE
)
162 redirect_edge_var_map_add (e
, gimple_phi_result (phi
), def
, locus
);
165 e
= redirect_edge_succ_nodup (e
, dest
);
171 /* Add PHI arguments queued in PENDING_STMT list on edge E to edge
175 flush_pending_stmts (edge e
)
182 vec
<edge_var_map
> *v
= redirect_edge_var_map_vector (e
);
186 for (gsi
= gsi_start_phis (e
->dest
), i
= 0;
187 !gsi_end_p (gsi
) && v
->iterate (i
, &vm
);
188 gsi_next (&gsi
), i
++)
193 def
= redirect_edge_var_map_def (vm
);
194 add_phi_arg (phi
, def
, e
, redirect_edge_var_map_location (vm
));
197 redirect_edge_var_map_clear (e
);
200 /* Replace the LHS of STMT, an assignment, either a GIMPLE_ASSIGN or a
201 GIMPLE_CALL, with NLHS, in preparation for modifying the RHS to an
202 expression with a different value.
204 This will update any annotations (say debug bind stmts) referring
205 to the original LHS, so that they use the RHS instead. This is
206 done even if NLHS and LHS are the same, for it is understood that
207 the RHS will be modified afterwards, and NLHS will not be assigned
210 Adjusting any non-annotation uses of the LHS, if needed, is a
211 responsibility of the caller.
213 The effect of this call should be pretty much the same as that of
214 inserting a copy of STMT before STMT, and then removing the
215 original stmt, at which time gsi_remove() would have update
216 annotations, but using this function saves all the inserting,
217 copying and removing. */
220 gimple_replace_ssa_lhs (gimple stmt
, tree nlhs
)
222 if (MAY_HAVE_DEBUG_STMTS
)
224 tree lhs
= gimple_get_lhs (stmt
);
226 gcc_assert (SSA_NAME_DEF_STMT (lhs
) == stmt
);
228 insert_debug_temp_for_var_def (NULL
, lhs
);
231 gimple_set_lhs (stmt
, nlhs
);
235 /* Given a tree for an expression for which we might want to emit
236 locations or values in debug information (generally a variable, but
237 we might deal with other kinds of trees in the future), return the
238 tree that should be used as the variable of a DEBUG_BIND STMT or
239 VAR_LOCATION INSN or NOTE. Return NULL if VAR is not to be tracked. */
242 target_for_debug_bind (tree var
)
244 if (!MAY_HAVE_DEBUG_STMTS
)
247 if (TREE_CODE (var
) == SSA_NAME
)
249 var
= SSA_NAME_VAR (var
);
250 if (var
== NULL_TREE
)
254 if ((TREE_CODE (var
) != VAR_DECL
255 || VAR_DECL_IS_VIRTUAL_OPERAND (var
))
256 && TREE_CODE (var
) != PARM_DECL
)
259 if (DECL_HAS_VALUE_EXPR_P (var
))
260 return target_for_debug_bind (DECL_VALUE_EXPR (var
));
262 if (DECL_IGNORED_P (var
))
265 /* var-tracking only tracks registers. */
266 if (!is_gimple_reg_type (TREE_TYPE (var
)))
272 /* Called via walk_tree, look for SSA_NAMEs that have already been
276 find_released_ssa_name (tree
*tp
, int *walk_subtrees
, void *data_
)
278 struct walk_stmt_info
*wi
= (struct walk_stmt_info
*) data_
;
280 if (wi
&& wi
->is_lhs
)
283 if (TREE_CODE (*tp
) == SSA_NAME
)
285 if (SSA_NAME_IN_FREE_LIST (*tp
))
290 else if (IS_TYPE_OR_DECL_P (*tp
))
296 /* Insert a DEBUG BIND stmt before the DEF of VAR if VAR is referenced
297 by other DEBUG stmts, and replace uses of the DEF with the
298 newly-created debug temp. */
301 insert_debug_temp_for_var_def (gimple_stmt_iterator
*gsi
, tree var
)
303 imm_use_iterator imm_iter
;
306 gimple def_stmt
= NULL
;
310 if (!MAY_HAVE_DEBUG_STMTS
)
313 /* If this name has already been registered for replacement, do nothing
314 as anything that uses this name isn't in SSA form. */
315 if (name_registered_for_update_p (var
))
318 /* Check whether there are debug stmts that reference this variable and,
319 if there are, decide whether we should use a debug temp. */
320 FOR_EACH_IMM_USE_FAST (use_p
, imm_iter
, var
)
322 stmt
= USE_STMT (use_p
);
324 if (!gimple_debug_bind_p (stmt
))
330 if (gimple_debug_bind_get_value (stmt
) != var
)
332 /* Count this as an additional use, so as to make sure we
333 use a temp unless VAR's definition has a SINGLE_RHS that
344 def_stmt
= gsi_stmt (*gsi
);
346 def_stmt
= SSA_NAME_DEF_STMT (var
);
348 /* If we didn't get an insertion point, and the stmt has already
349 been removed, we won't be able to insert the debug bind stmt, so
350 we'll have to drop debug information. */
351 if (gimple_code (def_stmt
) == GIMPLE_PHI
)
353 value
= degenerate_phi_result (as_a
<gphi
*> (def_stmt
));
354 if (value
&& walk_tree (&value
, find_released_ssa_name
, NULL
, NULL
))
356 /* error_mark_node is what fixup_noreturn_call changes PHI arguments
358 else if (value
== error_mark_node
)
361 else if (is_gimple_assign (def_stmt
))
363 bool no_value
= false;
365 if (!dom_info_available_p (CDI_DOMINATORS
))
367 struct walk_stmt_info wi
;
369 memset (&wi
, 0, sizeof (wi
));
371 /* When removing blocks without following reverse dominance
372 order, we may sometimes encounter SSA_NAMEs that have
373 already been released, referenced in other SSA_DEFs that
374 we're about to release. Consider:
383 If we deleted BB X first, propagating the value of w_2
384 won't do us any good. It's too late to recover their
385 original definition of v_1: when it was deleted, it was
386 only referenced in other DEFs, it couldn't possibly know
387 it should have been retained, and propagating every
388 single DEF just in case it might have to be propagated
389 into a DEBUG STMT would probably be too wasteful.
391 When dominator information is not readily available, we
392 check for and accept some loss of debug information. But
393 if it is available, there's no excuse for us to remove
394 blocks in the wrong order, so we don't even check for
395 dead SSA NAMEs. SSA verification shall catch any
397 if ((!gsi
&& !gimple_bb (def_stmt
))
398 || walk_gimple_op (def_stmt
, find_released_ssa_name
, &wi
))
403 value
= gimple_assign_rhs_to_tree (def_stmt
);
408 /* If there's a single use of VAR, and VAR is the entire debug
409 expression (usecount would have been incremented again
410 otherwise), and the definition involves only constants and
411 SSA names, then we can propagate VALUE into this single use,
414 We can also avoid using a temp if VALUE can be shared and
415 propagated into all uses, without generating expressions that
416 wouldn't be valid gimple RHSs.
418 Other cases that would require unsharing or non-gimple RHSs
419 are deferred to a debug temp, although we could avoid temps
420 at the expense of duplication of expressions. */
422 if (CONSTANT_CLASS_P (value
)
423 || gimple_code (def_stmt
) == GIMPLE_PHI
425 && (!gimple_assign_single_p (def_stmt
)
426 || is_gimple_min_invariant (value
)))
427 || is_gimple_reg (value
))
432 tree vexpr
= make_node (DEBUG_EXPR_DECL
);
434 def_temp
= gimple_build_debug_bind (vexpr
,
435 unshare_expr (value
),
438 DECL_ARTIFICIAL (vexpr
) = 1;
439 TREE_TYPE (vexpr
) = TREE_TYPE (value
);
441 DECL_MODE (vexpr
) = DECL_MODE (value
);
443 DECL_MODE (vexpr
) = TYPE_MODE (TREE_TYPE (value
));
446 gsi_insert_before (gsi
, def_temp
, GSI_SAME_STMT
);
449 gimple_stmt_iterator ngsi
= gsi_for_stmt (def_stmt
);
450 gsi_insert_before (&ngsi
, def_temp
, GSI_SAME_STMT
);
457 FOR_EACH_IMM_USE_STMT (stmt
, imm_iter
, var
)
459 if (!gimple_debug_bind_p (stmt
))
464 FOR_EACH_IMM_USE_ON_STMT (use_p
, imm_iter
)
465 /* unshare_expr is not needed here. vexpr is either a
466 SINGLE_RHS, that can be safely shared, some other RHS
467 that was unshared when we found it had a single debug
468 use, or a DEBUG_EXPR_DECL, that can be safely
470 SET_USE (use_p
, unshare_expr (value
));
471 /* If we didn't replace uses with a debug decl fold the
472 resulting expression. Otherwise we end up with invalid IL. */
473 if (TREE_CODE (value
) != DEBUG_EXPR_DECL
)
475 gimple_stmt_iterator gsi
= gsi_for_stmt (stmt
);
476 fold_stmt_inplace (&gsi
);
480 gimple_debug_bind_reset_value (stmt
);
487 /* Insert a DEBUG BIND stmt before STMT for each DEF referenced by
488 other DEBUG stmts, and replace uses of the DEF with the
489 newly-created debug temp. */
492 insert_debug_temps_for_defs (gimple_stmt_iterator
*gsi
)
498 if (!MAY_HAVE_DEBUG_STMTS
)
501 stmt
= gsi_stmt (*gsi
);
503 FOR_EACH_PHI_OR_STMT_DEF (def_p
, stmt
, op_iter
, SSA_OP_DEF
)
505 tree var
= DEF_FROM_PTR (def_p
);
507 if (TREE_CODE (var
) != SSA_NAME
)
510 insert_debug_temp_for_var_def (gsi
, var
);
514 /* Reset all debug stmts that use SSA_NAME(s) defined in STMT. */
517 reset_debug_uses (gimple stmt
)
521 imm_use_iterator imm_iter
;
524 if (!MAY_HAVE_DEBUG_STMTS
)
527 FOR_EACH_PHI_OR_STMT_DEF (def_p
, stmt
, op_iter
, SSA_OP_DEF
)
529 tree var
= DEF_FROM_PTR (def_p
);
531 if (TREE_CODE (var
) != SSA_NAME
)
534 FOR_EACH_IMM_USE_STMT (use_stmt
, imm_iter
, var
)
536 if (!gimple_debug_bind_p (use_stmt
))
539 gimple_debug_bind_reset_value (use_stmt
);
540 update_stmt (use_stmt
);
545 /* Delete SSA DEFs for SSA versions in the TOREMOVE bitmap, removing
546 dominated stmts before their dominators, so that release_ssa_defs
547 stands a chance of propagating DEFs into debug bind stmts. */
550 release_defs_bitset (bitmap toremove
)
555 /* Performing a topological sort is probably overkill, this will
556 most likely run in slightly superlinear time, rather than the
557 pathological quadratic worst case. */
558 while (!bitmap_empty_p (toremove
))
559 EXECUTE_IF_SET_IN_BITMAP (toremove
, 0, j
, bi
)
561 bool remove_now
= true;
562 tree var
= ssa_name (j
);
564 imm_use_iterator uit
;
566 FOR_EACH_IMM_USE_STMT (stmt
, uit
, var
)
571 /* We can't propagate PHI nodes into debug stmts. */
572 if (gimple_code (stmt
) == GIMPLE_PHI
573 || is_gimple_debug (stmt
))
576 /* If we find another definition to remove that uses
577 the one we're looking at, defer the removal of this
578 one, so that it can be propagated into debug stmts
579 after the other is. */
580 FOR_EACH_SSA_DEF_OPERAND (def_p
, stmt
, dit
, SSA_OP_DEF
)
582 tree odef
= DEF_FROM_PTR (def_p
);
584 if (bitmap_bit_p (toremove
, SSA_NAME_VERSION (odef
)))
592 BREAK_FROM_IMM_USE_STMT (uit
);
597 gimple def
= SSA_NAME_DEF_STMT (var
);
598 gimple_stmt_iterator gsi
= gsi_for_stmt (def
);
600 if (gimple_code (def
) == GIMPLE_PHI
)
601 remove_phi_node (&gsi
, true);
604 gsi_remove (&gsi
, true);
608 bitmap_clear_bit (toremove
, j
);
613 /* Return true if SSA_NAME is malformed and mark it visited.
615 IS_VIRTUAL is true if this SSA_NAME was found inside a virtual
619 verify_ssa_name (tree ssa_name
, bool is_virtual
)
621 if (TREE_CODE (ssa_name
) != SSA_NAME
)
623 error ("expected an SSA_NAME object");
627 if (SSA_NAME_IN_FREE_LIST (ssa_name
))
629 error ("found an SSA_NAME that had been released into the free pool");
633 if (SSA_NAME_VAR (ssa_name
) != NULL_TREE
634 && TREE_TYPE (ssa_name
) != TREE_TYPE (SSA_NAME_VAR (ssa_name
)))
636 error ("type mismatch between an SSA_NAME and its symbol");
640 if (is_virtual
&& !virtual_operand_p (ssa_name
))
642 error ("found a virtual definition for a GIMPLE register");
646 if (is_virtual
&& SSA_NAME_VAR (ssa_name
) != gimple_vop (cfun
))
648 error ("virtual SSA name for non-VOP decl");
652 if (!is_virtual
&& virtual_operand_p (ssa_name
))
654 error ("found a real definition for a non-register");
658 if (SSA_NAME_IS_DEFAULT_DEF (ssa_name
)
659 && !gimple_nop_p (SSA_NAME_DEF_STMT (ssa_name
)))
661 error ("found a default name with a non-empty defining statement");
669 /* Return true if the definition of SSA_NAME at block BB is malformed.
671 STMT is the statement where SSA_NAME is created.
673 DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
674 version numbers. If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
675 it means that the block in that array slot contains the
676 definition of SSA_NAME.
678 IS_VIRTUAL is true if SSA_NAME is created by a VDEF. */
681 verify_def (basic_block bb
, basic_block
*definition_block
, tree ssa_name
,
682 gimple stmt
, bool is_virtual
)
684 if (verify_ssa_name (ssa_name
, is_virtual
))
687 if (SSA_NAME_VAR (ssa_name
)
688 && TREE_CODE (SSA_NAME_VAR (ssa_name
)) == RESULT_DECL
689 && DECL_BY_REFERENCE (SSA_NAME_VAR (ssa_name
)))
691 error ("RESULT_DECL should be read only when DECL_BY_REFERENCE is set");
695 if (definition_block
[SSA_NAME_VERSION (ssa_name
)])
697 error ("SSA_NAME created in two different blocks %i and %i",
698 definition_block
[SSA_NAME_VERSION (ssa_name
)]->index
, bb
->index
);
702 definition_block
[SSA_NAME_VERSION (ssa_name
)] = bb
;
704 if (SSA_NAME_DEF_STMT (ssa_name
) != stmt
)
706 error ("SSA_NAME_DEF_STMT is wrong");
707 fprintf (stderr
, "Expected definition statement:\n");
708 print_gimple_stmt (stderr
, SSA_NAME_DEF_STMT (ssa_name
), 4, TDF_VOPS
);
709 fprintf (stderr
, "\nActual definition statement:\n");
710 print_gimple_stmt (stderr
, stmt
, 4, TDF_VOPS
);
717 fprintf (stderr
, "while verifying SSA_NAME ");
718 print_generic_expr (stderr
, ssa_name
, 0);
719 fprintf (stderr
, " in statement\n");
720 print_gimple_stmt (stderr
, stmt
, 4, TDF_VOPS
);
726 /* Return true if the use of SSA_NAME at statement STMT in block BB is
729 DEF_BB is the block where SSA_NAME was found to be created.
731 IDOM contains immediate dominator information for the flowgraph.
733 CHECK_ABNORMAL is true if the caller wants to check whether this use
734 is flowing through an abnormal edge (only used when checking PHI
737 If NAMES_DEFINED_IN_BB is not NULL, it contains a bitmap of ssa names
738 that are defined before STMT in basic block BB. */
741 verify_use (basic_block bb
, basic_block def_bb
, use_operand_p use_p
,
742 gimple stmt
, bool check_abnormal
, bitmap names_defined_in_bb
)
745 tree ssa_name
= USE_FROM_PTR (use_p
);
747 if (!TREE_VISITED (ssa_name
))
748 if (verify_imm_links (stderr
, ssa_name
))
751 TREE_VISITED (ssa_name
) = 1;
753 if (gimple_nop_p (SSA_NAME_DEF_STMT (ssa_name
))
754 && SSA_NAME_IS_DEFAULT_DEF (ssa_name
))
755 ; /* Default definitions have empty statements. Nothing to do. */
758 error ("missing definition");
761 else if (bb
!= def_bb
762 && !dominated_by_p (CDI_DOMINATORS
, bb
, def_bb
))
764 error ("definition in block %i does not dominate use in block %i",
765 def_bb
->index
, bb
->index
);
768 else if (bb
== def_bb
769 && names_defined_in_bb
!= NULL
770 && !bitmap_bit_p (names_defined_in_bb
, SSA_NAME_VERSION (ssa_name
)))
772 error ("definition in block %i follows the use", def_bb
->index
);
777 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssa_name
))
779 error ("SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set");
783 /* Make sure the use is in an appropriate list by checking the previous
784 element to make sure it's the same. */
785 if (use_p
->prev
== NULL
)
787 error ("no immediate_use list");
793 if (use_p
->prev
->use
== NULL
)
794 listvar
= use_p
->prev
->loc
.ssa_name
;
796 listvar
= USE_FROM_PTR (use_p
->prev
);
797 if (listvar
!= ssa_name
)
799 error ("wrong immediate use list");
806 fprintf (stderr
, "for SSA_NAME: ");
807 print_generic_expr (stderr
, ssa_name
, TDF_VOPS
);
808 fprintf (stderr
, " in statement:\n");
809 print_gimple_stmt (stderr
, stmt
, 0, TDF_VOPS
);
816 /* Return true if any of the arguments for PHI node PHI at block BB is
819 DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
820 version numbers. If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
821 it means that the block in that array slot contains the
822 definition of SSA_NAME. */
825 verify_phi_args (gphi
*phi
, basic_block bb
, basic_block
*definition_block
)
829 size_t i
, phi_num_args
= gimple_phi_num_args (phi
);
831 if (EDGE_COUNT (bb
->preds
) != phi_num_args
)
833 error ("incoming edge count does not match number of PHI arguments");
838 for (i
= 0; i
< phi_num_args
; i
++)
840 use_operand_p op_p
= gimple_phi_arg_imm_use_ptr (phi
, i
);
841 tree op
= USE_FROM_PTR (op_p
);
843 e
= EDGE_PRED (bb
, i
);
847 error ("PHI argument is missing for edge %d->%d",
854 if (TREE_CODE (op
) != SSA_NAME
&& !is_gimple_min_invariant (op
))
856 error ("PHI argument is not SSA_NAME, or invariant");
860 if (TREE_CODE (op
) == SSA_NAME
)
862 err
= verify_ssa_name (op
, virtual_operand_p (gimple_phi_result (phi
)));
863 err
|= verify_use (e
->src
, definition_block
[SSA_NAME_VERSION (op
)],
864 op_p
, phi
, e
->flags
& EDGE_ABNORMAL
, NULL
);
867 if (TREE_CODE (op
) == ADDR_EXPR
)
869 tree base
= TREE_OPERAND (op
, 0);
870 while (handled_component_p (base
))
871 base
= TREE_OPERAND (base
, 0);
872 if ((TREE_CODE (base
) == VAR_DECL
873 || TREE_CODE (base
) == PARM_DECL
874 || TREE_CODE (base
) == RESULT_DECL
)
875 && !TREE_ADDRESSABLE (base
))
877 error ("address taken, but ADDRESSABLE bit not set");
884 error ("wrong edge %d->%d for PHI argument",
885 e
->src
->index
, e
->dest
->index
);
891 fprintf (stderr
, "PHI argument\n");
892 print_generic_stmt (stderr
, op
, TDF_VOPS
);
900 fprintf (stderr
, "for PHI node\n");
901 print_gimple_stmt (stderr
, phi
, 0, TDF_VOPS
|TDF_MEMSYMS
);
909 /* Verify common invariants in the SSA web.
910 TODO: verify the variable annotations. */
913 verify_ssa (bool check_modified_stmt
, bool check_ssa_operands
)
917 basic_block
*definition_block
= XCNEWVEC (basic_block
, num_ssa_names
);
920 enum dom_state orig_dom_state
= dom_info_state (CDI_DOMINATORS
);
921 bitmap names_defined_in_bb
= BITMAP_ALLOC (NULL
);
923 gcc_assert (!need_ssa_update_p (cfun
));
925 timevar_push (TV_TREE_SSA_VERIFY
);
927 /* Keep track of SSA names present in the IL. */
928 for (i
= 1; i
< num_ssa_names
; i
++)
930 tree name
= ssa_name (i
);
934 TREE_VISITED (name
) = 0;
936 verify_ssa_name (name
, virtual_operand_p (name
));
938 stmt
= SSA_NAME_DEF_STMT (name
);
939 if (!gimple_nop_p (stmt
))
941 basic_block bb
= gimple_bb (stmt
);
942 if (verify_def (bb
, definition_block
,
943 name
, stmt
, virtual_operand_p (name
)))
949 calculate_dominance_info (CDI_DOMINATORS
);
951 /* Now verify all the uses and make sure they agree with the definitions
952 found in the previous pass. */
953 FOR_EACH_BB_FN (bb
, cfun
)
958 /* Make sure that all edges have a clear 'aux' field. */
959 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
963 error ("AUX pointer initialized for edge %d->%d", e
->src
->index
,
969 /* Verify the arguments for every PHI node in the block. */
970 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
972 gphi
*phi
= gsi
.phi ();
973 if (verify_phi_args (phi
, bb
, definition_block
))
976 bitmap_set_bit (names_defined_in_bb
,
977 SSA_NAME_VERSION (gimple_phi_result (phi
)));
980 /* Now verify all the uses and vuses in every statement of the block. */
981 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
984 gimple stmt
= gsi_stmt (gsi
);
987 if (check_modified_stmt
&& gimple_modified_p (stmt
))
989 error ("stmt (%p) marked modified after optimization pass: ",
991 print_gimple_stmt (stderr
, stmt
, 0, TDF_VOPS
);
995 if (check_ssa_operands
&& verify_ssa_operands (cfun
, stmt
))
997 print_gimple_stmt (stderr
, stmt
, 0, TDF_VOPS
);
1001 if (gimple_debug_bind_p (stmt
)
1002 && !gimple_debug_bind_has_value_p (stmt
))
1005 FOR_EACH_SSA_USE_OPERAND (use_p
, stmt
, iter
, SSA_OP_USE
|SSA_OP_VUSE
)
1007 op
= USE_FROM_PTR (use_p
);
1008 if (verify_use (bb
, definition_block
[SSA_NAME_VERSION (op
)],
1009 use_p
, stmt
, false, names_defined_in_bb
))
1013 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_ALL_DEFS
)
1015 if (SSA_NAME_DEF_STMT (op
) != stmt
)
1017 error ("SSA_NAME_DEF_STMT is wrong");
1018 fprintf (stderr
, "Expected definition statement:\n");
1019 print_gimple_stmt (stderr
, stmt
, 4, TDF_VOPS
);
1020 fprintf (stderr
, "\nActual definition statement:\n");
1021 print_gimple_stmt (stderr
, SSA_NAME_DEF_STMT (op
),
1025 bitmap_set_bit (names_defined_in_bb
, SSA_NAME_VERSION (op
));
1029 bitmap_clear (names_defined_in_bb
);
1032 free (definition_block
);
1034 /* Restore the dominance information to its prior known state, so
1035 that we do not perturb the compiler's subsequent behavior. */
1036 if (orig_dom_state
== DOM_NONE
)
1037 free_dominance_info (CDI_DOMINATORS
);
1039 set_dom_info_availability (CDI_DOMINATORS
, orig_dom_state
);
1041 BITMAP_FREE (names_defined_in_bb
);
1042 timevar_pop (TV_TREE_SSA_VERIFY
);
1046 internal_error ("verify_ssa failed");
1050 /* Initialize global DFA and SSA structures. */
1053 init_tree_ssa (struct function
*fn
)
1055 fn
->gimple_df
= ggc_cleared_alloc
<gimple_df
> ();
1056 fn
->gimple_df
->default_defs
= hash_table
<ssa_name_hasher
>::create_ggc (20);
1057 pt_solution_reset (&fn
->gimple_df
->escaped
);
1058 init_ssanames (fn
, 0);
1061 /* Do the actions required to initialize internal data structures used
1062 in tree-ssa optimization passes. */
1065 execute_init_datastructures (void)
1067 /* Allocate hash tables, arrays and other structures. */
1068 gcc_assert (!cfun
->gimple_df
);
1069 init_tree_ssa (cfun
);
1075 const pass_data pass_data_init_datastructures
=
1077 GIMPLE_PASS
, /* type */
1078 "*init_datastructures", /* name */
1079 OPTGROUP_NONE
, /* optinfo_flags */
1080 TV_NONE
, /* tv_id */
1081 PROP_cfg
, /* properties_required */
1082 0, /* properties_provided */
1083 0, /* properties_destroyed */
1084 0, /* todo_flags_start */
1085 0, /* todo_flags_finish */
1088 class pass_init_datastructures
: public gimple_opt_pass
1091 pass_init_datastructures (gcc::context
*ctxt
)
1092 : gimple_opt_pass (pass_data_init_datastructures
, ctxt
)
1095 /* opt_pass methods: */
1096 virtual bool gate (function
*fun
)
1098 /* Do nothing for funcions that was produced already in SSA form. */
1099 return !(fun
->curr_properties
& PROP_ssa
);
1102 virtual unsigned int execute (function
*)
1104 return execute_init_datastructures ();
1107 }; // class pass_init_datastructures
1112 make_pass_init_datastructures (gcc::context
*ctxt
)
1114 return new pass_init_datastructures (ctxt
);
1117 /* Deallocate memory associated with SSA data structures for FNDECL. */
1120 delete_tree_ssa (void)
1124 /* We no longer maintain the SSA operand cache at this point. */
1125 if (ssa_operands_active (cfun
))
1126 fini_ssa_operands (cfun
);
1128 cfun
->gimple_df
->default_defs
->empty ();
1129 cfun
->gimple_df
->default_defs
= NULL
;
1130 pt_solution_reset (&cfun
->gimple_df
->escaped
);
1131 if (cfun
->gimple_df
->decls_to_pointers
!= NULL
)
1132 delete cfun
->gimple_df
->decls_to_pointers
;
1133 cfun
->gimple_df
->decls_to_pointers
= NULL
;
1134 cfun
->gimple_df
->modified_noreturn_calls
= NULL
;
1135 cfun
->gimple_df
= NULL
;
1137 /* We no longer need the edge variable maps. */
1138 redirect_edge_var_map_destroy ();
1141 /* Return true if EXPR is a useless type conversion, otherwise return
1145 tree_ssa_useless_type_conversion (tree expr
)
1147 /* If we have an assignment that merely uses a NOP_EXPR to change
1148 the top of the RHS to the type of the LHS and the type conversion
1149 is "safe", then strip away the type conversion so that we can
1150 enter LHS = RHS into the const_and_copies table. */
1151 if (CONVERT_EXPR_P (expr
)
1152 || TREE_CODE (expr
) == VIEW_CONVERT_EXPR
1153 || TREE_CODE (expr
) == NON_LVALUE_EXPR
)
1154 return useless_type_conversion_p
1156 TREE_TYPE (TREE_OPERAND (expr
, 0)));
1161 /* Strip conversions from EXP according to
1162 tree_ssa_useless_type_conversion and return the resulting
1166 tree_ssa_strip_useless_type_conversions (tree exp
)
1168 while (tree_ssa_useless_type_conversion (exp
))
1169 exp
= TREE_OPERAND (exp
, 0);
1174 /* Return true if T, an SSA_NAME, has an undefined value. PARTIAL is what
1175 should be returned if the value is only partially undefined. */
1178 ssa_undefined_value_p (tree t
, bool partial
)
1181 tree var
= SSA_NAME_VAR (t
);
1185 /* Parameters get their initial value from the function entry. */
1186 else if (TREE_CODE (var
) == PARM_DECL
)
1188 /* When returning by reference the return address is actually a hidden
1190 else if (TREE_CODE (var
) == RESULT_DECL
&& DECL_BY_REFERENCE (var
))
1192 /* Hard register variables get their initial value from the ether. */
1193 else if (TREE_CODE (var
) == VAR_DECL
&& DECL_HARD_REGISTER (var
))
1196 /* The value is undefined iff its definition statement is empty. */
1197 def_stmt
= SSA_NAME_DEF_STMT (t
);
1198 if (gimple_nop_p (def_stmt
))
1201 /* Check if the complex was not only partially defined. */
1202 if (partial
&& is_gimple_assign (def_stmt
)
1203 && gimple_assign_rhs_code (def_stmt
) == COMPLEX_EXPR
)
1207 rhs1
= gimple_assign_rhs1 (def_stmt
);
1208 rhs2
= gimple_assign_rhs2 (def_stmt
);
1209 return (TREE_CODE (rhs1
) == SSA_NAME
&& ssa_undefined_value_p (rhs1
))
1210 || (TREE_CODE (rhs2
) == SSA_NAME
&& ssa_undefined_value_p (rhs2
));
1216 /* If necessary, rewrite the base of the reference tree *TP from
1217 a MEM_REF to a plain or converted symbol. */
1220 maybe_rewrite_mem_ref_base (tree
*tp
, bitmap suitable_for_renaming
)
1224 while (handled_component_p (*tp
))
1225 tp
= &TREE_OPERAND (*tp
, 0);
1226 if (TREE_CODE (*tp
) == MEM_REF
1227 && TREE_CODE (TREE_OPERAND (*tp
, 0)) == ADDR_EXPR
1228 && (sym
= TREE_OPERAND (TREE_OPERAND (*tp
, 0), 0))
1230 && !TREE_ADDRESSABLE (sym
)
1231 && bitmap_bit_p (suitable_for_renaming
, DECL_UID (sym
)))
1233 if (TREE_CODE (TREE_TYPE (sym
)) == VECTOR_TYPE
1234 && useless_type_conversion_p (TREE_TYPE (*tp
),
1235 TREE_TYPE (TREE_TYPE (sym
)))
1236 && multiple_of_p (sizetype
, TREE_OPERAND (*tp
, 1),
1237 TYPE_SIZE_UNIT (TREE_TYPE (*tp
))))
1239 *tp
= build3 (BIT_FIELD_REF
, TREE_TYPE (*tp
), sym
,
1240 TYPE_SIZE (TREE_TYPE (*tp
)),
1241 int_const_binop (MULT_EXPR
,
1242 bitsize_int (BITS_PER_UNIT
),
1243 TREE_OPERAND (*tp
, 1)));
1245 else if (TREE_CODE (TREE_TYPE (sym
)) == COMPLEX_TYPE
1246 && useless_type_conversion_p (TREE_TYPE (*tp
),
1247 TREE_TYPE (TREE_TYPE (sym
))))
1249 *tp
= build1 (integer_zerop (TREE_OPERAND (*tp
, 1))
1250 ? REALPART_EXPR
: IMAGPART_EXPR
,
1251 TREE_TYPE (*tp
), sym
);
1253 else if (integer_zerop (TREE_OPERAND (*tp
, 1)))
1255 if (!useless_type_conversion_p (TREE_TYPE (*tp
),
1257 *tp
= build1 (VIEW_CONVERT_EXPR
,
1258 TREE_TYPE (*tp
), sym
);
1265 /* For a tree REF return its base if it is the base of a MEM_REF
1266 that cannot be rewritten into SSA form. Otherwise return NULL_TREE. */
1269 non_rewritable_mem_ref_base (tree ref
)
1273 /* A plain decl does not need it set. */
1277 while (handled_component_p (base
))
1278 base
= TREE_OPERAND (base
, 0);
1280 /* But watch out for MEM_REFs we cannot lower to a
1281 VIEW_CONVERT_EXPR or a BIT_FIELD_REF. */
1282 if (TREE_CODE (base
) == MEM_REF
1283 && TREE_CODE (TREE_OPERAND (base
, 0)) == ADDR_EXPR
)
1285 tree decl
= TREE_OPERAND (TREE_OPERAND (base
, 0), 0);
1286 if ((TREE_CODE (TREE_TYPE (decl
)) == VECTOR_TYPE
1287 || TREE_CODE (TREE_TYPE (decl
)) == COMPLEX_TYPE
)
1288 && useless_type_conversion_p (TREE_TYPE (base
),
1289 TREE_TYPE (TREE_TYPE (decl
)))
1290 && wi::fits_uhwi_p (mem_ref_offset (base
))
1291 && wi::gtu_p (wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (decl
))),
1292 mem_ref_offset (base
))
1293 && multiple_of_p (sizetype
, TREE_OPERAND (base
, 1),
1294 TYPE_SIZE_UNIT (TREE_TYPE (base
))))
1297 && (!integer_zerop (TREE_OPERAND (base
, 1))
1298 || (DECL_SIZE (decl
)
1299 != TYPE_SIZE (TREE_TYPE (base
)))
1300 || TREE_THIS_VOLATILE (decl
) != TREE_THIS_VOLATILE (base
)))
1307 /* For an lvalue tree LHS return true if it cannot be rewritten into SSA form.
1308 Otherwise return true. */
1311 non_rewritable_lvalue_p (tree lhs
)
1313 /* A plain decl is always rewritable. */
1317 /* We can re-write REALPART_EXPR and IMAGPART_EXPR sets in
1318 a reasonably efficient manner... */
1319 if ((TREE_CODE (lhs
) == REALPART_EXPR
1320 || TREE_CODE (lhs
) == IMAGPART_EXPR
)
1321 && DECL_P (TREE_OPERAND (lhs
, 0)))
1324 /* A decl that is wrapped inside a MEM-REF that covers
1325 it full is also rewritable.
1326 ??? The following could be relaxed allowing component
1327 references that do not change the access size. */
1328 if (TREE_CODE (lhs
) == MEM_REF
1329 && TREE_CODE (TREE_OPERAND (lhs
, 0)) == ADDR_EXPR
1330 && integer_zerop (TREE_OPERAND (lhs
, 1)))
1332 tree decl
= TREE_OPERAND (TREE_OPERAND (lhs
, 0), 0);
1334 && DECL_SIZE (decl
) == TYPE_SIZE (TREE_TYPE (lhs
))
1335 && (TREE_THIS_VOLATILE (decl
) == TREE_THIS_VOLATILE (lhs
)))
1342 /* When possible, clear TREE_ADDRESSABLE bit or set DECL_GIMPLE_REG_P bit and
1343 mark the variable VAR for conversion into SSA. Return true when updating
1344 stmts is required. */
1347 maybe_optimize_var (tree var
, bitmap addresses_taken
, bitmap not_reg_needs
,
1348 bitmap suitable_for_renaming
)
1350 /* Global Variables, result decls cannot be changed. */
1351 if (is_global_var (var
)
1352 || TREE_CODE (var
) == RESULT_DECL
1353 || bitmap_bit_p (addresses_taken
, DECL_UID (var
)))
1356 if (TREE_ADDRESSABLE (var
)
1357 /* Do not change TREE_ADDRESSABLE if we need to preserve var as
1358 a non-register. Otherwise we are confused and forget to
1359 add virtual operands for it. */
1360 && (!is_gimple_reg_type (TREE_TYPE (var
))
1361 || TREE_CODE (TREE_TYPE (var
)) == VECTOR_TYPE
1362 || TREE_CODE (TREE_TYPE (var
)) == COMPLEX_TYPE
1363 || !bitmap_bit_p (not_reg_needs
, DECL_UID (var
))))
1365 TREE_ADDRESSABLE (var
) = 0;
1366 if (is_gimple_reg (var
))
1367 bitmap_set_bit (suitable_for_renaming
, DECL_UID (var
));
1370 fprintf (dump_file
, "No longer having address taken: ");
1371 print_generic_expr (dump_file
, var
, 0);
1372 fprintf (dump_file
, "\n");
1376 if (!DECL_GIMPLE_REG_P (var
)
1377 && !bitmap_bit_p (not_reg_needs
, DECL_UID (var
))
1378 && (TREE_CODE (TREE_TYPE (var
)) == COMPLEX_TYPE
1379 || TREE_CODE (TREE_TYPE (var
)) == VECTOR_TYPE
)
1380 && !TREE_THIS_VOLATILE (var
)
1381 && (TREE_CODE (var
) != VAR_DECL
|| !DECL_HARD_REGISTER (var
)))
1383 DECL_GIMPLE_REG_P (var
) = 1;
1384 bitmap_set_bit (suitable_for_renaming
, DECL_UID (var
));
1387 fprintf (dump_file
, "Now a gimple register: ");
1388 print_generic_expr (dump_file
, var
, 0);
1389 fprintf (dump_file
, "\n");
1394 /* Compute TREE_ADDRESSABLE and DECL_GIMPLE_REG_P for local variables. */
1397 execute_update_addresses_taken (void)
1400 bitmap addresses_taken
= BITMAP_ALLOC (NULL
);
1401 bitmap not_reg_needs
= BITMAP_ALLOC (NULL
);
1402 bitmap suitable_for_renaming
= BITMAP_ALLOC (NULL
);
1406 timevar_push (TV_ADDRESS_TAKEN
);
1408 /* Collect into ADDRESSES_TAKEN all variables whose address is taken within
1409 the function body. */
1410 FOR_EACH_BB_FN (bb
, cfun
)
1412 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);
1415 gimple stmt
= gsi_stmt (gsi
);
1416 enum gimple_code code
= gimple_code (stmt
);
1419 /* Note all addresses taken by the stmt. */
1420 gimple_ior_addresses_taken (addresses_taken
, stmt
);
1422 /* If we have a call or an assignment, see if the lhs contains
1423 a local decl that requires not to be a gimple register. */
1424 if (code
== GIMPLE_ASSIGN
|| code
== GIMPLE_CALL
)
1426 tree lhs
= gimple_get_lhs (stmt
);
1428 && TREE_CODE (lhs
) != SSA_NAME
1429 && non_rewritable_lvalue_p (lhs
))
1431 decl
= get_base_address (lhs
);
1433 bitmap_set_bit (not_reg_needs
, DECL_UID (decl
));
1437 if (gimple_assign_single_p (stmt
))
1439 tree rhs
= gimple_assign_rhs1 (stmt
);
1440 if ((decl
= non_rewritable_mem_ref_base (rhs
)))
1441 bitmap_set_bit (not_reg_needs
, DECL_UID (decl
));
1444 else if (code
== GIMPLE_CALL
)
1446 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
1448 tree arg
= gimple_call_arg (stmt
, i
);
1449 if ((decl
= non_rewritable_mem_ref_base (arg
)))
1450 bitmap_set_bit (not_reg_needs
, DECL_UID (decl
));
1454 else if (code
== GIMPLE_ASM
)
1456 gasm
*asm_stmt
= as_a
<gasm
*> (stmt
);
1457 for (i
= 0; i
< gimple_asm_noutputs (asm_stmt
); ++i
)
1459 tree link
= gimple_asm_output_op (asm_stmt
, i
);
1460 tree lhs
= TREE_VALUE (link
);
1461 if (TREE_CODE (lhs
) != SSA_NAME
)
1463 decl
= get_base_address (lhs
);
1465 && (non_rewritable_lvalue_p (lhs
)
1466 /* We cannot move required conversions from
1467 the lhs to the rhs in asm statements, so
1468 require we do not need any. */
1469 || !useless_type_conversion_p
1470 (TREE_TYPE (lhs
), TREE_TYPE (decl
))))
1471 bitmap_set_bit (not_reg_needs
, DECL_UID (decl
));
1474 for (i
= 0; i
< gimple_asm_ninputs (asm_stmt
); ++i
)
1476 tree link
= gimple_asm_input_op (asm_stmt
, i
);
1477 if ((decl
= non_rewritable_mem_ref_base (TREE_VALUE (link
))))
1478 bitmap_set_bit (not_reg_needs
, DECL_UID (decl
));
1483 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
1487 gphi
*phi
= gsi
.phi ();
1489 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
1491 tree op
= PHI_ARG_DEF (phi
, i
), var
;
1492 if (TREE_CODE (op
) == ADDR_EXPR
1493 && (var
= get_base_address (TREE_OPERAND (op
, 0))) != NULL
1495 bitmap_set_bit (addresses_taken
, DECL_UID (var
));
1500 /* We cannot iterate over all referenced vars because that can contain
1501 unused vars from BLOCK trees, which causes code generation differences
1503 for (var
= DECL_ARGUMENTS (cfun
->decl
); var
; var
= DECL_CHAIN (var
))
1504 maybe_optimize_var (var
, addresses_taken
, not_reg_needs
,
1505 suitable_for_renaming
);
1507 FOR_EACH_VEC_SAFE_ELT (cfun
->local_decls
, i
, var
)
1508 maybe_optimize_var (var
, addresses_taken
, not_reg_needs
,
1509 suitable_for_renaming
);
1511 /* Operand caches need to be recomputed for operands referencing the updated
1512 variables and operands need to be rewritten to expose bare symbols. */
1513 if (!bitmap_empty_p (suitable_for_renaming
))
1515 FOR_EACH_BB_FN (bb
, cfun
)
1516 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);)
1518 gimple stmt
= gsi_stmt (gsi
);
1520 /* Re-write TARGET_MEM_REFs of symbols we want to
1521 rewrite into SSA form. */
1522 if (gimple_assign_single_p (stmt
))
1524 tree lhs
= gimple_assign_lhs (stmt
);
1525 tree rhs
, *rhsp
= gimple_assign_rhs1_ptr (stmt
);
1528 /* Rewrite LHS IMAG/REALPART_EXPR similar to
1529 gimplify_modify_expr_complex_part. */
1530 if ((TREE_CODE (lhs
) == IMAGPART_EXPR
1531 || TREE_CODE (lhs
) == REALPART_EXPR
)
1532 && DECL_P (TREE_OPERAND (lhs
, 0))
1533 && bitmap_bit_p (suitable_for_renaming
,
1534 DECL_UID (TREE_OPERAND (lhs
, 0))))
1536 tree other
= make_ssa_name (TREE_TYPE (lhs
));
1537 tree lrhs
= build1 (TREE_CODE (lhs
) == IMAGPART_EXPR
1538 ? REALPART_EXPR
: IMAGPART_EXPR
,
1540 TREE_OPERAND (lhs
, 0));
1541 gimple load
= gimple_build_assign (other
, lrhs
);
1542 location_t loc
= gimple_location (stmt
);
1543 gimple_set_location (load
, loc
);
1544 gimple_set_vuse (load
, gimple_vuse (stmt
));
1545 gsi_insert_before (&gsi
, load
, GSI_SAME_STMT
);
1546 gimple_assign_set_lhs (stmt
, TREE_OPERAND (lhs
, 0));
1547 gimple_assign_set_rhs_with_ops
1548 (&gsi
, COMPLEX_EXPR
,
1549 TREE_CODE (lhs
) == IMAGPART_EXPR
1550 ? other
: gimple_assign_rhs1 (stmt
),
1551 TREE_CODE (lhs
) == IMAGPART_EXPR
1552 ? gimple_assign_rhs1 (stmt
) : other
, NULL_TREE
);
1553 stmt
= gsi_stmt (gsi
);
1554 unlink_stmt_vdef (stmt
);
1559 /* We shouldn't have any fancy wrapping of
1560 component-refs on the LHS, but look through
1561 VIEW_CONVERT_EXPRs as that is easy. */
1562 while (TREE_CODE (lhs
) == VIEW_CONVERT_EXPR
)
1563 lhs
= TREE_OPERAND (lhs
, 0);
1564 if (TREE_CODE (lhs
) == MEM_REF
1565 && TREE_CODE (TREE_OPERAND (lhs
, 0)) == ADDR_EXPR
1566 && integer_zerop (TREE_OPERAND (lhs
, 1))
1567 && (sym
= TREE_OPERAND (TREE_OPERAND (lhs
, 0), 0))
1569 && !TREE_ADDRESSABLE (sym
)
1570 && bitmap_bit_p (suitable_for_renaming
, DECL_UID (sym
)))
1573 lhs
= gimple_assign_lhs (stmt
);
1575 /* Rewrite the RHS and make sure the resulting assignment
1576 is validly typed. */
1577 maybe_rewrite_mem_ref_base (rhsp
, suitable_for_renaming
);
1578 rhs
= gimple_assign_rhs1 (stmt
);
1579 if (gimple_assign_lhs (stmt
) != lhs
1580 && !useless_type_conversion_p (TREE_TYPE (lhs
),
1582 rhs
= fold_build1 (VIEW_CONVERT_EXPR
,
1583 TREE_TYPE (lhs
), rhs
);
1585 if (gimple_assign_lhs (stmt
) != lhs
)
1586 gimple_assign_set_lhs (stmt
, lhs
);
1588 if (gimple_assign_rhs1 (stmt
) != rhs
)
1590 gimple_stmt_iterator gsi
= gsi_for_stmt (stmt
);
1591 gimple_assign_set_rhs_from_tree (&gsi
, rhs
);
1595 else if (gimple_code (stmt
) == GIMPLE_CALL
)
1598 for (i
= 0; i
< gimple_call_num_args (stmt
); ++i
)
1600 tree
*argp
= gimple_call_arg_ptr (stmt
, i
);
1601 maybe_rewrite_mem_ref_base (argp
, suitable_for_renaming
);
1605 else if (gimple_code (stmt
) == GIMPLE_ASM
)
1607 gasm
*asm_stmt
= as_a
<gasm
*> (stmt
);
1609 for (i
= 0; i
< gimple_asm_noutputs (asm_stmt
); ++i
)
1611 tree link
= gimple_asm_output_op (asm_stmt
, i
);
1612 maybe_rewrite_mem_ref_base (&TREE_VALUE (link
),
1613 suitable_for_renaming
);
1615 for (i
= 0; i
< gimple_asm_ninputs (asm_stmt
); ++i
)
1617 tree link
= gimple_asm_input_op (asm_stmt
, i
);
1618 maybe_rewrite_mem_ref_base (&TREE_VALUE (link
),
1619 suitable_for_renaming
);
1623 else if (gimple_debug_bind_p (stmt
)
1624 && gimple_debug_bind_has_value_p (stmt
))
1626 tree
*valuep
= gimple_debug_bind_get_value_ptr (stmt
);
1628 maybe_rewrite_mem_ref_base (valuep
, suitable_for_renaming
);
1629 decl
= non_rewritable_mem_ref_base (*valuep
);
1631 && bitmap_bit_p (suitable_for_renaming
, DECL_UID (decl
)))
1632 gimple_debug_bind_reset_value (stmt
);
1635 if (gimple_references_memory_p (stmt
)
1636 || is_gimple_debug (stmt
))
1642 /* Update SSA form here, we are called as non-pass as well. */
1643 if (number_of_loops (cfun
) > 1
1644 && loops_state_satisfies_p (LOOP_CLOSED_SSA
))
1645 rewrite_into_loop_closed_ssa (NULL
, TODO_update_ssa
);
1647 update_ssa (TODO_update_ssa
);
1650 BITMAP_FREE (not_reg_needs
);
1651 BITMAP_FREE (addresses_taken
);
1652 BITMAP_FREE (suitable_for_renaming
);
1653 timevar_pop (TV_ADDRESS_TAKEN
);
1658 const pass_data pass_data_update_address_taken
=
1660 GIMPLE_PASS
, /* type */
1661 "addressables", /* name */
1662 OPTGROUP_NONE
, /* optinfo_flags */
1663 TV_ADDRESS_TAKEN
, /* tv_id */
1664 PROP_ssa
, /* properties_required */
1665 0, /* properties_provided */
1666 0, /* properties_destroyed */
1667 0, /* todo_flags_start */
1668 TODO_update_address_taken
, /* todo_flags_finish */
1671 class pass_update_address_taken
: public gimple_opt_pass
1674 pass_update_address_taken (gcc::context
*ctxt
)
1675 : gimple_opt_pass (pass_data_update_address_taken
, ctxt
)
1678 /* opt_pass methods: */
1680 }; // class pass_update_address_taken
1685 make_pass_update_address_taken (gcc::context
*ctxt
)
1687 return new pass_update_address_taken (ctxt
);