aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorMichael Meissner <meissner@cygnus.com>1997-09-04 19:15:50 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1997-09-04 19:15:50 +0000
commit3e28fe4442551e4d0014159ecbdb95521e278956 (patch)
tree992f01f05d3d923c09f01383c24bf63b264414f6 /gcc/flow.c
parent417b0fa21150c9049decf23ffff6e5ccbaaac0d3 (diff)
downloadgcc-3e28fe4442551e4d0014159ecbdb95521e278956.zip
gcc-3e28fe4442551e4d0014159ecbdb95521e278956.tar.gz
gcc-3e28fe4442551e4d0014159ecbdb95521e278956.tar.bz2
For phases starting with flow, print basic block information when doing dumps
From-SVN: r15082
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c79
1 files changed, 79 insertions, 0 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 3ca1dcf..3b9e593 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -2933,3 +2933,82 @@ dump_flow_info (file)
}
fprintf (file, "\n");
}
+
+
+/* Like print_rtl, but also print out live information for the start of each
+ basic block. */
+
+void
+print_rtl_with_bb (outf, rtx_first)
+ FILE *outf;
+ rtx rtx_first;
+{
+ register rtx tmp_rtx;
+
+ if (rtx_first == 0)
+ fprintf (outf, "(nil)\n");
+
+ else
+ {
+ int i, bb;
+ enum bb_state { NOT_IN_BB, IN_ONE_BB, IN_MULTIPLE_BB };
+ int max_uid = get_max_uid ();
+ int *start = alloca (max_uid * sizeof (int));
+ int *end = alloca (max_uid * sizeof (int));
+ char *in_bb_p = alloca (max_uid * sizeof (enum bb_state));
+
+ for (i = 0; i < max_uid; i++)
+ {
+ start[i] = end[i] = -1;
+ in_bb_p[i] = NOT_IN_BB;
+ }
+
+ for (i = n_basic_blocks-1; i >= 0; i--)
+ {
+ rtx x;
+ start[INSN_UID (basic_block_head[i])] = i;
+ end[INSN_UID (basic_block_end[i])] = i;
+ for (x = basic_block_head[i]; x != NULL_RTX; x = NEXT_INSN (x))
+ {
+ in_bb_p[ INSN_UID(x)] =
+ ((in_bb_p[ INSN_UID(x)] == NOT_IN_BB)
+ ? IN_ONE_BB
+ : IN_MULTIPLE_BB);
+ if (x == basic_block_end[i])
+ break;
+ }
+ }
+
+ for (tmp_rtx = rtx_first; NULL != tmp_rtx; tmp_rtx = NEXT_INSN (tmp_rtx))
+ {
+ if ((bb = start[INSN_UID (tmp_rtx)]) >= 0)
+ {
+ fprintf (outf, ";; Start of basic block %d, registers live:",
+ bb);
+
+ EXECUTE_IF_SET_IN_REG_SET (basic_block_live_at_start[bb], 0, i,
+ {
+ fprintf (outf, " %d", i);
+ if (i < FIRST_PSEUDO_REGISTER)
+ fprintf (outf, " [%s]",
+ reg_names[i]);
+ });
+ putc ('\n', outf);
+ }
+
+ if (in_bb_p[ INSN_UID(tmp_rtx)] == NOT_IN_BB
+ && GET_CODE (tmp_rtx) != NOTE
+ && GET_CODE (tmp_rtx) != BARRIER)
+ fprintf (outf, ";; Insn is not within a basic block\n");
+ else if (in_bb_p[ INSN_UID(tmp_rtx)] == IN_MULTIPLE_BB)
+ fprintf (outf, ";; Insn is in multiple basic blocks\n");
+
+ print_rtl_single (outf, tmp_rtx);
+
+ if ((bb = end[INSN_UID (tmp_rtx)]) >= 0)
+ fprintf (outf, ";; End of basic block %d\n", bb);
+
+ putc ('\n', outf);
+ }
+ }
+}