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
53165710
Commit
53165710
authored
Sep 25, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improving DAG-aware unmapping.
parent
a55b1787
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
182 additions
and
6 deletions
+182
-6
abclib.dsp
+4
-0
src/aig/gia/giaShrink7.c
+165
-0
src/aig/gia/module.make
+1
-0
src/base/abci/abc.c
+5
-3
src/misc/extra/extraUtilDsd.c
+4
-3
src/misc/vec/vecHsh4.h
+3
-0
No files found.
abclib.dsp
View file @
53165710
...
...
@@ -3739,6 +3739,10 @@ SOURCE=.\src\aig\gia\giaShrink6.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaShrink7.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaSim.c
# End Source File
# Begin Source File
...
...
src/aig/gia/giaShrink7.c
0 → 100644
View file @
53165710
/**CFile****************************************************************
FileName [giaShrink7.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [Scalable AIG package.]
Synopsis [Implementation of DAG-aware unmapping for 6-input cuts.]
Author [Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - June 20, 2005.]
Revision [$Id: giaShrink6.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
***********************************************************************/
#include "gia.h"
#include "misc/vec/vecHsh4.h"
#include "misc/util/utilTruth.h"
ABC_NAMESPACE_IMPL_START
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
// operation manager
typedef
struct
Unm_Man_t_
Unm_Man_t
;
struct
Unm_Man_t_
{
Gia_Man_t
*
pGia
;
// user's AIG
Gia_Man_t
*
pNew
;
// constructed AIG
Hsh_Int4Man_t
*
pHash
;
// hash table
int
nNewSize
;
// expected size of new manager
Vec_Wrd_t
*
vTruths
;
// truth tables
Vec_Int_t
*
vLeaves
;
// temporary storage for leaves
abctime
clkStart
;
// starting the clock
};
extern
word
Shr_ManComputeTruth6
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
,
Vec_Int_t
*
vLeaves
,
Vec_Wrd_t
*
vTruths
);
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Unm_Man_t
*
Unm_ManAlloc
(
Gia_Man_t
*
pGia
)
{
Unm_Man_t
*
p
;
p
=
ABC_CALLOC
(
Unm_Man_t
,
1
);
p
->
clkStart
=
Abc_Clock
();
p
->
nNewSize
=
3
*
Gia_ManObjNum
(
pGia
)
/
2
;
p
->
pGia
=
pGia
;
p
->
pNew
=
Gia_ManStart
(
p
->
nNewSize
);
p
->
pNew
->
pName
=
Abc_UtilStrsav
(
pGia
->
pName
);
p
->
pNew
->
pSpec
=
Abc_UtilStrsav
(
pGia
->
pSpec
);
Gia_ManHashAlloc
(
p
->
pNew
);
Gia_ManCleanLevels
(
p
->
pNew
,
p
->
nNewSize
);
// allocate traversal IDs
p
->
pNew
->
nObjs
=
p
->
nNewSize
;
Gia_ManIncrementTravId
(
p
->
pNew
);
p
->
pNew
->
nObjs
=
1
;
// start hashing
p
->
pHash
=
Hsh_Int4ManStart
(
10
);
// truth tables
p
->
vTruths
=
Vec_WrdStart
(
Gia_ManObjNum
(
pGia
)
);
p
->
vLeaves
=
Vec_IntStart
(
10
);
return
p
;
}
Gia_Man_t
*
Unm_ManFree
(
Unm_Man_t
*
p
)
{
Gia_Man_t
*
pTemp
=
p
->
pNew
;
p
->
pNew
=
NULL
;
Gia_ManHashStop
(
pTemp
);
Vec_IntFreeP
(
&
pTemp
->
vLevels
);
Gia_ManSetRegNum
(
pTemp
,
Gia_ManRegNum
(
p
->
pGia
)
);
// truth tables
Vec_WrdFreeP
(
&
p
->
vTruths
);
Vec_IntFreeP
(
&
p
->
vLeaves
);
// free data structures
Hsh_Int4ManStop
(
p
->
pHash
);
ABC_FREE
(
p
);
Gia_ManStop
(
pTemp
);
pTemp
=
NULL
;
return
pTemp
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Unm_ManComputeTruths
(
Unm_Man_t
*
p
)
{
Vec_Wrd_t
*
vTruths2
;
Gia_Obj_t
*
pObj
;
int
i
,
k
,
iNode
;
word
uTruth
;
vTruths2
=
Vec_WrdStart
(
Gia_ManObjNum
(
p
->
pGia
)
);
Gia_ManForEachLut
(
p
->
pGia
,
i
)
{
pObj
=
Gia_ManObj
(
p
->
pGia
,
i
);
// collect leaves of this gate
Vec_IntClear
(
p
->
vLeaves
);
Gia_LutForEachFanin
(
p
->
pGia
,
i
,
iNode
,
k
)
Vec_IntPush
(
p
->
vLeaves
,
iNode
);
assert
(
Vec_IntSize
(
p
->
vLeaves
)
<=
6
);
// compute truth table
uTruth
=
Shr_ManComputeTruth6
(
p
->
pGia
,
pObj
,
p
->
vLeaves
,
vTruths2
);
Vec_WrdWriteEntry
(
p
->
vTruths
,
i
,
uTruth
);
if
(
i
%
100
==
0
)
Kit_DsdPrintFromTruth
(
(
unsigned
*
)
&
uTruth
,
6
),
printf
(
"
\n
"
);
}
Vec_WrdFreeP
(
&
vTruths2
);
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Gia_Man_t
*
Unm_ManTest
(
Gia_Man_t
*
pGia
)
{
Unm_Man_t
*
p
;
p
=
Unm_ManAlloc
(
pGia
);
Unm_ManComputeTruths
(
p
);
Abc_PrintTime
(
1
,
"Time"
,
Abc_Clock
()
-
p
->
clkStart
);
return
Unm_ManFree
(
p
);
}
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
ABC_NAMESPACE_IMPL_END
src/aig/gia/module.make
View file @
53165710
...
...
@@ -36,6 +36,7 @@ SRC += src/aig/gia/giaAig.c \
src/aig/gia/giaScl.c
\
src/aig/gia/giaShrink.c
\
src/aig/gia/giaShrink6.c
\
src/aig/gia/giaShrink7.c
\
src/aig/gia/giaSim.c
\
src/aig/gia/giaSim2.c
\
src/aig/gia/giaSort.c
\
...
...
src/base/abci/abc.c
View file @
53165710
...
...
@@ -33403,7 +33403,8 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// extern void Gia_ManMuxProfiling( Gia_Man_t * p );
// extern Gia_Man_t * Mig_ManTest( Gia_Man_t * pGia );
// extern Gia_Man_t * Gia_ManInterTest( Gia_Man_t * p );
extern
Gia_Man_t
*
Llb_ReachableStatesGia
(
Gia_Man_t
*
p
);
// extern Gia_Man_t * Llb_ReachableStatesGia( Gia_Man_t * p );
extern
Gia_Man_t
*
Unm_ManTest
(
Gia_Man_t
*
pGia
);
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"Fsvh"
)
)
!=
EOF
)
...
...
@@ -33477,8 +33478,9 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// Abc_FrameUpdateGia( pAbc, pTemp );
// pTemp = Gia_ManInterTest( pAbc->pGia );
// Abc_FrameUpdateGia( pAbc, pTemp );
pTemp
=
Llb_ReachableStatesGia
(
pAbc
->
pGia
);
Abc_FrameUpdateGia
(
pAbc
,
pTemp
);
// pTemp = Llb_ReachableStatesGia( pAbc->pGia );
// Abc_FrameUpdateGia( pAbc, pTemp );
Unm_ManTest
(
pAbc
->
pGia
);
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: &test [-F num] [-svh]
\n
"
);
src/misc/extra/extraUtilDsd.c
View file @
53165710
...
...
@@ -1214,14 +1214,15 @@ void Sdm_ManDivTest()
Vec_WrdForEachEntry
(
vDivs
,
u
,
i
)
{
printf
(
"%2d : "
,
i
);
Kit_DsdPrintFromTruth
(
(
unsigned
*
)
&
u
,
6
);
printf
(
"
\n
"
);
// Kit_DsdPrintFromTruth( (unsigned *)&u, 6 );
printf
(
"
\n
"
);
}
RetValue
=
Rsb_ManPerformResub6
(
pManRsb
,
6
,
t
,
vDivs
,
&
t0
,
&
t1
,
1
);
if
(
RetValue
)
{
Kit_DsdPrintFromTruth
(
(
unsigned
*
)
&
t0
,
6
);
printf
(
"
\n
"
);
Kit_DsdPrintFromTruth
(
(
unsigned
*
)
&
t1
,
6
);
printf
(
"
\n
"
);
//
Kit_DsdPrintFromTruth( (unsigned *)&t0, 6 ); printf( "\n" );
//
Kit_DsdPrintFromTruth( (unsigned *)&t1, 6 ); printf( "\n" );
printf
(
"Decomposition exits.
\n
"
);
}
...
...
src/misc/vec/vecHsh4.h
View file @
53165710
...
...
@@ -60,6 +60,9 @@ struct Hsh_Int4Man_t_
////////////////////////////////////////////////////////////////////////
static
inline
Hsh_Int4Obj_t
*
Hsh_Int4Obj
(
Hsh_Int4Man_t
*
p
,
int
iObj
)
{
return
iObj
?
(
Hsh_Int4Obj_t
*
)
Vec_IntEntryP
(
p
->
vObjs
,
4
*
iObj
)
:
NULL
;
}
static
inline
int
Hsh_Int4ObjRes
(
Hsh_Int4Man_t
*
p
,
int
i
)
{
return
Hsh_Int4Obj
(
p
,
i
)
->
iRes
;
}
static
inline
void
Hsh_Int4ObjInc
(
Hsh_Int4Man_t
*
p
,
int
i
)
{
Hsh_Int4Obj
(
p
,
i
)
->
iRes
++
;
}
static
inline
void
Hsh_Int4ObjDec
(
Hsh_Int4Man_t
*
p
,
int
i
)
{
Hsh_Int4Obj
(
p
,
i
)
->
iRes
--
;
}
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
...
...
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