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
05244dab
Commit
05244dab
authored
Mar 15, 2015
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix in 'move_names' related to feed-through nets.
parent
3f2b1233
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletions
+20
-1
src/base/abc/abcNames.c
+20
-1
No files found.
src/base/abc/abcNames.c
View file @
05244dab
...
@@ -509,7 +509,7 @@ void Abc_NtkShortNames( Abc_Ntk_t * pNtk )
...
@@ -509,7 +509,7 @@ void Abc_NtkShortNames( Abc_Ntk_t * pNtk )
***********************************************************************/
***********************************************************************/
void
Abc_NtkMoveNames
(
Abc_Ntk_t
*
pNtk
,
Abc_Ntk_t
*
pOld
)
void
Abc_NtkMoveNames
(
Abc_Ntk_t
*
pNtk
,
Abc_Ntk_t
*
pOld
)
{
{
Abc_Obj_t
*
pObj
;
int
i
;
Abc_Obj_t
*
pObj
,
*
pObjCi
,
*
pFanin
;
int
i
,
Count
=
0
;
Nm_ManFree
(
pNtk
->
pManName
);
Nm_ManFree
(
pNtk
->
pManName
);
pNtk
->
pManName
=
Nm_ManCreate
(
Abc_NtkCiNum
(
pNtk
)
+
Abc_NtkCoNum
(
pNtk
)
+
Abc_NtkBoxNum
(
pNtk
)
);
pNtk
->
pManName
=
Nm_ManCreate
(
Abc_NtkCiNum
(
pNtk
)
+
Abc_NtkCoNum
(
pNtk
)
+
Abc_NtkBoxNum
(
pNtk
)
);
Abc_NtkForEachPi
(
pNtk
,
pObj
,
i
)
Abc_NtkForEachPi
(
pNtk
,
pObj
,
i
)
...
@@ -521,6 +521,25 @@ void Abc_NtkMoveNames( Abc_Ntk_t * pNtk, Abc_Ntk_t * pOld )
...
@@ -521,6 +521,25 @@ void Abc_NtkMoveNames( Abc_Ntk_t * pNtk, Abc_Ntk_t * pOld )
Abc_ObjAssignName
(
Abc_ObjFanin0
(
pObj
),
Abc_ObjName
(
Abc_ObjFanin0
(
Abc_NtkBox
(
pOld
,
i
))),
NULL
);
Abc_ObjAssignName
(
Abc_ObjFanin0
(
pObj
),
Abc_ObjName
(
Abc_ObjFanin0
(
Abc_NtkBox
(
pOld
,
i
))),
NULL
);
Abc_ObjAssignName
(
Abc_ObjFanout0
(
pObj
),
Abc_ObjName
(
Abc_ObjFanout0
(
Abc_NtkBox
(
pOld
,
i
))),
NULL
);
Abc_ObjAssignName
(
Abc_ObjFanout0
(
pObj
),
Abc_ObjName
(
Abc_ObjFanout0
(
Abc_NtkBox
(
pOld
,
i
))),
NULL
);
}
}
// if CO points to CI with the same name, remove buffer between them
Abc_NtkForEachCo
(
pNtk
,
pObj
,
i
)
{
int
nCiId
=
Nm_ManFindIdByNameTwoTypes
(
pNtk
->
pManName
,
Abc_ObjName
(
pObj
),
ABC_OBJ_PI
,
ABC_OBJ_BO
);
if
(
nCiId
==
-
1
)
continue
;
pObjCi
=
Abc_NtkObj
(
pNtk
,
nCiId
);
assert
(
!
strcmp
(
Abc_ObjName
(
pObj
),
Abc_ObjName
(
pObjCi
)
)
);
pFanin
=
Abc_ObjFanin0
(
pObj
);
if
(
pFanin
==
pObjCi
)
continue
;
assert
(
Abc_NodeIsBuf
(
pFanin
)
);
Abc_ObjPatchFanin
(
pObj
,
pFanin
,
pObjCi
);
if
(
Abc_ObjFanoutNum
(
pFanin
)
==
0
)
Abc_NtkDeleteObj
(
pFanin
);
Count
++
;
}
if
(
Count
)
printf
(
"Redirected %d POs from buffers to PIs with the same name.
\n
"
,
Count
);
}
}
...
...
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