summaryrefslogtreecommitdiff
path: root/gcc/ira-conflicts.c
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2020-02-11 18:16:40 +0100
committerHans-Peter Nilsson <hp@axis.com>2020-02-11 18:16:40 +0100
commita5e3dd5d2e0073f585fa97d6b961752432c3d122 (patch)
tree4b74cbfe4e786b900513a0e9c6a27e81fc14a10e /gcc/ira-conflicts.c
parentc0e05505ffd58d3d0ed9c22e0cc6b954e25c8b1b (diff)
regalloc/debug: fix buggy print_hard_reg_set
* ira-conflicts.c (print_hard_reg_set): Correct output for sets including FIRST_PSEUDO_REGISTER - 1. * ira-color.c (print_hard_reg_set): Ditto. Before, for a target with FIRST_PSEUDO_REGISTER 20, you'd get "19-18" for (1<<19). For (1<<18)|(1<<19), you'd get "18". I was using ira-conflicts.c:print_hard_reg_set with a local patch to gdbinit.in in a debug-session, and noticed the erroneous output. I see there's an almost identical function in ira-color.c and on top of that, there's another function by the same name and with similar semantics in sel-sched-dump.c, but the last one doesn't try to print ranges.
Diffstat (limited to 'gcc/ira-conflicts.c')
-rw-r--r--gcc/ira-conflicts.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/gcc/ira-conflicts.c b/gcc/ira-conflicts.c
index 11d3a86dc08..0220e725e55 100644
--- a/gcc/ira-conflicts.c
+++ b/gcc/ira-conflicts.c
@@ -611,25 +611,27 @@ build_conflicts (void)
static void
print_hard_reg_set (FILE *file, const char *title, HARD_REG_SET set)
{
- int i, start;
+ int i, start, end;
fputs (title, file);
- for (start = -1, i = 0; i < FIRST_PSEUDO_REGISTER; i++)
+ for (start = end = -1, i = 0; i < FIRST_PSEUDO_REGISTER; i++)
{
- if (TEST_HARD_REG_BIT (set, i))
+ bool reg_included = TEST_HARD_REG_BIT (set, i);
+
+ if (reg_included)
{
- if (i == 0 || ! TEST_HARD_REG_BIT (set, i - 1))
+ if (start == -1)
start = i;
+ end = i;
}
- if (start >= 0
- && (i == FIRST_PSEUDO_REGISTER - 1 || ! TEST_HARD_REG_BIT (set, i)))
+ if (start >= 0 && (!reg_included || i == FIRST_PSEUDO_REGISTER - 1))
{
- if (start == i - 1)
+ if (start == end)
fprintf (file, " %d", start);
- else if (start == i - 2)
- fprintf (file, " %d %d", start, start + 1);
+ else if (start == end + 1)
+ fprintf (file, " %d %d", start, end);
else
- fprintf (file, " %d-%d", start, i - 1);
+ fprintf (file, " %d-%d", start, end);
start = -1;
}
}