File size: 15,862 Bytes
23d354c | 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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 | // OpenSTA, Static Timing Analyzer
// Copyright (c) 2026, 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/>.
//
// 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.
#include "VerilogWriter.hh"
#include <algorithm>
#include <cstdlib>
#include <map>
#include <string>
#include <string_view>
#include "Error.hh"
#include "Format.hh"
#include "Liberty.hh"
#include "Zlib.hh"
#include "Network.hh"
#include "NetworkCmp.hh"
#include "ParseBus.hh"
#include "PortDirection.hh"
#include "VerilogNamespace.hh"
namespace sta {
class VerilogWriter
{
public:
VerilogWriter(const char *filename,
bool include_pwr_gnd,
CellSeq *remove_cells,
gzFile stream,
Network *network);
void writeModules();
protected:
void writeModule(const Instance *inst);
InstanceSeq findHierChildren();
void findHierChildren(const Instance *inst,
InstanceSeq &children,
CellSet &cells);
void writePorts(const Cell *cell);
void writePortDcls(const Cell *cell);
void writeWireDcls(const Instance *inst);
const char *verilogPortDir(PortDirection *dir);
void writeChildren(const Instance *inst);
void writeChild(const Instance *child);
void writeInstPin(const Instance *inst,
const Port *port,
bool &first_port);
void writeInstBusPin(const Instance *inst,
const Port *port,
bool &first_port);
void writeInstBusPinBit(const Instance *inst,
const Port *port,
bool &first_member);
void writeAssigns(const Instance *inst);
int findUnconnectedNetCount(const Instance *inst);
int findChildNCcount(const Instance *child);
int findPortNCcount(const Instance *inst,
const Port *port);
const char *filename_;
bool include_pwr_gnd_;
CellSet remove_cells_;
gzFile stream_;
Network *network_;
int unconnected_net_index_{1};
};
void
writeVerilog(const char *filename,
bool include_pwr_gnd,
CellSeq *remove_cells,
Network *network)
{
if (network->topInstance()) {
bool gzip = std::string_view(filename).ends_with(".gz");
gzFile stream = gzopen(filename, gzip ? "wb" : "wT");
if (stream) {
VerilogWriter writer(filename, include_pwr_gnd,
remove_cells, stream, network);
writer.writeModules();
gzclose(stream);
}
else
throw FileNotWritable(filename);
}
}
VerilogWriter::VerilogWriter(const char *filename,
bool include_pwr_gnd,
CellSeq *remove_cells,
gzFile stream,
Network *network) :
filename_(filename),
include_pwr_gnd_(include_pwr_gnd),
remove_cells_(network),
stream_(stream),
network_(network)
{
if (remove_cells) {
for(Cell *lib_cell : *remove_cells)
remove_cells_.insert(lib_cell);
}
}
void
VerilogWriter::writeModules()
{
// Write the top level modeule first.
writeModule(network_->topInstance());
InstanceSeq hier_childrenn = findHierChildren();
for (const Instance *child : hier_childrenn)
writeModule(child);
}
InstanceSeq
VerilogWriter::findHierChildren()
{
InstanceSeq children;
CellSet cells(network_);
findHierChildren(network_->topInstance(), children, cells);
sort(children, [this](const Instance *inst1,
const Instance *inst2) {
std::string cell_name1 = network_->cellName(inst1);
std::string cell_name2 = network_->cellName(inst2);
return cell_name1 < cell_name2;
});
return children;
}
void
VerilogWriter::findHierChildren(const Instance *inst,
InstanceSeq &children,
CellSet &cells)
{
InstanceChildIterator *child_iter = network_->childIterator(inst);
while (child_iter->hasNext()) {
const Instance *child = child_iter->next();
const Cell *cell = network_->cell(child);
if (network_->isHierarchical(child)
&& !cells.contains(cell)) {
children.push_back(child);
cells.insert(cell);
findHierChildren(child, children, cells);
}
}
delete child_iter;
}
void
VerilogWriter::writeModule(const Instance *inst)
{
Cell *cell = network_->cell(inst);
std::string cell_vname = cellVerilogName(std::string(network_->name(cell)));
sta::print(stream_, "module {} (", cell_vname);
writePorts(cell);
writePortDcls(cell);
sta::print(stream_, "\n");
writeWireDcls(inst);
sta::print(stream_, "\n");
writeChildren(inst);
writeAssigns(inst);
sta::print(stream_, "endmodule\n");
}
void
VerilogWriter::writePorts(const Cell *cell)
{
bool first = true;
CellPortIterator *port_iter = network_->portIterator(cell);
while (port_iter->hasNext()) {
Port *port = port_iter->next();
if (include_pwr_gnd_
|| !network_->direction(port)->isPowerGround()) {
if (!first)
sta::print(stream_, ",\n ");
std::string verilog_name = portVerilogName(std::string(network_->name(port)));
sta::print(stream_, "{}", verilog_name);
first = false;
}
}
delete port_iter;
sta::print(stream_, ");\n");
}
void
VerilogWriter::writePortDcls(const Cell *cell)
{
CellPortIterator *port_iter = network_->portIterator(cell);
while (port_iter->hasNext()) {
Port *port = port_iter->next();
PortDirection *dir = network_->direction(port);
if (include_pwr_gnd_
|| !network_->direction(port)->isPowerGround()) {
std::string port_vname = portVerilogName(std::string(network_->name(port)));
const char *vtype = verilogPortDir(dir);
if (vtype) {
sta::print(stream_, " {}", vtype);
if (network_->isBus(port))
sta::print(stream_, " [{}:{}]",
network_->fromIndex(port),
network_->toIndex(port));
sta::print(stream_, " {};\n", port_vname);
if (dir->isTristate()) {
sta::print(stream_, " tri");
if (network_->isBus(port))
sta::print(stream_, " [{}:{}]",
network_->fromIndex(port),
network_->toIndex(port));
sta::print(stream_, " {};\n", port_vname);
}
}
}
}
delete port_iter;
}
const char *
VerilogWriter::verilogPortDir(PortDirection *dir)
{
if (dir == PortDirection::input())
return "input";
else if (dir == PortDirection::output())
return "output";
else if (dir == PortDirection::tristate())
return "output";
else if (dir == PortDirection::bidirect())
return "inout";
else if (dir == PortDirection::power())
return "inout";
else if (dir == PortDirection::ground())
return "inout";
else if (dir == PortDirection::well())
return "inout";
else if (dir == PortDirection::internal()
|| dir == PortDirection::unknown())
return "inout";
else {
criticalError(268, "unknown port direction");
return nullptr;
}
}
using BusIndexRange = std::pair<int, int>;
void
VerilogWriter::writeWireDcls(const Instance *inst)
{
Cell *cell = network_->cell(inst);
char escape = network_->pathEscape();
std::map<std::string, BusIndexRange, std::less<std::string>> bus_ranges;
NetIterator *net_iter = network_->netIterator(inst);
while (net_iter->hasNext()) {
Net *net = net_iter->next();
if (include_pwr_gnd_
|| !(network_->isPower(net) || network_->isGround(net))) {
std::string net_name = network_->name(net);
if (network_->findPort(cell, net_name) == nullptr) {
if (isBusName(net_name, '[', ']', escape)) {
bool is_bus;
std::string bus_name;
int index;
parseBusName(net_name, '[', ']', escape, is_bus, bus_name, index);
BusIndexRange &range = bus_ranges[bus_name];
range.first = std::max(range.first, index);
range.second = std::min(range.second, index);
}
else {
std::string net_vname = netVerilogName(std::string(net_name));
sta::print(stream_, " wire {};\n", net_vname);
}
}
}
}
delete net_iter;
for (const auto& [bus_name, range] : bus_ranges) {
std::string net_vname = netVerilogName(bus_name);
sta::print(stream_, " wire [{}:{}] {};\n",
range.first,
range.second,
net_vname);
}
// Wire net dcls for writeInstBusPinBit.
int nc_count = findUnconnectedNetCount(inst);
for (int i = 1; i < nc_count + 1; i++)
sta::print(stream_, " wire _NC{};\n", i);
}
void
VerilogWriter::writeChildren(const Instance *inst)
{
std::vector<Instance*> children;
InstanceChildIterator *child_iter = network_->childIterator(inst);
while (child_iter->hasNext()) {
Instance *child = child_iter->next();
children.push_back(child);
}
delete child_iter;
sort(children, [this](const Instance *inst1,
const Instance *inst2) {
return network_->name(inst1) < network_->name(inst2);
});
for (auto child : children)
writeChild(child);
}
void
VerilogWriter::writeChild(const Instance *child)
{
Cell *child_cell = network_->cell(child);
if (!remove_cells_.contains(child_cell)) {
std::string child_name = network_->name(child);
std::string child_vname = instanceVerilogName(std::string(child_name));
std::string child_cell_vname = cellVerilogName(std::string(network_->name(child_cell)));
sta::print(stream_, " {} {} (",
child_cell_vname,
child_vname);
bool first_port = true;
CellPortIterator *port_iter = network_->portIterator(child_cell);
while (port_iter->hasNext()) {
Port *port = port_iter->next();
if (include_pwr_gnd_
|| !network_->direction(port)->isPowerGround()) {
if (network_->hasMembers(port))
writeInstBusPin(child, port, first_port);
else
writeInstPin(child, port, first_port);
}
}
delete port_iter;
sta::print(stream_, ");\n");
}
}
void
VerilogWriter::writeInstPin(const Instance *inst,
const Port *port,
bool &first_port)
{
Pin *pin = network_->findPin(inst, port);
if (pin) {
Net *net = network_->net(pin);
if (net) {
std::string net_name = network_->name(net);
std::string net_vname = netVerilogName(std::string(net_name));
if (!first_port)
sta::print(stream_, ",\n ");
std::string port_vname = portVerilogName(std::string(network_->name(port)));
sta::print(stream_, ".{}({})",
port_vname,
net_vname);
first_port = false;
}
}
}
void
VerilogWriter::writeInstBusPin(const Instance *inst,
const Port *port,
bool &first_port)
{
if (!first_port)
sta::print(stream_, ",\n ");
std::string port_vname = portVerilogName(std::string(network_->name(port)));
sta::print(stream_, ".{}({{", port_vname);
first_port = false;
bool first_member = true;
// Match the member order of the liberty cell if it exists.
LibertyPort *lib_port = network_->libertyPort(port);
if (lib_port) {
Cell *cell = network_->cell(inst);
LibertyPortMemberIterator member_iter(lib_port);
while (member_iter.hasNext()) {
LibertyPort *lib_member = member_iter.next();
Port *member = network_->findPort(cell, lib_member->name());
writeInstBusPinBit(inst, member, first_member);
}
}
else {
PortMemberIterator *member_iter = network_->memberIterator(port);
while (member_iter->hasNext()) {
Port *member = member_iter->next();
writeInstBusPinBit(inst, member, first_member);
}
delete member_iter;
}
sta::print(stream_, "}})");
}
void
VerilogWriter::writeInstBusPinBit(const Instance *inst,
const Port *port,
bool &first_member)
{
Pin *pin = network_->findPin(inst, port);
Net *net = pin ? network_->net(pin) : nullptr;
std::string net_name = net
? std::string(network_->name(net))
// There is no verilog syntax to "skip" a bit in the concatentation.
: sta::format("_NC{}", unconnected_net_index_++);
std::string net_vname = netVerilogName(net_name);
if (!first_member)
sta::print(stream_, ",\n ");
sta::print(stream_, "{}", net_vname);
first_member = false;
}
// Verilog "ports" are not distinct from nets.
// Use an assign statement to alias the net when it is connected to
// multiple output ports.
void
VerilogWriter::writeAssigns(const Instance *inst)
{
InstancePinIterator *pin_iter = network_->pinIterator(inst);
while (pin_iter->hasNext()) {
Pin *pin = pin_iter->next();
Term *term = network_->term(pin);
if (term) {
Net *net = network_->net(term);
Port *port = network_->port(pin);
if (net
&& port
&& (include_pwr_gnd_
|| !(network_->isPower(net) || network_->isGround(net)))
&& (network_->direction(port)->isAnyOutput()
|| (include_pwr_gnd_ && network_->direction(port)->isPowerGround()))
&& network_->name(port) != network_->name(net)) {
// Port name is different from net name.
std::string port_vname = netVerilogName(std::string(network_->name(port)));
std::string net_vname = netVerilogName(std::string(network_->name(net)));
sta::print(stream_, " assign {} = {};\n",
port_vname,
net_vname);
}
}
}
delete pin_iter;
}
////////////////////////////////////////////////////////////////
int
VerilogWriter::findUnconnectedNetCount(const Instance *inst)
{
int nc_count = 0;
InstanceChildIterator *child_iter = network_->childIterator(inst);
while (child_iter->hasNext()) {
Instance *child = child_iter->next();
nc_count += findChildNCcount(child);
}
delete child_iter;
return nc_count;
}
int
VerilogWriter::findChildNCcount(const Instance *child)
{
int nc_count = 0;
Cell *child_cell = network_->cell(child);
if (!remove_cells_.contains(child_cell)) {
CellPortIterator *port_iter = network_->portIterator(child_cell);
while (port_iter->hasNext()) {
Port *port = port_iter->next();
if (network_->hasMembers(port))
nc_count += findPortNCcount(child, port);
}
delete port_iter;
}
return nc_count;
}
int
VerilogWriter::findPortNCcount(const Instance *inst,
const Port *port)
{
int nc_count = 0;
PortMemberIterator *member_iter = network_->memberIterator(port);
while (member_iter->hasNext()) {
Port *member = member_iter->next();
Pin *pin = network_->findPin(inst, member);
if (pin == nullptr
|| network_->net(pin) == nullptr)
nc_count++;
}
delete member_iter;
return nc_count;
}
} // namespace sta
|