summaryrefslogtreecommitdiffstats
path: root/src/base/wlc/wlcCom.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2016-06-04 17:31:15 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2016-06-04 17:31:15 -0700
commit00242f2fb229ac13b61e2e280d44603d5191d235 (patch)
treec6760966fc750d85d745a59112a5854280eb01a7 /src/base/wlc/wlcCom.c
parent93c785e80250f4e7f4637d3d9317a5cf2e278b69 (diff)
downloadabc-00242f2fb229ac13b61e2e280d44603d5191d235.tar.gz
abc-00242f2fb229ac13b61e2e280d44603d5191d235.tar.bz2
abc-00242f2fb229ac13b61e2e280d44603d5191d235.zip
New profiling features for word-level optimizations.
Diffstat (limited to 'src/base/wlc/wlcCom.c')
-rw-r--r--src/base/wlc/wlcCom.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/base/wlc/wlcCom.c b/src/base/wlc/wlcCom.c
index 4bdb66c2..77bf36ba 100644
--- a/src/base/wlc/wlcCom.c
+++ b/src/base/wlc/wlcCom.c
@@ -338,15 +338,18 @@ int Abc_CommandBlast( Abc_Frame_t * pAbc, int argc, char ** argv )
Wlc_Ntk_t * pNtk = Wlc_AbcGetNtk(pAbc);
Vec_Int_t * vBoxIds = NULL;
Gia_Man_t * pNew = NULL;
- int c, fGiaSimple = 0, fMulti = 0, fVerbose = 0;
+ int c, fGiaSimple = 0, fAddOutputs = 0, fMulti = 0, fVerbose = 0;
Extra_UtilGetoptReset();
- while ( ( c = Extra_UtilGetopt( argc, argv, "cmvh" ) ) != EOF )
+ while ( ( c = Extra_UtilGetopt( argc, argv, "comvh" ) ) != EOF )
{
switch ( c )
{
case 'c':
fGiaSimple ^= 1;
break;
+ case 'o':
+ fAddOutputs ^= 1;
+ break;
case 'm':
fMulti ^= 1;
break;
@@ -371,7 +374,7 @@ int Abc_CommandBlast( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( 1, "Warning: There is no multipliers in the design.\n" );
}
// transform
- pNew = Wlc_NtkBitBlast( pNtk, vBoxIds, fGiaSimple );
+ pNew = Wlc_NtkBitBlast( pNtk, vBoxIds, fGiaSimple, fAddOutputs );
Vec_IntFreeP( &vBoxIds );
if ( pNew == NULL )
{
@@ -381,9 +384,10 @@ int Abc_CommandBlast( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_FrameUpdateGia( pAbc, pNew );
return 0;
usage:
- Abc_Print( -2, "usage: %%blast [-cmvh]\n" );
+ Abc_Print( -2, "usage: %%blast [-comvh]\n" );
Abc_Print( -2, "\t performs bit-blasting of the word-level design\n" );
Abc_Print( -2, "\t-c : toggle using AIG w/o const propagation and strashing [default = %s]\n", fGiaSimple? "yes": "no" );
+ Abc_Print( -2, "\t-o : toggle using additional POs on the word-level boundaries [default = %s]\n", fAddOutputs? "yes": "no" );
Abc_Print( -2, "\t-m : toggle creating boxes for all multipliers in the design [default = %s]\n", fMulti? "yes": "no" );
Abc_Print( -2, "\t-v : toggle printing verbose information [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");