aboutsummaryrefslogtreecommitdiffstats
path: root/common/timing.cc
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2018-08-06 07:18:06 -0700
committerEddie Hung <eddieh@ece.ubc.ca>2018-08-06 07:18:06 -0700
commitfa773c3ce9fb909017c2766e3ddbe4afd611a80e (patch)
treeb973baef6b5f45d953e04e043e7680ff21dff424 /common/timing.cc
parent9b414594d2aad06e8cd9a6b767d90dcaa2b90597 (diff)
downloadnextpnr-fa773c3ce9fb909017c2766e3ddbe4afd611a80e.tar.gz
nextpnr-fa773c3ce9fb909017c2766e3ddbe4afd611a80e.tar.bz2
nextpnr-fa773c3ce9fb909017c2766e3ddbe4afd611a80e.zip
Add net_delays bool to Timing class to control net delay consideration
Diffstat (limited to 'common/timing.cc')
-rw-r--r--common/timing.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/common/timing.cc b/common/timing.cc
index 3fa67122..78ec4ea7 100644
--- a/common/timing.cc
+++ b/common/timing.cc
@@ -32,14 +32,15 @@ typedef std::map<int, unsigned> DelayFrequency;
struct Timing
{
Context *ctx;
+ bool net_delays;
bool update;
delay_t min_slack;
PortRefVector current_path;
PortRefVector *crit_path;
DelayFrequency *slack_histogram;
- Timing(Context *ctx, bool update, PortRefVector *crit_path = nullptr, DelayFrequency *slack_histogram = nullptr)
- : ctx(ctx), update(update), min_slack(1.0e12 / ctx->target_freq), crit_path(crit_path),
+ Timing(Context *ctx, bool net_delays, bool update, PortRefVector *crit_path = nullptr, DelayFrequency *slack_histogram = nullptr)
+ : ctx(ctx), net_delays(net_delays), update(update), min_slack(1.0e12 / ctx->target_freq), crit_path(crit_path),
slack_histogram(slack_histogram)
{
}
@@ -58,7 +59,7 @@ struct Timing
net_budget = budget;
pl = std::max(1, path_length);
}
- auto delay = ctx->slack_redist_iter > 0 ? ctx->getNetinfoRouteDelay(net, usr) : delay_t();
+ auto delay = net_delays ? ctx->getNetinfoRouteDelay(net, usr) : delay_t();
net_budget = std::min(net_budget, follow_user_port(usr, pl, slack - delay));
if (update)
usr.budget = std::min(usr.budget, delay + net_budget);
@@ -152,7 +153,7 @@ void assign_budget(Context *ctx, bool quiet)
log_info("Annotating ports with timing budgets for target frequency %.2f MHz\n", ctx->target_freq/1e6);
}
- Timing timing(ctx, true /* update */);
+ Timing timing(ctx, ctx->slack_redist_iter > 0 /* net_delays */, true /* update */);
timing.assign_budget();
if (!quiet || ctx->verbose) {
@@ -194,7 +195,7 @@ void timing_analysis(Context *ctx, bool print_histogram, bool print_path)
PortRefVector crit_path;
DelayFrequency slack_histogram;
- Timing timing(ctx, false /* update */, print_path ? &crit_path : nullptr,
+ Timing timing(ctx, true /* net_delays */, false /* update */, print_path ? &crit_path : nullptr,
print_histogram ? &slack_histogram : nullptr);
auto min_slack = timing.walk_paths();