OpenSTA/search/CheckMaxSkews.cc

279 lines
6.4 KiB
C++
Raw Permalink Normal View History

2018-09-28 17:54:21 +02:00
// OpenSTA, Static Timing Analyzer
// Copyright (c) 2024, 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
// 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
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-09-28 17:54:21 +02:00
2020-04-05 23:53:44 +02:00
#include "CheckMaxSkews.hh"
2020-04-05 20:35:51 +02:00
2020-04-05 23:53:44 +02:00
#include "TimingRole.hh"
#include "TimingArc.hh"
#include "Liberty.hh"
#include "Network.hh"
#include "Graph.hh"
#include "Clock.hh"
#include "PathVertex.hh"
#include "PathAnalysisPt.hh"
#include "Search.hh"
2018-09-28 17:54:21 +02:00
namespace sta {
// Abstract base class.
class MaxSkewCheckVisitor
{
public:
MaxSkewCheckVisitor() {}
virtual ~MaxSkewCheckVisitor() {}
virtual void visit(MaxSkewCheck &check,
const StaState *sta) = 0;
};
CheckMaxSkews::CheckMaxSkews(StaState *sta) :
sta_(sta)
{
}
CheckMaxSkews::~CheckMaxSkews()
{
checks_.deleteContents();
}
void
CheckMaxSkews::clear()
{
checks_.deleteContentsClear();
}
class MaxSkewChecksVisitor : public MaxSkewCheckVisitor
{
public:
explicit MaxSkewChecksVisitor(MaxSkewCheckSeq &checks);
virtual void visit(MaxSkewCheck &check,
const StaState *sta);
private:
MaxSkewCheckSeq &checks_;
};
MaxSkewChecksVisitor::MaxSkewChecksVisitor(MaxSkewCheckSeq &checks) :
MaxSkewCheckVisitor(),
checks_(checks)
{
}
void
MaxSkewChecksVisitor::visit(MaxSkewCheck &check,
const StaState *)
{
2020-01-09 00:20:15 +01:00
checks_.push_back(new MaxSkewCheck(check));
2018-09-28 17:54:21 +02:00
}
class MaxSkewViolatorsVisititor : public MaxSkewCheckVisitor
{
public:
explicit MaxSkewViolatorsVisititor(MaxSkewCheckSeq &checks);
virtual void visit(MaxSkewCheck &check,
const StaState *sta);
private:
MaxSkewCheckSeq &checks_;
};
MaxSkewViolatorsVisititor::
MaxSkewViolatorsVisititor(MaxSkewCheckSeq &checks) :
MaxSkewCheckVisitor(),
checks_(checks)
{
}
void
MaxSkewViolatorsVisititor::visit(MaxSkewCheck &check,
const StaState *sta)
{
2020-07-12 02:43:30 +02:00
if (delayLess(check.slack(sta), 0.0, sta))
2020-01-09 00:20:15 +01:00
checks_.push_back(new MaxSkewCheck(check));
2018-09-28 17:54:21 +02:00
}
MaxSkewCheckSeq &
CheckMaxSkews::violations()
{
clear();
MaxSkewViolatorsVisititor visitor(checks_);
visitMaxSkewChecks(&visitor);
sort(checks_, MaxSkewSlackLess(sta_));
return checks_;
}
class MaxSkewSlackVisitor : public MaxSkewCheckVisitor
{
public:
MaxSkewSlackVisitor();
virtual void visit(MaxSkewCheck &check,
const StaState *sta);
MaxSkewCheck *minSlackCheck();
private:
MaxSkewCheck *min_slack_check_;
};
MaxSkewSlackVisitor::MaxSkewSlackVisitor() :
MaxSkewCheckVisitor(),
2019-03-13 01:25:53 +01:00
min_slack_check_(nullptr)
2018-09-28 17:54:21 +02:00
{
}
void
MaxSkewSlackVisitor::visit(MaxSkewCheck &check,
const StaState *sta)
{
MaxSkewSlackLess slack_less(sta);
2020-01-09 00:20:15 +01:00
if (min_slack_check_ == nullptr
|| slack_less(&check, min_slack_check_)) {
2018-09-28 17:54:21 +02:00
delete min_slack_check_;
2020-01-09 00:20:15 +01:00
min_slack_check_ = new MaxSkewCheck(check);
2018-09-28 17:54:21 +02:00
}
}
MaxSkewCheck *
MaxSkewSlackVisitor::minSlackCheck()
{
return min_slack_check_;
}
MaxSkewCheck *
CheckMaxSkews::minSlackCheck()
{
clear();
MaxSkewSlackVisitor visitor;
visitMaxSkewChecks(&visitor);
MaxSkewCheck *check = visitor.minSlackCheck();
// Save check for cleanup.
checks_.push_back(check);
return check;
}
void
CheckMaxSkews::visitMaxSkewChecks(MaxSkewCheckVisitor *visitor)
{
Graph *graph = sta_->graph();
VertexIterator vertex_iter(graph);
while (vertex_iter.hasNext()) {
Vertex *vertex = vertex_iter.next();
visitMaxSkewChecks(vertex, visitor);
}
}
void
CheckMaxSkews:: visitMaxSkewChecks(Vertex *vertex,
MaxSkewCheckVisitor *visitor)
{
Graph *graph = sta_->graph();
Search *search = sta_->search();
const MinMax *clk_min_max = MinMax::max();
VertexInEdgeIterator edge_iter(vertex, graph);
while (edge_iter.hasNext()) {
Edge *edge = edge_iter.next();
if (edge->role() == TimingRole::skew()) {
Vertex *ref_vertex = edge->from(graph);
TimingArcSet *arc_set = edge->timingArcSet();
for (TimingArc *arc : arc_set->arcs()) {
RiseFall *clk_rf = arc->fromEdge()->asRiseFall();
RiseFall *ref_rf = arc->toEdge()->asRiseFall();
2019-11-11 23:30:19 +01:00
VertexPathIterator clk_path_iter(vertex, clk_rf, clk_min_max, search);
2018-09-28 17:54:21 +02:00
while (clk_path_iter.hasNext()) {
PathVertex *clk_path = clk_path_iter.next();
if (clk_path->isClock(search)) {
const PathAnalysisPt *clk_ap = clk_path->pathAnalysisPt(sta_);
PathAnalysisPt *ref_ap = clk_ap->tgtClkAnalysisPt();
2019-11-11 23:30:19 +01:00
VertexPathIterator ref_path_iter(ref_vertex, ref_rf, ref_ap, sta_);
2018-09-28 17:54:21 +02:00
while (ref_path_iter.hasNext()) {
PathVertex *ref_path = ref_path_iter.next();
if (ref_path->isClock(search)) {
MaxSkewCheck check(clk_path, ref_path, arc, edge);
visitor->visit(check, sta_);
}
}
}
}
}
}
}
}
////////////////////////////////////////////////////////////////
MaxSkewCheck::MaxSkewCheck(PathVertex *clk_path,
PathVertex *ref_path,
TimingArc *check_arc,
Edge *check_edge) :
clk_path_(clk_path),
ref_path_(ref_path),
check_arc_(check_arc),
check_edge_(check_edge)
{
}
Pin *
MaxSkewCheck::clkPin(const StaState *sta) const
{
return clk_path_.pin(sta);
}
Pin *
MaxSkewCheck::refPin(const StaState *sta) const
{
return ref_path_.pin(sta);
}
ArcDelay
MaxSkewCheck::maxSkew(const StaState *sta) const
{
Search *search = sta->search();
return search->deratedDelay(ref_path_.vertex(sta),
check_arc_, check_edge_, false,
clk_path_.pathAnalysisPt(sta));
}
Delay
MaxSkewCheck::skew(const StaState *sta) const
{
return Delay(clk_path_.arrival(sta) - ref_path_.arrival(sta));
}
Slack
MaxSkewCheck::slack(const StaState *sta) const
{
return maxSkew(sta) - skew(sta);
}
////////////////////////////////////////////////////////////////
MaxSkewSlackLess::MaxSkewSlackLess(const StaState *sta) :
sta_(sta)
{
}
bool
MaxSkewSlackLess::operator()(const MaxSkewCheck *check1,
const MaxSkewCheck *check2) const
{
Slack slack1 = check1->slack(sta_);
Slack slack2 = check2->slack(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 based on constrained pin names.
&& sta_->network()->pinLess(check1->clkPin(sta_),check2->clkPin(sta_)));
}
} // namespace