mirror of https://github.com/YosysHQ/abc.git
Misc changes.
This commit is contained in:
parent
32b0762546
commit
d4399dbf92
|
|
@ -352,12 +352,14 @@ static inline int If_CutTruthWords( int nVarsMax ) { r
|
|||
static inline int If_CutPermWords( int nVarsMax ) { return nVarsMax / sizeof(int) + ((nVarsMax % sizeof(int)) > 0); }
|
||||
|
||||
static inline float If_CutLutArea( If_Man_t * p, If_Cut_t * pCut ) { return pCut->fUser? (float)pCut->Cost : (p->pPars->pLutLib? p->pPars->pLutLib->pLutAreas[pCut->nLeaves] : (float)1.0); }
|
||||
static inline float If_CutLutDelay( If_Lib_t * p, int Size, int iPin ) { return p ? (p->fVarPinDelays ? p->pLutDelays[Size][iPin] : p->pLutDelays[Size][0]) : 1.0; }
|
||||
|
||||
static inline word If_AndToWrd( If_And_t m ) { union { If_And_t x; word y; } v; v.x = m; return v.y; }
|
||||
static inline If_And_t If_WrdToAnd( word m ) { union { If_And_t x; word y; } v; v.y = m; return v.x; }
|
||||
static inline void If_AndClear( If_And_t * pNode ) { *pNode = If_WrdToAnd(0); }
|
||||
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
/// MACRO DEFINITIONS ///
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ typedef struct Tim_Man_t_ Tim_Man_t;
|
|||
/// MACRO DEFINITIONS ///
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#define TIM_ETERNITY 10000
|
||||
#define TIM_ETERNITY 1000000000
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
/// ITERATORS ///
|
||||
|
|
|
|||
|
|
@ -251,6 +251,12 @@ static inline Vec_Wrd_t * Vec_WrdDupArray( Vec_Wrd_t * pVec )
|
|||
SeeAlso []
|
||||
|
||||
***********************************************************************/
|
||||
static inline void Vec_WrdErase( Vec_Wrd_t * p )
|
||||
{
|
||||
ABC_FREE( p->pArray );
|
||||
p->nSize = 0;
|
||||
p->nCap = 0;
|
||||
}
|
||||
static inline void Vec_WrdFree( Vec_Wrd_t * p )
|
||||
{
|
||||
ABC_FREE( p->pArray );
|
||||
|
|
|
|||
Loading…
Reference in New Issue