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
7d15b00e
Commit
7d15b00e
authored
Apr 19, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Logic restructuring after mapping.
parent
f401c17f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
65 additions
and
9 deletions
+65
-9
src/base/acb/acb.h
+51
-2
src/base/acb/acbMfs.c
+6
-6
src/base/acb/acbPush.c
+0
-0
src/misc/util/utilTruth.h
+8
-1
No files found.
src/base/acb/acb.h
View file @
7d15b00e
...
...
@@ -256,7 +256,8 @@ static inline int * Acb_ObjFanins( Acb_Ntk_t * p, int i )
static
inline
int
Acb_ObjFanin
(
Acb_Ntk_t
*
p
,
int
i
,
int
k
)
{
return
Acb_ObjFanins
(
p
,
i
)[
k
+
1
];
}
static
inline
int
Acb_ObjFaninNum
(
Acb_Ntk_t
*
p
,
int
i
)
{
return
Acb_ObjFanins
(
p
,
i
)[
0
];
}
static
inline
int
Acb_ObjFanoutNum
(
Acb_Ntk_t
*
p
,
int
i
)
{
return
Vec_IntSize
(
Vec_WecEntry
(
&
p
->
vFanouts
,
i
)
);
}
static
inline
Vec_Int_t
*
Acb_ObjFanoutVec
(
Acb_Ntk_t
*
p
,
int
i
)
{
return
Vec_WecEntry
(
&
p
->
vFanouts
,
i
);
}
static
inline
Vec_Int_t
*
Acb_ObjFanoutVec
(
Acb_Ntk_t
*
p
,
int
i
)
{
assert
(
i
>
0
);
return
Vec_WecEntry
(
&
p
->
vFanouts
,
i
);
}
static
inline
int
Acb_ObjFanout
(
Acb_Ntk_t
*
p
,
int
i
,
int
k
)
{
return
Vec_IntEntry
(
Acb_ObjFanoutVec
(
p
,
i
),
k
);
}
static
inline
int
Acb_ObjFanin0
(
Acb_Ntk_t
*
p
,
int
i
)
{
return
Acb_ObjFanins
(
p
,
i
)[
1
];
}
static
inline
int
Acb_ObjCioId
(
Acb_Ntk_t
*
p
,
int
i
)
{
return
Acb_ObjFanins
(
p
,
i
)[
2
];
}
...
...
@@ -276,7 +277,6 @@ static inline int Acb_ObjLevelR( Acb_Ntk_t * p, int i )
static
inline
int
Acb_ObjPathD
(
Acb_Ntk_t
*
p
,
int
i
)
{
assert
(
i
>
0
);
return
Vec_IntEntry
(
&
p
->
vPathD
,
i
);
}
static
inline
int
Acb_ObjPathR
(
Acb_Ntk_t
*
p
,
int
i
)
{
assert
(
i
>
0
);
return
Vec_IntEntry
(
&
p
->
vPathR
,
i
);
}
static
inline
float
Acb_ObjCounts
(
Acb_Ntk_t
*
p
,
int
i
)
{
assert
(
i
>
0
);
return
Vec_FltEntry
(
&
p
->
vCounts
,
i
);
}
static
inline
Vec_Int_t
*
Acb_ObjFanout
(
Acb_Ntk_t
*
p
,
int
i
)
{
assert
(
i
>
0
);
return
Vec_WecEntry
(
&
p
->
vFanouts
,
i
);
}
static
inline
Vec_Str_t
*
Acb_ObjCnfs
(
Acb_Ntk_t
*
p
,
int
i
)
{
assert
(
i
>
0
);
return
(
Vec_Str_t
*
)
Vec_WecEntry
(
&
p
->
vCnfs
,
i
);
}
static
inline
void
Acb_ObjSetCopy
(
Acb_Ntk_t
*
p
,
int
i
,
int
x
)
{
assert
(
Acb_ObjCopy
(
p
,
i
)
==
-
1
);
Vec_IntWriteEntry
(
&
p
->
vObjCopy
,
i
,
x
);
}
...
...
@@ -361,6 +361,8 @@ static inline void Acb_NtkIncTravId( Acb_Ntk_t * p )
for ( i = Vec_StrSize(&p->vObjType)-1; i > 0; i-- ) if ( !Acb_ObjType(p, i) ) {} else
#define Acb_NtkForEachNode( p, i ) \
for ( i = 1; i < Vec_StrSize(&p->vObjType); i++ ) if ( !Acb_ObjType(p, i) || Acb_ObjIsCio(p, i) ) {} else
#define Acb_NtkForEachNodeSupp( p, i, nSuppSize ) \
for ( i = 1; i < Vec_StrSize(&p->vObjType); i++ ) if ( !Acb_ObjType(p, i) || Acb_ObjIsCio(p, i) || Acb_ObjFaninNum(p, i) != nSuppSize ) {} else
#define Acb_NtkForEachNodeReverse( p, i ) \
for ( i = Vec_StrSize(&p->vObjType)-1; i > 0; i-- ) if ( !Acb_ObjType(p, i) || Acb_ObjIsCio(p, i) ) {} else
#define Acb_NtkForEachObjType( p, Type, i ) \
...
...
@@ -403,12 +405,35 @@ static inline int Acb_ObjFonNum( Acb_Ntk_t * p, int iObj )
Count
++
;
return
Count
;
}
static
inline
int
Acb_ObjWhatFanin
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFaninGiven
)
{
int
k
,
iFanin
,
*
pFanins
;
Acb_ObjForEachFaninFast
(
p
,
iObj
,
pFanins
,
iFanin
,
k
)
if
(
iFanin
==
iFaninGiven
)
return
k
;
return
-
1
;
}
static
inline
void
Acb_ObjAddFanin
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFanin
)
{
int
*
pFanins
=
Acb_ObjFanins
(
p
,
iObj
);
assert
(
pFanins
[
1
+
pFanins
[
0
]
]
==
-
1
);
pFanins
[
1
+
pFanins
[
0
]
++
]
=
iFanin
;
}
static
inline
void
Acb_ObjDeleteFaninIndex
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFaninIndex
)
{
int
i
,
*
pFanins
=
Acb_ObjFanins
(
p
,
iObj
);
pFanins
[
0
]
--
;
for
(
i
=
iFaninIndex
;
i
<
pFanins
[
0
];
i
++
)
pFanins
[
1
+
i
]
=
pFanins
[
2
+
i
];
pFanins
[
1
+
pFanins
[
0
]
]
=
-
1
;
}
static
inline
void
Acb_ObjDeleteFanin
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFanin
)
{
int
*
pFanins
=
Acb_ObjFanins
(
p
,
iObj
);
int
iFaninIndex
=
Acb_ObjWhatFanin
(
p
,
iObj
,
iFanin
);
assert
(
pFanins
[
1
+
iFaninIndex
]
==
iFanin
);
Acb_ObjDeleteFaninIndex
(
p
,
iObj
,
iFaninIndex
);
}
static
inline
void
Acb_ObjAddFanins
(
Acb_Ntk_t
*
p
,
int
iObj
,
Vec_Int_t
*
vFanins
)
{
int
i
,
iFanin
;
...
...
@@ -495,12 +520,23 @@ static inline void Acb_ObjDelete( Acb_Ntk_t * p, int iObj )
Acb_ObjForEachFon
(
p
,
iObj
,
i
)
Acb_ObjCleanType
(
p
,
i
);
}
static
inline
void
Acb_ObjAddFaninFanoutOne
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFanin
)
{
Vec_IntPush
(
Vec_WecEntry
(
&
p
->
vFanouts
,
iFanin
),
iObj
);
Acb_ObjAddFanin
(
p
,
iObj
,
iFanin
);
}
static
inline
void
Acb_ObjAddFaninFanout
(
Acb_Ntk_t
*
p
,
int
iObj
)
{
int
k
,
iFanin
,
*
pFanins
;
Acb_ObjForEachFaninFast
(
p
,
iObj
,
pFanins
,
iFanin
,
k
)
Vec_IntPush
(
Vec_WecEntry
(
&
p
->
vFanouts
,
iFanin
),
iObj
);
}
static
inline
void
Acb_ObjRemoveFaninFanoutOne
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFanin
)
{
int
RetValue
=
Vec_IntRemove
(
Vec_WecEntry
(
&
p
->
vFanouts
,
iFanin
),
iObj
);
assert
(
RetValue
);
Acb_ObjDeleteFanin
(
p
,
iObj
,
iFanin
);
}
static
inline
void
Acb_ObjRemoveFaninFanout
(
Acb_Ntk_t
*
p
,
int
iObj
)
{
int
k
,
iFanin
,
*
pFanins
;
...
...
@@ -510,6 +546,19 @@ static inline void Acb_ObjRemoveFaninFanout( Acb_Ntk_t * p, int iObj )
assert
(
RetValue
);
}
}
static
inline
void
Acb_ObjPatchFanin
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFanin
,
int
iFaninNew
)
{
int
i
,
RetValue
,
*
pFanins
=
Acb_ObjFanins
(
p
,
iObj
);
assert
(
iFanin
!=
iFaninNew
);
for
(
i
=
0
;
i
<
pFanins
[
0
];
i
++
)
if
(
pFanins
[
1
+
i
]
==
iFanin
)
pFanins
[
1
+
i
]
=
iFaninNew
;
if
(
!
Acb_NtkHasObjFanout
(
p
)
)
return
;
RetValue
=
Vec_IntRemove
(
Vec_WecEntry
(
&
p
->
vFanouts
,
iFanin
),
iObj
);
assert
(
RetValue
);
Vec_IntPush
(
Vec_WecEntry
(
&
p
->
vFanouts
,
iFaninNew
),
iObj
);
}
static
inline
void
Acb_NtkCreateFanout
(
Acb_Ntk_t
*
p
)
{
int
iObj
;
...
...
src/base/acb/acbMfs.c
View file @
7d15b00e
...
...
@@ -1576,7 +1576,7 @@ cleanup:
void
Acb_NtkOpt
(
Acb_Ntk_t
*
pNtk
,
Acb_Par_t
*
pPars
)
{
Acb_Mfs_t
*
pMan
=
Acb_MfsStart
(
pNtk
,
pPars
);
//
if ( pPars->fVerbose )
if
(
pPars
->
fVerbose
)
printf
(
"%s-optimization parameters: TfiLev(I) = %d TfoLev(O) = %d WinMax(W) = %d LutSize = %d
\n
"
,
pMan
->
pPars
->
fArea
?
"Area"
:
"Delay"
,
pMan
->
pPars
->
nTfiLevMax
,
pMan
->
pPars
->
nTfoLevMax
,
pMan
->
pPars
->
nWinNodeMax
,
pMan
->
pPars
->
nLutSize
);
Acb_NtkCreateFanout
(
pNtk
);
// fanout data structure
...
...
@@ -1592,8 +1592,8 @@ void Acb_NtkOpt( Acb_Ntk_t * pNtk, Acb_Par_t * pPars )
if
(
iObj
<
nNodes
&&
!
Vec_BitEntry
(
vVisited
,
iObj
)
&&
Acb_NtkObjMffcEstimate
(
pNtk
,
iObj
)
>=
n
)
{
pMan
->
nNodes
++
;
if
(
iObj
!=
103
)
continue
;
//
if ( iObj != 103 )
//
continue;
//Acb_NtkOptNode( pMan, iObj );
while
(
(
RetValue
=
Acb_NtkOptNode
(
pMan
,
iObj
))
&&
Acb_ObjFaninNum
(
pNtk
,
iObj
)
);
Vec_BitWriteEntry
(
vVisited
,
iObj
,
1
);
...
...
@@ -1609,13 +1609,13 @@ void Acb_NtkOpt( Acb_Ntk_t * pNtk, Acb_Par_t * pPars )
int
iObj
=
Vec_QuePop
(
pNtk
->
vQue
);
if
(
!
Acb_ObjType
(
pNtk
,
iObj
)
)
continue
;
if
(
iObj
!=
103
)
continue
;
//
if ( iObj != 103 )
//
continue;
//printf( "Trying node %4d (%4d) ", iObj, Value );
Acb_NtkOptNode
(
pMan
,
iObj
);
}
}
//
if ( pPars->fVerbose )
if
(
pPars
->
fVerbose
)
{
pMan
->
timeTotal
=
Abc_Clock
()
-
pMan
->
timeTotal
;
printf
(
"Node = %d Win = %d (Ave = %d) DivAve = %d Change = %d C = %d N1 = %d N2 = %d N3 = %d Over = %d Str = %d 2Node = %d.
\n
"
,
...
...
src/base/acb/acbPush.c
View file @
7d15b00e
This diff is collapsed.
Click to expand it.
src/misc/util/utilTruth.h
View file @
7d15b00e
...
...
@@ -1378,6 +1378,13 @@ static inline void Abc_TtMoveVar( word * pF, int nVars, int * V2P, int * P2V, in
P2V
[
jVar
]
^=
P2V
[
iVar
];
P2V
[
iVar
]
^=
P2V
[
jVar
];
}
static
inline
word
Abc_Tt6RemoveVar
(
word
t
,
int
iVar
)
{
assert
(
!
Abc_Tt6HasVar
(
t
,
iVar
)
);
while
(
iVar
<
5
)
t
=
Abc_Tt6SwapAdjacent
(
t
,
iVar
++
);
return
t
;
}
/**Function*************************************************************
...
...
@@ -2222,7 +2229,7 @@ static inline int Abc_TtCheckOutAnd( word t, int i, word * pOut )
{
word
c0
=
Abc_Tt6Cofactor0
(
t
,
i
);
word
c1
=
Abc_Tt6Cofactor1
(
t
,
i
);
assert
(
c0
=
=
c1
);
assert
(
c0
!
=
c1
);
if
(
c0
==
0
)
// F = i * G
{
if
(
pOut
)
*
pOut
=
c1
;
...
...
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