OpenSTA/search/CheckSlewLimits.hh

113 lines
2.9 KiB
C++
Raw Normal View History

2018-09-28 17:54:21 +02:00
// OpenSTA, Static Timing Analyzer
2020-03-07 03:50:37 +01:00
// Copyright (c) 2020, 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/>.
2020-02-16 01:13:16 +01:00
#pragma once
2018-09-28 17:54:21 +02:00
2020-04-05 23:53:44 +02:00
#include "MinMax.hh"
#include "Transition.hh"
#include "NetworkClass.hh"
#include "GraphClass.hh"
#include "Delay.hh"
#include "SdcClass.hh"
2018-09-28 17:54:21 +02:00
namespace sta {
class StaState;
class DcalcAnalysisPt;
2020-04-05 20:35:51 +02:00
class Corner;
2018-09-28 17:54:21 +02:00
class CheckSlewLimits
{
public:
CheckSlewLimits(const StaState *sta);
2019-03-13 01:25:53 +01:00
// corner=nullptr checks all corners.
2020-06-09 05:37:46 +02:00
void checkSlew(const Pin *pin,
const Corner *corner,
const MinMax *min_max,
bool check_clks,
// Return values.
// Corner is nullptr for no slew limit.
const Corner *&corner1,
const RiseFall *&rf,
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,
2020-06-09 05:37:46 +02:00
bool check_clks,
// Return values.
const Corner *&corner1,
2019-11-11 23:30:19 +01:00
const RiseFall *&rf,
Slew &slew,
float &limit,
float &slack) const;
void checkSlews1(Vertex *vertex,
const Corner *corner1,
const MinMax *min_max,
2020-06-09 05:37:46 +02:00
bool check_clks,
// Return values.
const Corner *&corner,
2019-11-11 23:30:19 +01:00
const RiseFall *&rf,
Slew &slew,
float &limit,
float &slack) const;
2018-09-28 17:54:21 +02:00
void checkSlew(Vertex *vertex,
const Corner *corner1,
2019-11-11 23:30:19 +01:00
const RiseFall *rf1,
2020-06-09 05:37:46 +02:00
const MinMax *min_max,
float limit1,
2018-09-28 17:54:21 +02:00
// Return values.
const Corner *&corner,
2019-11-11 23:30:19 +01:00
const RiseFall *&rf,
2018-09-28 17:54:21 +02:00
Slew &slew,
float &slack,
float &limit) const;
void findLimit(const Pin *pin,
const Vertex *vertex,
2019-11-11 23:30:19 +01:00
const RiseFall *rf,
2018-09-28 17:54:21 +02:00
const MinMax *min_max,
2020-06-09 05:37:46 +02:00
bool check_clks,
2018-09-28 17:54:21 +02:00
// 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;
const StaState *sta_;
};
} // namespace