forked from The-OpenROAD-Project/OpenSTA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpefReaderPvt.hh
189 lines (170 loc) · 4.77 KB
/
SpefReaderPvt.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
// OpenSTA, Static Timing Analyzer
// Copyright (c) 2024, Parallax Software, Inc.
//
// 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/>.
#pragma once
#include <map>
#include "Zlib.hh"
#include "StringSeq.hh"
#include "NetworkClass.hh"
#include "ParasiticsClass.hh"
#include "StaState.hh"
// Global namespace.
#define YY_INPUT(buf,result,max_size) \
sta::spef_reader->getChars(buf, result, max_size)
int
SpefParse_error(const char *msg);
////////////////////////////////////////////////////////////////
namespace sta {
class Report;
class MinMaxAll;
class SpefRspfPi;
class SpefTriple;
class Corner;
typedef std::map<int, char*, std::less<int>> SpefNameMap;
class SpefReader : public StaState
{
public:
SpefReader(const char *filename,
gzFile stream,
Instance *instance,
ParasiticAnalysisPt *ap,
bool pin_cap_included,
bool keep_coupling_caps,
float coupling_cap_factor,
bool reduce,
const Corner *corner,
const MinMaxAll *min_max,
StaState *sta);
virtual ~SpefReader();
char divider() const { return divider_; }
void setDivider(char divider);
char delimiter() const { return delimiter_; }
void setDelimiter(char delimiter);
void incrLine();
int line() const { return line_; }
const char *filename() const { return filename_; }
// flex YY_INPUT yy_n_chars arg changed definition from int to size_t,
// so provide both forms.
void getChars(char *buf,
int &result,
size_t max_size);
void getChars(char *buf,
size_t &result,
size_t max_size);
// Translate from spf/spef namespace to sta namespace.
char *translated(const char *token);
void warn(int id,
const char *fmt,
...)
__attribute__((format (printf, 3, 4)));
void setBusBrackets(char left,
char right);
void setTimeScale(float scale,
const char *units);
void setCapScale(float scale,
const char *units);
void setResScale(float scale,
const char *units);
void setInductScale(float scale,
const char *units);
void makeNameMapEntry(char *index,
char *name);
char *nameMapLookup(char *index);
void setDesignFlow(StringSeq *flow_keys);
Pin *findPin(char *name);
Net *findNet(char *name);
void rspfBegin(Net *net,
SpefTriple *total_cap);
void rspfFinish();
void rspfDrvrBegin(Pin *drvr_pin,
SpefRspfPi *pi);
void rspfLoad(Pin *load_pin,
SpefTriple *rc);
void rspfDrvrFinish();
void dspfBegin(Net *net,
SpefTriple *total_cap);
void dspfFinish();
void makeCapacitor(int id,
char *node_name,
SpefTriple *cap);
void makeCapacitor(int id,
char *node_name1,
char *node_name2,
SpefTriple *cap);
void makeResistor(int id,
char *node_name1,
char *node_name2,
SpefTriple *res);
PortDirection *portDirection(char *spef_dir);
private:
Pin *findPinRelative(const char *name);
Pin *findPortPinRelative(const char *name);
Net *findNetRelative(const char *name);
Instance *findInstanceRelative(const char *name);
ParasiticNode *findParasiticNode(char *name,
bool local_only);
const char *filename_;
Instance *instance_;
const ParasiticAnalysisPt *ap_;
bool pin_cap_included_;
bool keep_coupling_caps_;
bool reduce_;
const Corner *corner_;
const MinMaxAll *min_max_;
// Normally no need to keep device names.
gzFile stream_;
int line_;
char divider_;
char delimiter_;
char bus_brkt_left_;
char bus_brkt_right_;
Net *net_;
int triple_index_;
float time_scale_;
float cap_scale_;
float res_scale_;
float induct_scale_;
SpefNameMap name_map_;
StringSeq *design_flow_;
Parasitic *parasitic_;
};
class SpefTriple
{
public:
SpefTriple(float value);
SpefTriple(float value1,
float value2,
float value3);
float value(int index) const;
bool isTriple() const { return is_triple_; }
private:
float values_[3];
bool is_triple_;
};
class SpefRspfPi
{
public:
SpefRspfPi(SpefTriple *c2, SpefTriple *r1, SpefTriple *c1);
~SpefRspfPi();
SpefTriple *c2() { return c2_; }
SpefTriple *r1() { return r1_; }
SpefTriple *c1() { return c1_; }
private:
SpefTriple *c2_;
SpefTriple *r1_;
SpefTriple *c1_;
};
extern SpefReader *spef_reader;
} // namespace