diff options
author | David Shah <davey1576@gmail.com> | 2018-06-19 13:48:04 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-19 13:48:04 +0200 |
commit | ecc2c486d9988a44eed7c2a197b0a0e50bd96248 (patch) | |
tree | c52168be66090a69cc19bd1a3cd21dc27c4b2d8c /ice40 | |
parent | 7abfd3677318152e1ff70d68a6664422b7efe5e6 (diff) | |
download | nextpnr-ecc2c486d9988a44eed7c2a197b0a0e50bd96248.tar.gz nextpnr-ecc2c486d9988a44eed7c2a197b0a0e50bd96248.tar.bz2 nextpnr-ecc2c486d9988a44eed7c2a197b0a0e50bd96248.zip |
ice40: Fix constant packer
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/pack.cc | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/ice40/pack.cc b/ice40/pack.cc index 1569fe01..542e3e96 100644 --- a/ice40/pack.cc +++ b/ice40/pack.cc @@ -202,22 +202,32 @@ static void pack_constants(Context *ctx) std::vector<IdString> dead_nets; + bool gnd_used = false, vcc_used = false; + for (auto net : ctx->nets) { NetInfo *ni = net.second; if (ni->driver.cell != nullptr && ni->driver.cell->type == ctx->id("GND")) { set_net_constant(ctx, ni, gnd_net, false); - ctx->cells[gnd_cell->name] = gnd_cell; - ctx->nets[gnd_net->name] = gnd_net; + gnd_used = true; dead_nets.push_back(net.first); } else if (ni->driver.cell != nullptr && ni->driver.cell->type == ctx->id("VCC")) { set_net_constant(ctx, ni, vcc_net, true); - ctx->cells[vcc_cell->name] = vcc_cell; - ctx->nets[vcc_net->name] = vcc_net; + vcc_used = true; dead_nets.push_back(net.first); } } + if (gnd_used) { + ctx->cells[gnd_cell->name] = gnd_cell; + ctx->nets[gnd_net->name] = gnd_net; + } + + if (vcc_used) { + ctx->cells[vcc_cell->name] = vcc_cell; + ctx->nets[vcc_net->name] = vcc_net; + } + for (auto dn : dead_nets) ctx->nets.erase(dn); } |