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 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
|
/*$Id: lang_verilog.cc $ -*- C++ -*-
* Copyright (C) 2007 Albert Davis
* Author: Albert Davis <aldavis@gnu.org>
*
* This file is part of "Gnucap", the Gnu Circuit Analysis Package
*
* 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, 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
//testing=script 2016.09.10
#include "u_nodemap.h"
#include "globals.h"
#include "c_comand.h"
#include "d_dot.h"
#include "d_coment.h"
#include "e_subckt.h"
#include "e_model.h"
#include "u_lang.h"
/*--------------------------------------------------------------------------*/
namespace {
/*--------------------------------------------------------------------------*/
class LANG_VERILOG : public LANGUAGE {
enum MODE {mDEFAULT, mPARAMSET} _mode;
mutable int arg_count;
enum {INACTIVE = -1};
public:
LANG_VERILOG() : arg_count(INACTIVE) {}
~LANG_VERILOG() {}
std::string name()const override {return "verilog";}
bool case_insensitive()const override {return false;}
UNITS units()const override {return uSI;}
public: // override virtual, used by callback
std::string arg_front()const override {itested();
switch (_mode) {
case mPARAMSET:untested(); return " ."; break;
case mDEFAULT:itested(); return (arg_count++ > 0) ? ", ." : "."; break;
}
unreachable();
return "";
}
std::string arg_mid()const override {itested();
switch (_mode) {
case mPARAMSET:untested(); return "="; break;
case mDEFAULT:itested(); return "("; break;
}
unreachable();
return "";
}
std::string arg_back()const override {itested();
switch (_mode) {
case mPARAMSET:untested(); return ";"; break;
case mDEFAULT:itested(); return ")"; break;
}
unreachable();
return "";
}
public: // override virtual, called by commands
void parse_top_item(CS&, CARD_LIST*)override;
DEV_COMMENT* parse_comment(CS&, DEV_COMMENT*)override;
DEV_DOT* parse_command(CS&, DEV_DOT*)override;
MODEL_CARD* parse_paramset(CS&, MODEL_CARD*)override;
BASE_SUBCKT* parse_module(CS&, BASE_SUBCKT*)override;
COMPONENT* parse_instance(CS&, COMPONENT*)override;
std::string find_type_in_string(CS&)override;
private: // override virtual, called by print_item
void print_paramset(OMSTREAM&, const MODEL_CARD*)override;
void print_module(OMSTREAM&, const BASE_SUBCKT*)override;
void print_instance(OMSTREAM&, const COMPONENT*)override;
void print_comment(OMSTREAM&, const DEV_COMMENT*)override;
void print_command(OMSTREAM& o, const DEV_DOT* c)override;
private: // local
void print_args(OMSTREAM&, const MODEL_CARD*);
void print_args(OMSTREAM&, const COMPONENT*);
} lang_verilog;
DISPATCHER<LANGUAGE>::INSTALL
d(&language_dispatcher, lang_verilog.name(), &lang_verilog);
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
static void parse_type(CS& cmd, CARD* x)
{
assert(x);
std::string new_type;
cmd >> new_type;
x->set_dev_type(new_type);
}
/*--------------------------------------------------------------------------*/
static void parse_args_paramset(CS& cmd, MODEL_CARD* x)
{
assert(x);
while (cmd >> '.') {
size_t here = cmd.cursor();
std::string name, value;
try{
cmd >> name >> '=' >> value >> ';';
x->set_param_by_name(name, value);
}catch (Exception_No_Match&) {untested();
cmd.warn(bDANGER, here, x->long_label() + ": bad parameter " + name + " ignored");
}
}
}
/*--------------------------------------------------------------------------*/
static void parse_args_instance(CS& cmd, CARD* x)
{
assert(x);
if (cmd >> "#(") {
if (cmd.match1('.')) {
// by name
while (cmd >> '.') {
size_t here = cmd.cursor();
std::string name = cmd.ctos("(", "", "");
std::string value = cmd.ctos(",)", "(", ")");
cmd >> ',';
try{
x->set_param_by_name(name, value);
}catch (Exception_No_Match&) {untested();
cmd.warn(bDANGER, here, x->long_label() + ": bad parameter " + name + " ignored");
}
}
}else{
// by order
int index = 1;
while (cmd.is_alnum() || cmd.match1("+-.")) {
size_t here = cmd.cursor();
try{
std::string value = cmd.ctos(",)", "", "");
x->set_param_by_index(x->param_count() - index++, value, 0/*offset*/);
}catch (Exception_Too_Many& e) {untested();
cmd.warn(bDANGER, here, e.message());
}
}
}
cmd >> ')';
}else{
// no args
}
}
/*--------------------------------------------------------------------------*/
static void parse_label(CS& cmd, CARD* x)
{
assert(x);
std::string my_name;
if (cmd >> my_name) {
x->set_label(my_name);
}else{
x->set_label(x->id_letter() + std::string("_unnamed")); //BUG// not unique
cmd.warn(bDANGER, "label required");
}
}
/*--------------------------------------------------------------------------*/
static void parse_ports(CS& cmd, COMPONENT* x, bool all_new)
{
assert(x);
if (cmd >> '(') {
if (cmd.is_alnum()) {
// by order
int index = 0;
while (cmd.is_alnum()) {
size_t here = cmd.cursor();
try{
std::string value;
cmd >> value;
x->set_port_by_index(index, value);
if (all_new) {
if (x->node_is_grounded(index)) {
cmd.warn(bDANGER, here, "node 0 not allowed here");
}else if (x->subckt() && x->subckt()->nodes()->how_many() != index+1) {
cmd.warn(bDANGER, here, "duplicate port name, skipping");
}else{
++index;
}
}else{
++index;
}
}catch (Exception_Too_Many& e) {
cmd.warn(bDANGER, here, e.message());
}
}
if (index < x->min_nodes()) {
cmd.warn(bDANGER, "need " + to_string(x->min_nodes()-index) +" more nodes, grounding");
for (int iii = index; iii < x->min_nodes(); ++iii) {
x->set_port_to_ground(iii);
}
}else{
}
}else{
// by name
while (cmd >> '.') {
size_t here = cmd.cursor();
try{
std::string name, value;
cmd >> name >> '(' >> value >> ')' >> ',';
x->set_port_by_name(name, value);
}catch (Exception_No_Match&) {itested();
cmd.warn(bDANGER, here, "mismatch, ignored");
}
}
for (int iii = 0; iii < x->min_nodes(); ++iii) {
if (!(x->node_is_connected(iii))) {untested();
cmd.warn(bDANGER, x->port_name(iii) + ": port unconnected, grounding");
x->set_port_to_ground(iii);
}else{
}
}
}
cmd >> ')';
}else{
cmd.warn(bDANGER, "'(' required (parse ports) (grounding)");
for (int iii = 0; iii < x->min_nodes(); ++iii) {
if (!(x->node_is_connected(iii))) {
cmd.warn(bDANGER, x->port_name(iii) + ": port unconnected, grounding");
x->set_port_to_ground(iii);
}else{
unreachable();
}
}
}
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
DEV_COMMENT* LANG_VERILOG::parse_comment(CS& cmd, DEV_COMMENT* x)
{
assert(x);
x->set(cmd.fullstring());
return x;
}
/*--------------------------------------------------------------------------*/
DEV_DOT* LANG_VERILOG::parse_command(CS& cmd, DEV_DOT* x)
{
assert(x);
x->set(cmd.fullstring());
CARD_LIST* scope = (x->owner()) ? x->owner()->subckt() : &CARD_LIST::card_list;
cmd.reset();
CMD::cmdproc(cmd, scope);
delete x;
return NULL;
}
/*--------------------------------------------------------------------------*/
/* "paramset" <my_name> <base_name> ";"
* <paramset_item_declaration>*
* <paramset_statement>*
* "endparamset"
*/
//BUG// no paramset_item_declaration, falls back to spice mode
MODEL_CARD* LANG_VERILOG::parse_paramset(CS& cmd, MODEL_CARD* x)
{
assert(x);
cmd.reset();
cmd >> "paramset ";
parse_label(cmd, x);
parse_type(cmd, x);
cmd >> ';';
for (;;) {
parse_args_paramset(cmd, x);
if (cmd >> "endparamset ") {
break;
}else if (!cmd.more()) {
cmd.get_line("verilog-paramset>");
}else{untested();
cmd.check(bWARNING, "what's this?");
break;
}
}
return x;
}
/*--------------------------------------------------------------------------*/
/* "module" <name> "(" <ports> ")" ";"
* <declarations>
* <netlist>
* "endmodule"
*/
//BUG// strictly one device per line
BASE_SUBCKT* LANG_VERILOG::parse_module(CS& cmd, BASE_SUBCKT* x)
{
assert(x);
// header
cmd.reset();
(cmd >> "module |macromodule ");
parse_label(cmd, x);
parse_ports(cmd, x, true/*all new*/);
cmd >> ';';
// body
for (;;) {
cmd.get_line("verilog-module>");
if (cmd >> "endmodule ") {
break;
}else{
new__instance(cmd, x, x->subckt());
}
}
return x;
}
/*--------------------------------------------------------------------------*/
COMPONENT* LANG_VERILOG::parse_instance(CS& cmd, COMPONENT* x)
{
assert(x);
cmd.reset();
parse_type(cmd, x);
parse_args_instance(cmd, x);
parse_label(cmd, x);
parse_ports(cmd, x, false/*allow dups*/);
cmd >> ';';
cmd.check(bWARNING, "what's this?");
return x;
}
/*--------------------------------------------------------------------------*/
std::string LANG_VERILOG::find_type_in_string(CS& cmd)
{
size_t here = cmd.cursor();
std::string type;
if ((cmd >> "//")) {
assert(here == 0);
type = "dev_comment";
}else{
cmd >> type;
}
cmd.reset(here);
return type;
}
/*--------------------------------------------------------------------------*/
void LANG_VERILOG::parse_top_item(CS& cmd, CARD_LIST* Scope)
{
cmd.get_line("gnucap-verilog>");
new__instance(cmd, NULL, Scope);
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
void LANG_VERILOG::print_args(OMSTREAM& o, const MODEL_CARD* x)
{
assert(x);
if (x->use_obsolete_callback_print()) {untested();
x->print_args_obsolete_callback(o, this); //BUG//callback//
}else{
for (int ii = x->param_count() - 1; ii >= 0; --ii) {
if (x->param_is_printable(ii)) {
std::string arg = " ." + x->param_name(ii) + "=" + x->param_value(ii) + ";";
o << arg;
}else{
}
}
}
}
/*--------------------------------------------------------------------------*/
void LANG_VERILOG::print_args(OMSTREAM& o, const COMPONENT* x)
{
assert(x);
o << " #(";
if (x->use_obsolete_callback_print()) {
arg_count = 0;
x->print_args_obsolete_callback(o, this); //BUG//callback//
arg_count = INACTIVE;
}else{
std::string sep = ".";
for (int ii = x->param_count() - 1; ii >= 0; --ii) {
if (x->param_is_printable(ii)) {
o << sep << x->param_name(ii) << "(" << x->param_value(ii) << ")";
sep = ",.";
}else{
}
}
}
o << ") ";
}
/*--------------------------------------------------------------------------*/
static void print_type(OMSTREAM& o, const COMPONENT* x)
{
assert(x);
o << x->dev_type();
}
/*--------------------------------------------------------------------------*/
static void print_label(OMSTREAM& o, const COMPONENT* x)
{
assert(x);
o << x->short_label();
}
/*--------------------------------------------------------------------------*/
static void print_ports_long(OMSTREAM& o, const COMPONENT* x)
{
// print in long form ... .name(value)
assert(x);
o << " (";
std::string sep = ".";
for (int ii = 0; x->port_exists(ii); ++ii) {
o << sep << x->port_name(ii) << '(' << x->port_value(ii) << ')';
sep = ",.";
}
for (int ii = 0; x->current_port_exists(ii); ++ii) {untested();
o << sep << x->current_port_name(ii) << '(' << x->current_port_value(ii) << ')';
sep = ",.";
}
o << ")";
}
/*--------------------------------------------------------------------------*/
static void print_ports_short(OMSTREAM& o, const COMPONENT* x)
{
// print in short form ... value only
assert(x);
o << " (";
std::string sep = "";
for (int ii = 0; x->port_exists(ii); ++ii) {
o << sep << x->port_value(ii);
sep = ",";
}
for (int ii = 0; x->current_port_exists(ii); ++ii) {untested();
o << sep << x->current_port_value(ii);
sep = ",";
}
o << ")";
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
void LANG_VERILOG::print_paramset(OMSTREAM& o, const MODEL_CARD* x)
{
assert(x);
_mode = mPARAMSET;
o << "paramset " << x->short_label() << ' ' << x->dev_type() << ";\n";
print_args(o, x);
o << "\n"
"endparamset\n\n";
_mode = mDEFAULT;
}
/*--------------------------------------------------------------------------*/
void LANG_VERILOG::print_module(OMSTREAM& o, const BASE_SUBCKT* x)
{
assert(x);
assert(x->subckt());
o << "module " << x->short_label();
print_ports_short(o, x);
o << ";\n";
for (CARD_LIST::const_iterator
ci = x->subckt()->begin(); ci != x->subckt()->end(); ++ci) {
print_item(o, *ci);
}
o << "endmodule // " << x->short_label() << "\n\n";
}
/*--------------------------------------------------------------------------*/
void LANG_VERILOG::print_instance(OMSTREAM& o, const COMPONENT* x)
{
print_type(o, x);
print_args(o, x);
print_label(o, x);
print_ports_long(o, x);
o << ";\n";
}
/*--------------------------------------------------------------------------*/
void LANG_VERILOG::print_comment(OMSTREAM& o, const DEV_COMMENT* x)
{
assert(x);
if ((x->comment().compare(0, 2, "//")) != 0) {itested();
o << "//";
}else{
}
o << x->comment() << '\n';
}
/*--------------------------------------------------------------------------*/
void LANG_VERILOG::print_command(OMSTREAM& o, const DEV_DOT* x)
{untested();
assert(x);
o << x->s() << '\n';
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
class CMD_PARAMSET : public CMD {
void do_it(CS& cmd, CARD_LIST* Scope)override {
// already got "paramset"
std::string my_name, base_name;
cmd >> my_name;
size_t here = cmd.cursor();
cmd >> base_name;
//const MODEL_CARD* p = model_dispatcher[base_name];
const CARD* p = lang_verilog.find_proto(base_name, NULL);
if (p) {
CARD* cl = p->clone();
MODEL_CARD* new_card = dynamic_cast<MODEL_CARD*>(cl);
if (new_card) {
assert(!new_card->owner());
lang_verilog.parse_paramset(cmd, new_card);
Scope->push_back(new_card);
}else{
delete(cl);
cmd.warn(bDANGER, here, "paramset: base has incorrect type");
}
}else{untested();
cmd.warn(bDANGER, here, "paramset: no match");
}
}
} p1;
DISPATCHER<CMD>::INSTALL d1(&command_dispatcher, "paramset", &p1);
/*--------------------------------------------------------------------------*/
class CMD_MODULE : public CMD {
void do_it(CS& cmd, CARD_LIST* Scope)override {
BASE_SUBCKT* new_module = dynamic_cast<BASE_SUBCKT*>(device_dispatcher.clone("subckt"));
assert(new_module);
assert(!new_module->owner());
assert(new_module->subckt());
assert(new_module->subckt()->is_empty());
assert(!new_module->is_device());
lang_verilog.parse_module(cmd, new_module);
Scope->push_back(new_module);
}
} p2;
DISPATCHER<CMD>::INSTALL d2(&command_dispatcher, "module|macromodule", &p2);
/*--------------------------------------------------------------------------*/
class CMD_VERILOG : public CMD {
public:
void do_it(CS&, CARD_LIST* Scope)override {
command("options lang=verilog", Scope);
}
} p8;
DISPATCHER<CMD>::INSTALL d8(&command_dispatcher, "verilog", &p8);
/*--------------------------------------------------------------------------*/
}
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
// vim:ts=8:sw=2:noet:
|