mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-25 17:16:16 +08:00
except.c (verify_eh_tree): Fix handling of fun!=cfun; be ready for removed regions.
* except.c (verify_eh_tree): Fix handling of fun!=cfun; be ready for removed regions. From-SVN: r145232
This commit is contained in:
parent
13a9fa4483
commit
98f358e55f
@ -1,3 +1,8 @@
|
||||
2009-03-29 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* except.c (verify_eh_tree): Fix handling of fun!=cfun; be ready
|
||||
for removed regions.
|
||||
|
||||
2009-03-29 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* except.c (dump_eh_tree): Dump all datastructures.
|
||||
|
25
gcc/except.c
25
gcc/except.c
@ -3968,23 +3968,25 @@ verify_eh_tree (struct function *fun)
|
||||
int j;
|
||||
int depth = 0;
|
||||
|
||||
i = fun->eh->region_tree;
|
||||
if (! i)
|
||||
if (!fun->eh->region_tree)
|
||||
return;
|
||||
for (j = fun->eh->last_region_number; j > 0; --j)
|
||||
if ((i = VEC_index (eh_region, cfun->eh->region_array, j)))
|
||||
if ((i = VEC_index (eh_region, fun->eh->region_array, j)))
|
||||
{
|
||||
if (i->region_number == j)
|
||||
count++;
|
||||
if (i->region_number != j)
|
||||
if (i->region_number != j && (!i->aka || !bitmap_bit_p (i->aka, j)))
|
||||
{
|
||||
error ("region_array is corrupted for region %i", i->region_number);
|
||||
error ("region_array is corrupted for region %i",
|
||||
i->region_number);
|
||||
err = true;
|
||||
}
|
||||
}
|
||||
i = fun->eh->region_tree;
|
||||
|
||||
while (1)
|
||||
{
|
||||
if (VEC_index (eh_region, cfun->eh->region_array, i->region_number) != i)
|
||||
if (VEC_index (eh_region, fun->eh->region_array, i->region_number) != i)
|
||||
{
|
||||
error ("region_array is corrupted for region %i", i->region_number);
|
||||
err = true;
|
||||
@ -3996,7 +3998,8 @@ verify_eh_tree (struct function *fun)
|
||||
}
|
||||
if (i->may_contain_throw && outer && !outer->may_contain_throw)
|
||||
{
|
||||
error ("region %i may contain throw and is contained in region that may not",
|
||||
error
|
||||
("region %i may contain throw and is contained in region that may not",
|
||||
i->region_number);
|
||||
err = true;
|
||||
}
|
||||
@ -4005,7 +4008,7 @@ verify_eh_tree (struct function *fun)
|
||||
error ("negative nesting depth of region %i", i->region_number);
|
||||
err = true;
|
||||
}
|
||||
nvisited ++;
|
||||
nvisited++;
|
||||
/* If there are sub-regions, process them. */
|
||||
if (i->inner)
|
||||
outer = i, i = i->inner, depth++;
|
||||
@ -4015,7 +4018,8 @@ verify_eh_tree (struct function *fun)
|
||||
/* Otherwise, step back up the tree to the next peer. */
|
||||
else
|
||||
{
|
||||
do {
|
||||
do
|
||||
{
|
||||
i = i->outer;
|
||||
depth--;
|
||||
if (i == NULL)
|
||||
@ -4038,7 +4042,8 @@ verify_eh_tree (struct function *fun)
|
||||
return;
|
||||
}
|
||||
outer = i->outer;
|
||||
} while (i->next_peer == NULL);
|
||||
}
|
||||
while (i->next_peer == NULL);
|
||||
i = i->next_peer;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user