forked from The-OpenROAD-Project/OpenSTA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibertyExt.cc
268 lines (232 loc) · 6.84 KB
/
LibertyExt.cc
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
// OpenSTA, Static Timing Analyzer
// Copyright (c) 2023, 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/>.
// This file illustratates how to customize the liberty file reader to
// read attributes that are not used by the STA. In this example:
// * code is called at the beginning of a library definition
// * a string attribute named "thingy" is parsed
#include <stdio.h>
#include "Machine.hh"
#include "StringUtil.hh"
#include "LibertyReader.hh"
#include "LibertyReaderPvt.hh"
#include "LibertyBuilder.hh"
#include "Network.hh"
#include "ConcreteNetwork.hh"
#include "Sta.hh"
// Import symbols from sta package (this example is in the global package).
using sta::Report;
using sta::Debug;
using sta::Network;
using sta::LibertyReader;
using sta::LibertyAttr;
using sta::LibertyGroup;
using sta::TimingGroup;
using sta::LibertyCell;
using sta::LibertyPort;
using sta::LibertyLibrary;
using sta::TimingArcSet;
using sta::LibertyBuilder;
using sta::TimingRole;
using sta::TimingArcAttrs;
using sta::Sta;
using sta::stringCopy;
// LibertyCell with Bigco thingy variable.
class BigcoCell : public LibertyCell
{
public:
BigcoCell(LibertyLibrary *library, const char *name, const char *filename);
void setThingy(const char *thingy);
protected:
const char *thingy_;
};
BigcoCell::BigcoCell(LibertyLibrary *library, const char *name,
const char *filename) :
LibertyCell(library, name, filename),
thingy_(0)
{
}
void
BigcoCell::setThingy(const char *thingy)
{
thingy_ = thingy;
}
////////////////////////////////////////////////////////////////
class BigcoTimingGroup : public TimingGroup
{
public:
BigcoTimingGroup(int line);
const char *frob() const { return frob_; }
void setFrob(const char *frob);
protected:
const char *frob_;
};
BigcoTimingGroup::BigcoTimingGroup(int line) :
TimingGroup(line),
frob_(0)
{
}
void
BigcoTimingGroup::setFrob(const char *frob)
{
frob_ = frob;
}
////////////////////////////////////////////////////////////////
class BigcoTimingArcSet : public TimingArcSet
{
public:
BigcoTimingArcSet(LibertyCell *cell, LibertyPort *from, LibertyPort *to,
LibertyPort *related_out, TimingRole *role,
TimingArcAttrs *attrs);
protected:
const char *frob_;
};
BigcoTimingArcSet::BigcoTimingArcSet(LibertyCell *cell, LibertyPort *from,
LibertyPort *to,
LibertyPort *related_out, TimingRole *role,
TimingArcAttrs *attrs) :
TimingArcSet(cell, from, to, related_out, role, attrs)
{
const char *frob = static_cast<BigcoTimingGroup*>(attrs)->frob();
if (frob)
frob_ = stringCopy(frob);
}
////////////////////////////////////////////////////////////////
// Make Bigco objects instead of Liberty objects.
class BigcoLibertyBuilder : public LibertyBuilder
{
public:
virtual LibertyCell *makeCell(LibertyLibrary *library, const char *name,
const char *filename);
protected:
virtual TimingArcSet *makeTimingArcSet(LibertyCell *cell, LibertyPort *from,
LibertyPort *to,
LibertyPort *related_out,
TimingRole *role,
TimingArcAttrs *attrs);
};
LibertyCell *
BigcoLibertyBuilder::makeCell(LibertyLibrary *library, const char *name,
const char *filename)
{
LibertyCell *cell = new BigcoCell(library, name, filename);
library->addCell(cell);
return cell;
}
TimingArcSet *
BigcoLibertyBuilder::makeTimingArcSet(LibertyCell *cell, LibertyPort *from,
LibertyPort *to,
LibertyPort *related_out,
TimingRole *role,
TimingArcAttrs *attrs)
{
return new BigcoTimingArcSet(cell, from, to, related_out, role, attrs);
}
////////////////////////////////////////////////////////////////
// Liberty reader to parse Bigco attributes.
class BigcoLibertyReader : public LibertyReader
{
public:
BigcoLibertyReader(LibertyBuilder *builder);
protected:
virtual void visitAttr1(LibertyAttr *attr);
virtual void visitAttr2(LibertyAttr *attr);
virtual void beginLibrary(LibertyGroup *group);
virtual TimingGroup *makeTimingGroup(int line);
virtual void beginCell(LibertyGroup *group);
};
BigcoLibertyReader::BigcoLibertyReader(LibertyBuilder *builder) :
LibertyReader(builder)
{
// Define a visitor for the "thingy" attribute.
// Note that the function descriptor passed to defineAttrVisitor
// must be defined by the LibertyVisitor class, so a number of
// extra visitor functions are pre-defined for extensions.
defineAttrVisitor("thingy", &LibertyReader::visitAttr1);
defineAttrVisitor("frob", &LibertyReader::visitAttr2);
}
bool
libertyCellRequired(const char *)
{
// Predicate for cell names.
return true;
}
// Prune cells from liberty file based on libertyCellRequired predicate.
void
BigcoLibertyReader::beginCell(LibertyGroup *group)
{
const char *name = group->firstName();
if (name
&& libertyCellRequired(name))
LibertyReader::beginCell(group);
}
TimingGroup *
BigcoLibertyReader::makeTimingGroup(int line)
{
return new BigcoTimingGroup(line);
}
// Called at the beginning of a library group.
void
BigcoLibertyReader::beginLibrary(LibertyGroup *group)
{
LibertyReader::beginLibrary(group);
// Do Bigco stuff here.
printf("Bigco was here.\n");
}
void
BigcoLibertyReader::visitAttr1(LibertyAttr *attr)
{
const char *thingy = getAttrString(attr);
if (thingy) {
printf("Bigco thingy attribute value is %s.\n", thingy);
if (cell_)
static_cast<BigcoCell*>(cell_)->setThingy(thingy);
}
}
void
BigcoLibertyReader::visitAttr2(LibertyAttr *attr)
{
const char *frob = getAttrString(attr);
if (frob) {
if (timing_)
static_cast<BigcoTimingGroup*>(timing_)->setFrob(frob);
}
}
////////////////////////////////////////////////////////////////
// Define a BigcoSta class derived from the Sta class to install the
// new liberty reader/visitor in BigcoSta::makeLibertyReader.
class BigcoSta : public Sta
{
public:
BigcoSta();
protected:
virtual LibertyLibrary *readLibertyFile(const char *filename,
bool infer_latches,
Network *network);
};
BigcoSta::BigcoSta() :
Sta()
{
}
// Replace Sta liberty file reader with Bigco's very own.
LibertyLibrary *
Sta::readLibertyFile(const char *filename,
bool infer_latches,
Network *network)
{
BigcoLibertyBuilder builder;
BigcoLibertyReader reader(&builder);
return reader.readLibertyFile(filename, infer_latches, network);
}