2005-07-29 17:01:00 +02:00
|
|
|
/**CFile****************************************************************
|
|
|
|
|
|
|
|
|
|
FileName [abcPrint.c]
|
|
|
|
|
|
|
|
|
|
SystemName [ABC: Logic synthesis and verification system.]
|
|
|
|
|
|
|
|
|
|
PackageName [Network and node package.]
|
|
|
|
|
|
|
|
|
|
Synopsis [Printing statistics.]
|
|
|
|
|
|
|
|
|
|
Author [Alan Mishchenko]
|
|
|
|
|
|
|
|
|
|
Affiliation [UC Berkeley]
|
|
|
|
|
|
|
|
|
|
Date [Ver. 1.0. Started - June 20, 2005.]
|
|
|
|
|
|
|
|
|
|
Revision [$Id: abcPrint.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "abc.h"
|
2005-09-02 17:01:00 +02:00
|
|
|
#include "dec.h"
|
2005-11-27 17:01:00 +01:00
|
|
|
#include "main.h"
|
|
|
|
|
#include "mio.h"
|
2006-11-11 17:01:00 +01:00
|
|
|
//#include "seq.h"
|
2005-07-29 17:01:00 +02:00
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// DECLARATIONS ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2006-04-07 17:01:00 +02:00
|
|
|
//extern int s_TotalNodes = 0;
|
|
|
|
|
//extern int s_TotalChanges = 0;
|
|
|
|
|
|
2006-09-09 17:01:00 +02:00
|
|
|
int s_MappingTime = 0;
|
|
|
|
|
int s_MappingMem = 0;
|
2007-03-13 16:01:00 +01:00
|
|
|
int s_ResubTime = 0;
|
|
|
|
|
int s_ResynTime = 0;
|
2006-09-09 17:01:00 +02:00
|
|
|
|
2005-07-29 17:01:00 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
2005-10-12 17:01:00 +02:00
|
|
|
/// FUNCTION DEFINITIONS ///
|
2005-07-29 17:01:00 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Print the vital stats of the network.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
2005-08-13 17:01:00 +02:00
|
|
|
void Abc_NtkPrintStats( FILE * pFile, Abc_Ntk_t * pNtk, int fFactored )
|
2005-07-29 17:01:00 +02:00
|
|
|
{
|
2007-01-10 17:01:00 +01:00
|
|
|
int Num;
|
2007-03-02 17:01:00 +01:00
|
|
|
|
|
|
|
|
// if ( Abc_NtkIsStrash(pNtk) )
|
|
|
|
|
// Abc_AigCountNext( pNtk->pManFunc );
|
|
|
|
|
|
2005-08-31 17:01:00 +02:00
|
|
|
fprintf( pFile, "%-13s:", pNtk->pName );
|
2006-06-11 17:01:00 +02:00
|
|
|
if ( Abc_NtkAssertNum(pNtk) )
|
2007-12-18 17:01:00 +01:00
|
|
|
fprintf( pFile, " i/o/a = %5d/%5d/%5d", Abc_NtkPiNum(pNtk), Abc_NtkPoNum(pNtk), Abc_NtkAssertNum(pNtk) );
|
2006-06-11 17:01:00 +02:00
|
|
|
else
|
2007-12-18 17:01:00 +01:00
|
|
|
fprintf( pFile, " i/o = %5d/%5d", Abc_NtkPiNum(pNtk), Abc_NtkPoNum(pNtk) );
|
2007-01-10 17:01:00 +01:00
|
|
|
fprintf( pFile, " lat = %4d", Abc_NtkLatchNum(pNtk) );
|
2005-07-29 17:01:00 +02:00
|
|
|
if ( Abc_NtkIsNetlist(pNtk) )
|
|
|
|
|
{
|
|
|
|
|
fprintf( pFile, " net = %5d", Abc_NtkNetNum(pNtk) );
|
2006-08-23 17:01:00 +02:00
|
|
|
fprintf( pFile, " nd = %5d", Abc_NtkNodeNum(pNtk) );
|
2007-02-11 17:01:00 +01:00
|
|
|
fprintf( pFile, " wbox = %3d", Abc_NtkWhiteboxNum(pNtk) );
|
|
|
|
|
fprintf( pFile, " bbox = %3d", Abc_NtkBlackboxNum(pNtk) );
|
2005-07-29 17:01:00 +02:00
|
|
|
}
|
2007-01-10 17:01:00 +01:00
|
|
|
else if ( Abc_NtkIsStrash(pNtk) )
|
2006-04-12 17:01:00 +02:00
|
|
|
{
|
2005-07-29 17:01:00 +02:00
|
|
|
fprintf( pFile, " and = %5d", Abc_NtkNodeNum(pNtk) );
|
2005-09-02 17:01:00 +02:00
|
|
|
if ( Num = Abc_NtkGetChoiceNum(pNtk) )
|
2005-08-17 17:01:00 +02:00
|
|
|
fprintf( pFile, " (choice = %d)", Num );
|
2005-09-02 17:01:00 +02:00
|
|
|
if ( Num = Abc_NtkGetExorNum(pNtk) )
|
2005-08-17 17:01:00 +02:00
|
|
|
fprintf( pFile, " (exor = %d)", Num );
|
2006-04-19 17:01:00 +02:00
|
|
|
// if ( Num2 = Abc_NtkGetMuxNum(pNtk) )
|
|
|
|
|
// fprintf( pFile, " (mux = %d)", Num2-Num );
|
|
|
|
|
// if ( Num2 )
|
|
|
|
|
// fprintf( pFile, " (other = %d)", Abc_NtkNodeNum(pNtk)-3*Num2 );
|
2005-08-07 17:01:00 +02:00
|
|
|
}
|
2005-07-29 17:01:00 +02:00
|
|
|
else
|
2007-02-02 17:01:00 +01:00
|
|
|
{
|
2005-07-29 17:01:00 +02:00
|
|
|
fprintf( pFile, " nd = %5d", Abc_NtkNodeNum(pNtk) );
|
2007-12-18 17:01:00 +01:00
|
|
|
fprintf( pFile, " edge = %6d", Abc_NtkGetTotalFanins(pNtk) );
|
2007-02-02 17:01:00 +01:00
|
|
|
}
|
2005-07-29 17:01:00 +02:00
|
|
|
|
2007-01-10 17:01:00 +01:00
|
|
|
if ( Abc_NtkIsStrash(pNtk) || Abc_NtkIsNetlist(pNtk) )
|
2006-08-22 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
else if ( Abc_NtkHasSop(pNtk) )
|
2005-07-29 17:01:00 +02:00
|
|
|
{
|
2006-04-12 17:01:00 +02:00
|
|
|
|
2005-07-29 17:01:00 +02:00
|
|
|
fprintf( pFile, " cube = %5d", Abc_NtkGetCubeNum(pNtk) );
|
2005-08-13 17:01:00 +02:00
|
|
|
// fprintf( pFile, " lit(sop) = %5d", Abc_NtkGetLitNum(pNtk) );
|
|
|
|
|
if ( fFactored )
|
|
|
|
|
fprintf( pFile, " lit(fac) = %5d", Abc_NtkGetLitFactNum(pNtk) );
|
2005-07-29 17:01:00 +02:00
|
|
|
}
|
2006-08-22 17:01:00 +02:00
|
|
|
else if ( Abc_NtkHasAig(pNtk) )
|
|
|
|
|
fprintf( pFile, " aig = %5d", Abc_NtkGetAigNodeNum(pNtk) );
|
2005-08-29 17:01:00 +02:00
|
|
|
else if ( Abc_NtkHasBdd(pNtk) )
|
2005-12-22 17:01:00 +01:00
|
|
|
fprintf( pFile, " bdd = %5d", Abc_NtkGetBddNodeNum(pNtk) );
|
2005-08-29 17:01:00 +02:00
|
|
|
else if ( Abc_NtkHasMapping(pNtk) )
|
2005-07-29 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
fprintf( pFile, " area = %5.2f", Abc_NtkGetMappedArea(pNtk) );
|
|
|
|
|
fprintf( pFile, " delay = %5.2f", Abc_NtkDelayTrace(pNtk) );
|
|
|
|
|
}
|
2006-08-22 17:01:00 +02:00
|
|
|
else if ( !Abc_NtkHasBlackbox(pNtk) )
|
2005-08-12 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
assert( 0 );
|
|
|
|
|
}
|
2005-08-13 17:01:00 +02:00
|
|
|
|
2005-08-29 17:01:00 +02:00
|
|
|
if ( Abc_NtkIsStrash(pNtk) )
|
2006-11-22 17:01:00 +01:00
|
|
|
fprintf( pFile, " lev = %3d", Abc_AigLevel(pNtk) );
|
2007-01-10 17:01:00 +01:00
|
|
|
else
|
2006-11-22 17:01:00 +01:00
|
|
|
fprintf( pFile, " lev = %3d", Abc_NtkLevel(pNtk) );
|
2005-08-13 17:01:00 +02:00
|
|
|
|
2005-07-29 17:01:00 +02:00
|
|
|
fprintf( pFile, "\n" );
|
2006-12-10 17:01:00 +01:00
|
|
|
|
2007-01-27 17:01:00 +01:00
|
|
|
// Abc_NtkCrossCut( pNtk );
|
2006-12-10 17:01:00 +01:00
|
|
|
|
2005-11-30 17:01:00 +01:00
|
|
|
// print the statistic into a file
|
|
|
|
|
/*
|
|
|
|
|
{
|
|
|
|
|
FILE * pTable;
|
2007-09-30 17:01:00 +02:00
|
|
|
pTable = fopen( "ibm/seq_stats.txt", "a+" );
|
|
|
|
|
// fprintf( pTable, "%s ", pNtk->pName );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkPiNum(pNtk) );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkPoNum(pNtk) );
|
2006-04-19 17:01:00 +02:00
|
|
|
fprintf( pTable, "%d ", Abc_NtkNodeNum(pNtk) );
|
2007-09-30 17:01:00 +02:00
|
|
|
fprintf( pTable, "%d ", Abc_NtkLatchNum(pNtk) );
|
|
|
|
|
fprintf( pTable, "%d ", Abc_NtkLevel(pNtk) );
|
2005-11-30 17:01:00 +01:00
|
|
|
fprintf( pTable, "\n" );
|
|
|
|
|
fclose( pTable );
|
|
|
|
|
}
|
|
|
|
|
*/
|
2007-09-30 17:01:00 +02:00
|
|
|
|
2005-11-30 17:01:00 +01:00
|
|
|
/*
|
|
|
|
|
// print the statistic into a file
|
|
|
|
|
{
|
|
|
|
|
FILE * pTable;
|
|
|
|
|
pTable = fopen( "stats.txt", "a+" );
|
|
|
|
|
fprintf( pTable, "%s ", pNtk->pSpec );
|
|
|
|
|
fprintf( pTable, "%.0f ", Abc_NtkGetMappedArea(pNtk) );
|
|
|
|
|
fprintf( pTable, "%.2f ", Abc_NtkDelayTrace(pNtk) );
|
|
|
|
|
fprintf( pTable, "\n" );
|
|
|
|
|
fclose( pTable );
|
|
|
|
|
}
|
2007-03-13 16:01:00 +01:00
|
|
|
*/
|
2005-11-30 17:01:00 +01:00
|
|
|
|
2006-10-07 17:01:00 +02:00
|
|
|
/*
|
2005-11-30 17:01:00 +01:00
|
|
|
// print the statistic into a file
|
|
|
|
|
{
|
|
|
|
|
FILE * pTable;
|
2007-03-13 16:01:00 +01:00
|
|
|
pTable = fopen( "x/stats_new.txt", "a+" );
|
2005-11-30 17:01:00 +01:00
|
|
|
fprintf( pTable, "%s ", pNtk->pName );
|
2007-03-13 16:01:00 +01:00
|
|
|
// fprintf( pTable, "%d ", Abc_NtkPiNum(pNtk) );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkPoNum(pNtk) );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkLevel(pNtk) );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkNodeNum(pNtk) );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkGetTotalFanins(pNtk) );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkLatchNum(pNtk) );
|
2006-12-04 17:01:00 +01:00
|
|
|
// fprintf( pTable, "%.2f ", (float)(s_MappingMem)/(float)(1<<20) );
|
2007-03-13 16:01:00 +01:00
|
|
|
fprintf( pTable, "%.2f", (float)(s_MappingTime)/(float)(CLOCKS_PER_SEC) );
|
|
|
|
|
// fprintf( pTable, "%.2f", (float)(s_ResynTime)/(float)(CLOCKS_PER_SEC) );
|
2005-11-30 17:01:00 +01:00
|
|
|
fprintf( pTable, "\n" );
|
|
|
|
|
fclose( pTable );
|
2007-03-13 16:01:00 +01:00
|
|
|
|
|
|
|
|
s_ResynTime = 0;
|
2005-11-30 17:01:00 +01:00
|
|
|
}
|
2006-10-07 17:01:00 +02:00
|
|
|
*/
|
2006-06-14 17:01:00 +02:00
|
|
|
|
2006-12-04 17:01:00 +01:00
|
|
|
/*
|
2005-11-30 17:01:00 +01:00
|
|
|
// print the statistic into a file
|
|
|
|
|
{
|
2006-11-11 17:01:00 +01:00
|
|
|
static int Counter = 0;
|
|
|
|
|
extern int timeRetime;
|
2005-11-30 17:01:00 +01:00
|
|
|
FILE * pTable;
|
2006-11-11 17:01:00 +01:00
|
|
|
Counter++;
|
2006-11-22 17:01:00 +01:00
|
|
|
pTable = fopen( "a/ret__stats.txt", "a+" );
|
2006-11-11 17:01:00 +01:00
|
|
|
fprintf( pTable, "%s ", pNtk->pName );
|
|
|
|
|
fprintf( pTable, "%d ", Abc_NtkNodeNum(pNtk) );
|
2005-11-30 17:01:00 +01:00
|
|
|
fprintf( pTable, "%d ", Abc_NtkLatchNum(pNtk) );
|
2006-11-22 17:01:00 +01:00
|
|
|
fprintf( pTable, "%d ", Abc_NtkLevel(pNtk) );
|
2006-11-11 17:01:00 +01:00
|
|
|
fprintf( pTable, "%.2f ", (float)(timeRetime)/(float)(CLOCKS_PER_SEC) );
|
|
|
|
|
if ( Counter % 4 == 0 )
|
|
|
|
|
fprintf( pTable, "\n" );
|
2005-11-30 17:01:00 +01:00
|
|
|
fclose( pTable );
|
|
|
|
|
}
|
2006-12-04 17:01:00 +01:00
|
|
|
*/
|
2006-11-22 17:01:00 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
// print the statistic into a file
|
|
|
|
|
{
|
|
|
|
|
static int Counter = 0;
|
|
|
|
|
extern int timeRetime;
|
|
|
|
|
FILE * pTable;
|
|
|
|
|
Counter++;
|
|
|
|
|
pTable = fopen( "d/stats.txt", "a+" );
|
|
|
|
|
fprintf( pTable, "%s ", pNtk->pName );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkPiNum(pNtk) );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkPoNum(pNtk) );
|
|
|
|
|
// fprintf( pTable, "%d ", Abc_NtkLatchNum(pNtk) );
|
|
|
|
|
fprintf( pTable, "%d ", Abc_NtkNodeNum(pNtk) );
|
|
|
|
|
fprintf( pTable, "%.2f ", (float)(timeRetime)/(float)(CLOCKS_PER_SEC) );
|
|
|
|
|
fprintf( pTable, "\n" );
|
|
|
|
|
fclose( pTable );
|
|
|
|
|
}
|
2005-11-30 17:01:00 +01:00
|
|
|
*/
|
2006-11-11 17:01:00 +01:00
|
|
|
|
2006-04-07 17:01:00 +02:00
|
|
|
/*
|
|
|
|
|
s_TotalNodes += Abc_NtkNodeNum(pNtk);
|
|
|
|
|
printf( "Total nodes = %6d %6.2f Mb Changes = %6d.\n",
|
|
|
|
|
s_TotalNodes, s_TotalNodes * 20.0 / (1<<20), s_TotalChanges );
|
|
|
|
|
*/
|
2007-08-28 17:01:00 +02:00
|
|
|
|
|
|
|
|
// if ( Abc_NtkHasSop(pNtk) )
|
|
|
|
|
// printf( "The total number of cube pairs = %d.\n", Abc_NtkGetCubePairNum(pNtk) );
|
2005-07-29 17:01:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints PIs/POs and LIs/LOs.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NtkPrintIo( FILE * pFile, Abc_Ntk_t * pNtk )
|
|
|
|
|
{
|
2005-08-12 17:01:00 +02:00
|
|
|
Abc_Obj_t * pObj;
|
2005-07-29 17:01:00 +02:00
|
|
|
int i;
|
|
|
|
|
|
2005-08-12 17:01:00 +02:00
|
|
|
fprintf( pFile, "Primary inputs (%d): ", Abc_NtkPiNum(pNtk) );
|
|
|
|
|
Abc_NtkForEachPi( pNtk, pObj, i )
|
|
|
|
|
fprintf( pFile, " %s", Abc_ObjName(pObj) );
|
2006-07-23 17:01:00 +02:00
|
|
|
// fprintf( pFile, " %s(%d)", Abc_ObjName(pObj), Abc_ObjFanoutNum(pObj) );
|
2005-08-12 17:01:00 +02:00
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
|
|
|
|
|
fprintf( pFile, "Primary outputs (%d):", Abc_NtkPoNum(pNtk) );
|
|
|
|
|
Abc_NtkForEachPo( pNtk, pObj, i )
|
|
|
|
|
fprintf( pFile, " %s", Abc_ObjName(pObj) );
|
|
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
|
|
|
|
|
fprintf( pFile, "Latches (%d): ", Abc_NtkLatchNum(pNtk) );
|
|
|
|
|
Abc_NtkForEachLatch( pNtk, pObj, i )
|
2006-11-22 17:01:00 +01:00
|
|
|
fprintf( pFile, " %s(%s=%s)", Abc_ObjName(pObj),
|
|
|
|
|
Abc_ObjName(Abc_ObjFanout0(pObj)), Abc_ObjName(Abc_ObjFanin0(pObj)) );
|
2005-08-12 17:01:00 +02:00
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints statistics about latches.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NtkPrintLatch( FILE * pFile, Abc_Ntk_t * pNtk )
|
|
|
|
|
{
|
2005-08-14 17:01:00 +02:00
|
|
|
Abc_Obj_t * pLatch, * pFanin;
|
2005-08-12 17:01:00 +02:00
|
|
|
int i, Counter0, Counter1, Counter2;
|
2005-09-16 17:01:00 +02:00
|
|
|
int InitNums[4], Init;
|
|
|
|
|
|
|
|
|
|
assert( !Abc_NtkIsNetlist(pNtk) );
|
2005-08-12 17:01:00 +02:00
|
|
|
if ( Abc_NtkLatchNum(pNtk) == 0 )
|
2005-07-29 17:01:00 +02:00
|
|
|
{
|
2005-08-12 17:01:00 +02:00
|
|
|
fprintf( pFile, "The network is combinational.\n" );
|
|
|
|
|
return;
|
2005-07-29 17:01:00 +02:00
|
|
|
}
|
2005-08-12 17:01:00 +02:00
|
|
|
|
2005-09-16 17:01:00 +02:00
|
|
|
for ( i = 0; i < 4; i++ )
|
|
|
|
|
InitNums[i] = 0;
|
2005-08-12 17:01:00 +02:00
|
|
|
Counter0 = Counter1 = Counter2 = 0;
|
|
|
|
|
Abc_NtkForEachLatch( pNtk, pLatch, i )
|
2005-07-29 17:01:00 +02:00
|
|
|
{
|
2005-09-16 17:01:00 +02:00
|
|
|
Init = Abc_LatchInit( pLatch );
|
|
|
|
|
assert( Init < 4 );
|
|
|
|
|
InitNums[Init]++;
|
2005-08-12 17:01:00 +02:00
|
|
|
|
2006-08-24 17:01:00 +02:00
|
|
|
pFanin = Abc_ObjFanin0(Abc_ObjFanin0(pLatch));
|
2006-11-11 17:01:00 +01:00
|
|
|
if ( Abc_NtkIsLogic(pNtk) )
|
|
|
|
|
{
|
|
|
|
|
if ( !Abc_NodeIsConst(pFanin) )
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if ( Abc_NtkIsStrash(pNtk) )
|
|
|
|
|
{
|
|
|
|
|
if ( !Abc_AigNodeIsConst(pFanin) )
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
assert( 0 );
|
2005-08-14 17:01:00 +02:00
|
|
|
|
|
|
|
|
// the latch input is a constant node
|
|
|
|
|
Counter0++;
|
|
|
|
|
if ( Abc_LatchIsInitDc(pLatch) )
|
2005-08-12 17:01:00 +02:00
|
|
|
{
|
2005-08-14 17:01:00 +02:00
|
|
|
Counter1++;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
// count the number of cases when the constant is equal to the initial value
|
2005-08-29 17:01:00 +02:00
|
|
|
if ( Abc_NtkIsStrash(pNtk) )
|
2005-08-14 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
if ( Abc_LatchIsInit1(pLatch) == !Abc_ObjFaninC0(pLatch) )
|
|
|
|
|
Counter2++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2007-09-26 17:01:00 +02:00
|
|
|
if ( Abc_LatchIsInit1(pLatch) == Abc_NodeIsConst1(Abc_ObjFanin0(Abc_ObjFanin0(pLatch))) )
|
2005-08-14 17:01:00 +02:00
|
|
|
Counter2++;
|
2005-08-12 17:01:00 +02:00
|
|
|
}
|
2005-07-29 17:01:00 +02:00
|
|
|
}
|
2005-08-14 17:01:00 +02:00
|
|
|
fprintf( pFile, "%-15s: ", pNtk->pName );
|
2005-09-16 17:01:00 +02:00
|
|
|
fprintf( pFile, "Latch = %6d. No = %4d. Zero = %4d. One = %4d. DC = %4d.\n",
|
|
|
|
|
Abc_NtkLatchNum(pNtk), InitNums[0], InitNums[1], InitNums[2], InitNums[3] );
|
|
|
|
|
fprintf( pFile, "Const fanin = %3d. DC init = %3d. Matching init = %3d. ", Counter0, Counter1, Counter2 );
|
2007-08-17 17:01:00 +02:00
|
|
|
fprintf( pFile, "Self-feed latches = %2d.\n", -1 ); //Abc_NtkCountSelfFeedLatches(pNtk) );
|
2005-07-29 17:01:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints the distribution of fanins/fanouts in the network.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NtkPrintFanio( FILE * pFile, Abc_Ntk_t * pNtk )
|
|
|
|
|
{
|
|
|
|
|
Abc_Obj_t * pNode;
|
|
|
|
|
int i, k, nFanins, nFanouts;
|
|
|
|
|
Vec_Int_t * vFanins, * vFanouts;
|
|
|
|
|
int nOldSize, nNewSize;
|
|
|
|
|
|
|
|
|
|
vFanins = Vec_IntAlloc( 0 );
|
|
|
|
|
vFanouts = Vec_IntAlloc( 0 );
|
|
|
|
|
Vec_IntFill( vFanins, 100, 0 );
|
|
|
|
|
Vec_IntFill( vFanouts, 100, 0 );
|
|
|
|
|
Abc_NtkForEachNode( pNtk, pNode, i )
|
|
|
|
|
{
|
|
|
|
|
nFanins = Abc_ObjFaninNum(pNode);
|
|
|
|
|
if ( Abc_NtkIsNetlist(pNtk) )
|
|
|
|
|
nFanouts = Abc_ObjFanoutNum( Abc_ObjFanout0(pNode) );
|
|
|
|
|
else
|
|
|
|
|
nFanouts = Abc_ObjFanoutNum(pNode);
|
2006-08-03 17:01:00 +02:00
|
|
|
// nFanouts = Abc_NodeMffcSize(pNode);
|
2005-07-29 17:01:00 +02:00
|
|
|
if ( nFanins > vFanins->nSize || nFanouts > vFanouts->nSize )
|
|
|
|
|
{
|
|
|
|
|
nOldSize = vFanins->nSize;
|
|
|
|
|
nNewSize = ABC_MAX(nFanins, nFanouts) + 10;
|
|
|
|
|
Vec_IntGrow( vFanins, nNewSize );
|
|
|
|
|
Vec_IntGrow( vFanouts, nNewSize );
|
|
|
|
|
for ( k = nOldSize; k < nNewSize; k++ )
|
|
|
|
|
{
|
|
|
|
|
Vec_IntPush( vFanins, 0 );
|
|
|
|
|
Vec_IntPush( vFanouts, 0 );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
vFanins->pArray[nFanins]++;
|
|
|
|
|
vFanouts->pArray[nFanouts]++;
|
|
|
|
|
}
|
|
|
|
|
fprintf( pFile, "The distribution of fanins and fanouts in the network:\n" );
|
|
|
|
|
fprintf( pFile, " Number Nodes with fanin Nodes with fanout\n" );
|
|
|
|
|
for ( k = 0; k < vFanins->nSize; k++ )
|
|
|
|
|
{
|
|
|
|
|
if ( vFanins->pArray[k] == 0 && vFanouts->pArray[k] == 0 )
|
|
|
|
|
continue;
|
|
|
|
|
fprintf( pFile, "%5d : ", k );
|
|
|
|
|
if ( vFanins->pArray[k] == 0 )
|
|
|
|
|
fprintf( pFile, " " );
|
|
|
|
|
else
|
|
|
|
|
fprintf( pFile, "%12d ", vFanins->pArray[k] );
|
|
|
|
|
fprintf( pFile, " " );
|
|
|
|
|
if ( vFanouts->pArray[k] == 0 )
|
|
|
|
|
fprintf( pFile, " " );
|
|
|
|
|
else
|
|
|
|
|
fprintf( pFile, "%12d ", vFanouts->pArray[k] );
|
|
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
}
|
|
|
|
|
Vec_IntFree( vFanins );
|
|
|
|
|
Vec_IntFree( vFanouts );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints the fanins/fanouts of a node.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NodePrintFanio( FILE * pFile, Abc_Obj_t * pNode )
|
|
|
|
|
{
|
|
|
|
|
Abc_Obj_t * pNode2;
|
|
|
|
|
int i;
|
|
|
|
|
if ( Abc_ObjIsPo(pNode) )
|
|
|
|
|
pNode = Abc_ObjFanin0(pNode);
|
|
|
|
|
|
2005-08-14 17:01:00 +02:00
|
|
|
fprintf( pFile, "Node %s", Abc_ObjName(pNode) );
|
|
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
|
2005-07-29 17:01:00 +02:00
|
|
|
fprintf( pFile, "Fanins (%d): ", Abc_ObjFaninNum(pNode) );
|
|
|
|
|
Abc_ObjForEachFanin( pNode, pNode2, i )
|
|
|
|
|
fprintf( pFile, " %s", Abc_ObjName(pNode2) );
|
|
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
|
|
|
|
|
fprintf( pFile, "Fanouts (%d): ", Abc_ObjFaninNum(pNode) );
|
|
|
|
|
Abc_ObjForEachFanout( pNode, pNode2, i )
|
|
|
|
|
fprintf( pFile, " %s", Abc_ObjName(pNode2) );
|
|
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-02 17:01:00 +01:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints the MFFCs of the nodes.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NtkPrintMffc( FILE * pFile, Abc_Ntk_t * pNtk )
|
|
|
|
|
{
|
|
|
|
|
Abc_Obj_t * pNode;
|
|
|
|
|
int i;
|
|
|
|
|
extern void Abc_NodeMffsConeSuppPrint( Abc_Obj_t * pNode );
|
|
|
|
|
Abc_NtkForEachNode( pNtk, pNode, i )
|
|
|
|
|
Abc_NodeMffsConeSuppPrint( pNode );
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-29 17:01:00 +02:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints the factored form of one node.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
2005-09-01 17:01:00 +02:00
|
|
|
void Abc_NtkPrintFactor( FILE * pFile, Abc_Ntk_t * pNtk, int fUseRealNames )
|
2005-07-29 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
Abc_Obj_t * pNode;
|
|
|
|
|
int i;
|
2005-08-29 17:01:00 +02:00
|
|
|
assert( Abc_NtkIsSopLogic(pNtk) );
|
2005-07-29 17:01:00 +02:00
|
|
|
Abc_NtkForEachNode( pNtk, pNode, i )
|
2005-09-01 17:01:00 +02:00
|
|
|
Abc_NodePrintFactor( pFile, pNode, fUseRealNames );
|
2005-07-29 17:01:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints the factored form of one node.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
2005-09-01 17:01:00 +02:00
|
|
|
void Abc_NodePrintFactor( FILE * pFile, Abc_Obj_t * pNode, int fUseRealNames )
|
2005-07-29 17:01:00 +02:00
|
|
|
{
|
2005-09-02 17:01:00 +02:00
|
|
|
Dec_Graph_t * pGraph;
|
2005-09-01 17:01:00 +02:00
|
|
|
Vec_Ptr_t * vNamesIn;
|
2005-08-12 17:01:00 +02:00
|
|
|
if ( Abc_ObjIsCo(pNode) )
|
2005-07-29 17:01:00 +02:00
|
|
|
pNode = Abc_ObjFanin0(pNode);
|
|
|
|
|
if ( Abc_ObjIsPi(pNode) )
|
|
|
|
|
{
|
2005-08-14 17:01:00 +02:00
|
|
|
fprintf( pFile, "Skipping the PI node.\n" );
|
2005-07-29 17:01:00 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( Abc_ObjIsLatch(pNode) )
|
|
|
|
|
{
|
2005-08-14 17:01:00 +02:00
|
|
|
fprintf( pFile, "Skipping the latch.\n" );
|
2005-07-29 17:01:00 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
assert( Abc_ObjIsNode(pNode) );
|
2005-09-02 17:01:00 +02:00
|
|
|
pGraph = Dec_Factor( pNode->pData );
|
2005-09-01 17:01:00 +02:00
|
|
|
if ( fUseRealNames )
|
|
|
|
|
{
|
|
|
|
|
vNamesIn = Abc_NodeGetFaninNames(pNode);
|
2005-09-02 17:01:00 +02:00
|
|
|
Dec_GraphPrint( stdout, pGraph, (char **)vNamesIn->pArray, Abc_ObjName(pNode) );
|
2005-09-01 17:01:00 +02:00
|
|
|
Abc_NodeFreeNames( vNamesIn );
|
|
|
|
|
}
|
|
|
|
|
else
|
2005-09-02 17:01:00 +02:00
|
|
|
Dec_GraphPrint( stdout, pGraph, (char **)NULL, Abc_ObjName(pNode) );
|
|
|
|
|
Dec_GraphFree( pGraph );
|
2005-07-29 17:01:00 +02:00
|
|
|
}
|
|
|
|
|
|
2005-08-14 17:01:00 +02:00
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints the level stats of the PO node.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
2005-12-22 17:01:00 +01:00
|
|
|
void Abc_NtkPrintLevel( FILE * pFile, Abc_Ntk_t * pNtk, int fProfile, int fListNodes )
|
2005-08-14 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
Abc_Obj_t * pNode;
|
2005-12-22 17:01:00 +01:00
|
|
|
int i, k, Length;
|
|
|
|
|
|
|
|
|
|
if ( fListNodes )
|
|
|
|
|
{
|
|
|
|
|
int nLevels;
|
2006-11-22 17:01:00 +01:00
|
|
|
nLevels = Abc_NtkLevel(pNtk);
|
2005-12-22 17:01:00 +01:00
|
|
|
printf( "Nodes by level:\n" );
|
|
|
|
|
for ( i = 0; i <= nLevels; i++ )
|
|
|
|
|
{
|
|
|
|
|
printf( "%2d : ", i );
|
|
|
|
|
Abc_NtkForEachNode( pNtk, pNode, k )
|
|
|
|
|
if ( (int)pNode->Level == i )
|
|
|
|
|
printf( " %s", Abc_ObjName(pNode) );
|
|
|
|
|
printf( "\n" );
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-08-14 17:01:00 +02:00
|
|
|
|
|
|
|
|
// print the delay profile
|
2005-08-29 17:01:00 +02:00
|
|
|
if ( fProfile && Abc_NtkHasMapping(pNtk) )
|
2005-08-17 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
int nIntervals = 12;
|
|
|
|
|
float DelayMax, DelayCur, DelayDelta;
|
|
|
|
|
int * pLevelCounts;
|
|
|
|
|
int DelayInt, nOutsSum, nOutsTotal;
|
|
|
|
|
|
|
|
|
|
// get the max delay and delta
|
|
|
|
|
DelayMax = Abc_NtkDelayTrace( pNtk );
|
|
|
|
|
DelayDelta = DelayMax/nIntervals;
|
|
|
|
|
// collect outputs by delay
|
|
|
|
|
pLevelCounts = ALLOC( int, nIntervals );
|
|
|
|
|
memset( pLevelCounts, 0, sizeof(int) * nIntervals );
|
|
|
|
|
Abc_NtkForEachCo( pNtk, pNode, i )
|
|
|
|
|
{
|
|
|
|
|
DelayCur = Abc_NodeReadArrival( Abc_ObjFanin0(pNode) )->Worst;
|
|
|
|
|
DelayInt = (int)(DelayCur / DelayDelta);
|
|
|
|
|
if ( DelayInt >= nIntervals )
|
|
|
|
|
DelayInt = nIntervals - 1;
|
|
|
|
|
pLevelCounts[DelayInt]++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nOutsSum = 0;
|
|
|
|
|
nOutsTotal = Abc_NtkCoNum(pNtk);
|
|
|
|
|
for ( i = 0; i < nIntervals; i++ )
|
|
|
|
|
{
|
|
|
|
|
nOutsSum += pLevelCounts[i];
|
|
|
|
|
printf( "[%8.2f - %8.2f] : COs = %4d. %5.1f %%\n",
|
|
|
|
|
DelayDelta * i, DelayDelta * (i+1), pLevelCounts[i], 100.0 * nOutsSum/nOutsTotal );
|
|
|
|
|
}
|
|
|
|
|
free( pLevelCounts );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else if ( fProfile )
|
2005-08-14 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
int LevelMax, * pLevelCounts;
|
|
|
|
|
int nOutsSum, nOutsTotal;
|
|
|
|
|
|
2005-08-29 17:01:00 +02:00
|
|
|
if ( !Abc_NtkIsStrash(pNtk) )
|
2006-11-22 17:01:00 +01:00
|
|
|
Abc_NtkLevel(pNtk);
|
2005-08-17 17:01:00 +02:00
|
|
|
|
2005-08-14 17:01:00 +02:00
|
|
|
LevelMax = 0;
|
|
|
|
|
Abc_NtkForEachCo( pNtk, pNode, i )
|
|
|
|
|
if ( LevelMax < (int)Abc_ObjFanin0(pNode)->Level )
|
|
|
|
|
LevelMax = Abc_ObjFanin0(pNode)->Level;
|
|
|
|
|
pLevelCounts = ALLOC( int, LevelMax + 1 );
|
|
|
|
|
memset( pLevelCounts, 0, sizeof(int) * (LevelMax + 1) );
|
|
|
|
|
Abc_NtkForEachCo( pNtk, pNode, i )
|
|
|
|
|
pLevelCounts[Abc_ObjFanin0(pNode)->Level]++;
|
|
|
|
|
|
|
|
|
|
nOutsSum = 0;
|
|
|
|
|
nOutsTotal = Abc_NtkCoNum(pNtk);
|
|
|
|
|
for ( i = 0; i <= LevelMax; i++ )
|
|
|
|
|
if ( pLevelCounts[i] )
|
|
|
|
|
{
|
|
|
|
|
nOutsSum += pLevelCounts[i];
|
|
|
|
|
printf( "Level = %4d. COs = %4d. %5.1f %%\n", i, pLevelCounts[i], 100.0 * nOutsSum/nOutsTotal );
|
|
|
|
|
}
|
2005-08-17 17:01:00 +02:00
|
|
|
free( pLevelCounts );
|
2005-08-14 17:01:00 +02:00
|
|
|
return;
|
|
|
|
|
}
|
2005-08-29 17:01:00 +02:00
|
|
|
assert( Abc_NtkIsStrash(pNtk) );
|
2005-08-14 17:01:00 +02:00
|
|
|
|
|
|
|
|
// find the longest name
|
|
|
|
|
Length = 0;
|
|
|
|
|
Abc_NtkForEachCo( pNtk, pNode, i )
|
|
|
|
|
if ( Length < (int)strlen(Abc_ObjName(pNode)) )
|
|
|
|
|
Length = strlen(Abc_ObjName(pNode));
|
|
|
|
|
if ( Length < 5 )
|
|
|
|
|
Length = 5;
|
|
|
|
|
// print stats for each output
|
|
|
|
|
Abc_NtkForEachCo( pNtk, pNode, i )
|
|
|
|
|
{
|
|
|
|
|
fprintf( pFile, "CO %4d : %*s ", i, Length, Abc_ObjName(pNode) );
|
|
|
|
|
Abc_NodePrintLevel( pFile, pNode );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints the factored form of one node.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NodePrintLevel( FILE * pFile, Abc_Obj_t * pNode )
|
|
|
|
|
{
|
|
|
|
|
Abc_Obj_t * pDriver;
|
|
|
|
|
Vec_Ptr_t * vNodes;
|
|
|
|
|
|
|
|
|
|
pDriver = Abc_ObjIsCo(pNode)? Abc_ObjFanin0(pNode) : pNode;
|
|
|
|
|
if ( Abc_ObjIsPi(pDriver) )
|
|
|
|
|
{
|
|
|
|
|
fprintf( pFile, "Primary input.\n" );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( Abc_ObjIsLatch(pDriver) )
|
|
|
|
|
{
|
|
|
|
|
fprintf( pFile, "Latch.\n" );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( Abc_NodeIsConst(pDriver) )
|
|
|
|
|
{
|
|
|
|
|
fprintf( pFile, "Constant %d.\n", !Abc_ObjFaninC0(pNode) );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// print the level
|
|
|
|
|
fprintf( pFile, "Level = %3d. ", pDriver->Level );
|
|
|
|
|
// print the size of MFFC
|
|
|
|
|
fprintf( pFile, "Mffc = %5d. ", Abc_NodeMffcSize(pDriver) );
|
|
|
|
|
// print the size of the shole cone
|
|
|
|
|
vNodes = Abc_NtkDfsNodes( pNode->pNtk, &pDriver, 1 );
|
|
|
|
|
fprintf( pFile, "Cone = %5d. ", Vec_PtrSize(vNodes) );
|
|
|
|
|
Vec_PtrFree( vNodes );
|
|
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
}
|
|
|
|
|
|
2005-10-05 17:01:00 +02:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints the factored form of one node.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NodePrintKMap( Abc_Obj_t * pNode, int fUseRealNames )
|
|
|
|
|
{
|
|
|
|
|
Vec_Ptr_t * vNamesIn;
|
|
|
|
|
if ( fUseRealNames )
|
|
|
|
|
{
|
|
|
|
|
vNamesIn = Abc_NodeGetFaninNames(pNode);
|
|
|
|
|
Extra_PrintKMap( stdout, pNode->pNtk->pManFunc, pNode->pData, Cudd_Not(pNode->pData),
|
|
|
|
|
Abc_ObjFaninNum(pNode), NULL, 0, (char **)vNamesIn->pArray );
|
|
|
|
|
Abc_NodeFreeNames( vNamesIn );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
Extra_PrintKMap( stdout, pNode->pNtk->pManFunc, pNode->pData, Cudd_Not(pNode->pData),
|
|
|
|
|
Abc_ObjFaninNum(pNode), NULL, 0, NULL );
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-27 17:01:00 +01:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints statistics about gates used in the network.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NtkPrintGates( Abc_Ntk_t * pNtk, int fUseLibrary )
|
|
|
|
|
{
|
|
|
|
|
Abc_Obj_t * pObj;
|
|
|
|
|
int fHasBdds, i;
|
|
|
|
|
int CountConst, CountBuf, CountInv, CountAnd, CountOr, CountOther, CounterTotal;
|
|
|
|
|
char * pSop;
|
|
|
|
|
|
|
|
|
|
if ( fUseLibrary && Abc_NtkHasMapping(pNtk) )
|
|
|
|
|
{
|
|
|
|
|
stmm_table * tTable;
|
|
|
|
|
stmm_generator * gen;
|
|
|
|
|
char * pName;
|
|
|
|
|
int * pCounter, Counter;
|
|
|
|
|
double Area, AreaTotal;
|
|
|
|
|
|
|
|
|
|
// count the gates by name
|
|
|
|
|
CounterTotal = 0;
|
|
|
|
|
tTable = stmm_init_table(strcmp, stmm_strhash);
|
|
|
|
|
Abc_NtkForEachNode( pNtk, pObj, i )
|
|
|
|
|
{
|
|
|
|
|
if ( i == 0 ) continue;
|
|
|
|
|
if ( !stmm_find_or_add( tTable, Mio_GateReadName(pObj->pData), (char ***)&pCounter ) )
|
|
|
|
|
*pCounter = 0;
|
|
|
|
|
(*pCounter)++;
|
|
|
|
|
CounterTotal++;
|
|
|
|
|
}
|
|
|
|
|
// print the gates
|
|
|
|
|
AreaTotal = Abc_NtkGetMappedArea(pNtk);
|
|
|
|
|
stmm_foreach_item( tTable, gen, (char **)&pName, (char **)&Counter )
|
|
|
|
|
{
|
|
|
|
|
Area = Counter * Mio_GateReadArea(Mio_LibraryReadGateByName(pNtk->pManFunc,pName));
|
|
|
|
|
printf( "%-12s = %8d %10.2f %6.2f %%\n", pName, Counter, Area, 100.0 * Area / AreaTotal );
|
|
|
|
|
}
|
|
|
|
|
printf( "%-12s = %8d %10.2f %6.2f %%\n", "TOTAL", CounterTotal, AreaTotal, 100.0 );
|
|
|
|
|
stmm_free_table( tTable );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-22 17:01:00 +02:00
|
|
|
if ( Abc_NtkIsAigLogic(pNtk) )
|
|
|
|
|
return;
|
|
|
|
|
|
2005-11-27 17:01:00 +01:00
|
|
|
// transform logic functions from BDD to SOP
|
|
|
|
|
if ( fHasBdds = Abc_NtkIsBddLogic(pNtk) )
|
2006-04-07 17:01:00 +02:00
|
|
|
{
|
|
|
|
|
if ( !Abc_NtkBddToSop(pNtk, 0) )
|
|
|
|
|
{
|
2006-08-22 17:01:00 +02:00
|
|
|
printf( "Abc_NtkPrintGates(): Converting to SOPs has failed.\n" );
|
2006-04-07 17:01:00 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-11-27 17:01:00 +01:00
|
|
|
|
|
|
|
|
// get hold of the SOP of the node
|
|
|
|
|
CountConst = CountBuf = CountInv = CountAnd = CountOr = CountOther = CounterTotal = 0;
|
|
|
|
|
Abc_NtkForEachNode( pNtk, pObj, i )
|
|
|
|
|
{
|
|
|
|
|
if ( i == 0 ) continue;
|
|
|
|
|
if ( Abc_NtkHasMapping(pNtk) )
|
|
|
|
|
pSop = Mio_GateReadSop(pObj->pData);
|
|
|
|
|
else
|
|
|
|
|
pSop = pObj->pData;
|
|
|
|
|
// collect the stats
|
|
|
|
|
if ( Abc_SopIsConst0(pSop) || Abc_SopIsConst1(pSop) )
|
|
|
|
|
CountConst++;
|
|
|
|
|
else if ( Abc_SopIsBuf(pSop) )
|
|
|
|
|
CountBuf++;
|
|
|
|
|
else if ( Abc_SopIsInv(pSop) )
|
|
|
|
|
CountInv++;
|
|
|
|
|
else if ( !Abc_SopIsComplement(pSop) && Abc_SopIsAndType(pSop) || Abc_SopIsComplement(pSop) && Abc_SopIsOrType(pSop) )
|
|
|
|
|
CountAnd++;
|
|
|
|
|
else if ( Abc_SopIsComplement(pSop) && Abc_SopIsAndType(pSop) || !Abc_SopIsComplement(pSop) && Abc_SopIsOrType(pSop) )
|
|
|
|
|
CountOr++;
|
|
|
|
|
else
|
|
|
|
|
CountOther++;
|
|
|
|
|
CounterTotal++;
|
|
|
|
|
}
|
|
|
|
|
printf( "Const = %8d %6.2f %%\n", CountConst , 100.0 * CountConst / CounterTotal );
|
|
|
|
|
printf( "Buffer = %8d %6.2f %%\n", CountBuf , 100.0 * CountBuf / CounterTotal );
|
|
|
|
|
printf( "Inverter = %8d %6.2f %%\n", CountInv , 100.0 * CountInv / CounterTotal );
|
|
|
|
|
printf( "And = %8d %6.2f %%\n", CountAnd , 100.0 * CountAnd / CounterTotal );
|
|
|
|
|
printf( "Or = %8d %6.2f %%\n", CountOr , 100.0 * CountOr / CounterTotal );
|
|
|
|
|
printf( "Other = %8d %6.2f %%\n", CountOther , 100.0 * CountOther / CounterTotal );
|
|
|
|
|
printf( "TOTAL = %8d %6.2f %%\n", CounterTotal, 100.0 * CounterTotal / CounterTotal );
|
|
|
|
|
|
|
|
|
|
// convert the network back into BDDs if this is how it was
|
|
|
|
|
if ( fHasBdds )
|
|
|
|
|
Abc_NtkSopToBdd(pNtk);
|
|
|
|
|
}
|
|
|
|
|
|
2005-12-05 17:01:00 +01:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints statistics about gates used in the network.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NtkPrintSharing( Abc_Ntk_t * pNtk )
|
|
|
|
|
{
|
|
|
|
|
Vec_Ptr_t * vNodes1, * vNodes2;
|
|
|
|
|
Abc_Obj_t * pObj1, * pObj2, * pNode1, * pNode2;
|
|
|
|
|
int i, k, m, n, Counter;
|
|
|
|
|
|
|
|
|
|
// print the template
|
|
|
|
|
printf( "Statistics about sharing of logic nodes among the CO pairs.\n" );
|
|
|
|
|
printf( "(CO1,CO2)=NumShared : " );
|
|
|
|
|
// go though the CO pairs
|
|
|
|
|
Abc_NtkForEachCo( pNtk, pObj1, i )
|
|
|
|
|
{
|
|
|
|
|
vNodes1 = Abc_NtkDfsNodes( pNtk, &pObj1, 1 );
|
|
|
|
|
// mark the nodes
|
|
|
|
|
Vec_PtrForEachEntry( vNodes1, pNode1, m )
|
|
|
|
|
pNode1->fMarkA = 1;
|
|
|
|
|
// go through the second COs
|
|
|
|
|
Abc_NtkForEachCo( pNtk, pObj2, k )
|
|
|
|
|
{
|
|
|
|
|
if ( i >= k )
|
|
|
|
|
continue;
|
|
|
|
|
vNodes2 = Abc_NtkDfsNodes( pNtk, &pObj2, 1 );
|
|
|
|
|
// count the number of marked
|
|
|
|
|
Counter = 0;
|
|
|
|
|
Vec_PtrForEachEntry( vNodes2, pNode2, n )
|
|
|
|
|
Counter += pNode2->fMarkA;
|
|
|
|
|
// print
|
|
|
|
|
printf( "(%d,%d)=%d ", i, k, Counter );
|
|
|
|
|
Vec_PtrFree( vNodes2 );
|
|
|
|
|
}
|
|
|
|
|
// unmark the nodes
|
|
|
|
|
Vec_PtrForEachEntry( vNodes1, pNode1, m )
|
|
|
|
|
pNode1->fMarkA = 0;
|
|
|
|
|
Vec_PtrFree( vNodes1 );
|
|
|
|
|
}
|
|
|
|
|
printf( "\n" );
|
|
|
|
|
}
|
|
|
|
|
|
2005-12-22 17:01:00 +01:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints info for each output cone.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_NtkPrintStrSupports( Abc_Ntk_t * pNtk )
|
|
|
|
|
{
|
|
|
|
|
Vec_Ptr_t * vSupp, * vNodes;
|
|
|
|
|
Abc_Obj_t * pObj;
|
|
|
|
|
int i;
|
|
|
|
|
printf( "Structural support info:\n" );
|
|
|
|
|
Abc_NtkForEachCo( pNtk, pObj, i )
|
|
|
|
|
{
|
|
|
|
|
vSupp = Abc_NtkNodeSupport( pNtk, &pObj, 1 );
|
|
|
|
|
vNodes = Abc_NtkDfsNodes( pNtk, &pObj, 1 );
|
|
|
|
|
printf( "%20s : Cone = %5d. Supp = %5d.\n",
|
|
|
|
|
Abc_ObjName(pObj), vNodes->nSize, vSupp->nSize );
|
|
|
|
|
Vec_PtrFree( vNodes );
|
|
|
|
|
Vec_PtrFree( vSupp );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-11-02 17:01:00 +01:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Prints information about the object.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Abc_ObjPrint( FILE * pFile, Abc_Obj_t * pObj )
|
|
|
|
|
{
|
|
|
|
|
Abc_Obj_t * pFanin;
|
|
|
|
|
int i;
|
|
|
|
|
fprintf( pFile, "Object %5d : ", pObj->Id );
|
|
|
|
|
switch ( pObj->Type )
|
|
|
|
|
{
|
|
|
|
|
case ABC_OBJ_NONE:
|
|
|
|
|
fprintf( pFile, "NONE " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_CONST1:
|
|
|
|
|
fprintf( pFile, "Const1 " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_PIO:
|
|
|
|
|
fprintf( pFile, "PIO " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_PI:
|
|
|
|
|
fprintf( pFile, "PI " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_PO:
|
|
|
|
|
fprintf( pFile, "PO " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_BI:
|
|
|
|
|
fprintf( pFile, "BI " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_BO:
|
|
|
|
|
fprintf( pFile, "BO " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_ASSERT:
|
|
|
|
|
fprintf( pFile, "Assert " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_NET:
|
|
|
|
|
fprintf( pFile, "Net " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_NODE:
|
|
|
|
|
fprintf( pFile, "Node " );
|
|
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_LATCH:
|
|
|
|
|
fprintf( pFile, "Latch " );
|
|
|
|
|
break;
|
2007-02-09 17:01:00 +01:00
|
|
|
case ABC_OBJ_WHITEBOX:
|
|
|
|
|
fprintf( pFile, "Whitebox" );
|
2006-11-02 17:01:00 +01:00
|
|
|
break;
|
|
|
|
|
case ABC_OBJ_BLACKBOX:
|
|
|
|
|
fprintf( pFile, "Blackbox" );
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert(0);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// print the fanins
|
|
|
|
|
fprintf( pFile, " Fanins ( " );
|
|
|
|
|
Abc_ObjForEachFanin( pObj, pFanin, i )
|
|
|
|
|
fprintf( pFile, "%d ", pFanin->Id );
|
|
|
|
|
fprintf( pFile, ") " );
|
2006-11-22 17:01:00 +01:00
|
|
|
/*
|
|
|
|
|
fprintf( pFile, " Fanouts ( " );
|
|
|
|
|
Abc_ObjForEachFanout( pObj, pFanin, i )
|
|
|
|
|
fprintf( pFile, "%d(%c) ", pFanin->Id, Abc_NodeIsTravIdCurrent(pFanin)? '+' : '-' );
|
|
|
|
|
fprintf( pFile, ") " );
|
|
|
|
|
*/
|
2006-11-02 17:01:00 +01:00
|
|
|
// print the logic function
|
|
|
|
|
if ( Abc_ObjIsNode(pObj) && Abc_NtkIsSopLogic(pObj->pNtk) )
|
|
|
|
|
fprintf( pFile, " %s", pObj->pData );
|
|
|
|
|
else
|
|
|
|
|
fprintf( pFile, "\n" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-07-29 17:01:00 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// END OF FILE ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|