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
fdcbb2cf
Commit
fdcbb2cf
authored
Nov 09, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Performance bug fix in choice generation.
parent
aa2c7c05
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
51 additions
and
27 deletions
+51
-27
src/aig/aig/aigDfs.c
+14
-1
src/aig/gia/giaIf.c
+1
-0
src/base/abc/abc.h
+1
-0
src/base/abci/abcDar.c
+18
-11
src/base/abci/abcIf.c
+14
-12
src/base/abci/abcRec3.c
+2
-2
src/map/if/if.h
+1
-1
No files found.
src/aig/aig/aigDfs.c
View file @
fdcbb2cf
...
@@ -392,7 +392,20 @@ Vec_Ptr_t * Aig_ManDfsChoices( Aig_Man_t * p )
...
@@ -392,7 +392,20 @@ Vec_Ptr_t * Aig_ManDfsChoices( Aig_Man_t * p )
{
{
Vec_Ptr_t
*
vNodes
;
Vec_Ptr_t
*
vNodes
;
Aig_Obj_t
*
pObj
;
Aig_Obj_t
*
pObj
;
int
i
;
int
i
,
Counter
=
0
;
Aig_ManForEachNode
(
p
,
pObj
,
i
)
{
if
(
Aig_ObjEquiv
(
p
,
pObj
)
==
NULL
)
continue
;
Counter
=
0
;
for
(
pObj
=
Aig_ObjEquiv
(
p
,
pObj
)
;
pObj
;
pObj
=
Aig_ObjEquiv
(
p
,
pObj
)
)
Counter
++
;
printf
(
"%d "
,
Counter
);
}
printf
(
"
\n
"
);
assert
(
p
->
pEquivs
!=
NULL
);
assert
(
p
->
pEquivs
!=
NULL
);
Aig_ManIncrementTravId
(
p
);
Aig_ManIncrementTravId
(
p
);
// mark constant and PIs
// mark constant and PIs
...
...
src/aig/gia/giaIf.c
View file @
fdcbb2cf
...
@@ -299,6 +299,7 @@ If_Man_t * Gia_ManToIf( Gia_Man_t * p, If_Par_t * pPars )
...
@@ -299,6 +299,7 @@ If_Man_t * Gia_ManToIf( Gia_Man_t * p, If_Par_t * pPars )
for
(
pPrev
=
pObj
,
pSibl
=
Gia_ObjSiblObj
(
p
,
i
);
pSibl
;
pPrev
=
pSibl
,
pSibl
=
Gia_ObjSiblObj
(
p
,
Gia_ObjId
(
p
,
pSibl
))
)
for
(
pPrev
=
pObj
,
pSibl
=
Gia_ObjSiblObj
(
p
,
i
);
pSibl
;
pPrev
=
pSibl
,
pSibl
=
Gia_ObjSiblObj
(
p
,
Gia_ObjId
(
p
,
pSibl
))
)
If_ObjSetChoice
(
If_ManObj
(
pIfMan
,
Gia_ObjValue
(
pObj
)),
If_ManObj
(
pIfMan
,
Gia_ObjValue
(
pSibl
))
);
If_ObjSetChoice
(
If_ManObj
(
pIfMan
,
Gia_ObjValue
(
pObj
)),
If_ManObj
(
pIfMan
,
Gia_ObjValue
(
pSibl
))
);
If_ManCreateChoice
(
pIfMan
,
If_ManObj
(
pIfMan
,
Gia_ObjValue
(
pObj
))
);
If_ManCreateChoice
(
pIfMan
,
If_ManObj
(
pIfMan
,
Gia_ObjValue
(
pObj
))
);
pPars
->
fExpRed
=
0
;
}
}
// assert( If_ObjLevel(pIfObj) == Gia_ObjLevel(pNode) );
// assert( If_ObjLevel(pIfObj) == Gia_ObjLevel(pNode) );
}
}
...
...
src/base/abc/abc.h
View file @
fdcbb2cf
...
@@ -334,6 +334,7 @@ static inline Vec_Int_t * Abc_ObjFanoutVec( Abc_Obj_t * pObj ) { return &p
...
@@ -334,6 +334,7 @@ static inline Vec_Int_t * Abc_ObjFanoutVec( Abc_Obj_t * pObj ) { return &p
static
inline
Abc_Obj_t
*
Abc_ObjCopy
(
Abc_Obj_t
*
pObj
)
{
return
pObj
->
pCopy
;
}
static
inline
Abc_Obj_t
*
Abc_ObjCopy
(
Abc_Obj_t
*
pObj
)
{
return
pObj
->
pCopy
;
}
static
inline
Abc_Ntk_t
*
Abc_ObjNtk
(
Abc_Obj_t
*
pObj
)
{
return
pObj
->
pNtk
;
}
static
inline
Abc_Ntk_t
*
Abc_ObjNtk
(
Abc_Obj_t
*
pObj
)
{
return
pObj
->
pNtk
;
}
static
inline
void
*
Abc_ObjData
(
Abc_Obj_t
*
pObj
)
{
return
pObj
->
pData
;
}
static
inline
void
*
Abc_ObjData
(
Abc_Obj_t
*
pObj
)
{
return
pObj
->
pData
;
}
static
inline
Abc_Obj_t
*
Abc_ObjEquiv
(
Abc_Obj_t
*
pObj
)
{
return
(
Abc_Obj_t
*
)
pObj
->
pData
;
}
static
inline
Abc_Obj_t
*
Abc_ObjCopyCond
(
Abc_Obj_t
*
pObj
)
{
return
Abc_ObjRegular
(
pObj
)
->
pCopy
?
Abc_ObjNotCond
(
Abc_ObjRegular
(
pObj
)
->
pCopy
,
Abc_ObjIsComplement
(
pObj
))
:
NULL
;
}
static
inline
Abc_Obj_t
*
Abc_ObjCopyCond
(
Abc_Obj_t
*
pObj
)
{
return
Abc_ObjRegular
(
pObj
)
->
pCopy
?
Abc_ObjNotCond
(
Abc_ObjRegular
(
pObj
)
->
pCopy
,
Abc_ObjIsComplement
(
pObj
))
:
NULL
;
}
// setting data members of the network
// setting data members of the network
...
...
src/base/abci/abcDar.c
View file @
fdcbb2cf
...
@@ -864,7 +864,6 @@ Abc_Ntk_t * Abc_NtkAfterTrim( Aig_Man_t * pMan, Abc_Ntk_t * pNtkOld )
...
@@ -864,7 +864,6 @@ Abc_Ntk_t * Abc_NtkAfterTrim( Aig_Man_t * pMan, Abc_Ntk_t * pNtkOld )
***********************************************************************/
***********************************************************************/
Abc_Ntk_t
*
Abc_NtkFromDarChoices
(
Abc_Ntk_t
*
pNtkOld
,
Aig_Man_t
*
pMan
)
Abc_Ntk_t
*
Abc_NtkFromDarChoices
(
Abc_Ntk_t
*
pNtkOld
,
Aig_Man_t
*
pMan
)
{
{
Vec_Ptr_t
*
vNodes
;
Abc_Ntk_t
*
pNtkNew
;
Abc_Ntk_t
*
pNtkNew
;
Aig_Obj_t
*
pObj
,
*
pTemp
;
Aig_Obj_t
*
pObj
,
*
pTemp
;
int
i
;
int
i
;
...
@@ -874,32 +873,40 @@ Abc_Ntk_t * Abc_NtkFromDarChoices( Abc_Ntk_t * pNtkOld, Aig_Man_t * pMan )
...
@@ -874,32 +873,40 @@ Abc_Ntk_t * Abc_NtkFromDarChoices( Abc_Ntk_t * pNtkOld, Aig_Man_t * pMan )
pNtkNew
=
Abc_NtkStartFrom
(
pNtkOld
,
ABC_NTK_STRASH
,
ABC_FUNC_AIG
);
pNtkNew
=
Abc_NtkStartFrom
(
pNtkOld
,
ABC_NTK_STRASH
,
ABC_FUNC_AIG
);
pNtkNew
->
nConstrs
=
pMan
->
nConstrs
;
pNtkNew
->
nConstrs
=
pMan
->
nConstrs
;
// transfer the pointers to the basic nodes
// transfer the pointers to the basic nodes
Aig_ManCleanData
(
pMan
);
Aig_ManConst1
(
pMan
)
->
pData
=
Abc_AigConst1
(
pNtkNew
);
Aig_ManConst1
(
pMan
)
->
pData
=
Abc_AigConst1
(
pNtkNew
);
Aig_ManForEachCi
(
pMan
,
pObj
,
i
)
Aig_ManForEachCi
(
pMan
,
pObj
,
i
)
pObj
->
pData
=
Abc_NtkCi
(
pNtkNew
,
i
);
pObj
->
pData
=
Abc_NtkCi
(
pNtkNew
,
i
);
// rebuild the AIG
// rebuild the AIG
vNodes
=
Aig_ManDfsChoices
(
pMan
);
Aig_ManForEachNode
(
pMan
,
pObj
,
i
)
Vec_PtrForEachEntry
(
Aig_Obj_t
*
,
vNodes
,
pObj
,
i
)
{
{
pObj
->
pData
=
Abc_AigAnd
(
(
Abc_Aig_t
*
)
pNtkNew
->
pManFunc
,
(
Abc_Obj_t
*
)
Aig_ObjChild0Copy
(
pObj
),
(
Abc_Obj_t
*
)
Aig_ObjChild1Copy
(
pObj
)
);
pObj
->
pData
=
Abc_AigAnd
(
(
Abc_Aig_t
*
)
pNtkNew
->
pManFunc
,
(
Abc_Obj_t
*
)
Aig_ObjChild0Copy
(
pObj
),
(
Abc_Obj_t
*
)
Aig_ObjChild1Copy
(
pObj
)
);
if
(
(
pTemp
=
Aig_ObjEquiv
(
pMan
,
pObj
))
)
if
(
(
pTemp
=
Aig_ObjEquiv
(
pMan
,
pObj
))
)
{
{
Abc_Obj_t
*
pAbcRepr
,
*
pAbcObj
;
assert
(
pTemp
->
pData
!=
NULL
);
assert
(
pTemp
->
pData
!=
NULL
);
pAbcRepr
=
(
Abc_Obj_t
*
)
pObj
->
pData
;
((
Abc_Obj_t
*
)
pObj
->
pData
)
->
pData
=
((
Abc_Obj_t
*
)
pTemp
->
pData
);
pAbcObj
=
(
Abc_Obj_t
*
)
pTemp
->
pData
;
pAbcObj
->
pData
=
pAbcRepr
->
pData
;
pAbcRepr
->
pData
=
pAbcObj
;
}
}
}
}
//Abc_Print( 1, "Total = %d. Collected = %d.\n", Aig_ManNodeNum(pMan), Vec_PtrSize(vNodes) );
Vec_PtrFree
(
vNodes
);
// connect the PO nodes
// connect the PO nodes
Aig_ManForEachCo
(
pMan
,
pObj
,
i
)
Aig_ManForEachCo
(
pMan
,
pObj
,
i
)
Abc_ObjAddFanin
(
Abc_NtkCo
(
pNtkNew
,
i
),
(
Abc_Obj_t
*
)
Aig_ObjChild0Copy
(
pObj
)
);
Abc_ObjAddFanin
(
Abc_NtkCo
(
pNtkNew
,
i
),
(
Abc_Obj_t
*
)
Aig_ObjChild0Copy
(
pObj
)
);
if
(
!
Abc_NtkCheck
(
pNtkNew
)
)
if
(
!
Abc_NtkCheck
(
pNtkNew
)
)
Abc_Print
(
1
,
"Abc_NtkFromDar(): Network check has failed.
\n
"
);
Abc_Print
(
1
,
"Abc_NtkFromDar(): Network check has failed.
\n
"
);
// verify topological order
if
(
0
)
{
Abc_Obj_t
*
pNode
;
Abc_NtkForEachNode
(
pNtkNew
,
pNode
,
i
)
if
(
Abc_AigNodeIsChoice
(
pNode
)
)
{
int
Counter
=
0
;
for
(
pNode
=
Abc_ObjEquiv
(
pNode
);
pNode
;
pNode
=
Abc_ObjEquiv
(
pNode
)
)
Counter
++
;
printf
(
"%d "
,
Counter
);
}
printf
(
"
\n
"
);
}
return
pNtkNew
;
return
pNtkNew
;
}
}
...
...
src/base/abci/abcIf.c
View file @
fdcbb2cf
...
@@ -184,17 +184,16 @@ Abc_Ntk_t * Abc_NtkIf( Abc_Ntk_t * pNtk, If_Par_t * pPars )
...
@@ -184,17 +184,16 @@ Abc_Ntk_t * Abc_NtkIf( Abc_Ntk_t * pNtk, If_Par_t * pPars )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
static
inline
If_Obj_t
*
Abc_ObjIfCopy
(
Abc_Obj_t
*
pNode
)
{
return
(
If_Obj_t
*
)
pNode
->
pCopy
;
}
If_Man_t
*
Abc_NtkToIf
(
Abc_Ntk_t
*
pNtk
,
If_Par_t
*
pPars
)
If_Man_t
*
Abc_NtkToIf
(
Abc_Ntk_t
*
pNtk
,
If_Par_t
*
pPars
)
{
{
ProgressBar
*
pProgress
;
ProgressBar
*
pProgress
;
If_Man_t
*
pIfMan
;
If_Man_t
*
pIfMan
;
Abc_Obj_t
*
pNode
,
*
pFanin
,
*
pPrev
;
Vec_Ptr_t
*
vNodes
;
Vec_Ptr_t
*
vNodes
;
Abc_Obj_t
*
pNode
,
*
pPrev
;
int
i
;
int
i
;
assert
(
Abc_NtkIsStrash
(
pNtk
)
);
assert
(
Abc_NtkIsStrash
(
pNtk
)
);
// vNodes = Abc_NtkFindGoodOrder( pNtk );
vNodes
=
Abc_AigDfs
(
pNtk
,
0
,
0
);
// start the mapping manager and set its parameters
// start the mapping manager and set its parameters
pIfMan
=
If_ManStart
(
pPars
);
pIfMan
=
If_ManStart
(
pPars
);
...
@@ -212,34 +211,37 @@ If_Man_t * Abc_NtkToIf( Abc_Ntk_t * pNtk, If_Par_t * pPars )
...
@@ -212,34 +211,37 @@ If_Man_t * Abc_NtkToIf( Abc_Ntk_t * pNtk, If_Par_t * pPars )
{
{
pNode
->
pCopy
=
(
Abc_Obj_t
*
)
If_ManCreateCi
(
pIfMan
);
pNode
->
pCopy
=
(
Abc_Obj_t
*
)
If_ManCreateCi
(
pIfMan
);
// transfer logic level information
// transfer logic level information
((
If_Obj_t
*
)
pNode
->
pCopy
)
->
Level
=
pNode
->
Level
;
Abc_ObjIfCopy
(
pNode
)
->
Level
=
pNode
->
Level
;
}
}
// load the AIG into the mapper
// load the AIG into the mapper
pProgress
=
Extra_ProgressBarStart
(
stdout
,
Abc_NtkObjNumMax
(
pNtk
)
);
pProgress
=
Extra_ProgressBarStart
(
stdout
,
Abc_NtkObjNumMax
(
pNtk
)
);
// Abc_AigForEachAnd( pNtk, pNode, i )
vNodes
=
Abc_AigDfs
(
pNtk
,
0
,
0
);
Vec_PtrForEachEntry
(
Abc_Obj_t
*
,
vNodes
,
pNode
,
i
)
Vec_PtrForEachEntry
(
Abc_Obj_t
*
,
vNodes
,
pNode
,
i
)
{
{
Extra_ProgressBarUpdate
(
pProgress
,
i
,
"Initial"
);
Extra_ProgressBarUpdate
(
pProgress
,
i
,
"Initial"
);
// add the node to the mapper
// add the node to the mapper
pNode
->
pCopy
=
(
Abc_Obj_t
*
)
If_ManCreateAnd
(
pIfMan
,
pNode
->
pCopy
=
(
Abc_Obj_t
*
)
If_ManCreateAnd
(
pIfMan
,
If_NotCond
(
(
If_Obj_t
*
)
Abc_ObjFanin0
(
pNode
)
->
pCopy
,
Abc_ObjFaninC0
(
pNode
)
),
If_NotCond
(
Abc_ObjIfCopy
(
Abc_ObjFanin0
(
pNode
))
,
Abc_ObjFaninC0
(
pNode
)
),
If_NotCond
(
(
If_Obj_t
*
)
Abc_ObjFanin1
(
pNode
)
->
pCopy
,
Abc_ObjFaninC1
(
pNode
)
)
);
If_NotCond
(
Abc_ObjIfCopy
(
Abc_ObjFanin1
(
pNode
))
,
Abc_ObjFaninC1
(
pNode
)
)
);
// set up the choice node
// set up the choice node
if
(
Abc_AigNodeIsChoice
(
pNode
)
)
if
(
Abc_AigNodeIsChoice
(
pNode
)
)
{
{
for
(
pPrev
=
pNode
,
pFanin
=
(
Abc_Obj_t
*
)
pNode
->
pData
;
pFanin
;
pPrev
=
pFanin
,
pFanin
=
(
Abc_Obj_t
*
)
pFanin
->
pData
)
Abc_Obj_t
*
pEquiv
;
If_ObjSetChoice
(
(
If_Obj_t
*
)
pPrev
->
pCopy
,
(
If_Obj_t
*
)
pFanin
->
pCopy
);
// int Counter = 0;
If_ManCreateChoice
(
pIfMan
,
(
If_Obj_t
*
)
pNode
->
pCopy
);
assert
(
If_ObjId
(
Abc_ObjIfCopy
(
pNode
))
>
If_ObjId
(
Abc_ObjIfCopy
(
Abc_ObjEquiv
(
pNode
)))
);
for
(
pPrev
=
pNode
,
pEquiv
=
Abc_ObjEquiv
(
pPrev
);
pEquiv
;
pPrev
=
pEquiv
,
pEquiv
=
Abc_ObjEquiv
(
pPrev
)
)
If_ObjSetChoice
(
Abc_ObjIfCopy
(
pPrev
),
Abc_ObjIfCopy
(
pEquiv
)
);
//, Counter++;
// printf( "%d ", Counter );
If_ManCreateChoice
(
pIfMan
,
Abc_ObjIfCopy
(
pNode
)
);
}
}
//printf( "AIG node %2d -> IF node %2d\n", pNode->Id, ((If_Obj_t *)pNode->pCopy)->Id );
}
}
Extra_ProgressBarStop
(
pProgress
);
Extra_ProgressBarStop
(
pProgress
);
Vec_PtrFree
(
vNodes
);
Vec_PtrFree
(
vNodes
);
// set the primary outputs without copying the phase
// set the primary outputs without copying the phase
Abc_NtkForEachCo
(
pNtk
,
pNode
,
i
)
Abc_NtkForEachCo
(
pNtk
,
pNode
,
i
)
pNode
->
pCopy
=
(
Abc_Obj_t
*
)
If_ManCreateCo
(
pIfMan
,
If_NotCond
(
(
If_Obj_t
*
)
Abc_ObjFanin0
(
pNode
)
->
pCopy
,
Abc_ObjFaninC0
(
pNode
)
)
);
pNode
->
pCopy
=
(
Abc_Obj_t
*
)
If_ManCreateCo
(
pIfMan
,
If_NotCond
(
Abc_ObjIfCopy
(
Abc_ObjFanin0
(
pNode
))
,
Abc_ObjFaninC0
(
pNode
)
)
);
return
pIfMan
;
return
pIfMan
;
}
}
...
...
src/base/abci/abcRec3.c
View file @
fdcbb2cf
...
@@ -412,8 +412,8 @@ void Lms_ManPrintFuncStats( Lms_Man_t * p )
...
@@ -412,8 +412,8 @@ void Lms_ManPrintFuncStats( Lms_Man_t * p )
if
(
i
==
Vec_IntSize
(
p
->
vTruthPo
)
-
1
)
if
(
i
==
Vec_IntSize
(
p
->
vTruthPo
)
-
1
)
break
;
break
;
Next
=
Vec_IntEntry
(
p
->
vTruthPo
,
i
+
1
);
Next
=
Vec_IntEntry
(
p
->
vTruthPo
,
i
+
1
);
Counters
[
Vec_StrEntry
(
vSupps
,
Entry
)]
++
;
Counters
[
(
int
)
Vec_StrEntry
(
vSupps
,
Entry
)]
++
;
CountersS
[
Vec_StrEntry
(
vSupps
,
Entry
)]
+=
Next
-
Entry
;
CountersS
[
(
int
)
Vec_StrEntry
(
vSupps
,
Entry
)]
+=
Next
-
Entry
;
}
}
for
(
i
=
0
;
i
<=
LMS_VAR_MAX
;
i
++
)
for
(
i
=
0
;
i
<=
LMS_VAR_MAX
;
i
++
)
if
(
Counters
[
i
]
)
if
(
Counters
[
i
]
)
...
...
src/map/if/if.h
View file @
fdcbb2cf
...
@@ -335,7 +335,7 @@ static inline void * If_ObjCopy( If_Obj_t * pObj ) { r
...
@@ -335,7 +335,7 @@ static inline void * If_ObjCopy( If_Obj_t * pObj ) { r
static
inline
int
If_ObjLevel
(
If_Obj_t
*
pObj
)
{
return
pObj
->
Level
;
}
static
inline
int
If_ObjLevel
(
If_Obj_t
*
pObj
)
{
return
pObj
->
Level
;
}
static
inline
void
If_ObjSetLevel
(
If_Obj_t
*
pObj
,
int
Level
)
{
pObj
->
Level
=
Level
;
}
static
inline
void
If_ObjSetLevel
(
If_Obj_t
*
pObj
,
int
Level
)
{
pObj
->
Level
=
Level
;
}
static
inline
void
If_ObjSetCopy
(
If_Obj_t
*
pObj
,
void
*
pCopy
)
{
pObj
->
pCopy
=
pCopy
;
}
static
inline
void
If_ObjSetCopy
(
If_Obj_t
*
pObj
,
void
*
pCopy
)
{
pObj
->
pCopy
=
pCopy
;
}
static
inline
void
If_ObjSetChoice
(
If_Obj_t
*
pObj
,
If_Obj_t
*
pEqu
)
{
assert
(
pObj
->
Id
>
pEqu
->
Id
);
pObj
->
pEquiv
=
pEqu
;
}
static
inline
void
If_ObjSetChoice
(
If_Obj_t
*
pObj
,
If_Obj_t
*
pEqu
)
{
pObj
->
pEquiv
=
pEqu
;
}
static
inline
If_Cut_t
*
If_ObjCutBest
(
If_Obj_t
*
pObj
)
{
return
&
pObj
->
CutBest
;
}
static
inline
If_Cut_t
*
If_ObjCutBest
(
If_Obj_t
*
pObj
)
{
return
&
pObj
->
CutBest
;
}
static
inline
unsigned
If_ObjCutSign
(
unsigned
ObjId
)
{
return
(
1
<<
(
ObjId
%
31
));
}
static
inline
unsigned
If_ObjCutSign
(
unsigned
ObjId
)
{
return
(
1
<<
(
ObjId
%
31
));
}
...
...
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