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
d8ddea44
Commit
d8ddea44
authored
Apr 11, 2008
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version abc80411_2
parent
651a32cd
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
50 additions
and
21 deletions
+50
-21
src/aig/aig/aigDup.c
+40
-1
src/aig/aig/aigPart.c
+2
-14
src/aig/dar/darScript.c
+5
-5
src/aig/ntl/ntlEc.c
+1
-1
src/base/abci/abc.c
+2
-0
No files found.
src/aig/aig/aigDup.c
View file @
d8ddea44
...
@@ -366,6 +366,45 @@ Vec_Ptr_t * Aig_ManOrderPios( Aig_Man_t * p, Aig_Man_t * pOrder )
...
@@ -366,6 +366,45 @@ Vec_Ptr_t * Aig_ManOrderPios( Aig_Man_t * p, Aig_Man_t * pOrder )
/**Function*************************************************************
/**Function*************************************************************
Synopsis [Duplicates the AIG manager recursively.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Aig_Obj_t
*
Aig_ManDupDfsOrder_rec
(
Aig_Man_t
*
pNew
,
Aig_Man_t
*
p
,
Aig_Obj_t
*
pObj
)
{
Aig_Obj_t
*
pObjNew
,
*
pEquivNew
=
NULL
;
if
(
pObj
->
pData
)
return
pObj
->
pData
;
if
(
Aig_ObjIsPi
(
pObj
)
)
return
NULL
;
if
(
p
->
pEquivs
&&
Aig_ObjEquiv
(
p
,
pObj
)
)
pEquivNew
=
Aig_ManDupDfsOrder_rec
(
pNew
,
p
,
Aig_ObjEquiv
(
p
,
pObj
)
);
if
(
!
Aig_ManDupDfsOrder_rec
(
pNew
,
p
,
Aig_ObjFanin0
(
pObj
)
)
)
return
NULL
;
if
(
Aig_ObjIsBuf
(
pObj
)
)
return
pObj
->
pData
=
Aig_ObjChild0Copy
(
pObj
);
if
(
!
Aig_ManDupDfsOrder_rec
(
pNew
,
p
,
Aig_ObjFanin1
(
pObj
)
)
)
return
NULL
;
pObjNew
=
Aig_Oper
(
pNew
,
Aig_ObjChild0Copy
(
pObj
),
Aig_ObjChild1Copy
(
pObj
),
Aig_ObjType
(
pObj
)
);
if
(
pObj
->
pHaig
)
Aig_Regular
(
pObjNew
)
->
pHaig
=
pObj
->
pHaig
;
if
(
pEquivNew
)
{
if
(
pNew
->
pEquivs
)
pNew
->
pEquivs
[
Aig_Regular
(
pObjNew
)
->
Id
]
=
Aig_Regular
(
pEquivNew
);
if
(
pNew
->
pReprs
)
pNew
->
pReprs
[
Aig_Regular
(
pEquivNew
)
->
Id
]
=
Aig_Regular
(
pObjNew
);
}
return
pObj
->
pData
=
pObjNew
;
}
/**Function*************************************************************
Synopsis [Duplicates the AIG manager.]
Synopsis [Duplicates the AIG manager.]
Description [This duplicator works for AIGs with choices.]
Description [This duplicator works for AIGs with choices.]
...
@@ -417,7 +456,7 @@ Aig_Man_t * Aig_ManDupDfsOrder( Aig_Man_t * p, Aig_Man_t * pOrder )
...
@@ -417,7 +456,7 @@ Aig_Man_t * Aig_ManDupDfsOrder( Aig_Man_t * p, Aig_Man_t * pOrder )
}
}
else
if
(
Aig_ObjIsPo
(
pObj
)
)
else
if
(
Aig_ObjIsPo
(
pObj
)
)
{
{
Aig_ManDupDfs_rec
(
pNew
,
p
,
Aig_ObjFanin0
(
pObj
)
);
Aig_ManDupDfs
Order
_rec
(
pNew
,
p
,
Aig_ObjFanin0
(
pObj
)
);
// assert( pObj->Level == ((Aig_Obj_t*)pObj->pData)->Level );
// assert( pObj->Level == ((Aig_Obj_t*)pObj->pData)->Level );
pObjNew
=
Aig_ObjCreatePo
(
pNew
,
Aig_ObjChild0Copy
(
pObj
)
);
pObjNew
=
Aig_ObjCreatePo
(
pNew
,
Aig_ObjChild0Copy
(
pObj
)
);
Aig_Regular
(
pObjNew
)
->
pHaig
=
pObj
->
pHaig
;
Aig_Regular
(
pObjNew
)
->
pHaig
=
pObj
->
pHaig
;
...
...
src/aig/aig/aigPart.c
View file @
d8ddea44
...
@@ -1312,19 +1312,7 @@ Aig_Man_t * Aig_ManChoicePartitioned( Vec_Ptr_t * vAigs, int nPartSize, int nCon
...
@@ -1312,19 +1312,7 @@ Aig_Man_t * Aig_ManChoicePartitioned( Vec_Ptr_t * vAigs, int nPartSize, int nCon
Vec_PtrForEachEntry
(
vAigs
,
pAig
,
i
)
Vec_PtrForEachEntry
(
vAigs
,
pAig
,
i
)
Aig_ManForEachPi
(
pAig
,
pObj
,
k
)
Aig_ManForEachPi
(
pAig
,
pObj
,
k
)
pObj
->
pNext
=
NULL
;
pObj
->
pNext
=
NULL
;
/*
// collect the missing outputs (outputs whose driver is not a node)
pAig = Vec_PtrEntry( vAigs, 0 );
Aig_ManConst1(pAig)->pData = Aig_ManConst1(pAigTotal);
Aig_ManForEachPi( pAig, pObj, i )
pAig->pData = Aig_ManPi( pAigTotal, i );
Aig_ManForEachPo( pAig, pObj, i )
if ( !Aig_ObjIsNode(Aig_ObjFanin0(pObj)) )
{
assert( Vec_PtrEntry( vOutsTotal, i ) == NULL );
Vec_PtrWriteEntry( vOutsTotal, i, Aig_ObjChild0Copy(pObj) );
}
*/
// add the outputs in the same order
// add the outputs in the same order
Vec_PtrForEachEntry
(
vOutsTotal
,
pObj
,
i
)
Vec_PtrForEachEntry
(
vOutsTotal
,
pObj
,
i
)
Aig_ObjCreatePo
(
pAigTotal
,
pObj
);
Aig_ObjCreatePo
(
pAigTotal
,
pObj
);
...
@@ -1335,7 +1323,7 @@ Aig_Man_t * Aig_ManChoicePartitioned( Vec_Ptr_t * vAigs, int nPartSize, int nCon
...
@@ -1335,7 +1323,7 @@ Aig_Man_t * Aig_ManChoicePartitioned( Vec_Ptr_t * vAigs, int nPartSize, int nCon
// create the equivalent nodes lists
// create the equivalent nodes lists
Aig_ManMarkValidChoices
(
pAig
);
Aig_ManMarkValidChoices
(
pAig
);
// reconstruct the network
// reconstruct the network
pAig
=
Aig_ManDupDfsOrder
(
pTemp
=
pAig
,
Vec_PtrEntry
(
vAigs
,
0
)
);
pAig
=
Aig_ManDupDfsOrder
(
pTemp
=
pAig
,
Vec_PtrEntry
(
vAigs
,
0
)
);
Aig_ManStop
(
pTemp
);
Aig_ManStop
(
pTemp
);
// duplicate the timing manager
// duplicate the timing manager
pTemp
=
Vec_PtrEntry
(
vAigs
,
0
);
pTemp
=
Vec_PtrEntry
(
vAigs
,
0
);
...
...
src/aig/dar/darScript.c
View file @
d8ddea44
...
@@ -171,7 +171,7 @@ Aig_Man_t * Dar_ManCompress( Aig_Man_t * pAig, int fBalance, int fUpdateLevel, i
...
@@ -171,7 +171,7 @@ Aig_Man_t * Dar_ManCompress( Aig_Man_t * pAig, int fBalance, int fUpdateLevel, i
pAig
=
Aig_ManDupDfs
(
pAig
);
pAig
=
Aig_ManDupDfs
(
pAig
);
if
(
fVerbose
)
Aig_ManPrintStats
(
pAig
);
if
(
fVerbose
)
Aig_ManPrintStats
(
pAig
);
/*
// balance
// balance
if ( fBalance )
if ( fBalance )
{
{
...
@@ -179,7 +179,7 @@ Aig_Man_t * Dar_ManCompress( Aig_Man_t * pAig, int fBalance, int fUpdateLevel, i
...
@@ -179,7 +179,7 @@ Aig_Man_t * Dar_ManCompress( Aig_Man_t * pAig, int fBalance, int fUpdateLevel, i
Aig_ManStop( pTemp );
Aig_ManStop( pTemp );
if ( fVerbose ) Aig_ManPrintStats( pAig );
if ( fVerbose ) Aig_ManPrintStats( pAig );
}
}
*/
// rewrite
// rewrite
Dar_ManRewrite
(
pAig
,
pParsRwr
);
Dar_ManRewrite
(
pAig
,
pParsRwr
);
pAig
=
Aig_ManDupDfs
(
pTemp
=
pAig
);
pAig
=
Aig_ManDupDfs
(
pTemp
=
pAig
);
...
@@ -243,7 +243,7 @@ Aig_Man_t * Dar_ManCompress2( Aig_Man_t * pAig, int fBalance, int fUpdateLevel,
...
@@ -243,7 +243,7 @@ Aig_Man_t * Dar_ManCompress2( Aig_Man_t * pAig, int fBalance, int fUpdateLevel,
pAig
=
Aig_ManDupDfs
(
pAig
);
pAig
=
Aig_ManDupDfs
(
pAig
);
if
(
fVerbose
)
Aig_ManPrintStats
(
pAig
);
if
(
fVerbose
)
Aig_ManPrintStats
(
pAig
);
/*
// balance
// balance
if ( fBalance )
if ( fBalance )
{
{
...
@@ -251,8 +251,7 @@ Aig_Man_t * Dar_ManCompress2( Aig_Man_t * pAig, int fBalance, int fUpdateLevel,
...
@@ -251,8 +251,7 @@ Aig_Man_t * Dar_ManCompress2( Aig_Man_t * pAig, int fBalance, int fUpdateLevel,
Aig_ManStop( pTemp );
Aig_ManStop( pTemp );
if ( fVerbose ) Aig_ManPrintStats( pAig );
if ( fVerbose ) Aig_ManPrintStats( pAig );
}
}
*/
// rewrite
// rewrite
Dar_ManRewrite
(
pAig
,
pParsRwr
);
Dar_ManRewrite
(
pAig
,
pParsRwr
);
pAig
=
Aig_ManDupDfs
(
pTemp
=
pAig
);
pAig
=
Aig_ManDupDfs
(
pTemp
=
pAig
);
...
@@ -388,6 +387,7 @@ clk = clock();
...
@@ -388,6 +387,7 @@ clk = clock();
// swap the first and last network
// swap the first and last network
// this should lead to the primary choice being "better" because of synthesis
// this should lead to the primary choice being "better" because of synthesis
// (it is also important when constructing choices)
if
(
!
fConstruct
)
if
(
!
fConstruct
)
{
{
pMan
=
Vec_PtrPop
(
vAigs
);
pMan
=
Vec_PtrPop
(
vAigs
);
...
...
src/aig/ntl/ntlEc.c
View file @
d8ddea44
...
@@ -276,7 +276,7 @@ Aig_Man_t * Ntl_ManPrepareSec( char * pFileName1, char * pFileName2 )
...
@@ -276,7 +276,7 @@ Aig_Man_t * Ntl_ManPrepareSec( char * pFileName1, char * pFileName2 )
{
{
if
(
pMan1
)
Ntl_ManFree
(
pMan1
);
if
(
pMan1
)
Ntl_ManFree
(
pMan1
);
if
(
pMan2
)
Ntl_ManFree
(
pMan2
);
if
(
pMan2
)
Ntl_ManFree
(
pMan2
);
printf
(
"Ntl_ManPrepareSec(): The designs have no latches. Use
d
combinational command
\"
*cec
\"
.
\n
"
);
printf
(
"Ntl_ManPrepareSec(): The designs have no latches. Use combinational command
\"
*cec
\"
.
\n
"
);
return
NULL
;
return
NULL
;
}
}
if
(
Ntl_ModelPiNum
(
pModel1
)
!=
Ntl_ModelPiNum
(
pModel2
)
)
if
(
Ntl_ModelPiNum
(
pModel1
)
!=
Ntl_ModelPiNum
(
pModel2
)
)
...
...
src/base/abci/abc.c
View file @
d8ddea44
...
@@ -16932,6 +16932,8 @@ int Abc_CommandAbc8DSec( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -16932,6 +16932,8 @@ int Abc_CommandAbc8DSec( Abc_Frame_t * pAbc, int argc, char ** argv )
}
}
pAig
=
Ntl_ManPrepareSec
(
pArgvNew
[
0
],
pArgvNew
[
1
]
);
pAig
=
Ntl_ManPrepareSec
(
pArgvNew
[
0
],
pArgvNew
[
1
]
);
if
(
pAig
==
NULL
)
return
0
;
Fra_FraigSec
(
pAig
,
nFrames
,
fRetimeFirst
,
fFraiging
,
fVerbose
,
fVeryVerbose
);
Fra_FraigSec
(
pAig
,
nFrames
,
fRetimeFirst
,
fFraiging
,
fVerbose
,
fVeryVerbose
);
Aig_ManStop
(
pAig
);
Aig_ManStop
(
pAig
);
return
0
;
return
0
;
...
...
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