22 #ifndef _TREE_SSA_LIVE_H
23 #define _TREE_SSA_LIVE_H 1
25 #include "partition.h"
69 #define NO_PARTITION -1
79 #ifdef ENABLE_CHECKING
86 static inline unsigned
118 if (part == NO_PARTITION)
133 part = partition_find (map->
var_partition, SSA_NAME_VERSION (var));
149 if (part == NO_PARTITION)
160 gcc_checking_assert (partition >= 0
181 tree ssa_var ATTRIBUTE_UNUSED)
183 #if defined ENABLE_CHECKING
248 #define LIVEDUMP_ENTRY 0x01
249 #define LIVEDUMP_EXIT 0x02
250 #define LIVEDUMP_ALL (LIVEDUMP_ENTRY | LIVEDUMP_EXIT)
261 gcc_checking_assert (live->
global);
272 gcc_checking_assert (live->
livein
273 && bb != ENTRY_BLOCK_PTR
274 && bb != EXIT_BLOCK_PTR);
286 gcc_checking_assert (live->
liveout
287 && bb != ENTRY_BLOCK_PTR
288 && bb != EXIT_BLOCK_PTR);
309 gcc_checking_assert (&live->
livein[p1] && &live->
livein[p2]);