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
f98f610b
Commit
f98f610b
authored
Jun 19, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added delay-oriented balancing to unmapping in &st.
parent
0c6f196e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletions
+14
-1
src/base/abci/abc.c
+14
-1
src/opt/dau/dauGia.c
+0
-0
No files found.
src/base/abci/abc.c
View file @
f98f610b
...
...
@@ -25709,7 +25709,12 @@ int Abc_CommandAbc9Strash( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"Abc_CommandAbc9Strash(): There is no AIG.
\n
"
);
return
1
;
}
if
(
fAddMuxes
)
if
(
Gia_ManHasMapping
(
pAbc
->
pGia
)
)
{
pTemp
=
(
Gia_Man_t
*
)
Dsm_ManDeriveGia
(
pAbc
->
pGia
,
fAddMuxes
);
printf
(
"Performed delay-oriented unmapping.
\n
"
);
}
else
if
(
fAddMuxes
)
{
if
(
pAbc
->
pGia
->
pMuxes
)
{
...
...
@@ -25717,6 +25722,7 @@ int Abc_CommandAbc9Strash( Abc_Frame_t * pAbc, int argc, char ** argv )
return
1
;
}
pTemp
=
Gia_ManDupMuxes
(
pAbc
->
pGia
,
Limit
);
printf
(
"Generated AND/XOR/MUX graph.
\n
"
);
}
else
if
(
fCollapse
&&
pAbc
->
pGia
->
pAigExtra
)
{
...
...
@@ -25725,11 +25731,18 @@ int Abc_CommandAbc9Strash( Abc_Frame_t * pAbc, int argc, char ** argv )
pTemp
=
Gia_ManDupCollapse
(
pNew
,
pAbc
->
pGia
->
pAigExtra
,
NULL
);
pNew
->
pManTime
=
NULL
;
Gia_ManStop
(
pNew
);
printf
(
"Collapsed AIG with boxes with logic of the boxes.
\n
"
);
}
else
if
(
pAbc
->
pGia
->
pMuxes
)
{
pTemp
=
Gia_ManDupNoMuxes
(
pAbc
->
pGia
);
printf
(
"Generated AIG from AND/XOR/MUX graph.
\n
"
);
}
else
{
pTemp
=
Gia_ManRehash
(
pAbc
->
pGia
,
fAddStrash
);
printf
(
"Rehashed the current AIG.
\n
"
);
}
Abc_FrameUpdateGia
(
pAbc
,
pTemp
);
return
0
;
src/opt/dau/dauGia.c
View file @
f98f610b
This diff is collapsed.
Click to expand it.
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