1 /* Coalesce SSA_NAMES together for the out-of-ssa pass.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation,
4 Contributed by Andrew MacLeod <amacleod@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
28 #include "diagnostic.h"
30 #include "tree-flow.h"
32 #include "tree-dump.h"
33 #include "tree-ssa-live.h"
37 /* This set of routines implements a coalesce_list. This is an object which
38 is used to track pairs of ssa_names which are desirable to coalesce
39 together to avoid copies. Costs are associated with each pair, and when
40 all desired information has been collected, the object can be used to
41 order the pairs for processing. */
43 /* This structure defines a pair entry. */
45 typedef struct coalesce_pair
51 typedef const struct coalesce_pair
*const_coalesce_pair_p
;
53 typedef struct cost_one_pair_d
57 struct cost_one_pair_d
*next
;
60 /* This structure maintains the list of coalesce pairs. */
62 typedef struct coalesce_list_d
64 htab_t list
; /* Hash table. */
65 coalesce_pair_p
*sorted
; /* List when sorted. */
66 int num_sorted
; /* Number in the sorted list. */
67 cost_one_pair_p cost_one_list
;/* Single use coalesces with cost 1. */
70 #define NO_BEST_COALESCE -1
71 #define MUST_COALESCE_COST INT_MAX
74 /* Return cost of execution of copy instruction with FREQUENCY
75 possibly on CRITICAL edge and in HOT basic block. */
78 coalesce_cost (int frequency
, bool optimize_for_size
, bool critical
)
80 /* Base costs on BB frequencies bounded by 1. */
86 if (optimize_for_size
)
89 /* Inserting copy on critical edge costs more than inserting it elsewhere. */
96 /* Return the cost of executing a copy instruction in basic block BB. */
99 coalesce_cost_bb (basic_block bb
)
101 return coalesce_cost (bb
->frequency
, optimize_bb_for_size_p (bb
), false);
105 /* Return the cost of executing a copy instruction on edge E. */
108 coalesce_cost_edge (edge e
)
110 if (e
->flags
& EDGE_ABNORMAL
)
111 return MUST_COALESCE_COST
;
113 return coalesce_cost (EDGE_FREQUENCY (e
),
114 optimize_edge_for_size_p (e
),
115 EDGE_CRITICAL_P (e
));
119 /* Retrieve a pair to coalesce from the cost_one_list in CL. Returns the
120 2 elements via P1 and P2. 1 is returned by the function if there is a pair,
121 NO_BEST_COALESCE is returned if there aren't any. */
124 pop_cost_one_pair (coalesce_list_p cl
, int *p1
, int *p2
)
128 ptr
= cl
->cost_one_list
;
130 return NO_BEST_COALESCE
;
132 *p1
= ptr
->first_element
;
133 *p2
= ptr
->second_element
;
134 cl
->cost_one_list
= ptr
->next
;
141 /* Retrieve the most expensive remaining pair to coalesce from CL. Returns the
142 2 elements via P1 and P2. Their calculated cost is returned by the function.
143 NO_BEST_COALESCE is returned if the coalesce list is empty. */
146 pop_best_coalesce (coalesce_list_p cl
, int *p1
, int *p2
)
148 coalesce_pair_p node
;
151 if (cl
->sorted
== NULL
)
152 return pop_cost_one_pair (cl
, p1
, p2
);
154 if (cl
->num_sorted
== 0)
155 return pop_cost_one_pair (cl
, p1
, p2
);
157 node
= cl
->sorted
[--(cl
->num_sorted
)];
158 *p1
= node
->first_element
;
159 *p2
= node
->second_element
;
167 #define COALESCE_HASH_FN(R1, R2) ((R2) * ((R2) - 1) / 2 + (R1))
169 /* Hash function for coalesce list. Calculate hash for PAIR. */
172 coalesce_pair_map_hash (const void *pair
)
174 hashval_t a
= (hashval_t
)(((const_coalesce_pair_p
)pair
)->first_element
);
175 hashval_t b
= (hashval_t
)(((const_coalesce_pair_p
)pair
)->second_element
);
177 return COALESCE_HASH_FN (a
,b
);
181 /* Equality function for coalesce list hash table. Compare PAIR1 and PAIR2,
182 returning TRUE if the two pairs are equivalent. */
185 coalesce_pair_map_eq (const void *pair1
, const void *pair2
)
187 const_coalesce_pair_p
const p1
= (const_coalesce_pair_p
) pair1
;
188 const_coalesce_pair_p
const p2
= (const_coalesce_pair_p
) pair2
;
190 return (p1
->first_element
== p2
->first_element
191 && p1
->second_element
== p2
->second_element
);
195 /* Create a new empty coalesce list object and return it. */
197 static inline coalesce_list_p
198 create_coalesce_list (void)
200 coalesce_list_p list
;
201 unsigned size
= num_ssa_names
* 3;
206 list
= (coalesce_list_p
) xmalloc (sizeof (struct coalesce_list_d
));
207 list
->list
= htab_create (size
, coalesce_pair_map_hash
,
208 coalesce_pair_map_eq
, NULL
);
210 list
->num_sorted
= 0;
211 list
->cost_one_list
= NULL
;
216 /* Delete coalesce list CL. */
219 delete_coalesce_list (coalesce_list_p cl
)
221 gcc_assert (cl
->cost_one_list
== NULL
);
222 htab_delete (cl
->list
);
225 gcc_assert (cl
->num_sorted
== 0);
230 /* Find a matching coalesce pair object in CL for the pair P1 and P2. If
231 one isn't found, return NULL if CREATE is false, otherwise create a new
232 coalesce pair object and return it. */
234 static coalesce_pair_p
235 find_coalesce_pair (coalesce_list_p cl
, int p1
, int p2
, bool create
)
237 struct coalesce_pair p
, *pair
;
241 /* Normalize so that p1 is the smaller value. */
244 p
.first_element
= p2
;
245 p
.second_element
= p1
;
249 p
.first_element
= p1
;
250 p
.second_element
= p2
;
254 hash
= coalesce_pair_map_hash (&p
);
255 pair
= (struct coalesce_pair
*) htab_find_with_hash (cl
->list
, &p
, hash
);
259 gcc_assert (cl
->sorted
== NULL
);
260 pair
= XNEW (struct coalesce_pair
);
261 pair
->first_element
= p
.first_element
;
262 pair
->second_element
= p
.second_element
;
264 slot
= htab_find_slot_with_hash (cl
->list
, pair
, hash
, INSERT
);
265 *(struct coalesce_pair
**)slot
= pair
;
272 add_cost_one_coalesce (coalesce_list_p cl
, int p1
, int p2
)
274 cost_one_pair_p pair
;
276 pair
= XNEW (struct cost_one_pair_d
);
277 pair
->first_element
= p1
;
278 pair
->second_element
= p2
;
279 pair
->next
= cl
->cost_one_list
;
280 cl
->cost_one_list
= pair
;
284 /* Add a coalesce between P1 and P2 in list CL with a cost of VALUE. */
287 add_coalesce (coalesce_list_p cl
, int p1
, int p2
,
290 coalesce_pair_p node
;
292 gcc_assert (cl
->sorted
== NULL
);
296 node
= find_coalesce_pair (cl
, p1
, p2
, true);
298 /* Once the value is MUST_COALESCE_COST, leave it that way. */
299 if (node
->cost
!= MUST_COALESCE_COST
)
301 if (value
== MUST_COALESCE_COST
)
309 /* Comparison function to allow qsort to sort P1 and P2 in Ascending order. */
312 compare_pairs (const void *p1
, const void *p2
)
314 const_coalesce_pair_p
const *const pp1
= (const_coalesce_pair_p
const *) p1
;
315 const_coalesce_pair_p
const *const pp2
= (const_coalesce_pair_p
const *) p2
;
318 result
= (* pp2
)->cost
- (* pp1
)->cost
;
319 /* Since qsort does not guarantee stability we use the elements
320 as a secondary key. This provides us with independence from
321 the host's implementation of the sorting algorithm. */
324 result
= (* pp2
)->first_element
- (* pp1
)->first_element
;
326 result
= (* pp2
)->second_element
- (* pp1
)->second_element
;
333 /* Return the number of unique coalesce pairs in CL. */
336 num_coalesce_pairs (coalesce_list_p cl
)
338 return htab_elements (cl
->list
);
342 /* Iterator over hash table pairs. */
346 } coalesce_pair_iterator
;
349 /* Return first partition pair from list CL, initializing iterator ITER. */
351 static inline coalesce_pair_p
352 first_coalesce_pair (coalesce_list_p cl
, coalesce_pair_iterator
*iter
)
354 coalesce_pair_p pair
;
356 pair
= (coalesce_pair_p
) first_htab_element (&(iter
->hti
), cl
->list
);
361 /* Return TRUE if there are no more partitions in for ITER to process. */
364 end_coalesce_pair_p (coalesce_pair_iterator
*iter
)
366 return end_htab_p (&(iter
->hti
));
370 /* Return the next partition pair to be visited by ITER. */
372 static inline coalesce_pair_p
373 next_coalesce_pair (coalesce_pair_iterator
*iter
)
375 coalesce_pair_p pair
;
377 pair
= (coalesce_pair_p
) next_htab_element (&(iter
->hti
));
382 /* Iterate over CL using ITER, returning values in PAIR. */
384 #define FOR_EACH_PARTITION_PAIR(PAIR, ITER, CL) \
385 for ((PAIR) = first_coalesce_pair ((CL), &(ITER)); \
386 !end_coalesce_pair_p (&(ITER)); \
387 (PAIR) = next_coalesce_pair (&(ITER)))
390 /* Prepare CL for removal of preferred pairs. When finished they are sorted
391 in order from most important coalesce to least important. */
394 sort_coalesce_list (coalesce_list_p cl
)
398 coalesce_pair_iterator ppi
;
400 gcc_assert (cl
->sorted
== NULL
);
402 num
= num_coalesce_pairs (cl
);
403 cl
->num_sorted
= num
;
407 /* Allocate a vector for the pair pointers. */
408 cl
->sorted
= XNEWVEC (coalesce_pair_p
, num
);
410 /* Populate the vector with pointers to the pairs. */
412 FOR_EACH_PARTITION_PAIR (p
, ppi
, cl
)
414 gcc_assert (x
== num
);
416 /* Already sorted. */
420 /* If there are only 2, just pick swap them if the order isn't correct. */
423 if (cl
->sorted
[0]->cost
> cl
->sorted
[1]->cost
)
426 cl
->sorted
[0] = cl
->sorted
[1];
432 /* Only call qsort if there are more than 2 items. */
434 qsort (cl
->sorted
, num
, sizeof (coalesce_pair_p
), compare_pairs
);
438 /* Send debug info for coalesce list CL to file F. */
441 dump_coalesce_list (FILE *f
, coalesce_list_p cl
)
443 coalesce_pair_p node
;
444 coalesce_pair_iterator ppi
;
448 if (cl
->sorted
== NULL
)
450 fprintf (f
, "Coalesce List:\n");
451 FOR_EACH_PARTITION_PAIR (node
, ppi
, cl
)
453 tree var1
= ssa_name (node
->first_element
);
454 tree var2
= ssa_name (node
->second_element
);
455 print_generic_expr (f
, var1
, TDF_SLIM
);
456 fprintf (f
, " <-> ");
457 print_generic_expr (f
, var2
, TDF_SLIM
);
458 fprintf (f
, " (%1d), ", node
->cost
);
464 fprintf (f
, "Sorted Coalesce list:\n");
465 for (x
= cl
->num_sorted
- 1 ; x
>=0; x
--)
467 node
= cl
->sorted
[x
];
468 fprintf (f
, "(%d) ", node
->cost
);
469 var
= ssa_name (node
->first_element
);
470 print_generic_expr (f
, var
, TDF_SLIM
);
471 fprintf (f
, " <-> ");
472 var
= ssa_name (node
->second_element
);
473 print_generic_expr (f
, var
, TDF_SLIM
);
480 /* This represents a conflict graph. Implemented as an array of bitmaps.
481 A full matrix is used for conflicts rather than just upper triangular form.
482 this make sit much simpler and faster to perform conflict merges. */
484 typedef struct ssa_conflicts_d
491 /* Return an empty new conflict graph for SIZE elements. */
493 static inline ssa_conflicts_p
494 ssa_conflicts_new (unsigned size
)
498 ptr
= XNEW (struct ssa_conflicts_d
);
499 ptr
->conflicts
= XCNEWVEC (bitmap
, size
);
505 /* Free storage for conflict graph PTR. */
508 ssa_conflicts_delete (ssa_conflicts_p ptr
)
511 for (x
= 0; x
< ptr
->size
; x
++)
512 if (ptr
->conflicts
[x
])
513 BITMAP_FREE (ptr
->conflicts
[x
]);
515 free (ptr
->conflicts
);
520 /* Test if elements X and Y conflict in graph PTR. */
523 ssa_conflicts_test_p (ssa_conflicts_p ptr
, unsigned x
, unsigned y
)
527 #ifdef ENABLE_CHECKING
528 gcc_assert (x
< ptr
->size
);
529 gcc_assert (y
< ptr
->size
);
533 b
= ptr
->conflicts
[x
];
535 /* Avoid the lookup if Y has no conflicts. */
536 return ptr
->conflicts
[y
] ? bitmap_bit_p (b
, y
) : false;
542 /* Add a conflict with Y to the bitmap for X in graph PTR. */
545 ssa_conflicts_add_one (ssa_conflicts_p ptr
, unsigned x
, unsigned y
)
547 /* If there are no conflicts yet, allocate the bitmap and set bit. */
548 if (!ptr
->conflicts
[x
])
549 ptr
->conflicts
[x
] = BITMAP_ALLOC (NULL
);
550 bitmap_set_bit (ptr
->conflicts
[x
], y
);
554 /* Add conflicts between X and Y in graph PTR. */
557 ssa_conflicts_add (ssa_conflicts_p ptr
, unsigned x
, unsigned y
)
559 #ifdef ENABLE_CHECKING
560 gcc_assert (x
< ptr
->size
);
561 gcc_assert (y
< ptr
->size
);
564 ssa_conflicts_add_one (ptr
, x
, y
);
565 ssa_conflicts_add_one (ptr
, y
, x
);
569 /* Merge all Y's conflict into X in graph PTR. */
572 ssa_conflicts_merge (ssa_conflicts_p ptr
, unsigned x
, unsigned y
)
578 if (!(ptr
->conflicts
[y
]))
581 /* Add a conflict between X and every one Y has. If the bitmap doesn't
582 exist, then it has already been coalesced, and we don't need to add a
584 EXECUTE_IF_SET_IN_BITMAP (ptr
->conflicts
[y
], 0, z
, bi
)
585 if (ptr
->conflicts
[z
])
586 bitmap_set_bit (ptr
->conflicts
[z
], x
);
588 if (ptr
->conflicts
[x
])
590 /* If X has conflicts, add Y's to X. */
591 bitmap_ior_into (ptr
->conflicts
[x
], ptr
->conflicts
[y
]);
592 BITMAP_FREE (ptr
->conflicts
[y
]);
596 /* If X has no conflicts, simply use Y's. */
597 ptr
->conflicts
[x
] = ptr
->conflicts
[y
];
598 ptr
->conflicts
[y
] = NULL
;
603 /* Dump a conflicts graph. */
606 ssa_conflicts_dump (FILE *file
, ssa_conflicts_p ptr
)
610 fprintf (file
, "\nConflict graph:\n");
612 for (x
= 0; x
< ptr
->size
; x
++)
613 if (ptr
->conflicts
[x
])
615 fprintf (dump_file
, "%d: ", x
);
616 dump_bitmap (file
, ptr
->conflicts
[x
]);
621 /* This structure is used to efficiently record the current status of live
622 SSA_NAMES when building a conflict graph.
623 LIVE_BASE_VAR has a bit set for each base variable which has at least one
625 LIVE_BASE_PARTITIONS is an array of bitmaps using the basevar table as an
626 index, and is used to track what partitions of each base variable are
627 live. This makes it easy to add conflicts between just live partitions
628 with the same base variable.
629 The values in LIVE_BASE_PARTITIONS are only valid if the base variable is
630 marked as being live. This delays clearing of these bitmaps until
631 they are actually needed again. */
633 typedef struct live_track_d
635 bitmap live_base_var
; /* Indicates if a basevar is live. */
636 bitmap
*live_base_partitions
; /* Live partitions for each basevar. */
637 var_map map
; /* Var_map being used for partition mapping. */
641 /* This routine will create a new live track structure based on the partitions
645 new_live_track (var_map map
)
650 /* Make sure there is a partition view in place. */
651 gcc_assert (map
->partition_to_base_index
!= NULL
);
653 ptr
= (live_track_p
) xmalloc (sizeof (struct live_track_d
));
655 lim
= num_basevars (map
);
656 ptr
->live_base_partitions
= (bitmap
*) xmalloc(sizeof (bitmap
*) * lim
);
657 ptr
->live_base_var
= BITMAP_ALLOC (NULL
);
658 for (x
= 0; x
< lim
; x
++)
659 ptr
->live_base_partitions
[x
] = BITMAP_ALLOC (NULL
);
664 /* This routine will free the memory associated with PTR. */
667 delete_live_track (live_track_p ptr
)
671 lim
= num_basevars (ptr
->map
);
672 for (x
= 0; x
< lim
; x
++)
673 BITMAP_FREE (ptr
->live_base_partitions
[x
]);
674 BITMAP_FREE (ptr
->live_base_var
);
675 free (ptr
->live_base_partitions
);
680 /* This function will remove PARTITION from the live list in PTR. */
683 live_track_remove_partition (live_track_p ptr
, int partition
)
687 root
= basevar_index (ptr
->map
, partition
);
688 bitmap_clear_bit (ptr
->live_base_partitions
[root
], partition
);
689 /* If the element list is empty, make the base variable not live either. */
690 if (bitmap_empty_p (ptr
->live_base_partitions
[root
]))
691 bitmap_clear_bit (ptr
->live_base_var
, root
);
695 /* This function will adds PARTITION to the live list in PTR. */
698 live_track_add_partition (live_track_p ptr
, int partition
)
702 root
= basevar_index (ptr
->map
, partition
);
703 /* If this base var wasn't live before, it is now. Clear the element list
704 since it was delayed until needed. */
705 if (!bitmap_bit_p (ptr
->live_base_var
, root
))
707 bitmap_set_bit (ptr
->live_base_var
, root
);
708 bitmap_clear (ptr
->live_base_partitions
[root
]);
710 bitmap_set_bit (ptr
->live_base_partitions
[root
], partition
);
715 /* Clear the live bit for VAR in PTR. */
718 live_track_clear_var (live_track_p ptr
, tree var
)
722 p
= var_to_partition (ptr
->map
, var
);
723 if (p
!= NO_PARTITION
)
724 live_track_remove_partition (ptr
, p
);
728 /* Return TRUE if VAR is live in PTR. */
731 live_track_live_p (live_track_p ptr
, tree var
)
735 p
= var_to_partition (ptr
->map
, var
);
736 if (p
!= NO_PARTITION
)
738 root
= basevar_index (ptr
->map
, p
);
739 if (bitmap_bit_p (ptr
->live_base_var
, root
))
740 return bitmap_bit_p (ptr
->live_base_partitions
[root
], p
);
746 /* This routine will add USE to PTR. USE will be marked as live in both the
747 ssa live map and the live bitmap for the root of USE. */
750 live_track_process_use (live_track_p ptr
, tree use
)
754 p
= var_to_partition (ptr
->map
, use
);
755 if (p
== NO_PARTITION
)
758 /* Mark as live in the appropriate live list. */
759 live_track_add_partition (ptr
, p
);
763 /* This routine will process a DEF in PTR. DEF will be removed from the live
764 lists, and if there are any other live partitions with the same base
765 variable, conflicts will be added to GRAPH. */
768 live_track_process_def (live_track_p ptr
, tree def
, ssa_conflicts_p graph
)
775 p
= var_to_partition (ptr
->map
, def
);
776 if (p
== NO_PARTITION
)
779 /* Clear the liveness bit. */
780 live_track_remove_partition (ptr
, p
);
782 /* If the bitmap isn't empty now, conflicts need to be added. */
783 root
= basevar_index (ptr
->map
, p
);
784 if (bitmap_bit_p (ptr
->live_base_var
, root
))
786 b
= ptr
->live_base_partitions
[root
];
787 EXECUTE_IF_SET_IN_BITMAP (b
, 0, x
, bi
)
788 ssa_conflicts_add (graph
, p
, x
);
793 /* Initialize PTR with the partitions set in INIT. */
796 live_track_init (live_track_p ptr
, bitmap init
)
801 /* Mark all live on exit partitions. */
802 EXECUTE_IF_SET_IN_BITMAP (init
, 0, p
, bi
)
803 live_track_add_partition (ptr
, p
);
807 /* This routine will clear all live partitions in PTR. */
810 live_track_clear_base_vars (live_track_p ptr
)
812 /* Simply clear the live base list. Anything marked as live in the element
813 lists will be cleared later if/when the base variable ever comes alive
815 bitmap_clear (ptr
->live_base_var
);
819 /* Build a conflict graph based on LIVEINFO. Any partitions which are in the
820 partition view of the var_map liveinfo is based on get entries in the
821 conflict graph. Only conflicts between ssa_name partitions with the same
822 base variable are added. */
824 static ssa_conflicts_p
825 build_ssa_conflict_graph (tree_live_info_p liveinfo
)
827 ssa_conflicts_p graph
;
833 map
= live_var_map (liveinfo
);
834 graph
= ssa_conflicts_new (num_var_partitions (map
));
836 live
= new_live_track (map
);
840 gimple_stmt_iterator gsi
;
842 /* Start with live on exit temporaries. */
843 live_track_init (live
, live_on_exit (liveinfo
, bb
));
845 for (gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
848 gimple stmt
= gsi_stmt (gsi
);
850 /* A copy between 2 partitions does not introduce an interference
851 by itself. If they did, you would never be able to coalesce
852 two things which are copied. If the two variables really do
853 conflict, they will conflict elsewhere in the program.
855 This is handled by simply removing the SRC of the copy from the
856 live list, and processing the stmt normally. */
857 if (is_gimple_assign (stmt
))
859 tree lhs
= gimple_assign_lhs (stmt
);
860 tree rhs1
= gimple_assign_rhs1 (stmt
);
861 if (gimple_assign_copy_p (stmt
)
862 && TREE_CODE (lhs
) == SSA_NAME
863 && TREE_CODE (rhs1
) == SSA_NAME
)
864 live_track_clear_var (live
, rhs1
);
867 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, SSA_OP_DEF
)
868 live_track_process_def (live
, var
, graph
);
870 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, SSA_OP_USE
)
871 live_track_process_use (live
, var
);
874 /* If result of a PHI is unused, looping over the statements will not
875 record any conflicts since the def was never live. Since the PHI node
876 is going to be translated out of SSA form, it will insert a copy.
877 There must be a conflict recorded between the result of the PHI and
878 any variables that are live. Otherwise the out-of-ssa translation
879 may create incorrect code. */
880 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
882 gimple phi
= gsi_stmt (gsi
);
883 tree result
= PHI_RESULT (phi
);
884 if (live_track_live_p (live
, result
))
885 live_track_process_def (live
, result
, graph
);
888 live_track_clear_base_vars (live
);
891 delete_live_track (live
);
896 /* Shortcut routine to print messages to file F of the form:
897 "STR1 EXPR1 STR2 EXPR2 STR3." */
900 print_exprs (FILE *f
, const char *str1
, tree expr1
, const char *str2
,
901 tree expr2
, const char *str3
)
903 fprintf (f
, "%s", str1
);
904 print_generic_expr (f
, expr1
, TDF_SLIM
);
905 fprintf (f
, "%s", str2
);
906 print_generic_expr (f
, expr2
, TDF_SLIM
);
907 fprintf (f
, "%s", str3
);
911 /* Called if a coalesce across and abnormal edge cannot be performed. PHI is
912 the phi node at fault, I is the argument index at fault. A message is
913 printed and compilation is then terminated. */
916 abnormal_corrupt (gimple phi
, int i
)
918 edge e
= gimple_phi_arg_edge (phi
, i
);
919 tree res
= gimple_phi_result (phi
);
920 tree arg
= gimple_phi_arg_def (phi
, i
);
922 fprintf (stderr
, " Corrupt SSA across abnormal edge BB%d->BB%d\n",
923 e
->src
->index
, e
->dest
->index
);
924 fprintf (stderr
, "Argument %d (", i
);
925 print_generic_expr (stderr
, arg
, TDF_SLIM
);
926 if (TREE_CODE (arg
) != SSA_NAME
)
927 fprintf (stderr
, ") is not an SSA_NAME.\n");
930 gcc_assert (SSA_NAME_VAR (res
) != SSA_NAME_VAR (arg
));
931 fprintf (stderr
, ") does not have the same base variable as the result ");
932 print_generic_stmt (stderr
, res
, TDF_SLIM
);
935 internal_error ("SSA corruption");
939 /* Print a failure to coalesce a MUST_COALESCE pair X and Y. */
942 fail_abnormal_edge_coalesce (int x
, int y
)
944 fprintf (stderr
, "\nUnable to coalesce ssa_names %d and %d",x
, y
);
945 fprintf (stderr
, " which are marked as MUST COALESCE.\n");
946 print_generic_expr (stderr
, ssa_name (x
), TDF_SLIM
);
947 fprintf (stderr
, " and ");
948 print_generic_stmt (stderr
, ssa_name (y
), TDF_SLIM
);
950 internal_error ("SSA corruption");
954 /* This function creates a var_map for the current function as well as creating
955 a coalesce list for use later in the out of ssa process. */
958 create_outofssa_var_map (coalesce_list_p cl
, bitmap used_in_copy
)
960 gimple_stmt_iterator gsi
;
970 #ifdef ENABLE_CHECKING
971 bitmap used_in_real_ops
;
972 bitmap used_in_virtual_ops
;
974 used_in_real_ops
= BITMAP_ALLOC (NULL
);
975 used_in_virtual_ops
= BITMAP_ALLOC (NULL
);
978 map
= init_var_map (num_ssa_names
+ 1);
984 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
986 gimple phi
= gsi_stmt (gsi
);
990 bool saw_copy
= false;
992 res
= gimple_phi_result (phi
);
993 ver
= SSA_NAME_VERSION (res
);
994 register_ssa_partition (map
, res
);
996 /* Register ssa_names and coalesces between the args and the result
998 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
1000 edge e
= gimple_phi_arg_edge (phi
, i
);
1001 arg
= PHI_ARG_DEF (phi
, i
);
1002 if (TREE_CODE (arg
) == SSA_NAME
)
1003 register_ssa_partition (map
, arg
);
1004 if (TREE_CODE (arg
) == SSA_NAME
1005 && SSA_NAME_VAR (arg
) == SSA_NAME_VAR (res
))
1008 bitmap_set_bit (used_in_copy
, SSA_NAME_VERSION (arg
));
1009 if ((e
->flags
& EDGE_ABNORMAL
) == 0)
1011 int cost
= coalesce_cost_edge (e
);
1012 if (cost
== 1 && has_single_use (arg
))
1013 add_cost_one_coalesce (cl
, ver
, SSA_NAME_VERSION (arg
));
1015 add_coalesce (cl
, ver
, SSA_NAME_VERSION (arg
), cost
);
1019 if (e
->flags
& EDGE_ABNORMAL
)
1020 abnormal_corrupt (phi
, i
);
1023 bitmap_set_bit (used_in_copy
, ver
);
1026 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1028 stmt
= gsi_stmt (gsi
);
1030 /* Register USE and DEF operands in each statement. */
1031 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, (SSA_OP_DEF
|SSA_OP_USE
))
1032 register_ssa_partition (map
, var
);
1034 /* Check for copy coalesces. */
1035 switch (gimple_code (stmt
))
1039 tree lhs
= gimple_assign_lhs (stmt
);
1040 tree rhs1
= gimple_assign_rhs1 (stmt
);
1042 if (gimple_assign_copy_p (stmt
)
1043 && TREE_CODE (lhs
) == SSA_NAME
1044 && TREE_CODE (rhs1
) == SSA_NAME
1045 && SSA_NAME_VAR (lhs
) == SSA_NAME_VAR (rhs1
))
1047 v1
= SSA_NAME_VERSION (lhs
);
1048 v2
= SSA_NAME_VERSION (rhs1
);
1049 cost
= coalesce_cost_bb (bb
);
1050 add_coalesce (cl
, v1
, v2
, cost
);
1051 bitmap_set_bit (used_in_copy
, v1
);
1052 bitmap_set_bit (used_in_copy
, v2
);
1059 unsigned long noutputs
, i
;
1060 unsigned long ninputs
;
1061 tree
*outputs
, link
;
1062 noutputs
= gimple_asm_noutputs (stmt
);
1063 ninputs
= gimple_asm_ninputs (stmt
);
1064 outputs
= (tree
*) alloca (noutputs
* sizeof (tree
));
1065 for (i
= 0; i
< noutputs
; ++i
) {
1066 link
= gimple_asm_output_op (stmt
, i
);
1067 outputs
[i
] = TREE_VALUE (link
);
1070 for (i
= 0; i
< ninputs
; ++i
)
1072 const char *constraint
;
1075 unsigned long match
;
1077 link
= gimple_asm_input_op (stmt
, i
);
1079 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
1080 input
= TREE_VALUE (link
);
1082 if (TREE_CODE (input
) != SSA_NAME
)
1085 match
= strtoul (constraint
, &end
, 10);
1086 if (match
>= noutputs
|| end
== constraint
)
1089 if (TREE_CODE (outputs
[match
]) != SSA_NAME
)
1092 v1
= SSA_NAME_VERSION (outputs
[match
]);
1093 v2
= SSA_NAME_VERSION (input
);
1095 if (SSA_NAME_VAR (outputs
[match
]) == SSA_NAME_VAR (input
))
1097 cost
= coalesce_cost (REG_BR_PROB_BASE
,
1098 optimize_bb_for_size_p (bb
),
1100 add_coalesce (cl
, v1
, v2
, cost
);
1101 bitmap_set_bit (used_in_copy
, v1
);
1102 bitmap_set_bit (used_in_copy
, v2
);
1112 #ifdef ENABLE_CHECKING
1113 /* Mark real uses and defs. */
1114 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, (SSA_OP_DEF
|SSA_OP_USE
))
1115 bitmap_set_bit (used_in_real_ops
, DECL_UID (SSA_NAME_VAR (var
)));
1117 /* Validate that virtual ops don't get used in funny ways. */
1118 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, SSA_OP_ALL_VIRTUALS
)
1120 bitmap_set_bit (used_in_virtual_ops
,
1121 DECL_UID (SSA_NAME_VAR (var
)));
1124 #endif /* ENABLE_CHECKING */
1128 /* Now process result decls and live on entry variables for entry into
1129 the coalesce list. */
1131 for (i
= 1; i
< num_ssa_names
; i
++)
1133 var
= map
->partition_to_var
[i
];
1134 if (var
!= NULL_TREE
)
1136 /* Add coalesces between all the result decls. */
1137 if (TREE_CODE (SSA_NAME_VAR (var
)) == RESULT_DECL
)
1139 if (first
== NULL_TREE
)
1143 gcc_assert (SSA_NAME_VAR (var
) == SSA_NAME_VAR (first
));
1144 v1
= SSA_NAME_VERSION (first
);
1145 v2
= SSA_NAME_VERSION (var
);
1146 bitmap_set_bit (used_in_copy
, v1
);
1147 bitmap_set_bit (used_in_copy
, v2
);
1148 cost
= coalesce_cost_bb (EXIT_BLOCK_PTR
);
1149 add_coalesce (cl
, v1
, v2
, cost
);
1152 /* Mark any default_def variables as being in the coalesce list
1153 since they will have to be coalesced with the base variable. If
1154 not marked as present, they won't be in the coalesce view. */
1155 if (gimple_default_def (cfun
, SSA_NAME_VAR (var
)) == var
)
1156 bitmap_set_bit (used_in_copy
, SSA_NAME_VERSION (var
));
1160 #if defined ENABLE_CHECKING
1163 bitmap both
= BITMAP_ALLOC (NULL
);
1164 bitmap_and (both
, used_in_real_ops
, used_in_virtual_ops
);
1165 if (!bitmap_empty_p (both
))
1169 EXECUTE_IF_SET_IN_BITMAP (both
, 0, i
, bi
)
1170 fprintf (stderr
, "Variable %s used in real and virtual operands\n",
1171 get_name (referenced_var (i
)));
1172 internal_error ("SSA corruption");
1175 BITMAP_FREE (used_in_real_ops
);
1176 BITMAP_FREE (used_in_virtual_ops
);
1185 /* Attempt to coalesce ssa versions X and Y together using the partition
1186 mapping in MAP and checking conflicts in GRAPH. Output any debug info to
1187 DEBUG, if it is nun-NULL. */
1190 attempt_coalesce (var_map map
, ssa_conflicts_p graph
, int x
, int y
,
1197 p1
= var_to_partition (map
, ssa_name (x
));
1198 p2
= var_to_partition (map
, ssa_name (y
));
1202 fprintf (debug
, "(%d)", x
);
1203 print_generic_expr (debug
, partition_to_var (map
, p1
), TDF_SLIM
);
1204 fprintf (debug
, " & (%d)", y
);
1205 print_generic_expr (debug
, partition_to_var (map
, p2
), TDF_SLIM
);
1211 fprintf (debug
, ": Already Coalesced.\n");
1216 fprintf (debug
, " [map: %d, %d] ", p1
, p2
);
1219 if (!ssa_conflicts_test_p (graph
, p1
, p2
))
1221 var1
= partition_to_var (map
, p1
);
1222 var2
= partition_to_var (map
, p2
);
1223 z
= var_union (map
, var1
, var2
);
1224 if (z
== NO_PARTITION
)
1227 fprintf (debug
, ": Unable to perform partition union.\n");
1231 /* z is the new combined partition. Remove the other partition from
1232 the list, and merge the conflicts. */
1234 ssa_conflicts_merge (graph
, p1
, p2
);
1236 ssa_conflicts_merge (graph
, p2
, p1
);
1239 fprintf (debug
, ": Success -> %d\n", z
);
1244 fprintf (debug
, ": Fail due to conflict\n");
1250 /* Attempt to Coalesce partitions in MAP which occur in the list CL using
1251 GRAPH. Debug output is sent to DEBUG if it is non-NULL. */
1254 coalesce_partitions (var_map map
, ssa_conflicts_p graph
, coalesce_list_p cl
,
1264 /* First, coalesce all the copies across abnormal edges. These are not placed
1265 in the coalesce list because they do not need to be sorted, and simply
1266 consume extra memory/compilation time in large programs. */
1270 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1271 if (e
->flags
& EDGE_ABNORMAL
)
1273 gimple_stmt_iterator gsi
;
1274 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
1277 gimple phi
= gsi_stmt (gsi
);
1278 tree res
= PHI_RESULT (phi
);
1279 tree arg
= PHI_ARG_DEF (phi
, e
->dest_idx
);
1280 int v1
= SSA_NAME_VERSION (res
);
1281 int v2
= SSA_NAME_VERSION (arg
);
1283 if (SSA_NAME_VAR (arg
) != SSA_NAME_VAR (res
))
1284 abnormal_corrupt (phi
, e
->dest_idx
);
1287 fprintf (debug
, "Abnormal coalesce: ");
1289 if (!attempt_coalesce (map
, graph
, v1
, v2
, debug
))
1290 fail_abnormal_edge_coalesce (v1
, v2
);
1295 /* Now process the items in the coalesce list. */
1297 while ((cost
= pop_best_coalesce (cl
, &x
, &y
)) != NO_BEST_COALESCE
)
1299 var1
= ssa_name (x
);
1300 var2
= ssa_name (y
);
1302 /* Assert the coalesces have the same base variable. */
1303 gcc_assert (SSA_NAME_VAR (var1
) == SSA_NAME_VAR (var2
));
1306 fprintf (debug
, "Coalesce list: ");
1307 attempt_coalesce (map
, graph
, x
, y
, debug
);
1311 /* Returns a hash code for P. */
1314 hash_ssa_name_by_var (const void *p
)
1316 const_tree n
= (const_tree
) p
;
1317 return (hashval_t
) htab_hash_pointer (SSA_NAME_VAR (n
));
1320 /* Returns nonzero if P1 and P2 are equal. */
1323 eq_ssa_name_by_var (const void *p1
, const void *p2
)
1325 const_tree n1
= (const_tree
) p1
;
1326 const_tree n2
= (const_tree
) p2
;
1327 return SSA_NAME_VAR (n1
) == SSA_NAME_VAR (n2
);
1330 /* Reduce the number of copies by coalescing variables in the function. Return
1331 a partition map with the resulting coalesces. */
1334 coalesce_ssa_name (void)
1337 tree_live_info_p liveinfo
;
1338 ssa_conflicts_p graph
;
1340 bitmap used_in_copies
= BITMAP_ALLOC (NULL
);
1343 static htab_t ssa_name_hash
;
1345 cl
= create_coalesce_list ();
1346 map
= create_outofssa_var_map (cl
, used_in_copies
);
1348 /* We need to coalesce all names originating same SSA_NAME_VAR
1349 so debug info remains undisturbed. */
1352 ssa_name_hash
= htab_create (10, hash_ssa_name_by_var
,
1353 eq_ssa_name_by_var
, NULL
);
1354 for (i
= 1; i
< num_ssa_names
; i
++)
1356 tree a
= ssa_name (i
);
1358 if (a
&& SSA_NAME_VAR (a
) && !DECL_ARTIFICIAL (SSA_NAME_VAR (a
)))
1360 tree
*slot
= (tree
*) htab_find_slot (ssa_name_hash
, a
, INSERT
);
1366 add_coalesce (cl
, SSA_NAME_VERSION (a
), SSA_NAME_VERSION (*slot
),
1367 MUST_COALESCE_COST
- 1);
1368 bitmap_set_bit (used_in_copies
, SSA_NAME_VERSION (a
));
1369 bitmap_set_bit (used_in_copies
, SSA_NAME_VERSION (*slot
));
1373 htab_delete (ssa_name_hash
);
1375 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1376 dump_var_map (dump_file
, map
);
1378 /* Don't calculate live ranges for variables not in the coalesce list. */
1379 partition_view_bitmap (map
, used_in_copies
, true);
1380 BITMAP_FREE (used_in_copies
);
1382 if (num_var_partitions (map
) < 1)
1384 delete_coalesce_list (cl
);
1388 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1389 dump_var_map (dump_file
, map
);
1391 liveinfo
= calculate_live_ranges (map
);
1393 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1394 dump_live_info (dump_file
, liveinfo
, LIVEDUMP_ENTRY
);
1396 /* Build a conflict graph. */
1397 graph
= build_ssa_conflict_graph (liveinfo
);
1398 delete_tree_live_info (liveinfo
);
1399 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1400 ssa_conflicts_dump (dump_file
, graph
);
1402 sort_coalesce_list (cl
);
1404 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1406 fprintf (dump_file
, "\nAfter sorting:\n");
1407 dump_coalesce_list (dump_file
, cl
);
1410 /* First, coalesce all live on entry variables to their base variable.
1411 This will ensure the first use is coming from the correct location. */
1413 num
= num_var_partitions (map
);
1414 for (x
= 0 ; x
< num
; x
++)
1416 tree var
= partition_to_var (map
, x
);
1419 if (TREE_CODE (var
) != SSA_NAME
)
1422 root
= SSA_NAME_VAR (var
);
1423 if (gimple_default_def (cfun
, root
) == var
)
1425 /* This root variable should have not already been assigned
1426 to another partition which is not coalesced with this one. */
1427 gcc_assert (!var_ann (root
)->out_of_ssa_tag
);
1429 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1431 print_exprs (dump_file
, "Must coalesce ", var
,
1432 " with the root variable ", root
, ".\n");
1434 change_partition_var (map
, root
, x
);
1438 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1439 dump_var_map (dump_file
, map
);
1441 /* Now coalesce everything in the list. */
1442 coalesce_partitions (map
, graph
, cl
,
1443 ((dump_flags
& TDF_DETAILS
) ? dump_file
1446 delete_coalesce_list (cl
);
1447 ssa_conflicts_delete (graph
);