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
e5d55213
Commit
e5d55213
authored
Mar 08, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes to LUT mappers.
parent
76e35126
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
28 deletions
+53
-28
src/base/abci/abc.c
+23
-7
src/map/if/if.h
+1
-2
src/map/if/ifDsd.c
+29
-19
No files found.
src/base/abci/abc.c
View file @
e5d55213
...
...
@@ -15535,9 +15535,9 @@ usage:
***********************************************************************/
int
Abc_CommandDsdPs
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
int
c
,
Number
=
0
,
fOccurs
=
0
,
fVerbose
=
0
;
int
c
,
Number
=
0
,
Support
=
0
,
fOccurs
=
0
,
fTtDump
=
0
,
fVerbose
=
0
;
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"N
o
vh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"N
Sot
vh"
)
)
!=
EOF
)
{
switch
(
c
)
{
...
...
@@ -15552,9 +15552,23 @@ int Abc_CommandDsdPs( Abc_Frame_t * pAbc, int argc, char ** argv )
if
(
Number
<
0
)
goto
usage
;
break
;
case
'S'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-S
\"
should be followed by a floating point number.
\n
"
);
goto
usage
;
}
Support
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
Support
<
0
)
goto
usage
;
break
;
case
'o'
:
fOccurs
^=
1
;
break
;
case
't'
:
fTtDump
^=
1
;
break
;
case
'v'
:
fVerbose
^=
1
;
break
;
...
...
@@ -15569,15 +15583,17 @@ int Abc_CommandDsdPs( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
1
,
"The DSD manager is not started.
\n
"
);
return
0
;
}
If_DsdManPrint
(
(
If_DsdMan_t
*
)
Abc_FrameReadManDsd
(),
NULL
,
Number
,
fOccurs
,
fVerbose
);
If_DsdManPrint
(
(
If_DsdMan_t
*
)
Abc_FrameReadManDsd
(),
NULL
,
Number
,
Support
,
fOccurs
,
fTtDump
,
fVerbose
);
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: dsd_ps [-N num] [-ovh]
\n
"
);
Abc_Print
(
-
2
,
"usage: dsd_ps [-N
S
num] [-ovh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
prints statistics of DSD manager
\n
"
);
Abc_Print
(
-
2
,
"
\t
-N num : show structures whose ID divides by N [default = %d]
\n
"
,
Number
);
Abc_Print
(
-
2
,
"
\t
-N num : show structures whose ID divides by N [default = %d]
\n
"
,
Number
);
Abc_Print
(
-
2
,
"
\t
-S num : show structures whose support size is S [default = %d]
\n
"
,
Support
);
Abc_Print
(
-
2
,
"
\t
-o : toggles printing occurence distribution [default = %s]
\n
"
,
fOccurs
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggles verbose output [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-t : toggles dumping truth tables [default = %s]
\n
"
,
fTtDump
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggles verbose output [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
return
1
;
}
...
...
@@ -15715,7 +15731,7 @@ int Abc_CommandDsdMerge( Abc_Frame_t * pAbc, int argc, char ** argv )
usage:
Abc_Print
(
-
2
,
"usage: dsd_merge [-h] <file>
\n
"
);
Abc_Print
(
-
2
,
"
\t
mer
m
ges DSD manager from file with the current one
\n
"
);
Abc_Print
(
-
2
,
"
\t
merges DSD manager from file with the current one
\n
"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
Abc_Print
(
-
2
,
"
\t
<file> : file name to read
\n
"
);
return
1
;
src/map/if/if.h
View file @
e5d55213
...
...
@@ -518,8 +518,7 @@ extern int If_CluCheckExt3( void * p, word * pTruth, int nVars, int
char
*
pLut0
,
char
*
pLut1
,
char
*
pLut2
,
word
*
pFunc0
,
word
*
pFunc1
,
word
*
pFunc2
);
/*=== ifDsd.c =============================================================*/
extern
If_DsdMan_t
*
If_DsdManAlloc
(
int
nVars
,
int
nLutSize
);
extern
void
If_DsdManDump
(
If_DsdMan_t
*
p
);
extern
void
If_DsdManPrint
(
If_DsdMan_t
*
p
,
char
*
pFileName
,
int
Number
,
int
fOccurs
,
int
fVerbose
);
extern
void
If_DsdManPrint
(
If_DsdMan_t
*
p
,
char
*
pFileName
,
int
Number
,
int
Support
,
int
fOccurs
,
int
fTtDump
,
int
fVerbose
);
extern
void
If_DsdManTune
(
If_DsdMan_t
*
p
,
int
LutSize
,
int
fFast
,
int
fAdd
,
int
fSpec
,
int
fVerbose
);
extern
void
If_DsdManFree
(
If_DsdMan_t
*
p
,
int
fVerbose
);
extern
void
If_DsdManSave
(
If_DsdMan_t
*
p
,
char
*
pFileName
);
...
...
src/map/if/ifDsd.c
View file @
e5d55213
...
...
@@ -219,9 +219,9 @@ If_DsdMan_t * If_DsdManAlloc( int nVars, int LutSize )
void
If_DsdManFree
(
If_DsdMan_t
*
p
,
int
fVerbose
)
{
int
v
;
// If_DsdManDump( p );
// If_DsdManDump
Dsd
( p );
if
(
fVerbose
)
If_DsdManPrint
(
p
,
NULL
,
0
,
0
,
0
);
If_DsdManPrint
(
p
,
NULL
,
0
,
0
,
0
,
0
,
0
);
if
(
fVerbose
)
Vec_MemDumpTruthTables
(
p
->
vTtMem
,
"dumpdsd"
,
p
->
nVars
);
for
(
v
=
2
;
v
<
p
->
nVars
;
v
++
)
...
...
@@ -239,39 +239,43 @@ void If_DsdManFree( If_DsdMan_t * p, int fVerbose )
ABC_FREE
(
p
->
pBins
);
ABC_FREE
(
p
);
}
void
If_DsdManDump
(
If_DsdMan_t
*
p
)
void
If_DsdManDump
Dsd
(
If_DsdMan_t
*
p
,
int
Support
)
{
char
*
pFileName
=
"nondsd_tts.txt"
;
FILE
*
pFile
;
If_DsdObj_t
*
pObj
;
int
i
;
pFile
=
fopen
(
pFileName
,
"wb"
);
char
*
pFileName
=
"tts_nondsd.txt"
;
If_DsdObj_t
*
pObj
;
int
i
;
Vec_Int_t
*
vMap
;
FILE
*
pFile
=
fopen
(
pFileName
,
"wb"
);
if
(
pFile
==
NULL
)
{
printf
(
"Cannot open file
\"
%s
\"
.
\n
"
,
pFileName
);
return
;
}
vMap
=
Vec_IntStart
(
Vec_MemEntryNum
(
p
->
vTtMem
)
);
If_DsdVecForEachObj
(
p
->
vObjs
,
pObj
,
i
)
{
if
(
Support
&&
Support
!=
If_DsdObjSuppSize
(
pObj
)
)
continue
;
if
(
If_DsdObjType
(
pObj
)
!=
IF_DSD_PRIME
)
continue
;
if
(
Vec_IntEntry
(
vMap
,
If_DsdObjTruthId
(
pObj
))
)
continue
;
Vec_IntWriteEntry
(
vMap
,
If_DsdObjTruthId
(
pObj
),
1
);
fprintf
(
pFile
,
"0x"
);
Abc_TtPrintHexRev
(
pFile
,
If_DsdObjTruth
(
p
,
pObj
),
p
->
nVars
);
Abc_TtPrintHexRev
(
pFile
,
If_DsdObjTruth
(
p
,
pObj
),
Support
?
Abc_MaxInt
(
Support
,
6
)
:
p
->
nVars
);
fprintf
(
pFile
,
"
\n
"
);
// printf( " " );
// Dau_DsdPrintFromTruth( If_DsdObjTruth(p, pObj), p->nVars );
}
Vec_IntFree
(
vMap
);
fclose
(
pFile
);
}
void
If_DsdManDumpAll
(
If_DsdMan_t
*
p
)
void
If_DsdManDumpAll
(
If_DsdMan_t
*
p
,
int
Support
)
{
extern
word
*
If_DsdManComputeTruth
(
If_DsdMan_t
*
p
,
int
iDsd
,
unsigned
char
*
pPermLits
);
char
*
pFileName
=
"dsd_tts.txt"
;
FILE
*
pFile
;
char
*
pFileName
=
"tts_all.txt"
;
If_DsdObj_t
*
pObj
;
word
*
pRes
;
int
i
;
pFile
=
fopen
(
pFileName
,
"wb"
);
word
*
pRes
;
int
i
;
FILE
*
pFile
=
fopen
(
pFileName
,
"wb"
);
if
(
pFile
==
NULL
)
{
printf
(
"Cannot open file
\"
%s
\"
.
\n
"
,
pFileName
);
...
...
@@ -279,9 +283,11 @@ void If_DsdManDumpAll( If_DsdMan_t * p )
}
If_DsdVecForEachObj
(
p
->
vObjs
,
pObj
,
i
)
{
if
(
Support
&&
Support
!=
If_DsdObjSuppSize
(
pObj
)
)
continue
;
pRes
=
If_DsdManComputeTruth
(
p
,
Abc_Var2Lit
(
i
,
0
),
NULL
);
fprintf
(
pFile
,
"0x"
);
Abc_TtPrintHexRev
(
pFile
,
pRes
,
p
->
nVars
);
Abc_TtPrintHexRev
(
pFile
,
pRes
,
Support
?
Abc_MaxInt
(
Support
,
6
)
:
p
->
nVars
);
fprintf
(
pFile
,
"
\n
"
);
// printf( " " );
// Dau_DsdPrintFromTruth( pRes, p->nVars );
...
...
@@ -455,7 +461,7 @@ void If_DsdManPrintDistrib( If_DsdMan_t * p )
printf
(
"(%6.2f %%)"
,
100
.
0
*
CountNonTotal
/
Vec_PtrSize
(
p
->
vObjs
)
);
printf
(
"
\n
"
);
}
void
If_DsdManPrint
(
If_DsdMan_t
*
p
,
char
*
pFileName
,
int
Number
,
int
fOccurs
,
int
fVerbose
)
void
If_DsdManPrint
(
If_DsdMan_t
*
p
,
char
*
pFileName
,
int
Number
,
int
Support
,
int
fOccurs
,
int
fTtDump
,
int
fVerbose
)
{
If_DsdObj_t
*
pObj
;
int
i
,
DsdMax
=
0
,
CountUsed
=
0
,
CountNonDsdStr
=
0
,
CountMarked
=
0
;
...
...
@@ -497,14 +503,18 @@ void If_DsdManPrint( If_DsdMan_t * p, char * pFileName, int Number, int fOccurs,
Abc_PrintTime
(
1
,
"Time verify"
,
p
->
timeVerify
);
}
// If_DsdManHashProfile( p );
// If_DsdManDump( p );
// If_DsdManDumpAll( p );
if
(
fTtDump
)
If_DsdManDumpDsd
(
p
,
Support
);
if
(
fTtDump
)
If_DsdManDumpAll
(
p
,
Support
);
if
(
!
fVerbose
)
return
;
If_DsdVecForEachObj
(
p
->
vObjs
,
pObj
,
i
)
{
if
(
Number
&&
i
%
Number
)
continue
;
if
(
Support
&&
Support
!=
If_DsdObjSuppSize
(
pObj
)
)
continue
;
If_DsdManPrintOne
(
pFile
,
p
,
pObj
->
Id
,
NULL
,
1
);
}
fprintf
(
pFile
,
"
\n
"
);
...
...
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