aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-03-07 10:36:23 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-03-07 10:36:23 -0800
commit542d73aeffbdb33c2cf23d1a232da9d7fe747e92 (patch)
tree60a2ea46f8d164b6809059d0e148fc6603c01794 /gcc
parentdd1f09c21cbd573bd4fe5ba15b85e49cb77db515 (diff)
downloadgcc-542d73aeffbdb33c2cf23d1a232da9d7fe747e92.zip
gcc-542d73aeffbdb33c2cf23d1a232da9d7fe747e92.tar.gz
gcc-542d73aeffbdb33c2cf23d1a232da9d7fe747e92.tar.bz2
emit-rtl.c (remove_unnecessary_notes): Verify proper nesting of block notes and exception handling notes.
* emit-rtl.c (remove_unnecessary_notes): Verify proper nesting of block notes and exception handling notes. From-SVN: r40295
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/emit-rtl.c80
2 files changed, 60 insertions, 25 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ae6dbeb..3da7b2e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-07 Richard Henderson <rth@redhat.com>
+
+ * emit-rtl.c (remove_unnecessary_notes): Verify proper nesting
+ of block notes and exception handling notes.
+
2001-03-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* fixinc/Makefile.in (FIXINC_DEFS): Add -DHAVE_CONFIG_H.
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index 2d4e7c2..6ac8ac1 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -2825,8 +2825,11 @@ reorder_insns_with_line_notes (from, to, after)
void
remove_unnecessary_notes ()
{
+ rtx block_stack = NULL_RTX;
+ rtx eh_stack = NULL_RTX;
rtx insn;
rtx next;
+ rtx tmp;
/* We must not remove the first instruction in the function because
the compiler depends on the first instruction being a note. */
@@ -2839,55 +2842,78 @@ remove_unnecessary_notes ()
if (GET_CODE (insn) != NOTE)
continue;
- /* By now, all notes indicating lexical blocks should have
- NOTE_BLOCK filled in. */
- if ((NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
- || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
- && NOTE_BLOCK (insn) == NULL_TREE)
- abort ();
-
- /* Remove NOTE_INSN_DELETED notes. */
- if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
- remove_insn (insn);
- else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
+ switch (NOTE_LINE_NUMBER (insn))
{
+ case NOTE_INSN_DELETED:
+ remove_insn (insn);
+ break;
+
+ case NOTE_INSN_EH_REGION_BEG:
+ eh_stack = alloc_INSN_LIST (insn, eh_stack);
+ break;
+
+ case NOTE_INSN_EH_REGION_END:
+ /* Too many end notes. */
+ if (eh_stack == NULL_RTX)
+ abort ();
+ /* Mismatched nesting. */
+ if (NOTE_EH_HANDLER (XEXP (eh_stack, 0)) != NOTE_EH_HANDLER (insn))
+ abort ();
+ tmp = eh_stack;
+ eh_stack = XEXP (eh_stack, 1);
+ free_INSN_LIST_node (tmp);
+ break;
+
+ case NOTE_INSN_BLOCK_BEG:
+ /* By now, all notes indicating lexical blocks should have
+ NOTE_BLOCK filled in. */
+ if (NOTE_BLOCK (insn) == NULL_TREE)
+ abort ();
+ block_stack = alloc_INSN_LIST (insn, block_stack);
+ break;
+
+ case NOTE_INSN_BLOCK_END:
+ /* Too many end notes. */
+ if (block_stack == NULL_RTX)
+ abort ();
+ /* Mismatched nesting. */
+ if (NOTE_BLOCK (XEXP (block_stack, 0)) != NOTE_BLOCK (insn))
+ abort ();
+ tmp = block_stack;
+ block_stack = XEXP (block_stack, 1);
+ free_INSN_LIST_node (tmp);
+
/* Scan back to see if there are any non-note instructions
between INSN and the beginning of this block. If not,
then there is no PC range in the generated code that will
actually be in this block, so there's no point in
remembering the existence of the block. */
- rtx prev;
-
- for (prev = PREV_INSN (insn); prev; prev = PREV_INSN (prev))
+ for (tmp = PREV_INSN (insn); tmp ; tmp = PREV_INSN (tmp))
{
/* This block contains a real instruction. Note that we
don't include labels; if the only thing in the block
is a label, then there are still no PC values that
lie within the block. */
- if (INSN_P (prev))
+ if (INSN_P (tmp))
break;
/* We're only interested in NOTEs. */
- if (GET_CODE (prev) != NOTE)
+ if (GET_CODE (tmp) != NOTE)
continue;
- if (NOTE_LINE_NUMBER (prev) == NOTE_INSN_BLOCK_BEG)
+ if (NOTE_LINE_NUMBER (tmp) == NOTE_INSN_BLOCK_BEG)
{
- /* If the BLOCKs referred to by these notes don't
- match, then something is wrong with our BLOCK
- nesting structure. */
- if (NOTE_BLOCK (prev) != NOTE_BLOCK (insn))
- abort ();
-
+ /* We just verified that this BLOCK matches us
+ with the block_stack check above. */
if (debug_ignore_block (NOTE_BLOCK (insn)))
{
BLOCK_DEAD (NOTE_BLOCK (insn)) = 1;
- remove_insn (prev);
+ remove_insn (tmp);
remove_insn (insn);
}
break;
}
- else if (NOTE_LINE_NUMBER (prev) == NOTE_INSN_BLOCK_END)
+ else if (NOTE_LINE_NUMBER (tmp) == NOTE_INSN_BLOCK_END)
/* There's a nested block. We need to leave the
current block in place since otherwise the debugger
wouldn't be able to show symbols from our block in
@@ -2896,6 +2922,10 @@ remove_unnecessary_notes ()
}
}
}
+
+ /* Too many begin notes. */
+ if (block_stack || eh_stack)
+ abort ();
}