diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-07-31 19:31:54 -0700 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2018-07-31 19:31:54 -0700 |
commit | f646ec790a79f29d6964f3b7e30088f044b4a4e9 (patch) | |
tree | 5bcbcf52c0a4ee1b0c3aa52cfb829a455be3f368 /ice40 | |
parent | 720e81586502f527cba7b9052b6bfed719c0b165 (diff) | |
download | nextpnr-f646ec790a79f29d6964f3b7e30088f044b4a4e9.tar.gz nextpnr-f646ec790a79f29d6964f3b7e30088f044b4a4e9.tar.bz2 nextpnr-f646ec790a79f29d6964f3b7e30088f044b4a4e9.zip |
Modify the getNetinfo*() functions and getBudgetOverride() to not use
user_idx and to take a PortRef& instead
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/arch.cc | 3 | ||||
-rw-r--r-- | ice40/arch.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc index bdfb13fe..18887a3c 100644 --- a/ice40/arch.cc +++ b/ice40/arch.cc @@ -642,11 +642,10 @@ delay_t Arch::predictDelay(const NetInfo *net_info, const PortRef &sink) const return xscale * abs(xd) + yscale * abs(yd) + offset; } -delay_t Arch::getBudgetOverride(NetInfo *net_info, int user_idx, delay_t budget) const +delay_t Arch::getBudgetOverride(const NetInfo *net_info, const PortRef& sink, delay_t budget) const { const auto &driver = net_info->driver; if (driver.port == id_cout) { - const auto &sink = net_info->users[user_idx]; auto driver_loc = getBelLocation(driver.cell->bel); auto sink_loc = getBelLocation(sink.cell->bel); if (driver_loc.y == sink_loc.y) diff --git a/ice40/arch.h b/ice40/arch.h index 92698b4d..d813c038 100644 --- a/ice40/arch.h +++ b/ice40/arch.h @@ -702,7 +702,7 @@ struct Arch : BaseCtx delay_t getRipupDelayPenalty() const { return 200; } float getDelayNS(delay_t v) const { return v * 0.001; } uint32_t getDelayChecksum(delay_t v) const { return v; } - delay_t getBudgetOverride(NetInfo *net_info, int user_idx, delay_t budget) const; + delay_t getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay_t budget) const; // ------------------------------------------------- |