OpenSTA/search/CheckSlewLimits.hh

113 lines
3.0 KiB
C++
Raw Normal View History

2018-09-28 17:54:21 +02:00
// OpenSTA, Static Timing Analyzer
2019-01-01 21:26:11 +01:00
// Copyright (c) 2019, 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
// 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/>.
#ifndef STA_CHECK_SLEW_LIMIT_H
#define STA_CHECK_SLEW_LIMIT_H
#include "MinMax.hh"
#include "Transition.hh"
#include "NetworkClass.hh"
#include "GraphClass.hh"
#include "Delay.hh"
namespace sta {
class StaState;
class DcalcAnalysisPt;
class CheckSlewLimits
{
public:
CheckSlewLimits(const StaState *sta);
void init(const MinMax *min_max);
// Requires init().
2019-03-13 01:25:53 +01:00
// corner=nullptr checks all corners.
2018-09-28 17:54:21 +02:00
void checkSlews(const Pin *pin,
const Corner *corner,
2018-09-28 17:54:21 +02:00
const MinMax *min_max,
// Return values.
2019-03-13 01:25:53 +01:00
// Corner is nullptr for no slew limit.
const Corner *&corner1,
2018-09-28 17:54:21 +02:00
const TransRiseFall *&tr,
Slew &slew,
float &limit,
float &slack) const;
2019-03-13 01:25:53 +01:00
// corner=nullptr checks all corners.
PinSeq *pinSlewLimitViolations(const Corner *corner,
const MinMax *min_max);
2019-03-13 01:25:53 +01:00
// corner=nullptr checks all corners.
Pin *pinMinSlewLimitSlack(const Corner *corner,
const MinMax *min_max);
2018-09-28 17:54:21 +02:00
protected:
void checkSlews1(const Pin *pin,
const Corner *corner,
const MinMax *min_max,
// Return values.
const Corner *&corner1,
const TransRiseFall *&tr,
Slew &slew,
float &limit,
float &slack) const;
void checkSlews1(Vertex *vertex,
const Corner *corner1,
const MinMax *min_max,
// Return values.
const Corner *&corner,
const TransRiseFall *&tr,
Slew &slew,
float &limit,
float &slack) const;
2018-09-28 17:54:21 +02:00
void checkSlew(Vertex *vertex,
const Corner *corner1,
const MinMax *min_max,
const TransRiseFall *tr1,
float limit1,
2018-09-28 17:54:21 +02:00
// Return values.
const Corner *&corner,
const TransRiseFall *&tr,
Slew &slew,
float &slack,
float &limit) const;
void findLimit(const Pin *pin,
const Vertex *vertex,
const TransRiseFall *tr,
const MinMax *min_max,
// Return values.
float &limit1,
bool &limit1_exists) const;
void pinSlewLimitViolations(Instance *inst,
const Corner *corner,
2018-09-28 17:54:21 +02:00
const MinMax *min_max,
PinSeq *violators);
void pinMinSlewLimitSlack(Instance *inst,
const Corner *corner,
2018-09-28 17:54:21 +02:00
const MinMax *min_max,
// Return values.
Pin *&min_slack_pin,
float &min_slack);
void clockDomains(const Vertex *vertex,
// Return value.
ClockSet &clks) const;
float top_limit_;
bool top_limit_exists_;
const StaState *sta_;
};
} // namespace
#endif