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
4124a00d
Commit
4124a00d
authored
Apr 19, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Logic restructuring after mapping.
parent
7d15b00e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/base/acb/acbPush.c
+4
-4
No files found.
src/base/acb/acbPush.c
View file @
4124a00d
...
@@ -44,8 +44,8 @@ ABC_NAMESPACE_IMPL_START
...
@@ -44,8 +44,8 @@ ABC_NAMESPACE_IMPL_START
***********************************************************************/
***********************************************************************/
void
Acb_ObjPushToFanout
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFaninIndex
,
int
iFanout
)
void
Acb_ObjPushToFanout
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFaninIndex
,
int
iFanout
)
{
{
word
c0
,
uTruthObjNew
,
uTruthObj
=
Acb_ObjTruth
(
p
,
iObj
),
Gate
;
word
c0
,
uTruthObjNew
=
0
,
uTruthObj
=
Acb_ObjTruth
(
p
,
iObj
),
Gate
;
word
c1
,
uTruthFanNew
,
uTruthFan
=
Acb_ObjTruth
(
p
,
iFanout
);
word
c1
,
uTruthFanNew
=
0
,
uTruthFan
=
Acb_ObjTruth
(
p
,
iFanout
);
int
DecType
=
Abc_TtCheckOutAnd
(
uTruthObj
,
iFaninIndex
,
&
uTruthObjNew
);
int
DecType
=
Abc_TtCheckOutAnd
(
uTruthObj
,
iFaninIndex
,
&
uTruthObjNew
);
int
iFanin
=
Acb_ObjFanin
(
p
,
iObj
,
iFaninIndex
);
int
iFanin
=
Acb_ObjFanin
(
p
,
iObj
,
iFaninIndex
);
int
iFanoutObjIndex
=
Acb_ObjWhatFanin
(
p
,
iFanout
,
iObj
);
int
iFanoutObjIndex
=
Acb_ObjWhatFanin
(
p
,
iFanout
,
iObj
);
...
@@ -94,8 +94,8 @@ void Acb_ObjPushToFanout( Acb_Ntk_t * p, int iObj, int iFaninIndex, int iFanout
...
@@ -94,8 +94,8 @@ void Acb_ObjPushToFanout( Acb_Ntk_t * p, int iObj, int iFaninIndex, int iFanout
***********************************************************************/
***********************************************************************/
void
Acb_ObjPushToFanin
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFaninIndex2
,
int
iFanin
)
void
Acb_ObjPushToFanin
(
Acb_Ntk_t
*
p
,
int
iObj
,
int
iFaninIndex2
,
int
iFanin
)
{
{
word
uTruthObjNew
,
uTruthObj
=
Acb_ObjTruth
(
p
,
iObj
);
word
uTruthObjNew
=
0
,
uTruthObj
=
Acb_ObjTruth
(
p
,
iObj
);
word
uTruthFanNew
,
uTruthFan
=
Acb_ObjTruth
(
p
,
iFanin
);
word
uTruthFanNew
=
0
,
uTruthFan
=
Acb_ObjTruth
(
p
,
iFanin
);
int
iFaninIndex
=
Acb_ObjWhatFanin
(
p
,
iObj
,
iFanin
);
int
iFaninIndex
=
Acb_ObjWhatFanin
(
p
,
iObj
,
iFanin
);
int
DecType
=
Abc_TtCheckDsdAnd
(
uTruthObj
,
iFaninIndex
,
iFaninIndex2
,
&
uTruthObjNew
);
int
DecType
=
Abc_TtCheckDsdAnd
(
uTruthObj
,
iFaninIndex
,
iFaninIndex2
,
&
uTruthObjNew
);
int
iFanin2
=
Acb_ObjFanin
(
p
,
iObj
,
iFaninIndex2
);
int
iFanin2
=
Acb_ObjFanin
(
p
,
iObj
,
iFaninIndex2
);
...
...
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