Files
OpenSTA/include/sta/LibertyClass.hh
T

182 lines
4.5 KiB
C++
Raw Normal View History

2018-09-28 08:54:21 -07:00
// OpenSTA, Static Timing Analyzer
2026-03-10 13:21:17 -07:00
// Copyright (c) 2026, Parallax Software, Inc.
2018-09-28 08:54:21 -07: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 10:17:08 -07:00
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2018-09-28 08:54:21 -07:00
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
2022-01-04 10:17:08 -07:00
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2025-01-21 18:54:33 -07: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 08:54:21 -07:00
2020-02-15 17:13:16 -07:00
#pragma once
2018-09-28 08:54:21 -07:00
2026-01-03 16:59:35 -08:00
#include <map>
2026-04-15 09:38:10 -07:00
#include <memory>
2026-01-03 16:59:35 -08:00
#include <set>
2026-04-15 09:38:10 -07:00
#include <vector>
2018-09-28 08:54:21 -07:00
namespace sta {
class Units;
class Unit;
class LibertyLibrary;
class LibertyCell;
class LibertyPort;
class Pvt;
class OperatingConditions;
class BusDcl;
class ModeDef;
class ModeValueDef;
class TableTemplate;
class Table;
class TableModel;
class TableAxis;
class GateTimingModel;
class CheckTimingModel;
class ScaleFactors;
class Wireload;
class WireloadSelection;
class TimingArcSet;
class TimingArc;
2022-06-25 11:59:07 -07:00
class TimingArcAttrs;
2018-09-28 08:54:21 -07:00
class InternalPower;
class LeakagePower;
class Sequential;
class FuncExpr;
class TimingModel;
class TimingRole;
class Transition;
2019-11-11 15:30:19 -07:00
class RiseFall;
class RiseFallBoth;
2023-02-08 09:23:24 -07:00
class ReceiverModel;
2024-08-04 17:10:04 -07:00
class Statetable;
class StatetableRow;
2018-09-28 08:54:21 -07:00
2026-01-03 16:59:35 -08:00
using LibertyLibrarySeq = std::vector<LibertyLibrary*>;
using LibertyCellSeq = std::vector<LibertyCell*>;
2026-02-04 18:33:04 -07:00
using SequentialSeq = std::vector<Sequential>;
2026-01-03 16:59:35 -08:00
using LibertyCellEquivMap = std::map<LibertyCell*, LibertyCellSeq*>;
using LibertyPortSeq = std::vector<LibertyPort*>;
using LibertyPortSet = std::set<LibertyPort*>;
using LibertyPortPair = std::pair<const LibertyPort*,const LibertyPort*>;
using LibertyCellSet = std::set<LibertyCell*>;
using TablePtr = std::shared_ptr<Table>;
using TimingArcAttrsPtr = std::shared_ptr<TimingArcAttrs>;
using TableAxisPtr = std::shared_ptr<TableAxis>;
using ReceiverModelPtr = std::shared_ptr<ReceiverModel>;
using StatetableRows = std::vector<StatetableRow>;
2018-09-28 08:54:21 -07:00
2019-03-12 17:25:53 -07:00
enum class ScaleFactorType : unsigned {
pin_cap,
wire_cap,
wire_res,
min_period,
2026-04-13 14:58:16 -07:00
// Liberty attributes with rise/fall suffix.
2019-03-12 17:25:53 -07:00
cell,
hold,
setup,
recovery,
removal,
nochange,
skew,
leakage_power,
internal_power,
2026-04-13 14:58:16 -07:00
// Liberty attributes with rise/fall prefix.
2019-03-12 17:25:53 -07:00
transition,
2026-04-13 14:58:16 -07:00
// Liberty attributes with low/high suffix (indexed as rise/fall).
2019-03-12 17:25:53 -07:00
min_pulse_width,
unknown,
};
2026-04-13 14:58:16 -07:00
const int scale_factor_type_count = static_cast<int>(ScaleFactorType::unknown) + 1;
2018-09-28 08:54:21 -07:00
// Enough bits to hold a ScaleFactorType enum.
const int scale_factor_bits = 4;
2019-03-12 17:25:53 -07:00
enum class WireloadTree { worst_case, best_case, balanced, unknown };
2018-09-28 08:54:21 -07:00
2019-03-12 17:25:53 -07:00
enum class WireloadMode { top, enclosed, segmented, unknown };
2018-09-28 08:54:21 -07:00
2019-03-12 17:25:53 -07:00
enum class TimingSense {
positive_unate,
negative_unate,
non_unate,
none,
unknown
};
2026-04-13 14:58:16 -07:00
const int timing_sense_count = static_cast<int>(TimingSense::unknown) + 1;
2018-09-28 08:54:21 -07:00
const int timing_sense_bit_count = 3;
2019-03-12 17:25:53 -07:00
enum class TableAxisVariable {
total_output_net_capacitance,
equal_or_opposite_output_net_capacitance,
input_net_transition,
input_transition_time,
related_pin_transition,
constrained_pin_transition,
output_pin_transition,
connect_delay,
related_out_total_output_net_capacitance,
time,
iv_output_voltage,
input_noise_width,
input_noise_height,
input_voltage,
output_voltage,
path_depth,
path_distance,
normalized_voltage,
unknown
};
enum class PathType { clk, data, clk_and_data };
const int path_type_count = 2;
2025-07-13 17:59:51 +00:00
class LibertyPortLess
{
public:
bool operator()(const LibertyPort *port1, const LibertyPort *port2) const;
};
2018-09-28 08:54:21 -07:00
class LibertyPortNameLess
{
public:
bool operator()(const LibertyPort *port1, const LibertyPort *port2) const;
};
class LibertyPortPairLess
{
public:
2019-03-21 10:48:50 -07:00
bool operator()(const LibertyPortPair &pair1,
2026-01-03 16:59:35 -08:00
const LibertyPortPair &pair2) const;
2018-09-28 08:54:21 -07:00
};
bool
timingArcSetLess(const TimingArcSet *set1,
2026-01-03 16:59:35 -08:00
const TimingArcSet *set2);
2018-09-28 08:54:21 -07:00
class TimingArcSetLess
{
public:
bool
operator()(const TimingArcSet *set1,
2026-01-03 16:59:35 -08:00
const TimingArcSet *set2) const
2018-09-28 08:54:21 -07:00
{
return timingArcSetLess(set1, set2);
}
};
2026-04-13 14:58:16 -07:00
} // namespace sta