mirror of https://github.com/YosysHQ/abc.git
Improvements to hierarchical BLIF parser.
This commit is contained in:
parent
b3c9609e82
commit
82a2495ce9
|
|
@ -738,6 +738,7 @@ static int Io_MvReadInterfaces( Io_MvMan_t * p )
|
||||||
return 0;
|
return 0;
|
||||||
// report the results
|
// report the results
|
||||||
#ifdef IO_VERBOSE_OUTPUT
|
#ifdef IO_VERBOSE_OUTPUT
|
||||||
|
if ( Vec_PtrSize(p->vModels) > 1 )
|
||||||
printf( "Parsed %-32s: PI =%6d PO =%6d ND =%8d FF =%6d B =%6d\n",
|
printf( "Parsed %-32s: PI =%6d PO =%6d ND =%8d FF =%6d B =%6d\n",
|
||||||
pMod->pNtk->pName, Abc_NtkPiNum(pMod->pNtk), Abc_NtkPoNum(pMod->pNtk),
|
pMod->pNtk->pName, Abc_NtkPiNum(pMod->pNtk), Abc_NtkPoNum(pMod->pNtk),
|
||||||
Vec_PtrSize(pMod->vNames), Vec_PtrSize(pMod->vLatches), Vec_PtrSize(pMod->vSubckts) );
|
Vec_PtrSize(pMod->vNames), Vec_PtrSize(pMod->vLatches), Vec_PtrSize(pMod->vSubckts) );
|
||||||
|
|
@ -768,6 +769,7 @@ static Abc_Lib_t * Io_MvParse( Io_MvMan_t * p )
|
||||||
Vec_PtrForEachEntry( Io_MvMod_t *, p->vModels, pMod, i )
|
Vec_PtrForEachEntry( Io_MvMod_t *, p->vModels, pMod, i )
|
||||||
{
|
{
|
||||||
#ifdef IO_VERBOSE_OUTPUT
|
#ifdef IO_VERBOSE_OUTPUT
|
||||||
|
if ( Vec_PtrSize(p->vModels) > 1 )
|
||||||
printf( "Parsing model %s...\n", pMod->pNtk->pName );
|
printf( "Parsing model %s...\n", pMod->pNtk->pName );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue