From bd2b3e5e029e9f84f8e0f52e33ad9a5c12f7c9ff Mon Sep 17 00:00:00 2001 From: David Shah Date: Sun, 4 Nov 2018 14:26:16 +0000 Subject: timing: Fix Fmax for clocks with mixed edge usage Signed-off-by: David Shah --- common/timing.cc | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'common') diff --git a/common/timing.cc b/common/timing.cc index 60b97655..a2d48ed9 100644 --- a/common/timing.cc +++ b/common/timing.cc @@ -517,6 +517,7 @@ void timing_analysis(Context *ctx, bool print_histogram, bool print_fmax, bool p print_histogram ? &slack_histogram : nullptr); auto min_slack = timing.walk_paths(); std::map> clock_reports; + std::map clock_fmax; std::vector xclock_paths; if (print_path || print_fmax) { for (auto path : crit_paths) { @@ -524,10 +525,15 @@ void timing_analysis(Context *ctx, bool print_histogram, bool print_fmax, bool p const ClockEvent &b = path.first.end; if (a.clock != b.clock || a.clock == ctx->id("$async$")) continue; - delay_t slack = path.second.path_period - path.second.path_delay; - if (!clock_reports.count(a.clock) || - slack < (clock_reports.at(a.clock).second.path_period - clock_reports.at(a.clock).second.path_delay)) { + double Fmax; + if (a.edge == b.edge) + Fmax = 1000 / ctx->getDelayNS(path.second.path_delay); + else + Fmax = 500 / ctx->getDelayNS(path.second.path_delay); + if (!clock_fmax.count(a.clock) || + Fmax < clock_fmax.at(a.clock)) { clock_reports[a.clock] = path; + clock_fmax[a.clock] = Fmax; } } @@ -578,6 +584,7 @@ void timing_analysis(Context *ctx, bool print_histogram, bool print_fmax, bool p const NetInfo *clknet = get_net_or_empty(front_driver.cell, clockInfo.clock_port); if (clknet != nullptr && clknet->name == clocks.start.clock && clockInfo.edge == clocks.start.edge) { + last_port = clockInfo.clock_port; } } } @@ -631,13 +638,7 @@ void timing_analysis(Context *ctx, bool print_histogram, bool print_fmax, bool p if (print_fmax) { log_break(); for (auto &clock : clock_reports) { - - double Fmax; - if (clock.second.first.start.edge == clock.second.first.end.edge) - Fmax = 1000 / ctx->getDelayNS(clock.second.second.path_delay); - else - Fmax = 500 / ctx->getDelayNS(clock.second.second.path_delay); - log_info("Max frequency for clock '%s': %.02f MHz\n", clock.first.c_str(ctx), Fmax); + log_info("Max frequency for clock '%s': %.02f MHz\n", clock.first.c_str(ctx), clock_fmax[clock.first]); } log_break(); -- cgit v1.2.3