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
5326a599
Commit
5326a599
authored
Oct 13, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MUX decomposition during mapping.
parent
6f9051a9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
+19
-5
src/aig/gia/giaIf.c
+19
-5
No files found.
src/aig/gia/giaIf.c
View file @
5326a599
...
@@ -1641,16 +1641,23 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
...
@@ -1641,16 +1641,23 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
}
}
else
else
{
{
assert
(
iLitCofs
[
0
]
>
1
||
iLitCofs
[
1
]
>
1
);
// collect leaves
// collect leaves
Vec_IntClear
(
vLeaves2
);
Vec_IntClear
(
vLeaves2
);
for
(
k
=
0
;
k
<
3
;
k
++
)
for
(
k
=
0
;
k
<
3
;
k
++
)
if
(
iLitCofs
[
k
]
>
1
)
if
(
iLitCofs
[
k
]
>
1
)
Vec_IntPush
(
vLeaves2
,
iLitCofs
[
k
]
);
Vec_IntPush
(
vLeaves2
,
iLitCofs
[
k
]
);
assert
(
Vec_IntSize
(
vLeaves2
)
==
2
);
assert
(
Vec_IntSize
(
vLeaves2
)
==
2
);
// create "MUX"
// consider three possibilities
iLitCofs
[
0
]
=
Abc_LitNot
(
Gia_ManAppendAnd2
(
pNew
,
iLitCofs
[
0
],
Abc_LitNot
(
iLitCofs
[
2
])
)
);
if
(
iLitCofs
[
0
]
==
0
)
iLitCofs
[
1
]
=
Abc_LitNot
(
Gia_ManAppendAnd2
(
pNew
,
iLitCofs
[
1
],
iLitCofs
[
2
]
)
);
pIfObj
->
iCopy
=
Gia_ManAppendAnd
(
pNew
,
iLitCofs
[
2
],
iLitCofs
[
1
]
);
pIfObj
->
iCopy
=
Abc_LitNot
(
Gia_ManAppendAnd2
(
pNew
,
iLitCofs
[
0
],
iLitCofs
[
1
]
)
);
else
if
(
iLitCofs
[
0
]
==
1
)
pIfObj
->
iCopy
=
Gia_ManAppendOr
(
pNew
,
Abc_LitNot
(
iLitCofs
[
2
]),
iLitCofs
[
1
]
);
else
if
(
iLitCofs
[
1
]
==
0
)
pIfObj
->
iCopy
=
Gia_ManAppendAnd
(
pNew
,
Abc_LitNot
(
iLitCofs
[
2
]),
iLitCofs
[
0
]
);
else
if
(
iLitCofs
[
1
]
==
1
)
pIfObj
->
iCopy
=
Gia_ManAppendOr
(
pNew
,
iLitCofs
[
2
],
iLitCofs
[
0
]
);
else
assert
(
0
);
iTopLit
=
iLitCofs
[
2
];
iTopLit
=
iLitCofs
[
2
];
}
}
// create mapping
// create mapping
...
@@ -1735,6 +1742,13 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
...
@@ -1735,6 +1742,13 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
Gia_ManForEachCo
(
pNew
,
pObj
,
i
)
Gia_ManForEachCo
(
pNew
,
pObj
,
i
)
assert
(
!
Gia_ObjIsAnd
(
Gia_ObjFanin0
(
pObj
))
||
Gia_ObjIsLut
(
pNew
,
Gia_ObjFaninId0p
(
pNew
,
pObj
))
);
assert
(
!
Gia_ObjIsAnd
(
Gia_ObjFanin0
(
pObj
))
||
Gia_ObjIsLut
(
pNew
,
Gia_ObjFaninId0p
(
pNew
,
pObj
))
);
}
}
// verify that internal nodes have mapping
{
Gia_Obj_t
*
pFanin
;
Gia_ManForEachLut
(
pNew
,
i
)
Gia_LutForEachFaninObj
(
pNew
,
i
,
pFanin
,
k
)
assert
(
!
Gia_ObjIsAnd
(
pFanin
)
||
Gia_ObjIsLut
(
pNew
,
Gia_ObjId
(
pNew
,
pFanin
))
);
}
// verify that CIs have no mapping
// verify that CIs have no mapping
{
{
Gia_Obj_t
*
pObj
;
Gia_Obj_t
*
pObj
;
...
@@ -1828,7 +1842,7 @@ void Gia_ManTransferMapping( Gia_Man_t * p, Gia_Man_t * pGia )
...
@@ -1828,7 +1842,7 @@ void Gia_ManTransferMapping( Gia_Man_t * p, Gia_Man_t * pGia )
Vec_IntPush
(
p
->
vMapping
,
Gia_ObjLutSize
(
pGia
,
i
)
);
Vec_IntPush
(
p
->
vMapping
,
Gia_ObjLutSize
(
pGia
,
i
)
);
Gia_LutForEachFanin
(
pGia
,
i
,
iFan
,
k
)
Gia_LutForEachFanin
(
pGia
,
i
,
iFan
,
k
)
Vec_IntPush
(
p
->
vMapping
,
Abc_Lit2Var
(
Gia_ObjValue
(
Gia_ManObj
(
pGia
,
iFan
)))
);
Vec_IntPush
(
p
->
vMapping
,
Abc_Lit2Var
(
Gia_ObjValue
(
Gia_ManObj
(
pGia
,
iFan
)))
);
iFan
=
Abc_Lit2Var
(
Gia_ObjValue
(
Gia_ManObj
(
pGia
,
Gia_ObjLutMuxId
(
pGia
,
i
)))
);
iFan
=
Abc_Lit2Var
(
Gia_ObjValue
(
Gia_ManObj
(
pGia
,
Abc_AbsInt
(
Gia_ObjLutMuxId
(
pGia
,
i
)
)))
);
Vec_IntPush
(
p
->
vMapping
,
Gia_ObjLutIsMux
(
pGia
,
i
)
?
-
iFan
:
iFan
);
Vec_IntPush
(
p
->
vMapping
,
Gia_ObjLutIsMux
(
pGia
,
i
)
?
-
iFan
:
iFan
);
}
}
Gia_ManMappingVerify
(
p
);
Gia_ManMappingVerify
(
p
);
...
...
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