2018-09-28 17:54:21 +02:00
|
|
|
// OpenSTA, Static Timing Analyzer
|
2025-01-22 02:54:33 +01:00
|
|
|
// Copyright (c) 2025, Parallax Software, Inc.
|
2018-09-28 17:54:21 +02:00
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2022-01-04 18:17:08 +01:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2018-09-28 17:54:21 +02:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2022-01-04 18:17:08 +01:00
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2025-01-22 02:54:33 +01:00
|
|
|
//
|
|
|
|
|
// The origin of this software must not be misrepresented; you must not
|
|
|
|
|
// claim that you wrote the original software.
|
|
|
|
|
//
|
|
|
|
|
// Altered source versions must be plainly marked as such, and must not be
|
|
|
|
|
// misrepresented as being the original software.
|
|
|
|
|
//
|
|
|
|
|
// This notice may not be removed or altered from any source distribution.
|
2018-09-28 17:54:21 +02:00
|
|
|
|
|
|
|
|
#include "CheckMinPulseWidths.hh"
|
|
|
|
|
|
2020-04-05 23:53:44 +02:00
|
|
|
#include "Debug.hh"
|
|
|
|
|
#include "TimingRole.hh"
|
|
|
|
|
#include "Liberty.hh"
|
|
|
|
|
#include "Network.hh"
|
|
|
|
|
#include "Graph.hh"
|
|
|
|
|
#include "Clock.hh"
|
|
|
|
|
#include "Sdc.hh"
|
|
|
|
|
#include "DcalcAnalysisPt.hh"
|
|
|
|
|
#include "GraphDelayCalc.hh"
|
|
|
|
|
#include "ClkInfo.hh"
|
|
|
|
|
#include "Tag.hh"
|
2025-03-27 02:21:03 +01:00
|
|
|
#include "Path.hh"
|
2020-04-05 23:53:44 +02:00
|
|
|
#include "Corner.hh"
|
|
|
|
|
#include "PathAnalysisPt.hh"
|
|
|
|
|
#include "SearchPred.hh"
|
|
|
|
|
#include "PathEnd.hh"
|
|
|
|
|
#include "Search.hh"
|
|
|
|
|
#include "search/Crpr.hh"
|
2020-04-05 20:35:51 +02:00
|
|
|
|
2018-09-28 17:54:21 +02:00
|
|
|
namespace sta {
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
minPulseWidth(const Path *path,
|
|
|
|
|
const StaState *sta,
|
|
|
|
|
// Return values.
|
|
|
|
|
float &min_width,
|
|
|
|
|
bool &exists);
|
|
|
|
|
|
|
|
|
|
// Abstract base class.
|
|
|
|
|
class MinPulseWidthCheckVisitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MinPulseWidthCheckVisitor() {}
|
|
|
|
|
virtual ~MinPulseWidthCheckVisitor() {}
|
|
|
|
|
virtual void visit(MinPulseWidthCheck &check,
|
|
|
|
|
const StaState *sta) = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CheckMinPulseWidths::CheckMinPulseWidths(StaState *sta) :
|
|
|
|
|
sta_(sta)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CheckMinPulseWidths::~CheckMinPulseWidths()
|
|
|
|
|
{
|
|
|
|
|
checks_.deleteContents();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
CheckMinPulseWidths::clear()
|
|
|
|
|
{
|
|
|
|
|
checks_.deleteContentsClear();
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-09 19:04:16 +01:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2018-09-28 17:54:21 +02:00
|
|
|
class MinPulseWidthChecksVisitor : public MinPulseWidthCheckVisitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2018-11-09 19:04:16 +01:00
|
|
|
explicit MinPulseWidthChecksVisitor(const Corner *corner,
|
|
|
|
|
MinPulseWidthCheckSeq &checks);
|
2018-09-28 17:54:21 +02:00
|
|
|
virtual void visit(MinPulseWidthCheck &check,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
|
|
|
|
|
private:
|
2018-11-09 19:04:16 +01:00
|
|
|
const Corner *corner_;
|
2018-09-28 17:54:21 +02:00
|
|
|
MinPulseWidthCheckSeq &checks_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
MinPulseWidthChecksVisitor::
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthChecksVisitor(const Corner *corner,
|
|
|
|
|
MinPulseWidthCheckSeq &checks) :
|
|
|
|
|
corner_(corner),
|
2018-09-28 17:54:21 +02:00
|
|
|
checks_(checks)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
MinPulseWidthChecksVisitor::visit(MinPulseWidthCheck &check,
|
2018-11-09 19:04:16 +01:00
|
|
|
const StaState *sta)
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
2019-03-13 01:25:53 +01:00
|
|
|
if (corner_ == nullptr
|
2018-11-09 19:04:16 +01:00
|
|
|
|| check.corner(sta) == corner_) {
|
|
|
|
|
MinPulseWidthCheck *copy = new MinPulseWidthCheck(check.openPath());
|
|
|
|
|
checks_.push_back(copy);
|
|
|
|
|
}
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinPulseWidthCheckSeq &
|
2018-11-09 19:04:16 +01:00
|
|
|
CheckMinPulseWidths::check(const Corner *corner)
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
|
|
|
|
clear();
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthChecksVisitor visitor(corner, checks_);
|
2018-09-28 17:54:21 +02:00
|
|
|
visitMinPulseWidthChecks(&visitor);
|
|
|
|
|
sort(checks_, MinPulseWidthSlackLess(sta_));
|
|
|
|
|
return checks_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinPulseWidthCheckSeq &
|
2018-11-09 19:04:16 +01:00
|
|
|
CheckMinPulseWidths::check(PinSeq *pins,
|
|
|
|
|
const Corner *corner)
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
|
|
|
|
clear();
|
|
|
|
|
Graph *graph = sta_->graph();
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthChecksVisitor visitor(corner, checks_);
|
2018-09-28 17:54:21 +02:00
|
|
|
PinSeq::Iterator pin_iter(pins);
|
|
|
|
|
while (pin_iter.hasNext()) {
|
2023-01-19 19:23:45 +01:00
|
|
|
const Pin *pin = pin_iter.next();
|
2018-09-28 17:54:21 +02:00
|
|
|
Vertex *vertex = graph->pinLoadVertex(pin);
|
|
|
|
|
visitMinPulseWidthChecks(vertex, &visitor);
|
|
|
|
|
}
|
|
|
|
|
sort(checks_, MinPulseWidthSlackLess(sta_));
|
|
|
|
|
return checks_;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-09 19:04:16 +01:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
class MinPulseWidthViolatorsVisitor : public MinPulseWidthCheckVisitor
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2018-11-09 19:04:16 +01:00
|
|
|
explicit MinPulseWidthViolatorsVisitor(const Corner *corner,
|
|
|
|
|
MinPulseWidthCheckSeq &checks);
|
2018-09-28 17:54:21 +02:00
|
|
|
virtual void visit(MinPulseWidthCheck &check,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
|
|
|
|
|
private:
|
2018-11-09 19:04:16 +01:00
|
|
|
const Corner *corner_;
|
2018-09-28 17:54:21 +02:00
|
|
|
MinPulseWidthCheckSeq &checks_;
|
|
|
|
|
};
|
|
|
|
|
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthViolatorsVisitor::
|
|
|
|
|
MinPulseWidthViolatorsVisitor(const Corner *corner,
|
|
|
|
|
MinPulseWidthCheckSeq &checks) :
|
|
|
|
|
corner_(corner),
|
2018-09-28 17:54:21 +02:00
|
|
|
checks_(checks)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthViolatorsVisitor::visit(MinPulseWidthCheck &check,
|
|
|
|
|
const StaState *sta)
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
2020-07-12 02:43:30 +02:00
|
|
|
if (delayLess(check.slack(sta), 0.0, sta)
|
2019-03-13 01:25:53 +01:00
|
|
|
&& (corner_ == nullptr
|
2018-11-09 19:04:16 +01:00
|
|
|
|| check.corner(sta) == corner_)) {
|
2018-09-28 17:54:21 +02:00
|
|
|
MinPulseWidthCheck *copy = new MinPulseWidthCheck(check.openPath());
|
|
|
|
|
checks_.push_back(copy);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinPulseWidthCheckSeq &
|
2018-11-09 19:04:16 +01:00
|
|
|
CheckMinPulseWidths::violations(const Corner *corner)
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
|
|
|
|
clear();
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthViolatorsVisitor visitor(corner, checks_);
|
2018-09-28 17:54:21 +02:00
|
|
|
visitMinPulseWidthChecks(&visitor);
|
|
|
|
|
sort(checks_, MinPulseWidthSlackLess(sta_));
|
|
|
|
|
return checks_;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-09 19:04:16 +01:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2018-09-28 17:54:21 +02:00
|
|
|
class MinPulseWidthSlackVisitor : public MinPulseWidthCheckVisitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthSlackVisitor(const Corner *corner);
|
2018-09-28 17:54:21 +02:00
|
|
|
virtual void visit(MinPulseWidthCheck &check,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
MinPulseWidthCheck *minSlackCheck();
|
|
|
|
|
|
|
|
|
|
private:
|
2018-11-09 19:04:16 +01:00
|
|
|
const Corner *corner_;
|
2018-09-28 17:54:21 +02:00
|
|
|
MinPulseWidthCheck *min_slack_check_;
|
|
|
|
|
};
|
|
|
|
|
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthSlackVisitor::MinPulseWidthSlackVisitor(const Corner *corner) :
|
|
|
|
|
corner_(corner),
|
2019-03-13 01:25:53 +01:00
|
|
|
min_slack_check_(nullptr)
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
MinPulseWidthSlackVisitor::visit(MinPulseWidthCheck &check,
|
|
|
|
|
const StaState *sta)
|
|
|
|
|
{
|
|
|
|
|
MinPulseWidthSlackLess slack_less(sta);
|
2019-03-13 01:25:53 +01:00
|
|
|
if (corner_ == nullptr
|
2018-11-09 19:04:16 +01:00
|
|
|
|| check.corner(sta) == corner_) {
|
2019-03-13 01:25:53 +01:00
|
|
|
if (min_slack_check_ == nullptr)
|
2018-11-09 19:04:16 +01:00
|
|
|
min_slack_check_ = check.copy();
|
|
|
|
|
else if (slack_less(&check, min_slack_check_)) {
|
|
|
|
|
delete min_slack_check_;
|
|
|
|
|
min_slack_check_ = check.copy();
|
|
|
|
|
}
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinPulseWidthCheck *
|
|
|
|
|
MinPulseWidthSlackVisitor::minSlackCheck()
|
|
|
|
|
{
|
|
|
|
|
return min_slack_check_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinPulseWidthCheck *
|
2018-11-09 19:04:16 +01:00
|
|
|
CheckMinPulseWidths::minSlackCheck(const Corner *corner)
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
|
|
|
|
clear();
|
2018-11-09 19:04:16 +01:00
|
|
|
MinPulseWidthSlackVisitor visitor(corner);
|
2018-09-28 17:54:21 +02:00
|
|
|
visitMinPulseWidthChecks(&visitor);
|
|
|
|
|
MinPulseWidthCheck *check = visitor.minSlackCheck();
|
|
|
|
|
// Save check for cleanup.
|
|
|
|
|
checks_.push_back(check);
|
|
|
|
|
return check;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
CheckMinPulseWidths::
|
|
|
|
|
visitMinPulseWidthChecks(MinPulseWidthCheckVisitor *visitor)
|
|
|
|
|
{
|
|
|
|
|
Graph *graph = sta_->graph();
|
|
|
|
|
Debug *debug = sta_->debug();
|
|
|
|
|
VertexIterator vertex_iter(graph);
|
|
|
|
|
while (vertex_iter.hasNext()) {
|
|
|
|
|
Vertex *vertex = vertex_iter.next();
|
|
|
|
|
if (isClkEnd(vertex, graph)) {
|
2025-03-31 00:27:53 +02:00
|
|
|
debugPrint(debug, "mpw", 1, "check mpw %s",
|
|
|
|
|
vertex->to_string(sta_).c_str());
|
2018-09-28 17:54:21 +02:00
|
|
|
visitMinPulseWidthChecks(vertex, visitor);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
CheckMinPulseWidths::
|
|
|
|
|
visitMinPulseWidthChecks(Vertex *vertex,
|
|
|
|
|
MinPulseWidthCheckVisitor *visitor)
|
|
|
|
|
{
|
|
|
|
|
Search *search = sta_->search();
|
|
|
|
|
const MinMax *min_max = MinMax::max();
|
|
|
|
|
VertexPathIterator path_iter(vertex, search);
|
|
|
|
|
while (path_iter.hasNext()) {
|
|
|
|
|
Path *path = path_iter.next();
|
|
|
|
|
if (path->isClock(search)
|
|
|
|
|
&& !path->tag(sta_)->clkInfo()->isGenClkSrcPath()) {
|
|
|
|
|
if (path->minMax(sta_) == min_max) {
|
|
|
|
|
float min_width;
|
|
|
|
|
bool exists;
|
|
|
|
|
minPulseWidth(path, sta_, min_width, exists);
|
|
|
|
|
if (exists) {
|
|
|
|
|
MinPulseWidthCheck check(path);
|
2025-03-27 02:21:03 +01:00
|
|
|
Path *close_path = check.closePath(sta_);
|
2018-09-28 17:54:21 +02:00
|
|
|
// Don't bother visiting if nobody is home.
|
2025-03-27 02:21:03 +01:00
|
|
|
if (close_path)
|
2018-09-28 17:54:21 +02:00
|
|
|
visitor->visit(check, sta_);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
MinPulseWidthCheck::MinPulseWidthCheck() :
|
2025-03-27 02:21:03 +01:00
|
|
|
open_path_(nullptr)
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinPulseWidthCheck::MinPulseWidthCheck(Path *open_path) :
|
|
|
|
|
open_path_(open_path)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MinPulseWidthCheck *
|
|
|
|
|
MinPulseWidthCheck::copy()
|
|
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
return new MinPulseWidthCheck(open_path_);
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Pin *
|
|
|
|
|
MinPulseWidthCheck::pin(const StaState *sta) const
|
|
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
return open_path_->pin(sta);
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
2019-11-11 23:30:19 +01:00
|
|
|
const RiseFall *
|
2018-09-28 17:54:21 +02:00
|
|
|
MinPulseWidthCheck::openTransition(const StaState *sta) const
|
|
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
return open_path_->transition(sta);
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
2025-03-27 02:21:03 +01:00
|
|
|
Path *
|
|
|
|
|
MinPulseWidthCheck::closePath(const StaState *sta) const
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
PathAnalysisPt *open_ap = open_path_->pathAnalysisPt(sta);
|
2018-09-28 17:54:21 +02:00
|
|
|
PathAnalysisPt *close_ap = open_ap->tgtClkAnalysisPt();
|
2025-03-27 02:21:03 +01:00
|
|
|
const RiseFall *open_rf = open_path_->transition(sta);
|
2019-11-11 23:30:19 +01:00
|
|
|
const RiseFall *close_rf = open_rf->opposite();
|
2025-03-27 02:21:03 +01:00
|
|
|
Tag *open_tag = open_path_->tag(sta);
|
2025-09-17 00:30:16 +02:00
|
|
|
const ClkInfo *open_clk_info = open_tag->clkInfo();
|
|
|
|
|
const ClkInfo close_clk_info(open_clk_info->clkEdge()->opposite(),
|
|
|
|
|
open_clk_info->clkSrc(),
|
|
|
|
|
open_clk_info->isPropagated(),
|
|
|
|
|
open_clk_info->genClkSrc(),
|
|
|
|
|
open_clk_info->isGenClkSrcPath(),
|
|
|
|
|
open_clk_info->pulseClkSense(),
|
|
|
|
|
delay_zero, 0.0, nullptr,
|
|
|
|
|
open_clk_info->pathAPIndex(),
|
|
|
|
|
open_clk_info->crprClkPath(sta),
|
|
|
|
|
sta);
|
2018-09-28 17:54:21 +02:00
|
|
|
Tag close_tag(0,
|
2019-11-11 23:30:19 +01:00
|
|
|
close_rf->index(),
|
2018-09-28 17:54:21 +02:00
|
|
|
close_ap->index(),
|
|
|
|
|
&close_clk_info,
|
|
|
|
|
open_tag->isClock(),
|
|
|
|
|
open_tag->inputDelay(),
|
|
|
|
|
open_tag->isSegmentStart(),
|
|
|
|
|
open_tag->states(),
|
|
|
|
|
false, sta);
|
2021-01-01 20:46:51 +01:00
|
|
|
debugPrint(sta->debug(), "mpw", 3, " open %s",
|
2025-03-31 00:27:53 +02:00
|
|
|
open_tag->to_string(sta).c_str());
|
2021-01-01 20:46:51 +01:00
|
|
|
debugPrint(sta->debug(), "mpw", 3, " close %s",
|
2025-03-31 00:27:53 +02:00
|
|
|
close_tag.to_string(sta).c_str());
|
2025-03-27 02:21:03 +01:00
|
|
|
VertexPathIterator close_iter(open_path_->vertex(sta), close_rf,
|
2018-09-28 17:54:21 +02:00
|
|
|
close_ap, sta);
|
|
|
|
|
while (close_iter.hasNext()) {
|
2025-03-27 02:21:03 +01:00
|
|
|
Path *close_path = close_iter.next();
|
2025-09-16 23:49:01 +02:00
|
|
|
if (Tag::matchNoPathAp(close_path->tag(sta), &close_tag)) {
|
2021-01-01 20:46:51 +01:00
|
|
|
debugPrint(sta->debug(), "mpw", 3, " match %s",
|
2025-03-31 00:27:53 +02:00
|
|
|
close_path->tag(sta)->to_string(sta).c_str());
|
2025-03-27 02:21:03 +01:00
|
|
|
return close_path;
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
}
|
2025-03-27 02:21:03 +01:00
|
|
|
return nullptr;
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Arrival
|
2025-03-27 02:21:03 +01:00
|
|
|
MinPulseWidthCheck::openArrival(const StaState *) const
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
return open_path_->arrival();
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Arrival
|
|
|
|
|
MinPulseWidthCheck::closeArrival(const StaState *sta) const
|
|
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
Path *close = closePath(sta);
|
|
|
|
|
return close->arrival();
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Arrival
|
|
|
|
|
MinPulseWidthCheck::openDelay(const StaState *sta) const
|
|
|
|
|
{
|
|
|
|
|
return openArrival(sta) - openClkEdge(sta)->time();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Arrival
|
|
|
|
|
MinPulseWidthCheck::closeDelay(const StaState *sta) const
|
|
|
|
|
{
|
|
|
|
|
return closeArrival(sta) - closeClkEdge(sta)->time();
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-19 19:23:45 +01:00
|
|
|
const ClockEdge *
|
2018-09-28 17:54:21 +02:00
|
|
|
MinPulseWidthCheck::openClkEdge(const StaState *sta) const
|
|
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
return open_path_->clkEdge(sta->search());
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
2023-01-19 19:23:45 +01:00
|
|
|
const ClockEdge *
|
2018-09-28 17:54:21 +02:00
|
|
|
MinPulseWidthCheck::closeClkEdge(const StaState *sta) const
|
|
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
Tag *open_tag = open_path_->tag(sta);
|
2025-09-17 00:30:16 +02:00
|
|
|
const ClkInfo *open_clk_info = open_tag->clkInfo();
|
2018-09-28 17:54:21 +02:00
|
|
|
return open_clk_info->clkEdge()->opposite();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float
|
|
|
|
|
MinPulseWidthCheck::closeOffset(const StaState *sta) const
|
|
|
|
|
{
|
2023-01-19 19:23:45 +01:00
|
|
|
const ClockEdge *open_clk_edge = openClkEdge(sta);
|
|
|
|
|
const ClockEdge *close_clk_edge = closeClkEdge(sta);
|
2018-09-28 17:54:21 +02:00
|
|
|
if (open_clk_edge->time() > close_clk_edge->time())
|
|
|
|
|
return open_clk_edge->clock()->period();
|
|
|
|
|
else
|
|
|
|
|
return 0.0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Arrival
|
|
|
|
|
MinPulseWidthCheck::width(const StaState *sta) const
|
|
|
|
|
{
|
|
|
|
|
return closeArrival(sta) + closeOffset(sta)
|
2025-03-27 02:21:03 +01:00
|
|
|
- open_path_->arrival()
|
2024-06-27 22:57:58 +02:00
|
|
|
+ checkCrpr(sta);
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float
|
|
|
|
|
MinPulseWidthCheck::minWidth(const StaState *sta) const
|
|
|
|
|
{
|
|
|
|
|
float min_width;
|
|
|
|
|
bool exists;
|
2025-03-27 02:21:03 +01:00
|
|
|
minPulseWidth(open_path_, sta, min_width, exists);
|
2018-09-28 17:54:21 +02:00
|
|
|
return min_width;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Precedence:
|
2024-04-17 20:49:19 +02:00
|
|
|
// set_min_pulse_width SDC command
|
2018-09-28 17:54:21 +02:00
|
|
|
// SDF annotation
|
|
|
|
|
// Liberty library
|
2024-04-17 20:49:19 +02:00
|
|
|
// port min_pulse_width_low/high
|
|
|
|
|
// min_pulse_width timing group
|
2018-09-28 17:54:21 +02:00
|
|
|
static void
|
|
|
|
|
minPulseWidth(const Path *path,
|
|
|
|
|
const StaState *sta,
|
|
|
|
|
// Return values.
|
|
|
|
|
float &min_width,
|
|
|
|
|
bool &exists)
|
|
|
|
|
{
|
|
|
|
|
Pin *pin = path->pin(sta);
|
2023-01-19 19:23:45 +01:00
|
|
|
const Clock *clk = path->clock(sta);
|
2019-11-11 23:30:19 +01:00
|
|
|
const RiseFall *rf = path->transition(sta);
|
2018-09-28 17:54:21 +02:00
|
|
|
Sdc *sdc = sta->sdc();
|
|
|
|
|
// set_min_pulse_width command.
|
2019-11-11 23:30:19 +01:00
|
|
|
sdc->minPulseWidth(pin, clk, rf, min_width, exists);
|
2018-09-28 17:54:21 +02:00
|
|
|
if (!exists) {
|
|
|
|
|
const PathAnalysisPt *path_ap = path->pathAnalysisPt(sta);
|
|
|
|
|
const DcalcAnalysisPt *dcalc_ap = path_ap->dcalcAnalysisPt();
|
2024-04-17 20:49:19 +02:00
|
|
|
Vertex *vertex = path->vertex(sta);
|
|
|
|
|
Graph *graph = sta->graph();
|
|
|
|
|
Edge *edge;
|
|
|
|
|
TimingArc *arc;
|
|
|
|
|
graph->minPulseWidthArc(vertex, rf, edge, arc);
|
|
|
|
|
if (edge) {
|
|
|
|
|
min_width = delayAsFloat(graph->arcDelay(edge, arc, dcalc_ap->index()));
|
|
|
|
|
exists = true;
|
|
|
|
|
}
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-11 19:47:04 +01:00
|
|
|
Crpr
|
2024-06-27 22:57:58 +02:00
|
|
|
MinPulseWidthCheck::checkCrpr(const StaState *sta) const
|
2018-09-28 17:54:21 +02:00
|
|
|
{
|
2018-12-11 19:47:04 +01:00
|
|
|
CheckCrpr *check_crpr = sta->search()->checkCrpr();
|
2025-03-27 02:21:03 +01:00
|
|
|
Path *close = closePath(sta);
|
|
|
|
|
if (close)
|
|
|
|
|
return check_crpr->checkCrpr(openPath(), close);
|
2018-09-28 17:54:21 +02:00
|
|
|
else
|
|
|
|
|
return 0.0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Slack
|
|
|
|
|
MinPulseWidthCheck::slack(const StaState *sta) const
|
|
|
|
|
{
|
|
|
|
|
return width(sta) - minWidth(sta);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-09 19:04:16 +01:00
|
|
|
Corner *
|
|
|
|
|
MinPulseWidthCheck::corner(const StaState *sta) const
|
|
|
|
|
{
|
2025-03-27 02:21:03 +01:00
|
|
|
return open_path_->pathAnalysisPt(sta)->corner();
|
2018-11-09 19:04:16 +01:00
|
|
|
}
|
|
|
|
|
|
2018-09-28 17:54:21 +02:00
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
MinPulseWidthSlackLess::MinPulseWidthSlackLess(const StaState *sta) :
|
|
|
|
|
sta_(sta)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
MinPulseWidthSlackLess::operator()(const MinPulseWidthCheck *check1,
|
|
|
|
|
const MinPulseWidthCheck *check2) const
|
|
|
|
|
{
|
|
|
|
|
Slack slack1 = check1->slack(sta_);
|
|
|
|
|
Slack slack2 = check2->slack(sta_);
|
|
|
|
|
const Pin *pin1 = check1->pin(sta_);
|
|
|
|
|
const Pin *pin2 = check2->pin(sta_);
|
2020-07-12 02:43:30 +02:00
|
|
|
return delayLess(slack1, slack2, sta_)
|
2020-07-12 01:24:48 +02:00
|
|
|
|| (delayEqual(slack1, slack2)
|
2018-09-28 17:54:21 +02:00
|
|
|
// Break ties for the sake of regression stability.
|
|
|
|
|
&& (sta_->network()->pinLess(pin1, pin2)
|
|
|
|
|
|| (pin1 == pin2
|
2019-11-11 23:30:19 +01:00
|
|
|
&& check1->openPath()->rfIndex(sta_)
|
|
|
|
|
< check2->openPath()->rfIndex(sta_))));
|
2018-09-28 17:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace
|