mirror of https://github.com/YosysHQ/abc.git
Synchronizing packages.
This commit is contained in:
parent
00b8cda3d3
commit
2d4342f8c4
|
|
@ -718,8 +718,8 @@ void If_DsdManPrint( If_DsdMan_t * p, char * pFileName, int Number, int Support,
|
||||||
MemSizeDecs += (int)Vec_VecMemoryInt((Vec_Vec_t *)(p->vTtDecs[v]));
|
MemSizeDecs += (int)Vec_VecMemoryInt((Vec_Vec_t *)(p->vTtDecs[v]));
|
||||||
}
|
}
|
||||||
If_DsdManPrintDistrib( p );
|
If_DsdManPrintDistrib( p );
|
||||||
printf( "Number of inputs = %d. LUT size = %d. Marks = %s. Bookmark = %d.\n",
|
printf( "Number of inputs = %d. LUT size = %d. Marks = %s. NewAsUseless = %s. Bookmark = %d.\n",
|
||||||
p->nVars, p->LutSize, If_DsdManHasMarks(p)? "yes" : "no", p->fNewAsUseless );
|
p->nVars, p->LutSize, If_DsdManHasMarks(p)? "yes" : "no", p->fNewAsUseless? "yes" : "no", p->nObjsPrev );
|
||||||
if ( p->pTtGia )
|
if ( p->pTtGia )
|
||||||
fprintf( pFile, "Non-DSD AIG nodes = %8d\n", Gia_ManAndNum(p->pTtGia) );
|
fprintf( pFile, "Non-DSD AIG nodes = %8d\n", Gia_ManAndNum(p->pTtGia) );
|
||||||
fprintf( pFile, "Unique table misses = %8d\n", p->nUniqueMisses );
|
fprintf( pFile, "Unique table misses = %8d\n", p->nUniqueMisses );
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,7 @@ void If_ObjPerformMappingAnd( If_Man_t * p, If_Obj_t * pObj, int Mode, int fPrep
|
||||||
If_Cut_t * pCut0R, * pCut1R;
|
If_Cut_t * pCut0R, * pCut1R;
|
||||||
int fFunc0R, fFunc1R;
|
int fFunc0R, fFunc1R;
|
||||||
int i, k, v, iCutDsd, fChange;
|
int i, k, v, iCutDsd, fChange;
|
||||||
int fSave0 = p->pPars->fDelayOpt || p->pPars->fDelayOptLut || p->pPars->fDsdBalance || p->pPars->fUserRecLib || p->pPars->pLutStruct != NULL;
|
int fSave0 = p->pPars->fDelayOpt || p->pPars->fDelayOptLut || p->pPars->fDsdBalance || p->pPars->fUserRecLib || p->pPars->fUseDsdTune || p->pPars->fUseCofVars || p->pPars->pLutStruct != NULL;
|
||||||
assert( !If_ObjIsAnd(pObj->pFanin0) || pObj->pFanin0->pCutSet->nCuts > 0 );
|
assert( !If_ObjIsAnd(pObj->pFanin0) || pObj->pFanin0->pCutSet->nCuts > 0 );
|
||||||
assert( !If_ObjIsAnd(pObj->pFanin1) || pObj->pFanin1->pCutSet->nCuts > 0 );
|
assert( !If_ObjIsAnd(pObj->pFanin1) || pObj->pFanin1->pCutSet->nCuts > 0 );
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue