1 /* Routines for liveness in SSA trees.
2 Copyright (C) 2003, 2004, 2005, 2007 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 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 #ifndef _TREE_SSA_LIVE_H
23 #define _TREE_SSA_LIVE_H 1
25 #include "partition.h"
30 /* Used to create the variable mapping when we go out of SSA form.
32 Mapping from an ssa_name to a partition number is maintained, as well as
33 partition number to back to ssa_name. A partition can also be represented
34 by a non-ssa_name variable. This allows ssa_names and their partition to
35 be coalesced with live on entry compiler variables, as well as eventually
36 having real compiler variables assigned to each partition as part of the
37 final stage of going of of ssa.
39 Non-ssa_names maintain their partition index in the variable annotation.
41 This data structure also supports "views", which work on a subset of all
42 partitions. This allows the coalescer to decide what partitions are
43 interesting to it, and only work with those partitions. Whenever the view
44 is changed, the partition numbers change, but none of the partition groupings
45 change. (ie, it is truly a view since it doesn't change anything)
47 The final component of the data structure is the basevar map. This provides
48 a list of all the different base variables which occur in a partition view,
49 and a unique index for each one. Routines are provided to quickly produce
50 the base variable of a partition.
52 Note that members of a partition MUST all have the same base variable. */
54 typedef struct _var_map
56 /* The partition manager of all variables. */
57 partition var_partition
;
59 /* Vector for managing partitions views. */
60 int *partition_to_view
;
61 int *view_to_partition
;
63 /* Mapping of partition numbers to variables. */
64 tree
*partition_to_var
;
66 /* Current number of partitions in var_map based on the current view. */
67 unsigned int num_partitions
;
69 /* Original full partition size. */
70 unsigned int partition_size
;
72 /* Number of base variables in the base var list. */
75 /* Map of partitions numbers to base variable table indexes. */
76 int *partition_to_base_index
;
78 /* Table of base variable's. */
79 VEC (tree
, heap
) *basevars
;
83 /* Partition number of a non ssa-name variable. */
84 #define VAR_ANN_PARTITION(ann) (ann->partition)
85 /* Index iot the basevar table of a non ssa-name variable. */
86 #define VAR_ANN_BASE_INDEX(ann) (ann->base_index)
89 /* Value used to represent no partition number. */
90 #define NO_PARTITION -1
92 extern var_map
init_var_map (int);
93 extern void delete_var_map (var_map
);
94 extern void dump_var_map (FILE *, var_map
);
95 extern int var_union (var_map
, tree
, tree
);
96 extern void change_partition_var (var_map
, tree
, int);
97 extern void partition_view_normal (var_map
, bool);
98 extern void partition_view_bitmap (var_map
, bitmap
, bool);
99 #ifdef ENABLE_CHECKING
100 extern void register_ssa_partition_check (tree ssa_var
);
104 /* Return number of partitions in MAP. */
106 static inline unsigned
107 num_var_partitions (var_map map
)
109 return map
->num_partitions
;
113 /* Given partition index I from MAP, return the variable which represents that
117 partition_to_var (var_map map
, int i
)
119 if (map
->view_to_partition
)
120 i
= map
->view_to_partition
[i
];
121 i
= partition_find (map
->var_partition
, i
);
122 return map
->partition_to_var
[i
];
126 /* Given ssa_name VERSION, if it has a partition in MAP, return the var it
127 is associated with. Otherwise return NULL. */
130 version_to_var (var_map map
, int version
)
133 part
= partition_find (map
->var_partition
, version
);
134 if (map
->partition_to_view
)
135 part
= map
->partition_to_view
[part
];
136 if (part
== NO_PARTITION
)
139 return partition_to_var (map
, part
);
143 /* Given VAR, return the partition number in MAP which contains it.
144 NO_PARTITION is returned if it's not in any partition. */
147 var_to_partition (var_map map
, tree var
)
152 if (TREE_CODE (var
) == SSA_NAME
)
154 part
= partition_find (map
->var_partition
, SSA_NAME_VERSION (var
));
155 if (map
->partition_to_view
)
156 part
= map
->partition_to_view
[part
];
161 if (ann
&& ann
->out_of_ssa_tag
)
162 part
= VAR_ANN_PARTITION (ann
);
170 /* Given VAR, return the variable which represents the entire partition
171 it is a member of in MAP. NULL is returned if it is not in a partition. */
174 var_to_partition_to_var (var_map map
, tree var
)
178 part
= var_to_partition (map
, var
);
179 if (part
== NO_PARTITION
)
181 return partition_to_var (map
, part
);
185 /* Return the index into the basevar table for PARTITION's base in MAP. */
188 basevar_index (var_map map
, int partition
)
190 gcc_assert (partition
>= 0
191 && partition
<= (int) num_var_partitions (map
));
192 return map
->partition_to_base_index
[partition
];
196 /* Return the number of different base variables in MAP. */
199 num_basevars (var_map map
)
201 return map
->num_basevars
;
206 /* This routine registers a partition for SSA_VAR with MAP. Any unregistered
207 partitions may be filtered out by a view later. */
210 register_ssa_partition (var_map map
, tree ssa_var
)
214 #if defined ENABLE_CHECKING
215 register_ssa_partition_check (ssa_var
);
218 version
= SSA_NAME_VERSION (ssa_var
);
219 if (map
->partition_to_var
[version
] == NULL_TREE
)
220 map
->partition_to_var
[version
] = ssa_var
;
224 /* ---------------- live on entry/exit info ------------------------------
226 This structure is used to represent live range information on SSA based
227 trees. A partition map must be provided, and based on the active partitions,
228 live-on-entry information and live-on-exit information can be calculated.
229 As well, partitions are marked as to whether they are global (live
230 outside the basic block they are defined in).
232 The live-on-entry information is per block. It provide a bitmap for
233 each block which has a bit set for each partition that is live on entry to
236 The live-on-exit information is per block. It provides a bitmap for each
237 block indicating which partitions are live on exit from the block.
239 For the purposes of this implementation, we treat the elements of a PHI
242 Uses in a PHI are considered LIVE-ON-EXIT to the block from which they
243 originate. They are *NOT* considered live on entry to the block
244 containing the PHI node.
246 The Def of a PHI node is *not* considered live on entry to the block.
247 It is considered to be "define early" in the block. Picture it as each
248 block having a stmt (or block-preheader) before the first real stmt in
249 the block which defines all the variables that are defined by PHIs.
251 ----------------------------------------------------------------------- */
254 typedef struct tree_live_info_d
256 /* Var map this relates to. */
259 /* Bitmap indicating which partitions are global. */
262 /* Bitmap of live on entry blocks for partition elements. */
265 /* Number of basic blocks when live on exit calculated. */
268 /* Vector used when creating live ranges as a visited stack. */
271 /* Top of workstack. */
274 /* Bitmap of what variables are live on exit for a basic blocks. */
279 extern tree_live_info_p
calculate_live_ranges (var_map
);
280 extern void calculate_live_on_exit (tree_live_info_p
);
281 extern void delete_tree_live_info (tree_live_info_p
);
283 #define LIVEDUMP_ENTRY 0x01
284 #define LIVEDUMP_EXIT 0x02
285 #define LIVEDUMP_ALL (LIVEDUMP_ENTRY | LIVEDUMP_EXIT)
286 extern void dump_live_info (FILE *, tree_live_info_p
, int);
289 /* Return TRUE if P is marked as a global in LIVE. */
292 partition_is_global (tree_live_info_p live
, int p
)
294 gcc_assert (live
->global
);
295 return bitmap_bit_p (live
->global
, p
);
299 /* Return the bitmap from LIVE representing the live on entry blocks for
303 live_on_entry (tree_live_info_p live
, basic_block bb
)
305 gcc_assert (live
->livein
);
306 gcc_assert (bb
!= ENTRY_BLOCK_PTR
);
307 gcc_assert (bb
!= EXIT_BLOCK_PTR
);
309 return live
->livein
[bb
->index
];
313 /* Return the bitmap from LIVE representing the live on exit partitions from
317 live_on_exit (tree_live_info_p live
, basic_block bb
)
319 gcc_assert (live
->liveout
);
320 gcc_assert (bb
!= ENTRY_BLOCK_PTR
);
321 gcc_assert (bb
!= EXIT_BLOCK_PTR
);
323 return live
->liveout
[bb
->index
];
327 /* Return the partition map which the information in LIVE utilizes. */
329 static inline var_map
330 live_var_map (tree_live_info_p live
)
336 /* Merge the live on entry information in LIVE for partitions P1 and P2. Place
337 the result into P1. Clear P2. */
340 live_merge_and_clear (tree_live_info_p live
, int p1
, int p2
)
342 gcc_assert (live
->livein
[p1
]);
343 gcc_assert (live
->livein
[p2
]);
344 bitmap_ior_into (live
->livein
[p1
], live
->livein
[p2
]);
345 bitmap_zero (live
->livein
[p2
]);
349 /* Mark partition P as live on entry to basic block BB in LIVE. */
352 make_live_on_entry (tree_live_info_p live
, basic_block bb
, int p
)
354 bitmap_set_bit (live
->livein
[bb
->index
], p
);
355 bitmap_set_bit (live
->global
, p
);
359 /* From tree-ssa-coalesce.c */
360 extern var_map
coalesce_ssa_name (void);
363 /* From tree-ssa-ter.c */
364 extern tree
*find_replaceable_exprs (var_map
);
365 extern void dump_replaceable_exprs (FILE *, tree
*);
368 #endif /* _TREE_SSA_LIVE_H */