aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfglayout.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2001-12-29 21:01:15 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2001-12-29 21:01:15 +0100
commit545614570cb5ee234331fc93c562eb146dbba579 (patch)
tree67e8d4070f4ecd07fce69ac4d97b24b9109d106f /gcc/cfglayout.c
parent9d430eb5b13add7ea10524d8842bd01721b8f433 (diff)
downloadgcc-545614570cb5ee234331fc93c562eb146dbba579.zip
gcc-545614570cb5ee234331fc93c562eb146dbba579.tar.gz
gcc-545614570cb5ee234331fc93c562eb146dbba579.tar.bz2
cfglayout.c (insert_intra_before_1): New.
* cfglayout.c (insert_intra_before_1): New. (insert_inter_bb_scope_notes): Emit sibling block notes which don't span multiple basic blocks. * gcc.dg/debug-3.c: New test. * gcc.dg/debug-4.c: New test. * gcc.dg/debug-5.c: New test. From-SVN: r48380
Diffstat (limited to 'gcc/cfglayout.c')
-rw-r--r--gcc/cfglayout.c69
1 files changed, 57 insertions, 12 deletions
diff --git a/gcc/cfglayout.c b/gcc/cfglayout.c
index e0adb53..8ddce14 100644
--- a/gcc/cfglayout.c
+++ b/gcc/cfglayout.c
@@ -95,6 +95,7 @@ static void relate_bbs_with_scopes PARAMS ((scope));
static scope make_new_scope PARAMS ((int, rtx));
static void build_scope_forest PARAMS ((scope_forest_info *));
static void remove_scope_notes PARAMS ((void));
+static void insert_intra_before_1 PARAMS ((scope, rtx *, basic_block));
static void insert_intra_1 PARAMS ((scope, rtx *, basic_block));
static void insert_intra_bb_scope_notes PARAMS ((basic_block));
static void insert_inter_bb_scope_notes PARAMS ((basic_block, basic_block));
@@ -578,6 +579,32 @@ insert_intra_1 (s, ip, bb)
}
}
+/* Insert scope note pairs for a contained scope tree S before insn IP. */
+
+static void
+insert_intra_before_1 (s, ip, bb)
+ scope s;
+ rtx *ip;
+ basic_block bb;
+{
+ scope p;
+
+ if (NOTE_BLOCK (s->note_beg))
+ {
+ *ip = emit_note_before (NOTE_INSN_BLOCK_END, *ip);
+ NOTE_BLOCK (*ip) = NOTE_BLOCK (s->note_end);
+ }
+
+ for (p = s->inner; p; p = p->next)
+ insert_intra_before_1 (p, ip, bb);
+
+ if (NOTE_BLOCK (s->note_beg))
+ {
+ *ip = emit_note_before (NOTE_INSN_BLOCK_BEG, *ip);
+ NOTE_BLOCK (*ip) = NOTE_BLOCK (s->note_beg);
+ }
+}
+
/* Insert NOTE_INSN_BLOCK_END notes and NOTE_INSN_BLOCK_BEG notes for
scopes that are contained within BB. */
@@ -661,15 +688,24 @@ insert_inter_bb_scope_notes (bb1, bb2)
if (bb1)
{
rtx end = bb1->end;
- scope s;
+ scope s, p;
ip = RBI (bb1)->eff_end;
for (s = RBI (bb1)->scope; s != com; s = s->outer)
- if (NOTE_BLOCK (s->note_beg))
- {
- ip = emit_note_after (NOTE_INSN_BLOCK_END, ip);
- NOTE_BLOCK (ip) = NOTE_BLOCK (s->note_end);
- }
+ {
+ if (NOTE_BLOCK (s->note_beg))
+ {
+ ip = emit_note_after (NOTE_INSN_BLOCK_END, ip);
+ NOTE_BLOCK (ip) = NOTE_BLOCK (s->note_end);
+ }
+
+ /* Now emit all sibling scopes which don't span any basic
+ blocks. */
+ if (s->outer)
+ for (p = s->outer->inner; p; p = p->next)
+ if (p != s && p->bb_beg == bb1 && p->bb_beg == p->bb_end)
+ insert_intra_1 (p, &ip, bb1);
+ }
/* Emitting note may move the end of basic block to unwanted place. */
bb1->end = end;
@@ -678,15 +714,24 @@ insert_inter_bb_scope_notes (bb1, bb2)
/* Open scopes. */
if (bb2)
{
- scope s;
+ scope s, p;
ip = bb2->head;
for (s = RBI (bb2)->scope; s != com; s = s->outer)
- if (NOTE_BLOCK (s->note_beg))
- {
- ip = emit_note_before (NOTE_INSN_BLOCK_BEG, ip);
- NOTE_BLOCK (ip) = NOTE_BLOCK (s->note_beg);
- }
+ {
+ if (NOTE_BLOCK (s->note_beg))
+ {
+ ip = emit_note_before (NOTE_INSN_BLOCK_BEG, ip);
+ NOTE_BLOCK (ip) = NOTE_BLOCK (s->note_beg);
+ }
+
+ /* Now emit all sibling scopes which don't span any basic
+ blocks. */
+ if (s->outer)
+ for (p = s->outer->inner; p; p = p->next)
+ if (p != s && p->bb_beg == bb2 && p->bb_beg == p->bb_end)
+ insert_intra_before_1 (p, &ip, bb2);
+ }
}
}