1 /* Liveness for SSA trees.
2 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
24 #include "coretypes.h"
28 #include "basic-block.h"
30 #include "diagnostic.h"
32 #include "tree-flow.h"
33 #include "tree-gimple.h"
34 #include "tree-inline.h"
38 #include "tree-dump.h"
39 #include "tree-ssa-live.h"
43 static void live_worklist (tree_live_info_p
, int *, int);
44 static tree_live_info_p
new_tree_live_info (var_map
);
45 static inline void set_if_valid (var_map
, bitmap
, tree
);
46 static inline void add_livein_if_notdef (tree_live_info_p
, bitmap
,
48 static inline void register_ssa_partition (var_map
, tree
, bool);
49 static inline void add_conflicts_if_valid (tpa_p
, conflict_graph
,
50 var_map
, bitmap
, tree
);
51 static partition_pair_p
find_partition_pair (coalesce_list_p
, int, int, bool);
53 /* This is where the mapping from SSA version number to real storage variable
56 All SSA versions of the same variable may not ultimately be mapped back to
57 the same real variable. In that instance, we need to detect the live
58 range overlap, and give one of the variable new storage. The vector
59 'partition_to_var' tracks which partition maps to which variable.
61 Given a VAR, it is sometimes desirable to know which partition that VAR
62 represents. There is an additional field in the variable annotation to
63 track that information. */
65 /* Create a variable partition map of SIZE, initialize and return it. */
68 init_var_map (int size
)
72 map
= (var_map
) xmalloc (sizeof (struct _var_map
));
73 map
->var_partition
= partition_new (size
);
75 = (tree
*)xmalloc (size
* sizeof (tree
));
76 memset (map
->partition_to_var
, 0, size
* sizeof (tree
));
78 map
->partition_to_compact
= NULL
;
79 map
->compact_to_partition
= NULL
;
80 map
->num_partitions
= size
;
81 map
->partition_size
= size
;
82 map
->ref_count
= NULL
;
87 /* Free memory associated with MAP. */
90 delete_var_map (var_map map
)
92 free (map
->partition_to_var
);
93 partition_delete (map
->var_partition
);
94 if (map
->partition_to_compact
)
95 free (map
->partition_to_compact
);
96 if (map
->compact_to_partition
)
97 free (map
->compact_to_partition
);
99 free (map
->ref_count
);
104 /* This function will combine the partitions in MAP for VAR1 and VAR2. It
105 Returns the partition which represents the new partition. If the two
106 partitions cannot be combined, NO_PARTITION is returned. */
109 var_union (var_map map
, tree var1
, tree var2
)
112 tree root_var
= NULL_TREE
;
113 tree other_var
= NULL_TREE
;
115 /* This is independent of partition_to_compact. If partition_to_compact is
116 on, then whichever one of these partitions is absorbed will never have a
117 dereference into the partition_to_compact array any more. */
119 if (TREE_CODE (var1
) == SSA_NAME
)
120 p1
= partition_find (map
->var_partition
, SSA_NAME_VERSION (var1
));
123 p1
= var_to_partition (map
, var1
);
124 if (map
->compact_to_partition
)
125 p1
= map
->compact_to_partition
[p1
];
129 if (TREE_CODE (var2
) == SSA_NAME
)
130 p2
= partition_find (map
->var_partition
, SSA_NAME_VERSION (var2
));
133 p2
= var_to_partition (map
, var2
);
134 if (map
->compact_to_partition
)
135 p2
= map
->compact_to_partition
[p2
];
137 /* If there is no root_var set, or it's not a user variable, set the
138 root_var to this one. */
139 if (!root_var
|| (DECL_P (root_var
) && DECL_IGNORED_P (root_var
)))
141 other_var
= root_var
;
148 gcc_assert (p1
!= NO_PARTITION
);
149 gcc_assert (p2
!= NO_PARTITION
);
154 p3
= partition_union (map
->var_partition
, p1
, p2
);
156 if (map
->partition_to_compact
)
157 p3
= map
->partition_to_compact
[p3
];
160 change_partition_var (map
, root_var
, p3
);
162 change_partition_var (map
, other_var
, p3
);
168 /* Compress the partition numbers in MAP such that they fall in the range
169 0..(num_partitions-1) instead of wherever they turned out during
170 the partitioning exercise. This removes any references to unused
171 partitions, thereby allowing bitmaps and other vectors to be much
172 denser. Compression type is controlled by FLAGS.
174 This is implemented such that compaction doesn't affect partitioning.
175 Ie., once partitions are created and possibly merged, running one
176 or more different kind of compaction will not affect the partitions
177 themselves. Their index might change, but all the same variables will
178 still be members of the same partition group. This allows work on reduced
179 sets, and no loss of information when a larger set is later desired.
181 In particular, coalescing can work on partitions which have 2 or more
182 definitions, and then 'recompact' later to include all the single
183 definitions for assignment to program variables. */
186 compact_var_map (var_map map
, int flags
)
189 int tmp
, root
, root_i
;
190 unsigned int x
, limit
, count
;
192 root_var_p rv
= NULL
;
194 limit
= map
->partition_size
;
195 used
= sbitmap_alloc (limit
);
198 /* Already compressed? Abandon the old one. */
199 if (map
->partition_to_compact
)
201 free (map
->partition_to_compact
);
202 map
->partition_to_compact
= NULL
;
204 if (map
->compact_to_partition
)
206 free (map
->compact_to_partition
);
207 map
->compact_to_partition
= NULL
;
210 map
->num_partitions
= map
->partition_size
;
212 if (flags
& VARMAP_NO_SINGLE_DEFS
)
213 rv
= root_var_init (map
);
215 map
->partition_to_compact
= (int *)xmalloc (limit
* sizeof (int));
216 memset (map
->partition_to_compact
, 0xff, (limit
* sizeof (int)));
218 /* Find out which partitions are actually referenced. */
220 for (x
= 0; x
< limit
; x
++)
222 tmp
= partition_find (map
->var_partition
, x
);
223 if (!TEST_BIT (used
, tmp
) && map
->partition_to_var
[tmp
] != NULL_TREE
)
225 /* It is referenced, check to see if there is more than one version
226 in the root_var table, if one is available. */
229 root
= root_var_find (rv
, tmp
);
230 root_i
= root_var_first_partition (rv
, root
);
231 /* If there is only one, don't include this in the compaction. */
232 if (root_var_next_partition (rv
, root_i
) == ROOT_VAR_NONE
)
240 /* Build a compacted partitioning. */
243 sbitmap_iterator sbi
;
245 map
->compact_to_partition
= (int *)xmalloc (count
* sizeof (int));
247 /* SSA renaming begins at 1, so skip 0 when compacting. */
248 EXECUTE_IF_SET_IN_SBITMAP (used
, 1, x
, sbi
)
250 map
->partition_to_compact
[x
] = count
;
251 map
->compact_to_partition
[count
] = x
;
252 var
= map
->partition_to_var
[x
];
253 if (TREE_CODE (var
) != SSA_NAME
)
254 change_partition_var (map
, var
, count
);
260 free (map
->partition_to_compact
);
261 map
->partition_to_compact
= NULL
;
264 map
->num_partitions
= count
;
267 root_var_delete (rv
);
272 /* This function is used to change the representative variable in MAP for VAR's
273 partition from an SSA_NAME variable to a regular variable. This allows
274 partitions to be mapped back to real variables. */
277 change_partition_var (var_map map
, tree var
, int part
)
281 gcc_assert (TREE_CODE (var
) != SSA_NAME
);
284 ann
->out_of_ssa_tag
= 1;
285 VAR_ANN_PARTITION (ann
) = part
;
286 if (map
->compact_to_partition
)
287 map
->partition_to_var
[map
->compact_to_partition
[part
]] = var
;
290 static inline void mark_all_vars_used (tree
*);
292 /* Helper function for mark_all_vars_used, called via walk_tree. */
295 mark_all_vars_used_1 (tree
*tp
, int *walk_subtrees
,
296 void *data ATTRIBUTE_UNUSED
)
300 if (TREE_CODE (t
) == SSA_NAME
)
301 t
= SSA_NAME_VAR (t
);
303 /* Ignore TREE_ORIGINAL for TARGET_MEM_REFS, as well as other
304 fields that do not contain vars. */
305 if (TREE_CODE (t
) == TARGET_MEM_REF
)
307 mark_all_vars_used (&TMR_SYMBOL (t
));
308 mark_all_vars_used (&TMR_BASE (t
));
309 mark_all_vars_used (&TMR_INDEX (t
));
314 /* Only need to mark VAR_DECLS; parameters and return results are not
315 eliminated as unused. */
316 if (TREE_CODE (t
) == VAR_DECL
)
319 if (IS_TYPE_OR_DECL_P (t
))
325 /* Mark all VAR_DECLS under *EXPR_P as used, so that they won't be
326 eliminated during the tree->rtl conversion process. */
329 mark_all_vars_used (tree
*expr_p
)
331 walk_tree (expr_p
, mark_all_vars_used_1
, NULL
, NULL
);
335 /* Remove local variables that are not referenced in the IL. */
338 remove_unused_locals (void)
343 /* Assume all locals are unused. */
344 for (t
= cfun
->unexpanded_var_list
; t
; t
= TREE_CHAIN (t
))
346 tree var
= TREE_VALUE (t
);
347 if (TREE_CODE (var
) != FUNCTION_DECL
349 var_ann (var
)->used
= false;
352 /* Walk the CFG marking all referenced symbols. */
355 block_stmt_iterator bsi
;
358 /* Walk the statements. */
359 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
360 mark_all_vars_used (bsi_stmt_ptr (bsi
));
362 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
367 /* No point processing globals. */
368 if (is_global_var (SSA_NAME_VAR (PHI_RESULT (phi
))))
371 def
= PHI_RESULT (phi
);
372 mark_all_vars_used (&def
);
374 FOR_EACH_PHI_ARG (arg_p
, phi
, i
, SSA_OP_ALL_USES
)
376 tree arg
= USE_FROM_PTR (arg_p
);
377 mark_all_vars_used (&arg
);
382 /* Remove unmarked vars and clear used flag. */
383 for (cell
= &cfun
->unexpanded_var_list
; *cell
; )
385 tree var
= TREE_VALUE (*cell
);
388 if (TREE_CODE (var
) != FUNCTION_DECL
389 && (!(ann
= var_ann (var
))
392 *cell
= TREE_CHAIN (*cell
);
396 cell
= &TREE_CHAIN (*cell
);
400 /* This function looks through the program and uses FLAGS to determine what
401 SSA versioned variables are given entries in a new partition table. This
402 new partition map is returned. */
405 create_ssa_var_map (int flags
)
407 block_stmt_iterator bsi
;
413 #ifdef ENABLE_CHECKING
414 bitmap used_in_real_ops
;
415 bitmap used_in_virtual_ops
;
418 map
= init_var_map (num_ssa_names
+ 1);
420 #ifdef ENABLE_CHECKING
421 used_in_real_ops
= BITMAP_ALLOC (NULL
);
422 used_in_virtual_ops
= BITMAP_ALLOC (NULL
);
425 if (flags
& SSA_VAR_MAP_REF_COUNT
)
428 = (int *)xmalloc (((num_ssa_names
+ 1) * sizeof (int)));
429 memset (map
->ref_count
, 0, (num_ssa_names
+ 1) * sizeof (int));
436 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
439 register_ssa_partition (map
, PHI_RESULT (phi
), false);
440 for (i
= 0; i
< PHI_NUM_ARGS (phi
); i
++)
442 arg
= PHI_ARG_DEF (phi
, i
);
443 if (TREE_CODE (arg
) == SSA_NAME
)
444 register_ssa_partition (map
, arg
, true);
446 mark_all_vars_used (&PHI_ARG_DEF_TREE (phi
, i
));
450 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
452 stmt
= bsi_stmt (bsi
);
454 /* Register USE and DEF operands in each statement. */
455 FOR_EACH_SSA_TREE_OPERAND (use
, stmt
, iter
, SSA_OP_USE
)
457 register_ssa_partition (map
, use
, true);
459 #ifdef ENABLE_CHECKING
460 bitmap_set_bit (used_in_real_ops
, DECL_UID (SSA_NAME_VAR (use
)));
464 FOR_EACH_SSA_TREE_OPERAND (dest
, stmt
, iter
, SSA_OP_DEF
)
466 register_ssa_partition (map
, dest
, false);
468 #ifdef ENABLE_CHECKING
469 bitmap_set_bit (used_in_real_ops
, DECL_UID (SSA_NAME_VAR (dest
)));
473 #ifdef ENABLE_CHECKING
474 /* Validate that virtual ops don't get used in funny ways. */
475 FOR_EACH_SSA_TREE_OPERAND (use
, stmt
, iter
,
476 SSA_OP_VIRTUAL_USES
| SSA_OP_VMUSTDEF
)
478 bitmap_set_bit (used_in_virtual_ops
,
479 DECL_UID (SSA_NAME_VAR (use
)));
482 #endif /* ENABLE_CHECKING */
484 mark_all_vars_used (bsi_stmt_ptr (bsi
));
488 #if defined ENABLE_CHECKING
491 bitmap both
= BITMAP_ALLOC (NULL
);
492 bitmap_and (both
, used_in_real_ops
, used_in_virtual_ops
);
493 if (!bitmap_empty_p (both
))
497 EXECUTE_IF_SET_IN_BITMAP (both
, 0, i
, bi
)
498 fprintf (stderr
, "Variable %s used in real and virtual operands\n",
499 get_name (referenced_var (i
)));
500 internal_error ("SSA corruption");
503 BITMAP_FREE (used_in_real_ops
);
504 BITMAP_FREE (used_in_virtual_ops
);
513 /* Allocate and return a new live range information object base on MAP. */
515 static tree_live_info_p
516 new_tree_live_info (var_map map
)
518 tree_live_info_p live
;
521 live
= (tree_live_info_p
) xmalloc (sizeof (struct tree_live_info_d
));
523 live
->num_blocks
= last_basic_block
;
525 live
->global
= BITMAP_ALLOC (NULL
);
527 live
->livein
= (bitmap
*)xmalloc (num_var_partitions (map
) * sizeof (bitmap
));
528 for (x
= 0; x
< num_var_partitions (map
); x
++)
529 live
->livein
[x
] = BITMAP_ALLOC (NULL
);
531 /* liveout is deferred until it is actually requested. */
532 live
->liveout
= NULL
;
537 /* Free storage for live range info object LIVE. */
540 delete_tree_live_info (tree_live_info_p live
)
545 for (x
= live
->num_blocks
- 1; x
>= 0; x
--)
546 BITMAP_FREE (live
->liveout
[x
]);
547 free (live
->liveout
);
551 for (x
= num_var_partitions (live
->map
) - 1; x
>= 0; x
--)
552 BITMAP_FREE (live
->livein
[x
]);
556 BITMAP_FREE (live
->global
);
562 /* Using LIVE, fill in all the live-on-entry blocks between the defs and uses
563 for partition I. STACK is a varray used for temporary memory which is
564 passed in rather than being allocated on every call. */
567 live_worklist (tree_live_info_p live
, int *stack
, int i
)
571 basic_block def_bb
= NULL
;
573 var_map map
= live
->map
;
578 var
= partition_to_var (map
, i
);
579 if (SSA_NAME_DEF_STMT (var
))
580 def_bb
= bb_for_stmt (SSA_NAME_DEF_STMT (var
));
582 EXECUTE_IF_SET_IN_BITMAP (live
->livein
[i
], 0, b
, bi
)
591 FOR_EACH_EDGE (e
, ei
, BASIC_BLOCK (b
)->preds
)
592 if (e
->src
!= ENTRY_BLOCK_PTR
)
594 /* Its not live on entry to the block its defined in. */
595 if (e
->src
== def_bb
)
597 if (!bitmap_bit_p (live
->livein
[i
], e
->src
->index
))
599 bitmap_set_bit (live
->livein
[i
], e
->src
->index
);
600 *tos
++ = e
->src
->index
;
607 /* If VAR is in a partition of MAP, set the bit for that partition in VEC. */
610 set_if_valid (var_map map
, bitmap vec
, tree var
)
612 int p
= var_to_partition (map
, var
);
613 if (p
!= NO_PARTITION
)
614 bitmap_set_bit (vec
, p
);
618 /* If VAR is in a partition and it isn't defined in DEF_VEC, set the livein and
619 global bit for it in the LIVE object. BB is the block being processed. */
622 add_livein_if_notdef (tree_live_info_p live
, bitmap def_vec
,
623 tree var
, basic_block bb
)
625 int p
= var_to_partition (live
->map
, var
);
626 if (p
== NO_PARTITION
|| bb
== ENTRY_BLOCK_PTR
)
628 if (!bitmap_bit_p (def_vec
, p
))
630 bitmap_set_bit (live
->livein
[p
], bb
->index
);
631 bitmap_set_bit (live
->global
, p
);
636 /* Given partition map MAP, calculate all the live on entry bitmaps for
637 each basic block. Return a live info object. */
640 calculate_live_on_entry (var_map map
)
642 tree_live_info_p live
;
650 block_stmt_iterator bsi
;
653 #ifdef ENABLE_CHECKING
658 saw_def
= BITMAP_ALLOC (NULL
);
660 live
= new_tree_live_info (map
);
664 bitmap_clear (saw_def
);
666 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
668 for (i
= 0; i
< (unsigned)PHI_NUM_ARGS (phi
); i
++)
670 var
= PHI_ARG_DEF (phi
, i
);
671 if (!phi_ssa_name_p (var
))
673 stmt
= SSA_NAME_DEF_STMT (var
);
674 e
= EDGE_PRED (bb
, i
);
676 /* Any uses in PHIs which either don't have def's or are not
677 defined in the block from which the def comes, will be live
678 on entry to that block. */
679 if (!stmt
|| e
->src
!= bb_for_stmt (stmt
))
680 add_livein_if_notdef (live
, saw_def
, var
, e
->src
);
684 /* Don't mark PHI results as defined until all the PHI nodes have
685 been processed. If the PHI sequence is:
688 The a_3 referred to in b_3's PHI node is the one incoming on the
689 edge, *not* the PHI node just seen. */
691 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
693 var
= PHI_RESULT (phi
);
694 set_if_valid (map
, saw_def
, var
);
697 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
699 stmt
= bsi_stmt (bsi
);
701 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_USE
)
703 add_livein_if_notdef (live
, saw_def
, op
, bb
);
706 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_DEF
)
708 set_if_valid (map
, saw_def
, op
);
713 stack
= XNEWVEC (int, last_basic_block
);
714 EXECUTE_IF_SET_IN_BITMAP (live
->global
, 0, i
, bi
)
716 live_worklist (live
, stack
, i
);
720 #ifdef ENABLE_CHECKING
721 /* Check for live on entry partitions and report those with a DEF in
722 the program. This will typically mean an optimization has done
725 bb
= ENTRY_BLOCK_PTR
;
727 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
729 int entry_block
= e
->dest
->index
;
730 if (e
->dest
== EXIT_BLOCK_PTR
)
732 for (i
= 0; i
< (unsigned)num_var_partitions (map
); i
++)
736 var
= partition_to_var (map
, i
);
737 stmt
= SSA_NAME_DEF_STMT (var
);
738 tmp
= bb_for_stmt (stmt
);
739 d
= default_def (SSA_NAME_VAR (var
));
741 if (bitmap_bit_p (live_entry_blocks (live
, i
), entry_block
))
743 if (!IS_EMPTY_STMT (stmt
))
746 print_generic_expr (stderr
, var
, TDF_SLIM
);
747 fprintf (stderr
, " is defined ");
749 fprintf (stderr
, " in BB%d, ", tmp
->index
);
750 fprintf (stderr
, "by:\n");
751 print_generic_expr (stderr
, stmt
, TDF_SLIM
);
752 fprintf (stderr
, "\nIt is also live-on-entry to entry BB %d",
754 fprintf (stderr
, " So it appears to have multiple defs.\n");
761 print_generic_expr (stderr
, var
, TDF_SLIM
);
762 fprintf (stderr
, " is live-on-entry to BB%d ",entry_block
);
765 fprintf (stderr
, " but is not the default def of ");
766 print_generic_expr (stderr
, d
, TDF_SLIM
);
767 fprintf (stderr
, "\n");
770 fprintf (stderr
, " and there is no default def.\n");
777 /* The only way this var shouldn't be marked live on entry is
778 if it occurs in a PHI argument of the block. */
780 for (phi
= phi_nodes (e
->dest
);
782 phi
= PHI_CHAIN (phi
))
784 for (z
= 0; z
< PHI_NUM_ARGS (phi
); z
++)
785 if (var
== PHI_ARG_DEF (phi
, z
))
794 print_generic_expr (stderr
, var
, TDF_SLIM
);
795 fprintf (stderr
, " is not marked live-on-entry to entry BB%d ",
797 fprintf (stderr
, "but it is a default def so it should be.\n");
801 gcc_assert (num
<= 0);
804 BITMAP_FREE (saw_def
);
810 /* Calculate the live on exit vectors based on the entry info in LIVEINFO. */
813 calculate_live_on_exit (tree_live_info_p liveinfo
)
822 var_map map
= liveinfo
->map
;
824 on_exit
= (bitmap
*)xmalloc (last_basic_block
* sizeof (bitmap
));
825 for (x
= 0; x
< (unsigned)last_basic_block
; x
++)
826 on_exit
[x
] = BITMAP_ALLOC (NULL
);
828 /* Set all the live-on-exit bits for uses in PHIs. */
831 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
832 for (i
= 0; i
< (unsigned)PHI_NUM_ARGS (phi
); i
++)
834 t
= PHI_ARG_DEF (phi
, i
);
835 e
= PHI_ARG_EDGE (phi
, i
);
836 if (!phi_ssa_name_p (t
) || e
->src
== ENTRY_BLOCK_PTR
)
838 set_if_valid (map
, on_exit
[e
->src
->index
], t
);
842 /* Set live on exit for all predecessors of live on entry's. */
843 for (i
= 0; i
< num_var_partitions (map
); i
++)
847 on_entry
= live_entry_blocks (liveinfo
, i
);
848 EXECUTE_IF_SET_IN_BITMAP (on_entry
, 0, b
, bi
)
851 FOR_EACH_EDGE (e
, ei
, BASIC_BLOCK (b
)->preds
)
852 if (e
->src
!= ENTRY_BLOCK_PTR
)
853 bitmap_set_bit (on_exit
[e
->src
->index
], i
);
857 liveinfo
->liveout
= on_exit
;
861 /* Initialize a tree_partition_associator object using MAP. */
864 tpa_init (var_map map
)
867 int num_partitions
= num_var_partitions (map
);
870 if (num_partitions
== 0)
873 tpa
= (tpa_p
) xmalloc (sizeof (struct tree_partition_associator_d
));
875 tpa
->uncompressed_num
= -1;
877 tpa
->next_partition
= (int *)xmalloc (num_partitions
* sizeof (int));
878 memset (tpa
->next_partition
, TPA_NONE
, num_partitions
* sizeof (int));
880 tpa
->partition_to_tree_map
= (int *)xmalloc (num_partitions
* sizeof (int));
881 memset (tpa
->partition_to_tree_map
, TPA_NONE
, num_partitions
* sizeof (int));
883 x
= MAX (40, (num_partitions
/ 20));
884 tpa
->trees
= VEC_alloc (tree
, heap
, x
);
885 tpa
->first_partition
= VEC_alloc (int, heap
, x
);
892 /* Remove PARTITION_INDEX from TREE_INDEX's list in the tpa structure TPA. */
895 tpa_remove_partition (tpa_p tpa
, int tree_index
, int partition_index
)
899 i
= tpa_first_partition (tpa
, tree_index
);
900 if (i
== partition_index
)
902 VEC_replace (int, tpa
->first_partition
, tree_index
,
903 tpa
->next_partition
[i
]);
907 for ( ; i
!= TPA_NONE
; i
= tpa_next_partition (tpa
, i
))
909 if (tpa
->next_partition
[i
] == partition_index
)
911 tpa
->next_partition
[i
] = tpa
->next_partition
[partition_index
];
919 /* Free the memory used by tree_partition_associator object TPA. */
922 tpa_delete (tpa_p tpa
)
927 VEC_free (tree
, heap
, tpa
->trees
);
928 VEC_free (int, heap
, tpa
->first_partition
);
929 free (tpa
->partition_to_tree_map
);
930 free (tpa
->next_partition
);
935 /* This function will remove any tree entries from TPA which have only a single
936 element. This will help keep the size of the conflict graph down. The
937 function returns the number of remaining tree lists. */
940 tpa_compact (tpa_p tpa
)
942 int last
, x
, y
, first
, swap_i
;
945 /* Find the last list which has more than 1 partition. */
946 for (last
= tpa
->num_trees
- 1; last
> 0; last
--)
948 first
= tpa_first_partition (tpa
, last
);
949 if (tpa_next_partition (tpa
, first
) != NO_PARTITION
)
956 first
= tpa_first_partition (tpa
, x
);
958 /* If there is not more than one partition, swap with the current end
960 if (tpa_next_partition (tpa
, first
) == NO_PARTITION
)
962 swap_t
= VEC_index (tree
, tpa
->trees
, last
);
963 swap_i
= VEC_index (int, tpa
->first_partition
, last
);
965 /* Update the last entry. Since it is known to only have one
966 partition, there is nothing else to update. */
967 VEC_replace (tree
, tpa
->trees
, last
,
968 VEC_index (tree
, tpa
->trees
, x
));
969 VEC_replace (int, tpa
->first_partition
, last
,
970 VEC_index (int, tpa
->first_partition
, x
));
971 tpa
->partition_to_tree_map
[tpa_first_partition (tpa
, last
)] = last
;
973 /* Since this list is known to have more than one partition, update
974 the list owner entries. */
975 VEC_replace (tree
, tpa
->trees
, x
, swap_t
);
976 VEC_replace (int, tpa
->first_partition
, x
, swap_i
);
977 for (y
= tpa_first_partition (tpa
, x
);
979 y
= tpa_next_partition (tpa
, y
))
980 tpa
->partition_to_tree_map
[y
] = x
;
982 /* Ensure last is a list with more than one partition. */
984 for (; last
> x
; last
--)
986 first
= tpa_first_partition (tpa
, last
);
987 if (tpa_next_partition (tpa
, first
) != NO_PARTITION
)
994 first
= tpa_first_partition (tpa
, x
);
995 if (tpa_next_partition (tpa
, first
) != NO_PARTITION
)
997 tpa
->uncompressed_num
= tpa
->num_trees
;
1003 /* Initialize a root_var object with SSA partitions from MAP which are based
1004 on each root variable. */
1007 root_var_init (var_map map
)
1010 int num_partitions
= num_var_partitions (map
);
1016 rv
= tpa_init (map
);
1020 seen
= sbitmap_alloc (num_partitions
);
1021 sbitmap_zero (seen
);
1023 /* Start at the end and work towards the front. This will provide a list
1024 that is ordered from smallest to largest. */
1025 for (x
= num_partitions
- 1; x
>= 0; x
--)
1027 t
= partition_to_var (map
, x
);
1029 /* The var map may not be compacted yet, so check for NULL. */
1033 p
= var_to_partition (map
, t
);
1035 gcc_assert (p
!= NO_PARTITION
);
1037 /* Make sure we only put coalesced partitions into the list once. */
1038 if (TEST_BIT (seen
, p
))
1041 if (TREE_CODE (t
) == SSA_NAME
)
1042 t
= SSA_NAME_VAR (t
);
1044 if (ann
->root_var_processed
)
1046 rv
->next_partition
[p
] = VEC_index (int, rv
->first_partition
,
1047 VAR_ANN_ROOT_INDEX (ann
));
1048 VEC_replace (int, rv
->first_partition
, VAR_ANN_ROOT_INDEX (ann
), p
);
1052 ann
->root_var_processed
= 1;
1053 VAR_ANN_ROOT_INDEX (ann
) = rv
->num_trees
++;
1054 VEC_safe_push (tree
, heap
, rv
->trees
, t
);
1055 VEC_safe_push (int, heap
, rv
->first_partition
, p
);
1057 rv
->partition_to_tree_map
[p
] = VAR_ANN_ROOT_INDEX (ann
);
1060 /* Reset the out_of_ssa_tag flag on each variable for later use. */
1061 for (x
= 0; x
< rv
->num_trees
; x
++)
1063 t
= VEC_index (tree
, rv
->trees
, x
);
1064 var_ann (t
)->root_var_processed
= 0;
1067 sbitmap_free (seen
);
1072 /* Initialize a type_var structure which associates all the partitions in MAP
1073 of the same type to the type node's index. Volatiles are ignored. */
1076 type_var_init (var_map map
)
1080 int num_partitions
= num_var_partitions (map
);
1084 tv
= tpa_init (map
);
1088 seen
= sbitmap_alloc (num_partitions
);
1089 sbitmap_zero (seen
);
1091 for (x
= num_partitions
- 1; x
>= 0; x
--)
1093 t
= partition_to_var (map
, x
);
1095 /* Disallow coalescing of these types of variables. */
1097 || TREE_THIS_VOLATILE (t
)
1098 || TREE_CODE (t
) == RESULT_DECL
1099 || TREE_CODE (t
) == PARM_DECL
1101 && (DECL_REGISTER (t
)
1102 || !DECL_IGNORED_P (t
)
1103 || DECL_RTL_SET_P (t
))))
1106 p
= var_to_partition (map
, t
);
1108 gcc_assert (p
!= NO_PARTITION
);
1110 /* If partitions have been coalesced, only add the representative
1111 for the partition to the list once. */
1112 if (TEST_BIT (seen
, p
))
1117 /* Find the list for this type. */
1118 for (y
= 0; y
< tv
->num_trees
; y
++)
1119 if (t
== VEC_index (tree
, tv
->trees
, y
))
1121 if (y
== tv
->num_trees
)
1124 VEC_safe_push (tree
, heap
, tv
->trees
, t
);
1125 VEC_safe_push (int, heap
, tv
->first_partition
, p
);
1129 tv
->next_partition
[p
] = VEC_index (int, tv
->first_partition
, y
);
1130 VEC_replace (int, tv
->first_partition
, y
, p
);
1132 tv
->partition_to_tree_map
[p
] = y
;
1134 sbitmap_free (seen
);
1139 /* Create a new coalesce list object from MAP and return it. */
1142 create_coalesce_list (var_map map
)
1144 coalesce_list_p list
;
1146 list
= (coalesce_list_p
) xmalloc (sizeof (struct coalesce_list_d
));
1149 list
->add_mode
= true;
1150 list
->list
= (partition_pair_p
*) xcalloc (num_var_partitions (map
),
1151 sizeof (struct partition_pair_d
));
1156 /* Delete coalesce list CL. */
1159 delete_coalesce_list (coalesce_list_p cl
)
1166 /* Find a matching coalesce pair object in CL for partitions P1 and P2. If
1167 one isn't found, return NULL if CREATE is false, otherwise create a new
1168 coalesce pair object and return it. */
1170 static partition_pair_p
1171 find_partition_pair (coalesce_list_p cl
, int p1
, int p2
, bool create
)
1173 partition_pair_p node
, tmp
;
1176 /* Normalize so that p1 is the smaller value. */
1186 /* The list is sorted such that if we find a value greater than p2,
1187 p2 is not in the list. */
1188 for (node
= cl
->list
[p1
]; node
; node
= node
->next
)
1190 if (node
->second_partition
== p2
)
1193 if (node
->second_partition
> p2
)
1201 node
= (partition_pair_p
) xmalloc (sizeof (struct partition_pair_d
));
1202 node
->first_partition
= p1
;
1203 node
->second_partition
= p2
;
1208 node
->next
= tmp
->next
;
1213 /* This is now the first node in the list. */
1214 node
->next
= cl
->list
[p1
];
1215 cl
->list
[p1
] = node
;
1221 /* Return cost of execution of copy instruction with FREQUENCY
1222 possibly on CRITICAL edge and in HOT basic block. */
1224 coalesce_cost (int frequency
, bool hot
, bool critical
)
1226 /* Base costs on BB frequencies bounded by 1. */
1227 int cost
= frequency
;
1231 if (optimize_size
|| hot
)
1233 /* Inserting copy on critical edge costs more
1234 than inserting it elsewhere. */
1240 /* Add a potential coalesce between P1 and P2 in CL with a cost of VALUE. */
1243 add_coalesce (coalesce_list_p cl
, int p1
, int p2
,
1246 partition_pair_p node
;
1248 gcc_assert (cl
->add_mode
);
1253 node
= find_partition_pair (cl
, p1
, p2
, true);
1255 node
->cost
+= value
;
1259 /* Comparison function to allow qsort to sort P1 and P2 in descending order. */
1262 int compare_pairs (const void *p1
, const void *p2
)
1264 return (*(partition_pair_p
*)p2
)->cost
- (*(partition_pair_p
*)p1
)->cost
;
1268 /* Prepare CL for removal of preferred pairs. When finished, list element
1269 0 has all the coalesce pairs, sorted in order from most important coalesce
1270 to least important. */
1273 sort_coalesce_list (coalesce_list_p cl
)
1275 unsigned x
, num
, count
;
1276 partition_pair_p chain
, p
;
1277 partition_pair_p
*list
;
1279 gcc_assert (cl
->add_mode
);
1281 cl
->add_mode
= false;
1283 /* Compact the array of lists to a single list, and count the elements. */
1286 for (x
= 0; x
< num_var_partitions (cl
->map
); x
++)
1287 if (cl
->list
[x
] != NULL
)
1289 for (p
= cl
->list
[x
]; p
->next
!= NULL
; p
= p
->next
)
1293 chain
= cl
->list
[x
];
1297 /* Only call qsort if there are more than 2 items. */
1300 list
= XNEWVEC (partition_pair_p
, num
);
1302 for (p
= chain
; p
!= NULL
; p
= p
->next
)
1305 gcc_assert (count
== num
);
1307 qsort (list
, count
, sizeof (partition_pair_p
), compare_pairs
);
1310 for (x
= 1; x
< num
; x
++)
1316 cl
->list
[0] = list
[0];
1321 cl
->list
[0] = chain
;
1324 /* Simply swap the two elements if they are in the wrong order. */
1325 if (chain
->cost
< chain
->next
->cost
)
1327 cl
->list
[0] = chain
->next
;
1328 cl
->list
[0]->next
= chain
;
1336 /* Retrieve the best remaining pair to coalesce from CL. Returns the 2
1337 partitions via P1 and P2. Their calculated cost is returned by the function.
1338 NO_BEST_COALESCE is returned if the coalesce list is empty. */
1341 pop_best_coalesce (coalesce_list_p cl
, int *p1
, int *p2
)
1343 partition_pair_p node
;
1346 gcc_assert (!cl
->add_mode
);
1350 return NO_BEST_COALESCE
;
1352 cl
->list
[0] = node
->next
;
1354 *p1
= node
->first_partition
;
1355 *p2
= node
->second_partition
;
1363 /* If variable VAR is in a partition in MAP, add a conflict in GRAPH between
1364 VAR and any other live partitions in VEC which are associated via TPA.
1365 Reset the live bit in VEC. */
1368 add_conflicts_if_valid (tpa_p tpa
, conflict_graph graph
,
1369 var_map map
, bitmap vec
, tree var
)
1372 p
= var_to_partition (map
, var
);
1373 if (p
!= NO_PARTITION
)
1375 bitmap_clear_bit (vec
, p
);
1376 first
= tpa_find_tree (tpa
, p
);
1377 /* If find returns nothing, this object isn't interesting. */
1378 if (first
== TPA_NONE
)
1380 /* Only add interferences between objects in the same list. */
1381 for (y
= tpa_first_partition (tpa
, first
);
1383 y
= tpa_next_partition (tpa
, y
))
1385 if (bitmap_bit_p (vec
, y
))
1386 conflict_graph_add (graph
, p
, y
);
1391 /* Return a conflict graph for the information contained in LIVE_INFO. Only
1392 conflicts between items in the same TPA list are added. If optional
1393 coalesce list CL is passed in, any copies encountered are added. */
1396 build_tree_conflict_graph (tree_live_info_p liveinfo
, tpa_p tpa
,
1399 conflict_graph graph
;
1404 int *partition_link
, *tpa_nodes
;
1405 VEC(int,heap
) *tpa_to_clear
;
1410 map
= live_var_map (liveinfo
);
1411 graph
= conflict_graph_new (num_var_partitions (map
));
1413 if (tpa_num_trees (tpa
) == 0)
1416 live
= BITMAP_ALLOC (NULL
);
1418 partition_link
= XCNEWVEC (int, num_var_partitions (map
) + 1);
1419 tpa_nodes
= XCNEWVEC (int, tpa_num_trees (tpa
));
1420 tpa_to_clear
= VEC_alloc (int, heap
, 50);
1424 block_stmt_iterator bsi
;
1428 /* Start with live on exit temporaries. */
1429 bitmap_copy (live
, live_on_exit (liveinfo
, bb
));
1431 for (bsi
= bsi_last (bb
); !bsi_end_p (bsi
); bsi_prev (&bsi
))
1433 bool is_a_copy
= false;
1434 tree stmt
= bsi_stmt (bsi
);
1436 /* A copy between 2 partitions does not introduce an interference
1437 by itself. If they did, you would never be able to coalesce
1438 two things which are copied. If the two variables really do
1439 conflict, they will conflict elsewhere in the program.
1441 This is handled specially here since we may also be interested
1442 in copies between real variables and SSA_NAME variables. We may
1443 be interested in trying to coalesce SSA_NAME variables with
1444 root variables in some cases. */
1446 if (TREE_CODE (stmt
) == MODIFY_EXPR
)
1448 tree lhs
= TREE_OPERAND (stmt
, 0);
1449 tree rhs
= TREE_OPERAND (stmt
, 1);
1453 if (DECL_P (lhs
) || TREE_CODE (lhs
) == SSA_NAME
)
1454 p1
= var_to_partition (map
, lhs
);
1458 if (DECL_P (rhs
) || TREE_CODE (rhs
) == SSA_NAME
)
1459 p2
= var_to_partition (map
, rhs
);
1463 if (p1
!= NO_PARTITION
&& p2
!= NO_PARTITION
)
1466 bit
= bitmap_bit_p (live
, p2
);
1467 /* If the RHS is live, make it not live while we add
1468 the conflicts, then make it live again. */
1470 bitmap_clear_bit (live
, p2
);
1471 add_conflicts_if_valid (tpa
, graph
, map
, live
, lhs
);
1473 bitmap_set_bit (live
, p2
);
1475 add_coalesce (cl
, p1
, p2
,
1476 coalesce_cost (bb
->frequency
,
1477 maybe_hot_bb_p (bb
), false));
1478 set_if_valid (map
, live
, rhs
);
1485 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, SSA_OP_DEF
)
1487 add_conflicts_if_valid (tpa
, graph
, map
, live
, var
);
1490 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, SSA_OP_USE
)
1492 set_if_valid (map
, live
, var
);
1497 /* If result of a PHI is unused, then the loops over the statements
1498 will not record any conflicts. However, since the PHI node is
1499 going to be translated out of SSA form we must record a conflict
1500 between the result of the PHI and any variables with are live.
1501 Otherwise the out-of-ssa translation may create incorrect code. */
1502 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
1504 tree result
= PHI_RESULT (phi
);
1505 int p
= var_to_partition (map
, result
);
1507 if (p
!= NO_PARTITION
&& ! bitmap_bit_p (live
, p
))
1508 add_conflicts_if_valid (tpa
, graph
, map
, live
, result
);
1511 /* Anything which is still live at this point interferes.
1512 In order to implement this efficiently, only conflicts between
1513 partitions which have the same TPA root need be added.
1514 TPA roots which have been seen are tracked in 'tpa_nodes'. A nonzero
1515 entry points to an index into 'partition_link', which then indexes
1516 into itself forming a linked list of partitions sharing a tpa root
1517 which have been seen as live up to this point. Since partitions start
1518 at index zero, all entries in partition_link are (partition + 1).
1520 Conflicts are added between the current partition and any already seen.
1521 tpa_clear contains all the tpa_roots processed, and these are the only
1522 entries which need to be zero'd out for a clean restart. */
1524 EXECUTE_IF_SET_IN_BITMAP (live
, 0, x
, bi
)
1526 i
= tpa_find_tree (tpa
, x
);
1527 if (i
!= (unsigned)TPA_NONE
)
1529 int start
= tpa_nodes
[i
];
1530 /* If start is 0, a new root reference list is being started.
1531 Register it to be cleared. */
1533 VEC_safe_push (int, heap
, tpa_to_clear
, i
);
1535 /* Add interferences to other tpa members seen. */
1536 for (y
= start
; y
!= 0; y
= partition_link
[y
])
1537 conflict_graph_add (graph
, x
, y
- 1);
1538 tpa_nodes
[i
] = x
+ 1;
1539 partition_link
[x
+ 1] = start
;
1543 /* Now clear the used tpa root references. */
1544 for (l
= 0; VEC_iterate (int, tpa_to_clear
, l
, idx
); l
++)
1546 VEC_truncate (int, tpa_to_clear
, 0);
1550 free (partition_link
);
1551 VEC_free (int, heap
, tpa_to_clear
);
1557 /* This routine will attempt to coalesce the elements in TPA subject to the
1558 conflicts found in GRAPH. If optional coalesce_list CL is provided,
1559 only coalesces specified within the coalesce list are attempted. Otherwise
1560 an attempt is made to coalesce as many partitions within each TPA grouping
1561 as possible. If DEBUG is provided, debug output will be sent there. */
1564 coalesce_tpa_members (tpa_p tpa
, conflict_graph graph
, var_map map
,
1565 coalesce_list_p cl
, FILE *debug
)
1570 /* Attempt to coalesce any items in a coalesce list. */
1573 while (pop_best_coalesce (cl
, &x
, &y
) != NO_BEST_COALESCE
)
1577 fprintf (debug
, "Coalesce list: (%d)", x
);
1578 print_generic_expr (debug
, partition_to_var (map
, x
), TDF_SLIM
);
1579 fprintf (debug
, " & (%d)", y
);
1580 print_generic_expr (debug
, partition_to_var (map
, y
), TDF_SLIM
);
1583 w
= tpa_find_tree (tpa
, x
);
1584 z
= tpa_find_tree (tpa
, y
);
1585 if (w
!= z
|| w
== TPA_NONE
|| z
== TPA_NONE
)
1590 fprintf (debug
, ": Fail, Non-matching TPA's\n");
1592 fprintf (debug
, ": Fail %d non TPA.\n", x
);
1594 fprintf (debug
, ": Fail %d non TPA.\n", y
);
1598 var
= partition_to_var (map
, x
);
1599 tmp
= partition_to_var (map
, y
);
1600 x
= var_to_partition (map
, var
);
1601 y
= var_to_partition (map
, tmp
);
1603 fprintf (debug
, " [map: %d, %d] ", x
, y
);
1607 fprintf (debug
, ": Already Coalesced.\n");
1610 if (!conflict_graph_conflict_p (graph
, x
, y
))
1612 z
= var_union (map
, var
, tmp
);
1613 if (z
== NO_PARTITION
)
1616 fprintf (debug
, ": Unable to perform partition union.\n");
1620 /* z is the new combined partition. We need to remove the other
1621 partition from the list. Set x to be that other partition. */
1624 conflict_graph_merge_regs (graph
, x
, y
);
1625 w
= tpa_find_tree (tpa
, y
);
1626 tpa_remove_partition (tpa
, w
, y
);
1630 conflict_graph_merge_regs (graph
, y
, x
);
1631 w
= tpa_find_tree (tpa
, x
);
1632 tpa_remove_partition (tpa
, w
, x
);
1636 fprintf (debug
, ": Success -> %d\n", z
);
1640 fprintf (debug
, ": Fail due to conflict\n");
1642 /* If using a coalesce list, don't try to coalesce anything else. */
1646 for (x
= 0; x
< tpa_num_trees (tpa
); x
++)
1648 while (tpa_first_partition (tpa
, x
) != TPA_NONE
)
1651 /* Coalesce first partition with anything that doesn't conflict. */
1652 y
= tpa_first_partition (tpa
, x
);
1653 tpa_remove_partition (tpa
, x
, y
);
1655 var
= partition_to_var (map
, y
);
1656 /* p1 is the partition representative to which y belongs. */
1657 p1
= var_to_partition (map
, var
);
1659 for (z
= tpa_next_partition (tpa
, y
);
1661 z
= tpa_next_partition (tpa
, z
))
1663 tmp
= partition_to_var (map
, z
);
1664 /* p2 is the partition representative to which z belongs. */
1665 p2
= var_to_partition (map
, tmp
);
1668 fprintf (debug
, "Coalesce : ");
1669 print_generic_expr (debug
, var
, TDF_SLIM
);
1670 fprintf (debug
, " &");
1671 print_generic_expr (debug
, tmp
, TDF_SLIM
);
1672 fprintf (debug
, " (%d ,%d)", p1
, p2
);
1675 /* If partitions are already merged, don't check for conflict. */
1678 tpa_remove_partition (tpa
, x
, z
);
1680 fprintf (debug
, ": Already coalesced\n");
1683 if (!conflict_graph_conflict_p (graph
, p1
, p2
))
1686 if (tpa_find_tree (tpa
, y
) == TPA_NONE
1687 || tpa_find_tree (tpa
, z
) == TPA_NONE
)
1690 fprintf (debug
, ": Fail non-TPA member\n");
1693 if ((v
= var_union (map
, var
, tmp
)) == NO_PARTITION
)
1696 fprintf (debug
, ": Fail cannot combine partitions\n");
1700 tpa_remove_partition (tpa
, x
, z
);
1702 conflict_graph_merge_regs (graph
, v
, z
);
1705 /* Update the first partition's representative. */
1706 conflict_graph_merge_regs (graph
, v
, y
);
1710 /* The root variable of the partition may be changed
1712 var
= partition_to_var (map
, p1
);
1715 fprintf (debug
, ": Success -> %d\n", v
);
1719 fprintf (debug
, ": Fail, Conflict\n");
1726 /* Send debug info for coalesce list CL to file F. */
1729 dump_coalesce_list (FILE *f
, coalesce_list_p cl
)
1731 partition_pair_p node
;
1737 fprintf (f
, "Coalesce List:\n");
1738 num
= num_var_partitions (cl
->map
);
1739 for (x
= 0; x
< num
; x
++)
1745 print_generic_expr (f
, partition_to_var (cl
->map
, x
), TDF_SLIM
);
1746 fprintf (f
, "] - ");
1747 for ( ; node
; node
= node
->next
)
1749 var
= partition_to_var (cl
->map
, node
->second_partition
);
1750 print_generic_expr (f
, var
, TDF_SLIM
);
1751 fprintf (f
, "(%1d), ", node
->cost
);
1759 fprintf (f
, "Sorted Coalesce list:\n");
1760 for (node
= cl
->list
[0]; node
; node
= node
->next
)
1762 fprintf (f
, "(%d) ", node
->cost
);
1763 var
= partition_to_var (cl
->map
, node
->first_partition
);
1764 print_generic_expr (f
, var
, TDF_SLIM
);
1766 var
= partition_to_var (cl
->map
, node
->second_partition
);
1767 print_generic_expr (f
, var
, TDF_SLIM
);
1774 /* Output tree_partition_associator object TPA to file F.. */
1777 tpa_dump (FILE *f
, tpa_p tpa
)
1784 for (x
= 0; x
< tpa_num_trees (tpa
); x
++)
1786 print_generic_expr (f
, tpa_tree (tpa
, x
), TDF_SLIM
);
1787 fprintf (f
, " : (");
1788 for (i
= tpa_first_partition (tpa
, x
);
1790 i
= tpa_next_partition (tpa
, i
))
1792 fprintf (f
, "(%d)",i
);
1793 print_generic_expr (f
, partition_to_var (tpa
->map
, i
), TDF_SLIM
);
1796 #ifdef ENABLE_CHECKING
1797 if (tpa_find_tree (tpa
, i
) != x
)
1798 fprintf (f
, "**find tree incorrectly set** ");
1808 /* Output partition map MAP to file F. */
1811 dump_var_map (FILE *f
, var_map map
)
1817 fprintf (f
, "\nPartition map \n\n");
1819 for (x
= 0; x
< map
->num_partitions
; x
++)
1821 if (map
->compact_to_partition
!= NULL
)
1822 p
= map
->compact_to_partition
[x
];
1826 if (map
->partition_to_var
[p
] == NULL_TREE
)
1830 for (y
= 1; y
< num_ssa_names
; y
++)
1832 p
= partition_find (map
->var_partition
, y
);
1833 if (map
->partition_to_compact
)
1834 p
= map
->partition_to_compact
[p
];
1839 fprintf(f
, "Partition %d (", x
);
1840 print_generic_expr (f
, partition_to_var (map
, p
), TDF_SLIM
);
1843 fprintf (f
, "%d ", y
);
1853 /* Output live range info LIVE to file F, controlled by FLAG. */
1856 dump_live_info (FILE *f
, tree_live_info_p live
, int flag
)
1860 var_map map
= live
->map
;
1863 if ((flag
& LIVEDUMP_ENTRY
) && live
->livein
)
1867 fprintf (f
, "\nLive on entry to BB%d : ", bb
->index
);
1868 for (i
= 0; i
< num_var_partitions (map
); i
++)
1870 if (bitmap_bit_p (live_entry_blocks (live
, i
), bb
->index
))
1872 print_generic_expr (f
, partition_to_var (map
, i
), TDF_SLIM
);
1880 if ((flag
& LIVEDUMP_EXIT
) && live
->liveout
)
1884 fprintf (f
, "\nLive on exit from BB%d : ", bb
->index
);
1885 EXECUTE_IF_SET_IN_BITMAP (live
->liveout
[bb
->index
], 0, i
, bi
)
1887 print_generic_expr (f
, partition_to_var (map
, i
), TDF_SLIM
);
1895 #ifdef ENABLE_CHECKING
1897 register_ssa_partition_check (tree ssa_var
)
1899 gcc_assert (TREE_CODE (ssa_var
) == SSA_NAME
);
1900 if (!is_gimple_reg (SSA_NAME_VAR (ssa_var
)))
1902 fprintf (stderr
, "Illegally registering a virtual SSA name :");
1903 print_generic_expr (stderr
, ssa_var
, TDF_SLIM
);
1904 fprintf (stderr
, " in the SSA->Normal phase.\n");
1905 internal_error ("SSA corruption");