Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
661abab0
Commit
661abab0
authored
Apr 06, 2008
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version abc80406
parent
0c4d314e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
33 changed files
with
1045 additions
and
53 deletions
+1045
-53
abc.dsp
+8
-0
src/aig/aig/aig.h
+4
-1
src/aig/aig/aigDfs.c
+4
-4
src/aig/aig/aigDup.c
+140
-2
src/aig/aig/aigHaig.c
+1
-1
src/aig/aig/aigPart.c
+4
-6
src/aig/aig/aigRepr.c
+4
-4
src/aig/aig/aigUtil.c
+42
-11
src/aig/fra/fraCore.c
+1
-1
src/aig/fra/fraInd.c
+4
-4
src/aig/fra/fraSec.c
+1
-1
src/aig/hop/cudd2.c
+1
-1
src/aig/ntl/module.make
+2
-0
src/aig/ntl/ntl.h
+9
-3
src/aig/ntl/ntlExtract.c
+207
-2
src/aig/ntl/ntlFraig.c
+156
-0
src/aig/ntl/ntlInsert.c
+118
-0
src/aig/ntl/ntlMan.c
+3
-0
src/aig/ntl/ntlReadBlif.c
+9
-0
src/aig/ntl/ntlTable.c
+29
-0
src/aig/ntl/ntlUtil.c
+165
-0
src/aig/ntl/ntlWriteBlif.c
+46
-0
src/aig/nwk/nwk.h
+1
-0
src/aig/nwk/nwkMan.c
+25
-1
src/aig/nwk/nwkMap.c
+1
-1
src/aig/nwk/nwkSpeedup.c
+3
-3
src/aig/nwk/nwkUtil.c
+15
-0
src/base/abc/abcObj.c
+2
-2
src/base/abc/abcSop.c
+35
-0
src/base/abci/abc.c
+0
-0
src/base/abci/abcDar.c
+1
-1
src/base/abci/abcFpga.c
+2
-2
src/base/abci/abcIf.c
+2
-2
No files found.
abc.dsp
View file @
661abab0
...
@@ -3070,6 +3070,10 @@ SOURCE=.\src\aig\ntl\ntlExtract.c
...
@@ -3070,6 +3070,10 @@ SOURCE=.\src\aig\ntl\ntlExtract.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=.\src\aig\ntl\ntlFraig.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\ntl\ntlInsert.c
SOURCE=.\src\aig\ntl\ntlInsert.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
...
@@ -3098,6 +3102,10 @@ SOURCE=.\src\aig\ntl\ntlTime.c
...
@@ -3098,6 +3102,10 @@ SOURCE=.\src\aig\ntl\ntlTime.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=.\src\aig\ntl\ntlUtil.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\ntl\ntlWriteBlif.c
SOURCE=.\src\aig\ntl\ntlWriteBlif.c
# End Source File
# End Source File
# End Group
# End Group
...
...
src/aig/aig/aig.h
View file @
661abab0
...
@@ -313,6 +313,7 @@ static inline int Aig_ObjSetLevel( Aig_Obj_t * pObj, int i ) { assert(
...
@@ -313,6 +313,7 @@ static inline int Aig_ObjSetLevel( Aig_Obj_t * pObj, int i ) { assert(
static
inline
void
Aig_ObjClean
(
Aig_Obj_t
*
pObj
)
{
memset
(
pObj
,
0
,
sizeof
(
Aig_Obj_t
)
);
}
static
inline
void
Aig_ObjClean
(
Aig_Obj_t
*
pObj
)
{
memset
(
pObj
,
0
,
sizeof
(
Aig_Obj_t
)
);
}
static
inline
Aig_Obj_t
*
Aig_ObjFanout0
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
assert
(
p
->
pFanData
&&
pObj
->
Id
<
p
->
nFansAlloc
);
return
Aig_ManObj
(
p
,
p
->
pFanData
[
5
*
pObj
->
Id
]
>>
1
);
}
static
inline
Aig_Obj_t
*
Aig_ObjFanout0
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
assert
(
p
->
pFanData
&&
pObj
->
Id
<
p
->
nFansAlloc
);
return
Aig_ManObj
(
p
,
p
->
pFanData
[
5
*
pObj
->
Id
]
>>
1
);
}
static
inline
Aig_Obj_t
*
Aig_ObjEquiv
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
p
->
pEquivs
?
p
->
pEquivs
[
pObj
->
Id
]
:
NULL
;
}
static
inline
Aig_Obj_t
*
Aig_ObjEquiv
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
p
->
pEquivs
?
p
->
pEquivs
[
pObj
->
Id
]
:
NULL
;
}
static
inline
Aig_Obj_t
*
Aig_ObjRepr
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
p
->
pReprs
?
p
->
pReprs
[
pObj
->
Id
]
:
NULL
;
}
static
inline
int
Aig_ObjPioNum
(
Aig_Obj_t
*
pObj
)
{
assert
(
!
Aig_ObjIsNode
(
pObj
)
);
return
(
int
)
pObj
->
pNext
;
}
static
inline
int
Aig_ObjPioNum
(
Aig_Obj_t
*
pObj
)
{
assert
(
!
Aig_ObjIsNode
(
pObj
)
);
return
(
int
)
pObj
->
pNext
;
}
static
inline
int
Aig_ObjWhatFanin
(
Aig_Obj_t
*
pObj
,
Aig_Obj_t
*
pFanin
)
static
inline
int
Aig_ObjWhatFanin
(
Aig_Obj_t
*
pObj
,
Aig_Obj_t
*
pFanin
)
{
{
...
@@ -466,6 +467,8 @@ extern Aig_Man_t * Aig_ManDupDfs( Aig_Man_t * p );
...
@@ -466,6 +467,8 @@ extern Aig_Man_t * Aig_ManDupDfs( Aig_Man_t * p );
extern
Aig_Man_t
*
Aig_ManDupDfsOrder
(
Aig_Man_t
*
p
,
Aig_Man_t
*
pOrder
);
extern
Aig_Man_t
*
Aig_ManDupDfsOrder
(
Aig_Man_t
*
p
,
Aig_Man_t
*
pOrder
);
extern
Aig_Man_t
*
Aig_ManDupLevelized
(
Aig_Man_t
*
p
);
extern
Aig_Man_t
*
Aig_ManDupLevelized
(
Aig_Man_t
*
p
);
extern
Aig_Man_t
*
Aig_ManDupWithoutPos
(
Aig_Man_t
*
p
);
extern
Aig_Man_t
*
Aig_ManDupWithoutPos
(
Aig_Man_t
*
p
);
extern
Aig_Man_t
*
Aig_ManDupRepres
(
Aig_Man_t
*
p
);
extern
Aig_Man_t
*
Aig_ManDupRepresDfs
(
Aig_Man_t
*
p
);
/*=== aigFanout.c ==========================================================*/
/*=== aigFanout.c ==========================================================*/
extern
void
Aig_ObjAddFanout
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
,
Aig_Obj_t
*
pFanout
);
extern
void
Aig_ObjAddFanout
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
,
Aig_Obj_t
*
pFanout
);
extern
void
Aig_ObjRemoveFanout
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
,
Aig_Obj_t
*
pFanout
);
extern
void
Aig_ObjRemoveFanout
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
,
Aig_Obj_t
*
pFanout
);
...
@@ -599,7 +602,7 @@ extern void Aig_ObjPrintVerilog( FILE * pFile, Aig_Obj_t * pObj, Vec_
...
@@ -599,7 +602,7 @@ extern void Aig_ObjPrintVerilog( FILE * pFile, Aig_Obj_t * pObj, Vec_
extern
void
Aig_ObjPrintVerbose
(
Aig_Obj_t
*
pObj
,
int
fHaig
);
extern
void
Aig_ObjPrintVerbose
(
Aig_Obj_t
*
pObj
,
int
fHaig
);
extern
void
Aig_ManPrintVerbose
(
Aig_Man_t
*
p
,
int
fHaig
);
extern
void
Aig_ManPrintVerbose
(
Aig_Man_t
*
p
,
int
fHaig
);
extern
void
Aig_ManDump
(
Aig_Man_t
*
p
);
extern
void
Aig_ManDump
(
Aig_Man_t
*
p
);
extern
void
Aig_ManDumpBlif
(
Aig_Man_t
*
p
,
char
*
pFileName
);
extern
void
Aig_ManDumpBlif
(
Aig_Man_t
*
p
,
char
*
pFileName
,
Vec_Ptr_t
*
vPiNames
,
Vec_Ptr_t
*
vPoNames
);
extern
void
Aig_ManDumpVerilog
(
Aig_Man_t
*
p
,
char
*
pFileName
);
extern
void
Aig_ManDumpVerilog
(
Aig_Man_t
*
p
,
char
*
pFileName
);
extern
void
Aig_ManSetPioNumbers
(
Aig_Man_t
*
p
);
extern
void
Aig_ManSetPioNumbers
(
Aig_Man_t
*
p
);
extern
void
Aig_ManCleanPioNumbers
(
Aig_Man_t
*
p
);
extern
void
Aig_ManCleanPioNumbers
(
Aig_Man_t
*
p
);
...
...
src/aig/aig/aigDfs.c
View file @
661abab0
...
@@ -121,8 +121,8 @@ void Aig_ManDfs_rec( Aig_Man_t * p, Aig_Obj_t * pObj, Vec_Ptr_t * vNodes )
...
@@ -121,8 +121,8 @@ void Aig_ManDfs_rec( Aig_Man_t * p, Aig_Obj_t * pObj, Vec_Ptr_t * vNodes )
if
(
Aig_ObjIsTravIdCurrent
(
p
,
pObj
)
)
if
(
Aig_ObjIsTravIdCurrent
(
p
,
pObj
)
)
return
;
return
;
Aig_ObjSetTravIdCurrent
(
p
,
pObj
);
Aig_ObjSetTravIdCurrent
(
p
,
pObj
);
if
(
p
->
pEquivs
&&
p
->
pEquivs
[
pObj
->
Id
]
)
if
(
p
->
pEquivs
&&
Aig_ObjEquiv
(
p
,
pObj
)
)
Aig_ManDfs_rec
(
p
,
p
->
pEquivs
[
pObj
->
Id
]
,
vNodes
);
Aig_ManDfs_rec
(
p
,
Aig_ObjEquiv
(
p
,
pObj
)
,
vNodes
);
Aig_ManDfs_rec
(
p
,
Aig_ObjFanin0
(
pObj
),
vNodes
);
Aig_ManDfs_rec
(
p
,
Aig_ObjFanin0
(
pObj
),
vNodes
);
Aig_ManDfs_rec
(
p
,
Aig_ObjFanin1
(
pObj
),
vNodes
);
Aig_ManDfs_rec
(
p
,
Aig_ObjFanin1
(
pObj
),
vNodes
);
Vec_PtrPush
(
vNodes
,
pObj
);
Vec_PtrPush
(
vNodes
,
pObj
);
...
@@ -239,7 +239,7 @@ void Aig_ManDfsChoices_rec( Aig_Man_t * p, Aig_Obj_t * pObj, Vec_Ptr_t * vNodes
...
@@ -239,7 +239,7 @@ void Aig_ManDfsChoices_rec( Aig_Man_t * p, Aig_Obj_t * pObj, Vec_Ptr_t * vNodes
assert
(
Aig_ObjIsNode
(
pObj
)
);
assert
(
Aig_ObjIsNode
(
pObj
)
);
Aig_ManDfsChoices_rec
(
p
,
Aig_ObjFanin0
(
pObj
),
vNodes
);
Aig_ManDfsChoices_rec
(
p
,
Aig_ObjFanin0
(
pObj
),
vNodes
);
Aig_ManDfsChoices_rec
(
p
,
Aig_ObjFanin1
(
pObj
),
vNodes
);
Aig_ManDfsChoices_rec
(
p
,
Aig_ObjFanin1
(
pObj
),
vNodes
);
Aig_ManDfsChoices_rec
(
p
,
p
->
pEquivs
[
pObj
->
Id
]
,
vNodes
);
Aig_ManDfsChoices_rec
(
p
,
Aig_ObjEquiv
(
p
,
pObj
)
,
vNodes
);
assert
(
!
Aig_ObjIsTravIdCurrent
(
p
,
pObj
)
);
// loop detection
assert
(
!
Aig_ObjIsTravIdCurrent
(
p
,
pObj
)
);
// loop detection
Aig_ObjSetTravIdCurrent
(
p
,
pObj
);
Aig_ObjSetTravIdCurrent
(
p
,
pObj
);
Vec_PtrPush
(
vNodes
,
pObj
);
Vec_PtrPush
(
vNodes
,
pObj
);
...
@@ -411,7 +411,7 @@ void Aig_ManChoiceLevel_rec( Aig_Man_t * p, Aig_Obj_t * pObj )
...
@@ -411,7 +411,7 @@ void Aig_ManChoiceLevel_rec( Aig_Man_t * p, Aig_Obj_t * pObj )
LevelMax
++
;
LevelMax
++
;
// get the level of the nodes in the choice node
// get the level of the nodes in the choice node
if
(
p
->
pEquivs
&&
(
pNext
=
p
->
pEquivs
[
pObj
->
Id
]
)
)
if
(
p
->
pEquivs
&&
(
pNext
=
Aig_ObjEquiv
(
p
,
pObj
)
)
)
{
{
Aig_ManChoiceLevel_rec
(
p
,
pNext
);
Aig_ManChoiceLevel_rec
(
p
,
pNext
);
if
(
LevelMax
<
Aig_ObjLevel
(
pNext
)
)
if
(
LevelMax
<
Aig_ObjLevel
(
pNext
)
)
...
...
src/aig/aig/aigDup.c
View file @
661abab0
...
@@ -178,8 +178,8 @@ Aig_Obj_t * Aig_ManDupDfs_rec( Aig_Man_t * pNew, Aig_Man_t * p, Aig_Obj_t * pObj
...
@@ -178,8 +178,8 @@ Aig_Obj_t * Aig_ManDupDfs_rec( Aig_Man_t * pNew, Aig_Man_t * p, Aig_Obj_t * pObj
Aig_Obj_t
*
pObjNew
,
*
pEquivNew
=
NULL
;
Aig_Obj_t
*
pObjNew
,
*
pEquivNew
=
NULL
;
if
(
pObj
->
pData
)
if
(
pObj
->
pData
)
return
pObj
->
pData
;
return
pObj
->
pData
;
if
(
p
->
pEquivs
&&
p
->
pEquivs
[
pObj
->
Id
]
)
if
(
p
->
pEquivs
&&
Aig_ObjEquiv
(
p
,
pObj
)
)
pEquivNew
=
Aig_ManDupDfs_rec
(
pNew
,
p
,
p
->
pEquivs
[
pObj
->
Id
]
);
pEquivNew
=
Aig_ManDupDfs_rec
(
pNew
,
p
,
Aig_ObjEquiv
(
p
,
pObj
)
);
Aig_ManDupDfs_rec
(
pNew
,
p
,
Aig_ObjFanin0
(
pObj
)
);
Aig_ManDupDfs_rec
(
pNew
,
p
,
Aig_ObjFanin0
(
pObj
)
);
if
(
Aig_ObjIsBuf
(
pObj
)
)
if
(
Aig_ObjIsBuf
(
pObj
)
)
return
pObj
->
pData
=
Aig_ObjChild0Copy
(
pObj
);
return
pObj
->
pData
=
Aig_ObjChild0Copy
(
pObj
);
...
@@ -482,6 +482,144 @@ Aig_Man_t * Aig_ManDupWithoutPos( Aig_Man_t * p )
...
@@ -482,6 +482,144 @@ Aig_Man_t * Aig_ManDupWithoutPos( Aig_Man_t * p )
}
}
/**Function*************************************************************
Synopsis [Returns representatives of fanin in approapriate polarity.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
static
inline
Aig_Obj_t
*
Aig_ObjGetRepres
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
Aig_Obj_t
*
pRepr
;
if
(
(
pRepr
=
Aig_ObjRepr
(
p
,
pObj
))
)
return
Aig_NotCond
(
pRepr
->
pData
,
pObj
->
fPhase
^
pRepr
->
fPhase
);
return
pObj
->
pData
;
}
static
inline
Aig_Obj_t
*
Aig_ObjChild0Repres
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
Aig_NotCond
(
Aig_ObjGetRepres
(
p
,
Aig_ObjFanin0
(
pObj
)),
Aig_ObjFaninC0
(
pObj
)
);
}
static
inline
Aig_Obj_t
*
Aig_ObjChild1Repres
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
Aig_NotCond
(
Aig_ObjGetRepres
(
p
,
Aig_ObjFanin1
(
pObj
)),
Aig_ObjFaninC1
(
pObj
)
);
}
/**Function*************************************************************
Synopsis [Duplicates AIG while substituting representatives.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Aig_Man_t
*
Aig_ManDupRepres
(
Aig_Man_t
*
p
)
{
Aig_Man_t
*
pNew
;
Aig_Obj_t
*
pObj
;
int
i
;
// start the HOP package
pNew
=
Aig_ManStart
(
Aig_ManObjNumMax
(
p
)
);
pNew
->
pName
=
Aig_UtilStrsav
(
p
->
pName
);
pNew
->
pSpec
=
Aig_UtilStrsav
(
p
->
pSpec
);
pNew
->
nRegs
=
p
->
nRegs
;
if
(
p
->
vFlopNums
)
pNew
->
vFlopNums
=
Vec_IntDup
(
p
->
vFlopNums
);
// map the const and primary inputs
Aig_ManCleanData
(
p
);
Aig_ManForEachObj
(
p
,
pObj
,
i
)
{
if
(
Aig_ObjIsNode
(
pObj
)
)
pObj
->
pData
=
Aig_And
(
pNew
,
Aig_ObjChild0Repres
(
p
,
pObj
),
Aig_ObjChild1Repres
(
p
,
pObj
)
);
else
if
(
Aig_ObjIsPi
(
pObj
)
)
pObj
->
pData
=
Aig_ObjCreatePi
(
pNew
);
else
if
(
Aig_ObjIsPo
(
pObj
)
)
pObj
->
pData
=
Aig_ObjCreatePo
(
pNew
,
Aig_ObjChild0Repres
(
p
,
pObj
)
);
else
if
(
Aig_ObjIsConst1
(
pObj
)
)
pObj
->
pData
=
Aig_ManConst1
(
pNew
);
else
assert
(
0
);
}
// check the new manager
if
(
!
Aig_ManCheck
(
pNew
)
)
printf
(
"Aig_ManDupReprentative: Check has failed.
\n
"
);
return
pNew
;
}
/**Function*************************************************************
Synopsis [Duplicates the AIG manager recursively.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Aig_Obj_t
*
Aig_ManDupRepres_rec
(
Aig_Man_t
*
pNew
,
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
Aig_Obj_t
*
pRepr
;
if
(
pObj
->
pData
)
return
pObj
->
pData
;
if
(
(
pRepr
=
Aig_ObjRepr
(
p
,
pObj
))
)
{
Aig_ManDupRepres_rec
(
pNew
,
p
,
pRepr
);
return
pObj
->
pData
=
Aig_NotCond
(
pRepr
->
pData
,
pRepr
->
fPhase
^
pObj
->
fPhase
);
}
Aig_ManDupRepres_rec
(
pNew
,
p
,
Aig_ObjFanin0
(
pObj
)
);
Aig_ManDupRepres_rec
(
pNew
,
p
,
Aig_ObjFanin1
(
pObj
)
);
return
pObj
->
pData
=
Aig_And
(
pNew
,
Aig_ObjChild0Repres
(
p
,
pObj
),
Aig_ObjChild1Repres
(
p
,
pObj
)
);
}
/**Function*************************************************************
Synopsis [Duplicates AIG while substituting representatives.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Aig_Man_t
*
Aig_ManDupRepresDfs
(
Aig_Man_t
*
p
)
{
Aig_Man_t
*
pNew
;
Aig_Obj_t
*
pObj
;
int
i
;
// start the HOP package
pNew
=
Aig_ManStart
(
Aig_ManObjNumMax
(
p
)
);
pNew
->
pName
=
Aig_UtilStrsav
(
p
->
pName
);
pNew
->
pSpec
=
Aig_UtilStrsav
(
p
->
pSpec
);
pNew
->
nRegs
=
p
->
nRegs
;
if
(
p
->
vFlopNums
)
pNew
->
vFlopNums
=
Vec_IntDup
(
p
->
vFlopNums
);
// map the const and primary inputs
Aig_ManCleanData
(
p
);
Aig_ManForEachObj
(
p
,
pObj
,
i
)
{
if
(
Aig_ObjIsNode
(
pObj
)
)
continue
;
if
(
Aig_ObjIsPi
(
pObj
)
)
pObj
->
pData
=
Aig_ObjCreatePi
(
pNew
);
else
if
(
Aig_ObjIsPo
(
pObj
)
)
{
Aig_ManDupRepres_rec
(
pNew
,
p
,
Aig_ObjFanin0
(
pObj
)
);
pObj
->
pData
=
Aig_ObjCreatePo
(
pNew
,
Aig_ObjChild0Repres
(
p
,
pObj
)
);
}
else
if
(
Aig_ObjIsConst1
(
pObj
)
)
pObj
->
pData
=
Aig_ManConst1
(
pNew
);
else
assert
(
0
);
}
// check the new manager
if
(
!
Aig_ManCheck
(
pNew
)
)
printf
(
"Aig_ManDupReprentative: Check has failed.
\n
"
);
return
pNew
;
}
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
...
...
src/aig/aig/aigHaig.c
View file @
661abab0
...
@@ -259,7 +259,7 @@ void Aig_ManHaigRecord( Aig_Man_t * p )
...
@@ -259,7 +259,7 @@ void Aig_ManHaigRecord( Aig_Man_t * p )
// perform a sequence of synthesis steps
// perform a sequence of synthesis steps
pNew
=
Aig_ManRetimeFrontier
(
p
,
10000
);
pNew
=
Aig_ManRetimeFrontier
(
p
,
10000
);
// use the haig for verification
// use the haig for verification
Aig_ManDumpBlif
(
pNew
->
pManHaig
,
"haig_temp.blif"
);
Aig_ManDumpBlif
(
pNew
->
pManHaig
,
"haig_temp.blif"
,
NULL
,
NULL
);
Aig_ManHaigVerify
(
pNew
->
pManHaig
);
Aig_ManHaigVerify
(
pNew
->
pManHaig
);
Aig_ManStop
(
pNew
);
Aig_ManStop
(
pNew
);
}
}
...
...
src/aig/aig/aigPart.c
View file @
661abab0
...
@@ -1376,8 +1376,7 @@ Aig_Man_t * Aig_ManFraigPartitioned( Aig_Man_t * pAig, int nPartSize, int nConfM
...
@@ -1376,8 +1376,7 @@ Aig_Man_t * Aig_ManFraigPartitioned( Aig_Man_t * pAig, int nPartSize, int nConfM
Aig_ManReprStart
(
pAig
,
Aig_ManObjNumMax
(
pAig
)
);
Aig_ManReprStart
(
pAig
,
Aig_ManObjNumMax
(
pAig
)
);
// set the PI numbers
// set the PI numbers
Aig_ManForEachPi
(
pAig
,
pObj
,
k
)
Aig_ManSetPioNumbers
(
pAig
);
pObj
->
pNext
=
(
Aig_Obj_t
*
)(
long
)
k
;
// create the total fraiged AIG
// create the total fraiged AIG
Vec_PtrForEachEntry
(
vParts
,
vPart
,
i
)
Vec_PtrForEachEntry
(
vParts
,
vPart
,
i
)
...
@@ -1410,8 +1409,7 @@ Aig_Man_t * Aig_ManFraigPartitioned( Aig_Man_t * pAig, int nPartSize, int nConfM
...
@@ -1410,8 +1409,7 @@ Aig_Man_t * Aig_ManFraigPartitioned( Aig_Man_t * pAig, int nPartSize, int nConfM
Vec_VecFree
(
(
Vec_Vec_t
*
)
vParts
);
Vec_VecFree
(
(
Vec_Vec_t
*
)
vParts
);
// clear the PI numbers
// clear the PI numbers
Aig_ManForEachPi
(
pAig
,
pObj
,
k
)
Aig_ManCleanPioNumbers
(
pAig
);
pObj
->
pNext
=
NULL
;
// derive the result of choicing
// derive the result of choicing
return
Aig_ManDupRepr
(
pAig
,
0
);
return
Aig_ManDupRepr
(
pAig
,
0
);
...
@@ -1533,10 +1531,10 @@ void Aig_ManChoiceEval( Aig_Man_t * p )
...
@@ -1533,10 +1531,10 @@ void Aig_ManChoiceEval( Aig_Man_t * p )
int
x
=
0
;
int
x
=
0
;
}
}
Counter
=
0
;
Counter
=
0
;
for
(
pTemp
=
pNode
;
pTemp
;
pTemp
=
p
->
pEquivs
[
pTemp
->
Id
]
)
for
(
pTemp
=
pNode
;
pTemp
;
pTemp
=
Aig_ObjEquiv
(
p
,
pTemp
)
)
Counter
++
;
Counter
++
;
printf
(
"Choice node = %5d. Level = %2d. Choices = %d. { "
,
pNode
->
Id
,
pNode
->
Level
,
Counter
);
printf
(
"Choice node = %5d. Level = %2d. Choices = %d. { "
,
pNode
->
Id
,
pNode
->
Level
,
Counter
);
for
(
pTemp
=
pNode
;
pTemp
;
pTemp
=
p
->
pEquivs
[
pTemp
->
Id
]
)
for
(
pTemp
=
pNode
;
pTemp
;
pTemp
=
Aig_ObjEquiv
(
p
,
pTemp
)
)
{
{
Counter
=
Aig_NodeMffsSupp
(
p
,
pTemp
,
0
,
vSupp
);
Counter
=
Aig_NodeMffsSupp
(
p
,
pTemp
,
0
,
vSupp
);
printf
(
"S=%d N=%d L=%d "
,
Vec_PtrSize
(
vSupp
),
Counter
,
pTemp
->
Level
);
printf
(
"S=%d N=%d L=%d "
,
Vec_PtrSize
(
vSupp
),
Counter
,
pTemp
->
Level
);
...
...
src/aig/aig/aigRepr.c
View file @
661abab0
...
@@ -184,15 +184,15 @@ static inline Aig_Obj_t * Aig_ObjFindReprTransitive( Aig_Man_t * p, Aig_Obj_t *
...
@@ -184,15 +184,15 @@ static inline Aig_Obj_t * Aig_ObjFindReprTransitive( Aig_Man_t * p, Aig_Obj_t *
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
static
inline
Aig_Obj_t
*
Aig_ObjRepr
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
static
inline
Aig_Obj_t
*
Aig_Obj
Get
Repr
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
{
Aig_Obj_t
*
pRepr
;
Aig_Obj_t
*
pRepr
;
if
(
(
pRepr
=
Aig_ObjFindRepr
(
p
,
pObj
))
)
if
(
(
pRepr
=
Aig_ObjFindRepr
(
p
,
pObj
))
)
return
Aig_NotCond
(
pRepr
->
pData
,
pObj
->
fPhase
^
pRepr
->
fPhase
);
return
Aig_NotCond
(
pRepr
->
pData
,
pObj
->
fPhase
^
pRepr
->
fPhase
);
return
pObj
->
pData
;
return
pObj
->
pData
;
}
}
static
inline
Aig_Obj_t
*
Aig_ObjChild0Repr
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
Aig_NotCond
(
Aig_ObjRepr
(
p
,
Aig_ObjFanin0
(
pObj
)),
Aig_ObjFaninC0
(
pObj
)
);
}
static
inline
Aig_Obj_t
*
Aig_ObjChild0Repr
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
Aig_NotCond
(
Aig_Obj
Get
Repr
(
p
,
Aig_ObjFanin0
(
pObj
)),
Aig_ObjFaninC0
(
pObj
)
);
}
static
inline
Aig_Obj_t
*
Aig_ObjChild1Repr
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
Aig_NotCond
(
Aig_ObjRepr
(
p
,
Aig_ObjFanin1
(
pObj
)),
Aig_ObjFaninC1
(
pObj
)
);
}
static
inline
Aig_Obj_t
*
Aig_ObjChild1Repr
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
return
Aig_NotCond
(
Aig_Obj
Get
Repr
(
p
,
Aig_ObjFanin1
(
pObj
)),
Aig_ObjFaninC1
(
pObj
)
);
}
/**Function*************************************************************
/**Function*************************************************************
...
@@ -357,7 +357,7 @@ int Aig_ObjCheckTfi_rec( Aig_Man_t * p, Aig_Obj_t * pNode, Aig_Obj_t * pOld )
...
@@ -357,7 +357,7 @@ int Aig_ObjCheckTfi_rec( Aig_Man_t * p, Aig_Obj_t * pNode, Aig_Obj_t * pOld )
if
(
Aig_ObjCheckTfi_rec
(
p
,
Aig_ObjFanin1
(
pNode
),
pOld
)
)
if
(
Aig_ObjCheckTfi_rec
(
p
,
Aig_ObjFanin1
(
pNode
),
pOld
)
)
return
1
;
return
1
;
// check equivalent nodes
// check equivalent nodes
return
Aig_ObjCheckTfi_rec
(
p
,
p
->
pEquivs
[
pNode
->
Id
]
,
pOld
);
return
Aig_ObjCheckTfi_rec
(
p
,
Aig_ObjEquiv
(
p
,
pNode
)
,
pOld
);
}
}
/**Function*************************************************************
/**Function*************************************************************
...
...
src/aig/aig/aigUtil.c
View file @
661abab0
...
@@ -649,7 +649,7 @@ void Aig_ManDump( Aig_Man_t * p )
...
@@ -649,7 +649,7 @@ void Aig_ManDump( Aig_Man_t * p )
char
FileName
[
20
];
char
FileName
[
20
];
// dump the logic into a file
// dump the logic into a file
sprintf
(
FileName
,
"aigbug
\\
%03d.blif"
,
++
Counter
);
sprintf
(
FileName
,
"aigbug
\\
%03d.blif"
,
++
Counter
);
Aig_ManDumpBlif
(
p
,
FileName
);
Aig_ManDumpBlif
(
p
,
FileName
,
NULL
,
NULL
);
printf
(
"Intermediate AIG with %d nodes was written into file
\"
%s
\"
.
\n
"
,
Aig_ManNodeNum
(
p
),
FileName
);
printf
(
"Intermediate AIG with %d nodes was written into file
\"
%s
\"
.
\n
"
,
Aig_ManNodeNum
(
p
),
FileName
);
}
}
...
@@ -664,7 +664,7 @@ void Aig_ManDump( Aig_Man_t * p )
...
@@ -664,7 +664,7 @@ void Aig_ManDump( Aig_Man_t * p )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Aig_ManDumpBlif
(
Aig_Man_t
*
p
,
char
*
pFileName
)
void
Aig_ManDumpBlif
(
Aig_Man_t
*
p
,
char
*
pFileName
,
Vec_Ptr_t
*
vPiNames
,
Vec_Ptr_t
*
vPoNames
)
{
{
FILE
*
pFile
;
FILE
*
pFile
;
Vec_Ptr_t
*
vNodes
;
Vec_Ptr_t
*
vNodes
;
...
@@ -694,15 +694,21 @@ void Aig_ManDumpBlif( Aig_Man_t * p, char * pFileName )
...
@@ -694,15 +694,21 @@ void Aig_ManDumpBlif( Aig_Man_t * p, char * pFileName )
pFile
=
fopen
(
pFileName
,
"w"
);
pFile
=
fopen
(
pFileName
,
"w"
);
fprintf
(
pFile
,
"# BLIF file written by procedure Aig_ManDumpBlif()
\n
"
);
fprintf
(
pFile
,
"# BLIF file written by procedure Aig_ManDumpBlif()
\n
"
);
// fprintf( pFile, "# http://www.eecs.berkeley.edu/~alanmi/abc/\n" );
// fprintf( pFile, "# http://www.eecs.berkeley.edu/~alanmi/abc/\n" );
fprintf
(
pFile
,
".model
test
\n
"
);
fprintf
(
pFile
,
".model
%s
\n
"
,
p
->
pName
);
// write PIs
// write PIs
fprintf
(
pFile
,
".inputs"
);
fprintf
(
pFile
,
".inputs"
);
Aig_ManForEachPiSeq
(
p
,
pObj
,
i
)
Aig_ManForEachPiSeq
(
p
,
pObj
,
i
)
if
(
vPiNames
)
fprintf
(
pFile
,
" %s"
,
Vec_PtrEntry
(
vPiNames
,
i
)
);
else
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
pObj
->
iData
);
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
pObj
->
iData
);
fprintf
(
pFile
,
"
\n
"
);
fprintf
(
pFile
,
"
\n
"
);
// write POs
// write POs
fprintf
(
pFile
,
".outputs"
);
fprintf
(
pFile
,
".outputs"
);
Aig_ManForEachPoSeq
(
p
,
pObj
,
i
)
Aig_ManForEachPoSeq
(
p
,
pObj
,
i
)
if
(
vPoNames
)
fprintf
(
pFile
,
" %s"
,
Vec_PtrEntry
(
vPoNames
,
i
)
);
else
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
pObj
->
iData
);
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
pObj
->
iData
);
fprintf
(
pFile
,
"
\n
"
);
fprintf
(
pFile
,
"
\n
"
);
// write latches
// write latches
...
@@ -710,28 +716,53 @@ void Aig_ManDumpBlif( Aig_Man_t * p, char * pFileName )
...
@@ -710,28 +716,53 @@ void Aig_ManDumpBlif( Aig_Man_t * p, char * pFileName )
{
{
fprintf
(
pFile
,
"
\n
"
);
fprintf
(
pFile
,
"
\n
"
);
Aig_ManForEachLiLoSeq
(
p
,
pObjLi
,
pObjLo
,
i
)
Aig_ManForEachLiLoSeq
(
p
,
pObjLi
,
pObjLo
,
i
)
fprintf
(
pFile
,
".latch n%0*d n%0*d 0
\n
"
,
nDigits
,
pObjLi
->
iData
,
nDigits
,
pObjLo
->
iData
);
{
fprintf
(
pFile
,
".latch"
);
if
(
vPoNames
)
fprintf
(
pFile
,
" %s"
,
Vec_PtrEntry
(
vPoNames
,
Aig_ManPoNum
(
p
)
-
Aig_ManRegNum
(
p
)
+
i
)
);
else
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
pObjLi
->
iData
);
if
(
vPiNames
)
fprintf
(
pFile
,
" %s"
,
Vec_PtrEntry
(
vPiNames
,
Aig_ManPiNum
(
p
)
-
Aig_ManRegNum
(
p
)
+
i
)
);
else
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
pObjLo
->
iData
);
fprintf
(
pFile
,
" 0
\n
"
);
}
fprintf
(
pFile
,
"
\n
"
);
fprintf
(
pFile
,
"
\n
"
);
}
}
// write nodes
// write nodes
if
(
pConst1
)
if
(
pConst1
)
fprintf
(
pFile
,
".names n%0*d
\n
1
\n
"
,
nDigits
,
pConst1
->
iData
);
fprintf
(
pFile
,
".names n%0*d
\n
1
\n
"
,
nDigits
,
pConst1
->
iData
);
Aig_ManSetPioNumbers
(
p
);
Vec_PtrForEachEntry
(
vNodes
,
pObj
,
i
)
Vec_PtrForEachEntry
(
vNodes
,
pObj
,
i
)
{
{
fprintf
(
pFile
,
".names n%0*d n%0*d n%0*d
\n
"
,
fprintf
(
pFile
,
".names"
);
nDigits
,
Aig_ObjFanin0
(
pObj
)
->
iData
,
if
(
vPiNames
&&
Aig_ObjIsPi
(
Aig_ObjFanin0
(
pObj
))
)
nDigits
,
Aig_ObjFanin1
(
pObj
)
->
iData
,
fprintf
(
pFile
,
" %s"
,
Vec_PtrEntry
(
vPiNames
,
Aig_ObjPioNum
(
Aig_ObjFanin0
(
pObj
)))
);
nDigits
,
pObj
->
iData
);
else
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
Aig_ObjFanin0
(
pObj
)
->
iData
);
if
(
vPiNames
&&
Aig_ObjIsPi
(
Aig_ObjFanin1
(
pObj
))
)
fprintf
(
pFile
,
" %s"
,
Vec_PtrEntry
(
vPiNames
,
Aig_ObjPioNum
(
Aig_ObjFanin1
(
pObj
)))
);
else
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
Aig_ObjFanin1
(
pObj
)
->
iData
);
fprintf
(
pFile
,
" n%0*d
\n
"
,
nDigits
,
pObj
->
iData
);
fprintf
(
pFile
,
"%d%d 1
\n
"
,
!
Aig_ObjFaninC0
(
pObj
),
!
Aig_ObjFaninC1
(
pObj
)
);
fprintf
(
pFile
,
"%d%d 1
\n
"
,
!
Aig_ObjFaninC0
(
pObj
),
!
Aig_ObjFaninC1
(
pObj
)
);
}
}
// write POs
// write POs
Aig_ManForEachPo
(
p
,
pObj
,
i
)
Aig_ManForEachPo
(
p
,
pObj
,
i
)
{
{
fprintf
(
pFile
,
".names n%0*d n%0*d
\n
"
,
fprintf
(
pFile
,
".names"
);
nDigits
,
Aig_ObjFanin0
(
pObj
)
->
iData
,
if
(
vPiNames
&&
Aig_ObjIsPi
(
Aig_ObjFanin0
(
pObj
))
)
nDigits
,
pObj
->
iData
);
fprintf
(
pFile
,
" %s"
,
Vec_PtrEntry
(
vPiNames
,
Aig_ObjPioNum
(
Aig_ObjFanin0
(
pObj
)))
);
else
fprintf
(
pFile
,
" n%0*d"
,
nDigits
,
Aig_ObjFanin0
(
pObj
)
->
iData
);
if
(
vPoNames
)
fprintf
(
pFile
,
" %s
\n
"
,
Vec_PtrEntry
(
vPoNames
,
Aig_ObjPioNum
(
pObj
))
);
else
fprintf
(
pFile
,
" n%0*d
\n
"
,
nDigits
,
pObj
->
iData
);
fprintf
(
pFile
,
"%d 1
\n
"
,
!
Aig_ObjFaninC0
(
pObj
)
);
fprintf
(
pFile
,
"%d 1
\n
"
,
!
Aig_ObjFaninC0
(
pObj
)
);
}
}
Aig_ManCleanPioNumbers
(
p
);
fprintf
(
pFile
,
".end
\n\n
"
);
fprintf
(
pFile
,
".end
\n\n
"
);
fclose
(
pFile
);
fclose
(
pFile
);
Vec_PtrFree
(
vNodes
);
Vec_PtrFree
(
vNodes
);
...
...
src/aig/fra/fraCore.c
View file @
661abab0
...
@@ -155,7 +155,7 @@ static inline void Fra_FraigNodeSpeculate( Fra_Man_t * p, Aig_Obj_t * pObj, Aig_
...
@@ -155,7 +155,7 @@ static inline void Fra_FraigNodeSpeculate( Fra_Man_t * p, Aig_Obj_t * pObj, Aig_
pTemp
=
Aig_ManExtractMiter
(
p
->
pManFraig
,
pObjFraig
,
pObjReprFraig
);
pTemp
=
Aig_ManExtractMiter
(
p
->
pManFraig
,
pObjFraig
,
pObjReprFraig
);
// dump the logic into a file
// dump the logic into a file
sprintf
(
FileName
,
"aig
\\
%03d.blif"
,
++
Counter
);
sprintf
(
FileName
,
"aig
\\
%03d.blif"
,
++
Counter
);
Aig_ManDumpBlif
(
pTemp
,
FileName
);
Aig_ManDumpBlif
(
pTemp
,
FileName
,
NULL
,
NULL
);
printf
(
"Speculation cone with %d nodes was written into file
\"
%s
\"
.
\n
"
,
Aig_ManNodeNum
(
pTemp
),
FileName
);
printf
(
"Speculation cone with %d nodes was written into file
\"
%s
\"
.
\n
"
,
Aig_ManNodeNum
(
pTemp
),
FileName
);
// clean up
// clean up
Aig_ManStop
(
pTemp
);
Aig_ManStop
(
pTemp
);
...
...
src/aig/fra/fraInd.c
View file @
661abab0
...
@@ -50,8 +50,8 @@ void Fra_FraigInductionRewrite( Fra_Man_t * p )
...
@@ -50,8 +50,8 @@ void Fra_FraigInductionRewrite( Fra_Man_t * p )
// pTemp = Dar_ManRwsat( pTemp, 1, 0 );
// pTemp = Dar_ManRwsat( pTemp, 1, 0 );
pTemp
=
Dar_ManRewriteDefault
(
p
->
pManFraig
);
pTemp
=
Dar_ManRewriteDefault
(
p
->
pManFraig
);
// printf( "Before = %6d. After = %6d.\n", Aig_ManNodeNum(p->pManFraig), Aig_ManNodeNum(pTemp) );
// printf( "Before = %6d. After = %6d.\n", Aig_ManNodeNum(p->pManFraig), Aig_ManNodeNum(pTemp) );
//Aig_ManDumpBlif( p->pManFraig, "1.blif" );
//Aig_ManDumpBlif( p->pManFraig, "1.blif"
, NULL, NULL
);
//Aig_ManDumpBlif( pTemp, "2.blif" );
//Aig_ManDumpBlif( pTemp, "2.blif"
, NULL, NULL
);
// Fra_FramesWriteCone( pTemp );
// Fra_FramesWriteCone( pTemp );
// Aig_ManStop( pTemp );
// Aig_ManStop( pTemp );
// transfer PI/register pointers
// transfer PI/register pointers
...
@@ -431,7 +431,7 @@ PRT( "Time", clock() - clk );
...
@@ -431,7 +431,7 @@ PRT( "Time", clock() - clk );
// dump AIG of the timeframes
// dump AIG of the timeframes
// pManAigNew = Fra_ClassesDeriveAig( p->pCla, pPars->nFramesK );
// pManAigNew = Fra_ClassesDeriveAig( p->pCla, pPars->nFramesK );
// Aig_ManDumpBlif( pManAigNew, "frame_aig.blif" );
// Aig_ManDumpBlif( pManAigNew, "frame_aig.blif"
, NULL, NULL
);
// Fra_ManPartitionTest2( pManAigNew );
// Fra_ManPartitionTest2( pManAigNew );
// Aig_ManStop( pManAigNew );
// Aig_ManStop( pManAigNew );
...
@@ -448,7 +448,7 @@ PRT( "Time", clock() - clk );
...
@@ -448,7 +448,7 @@ PRT( "Time", clock() - clk );
clk2
=
clock
();
clk2
=
clock
();
p
->
pManFraig
=
Fra_FramesWithClasses
(
p
);
p
->
pManFraig
=
Fra_FramesWithClasses
(
p
);
p
->
timeTrav
+=
clock
()
-
clk2
;
p
->
timeTrav
+=
clock
()
-
clk2
;
//Aig_ManDumpBlif( p->pManFraig, "testaig.blif" );
//Aig_ManDumpBlif( p->pManFraig, "testaig.blif"
, NULL, NULL
);
// perform AIG rewriting
// perform AIG rewriting
if
(
p
->
pPars
->
fRewrite
)
if
(
p
->
pPars
->
fRewrite
)
...
...
src/aig/fra/fraSec.c
View file @
661abab0
...
@@ -59,7 +59,7 @@ int Fra_FraigSec( Aig_Man_t * p, int nFramesMax, int fRetimeFirst, int fFraiging
...
@@ -59,7 +59,7 @@ int Fra_FraigSec( Aig_Man_t * p, int nFramesMax, int fRetimeFirst, int fFraiging
printf
(
"Original miter: Latches = %5d. Nodes = %6d.
\n
"
,
printf
(
"Original miter: Latches = %5d. Nodes = %6d.
\n
"
,
Aig_ManRegNum
(
pNew
),
Aig_ManNodeNum
(
pNew
)
);
Aig_ManRegNum
(
pNew
),
Aig_ManNodeNum
(
pNew
)
);
}
}
//Aig_ManDumpBlif( pNew, "after.blif" );
//Aig_ManDumpBlif( pNew, "after.blif"
, NULL, NULL
);
// perform sequential cleanup
// perform sequential cleanup
clk
=
clock
();
clk
=
clock
();
...
...
src/aig/hop/cudd2.c
View file @
661abab0
...
@@ -77,7 +77,7 @@ void Cudd2_Init( unsigned int numVars, unsigned int numVarsZ, unsigned int numSl
...
@@ -77,7 +77,7 @@ void Cudd2_Init( unsigned int numVars, unsigned int numVarsZ, unsigned int numSl
void
Cudd2_Quit
(
void
*
pCudd
)
void
Cudd2_Quit
(
void
*
pCudd
)
{
{
assert
(
s_pCuddMan
!=
NULL
);
assert
(
s_pCuddMan
!=
NULL
);
Aig_ManDumpBlif
(
s_pCuddMan
->
pAig
,
"aig_temp.blif"
);
Aig_ManDumpBlif
(
s_pCuddMan
->
pAig
,
"aig_temp.blif"
,
NULL
,
NULL
);
Aig_ManStop
(
s_pCuddMan
->
pAig
);
Aig_ManStop
(
s_pCuddMan
->
pAig
);
st_free_table
(
s_pCuddMan
->
pTable
);
st_free_table
(
s_pCuddMan
->
pTable
);
free
(
s_pCuddMan
);
free
(
s_pCuddMan
);
...
...
src/aig/ntl/module.make
View file @
661abab0
SRC
+=
src/aig/ntl/ntlCheck.c
\
SRC
+=
src/aig/ntl/ntlCheck.c
\
src/aig/ntl/ntlCore.c
\
src/aig/ntl/ntlCore.c
\
src/aig/ntl/ntlExtract.c
\
src/aig/ntl/ntlExtract.c
\
src/aig/ntl/ntlFraig.c
\
src/aig/ntl/ntlInsert.c
\
src/aig/ntl/ntlInsert.c
\
src/aig/ntl/ntlMan.c
\
src/aig/ntl/ntlMan.c
\
src/aig/ntl/ntlMap.c
\
src/aig/ntl/ntlMap.c
\
...
@@ -8,5 +9,6 @@ SRC += src/aig/ntl/ntlCheck.c \
...
@@ -8,5 +9,6 @@ SRC += src/aig/ntl/ntlCheck.c \
src/aig/ntl/ntlReadBlif.c
\
src/aig/ntl/ntlReadBlif.c
\
src/aig/ntl/ntlTable.c
\
src/aig/ntl/ntlTable.c
\
src/aig/ntl/ntlTime.c
\
src/aig/ntl/ntlTime.c
\
src/aig/ntl/ntlUtil.c
\
src/aig/ntl/ntlWriteBlif.c
src/aig/ntl/ntlWriteBlif.c
src/aig/ntl/ntl.h
View file @
661abab0
...
@@ -103,9 +103,8 @@ struct Ntl_Obj_t_
...
@@ -103,9 +103,8 @@ struct Ntl_Obj_t_
Ntl_Mod_t
*
pModel
;
// the model
Ntl_Mod_t
*
pModel
;
// the model
void
*
pCopy
;
// the copy of this object
void
*
pCopy
;
// the copy of this object
unsigned
Type
:
3
;
// object type
unsigned
Type
:
3
;
// object type
unsigned
Id
:
27
;
// object ID
unsigned
fMark
:
1
;
// temporary mark
unsigned
MarkA
:
1
;
// temporary mark
unsigned
Id
:
28
;
// object ID
unsigned
MarkB
:
1
;
// temporary mark
int
nFanins
;
// the number of fanins
int
nFanins
;
// the number of fanins
int
nFanouts
;
// the number of fanouts
int
nFanouts
;
// the number of fanouts
union
{
// functionality
union
{
// functionality
...
@@ -123,6 +122,7 @@ struct Ntl_Net_t_
...
@@ -123,6 +122,7 @@ struct Ntl_Net_t_
Ntl_Obj_t
*
pDriver
;
// driver of the net
Ntl_Obj_t
*
pDriver
;
// driver of the net
char
nVisits
;
// the number of times the net is visited
char
nVisits
;
// the number of times the net is visited
char
fMark
;
// temporary mark
char
fMark
;
// temporary mark
char
fCompl
;
// complemented attribue
char
pName
[
0
];
// the name of this net
char
pName
[
0
];
// the name of this net
};
};
...
@@ -234,6 +234,7 @@ extern Aig_Man_t * Ntl_ManCollapse( Ntl_Man_t * p );
...
@@ -234,6 +234,7 @@ extern Aig_Man_t * Ntl_ManCollapse( Ntl_Man_t * p );
extern
char
*
Ntl_SopFromTruth
(
Ntl_Man_t
*
p
,
unsigned
*
pTruth
,
int
nVars
,
Vec_Int_t
*
vCover
);
extern
char
*
Ntl_SopFromTruth
(
Ntl_Man_t
*
p
,
unsigned
*
pTruth
,
int
nVars
,
Vec_Int_t
*
vCover
);
/*=== ntlInsert.c ==========================================================*/
/*=== ntlInsert.c ==========================================================*/
extern
int
Ntl_ManInsert
(
Ntl_Man_t
*
p
,
Vec_Ptr_t
*
vMapping
,
Aig_Man_t
*
pAig
);
extern
int
Ntl_ManInsert
(
Ntl_Man_t
*
p
,
Vec_Ptr_t
*
vMapping
,
Aig_Man_t
*
pAig
);
extern
int
Ntl_ManInsertAig
(
Ntl_Man_t
*
p
,
Aig_Man_t
*
pAig
);
extern
int
Ntl_ManInsertNtk
(
Ntl_Man_t
*
p
,
Nwk_Man_t
*
pNtk
);
extern
int
Ntl_ManInsertNtk
(
Ntl_Man_t
*
p
,
Nwk_Man_t
*
pNtk
);
/*=== ntlCheck.c ==========================================================*/
/*=== ntlCheck.c ==========================================================*/
extern
int
Ntl_ManCheck
(
Ntl_Man_t
*
pMan
);
extern
int
Ntl_ManCheck
(
Ntl_Man_t
*
pMan
);
...
@@ -270,12 +271,17 @@ extern Ntl_Net_t * Ntl_ModelFindNet( Ntl_Mod_t * p, char * pName );
...
@@ -270,12 +271,17 @@ extern Ntl_Net_t * Ntl_ModelFindNet( Ntl_Mod_t * p, char * pName );
extern
Ntl_Net_t
*
Ntl_ModelFindOrCreateNet
(
Ntl_Mod_t
*
p
,
char
*
pName
);
extern
Ntl_Net_t
*
Ntl_ModelFindOrCreateNet
(
Ntl_Mod_t
*
p
,
char
*
pName
);
extern
int
Ntl_ModelFindPioNumber
(
Ntl_Mod_t
*
p
,
char
*
pName
,
int
*
pNumber
);
extern
int
Ntl_ModelFindPioNumber
(
Ntl_Mod_t
*
p
,
char
*
pName
,
int
*
pNumber
);
extern
int
Ntl_ModelSetNetDriver
(
Ntl_Obj_t
*
pObj
,
Ntl_Net_t
*
pNet
);
extern
int
Ntl_ModelSetNetDriver
(
Ntl_Obj_t
*
pObj
,
Ntl_Net_t
*
pNet
);
extern
void
Ntl_ModelDeleteNet
(
Ntl_Mod_t
*
p
,
Ntl_Net_t
*
pNet
);
/*=== ntlTime.c ==========================================================*/
/*=== ntlTime.c ==========================================================*/
extern
Tim_Man_t
*
Ntl_ManCreateTiming
(
Ntl_Man_t
*
p
);
extern
Tim_Man_t
*
Ntl_ManCreateTiming
(
Ntl_Man_t
*
p
);
/*=== ntlReadBlif.c ==========================================================*/
/*=== ntlReadBlif.c ==========================================================*/
extern
Ntl_Man_t
*
Ioa_ReadBlif
(
char
*
pFileName
,
int
fCheck
);
extern
Ntl_Man_t
*
Ioa_ReadBlif
(
char
*
pFileName
,
int
fCheck
);
/*=== ntlWriteBlif.c ==========================================================*/
/*=== ntlWriteBlif.c ==========================================================*/
extern
void
Ioa_WriteBlif
(
Ntl_Man_t
*
p
,
char
*
pFileName
);
extern
void
Ioa_WriteBlif
(
Ntl_Man_t
*
p
,
char
*
pFileName
);
/*=== ntlUtil.c ==========================================================*/
extern
int
Ntl_ManTransformCoDrivers
(
Ntl_Man_t
*
p
);
extern
Vec_Ptr_t
*
Ntl_ManCollectCiNames
(
Ntl_Man_t
*
p
);
extern
Vec_Ptr_t
*
Ntl_ManCollectCoNames
(
Ntl_Man_t
*
p
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
...
...
src/aig/ntl/ntlExtract.c
View file @
661abab0
...
@@ -213,6 +213,41 @@ char * Ntl_SopCreateFromIsop( Aig_MmFlex_t * pMan, int nVars, Vec_Int_t * vCover
...
@@ -213,6 +213,41 @@ char * Ntl_SopCreateFromIsop( Aig_MmFlex_t * pMan, int nVars, Vec_Int_t * vCover
/**Function*************************************************************
/**Function*************************************************************
Synopsis [Creates the cover from the ISOP computed from TT.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Ntl_SopToIsop
(
char
*
pSop
,
Vec_Int_t
*
vCover
)
{
char
*
pCube
;
int
k
,
nVars
,
Entry
;
nVars
=
Ntl_SopGetVarNum
(
pSop
);
assert
(
nVars
>
0
);
// create cubes
Vec_IntClear
(
vCover
);
for
(
pCube
=
pSop
;
*
pCube
;
pCube
+=
nVars
+
3
)
{
Entry
=
0
;
for
(
k
=
nVars
-
1
;
k
>=
0
;
k
--
)
if
(
pCube
[
k
]
==
'0'
)
Entry
=
(
Entry
<<
2
)
|
1
;
else
if
(
pCube
[
k
]
==
'1'
)
Entry
=
(
Entry
<<
2
)
|
2
;
else
if
(
pCube
[
k
]
==
'-'
)
Entry
=
(
Entry
<<
2
);
else
assert
(
0
);
Vec_IntPush
(
vCover
,
Entry
);
}
}
/**Function*************************************************************
Synopsis [Transforms truth table into the SOP.]
Synopsis [Transforms truth table into the SOP.]
Description []
Description []
...
@@ -404,10 +439,11 @@ int Ntl_ManExtract_rec( Ntl_Man_t * p, Ntl_Net_t * pNet )
...
@@ -404,10 +439,11 @@ int Ntl_ManExtract_rec( Ntl_Man_t * p, Ntl_Net_t * pNet )
}
}
//printf( "Creating fake PO with ID = %d.\n", Aig_ManPo(p->pAig, Vec_IntEntryLast(p->vBox1Cos))->Id );
//printf( "Creating fake PO with ID = %d.\n", Aig_ManPo(p->pAig, Vec_IntEntryLast(p->vBox1Cos))->Id );
}
}
// store the node
Vec_PtrPush
(
p
->
vNodes
,
pObj
);
Vec_PtrPush
(
p
->
vNodes
,
pObj
);
if
(
Ntl_ObjIsNode
(
pObj
)
)
if
(
Ntl_ObjIsNode
(
pObj
)
)
pNet
->
pCopy
=
Ntl_ManBuildNodeAig
(
pObj
);
pNet
->
pCopy
=
Ntl_ManBuildNodeAig
(
pObj
);
if
(
pNet
->
fCompl
)
pNet
->
pCopy
=
Aig_Not
(
pNet
->
pCopy
);
pNet
->
nVisits
=
2
;
pNet
->
nVisits
=
2
;
return
1
;
return
1
;
}
}
...
@@ -602,9 +638,10 @@ int Ntl_ManCollapse_rec( Ntl_Man_t * p, Ntl_Net_t * pNet )
...
@@ -602,9 +638,10 @@ int Ntl_ManCollapse_rec( Ntl_Man_t * p, Ntl_Net_t * pNet )
if
(
!
Ntl_ManBuildModelAig
(
p
,
pObj
)
)
if
(
!
Ntl_ManBuildModelAig
(
p
,
pObj
)
)
return
0
;
return
0
;
}
}
// store the node
if
(
Ntl_ObjIsNode
(
pObj
)
)
if
(
Ntl_ObjIsNode
(
pObj
)
)
pNet
->
pCopy
=
Ntl_ManBuildNodeAig
(
pObj
);
pNet
->
pCopy
=
Ntl_ManBuildNodeAig
(
pObj
);
if
(
pNet
->
fCompl
)
pNet
->
pCopy
=
Aig_Not
(
pNet
->
pCopy
);
pNet
->
nVisits
=
2
;
pNet
->
nVisits
=
2
;
return
1
;
return
1
;
}
}
...
@@ -692,6 +729,174 @@ Aig_Man_t * Ntl_ManCollapse( Ntl_Man_t * p )
...
@@ -692,6 +729,174 @@ Aig_Man_t * Ntl_ManCollapse( Ntl_Man_t * p )
return
pAig
;
return
pAig
;
}
}
/**Function*************************************************************
Synopsis [Increments reference counter of the net.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
static
inline
void
Ntl_NetIncrementRefs
(
Ntl_Net_t
*
pNet
)
{
int
nRefs
=
(
int
)
pNet
->
pCopy
;
pNet
->
pCopy
=
(
void
*
)(
nRefs
+
1
);
}
/**Function*************************************************************
Synopsis [Extracts logic newtork out of the netlist.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Nwk_Obj_t
*
Ntl_ManExtractNwk_rec
(
Ntl_Man_t
*
p
,
Ntl_Net_t
*
pNet
,
Nwk_Man_t
*
pNtk
,
Vec_Int_t
*
vCover
,
Vec_Int_t
*
vMemory
)
{
extern
Hop_Obj_t
*
Kit_CoverToHop
(
Hop_Man_t
*
pMan
,
Vec_Int_t
*
vCover
,
int
nVars
,
Vec_Int_t
*
vMemory
);
Ntl_Net_t
*
pFaninNet
;
Nwk_Obj_t
*
pNode
;
int
i
;
if
(
pNet
->
fMark
)
return
pNet
->
pCopy
;
pNet
->
fMark
=
1
;
pNode
=
Nwk_ManCreateNode
(
pNtk
,
Ntl_ObjFaninNum
(
pNet
->
pDriver
),
(
int
)
pNet
->
pCopy
);
Ntl_ObjForEachFanin
(
pNet
->
pDriver
,
pFaninNet
,
i
)
{
Ntl_ManExtractNwk_rec
(
p
,
pFaninNet
,
pNtk
,
vCover
,
vMemory
);
Nwk_ObjAddFanin
(
pNode
,
pFaninNet
->
pCopy
);
}
if
(
Ntl_ObjFaninNum
(
pNet
->
pDriver
)
==
0
)
pNode
->
pFunc
=
Hop_NotCond
(
Hop_ManConst1
(
pNtk
->
pManHop
),
Ntl_SopIsConst0
(
pNet
->
pDriver
->
pSop
)
);
else
{
Ntl_SopToIsop
(
pNet
->
pDriver
->
pSop
,
vCover
);
pNode
->
pFunc
=
Kit_CoverToHop
(
pNtk
->
pManHop
,
vCover
,
Ntl_ObjFaninNum
(
pNet
->
pDriver
),
vMemory
);
}
return
pNet
->
pCopy
=
pNode
;
}
/**Function*************************************************************
Synopsis [Extracts logic newtork out of the netlist.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Nwk_Man_t
*
Ntl_ManExtractNwk
(
Ntl_Man_t
*
p
,
Aig_Man_t
*
pAig
)
{
Nwk_Man_t
*
pNtk
;
Nwk_Obj_t
*
pNode
;
Ntl_Mod_t
*
pRoot
;
Ntl_Net_t
*
pNet
;
Ntl_Obj_t
*
pObj
;
Aig_Obj_t
*
pAnd
;
Vec_Int_t
*
vCover
,
*
vMemory
;
int
i
,
k
;
pRoot
=
Ntl_ManRootModel
(
p
);
assert
(
Ntl_ModelBoxNum
(
pRoot
)
==
0
);
assert
(
Ntl_ModelLatchNum
(
pRoot
)
==
0
);
assert
(
Ntl_ModelPiNum
(
pRoot
)
==
Aig_ManPiNum
(
pAig
)
);
assert
(
Ntl_ModelPoNum
(
pRoot
)
==
Aig_ManPoNum
(
pAig
)
);
vCover
=
Vec_IntAlloc
(
100
);
vMemory
=
Vec_IntAlloc
(
1
<<
16
);
// count the number of fanouts of each net
Ntl_ModelForEachNet
(
pRoot
,
pNet
,
i
)
{
pNet
->
pCopy
=
NULL
;
pNet
->
fMark
=
0
;
}
Ntl_ModelForEachObj
(
pRoot
,
pObj
,
i
)
Ntl_ObjForEachFanin
(
pObj
,
pNet
,
k
)
Ntl_NetIncrementRefs
(
pNet
);
// construct the network
pNtk
=
Nwk_ManAlloc
();
pNtk
->
pName
=
Aig_UtilStrsav
(
pAig
->
pName
);
pNtk
->
pSpec
=
Aig_UtilStrsav
(
pAig
->
pSpec
);
Aig_ManSetPioNumbers
(
pAig
);
Aig_ManForEachObj
(
pAig
,
pAnd
,
i
)
{
if
(
Aig_ObjIsPi
(
pAnd
)
)
{
pObj
=
Ntl_ModelPi
(
pRoot
,
Aig_ObjPioNum
(
pAnd
)
);
pNet
=
Ntl_ObjFanout0
(
pObj
);
pNet
->
fMark
=
1
;
pNet
->
pCopy
=
Nwk_ManCreateCi
(
pNtk
,
(
int
)
pNet
->
pCopy
);
}
else
if
(
Aig_ObjIsPo
(
pAnd
)
)
{
pObj
=
Ntl_ModelPo
(
pRoot
,
Aig_ObjPioNum
(
pAnd
)
);
pNet
=
Ntl_ObjFanin0
(
pObj
);
pNet
->
pCopy
=
Ntl_ManExtractNwk_rec
(
p
,
pNet
,
pNtk
,
vCover
,
vMemory
);
pNode
=
Nwk_ManCreateCo
(
pNtk
);
pNode
->
fCompl
=
pNet
->
fCompl
;
Nwk_ObjAddFanin
(
pNode
,
pNet
->
pCopy
);
}
}
Aig_ManCleanPioNumbers
(
pAig
);
Ntl_ModelForEachNet
(
pRoot
,
pNet
,
i
)
{
pNet
->
pCopy
=
NULL
;
pNet
->
fMark
=
0
;
}
Vec_IntFree
(
vCover
);
Vec_IntFree
(
vMemory
);
// create timing manager from the current design
return
pNtk
;
}
/**Function*************************************************************
Synopsis [Extracts logic newtork out of the netlist.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Nwk_Man_t
*
Ntl_ManReadNwk
(
char
*
pFileName
,
Aig_Man_t
*
pAig
,
Tim_Man_t
*
pManTime
)
{
Nwk_Man_t
*
pNtk
;
Ntl_Man_t
*
pNtl
;
Ntl_Mod_t
*
pRoot
;
pNtl
=
Ioa_ReadBlif
(
pFileName
,
1
);
if
(
pNtl
==
NULL
)
{
printf
(
"Ntl_ManReadNwk(): Reading BLIF has failed.
\n
"
);
return
NULL
;
}
pRoot
=
Ntl_ManRootModel
(
pNtl
);
if
(
Ntl_ModelPiNum
(
pRoot
)
!=
Aig_ManPiNum
(
pAig
)
)
{
printf
(
"Ntl_ManReadNwk(): The number of primary inputs does not match (%d and %d).
\n
"
,
Ntl_ModelPiNum
(
pRoot
),
Aig_ManPiNum
(
pAig
)
);
return
NULL
;
}
if
(
Ntl_ModelPoNum
(
pRoot
)
!=
Aig_ManPoNum
(
pAig
)
)
{
printf
(
"Ntl_ManReadNwk(): The number of primary outputs does not match (%d and %d).
\n
"
,
Ntl_ModelPoNum
(
pRoot
),
Aig_ManPoNum
(
pAig
)
);
return
NULL
;
}
pNtk
=
Ntl_ManExtractNwk
(
pNtl
,
pAig
);
Ntl_ManFree
(
pNtl
);
if
(
pManTime
)
pNtk
->
pManTime
=
Tim_ManDup
(
pManTime
,
0
);
return
pNtk
;
}
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
/// END OF FILE ///
...
...
src/aig/ntl/ntlFraig.c
0 → 100644
View file @
661abab0
/**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"
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////
/**Function*************************************************************
Synopsis [Returns AIG with WB after fraiging.]
Description [pAig points to the nodes of pNew derived using it.
pNew points to the nodes of 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
;
// 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
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
(
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
;
// 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
);
return
pReprs
;
}
/**Function*************************************************************
Synopsis [Returns AIG with WB after fraiging.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Aig_Man_t
*
Ntl_ManFraig
(
Ntl_Man_t
*
p
,
Aig_Man_t
*
pAig
,
int
nPartSize
,
int
nConfLimit
,
int
nLevelMax
,
int
fVerbose
)
{
Ntl_Man_t
*
pNew
;
Aig_Man_t
*
pAigCol
,
*
pTemp
;
assert
(
pAig
->
pReprs
==
NULL
);
// create a new netlist whose nodes are in 1-to-1 relationship with AIG
pNew
=
Ntl_ManDup
(
p
);
if
(
!
Ntl_ManInsertAig
(
pNew
,
pAig
)
)
{
Ntl_ManFree
(
pNew
);
printf
(
"Ntk_ManFraig(): Inserting AIG has failed.
\n
"
);
return
NULL
;
}
// collapse the AIG
pAigCol
=
Ntl_ManCollapse
(
pNew
);
// perform fraiging for the given design
if
(
nPartSize
==
0
)
nPartSize
=
Aig_ManPoNum
(
pAigCol
);
pTemp
=
Aig_ManFraigPartitioned
(
pAigCol
,
nPartSize
,
nConfLimit
,
nLevelMax
,
fVerbose
);
Aig_ManStop
(
pTemp
);
// transfer equivalence classes to the original AIG
pAig
->
pReprs
=
Ntl_ManFraigDeriveClasses
(
pAig
,
pNew
,
pAigCol
);
pAig
->
nReprsAlloc
=
Aig_ManObjNumMax
(
pAig
);
// cleanup
Aig_ManStop
(
pAigCol
);
Ntl_ManFree
(
pNew
);
// derive the new AIG
pTemp
=
Aig_ManDupRepresDfs
(
pAig
);
// duplicate the timing manager
if
(
pAig
->
pManTime
)
pTemp
->
pManTime
=
Tim_ManDup
(
pAig
->
pManTime
,
0
);
// reset levels
Aig_ManChoiceLevel
(
pTemp
);
return
pTemp
;
}
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
src/aig/ntl/ntlInsert.c
View file @
661abab0
...
@@ -59,6 +59,7 @@ int Ntl_ManInsert( Ntl_Man_t * p, Vec_Ptr_t * vMapping, Aig_Man_t * pAig )
...
@@ -59,6 +59,7 @@ int Ntl_ManInsert( Ntl_Man_t * p, Vec_Ptr_t * vMapping, Aig_Man_t * pAig )
pRoot
=
Ntl_ManRootModel
(
p
);
pRoot
=
Ntl_ManRootModel
(
p
);
Ntl_ModelForEachNode
(
pRoot
,
pNode
,
i
)
Ntl_ModelForEachNode
(
pRoot
,
pNode
,
i
)
Vec_PtrWriteEntry
(
pRoot
->
vObjs
,
pNode
->
Id
,
NULL
);
Vec_PtrWriteEntry
(
pRoot
->
vObjs
,
pNode
->
Id
,
NULL
);
pRoot
->
nObjs
[
NTL_OBJ_NODE
]
=
0
;
// start mapping of AIG nodes into their copies
// start mapping of AIG nodes into their copies
vCopies
=
Vec_PtrStart
(
Aig_ManObjNumMax
(
pAig
)
);
vCopies
=
Vec_PtrStart
(
Aig_ManObjNumMax
(
pAig
)
);
Ntl_ManForEachCiNet
(
p
,
pNet
,
i
)
Ntl_ManForEachCiNet
(
p
,
pNet
,
i
)
...
@@ -134,6 +135,122 @@ int Ntl_ManInsert( Ntl_Man_t * p, Vec_Ptr_t * vMapping, Aig_Man_t * pAig )
...
@@ -134,6 +135,122 @@ int Ntl_ManInsert( Ntl_Man_t * p, Vec_Ptr_t * vMapping, Aig_Man_t * pAig )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
int
Ntl_ManInsertAig
(
Ntl_Man_t
*
p
,
Aig_Man_t
*
pAig
)
{
char
Buffer
[
100
];
Ntl_Mod_t
*
pRoot
;
Ntl_Obj_t
*
pNode
;
Ntl_Net_t
*
pNet
,
*
pNetCo
;
Aig_Obj_t
*
pObj
,
*
pFanin
;
int
i
,
nDigits
,
Counter
;
assert
(
Vec_PtrSize
(
p
->
vCis
)
==
Aig_ManPiNum
(
pAig
)
);
assert
(
Vec_PtrSize
(
p
->
vCos
)
==
Aig_ManPoNum
(
pAig
)
);
// set the correspondence between the PI/PO nodes
Aig_ManCleanData
(
pAig
);
Ntl_ManForEachCiNet
(
p
,
pNet
,
i
)
Aig_ManPi
(
pAig
,
i
)
->
pData
=
pNet
;
// Ntl_ManForEachCoNet( p, pNet, i )
// Nwk_ManCo( pNtk, i )->pCopy = pNet;
// remove old nodes
pRoot
=
Ntl_ManRootModel
(
p
);
Ntl_ModelForEachNode
(
pRoot
,
pNode
,
i
)
Vec_PtrWriteEntry
(
pRoot
->
vObjs
,
pNode
->
Id
,
NULL
);
pRoot
->
nObjs
[
NTL_OBJ_NODE
]
=
0
;
// create constant node if needed
if
(
Aig_ManConst1
(
pAig
)
->
nRefs
>
0
)
{
pNode
=
Ntl_ModelCreateNode
(
pRoot
,
0
);
pNode
->
pSop
=
Ntl_ManStoreSop
(
p
,
" 1
\n
"
);
if
(
(
pNet
=
Ntl_ModelFindNet
(
pRoot
,
"Const1"
))
)
{
printf
(
"Ntl_ManInsertAig(): Internal error: Intermediate net name is not unique.
\n
"
);
return
0
;
}
pNet
=
Ntl_ModelFindOrCreateNet
(
pRoot
,
"Const1"
);
if
(
!
Ntl_ModelSetNetDriver
(
pNode
,
pNet
)
)
{
printf
(
"Ntl_ManInsertAig(): Internal error: Net has more than one fanin.
\n
"
);
return
0
;
}
Aig_ManConst1
(
pAig
)
->
pData
=
pNet
;
}
// create a new node for each LUT
Counter
=
0
;
nDigits
=
Aig_Base10Log
(
Aig_ManNodeNum
(
pAig
)
);
Aig_ManForEachObj
(
pAig
,
pObj
,
i
)
{
if
(
!
Aig_ObjIsNode
(
pObj
)
)
continue
;
if
(
Aig_ObjFanin0
(
pObj
)
->
pData
==
NULL
||
Aig_ObjFanin1
(
pObj
)
->
pData
==
NULL
)
{
printf
(
"Ntl_ManInsertAig(): Internal error: Net not found.
\n
"
);
return
0
;
}
pNode
=
Ntl_ModelCreateNode
(
pRoot
,
2
);
Ntl_ObjSetFanin
(
pNode
,
Aig_ObjFanin0
(
pObj
)
->
pData
,
0
);
Ntl_ObjSetFanin
(
pNode
,
Aig_ObjFanin1
(
pObj
)
->
pData
,
1
);
if
(
Aig_ObjFaninC0
(
pObj
)
&&
Aig_ObjFaninC1
(
pObj
)
)
pNode
->
pSop
=
Ntl_ManStoreSop
(
p
,
"00 1
\n
"
);
else
if
(
Aig_ObjFaninC0
(
pObj
)
&&
!
Aig_ObjFaninC1
(
pObj
)
)
pNode
->
pSop
=
Ntl_ManStoreSop
(
p
,
"01 1
\n
"
);
else
if
(
!
Aig_ObjFaninC0
(
pObj
)
&&
Aig_ObjFaninC1
(
pObj
)
)
pNode
->
pSop
=
Ntl_ManStoreSop
(
p
,
"10 1
\n
"
);
else
// if ( Aig_ObjFaninC0(pObj) && Aig_ObjFaninC1(pObj) )
pNode
->
pSop
=
Ntl_ManStoreSop
(
p
,
"11 1
\n
"
);
sprintf
(
Buffer
,
"and%0*d"
,
nDigits
,
Counter
++
);
if
(
(
pNet
=
Ntl_ModelFindNet
(
pRoot
,
Buffer
))
)
{
printf
(
"Ntl_ManInsertAig(): Internal error: Intermediate net name is not unique.
\n
"
);
return
0
;
}
pNet
=
Ntl_ModelFindOrCreateNet
(
pRoot
,
Buffer
);
if
(
!
Ntl_ModelSetNetDriver
(
pNode
,
pNet
)
)
{
printf
(
"Ntl_ManInsertAig(): Internal error: Net has more than one fanin.
\n
"
);
return
0
;
}
pObj
->
pData
=
pNet
;
}
// mark CIs and outputs of the registers
Ntl_ManForEachCiNet
(
p
,
pNetCo
,
i
)
pNetCo
->
nVisits
=
101
;
// update the CO pointers
Ntl_ManForEachCoNet
(
p
,
pNetCo
,
i
)
{
if
(
pNetCo
->
nVisits
==
101
)
continue
;
pNetCo
->
nVisits
=
101
;
// get the corresponding PO and its driver
pObj
=
Aig_ManPo
(
pAig
,
i
);
pFanin
=
Aig_ObjFanin0
(
pObj
);
// get the net driving the driver
pNet
=
pFanin
->
pData
;
pNode
=
Ntl_ModelCreateNode
(
pRoot
,
1
);
pNode
->
pSop
=
Aig_ObjFaninC0
(
pObj
)
?
Ntl_ManStoreSop
(
p
,
"0 1
\n
"
)
:
Ntl_ManStoreSop
(
p
,
"1 1
\n
"
);
Ntl_ObjSetFanin
(
pNode
,
pNet
,
0
);
// update the CO driver net
pNetCo
->
pDriver
=
NULL
;
if
(
!
Ntl_ModelSetNetDriver
(
pNode
,
pNetCo
)
)
{
printf
(
"Ntl_ManInsert(): Internal error: PO net has more than one fanin.
\n
"
);
return
0
;
}
}
return
1
;
}
/**Function*************************************************************
Synopsis [Inserts the given mapping into the netlist.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
int
Ntl_ManInsertNtk
(
Ntl_Man_t
*
p
,
Nwk_Man_t
*
pNtk
)
int
Ntl_ManInsertNtk
(
Ntl_Man_t
*
p
,
Nwk_Man_t
*
pNtk
)
{
{
char
Buffer
[
100
];
char
Buffer
[
100
];
...
@@ -157,6 +274,7 @@ int Ntl_ManInsertNtk( Ntl_Man_t * p, Nwk_Man_t * pNtk )
...
@@ -157,6 +274,7 @@ int Ntl_ManInsertNtk( Ntl_Man_t * p, Nwk_Man_t * pNtk )
pRoot
=
Ntl_ManRootModel
(
p
);
pRoot
=
Ntl_ManRootModel
(
p
);
Ntl_ModelForEachNode
(
pRoot
,
pNode
,
i
)
Ntl_ModelForEachNode
(
pRoot
,
pNode
,
i
)
Vec_PtrWriteEntry
(
pRoot
->
vObjs
,
pNode
->
Id
,
NULL
);
Vec_PtrWriteEntry
(
pRoot
->
vObjs
,
pNode
->
Id
,
NULL
);
pRoot
->
nObjs
[
NTL_OBJ_NODE
]
=
0
;
// create a new node for each LUT
// create a new node for each LUT
vTruth
=
Vec_IntAlloc
(
1
<<
16
);
vTruth
=
Vec_IntAlloc
(
1
<<
16
);
vCover
=
Vec_IntAlloc
(
1
<<
16
);
vCover
=
Vec_IntAlloc
(
1
<<
16
);
...
...
src/aig/ntl/ntlMan.c
View file @
661abab0
...
@@ -267,6 +267,9 @@ Ntl_Mod_t * Ntl_ModelDup( Ntl_Man_t * pManNew, Ntl_Mod_t * pModelOld )
...
@@ -267,6 +267,9 @@ Ntl_Mod_t * Ntl_ModelDup( Ntl_Man_t * pManNew, Ntl_Mod_t * pModelOld )
if
(
Ntl_ObjIsNode
(
pObj
)
)
if
(
Ntl_ObjIsNode
(
pObj
)
)
((
Ntl_Obj_t
*
)
pObj
->
pCopy
)
->
pSop
=
Ntl_ManStoreSop
(
pManNew
,
pObj
->
pSop
);
((
Ntl_Obj_t
*
)
pObj
->
pCopy
)
->
pSop
=
Ntl_ManStoreSop
(
pManNew
,
pObj
->
pSop
);
}
}
pModelNew
->
vDelays
=
pModelOld
->
vDelays
?
Vec_IntDup
(
pModelOld
->
vDelays
)
:
NULL
;
pModelNew
->
vArrivals
=
pModelOld
->
vArrivals
?
Vec_IntDup
(
pModelOld
->
vArrivals
)
:
NULL
;
pModelNew
->
vRequireds
=
pModelOld
->
vRequireds
?
Vec_IntDup
(
pModelOld
->
vRequireds
)
:
NULL
;
return
pModelNew
;
return
pModelNew
;
}
}
...
...
src/aig/ntl/ntlReadBlif.c
View file @
661abab0
...
@@ -109,6 +109,7 @@ Ntl_Man_t * Ioa_ReadBlif( char * pFileName, int fCheck )
...
@@ -109,6 +109,7 @@ Ntl_Man_t * Ioa_ReadBlif( char * pFileName, int fCheck )
FILE
*
pFile
;
FILE
*
pFile
;
Ioa_ReadMan_t
*
p
;
Ioa_ReadMan_t
*
p
;
Ntl_Man_t
*
pDesign
;
Ntl_Man_t
*
pDesign
;
int
nNodes
;
// check that the file is available
// check that the file is available
pFile
=
fopen
(
pFileName
,
"rb"
);
pFile
=
fopen
(
pFileName
,
"rb"
);
...
@@ -164,6 +165,9 @@ Ntl_Man_t * Ioa_ReadBlif( char * pFileName, int fCheck )
...
@@ -164,6 +165,9 @@ Ntl_Man_t * Ioa_ReadBlif( char * pFileName, int fCheck )
}
}
}
}
// transform the design by removing the CO drivers
if
(
(
nNodes
=
Ntl_ManTransformCoDrivers
(
pDesign
))
)
printf
(
"The design was transformed by removing %d buf/inv CO drivers.
\n
"
,
nNodes
);
//Ioa_WriteBlif( pDesign, "_temp_.blif" );
//Ioa_WriteBlif( pDesign, "_temp_.blif" );
return
pDesign
;
return
pDesign
;
}
}
...
@@ -614,6 +618,11 @@ static Ntl_Man_t * Ioa_ReadParse( Ioa_ReadMan_t * p )
...
@@ -614,6 +618,11 @@ static Ntl_Man_t * Ioa_ReadParse( Ioa_ReadMan_t * p )
// finalize the network
// finalize the network
Ntl_ModelFixNonDrivenNets
(
pMod
->
pNtk
);
Ntl_ModelFixNonDrivenNets
(
pMod
->
pNtk
);
}
}
if
(
i
==
0
)
return
NULL
;
// update the design name
pMod
=
Vec_PtrEntry
(
p
->
vModels
,
0
);
p
->
pDesign
->
pName
=
Ntl_ManStoreName
(
p
->
pDesign
,
pMod
->
pNtk
->
pName
);
// return the network
// return the network
pDesign
=
p
->
pDesign
;
pDesign
=
p
->
pDesign
;
p
->
pDesign
=
NULL
;
p
->
pDesign
=
NULL
;
...
...
src/aig/ntl/ntlTable.c
View file @
661abab0
...
@@ -134,6 +134,35 @@ Ntl_Net_t * Ntl_ModelFindNet( Ntl_Mod_t * p, char * pName )
...
@@ -134,6 +134,35 @@ Ntl_Net_t * Ntl_ModelFindNet( Ntl_Mod_t * p, char * pName )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Ntl_ModelDeleteNet
(
Ntl_Mod_t
*
p
,
Ntl_Net_t
*
pNet
)
{
Ntl_Net_t
*
pEnt
,
*
pPrev
;
unsigned
Key
=
Ntl_HashString
(
pNet
->
pName
,
p
->
nTableSize
);
for
(
pPrev
=
NULL
,
pEnt
=
p
->
pTable
[
Key
];
pEnt
;
pPrev
=
pEnt
,
pEnt
=
pEnt
->
pNext
)
if
(
pEnt
==
pNet
)
break
;
if
(
pEnt
==
NULL
)
{
printf
(
"Ntl_ModelDeleteNet(): Net to be deleted is not found in the hash table.
\n
"
);
return
;
}
if
(
pPrev
==
NULL
)
p
->
pTable
[
Key
]
=
pEnt
->
pNext
;
else
pPrev
->
pNext
=
pEnt
->
pNext
;
}
/**Function*************************************************************
Synopsis [Finds or creates the net.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Ntl_Net_t
*
Ntl_ModelFindOrCreateNet
(
Ntl_Mod_t
*
p
,
char
*
pName
)
Ntl_Net_t
*
Ntl_ModelFindOrCreateNet
(
Ntl_Mod_t
*
p
,
char
*
pName
)
{
{
Ntl_Net_t
*
pEnt
;
Ntl_Net_t
*
pEnt
;
...
...
src/aig/ntl/ntlUtil.c
0 → 100644
View file @
661abab0
/**CFile****************************************************************
FileName [ntlUtil.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [Netlist representation.]
Synopsis [Various utilities.]
Author [Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - June 20, 2005.]
Revision [$Id: ntlUtil.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
***********************************************************************/
#include "ntl.h"
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////
/**Function*************************************************************
Synopsis [Returns 1 if netlist was written by ABC with added bufs/invs.]
Description [Should be called immediately after reading from file.]
SideEffects []
SeeAlso []
***********************************************************************/
int
Ntl_ManTransformCoDrivers
(
Ntl_Man_t
*
p
)
{
Vec_Ptr_t
*
vCoNets
;
Ntl_Net_t
*
pNetCo
,
*
pNetFanin
;
Ntl_Obj_t
*
pObj
;
Ntl_Mod_t
*
pRoot
;
int
i
,
k
,
Counter
;
pRoot
=
Ntl_ManRootModel
(
p
);
// collect the nets of the root model
vCoNets
=
Vec_PtrAlloc
(
1000
);
Ntl_ModelForEachPo
(
pRoot
,
pObj
,
i
)
if
(
!
Ntl_ObjFanin0
(
pObj
)
->
fMark
)
{
Ntl_ObjFanin0
(
pObj
)
->
fMark
=
1
;
Vec_PtrPush
(
vCoNets
,
Ntl_ObjFanin0
(
pObj
)
);
}
Ntl_ModelForEachLatch
(
pRoot
,
pObj
,
i
)
if
(
!
Ntl_ObjFanin0
(
pObj
)
->
fMark
)
{
Ntl_ObjFanin0
(
pObj
)
->
fMark
=
1
;
Vec_PtrPush
(
vCoNets
,
Ntl_ObjFanin0
(
pObj
)
);
}
Ntl_ModelForEachBox
(
pRoot
,
pObj
,
k
)
Ntl_ObjForEachFanin
(
pObj
,
pNetCo
,
i
)
if
(
!
pNetCo
->
fMark
)
{
pNetCo
->
fMark
=
1
;
Vec_PtrPush
(
vCoNets
,
pNetCo
);
}
// check the nets
Vec_PtrForEachEntry
(
vCoNets
,
pNetCo
,
i
)
{
if
(
!
Ntl_ObjIsNode
(
pNetCo
->
pDriver
)
)
continue
;
if
(
Ntl_ObjFaninNum
(
pNetCo
->
pDriver
)
!=
1
)
break
;
pNetFanin
=
Ntl_ObjFanin0
(
pNetCo
->
pDriver
);
if
(
!
Ntl_ObjIsNode
(
pNetFanin
->
pDriver
)
)
break
;
}
if
(
i
<
Vec_PtrSize
(
vCoNets
)
)
{
Vec_PtrFree
(
vCoNets
);
return
0
;
}
// remove the buffers/inverters
Counter
=
0
;
Vec_PtrForEachEntry
(
vCoNets
,
pNetCo
,
i
)
{
pNetCo
->
fMark
=
0
;
if
(
!
Ntl_ObjIsNode
(
pNetCo
->
pDriver
)
)
continue
;
// if this net is driven by an interver
// set the complemented attribute of the CO
assert
(
Ntl_ObjFaninNum
(
pNetCo
->
pDriver
)
==
1
);
pNetCo
->
fCompl
=
(
int
)(
pNetCo
->
pDriver
->
pSop
[
0
]
==
'0'
);
// remove the driver
Vec_PtrWriteEntry
(
pRoot
->
vObjs
,
pNetCo
->
pDriver
->
Id
,
NULL
);
// remove the net
pNetFanin
=
Ntl_ObjFanin0
(
pNetCo
->
pDriver
);
Ntl_ModelDeleteNet
(
pRoot
,
pNetFanin
);
// make the CO net point to the new driver
assert
(
Ntl_ObjIsNode
(
pNetFanin
->
pDriver
)
);
pNetCo
->
pDriver
=
NULL
;
pNetFanin
->
pDriver
->
pFanio
[
pNetFanin
->
pDriver
->
nFanins
]
=
NULL
;
Ntl_ModelSetNetDriver
(
pNetFanin
->
pDriver
,
pNetCo
);
Counter
++
;
}
Vec_PtrFree
(
vCoNets
);
pRoot
->
nObjs
[
NTL_OBJ_NODE
]
-=
Counter
;
return
Counter
;
}
/**Function*************************************************************
Synopsis [Derives the array of CI names.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Vec_Ptr_t
*
Ntl_ManCollectCiNames
(
Ntl_Man_t
*
p
)
{
Vec_Ptr_t
*
vNames
;
Ntl_Net_t
*
pNet
;
int
i
;
vNames
=
Vec_PtrAlloc
(
1000
);
Ntl_ManForEachCiNet
(
p
,
pNet
,
i
)
Vec_PtrPush
(
vNames
,
pNet
->
pName
);
return
vNames
;
}
/**Function*************************************************************
Synopsis [Derives the array of CI names.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Vec_Ptr_t
*
Ntl_ManCollectCoNames
(
Ntl_Man_t
*
p
)
{
Vec_Ptr_t
*
vNames
;
Ntl_Net_t
*
pNet
;
int
i
;
vNames
=
Vec_PtrAlloc
(
1000
);
Ntl_ManForEachCoNet
(
p
,
pNet
,
i
)
Vec_PtrPush
(
vNames
,
pNet
->
pName
);
return
vNames
;
}
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
src/aig/ntl/ntlWriteBlif.c
View file @
661abab0
...
@@ -44,6 +44,7 @@ void Ioa_WriteBlifModel( FILE * pFile, Ntl_Mod_t * pModel )
...
@@ -44,6 +44,7 @@ void Ioa_WriteBlifModel( FILE * pFile, Ntl_Mod_t * pModel )
{
{
Ntl_Obj_t
*
pObj
;
Ntl_Obj_t
*
pObj
;
Ntl_Net_t
*
pNet
;
Ntl_Net_t
*
pNet
;
float
Delay
;
int
i
,
k
;
int
i
,
k
;
fprintf
(
pFile
,
".model %s
\n
"
,
pModel
->
pName
);
fprintf
(
pFile
,
".model %s
\n
"
,
pModel
->
pName
);
fprintf
(
pFile
,
".inputs"
);
fprintf
(
pFile
,
".inputs"
);
...
@@ -54,6 +55,51 @@ void Ioa_WriteBlifModel( FILE * pFile, Ntl_Mod_t * pModel )
...
@@ -54,6 +55,51 @@ void Ioa_WriteBlifModel( FILE * pFile, Ntl_Mod_t * pModel )
Ntl_ModelForEachPo
(
pModel
,
pObj
,
i
)
Ntl_ModelForEachPo
(
pModel
,
pObj
,
i
)
fprintf
(
pFile
,
" %s"
,
Ntl_ObjFanin0
(
pObj
)
->
pName
);
fprintf
(
pFile
,
" %s"
,
Ntl_ObjFanin0
(
pObj
)
->
pName
);
fprintf
(
pFile
,
"
\n
"
);
fprintf
(
pFile
,
"
\n
"
);
// write delays
if
(
pModel
->
vDelays
)
{
for
(
i
=
0
;
i
<
Vec_IntSize
(
pModel
->
vDelays
);
i
+=
3
)
{
fprintf
(
pFile
,
".delay"
);
fprintf
(
pFile
,
" %s"
,
Ntl_ObjFanout0
(
Ntl_ModelPi
(
pModel
,
Vec_IntEntry
(
pModel
->
vDelays
,
i
)))
->
pName
);
fprintf
(
pFile
,
" %s"
,
Ntl_ObjFanin0
(
Ntl_ModelPo
(
pModel
,
Vec_IntEntry
(
pModel
->
vDelays
,
i
+
1
)))
->
pName
);
fprintf
(
pFile
,
" %.3f"
,
Aig_Int2Float
(
Vec_IntEntry
(
pModel
->
vDelays
,
i
+
2
))
);
fprintf
(
pFile
,
"
\n
"
);
}
}
if
(
pModel
->
vArrivals
)
{
for
(
i
=
0
;
i
<
Vec_IntSize
(
pModel
->
vArrivals
);
i
+=
2
)
{
fprintf
(
pFile
,
".input_arrival"
);
fprintf
(
pFile
,
" %s"
,
Ntl_ObjFanout0
(
Ntl_ModelPi
(
pModel
,
Vec_IntEntry
(
pModel
->
vArrivals
,
i
)))
->
pName
);
Delay
=
Aig_Int2Float
(
Vec_IntEntry
(
pModel
->
vArrivals
,
i
+
1
));
if
(
Delay
==
-
TIM_ETERNITY
)
fprintf
(
pFile
,
" -inf"
);
else
if
(
Delay
==
TIM_ETERNITY
)
fprintf
(
pFile
,
" inf"
);
else
fprintf
(
pFile
,
" %.3f"
,
Delay
);
fprintf
(
pFile
,
"
\n
"
);
}
}
if
(
pModel
->
vRequireds
)
{
for
(
i
=
0
;
i
<
Vec_IntSize
(
pModel
->
vRequireds
);
i
+=
2
)
{
fprintf
(
pFile
,
".output_required"
);
fprintf
(
pFile
,
" %s"
,
Ntl_ObjFanin0
(
Ntl_ModelPo
(
pModel
,
Vec_IntEntry
(
pModel
->
vRequireds
,
i
)))
->
pName
);
Delay
=
Aig_Int2Float
(
Vec_IntEntry
(
pModel
->
vRequireds
,
i
+
1
));
if
(
Delay
==
-
TIM_ETERNITY
)
fprintf
(
pFile
,
" -inf"
);
else
if
(
Delay
==
TIM_ETERNITY
)
fprintf
(
pFile
,
" inf"
);
else
fprintf
(
pFile
,
" %.3f"
,
Delay
);
fprintf
(
pFile
,
"
\n
"
);
}
}
// write objects
Ntl_ModelForEachObj
(
pModel
,
pObj
,
i
)
Ntl_ModelForEachObj
(
pModel
,
pObj
,
i
)
{
{
if
(
Ntl_ObjIsNode
(
pObj
)
)
if
(
Ntl_ObjIsNode
(
pObj
)
)
...
...
src/aig/nwk/nwk.h
View file @
661abab0
...
@@ -252,6 +252,7 @@ extern int Nwk_ManGetAigNodeNum( Nwk_Man_t * pNtk );
...
@@ -252,6 +252,7 @@ extern int Nwk_ManGetAigNodeNum( Nwk_Man_t * pNtk );
extern
int
Nwk_NodeCompareLevelsIncrease
(
Nwk_Obj_t
**
pp1
,
Nwk_Obj_t
**
pp2
);
extern
int
Nwk_NodeCompareLevelsIncrease
(
Nwk_Obj_t
**
pp1
,
Nwk_Obj_t
**
pp2
);
extern
int
Nwk_NodeCompareLevelsDecrease
(
Nwk_Obj_t
**
pp1
,
Nwk_Obj_t
**
pp2
);
extern
int
Nwk_NodeCompareLevelsDecrease
(
Nwk_Obj_t
**
pp1
,
Nwk_Obj_t
**
pp2
);
extern
void
Nwk_ObjPrint
(
Nwk_Obj_t
*
pObj
);
extern
void
Nwk_ObjPrint
(
Nwk_Obj_t
*
pObj
);
extern
void
Nwk_ManDumpBlif
(
Nwk_Man_t
*
pNtk
,
char
*
pFileName
,
Vec_Ptr_t
*
vCiNames
,
Vec_Ptr_t
*
vCoNames
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
...
...
src/aig/nwk/nwkMan.c
View file @
661abab0
...
@@ -91,6 +91,29 @@ void Nwk_ManFree( Nwk_Man_t * p )
...
@@ -91,6 +91,29 @@ void Nwk_ManFree( Nwk_Man_t * p )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Nwk_ManPrintLutSizes
(
Nwk_Man_t
*
p
,
If_Lib_t
*
pLutLib
)
{
Nwk_Obj_t
*
pObj
;
int
i
,
Counters
[
256
]
=
{
0
};
Nwk_ManForEachNode
(
p
,
pObj
,
i
)
Counters
[
Nwk_ObjFaninNum
(
pObj
)]
++
;
printf
(
"LUTs by size: "
);
for
(
i
=
0
;
i
<=
pLutLib
->
LutMax
;
i
++
)
printf
(
"%d:%d "
,
i
,
Counters
[
i
]
);
printf
(
"
\n
"
);
}
/**Function*************************************************************
Synopsis [Prints stats of the manager.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Nwk_ManPrintStats
(
Nwk_Man_t
*
p
,
If_Lib_t
*
pLutLib
)
void
Nwk_ManPrintStats
(
Nwk_Man_t
*
p
,
If_Lib_t
*
pLutLib
)
{
{
p
->
pLutLib
=
pLutLib
;
p
->
pLutLib
=
pLutLib
;
...
@@ -104,7 +127,8 @@ void Nwk_ManPrintStats( Nwk_Man_t * p, If_Lib_t * pLutLib )
...
@@ -104,7 +127,8 @@ void Nwk_ManPrintStats( Nwk_Man_t * p, If_Lib_t * pLutLib )
printf
(
"aig = %6d "
,
Nwk_ManGetAigNodeNum
(
p
)
);
printf
(
"aig = %6d "
,
Nwk_ManGetAigNodeNum
(
p
)
);
printf
(
"lev = %3d "
,
Nwk_ManLevel
(
p
)
);
printf
(
"lev = %3d "
,
Nwk_ManLevel
(
p
)
);
// printf( "lev2 = %3d ", Nwk_ManLevelBackup(p) );
// printf( "lev2 = %3d ", Nwk_ManLevelBackup(p) );
printf
(
"delay = %5.2f"
,
Nwk_ManDelayTraceLut
(
p
)
);
printf
(
"delay = %5.2f "
,
Nwk_ManDelayTraceLut
(
p
)
);
Nwk_ManPrintLutSizes
(
p
,
pLutLib
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
// Nwk_ManDelayTracePrint( p, pLutLib );
// Nwk_ManDelayTracePrint( p, pLutLib );
fflush
(
stdout
);
fflush
(
stdout
);
...
...
src/aig/nwk/nwkMap.c
View file @
661abab0
...
@@ -134,7 +134,7 @@ If_Man_t * Nwk_ManToIf( Aig_Man_t * p, If_Par_t * pPars, Vec_Ptr_t * vAigToIf )
...
@@ -134,7 +134,7 @@ If_Man_t * Nwk_ManToIf( Aig_Man_t * p, If_Par_t * pPars, Vec_Ptr_t * vAigToIf )
if
(
Aig_ObjIsChoice
(
p
,
pNode
)
)
if
(
Aig_ObjIsChoice
(
p
,
pNode
)
)
{
{
pIfMan
->
nChoices
++
;
pIfMan
->
nChoices
++
;
for
(
pPrev
=
pNode
,
pFanin
=
p
->
pEquivs
[
pNode
->
Id
];
pFanin
;
pPrev
=
pFanin
,
pFanin
=
p
->
pEquivs
[
pFanin
->
Id
]
)
for
(
pPrev
=
pNode
,
pFanin
=
Aig_ObjEquiv
(
p
,
pNode
);
pFanin
;
pPrev
=
pFanin
,
pFanin
=
Aig_ObjEquiv
(
p
,
pFanin
)
)
If_ObjSetChoice
(
pPrev
->
pData
,
pFanin
->
pData
);
If_ObjSetChoice
(
pPrev
->
pData
,
pFanin
->
pData
);
If_ManCreateChoice
(
pIfMan
,
pNode
->
pData
);
If_ManCreateChoice
(
pIfMan
,
pNode
->
pData
);
}
}
...
...
src/aig/nwk/nwkSpeedup.c
View file @
661abab0
...
@@ -137,7 +137,7 @@ void Aig_ManSpeedupNode( Nwk_Man_t * pNtk, Aig_Man_t * pAig, Nwk_Obj_t * pNode,
...
@@ -137,7 +137,7 @@ void Aig_ManSpeedupNode( Nwk_Man_t * pNtk, Aig_Man_t * pAig, Nwk_Obj_t * pNode,
// create choice node
// create choice node
pAnd
=
Aig_Regular
(
pNode
->
pCopy
);
// repr
pAnd
=
Aig_Regular
(
pNode
->
pCopy
);
// repr
pTemp
=
Aig_Regular
(
ppCofs
[
0
]);
// new
pTemp
=
Aig_Regular
(
ppCofs
[
0
]);
// new
if
(
pAig
->
pEquivs
[
pAnd
->
Id
]
==
NULL
&&
pAig
->
pEquivs
[
pTemp
->
Id
]
==
NULL
&&
!
Aig_ObjCheckTfi
(
pAig
,
pTemp
,
pAnd
)
)
if
(
Aig_ObjEquiv
(
pAig
,
pAnd
)
==
NULL
&&
Aig_ObjEquiv
(
pAig
,
pTemp
)
==
NULL
&&
!
Aig_ObjCheckTfi
(
pAig
,
pTemp
,
pAnd
)
)
pAig
->
pEquivs
[
pAnd
->
Id
]
=
pTemp
;
pAig
->
pEquivs
[
pAnd
->
Id
]
=
pTemp
;
}
}
...
@@ -339,9 +339,9 @@ Aig_Man_t * Nwk_ManSpeedup( Nwk_Man_t * pNtk, int fUseLutLib, int Percentage, in
...
@@ -339,9 +339,9 @@ Aig_Man_t * Nwk_ManSpeedup( Nwk_Man_t * pNtk, int fUseLutLib, int Percentage, in
// remove invalid choice nodes
// remove invalid choice nodes
Aig_ManForEachNode
(
pAig
,
pAnd
,
i
)
Aig_ManForEachNode
(
pAig
,
pAnd
,
i
)
if
(
pAig
->
pEquivs
[
pAnd
->
Id
]
)
if
(
Aig_ObjEquiv
(
pAig
,
pAnd
)
)
{
{
if
(
Aig_ObjRefs
(
pAig
->
pEquivs
[
pAnd
->
Id
]
)
>
0
)
if
(
Aig_ObjRefs
(
Aig_ObjEquiv
(
pAig
,
pAnd
)
)
>
0
)
pAig
->
pEquivs
[
pAnd
->
Id
]
=
NULL
;
pAig
->
pEquivs
[
pAnd
->
Id
]
=
NULL
;
}
}
...
...
src/aig/nwk/nwkUtil.c
View file @
661abab0
...
@@ -238,6 +238,21 @@ void Nwk_ObjPrint( Nwk_Obj_t * pObj )
...
@@ -238,6 +238,21 @@ void Nwk_ObjPrint( Nwk_Obj_t * pObj )
printf
(
"
\n
"
);
printf
(
"
\n
"
);
}
}
/**Function*************************************************************
Synopsis [Deletes the node.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Nwk_ManDumpBlif
(
Nwk_Man_t
*
pNtk
,
char
*
pFileName
,
Vec_Ptr_t
*
vCiNames
,
Vec_Ptr_t
*
vCoNames
)
{
printf
(
"Dumping logic network is currently not supported.
\n
"
);
}
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
/// END OF FILE ///
...
...
src/base/abc/abcObj.c
View file @
661abab0
...
@@ -72,8 +72,8 @@ void Abc_ObjRecycle( Abc_Obj_t * pObj )
...
@@ -72,8 +72,8 @@ void Abc_ObjRecycle( Abc_Obj_t * pObj )
Abc_Ntk_t
*
pNtk
=
pObj
->
pNtk
;
Abc_Ntk_t
*
pNtk
=
pObj
->
pNtk
;
int
LargePiece
=
(
4
<<
ABC_NUM_STEPS
);
int
LargePiece
=
(
4
<<
ABC_NUM_STEPS
);
// free large fanout arrays
// free large fanout arrays
if
(
pNtk
->
pMmStep
&&
pObj
->
vFanouts
.
nCap
*
4
>
LargePiece
)
//
if ( pNtk->pMmStep && pObj->vFanouts.nCap * 4 > LargePiece )
FREE
(
pObj
->
vFanouts
.
pArray
);
//
FREE( pObj->vFanouts.pArray );
if
(
pNtk
->
pMmStep
==
NULL
)
if
(
pNtk
->
pMmStep
==
NULL
)
{
{
FREE
(
pObj
->
vFanouts
.
pArray
);
FREE
(
pObj
->
vFanouts
.
pArray
);
...
...
src/base/abc/abcSop.c
View file @
661abab0
...
@@ -439,6 +439,41 @@ char * Abc_SopCreateFromIsop( Extra_MmFlex_t * pMan, int nVars, Vec_Int_t * vCov
...
@@ -439,6 +439,41 @@ char * Abc_SopCreateFromIsop( Extra_MmFlex_t * pMan, int nVars, Vec_Int_t * vCov
/**Function*************************************************************
/**Function*************************************************************
Synopsis [Creates the cover from the ISOP computed from TT.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Abc_SopToIsop
(
char
*
pSop
,
Vec_Int_t
*
vCover
)
{
char
*
pCube
;
int
k
,
nVars
,
Entry
;
nVars
=
Abc_SopGetVarNum
(
pSop
);
assert
(
nVars
>
0
);
// create cubes
Vec_IntClear
(
vCover
);
for
(
pCube
=
pSop
;
*
pCube
;
pCube
+=
nVars
+
3
)
{
Entry
=
0
;
for
(
k
=
nVars
-
1
;
k
>=
0
;
k
--
)
if
(
pCube
[
k
]
==
'0'
)
Entry
=
(
Entry
<<
2
)
|
1
;
else
if
(
pCube
[
k
]
==
'1'
)
Entry
=
(
Entry
<<
2
)
|
2
;
else
if
(
pCube
[
k
]
==
'-'
)
Entry
=
(
Entry
<<
2
);
else
assert
(
0
);
Vec_IntPush
(
vCover
,
Entry
);
}
}
/**Function*************************************************************
Synopsis [Reads the number of cubes in the cover.]
Synopsis [Reads the number of cubes in the cover.]
Description []
Description []
...
...
src/base/abci/abc.c
View file @
661abab0
This diff is collapsed.
Click to expand it.
src/base/abci/abcDar.c
View file @
661abab0
...
@@ -353,7 +353,7 @@ Abc_Ntk_t * Abc_NtkFromDarChoices( Abc_Ntk_t * pNtkOld, Aig_Man_t * pMan )
...
@@ -353,7 +353,7 @@ Abc_Ntk_t * Abc_NtkFromDarChoices( Abc_Ntk_t * pNtkOld, Aig_Man_t * pMan )
Vec_PtrForEachEntry
(
vNodes
,
pObj
,
i
)
Vec_PtrForEachEntry
(
vNodes
,
pObj
,
i
)
{
{
pObj
->
pData
=
Abc_AigAnd
(
pNtkNew
->
pManFunc
,
(
Abc_Obj_t
*
)
Aig_ObjChild0Copy
(
pObj
),
(
Abc_Obj_t
*
)
Aig_ObjChild1Copy
(
pObj
)
);
pObj
->
pData
=
Abc_AigAnd
(
pNtkNew
->
pManFunc
,
(
Abc_Obj_t
*
)
Aig_ObjChild0Copy
(
pObj
),
(
Abc_Obj_t
*
)
Aig_ObjChild1Copy
(
pObj
)
);
if
(
(
pTemp
=
pMan
->
pEquivs
[
pObj
->
Id
]
)
)
if
(
(
pTemp
=
Aig_ObjEquiv
(
pMan
,
pObj
)
)
)
{
{
Abc_Obj_t
*
pAbcRepr
,
*
pAbcObj
;
Abc_Obj_t
*
pAbcRepr
,
*
pAbcObj
;
assert
(
pTemp
->
pData
!=
NULL
);
assert
(
pTemp
->
pData
!=
NULL
);
...
...
src/base/abci/abcFpga.c
View file @
661abab0
...
@@ -201,7 +201,7 @@ Abc_Ntk_t * Abc_NtkFromFpga( Fpga_Man_t * pMan, Abc_Ntk_t * pNtk )
...
@@ -201,7 +201,7 @@ Abc_Ntk_t * Abc_NtkFromFpga( Fpga_Man_t * pMan, Abc_Ntk_t * pNtk )
ProgressBar
*
pProgress
;
ProgressBar
*
pProgress
;
Abc_Ntk_t
*
pNtkNew
;
Abc_Ntk_t
*
pNtkNew
;
Abc_Obj_t
*
pNode
,
*
pNodeNew
;
Abc_Obj_t
*
pNode
,
*
pNodeNew
;
int
i
,
nDupGates
;
int
i
;
//
, nDupGates;
// create the new network
// create the new network
pNtkNew
=
Abc_NtkStartFrom
(
pNtk
,
ABC_NTK_LOGIC
,
ABC_FUNC_BDD
);
pNtkNew
=
Abc_NtkStartFrom
(
pNtk
,
ABC_NTK_LOGIC
,
ABC_FUNC_BDD
);
// make the mapper point to the new network
// make the mapper point to the new network
...
@@ -229,7 +229,7 @@ Abc_Ntk_t * Abc_NtkFromFpga( Fpga_Man_t * pMan, Abc_Ntk_t * pNtk )
...
@@ -229,7 +229,7 @@ Abc_Ntk_t * Abc_NtkFromFpga( Fpga_Man_t * pMan, Abc_Ntk_t * pNtk )
if
(
Abc_ObjFanoutNum
(
pNodeNew
)
==
0
)
if
(
Abc_ObjFanoutNum
(
pNodeNew
)
==
0
)
Abc_NtkDeleteObj
(
pNodeNew
);
Abc_NtkDeleteObj
(
pNodeNew
);
// decouple the PO driver nodes to reduce the number of levels
// decouple the PO driver nodes to reduce the number of levels
nDupGates
=
Abc_NtkLogicMakeSimpleCos
(
pNtkNew
,
1
);
//
nDupGates = Abc_NtkLogicMakeSimpleCos( pNtkNew, 1 );
// if ( nDupGates && Fpga_ManReadVerbose(pMan) )
// if ( nDupGates && Fpga_ManReadVerbose(pMan) )
// printf( "Duplicated %d gates to decouple the CO drivers.\n", nDupGates );
// printf( "Duplicated %d gates to decouple the CO drivers.\n", nDupGates );
return
pNtkNew
;
return
pNtkNew
;
...
...
src/base/abci/abcIf.c
View file @
661abab0
...
@@ -186,7 +186,7 @@ Abc_Ntk_t * Abc_NtkFromIf( If_Man_t * pIfMan, Abc_Ntk_t * pNtk )
...
@@ -186,7 +186,7 @@ Abc_Ntk_t * Abc_NtkFromIf( If_Man_t * pIfMan, Abc_Ntk_t * pNtk )
Abc_Ntk_t
*
pNtkNew
;
Abc_Ntk_t
*
pNtkNew
;
Abc_Obj_t
*
pNode
,
*
pNodeNew
;
Abc_Obj_t
*
pNode
,
*
pNodeNew
;
Vec_Int_t
*
vCover
;
Vec_Int_t
*
vCover
;
int
i
,
nDupGates
;
int
i
;
//
, nDupGates;
// create the new network
// create the new network
if
(
pIfMan
->
pPars
->
fUseBdds
||
pIfMan
->
pPars
->
fUseCnfs
||
pIfMan
->
pPars
->
fUseMv
)
if
(
pIfMan
->
pPars
->
fUseBdds
||
pIfMan
->
pPars
->
fUseCnfs
||
pIfMan
->
pPars
->
fUseMv
)
pNtkNew
=
Abc_NtkStartFrom
(
pNtk
,
ABC_NTK_LOGIC
,
ABC_FUNC_BDD
);
pNtkNew
=
Abc_NtkStartFrom
(
pNtk
,
ABC_NTK_LOGIC
,
ABC_FUNC_BDD
);
...
@@ -223,7 +223,7 @@ Abc_Ntk_t * Abc_NtkFromIf( If_Man_t * pIfMan, Abc_Ntk_t * pNtk )
...
@@ -223,7 +223,7 @@ Abc_Ntk_t * Abc_NtkFromIf( If_Man_t * pIfMan, Abc_Ntk_t * pNtk )
if
(
pIfMan
->
pPars
->
fUseBdds
)
if
(
pIfMan
->
pPars
->
fUseBdds
)
Abc_NtkBddReorder
(
pNtkNew
,
0
);
Abc_NtkBddReorder
(
pNtkNew
,
0
);
// decouple the PO driver nodes to reduce the number of levels
// decouple the PO driver nodes to reduce the number of levels
nDupGates
=
Abc_NtkLogicMakeSimpleCos
(
pNtkNew
,
1
);
//
nDupGates = Abc_NtkLogicMakeSimpleCos( pNtkNew, 1 );
// if ( nDupGates && If_ManReadVerbose(pIfMan) )
// if ( nDupGates && If_ManReadVerbose(pIfMan) )
// printf( "Duplicated %d gates to decouple the CO drivers.\n", nDupGates );
// printf( "Duplicated %d gates to decouple the CO drivers.\n", nDupGates );
return
pNtkNew
;
return
pNtkNew
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment