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
d0713831
Commit
d0713831
authored
Feb 12, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lazy man's logic synthesis.
parent
9f331ae9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
src/base/abci/abcRec.c
+20
-4
No files found.
src/base/abci/abcRec.c
View file @
d0713831
...
...
@@ -868,11 +868,15 @@ Hop_Obj_t * Abc_RecToHop( Hop_Man_t * pMan, If_Man_t * pIfMan, If_Cut_t * pCut,
// return Abc_NodeTruthToHop(pMan, pIfMan, pCut);
Kit_TruthCopy
(
pInOut
,
If_CutTruth
(
pCut
),
pCut
->
nLimit
);
//special cases when cut-minimization return 2, that means there is only one leaf in the cut.
if
((
Kit_TruthIsConst0
(
pInOut
,
nLeaves
)
&&
pCut
->
fCompl
==
0
)
||
(
Kit_TruthIsConst1
(
pInOut
,
nLeaves
)
&&
pCut
->
fCompl
==
1
))
return
Hop_ManConst0
(
pMan
);
if
((
Kit_TruthIsConst0
(
pInOut
,
nLeaves
)
&&
pCut
->
fCompl
==
1
)
||
(
Kit_TruthIsConst1
(
pInOut
,
nLeaves
)
&&
pCut
->
fCompl
==
0
))
return
Hop_ManConst1
(
pMan
);
if
(
Kit_TruthSupport
(
pInOut
,
nLeaves
)
!=
Kit_BitMask
(
nLeaves
))
{
{
for
(
i
=
0
;
i
<
nLeaves
;
i
++
)
if
(
Kit_TruthVarInSupport
(
pInOut
,
nLeaves
,
i
))
return
Hop_
IthVar
(
pMan
,
i
);
return
Hop_
NotCond
(
Hop_IthVar
(
pMan
,
i
),
(
pCut
->
fCompl
^
((
*
pInOut
&
0x01
)
>
0
))
);
}
for
(
i
=
0
;
i
<
nLeaves
;
i
++
)
...
...
@@ -2792,11 +2796,23 @@ int If_CutDelayRecCost(If_Man_t* p, If_Cut_t* pCut, If_Obj_t * pObj)
//if not every variables are in the support, skip this cut.
if
(
Kit_TruthSupport
(
pInOut
,
nLeaves
)
!=
Kit_BitMask
(
nLeaves
)
)
{
DelayMin
=
0
;
//s_pMan->nFunsFilteredBysupport++;
pCut
->
fUser
=
1
;
pCut
->
fUseless
=
0
;
pCut
->
Cost
=
0
;
return
0
;
pCut
->
Cost
=
1
;
for
(
i
=
0
;
i
<
nLeaves
;
i
++
)
{
if
(
Kit_TruthVarInSupport
(
pInOut
,
nLeaves
,
i
))
{
pCut
->
pPerm
[
i
]
=
0
;
DelayMin
=
If_ObjCutBest
(
If_ManObj
(
p
,
pCut
->
pLeaves
[
i
]))
->
Delay
;
}
else
pCut
->
pPerm
[
i
]
=
IF_BIG_CHAR
;
}
return
DelayMin
;
}
timeCanonicize
=
clock
();
//canonicize
...
...
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