/**CFile**************************************************************** FileName [ntlFraig.c] SystemName [ABC: Logic synthesis and verification system.] PackageName [Netlist representation.] Synopsis [Performing fraiging with white-boxes.] Author [Alan Mishchenko] Affiliation [UC Berkeley] Date [Ver. 1.0. Started - June 20, 2005.] Revision [$Id: ntlFraig.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $] ***********************************************************************/ #include "ntl.h" #include "fra.h" #include "ssw.h" //////////////////////////////////////////////////////////////////////// /// DECLARATIONS /// //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// /// FUNCTION DEFINITIONS /// //////////////////////////////////////////////////////////////////////// /**Function************************************************************* Synopsis [Remaps representatives of the equivalence classes.] Description [For each equivalence class, if the current representative of the class cannot be used because its corresponding net has no-merge attribute, find the topologically-shallowest node, which can be used as a representative.] SideEffects [] SeeAlso [] ***********************************************************************/ void Ntl_ManUpdateNoMergeReprs( Aig_Man_t * pAig, Aig_Obj_t ** pReprs ) { Aig_Obj_t ** pReprsNew = NULL; Aig_Obj_t * pObj, * pRepres, * pRepresNew; Ntl_Net_t * pNet, * pNetObj; int i; // allocate room for the new representative pReprsNew = ALLOC( Aig_Obj_t *, Aig_ManObjNumMax(pAig) ); memset( pReprsNew, 0, sizeof(Aig_Obj_t *) * Aig_ManObjNumMax(pAig) ); Aig_ManForEachObj( pAig, pObj, i ) { // get the old representative node pRepres = pReprs[pObj->Id]; if ( pRepres == NULL ) continue; // if this representative node is already remapped, skip it pRepresNew = pReprsNew[ pRepres->Id ]; if ( pRepresNew != NULL ) continue; // get the net of the representative node pNet = pRepres->pData; assert( pRepres->pData != NULL ); if ( Ntl_ObjIsBox(pNet->pDriver) && pNet->pDriver->pImplem->attrNoMerge ) { // the net belongs to the no-merge box pNetObj = pObj->pData; if ( Ntl_ObjIsBox(pNetObj->pDriver) && pNetObj->pDriver->pImplem->attrNoMerge ) continue; // the object's net does not belong to the no-merge box // pObj can be used instead of pRepres pReprsNew[ pRepres->Id ] = pObj; } else { // otherwise, it is fine to use pRepres pReprsNew[ pRepres->Id ] = pRepres; } } // update the representatives Aig_ManForEachObj( pAig, pObj, i ) { // get the representative node pRepres = pReprs[ pObj->Id ]; if ( pRepres == NULL ) continue; // if the representative has no mapping, undo the mapping of the node pRepresNew = pReprsNew[ pRepres->Id ]; if ( pRepresNew == NULL || pRepresNew == pObj ) { pReprs[ pObj->Id ] = NULL; continue; } // remap the representative // assert( pObj->Id > pRepresNew->Id ); // pReprs[ pObj->Id ] = pRepresNew; if ( pObj->Id > pRepresNew->Id ) pReprs[ pObj->Id ] = pRepresNew; else pReprs[ pObj->Id ] = NULL; } free( pReprsNew ); } /**Function************************************************************* Synopsis [Transfers equivalence class info from pAigCol to pAig.] Description [pAig points to the nodes of netlist (pNew) derived using it. pNew points to the nodes of the collapsed AIG (pAigCol) derived using it.] SideEffects [] SeeAlso [] ***********************************************************************/ Aig_Obj_t ** Ntl_ManFraigDeriveClasses( Aig_Man_t * pAig, Ntl_Man_t * pNew, Aig_Man_t * pAigCol ) { Ntl_Net_t * pNet; Aig_Obj_t ** pReprs = NULL, ** pMapBack = NULL; Aig_Obj_t * pObj, * pObjCol, * pObjColRepr, * pCorresp; int i; // remember pointers to the nets of pNew Aig_ManForEachObj( pAig, pObj, i ) pObj->pNext = pObj->pData; // map the AIG managers Aig_ManForEachObj( pAig, pObj, i ) { if ( Aig_ObjIsConst1(pObj) ) pObj->pData = Aig_ManConst1(pAigCol); else if ( !Aig_ObjIsPo(pObj) ) { pNet = pObj->pData; pObjCol = Aig_Regular(pNet->pCopy); pObj->pData = pObjCol; } } // create mapping from the collapsed manager into the original manager // (each node in the collapsed manager may have more than one equivalent node // in the original manager; this procedure finds the first node in the original // manager that is equivalent to the given node in the collapsed manager) pMapBack = ALLOC( Aig_Obj_t *, Aig_ManObjNumMax(pAigCol) ); memset( pMapBack, 0, sizeof(Aig_Obj_t *) * Aig_ManObjNumMax(pAigCol) ); Aig_ManForEachObj( pAig, pObj, i ) { if ( Aig_ObjIsPo(pObj) ) continue; pObjCol = pObj->pData; if ( pObjCol == NULL ) continue; if ( pMapBack[pObjCol->Id] == NULL ) pMapBack[pObjCol->Id] = pObj; } // create the equivalence classes for the original manager pReprs = ALLOC( Aig_Obj_t *, Aig_ManObjNumMax(pAig) ); memset( pReprs, 0, sizeof(Aig_Obj_t *) * Aig_ManObjNumMax(pAig) ); Aig_ManForEachObj( pAig, pObj, i ) { if ( Aig_ObjIsPo(pObj) ) continue; // get the collapsed node pObjCol = pObj->pData; if ( pObjCol == NULL ) continue; // get the representative of the collapsed node pObjColRepr = pAigCol->pReprs[pObjCol->Id]; if ( pObjColRepr == NULL ) pObjColRepr = pObjCol; // get the corresponding original node pCorresp = pMapBack[pObjColRepr->Id]; if ( pCorresp == NULL || pCorresp == pObj ) continue; // set the representative if ( pCorresp->Id < pObj->Id ) pReprs[pObj->Id] = pCorresp; else pReprs[pCorresp->Id] = pObj; } free( pMapBack ); // recall pointers to the nets of pNew Aig_ManForEachObj( pAig, pObj, i ) pObj->pData = pObj->pNext, pObj->pNext = NULL; // remap no-merge representatives to point to // the shallowest nodes in the class without no-merge Ntl_ManUpdateNoMergeReprs( pAig, pReprs ); return pReprs; } /**Function************************************************************* Synopsis [Uses equivalences in the AIG to reduce the design.] Description [The AIG (pAig) was extracted from the netlist and still points to it (pObj->pData is the pointer to the nets in the netlist). Equivalences have been computed for the collapsed AIG and transfered to this AIG (pAig). This procedure reduces the corresponding nets.] SideEffects [] SeeAlso [] ***********************************************************************/ void Ntl_ManReduce( Ntl_Man_t * p, Aig_Man_t * pAig ) { Aig_Obj_t * pObj, * pObjRepr; Ntl_Net_t * pNet, * pNetRepr; Ntl_Mod_t * pRoot; Ntl_Obj_t * pNode; int i, fCompl, Counter = 0; assert( pAig->pReprs ); pRoot = Ntl_ManRootModel( p ); Aig_ManForEachObj( pAig, pObj, i ) { pObjRepr = Aig_ObjRepr( pAig, pObj ); if ( pObjRepr == NULL ) continue; assert( pObj != pObjRepr ); pNet = pObj->pData; pNetRepr = pObjRepr->pData; // consider special cases, when the net should not be reduced if ( Ntl_ObjIsBox(pNet->pDriver) ) { // do not reduce the net if it is driven by a multi-output box if ( Ntl_ObjFanoutNum(pNet->pDriver) > 1 ) continue; // do not reduce the net if it has no-merge attribute if ( pNet->pDriver->pImplem->attrNoMerge ) continue; // do not reduce the net if the replacement net has no-merge attribute if ( pNetRepr != NULL && Ntl_ObjIsBox(pNetRepr->pDriver) && pNetRepr->pDriver->pImplem->attrNoMerge ) continue; } if ( pNetRepr == NULL ) { // this is the constant node assert( Aig_ObjIsConst1(pObjRepr) ); pNode = Ntl_ModelCreateNode( pRoot, 0 ); pNode->pSop = Ntl_ManStoreSop( p->pMemSops, " 1\n" ); if ( (pNetRepr = Ntl_ModelFindNet( pRoot, "Const1" )) ) { printf( "Ntl_ManReduce(): Internal error: Intermediate net name is not unique.\n" ); return; } pNetRepr = Ntl_ModelFindOrCreateNet( pRoot, "Const1" ); if ( !Ntl_ModelSetNetDriver( pNode, pNetRepr ) ) { printf( "Ntl_ManReduce(): Internal error: Net has more than one fanin.\n" ); return; } pObjRepr->pData = pNetRepr; pNetRepr->pCopy = Aig_ManConst1(pAig); } // get the complemented attributes of the nets fCompl = Aig_IsComplement(pNet->pCopy) ^ Aig_Regular(pNet->pCopy)->fPhase ^ Aig_IsComplement(pNetRepr->pCopy) ^ Aig_Regular(pNetRepr->pCopy)->fPhase; // create interter/buffer driven by the representative net pNode = Ntl_ModelCreateNode( pRoot, 1 ); pNode->pSop = fCompl? Ntl_ManStoreSop( p->pMemSops, "0 1\n" ) : Ntl_ManStoreSop( p->pMemSops, "1 1\n" ); Ntl_ObjSetFanin( pNode, pNetRepr, 0 ); // make the new node drive the equivalent net (pNet) if ( !Ntl_ModelClearNetDriver( pNet->pDriver, pNet ) ) printf( "Ntl_ManReduce(): Internal error! Net already has no driver.\n" ); if ( !Ntl_ModelSetNetDriver( pNode, pNet ) ) printf( "Ntl_ManReduce(): Internal error! Net already has a driver.\n" ); Counter++; } } /**Function************************************************************* Synopsis [Resets complemented attributes of the collapsed AIG.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ void Ntl_ManResetComplemented( Ntl_Man_t * p, Aig_Man_t * pAigCol ) { Ntl_Mod_t * pRoot; Ntl_Obj_t * pObj; Aig_Obj_t * pObjCol; int i; pRoot = Ntl_ManRootModel(p); Ntl_ModelForEachLatch( pRoot, pObj, i ) { if ( Ntl_ObjIsInit1( pObj ) ) { pObjCol = Ntl_ObjFanout0(pObj)->pCopy; assert( pObjCol->fPhase == 0 ); pObjCol->fPhase = 1; } } } /**Function************************************************************* Synopsis [Finalizes the transformation.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ Ntl_Man_t * Ntl_ManFinalize( Ntl_Man_t * pNew, Aig_Man_t * pAig, Aig_Man_t * pAigCol, int fVerbose ) { int fUseExtraSweep = 1; Ntl_Man_t * pSwept; Aig_Man_t * pTemp; assert( pAig->pReprs == NULL ); assert( pAigCol->pReprs != NULL ); // transfer equivalence classes to the original AIG pAig->pReprs = Ntl_ManFraigDeriveClasses( pAig, pNew, pAigCol ); pAig->nReprsAlloc = Aig_ManObjNumMax(pAig); if ( fVerbose ) printf( "Equivalences: Collapsed = %5d. Extracted = %5d.\n", Aig_ManCountReprs(pAigCol), Aig_ManCountReprs(pAig) ); // implement equivalence classes and remove dangling nodes Ntl_ManReduce( pNew, pAig ); Ntl_ManSweep( pNew, fVerbose ); // perform one more sweep if ( fUseExtraSweep ) { pTemp = Ntl_ManExtract( pNew ); pSwept = Ntl_ManInsertAig( pNew, pTemp ); Aig_ManStop( pTemp ); Ntl_ManSweep( pSwept, fVerbose ); return pSwept; } return Ntl_ManDup(pNew); } /**Function************************************************************* Synopsis [Returns AIG with WB after fraiging.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ Ntl_Man_t * Ntl_ManFraig( Ntl_Man_t * p, int nPartSize, int nConfLimit, int nLevelMax, int fVerbose ) { Ntl_Man_t * pNew, * pAux; Aig_Man_t * pAig, * pAigCol, * pTemp; if ( Ntl_ModelNodeNum(Ntl_ManRootModel(p)) == 0 ) return Ntl_ManDup(p); // collapse the AIG pAig = Ntl_ManExtract( p ); pNew = Ntl_ManInsertAig( p, pAig ); pAigCol = Ntl_ManCollapseComb( pNew ); // perform fraiging for the given design nPartSize = nPartSize? nPartSize : Aig_ManPoNum(pAigCol); pTemp = Aig_ManFraigPartitioned( pAigCol, nPartSize, nConfLimit, nLevelMax, fVerbose ); Aig_ManStop( pTemp ); // finalize the transformation pNew = Ntl_ManFinalize( pAux = pNew, pAig, pAigCol, fVerbose ); Ntl_ManFree( pAux ); Aig_ManStop( pAig ); Aig_ManStop( pAigCol ); return pNew; } /**Function************************************************************* Synopsis [Performs sequential cleanup.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ Ntl_Man_t * Ntl_ManScl( Ntl_Man_t * p, int fLatchConst, int fLatchEqual, int fVerbose ) { Ntl_Man_t * pNew, * pAux; Aig_Man_t * pAig, * pAigCol, * pTemp; // collapse the AIG pAig = Ntl_ManExtract( p ); pNew = Ntl_ManInsertAig( p, pAig ); pAigCol = Ntl_ManCollapseSeq( pNew, 0 ); //Saig_ManDumpBlif( pAigCol, "1s.blif" ); // perform SCL for the given design pTemp = Aig_ManScl( pAigCol, fLatchConst, fLatchEqual, fVerbose ); Aig_ManStop( pTemp ); if ( pNew->vRegClasses && Vec_IntSize(pNew->vRegClasses) && pAigCol->pReprs ) Ntl_ManFilterRegisterClasses( pAigCol, pNew->vRegClasses, fVerbose ); // finalize the transformation pNew = Ntl_ManFinalize( pAux = pNew, pAig, pAigCol, fVerbose ); Ntl_ManFree( pAux ); Aig_ManStop( pAig ); Aig_ManStop( pAigCol ); return pNew; } /**Function************************************************************* Synopsis [Returns AIG with WB after fraiging.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ Ntl_Man_t * Ntl_ManLcorr( Ntl_Man_t * p, int nConfMax, int fVerbose ) { Ssw_Pars_t Pars, * pPars = &Pars; Ntl_Man_t * pNew, * pAux; Aig_Man_t * pAig, * pAigCol, * pTemp; // collapse the AIG pAig = Ntl_ManExtract( p ); pNew = Ntl_ManInsertAig( p, pAig ); pAigCol = Ntl_ManCollapseSeq( pNew, 0 ); // perform SCL for the given design // pTemp = Fra_FraigLatchCorrespondence( pAigCol, 0, nConfMax, 0, fVerbose, NULL, 0 ); Ssw_ManSetDefaultParamsLcorr( pPars ); pPars->nBTLimit = nConfMax; pPars->fVerbose = fVerbose; pTemp = Ssw_LatchCorrespondence( pAigCol, pPars ); Aig_ManStop( pTemp ); if ( p->vRegClasses && Vec_IntSize(p->vRegClasses) && pAigCol->pReprs ) Ntl_ManFilterRegisterClasses( pAigCol, p->vRegClasses, fVerbose ); // finalize the transformation pNew = Ntl_ManFinalize( pAux = pNew, pAig, pAigCol, fVerbose ); Ntl_ManFree( pAux ); Aig_ManStop( pAig ); Aig_ManStop( pAigCol ); return pNew; } /**Function************************************************************* Synopsis [Returns AIG with WB after fraiging.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ Ntl_Man_t * Ntl_ManSsw( Ntl_Man_t * p, Fra_Ssw_t * pPars ) { Ntl_Man_t * pNew, * pAux; Aig_Man_t * pAig, * pAigCol, * pTemp; // collapse the AIG pAig = Ntl_ManExtract( p ); pNew = Ntl_ManInsertAig( p, pAig ); pAigCol = Ntl_ManCollapseSeq( pNew, pPars->nMinDomSize ); if ( pAigCol == NULL ) { Aig_ManStop( pAig ); return pNew; } // perform SCL for the given design pTemp = Fra_FraigInduction( pAigCol, pPars ); Aig_ManStop( pTemp ); // finalize the transformation pNew = Ntl_ManFinalize( pAux = pNew, pAig, pAigCol, pPars->fVerbose ); Ntl_ManFree( pAux ); Aig_ManStop( pAig ); Aig_ManStop( pAigCol ); return pNew; } /**Function************************************************************* Synopsis [Returns AIG with WB after fraiging.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ Ntl_Man_t * Ntl_ManScorr( Ntl_Man_t * p, Ssw_Pars_t * pPars ) { Ntl_Man_t * pNew, * pAux; Aig_Man_t * pAig, * pAigCol, * pTemp; // collapse the AIG pAig = Ntl_ManExtract( p ); pNew = Ntl_ManInsertAig( p, pAig ); pAigCol = Ntl_ManCollapseSeq( pNew, pPars->nMinDomSize ); if ( pAigCol == NULL ) { Aig_ManStop( pAig ); return pNew; } // perform SCL for the given design pTemp = Ssw_SignalCorrespondence( pAigCol, pPars ); Aig_ManStop( pTemp ); // finalize the transformation pNew = Ntl_ManFinalize( pAux = pNew, pAig, pAigCol, pPars->fVerbose ); Ntl_ManFree( pAux ); Aig_ManStop( pAig ); Aig_ManStop( pAigCol ); return pNew; } /**Function************************************************************* Synopsis [Transfers the copy field into the second copy field.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ void Ntl_ManTransferCopy( Ntl_Man_t * p ) { Ntl_Net_t * pNet; Ntl_Mod_t * pRoot; int i; pRoot = Ntl_ManRootModel( p ); Ntl_ModelForEachNet( pRoot, pNet, i ) { pNet->pCopy2 = pNet->pCopy; pNet->pCopy = NULL; } } /**Function************************************************************* Synopsis [Reattaches one white-box.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ void Ntl_ManAttachWhiteBox( Ntl_Man_t * p, Aig_Man_t * pAigCol, Aig_Man_t * pAigRed, Ntl_Man_t * pNew, Ntl_Obj_t * pBox ) { } /**Function************************************************************* Synopsis [Reattaches white-boxes after reducing the netlist.] Description [The following parameters are given: Original netlist (p) whose nets point to the nodes of collapsed AIG. Collapsed AIG (pAigCol) whose objects point to those of reduced AIG. Reduced AIG (pAigRed) whose objects point to the nets of the new netlist. The new netlist is changed by this procedure to have those white-boxes from the original AIG (p) those outputs are preserved after reduction. Note that if outputs are preserved, the inputs are also preserved.] SideEffects [] SeeAlso [] ***********************************************************************/ void Ntl_ManAttachWhiteBoxes( Ntl_Man_t * p, Aig_Man_t * pAigCol, Aig_Man_t * pAigRed, Ntl_Man_t * pNew, int fVerbose ) { Ntl_Mod_t * pRoot; Ntl_Obj_t * pBox; Ntl_Net_t * pNet; int i, k, Counter = 0; // go through the white-boxes and check if they are preserved pRoot = Ntl_ManRootModel( p ); Ntl_ModelForEachBox( pRoot, pBox, i ) { Ntl_ObjForEachFanout( pBox, pNet, k ) { // skip dangling outputs of the box if ( pNet->pCopy == NULL ) continue; // skip the outputs that are not preserved after merging equivalence if ( Aig_Regular(pNet->pCopy2)->pData == NULL ) continue; break; } if ( k == Ntl_ObjFanoutNum(pBox) ) continue; // the box is preserved Ntl_ManAttachWhiteBox( p, pAigCol, pAigRed, pNew, pBox ); Counter++; } if ( fVerbose ) printf( "Attached %d boxed (out of %d).\n", Counter, Ntl_ModelBoxNum(pRoot) ); } /**Function************************************************************* Synopsis [Flip complemented edges.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ void Ntl_ManFlipEdges( Ntl_Man_t * p, Aig_Man_t * pAigCol ) { Ntl_Mod_t * pRoot; Ntl_Obj_t * pObj; Aig_Obj_t * pObjCol, * pFanin; int i, iLatch; pRoot = Ntl_ManRootModel(p); iLatch = 0; Ntl_ModelForEachLatch( pRoot, pObj, i ) { if ( Ntl_ObjIsInit1( pObj ) ) { pObjCol = Aig_ManPi( pAigCol, Ntl_ModelPiNum(pRoot) + iLatch ); assert( pObjCol->fMarkA == 0 ); pObjCol->fMarkA = 1; } iLatch++; } // flip pointers to the complemented edges Aig_ManForEachObj( pAigCol, pObjCol, i ) { pFanin = Aig_ObjFanin0(pObjCol); if ( pFanin && pFanin->fMarkA ) pObjCol->pFanin0 = Aig_Not(pObjCol->pFanin0); pFanin = Aig_ObjFanin1(pObjCol); if ( pFanin && pFanin->fMarkA ) pObjCol->pFanin1 = Aig_Not(pObjCol->pFanin1); } // flip complemented latch derivers and undo the marks iLatch = 0; Ntl_ModelForEachLatch( pRoot, pObj, i ) { if ( Ntl_ObjIsInit1( pObj ) ) { // flip the latch input pObjCol = Aig_ManPo( pAigCol, Ntl_ModelPoNum(pRoot) + iLatch ); pObjCol->pFanin0 = Aig_Not(pObjCol->pFanin0); // unmark the latch output pObjCol = Aig_ManPi( pAigCol, Ntl_ModelPiNum(pRoot) + iLatch ); assert( pObjCol->fMarkA == 1 ); pObjCol->fMarkA = 0; } iLatch++; } } /**Function************************************************************* Synopsis [Returns AIG with WB after sequential SAT sweeping.] Description [] SideEffects [] SeeAlso [] ***********************************************************************/ Ntl_Man_t * Ntl_ManSsw2( Ntl_Man_t * p, Fra_Ssw_t * pPars ) { Ntl_Man_t * pNew; Aig_Man_t * pAigRed, * pAigCol; // collapse the AIG pAigCol = Ntl_ManCollapseSeq( p, pPars->nMinDomSize ); // transform the collapsed AIG pAigRed = Fra_FraigInduction( pAigCol, pPars ); Aig_ManStop( pAigRed ); pAigRed = Aig_ManDupReprBasic( pAigCol ); // insert the result back Ntl_ManFlipEdges( p, pAigRed ); Ntl_ManTransferCopy( p ); pNew = Ntl_ManInsertAig( p, pAigRed ); // attach the white-boxes Ntl_ManAttachWhiteBoxes( p, pAigCol, pAigRed, pNew, pPars->fVerbose ); Ntl_ManSweep( pNew, pPars->fVerbose ); // cleanup Aig_ManStop( pAigRed ); Aig_ManStop( pAigCol ); return pNew; } //////////////////////////////////////////////////////////////////////// /// END OF FILE /// ////////////////////////////////////////////////////////////////////////