From 0dafcc44ffcbe747babdadbb33d4dc140b5ea87c Mon Sep 17 00:00:00 2001 From: gatecat Date: Sun, 12 Dec 2021 18:48:39 +0000 Subject: router2: Improve reservation debug logging Signed-off-by: gatecat --- common/router2.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'common') diff --git a/common/router2.cc b/common/router2.cc index 051aa7f8..d713cce2 100644 --- a/common/router2.cc +++ b/common/router2.cc @@ -453,12 +453,14 @@ struct Router2 { bool did_something = false; WireId src = ctx->getNetinfoSourceWire(net); - for (auto sink : ctx->getNetinfoSinkWires(net, net->users.at(i))) { + auto &usr = net->users.at(i); + for (auto sink : ctx->getNetinfoSinkWires(net, usr)) { pool rsv; WireId cursor = sink; bool done = false; if (ctx->debug) - log("reserving wires for arc %d of net %s\n", int(i), ctx->nameOf(net)); + log("reserving wires for arc %d (%s.%s) of net %s\n", int(i), ctx->nameOf(usr.cell), + ctx->nameOf(usr.port), ctx->nameOf(net)); while (!done) { auto &wd = wire_data(cursor); if (ctx->debug) -- cgit v1.2.3