Lines Matching defs:partition_dependencies
111 PARTITION_DEPENDENCIES is another bitmap array, and it has a bit set for any
163 bitmap *partition_dependencies; /* Partitions expr is dependent on. */
193 t->partition_dependencies = XCNEWVEC (bitmap, num_ssa_names + 1);
237 gcc_assert (t->partition_dependencies[x] == NULL);
246 free (t->partition_dependencies);
276 if (!tab->partition_dependencies[version])
277 tab->partition_dependencies[version] = BITMAP_ALLOC (&ter_bitmap_obstack);
279 bitmap_set_bit (tab->partition_dependencies[version], p);
335 /* Rather than set partition_dependencies and in_use lists bit by
337 if (!tab->partition_dependencies[version])
338 tab->partition_dependencies[version] =
340 bitmap_ior_into (tab->partition_dependencies[version],
377 if (tab->partition_dependencies[version])
379 EXECUTE_IF_SET_IN_BITMAP (tab->partition_dependencies[version], 0, i, bi)
381 BITMAP_FREE (tab->partition_dependencies[version]);
520 the defining stmt into the partition_dependencies table TAB. If
529 if (more_replacing && tab->partition_dependencies[version])
531 tab->partition_dependencies[version]);
785 if (t->partition_dependencies[x]
786 && !bitmap_empty_p (t->partition_dependencies[x]))
788 EXECUTE_IF_SET_IN_BITMAP (t->partition_dependencies[x], 0, y, bi)