Better Verilog/VHDL name mixing in the Blif parser.
* Change: In Model::connectSubckts(), when trying to lookup the Hurricane Net from it's Blif name, try first as a VHDL one then after a Verilog to VHDL translation. Especially useful for bits of vectorized names ("signal[X]" --> "signal(X)").
This commit is contained in:
parent
48357c37a9
commit
2ba7bb4fca
|
@ -46,6 +46,7 @@ using namespace CRL;
|
|||
namespace {
|
||||
|
||||
using namespace std;
|
||||
using CRL::NamingScheme;
|
||||
|
||||
|
||||
//inline bool isAbcAutomaticName ( string name )
|
||||
|
@ -681,6 +682,9 @@ namespace {
|
|||
// << endl;
|
||||
Net* net = _cell->getNet( netName );
|
||||
Net* masterNet = instance->getMasterCell()->getNet(masterNetName);
|
||||
if(not masterNet) {
|
||||
Name vlogMasterNetName = NamingScheme::vlogToVhdl( masterNetName, NamingScheme::NoLowerCase );
|
||||
masterNet = instance->getMasterCell()->getNet(vlogMasterNetName);
|
||||
if(not masterNet) {
|
||||
ostringstream tmes;
|
||||
tmes << "The master net <" << masterNetName << "> hasn't been found "
|
||||
|
@ -690,6 +694,7 @@ namespace {
|
|||
<< endl;
|
||||
throw Error(tmes.str());
|
||||
}
|
||||
}
|
||||
|
||||
Plug* plug = instance->getPlug( masterNet );
|
||||
if(not plug) {
|
||||
|
|
Loading…
Reference in New Issue