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
0c4d314e
Commit
0c4d314e
authored
Apr 04, 2008
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version abc80404_2
parent
ef20b0c5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
81 additions
and
50 deletions
+81
-50
src/aig/aig/aig.h
+1
-0
src/aig/aig/aigDup.c
+1
-1
src/aig/aig/aigRepr.c
+2
-0
src/aig/nwk/nwk.h
+5
-0
src/aig/nwk/nwkSpeedup.c
+0
-0
src/base/abci/abc.c
+26
-3
src/base/abci/abcDelay.c
+46
-46
No files found.
src/aig/aig/aig.h
View file @
0c4d314e
...
...
@@ -544,6 +544,7 @@ extern void Aig_ObjCreateRepr( Aig_Man_t * p, Aig_Obj_t * pNode1, Aig
extern
void
Aig_ManTransferRepr
(
Aig_Man_t
*
pNew
,
Aig_Man_t
*
p
);
extern
Aig_Man_t
*
Aig_ManDupRepr
(
Aig_Man_t
*
p
,
int
fOrdered
);
extern
Aig_Man_t
*
Aig_ManRehash
(
Aig_Man_t
*
p
);
extern
int
Aig_ObjCheckTfi
(
Aig_Man_t
*
p
,
Aig_Obj_t
*
pNew
,
Aig_Obj_t
*
pOld
);
extern
void
Aig_ManMarkValidChoices
(
Aig_Man_t
*
p
);
extern
int
Aig_TransferMappedClasses
(
Aig_Man_t
*
pAig
,
Aig_Man_t
*
pPart
,
int
*
pMapBack
);
/*=== aigRet.c ========================================================*/
...
...
src/aig/aig/aigDup.c
View file @
0c4d314e
...
...
@@ -255,7 +255,7 @@ Aig_Man_t * Aig_ManDupDfs( Aig_Man_t * p )
pObj
->
pData
=
pObjNew
;
}
}
assert
(
Aig_ManBufNum
(
p
)
!=
0
||
Aig_ManNodeNum
(
p
)
==
Aig_ManNodeNum
(
pNew
)
);
assert
(
p
->
pEquivs
!=
NULL
||
Aig_ManBufNum
(
p
)
!=
0
||
Aig_ManNodeNum
(
p
)
==
Aig_ManNodeNum
(
pNew
)
);
if
(
p
->
pEquivs
==
NULL
&&
p
->
pReprs
==
NULL
&&
(
nNodes
=
Aig_ManCleanup
(
pNew
))
)
printf
(
"Aig_ManDupDfs(): Cleanup after AIG duplication removed %d nodes.
\n
"
,
nNodes
);
// duplicate the timing manager
...
...
src/aig/aig/aigRepr.c
View file @
0c4d314e
...
...
@@ -341,6 +341,8 @@ int Aig_ObjCheckTfi_rec( Aig_Man_t * p, Aig_Obj_t * pNode, Aig_Obj_t * pOld )
// check the trivial cases
if
(
pNode
==
NULL
)
return
0
;
if
(
Aig_ObjIsPi
(
pNode
)
)
return
0
;
// if ( pNode->Id < pOld->Id ) // cannot use because of choices of pNode
// return 0;
if
(
pNode
==
pOld
)
...
...
src/aig/nwk/nwk.h
View file @
0c4d314e
...
...
@@ -231,8 +231,13 @@ extern Nwk_Obj_t * Nwk_ManCreateBox( Nwk_Man_t * pMan, int nFanins, int nFan
extern
Nwk_Obj_t
*
Nwk_ManCreateLatch
(
Nwk_Man_t
*
pMan
);
extern
void
Nwk_ManDeleteNode
(
Nwk_Obj_t
*
pObj
);
extern
void
Nwk_ManDeleteNode_rec
(
Nwk_Obj_t
*
pObj
);
/*=== nwkSpeedup.c ============================================================*/
extern
Aig_Man_t
*
Nwk_ManSpeedup
(
Nwk_Man_t
*
pNtk
,
int
fUseLutLib
,
int
Percentage
,
int
Degree
,
int
fVerbose
,
int
fVeryVerbose
);
/*=== nwkStrash.c ============================================================*/
extern
Aig_Man_t
*
Nwk_ManStrash
(
Nwk_Man_t
*
pNtk
);
/*=== nwkTiming.c ============================================================*/
extern
int
Nwk_ManVerifyTiming
(
Nwk_Man_t
*
pNtk
);
extern
void
Nwk_ManDelayTraceSortPins
(
Nwk_Obj_t
*
pNode
,
int
*
pPinPerm
,
float
*
pPinDelays
);
extern
float
Nwk_ManDelayTraceLut
(
Nwk_Man_t
*
pNtk
);
extern
void
Nwk_ManDelayTracePrint
(
Nwk_Man_t
*
pNtk
);
extern
void
Nwk_ManUpdate
(
Nwk_Obj_t
*
pObj
,
Nwk_Obj_t
*
pObjNew
,
Vec_Vec_t
*
vLevels
);
...
...
src/aig/nwk/nwkSpeedup.c
View file @
0c4d314e
This diff is collapsed.
Click to expand it.
src/base/abci/abc.c
View file @
0c4d314e
...
...
@@ -215,6 +215,7 @@ static int Abc_CommandAbc8Mfs ( Abc_Frame_t * pAbc, int argc, char ** arg
static
int
Abc_CommandAbc8Lutpack
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc8Balance
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc8Speedup
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc8Fraig
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc8Cec
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc8Scl
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc8Lcorr
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
...
...
@@ -450,6 +451,7 @@ void Abc_Init( Abc_Frame_t * pAbc )
Cmd_CommandAdd
(
pAbc
,
"ABC8"
,
"*lp"
,
Abc_CommandAbc8Lutpack
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC8"
,
"*b"
,
Abc_CommandAbc8Balance
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC8"
,
"*speedup"
,
Abc_CommandAbc8Speedup
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC8"
,
"*fraig"
,
Abc_CommandAbc8Fraig
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC8"
,
"*cec"
,
Abc_CommandAbc8Cec
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC8"
,
"*scl"
,
Abc_CommandAbc8Scl
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC8"
,
"*lcorr"
,
Abc_CommandAbc8Lcorr
,
0
);
...
...
@@ -15674,9 +15676,14 @@ int Abc_CommandAbc8Speedup( Abc_Frame_t * pAbc, int argc, char ** argv )
int
Degree
;
int
fVerbose
;
int
fVeryVerbose
;
extern
Aig_Man_t
*
Nwk_ManSpeedup
(
void
*
pNtk
);
extern
Aig_Man_t
*
Nwk_ManSpeedup
(
void
*
pNtk
,
int
fUseLutLib
,
int
Percentage
,
int
Degree
,
int
fVerbose
,
int
fVeryVerbose
);
// set defaults
fUseLutLib
=
0
;
Percentage
=
3
;
Degree
=
2
;
fVerbose
=
0
;
fVeryVerbose
=
0
;
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"PNlvwh"
)
)
!=
EOF
)
{
...
...
@@ -15724,8 +15731,8 @@ int Abc_CommandAbc8Speedup( Abc_Frame_t * pAbc, int argc, char ** argv )
printf
(
"Abc_CommandAbc8DChoice(): There is no mapped network to strash.
\n
"
);
return
1
;
}
pAigNew
=
Nwk_ManSpeedup
(
pAbc
->
pAbc8Nwk
);
pAigNew
=
Nwk_ManSpeedup
(
pAbc
->
pAbc8Nwk
,
fUseLutLib
,
Percentage
,
Degree
,
fVerbose
,
fVeryVerbose
);
if
(
pAigNew
==
NULL
)
{
printf
(
"Abc_CommandAbc8Speedup(): Tranformation of the AIG has failed.
\n
"
);
...
...
@@ -15759,6 +15766,22 @@ usage:
SeeAlso []
***********************************************************************/
int
Abc_CommandAbc8Fraig
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
return
0
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
int
Abc_CommandAbc8Cec
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
Aig_Man_t
*
pAig1
,
*
pAig2
;
...
...
src/base/abci/abcDelay.c
View file @
0c4d314e
...
...
@@ -229,52 +229,6 @@ float Abc_NtkDelayTraceLut( Abc_Ntk_t * pNtk, int fUseLutLib )
/**Function*************************************************************
Synopsis [Determines timing-critical edges of the node.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
unsigned
Abc_NtkDelayTraceTCEdges
(
Abc_Ntk_t
*
pNtk
,
Abc_Obj_t
*
pNode
,
float
tDelta
,
int
fUseLutLib
)
{
int
pPinPerm
[
32
];
float
pPinDelays
[
32
];
If_Lib_t
*
pLutLib
;
Abc_Obj_t
*
pFanin
;
unsigned
uResult
=
0
;
float
tRequired
,
*
pDelays
;
int
k
;
pLutLib
=
fUseLutLib
?
Abc_FrameReadLibLut
()
:
NULL
;
tRequired
=
Abc_ObjRequired
(
pNode
);
if
(
pLutLib
==
NULL
)
{
Abc_ObjForEachFanin
(
pNode
,
pFanin
,
k
)
if
(
tRequired
<
Abc_ObjArrival
(
pFanin
)
+
1
.
0
+
tDelta
)
uResult
|=
(
1
<<
k
);
}
else
if
(
!
pLutLib
->
fVarPinDelays
)
{
pDelays
=
pLutLib
->
pLutDelays
[
Abc_ObjFaninNum
(
pNode
)];
Abc_ObjForEachFanin
(
pNode
,
pFanin
,
k
)
if
(
tRequired
<
Abc_ObjArrival
(
pFanin
)
+
pDelays
[
0
]
+
tDelta
)
uResult
|=
(
1
<<
k
);
}
else
{
pDelays
=
pLutLib
->
pLutDelays
[
Abc_ObjFaninNum
(
pNode
)];
Abc_NtkDelayTraceSortPins
(
pNode
,
pPinPerm
,
pPinDelays
);
Abc_ObjForEachFanin
(
pNode
,
pFanin
,
k
)
if
(
tRequired
<
Abc_ObjArrival
(
Abc_ObjFanin
(
pNode
,
pPinPerm
[
k
]))
+
pDelays
[
k
]
+
tDelta
)
uResult
|=
(
1
<<
pPinPerm
[
k
]);
}
return
uResult
;
}
/**Function*************************************************************
Synopsis [Delay tracing of the LUT mapped network.]
Description []
...
...
@@ -497,6 +451,52 @@ void Abc_NtkSpeedupNode( Abc_Ntk_t * pNtk, Abc_Ntk_t * pAig, Abc_Obj_t * pNode,
/**Function*************************************************************
Synopsis [Determines timing-critical edges of the node.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
unsigned
Abc_NtkDelayTraceTCEdges
(
Abc_Ntk_t
*
pNtk
,
Abc_Obj_t
*
pNode
,
float
tDelta
,
int
fUseLutLib
)
{
int
pPinPerm
[
32
];
float
pPinDelays
[
32
];
If_Lib_t
*
pLutLib
;
Abc_Obj_t
*
pFanin
;
unsigned
uResult
=
0
;
float
tRequired
,
*
pDelays
;
int
k
;
pLutLib
=
fUseLutLib
?
Abc_FrameReadLibLut
()
:
NULL
;
tRequired
=
Abc_ObjRequired
(
pNode
);
if
(
pLutLib
==
NULL
)
{
Abc_ObjForEachFanin
(
pNode
,
pFanin
,
k
)
if
(
tRequired
<
Abc_ObjArrival
(
pFanin
)
+
1
.
0
+
tDelta
)
uResult
|=
(
1
<<
k
);
}
else
if
(
!
pLutLib
->
fVarPinDelays
)
{
pDelays
=
pLutLib
->
pLutDelays
[
Abc_ObjFaninNum
(
pNode
)];
Abc_ObjForEachFanin
(
pNode
,
pFanin
,
k
)
if
(
tRequired
<
Abc_ObjArrival
(
pFanin
)
+
pDelays
[
0
]
+
tDelta
)
uResult
|=
(
1
<<
k
);
}
else
{
pDelays
=
pLutLib
->
pLutDelays
[
Abc_ObjFaninNum
(
pNode
)];
Abc_NtkDelayTraceSortPins
(
pNode
,
pPinPerm
,
pPinDelays
);
Abc_ObjForEachFanin
(
pNode
,
pFanin
,
k
)
if
(
tRequired
<
Abc_ObjArrival
(
Abc_ObjFanin
(
pNode
,
pPinPerm
[
k
]))
+
pDelays
[
k
]
+
tDelta
)
uResult
|=
(
1
<<
pPinPerm
[
k
]);
}
return
uResult
;
}
/**Function*************************************************************
Synopsis [Adds choices to speed up the network by the given percentage.]
Description []
...
...
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