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
865526f8
Commit
865526f8
authored
Apr 11, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New feature to optimize delay during mapping.
parent
e855eaa0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
+9
-6
src/aig/gia/giaIf.c
+2
-1
src/map/if/if.h
+1
-0
src/map/if/ifDelay.c
+6
-5
No files found.
src/aig/gia/giaIf.c
View file @
865526f8
...
...
@@ -1187,7 +1187,7 @@ int Gia_ManFromIfLogicFindLut( If_Man_t * pIfMan, Gia_Man_t * pNew, If_Cut_t * p
int
nVarsS
=
0
,
pVarsS
[
IF_MAX_FUNC_LUTSIZE
];
unsigned
uSetNew
,
uSetOld
;
int
RetValue
,
RetValue2
,
k
;
char
*
pPerm
=
If_CutDsdPerm
(
pIfMan
,
pCutBest
)
;
char
*
pPerm
;
if
(
Vec_IntSize
(
vLeaves
)
<=
nLutSize
)
{
RetValue
=
Gia_ManFromIfLogicCreateLut
(
pNew
,
If_CutTruthW
(
pIfMan
,
pCutBest
),
vLeaves
,
vCover
,
vMapping
,
vMapping2
);
...
...
@@ -1208,6 +1208,7 @@ int Gia_ManFromIfLogicFindLut( If_Man_t * pIfMan, Gia_Man_t * pNew, If_Cut_t * p
uSetOld
=
If_DsdManCheckXY
(
pIfMan
->
pIfDsdMan
,
If_CutDsdLit
(
pIfMan
,
pCutBest
),
nLutSize
,
1
,
0
,
1
,
0
);
// remap bound set
uSetNew
=
0
;
pPerm
=
If_CutDsdPerm
(
pIfMan
,
pCutBest
);
for
(
k
=
0
;
k
<
If_CutLeaveNum
(
pCutBest
);
k
++
)
{
int
iVar
=
Abc_Lit2Var
((
int
)
pPerm
[
k
]);
...
...
src/map/if/if.h
View file @
865526f8
...
...
@@ -413,6 +413,7 @@ static inline word * If_CutTruthWR( If_Man_t * p, If_Cut_t * pCut ) { r
static
inline
unsigned
*
If_CutTruthUR
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
)
{
return
(
unsigned
*
)
If_CutTruthWR
(
p
,
pCut
);
}
static
inline
word
*
If_CutTruthW
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
)
{
if
(
p
->
vTtMem
==
NULL
)
return
NULL
;
assert
(
pCut
->
iCutFunc
>=
0
);
Abc_TtCopy
(
p
->
puTempW
,
If_CutTruthWR
(
p
,
pCut
),
p
->
nTruth6Words
[
pCut
->
nLeaves
],
If_CutTruthIsCompl
(
pCut
)
);
return
p
->
puTempW
;
}
static
inline
unsigned
*
If_CutTruth
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
)
{
return
(
unsigned
*
)
If_CutTruthW
(
p
,
pCut
);
}
static
inline
int
If_CutDsdLit
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
)
{
return
Abc_Lit2LitL
(
Vec_IntArray
(
p
->
vTtDsds
[
pCut
->
nLeaves
]),
If_CutTruthLit
(
pCut
)
);
}
static
inline
int
If_CutDsdIsCompl
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
)
{
return
Abc_LitIsCompl
(
If_CutDsdLit
(
p
,
pCut
)
);
}
static
inline
char
*
If_CutDsdPerm
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
)
{
return
Vec_StrEntryP
(
p
->
vTtPerms
[
pCut
->
nLeaves
],
Abc_Lit2Var
(
pCut
->
iCutFunc
)
*
Abc_MaxInt
(
6
,
pCut
->
nLeaves
)
);
}
...
...
src/map/if/ifDelay.c
View file @
865526f8
...
...
@@ -287,8 +287,9 @@ int If_CutLutBalancePinDelays( If_Man_t * p, If_Cut_t * pCut, char * pPerm )
}
else
{
char
*
pCutPerm
=
If_CutDsdPerm
(
p
,
pCut
);
int
LutSize
=
p
->
pPars
->
pLutStruct
[
0
]
-
'0'
;
int
i
,
Delay
,
DelayMax
;
int
i
,
Delay
,
DelayMax
=
0
;
assert
(
(
If_CutLeaveNum
(
pCut
)
>
LutSize
)
==
(
pCut
->
uMaskFunc
>
0
)
);
for
(
i
=
0
;
i
<
If_CutLeaveNum
(
pCut
);
i
++
)
{
...
...
@@ -296,7 +297,7 @@ int If_CutLutBalancePinDelays( If_Man_t * p, If_Cut_t * pCut, char * pPerm )
pPerm
[
i
]
=
2
;
else
pPerm
[
i
]
=
1
;
Delay
=
(
int
)
If_ObjCutBest
(
If_CutLeaf
(
p
,
pCut
,
i
))
->
Delay
;
Delay
=
(
int
)
If_ObjCutBest
(
If_CutLeaf
(
p
,
pCut
,
pCutPerm
[
i
]
))
->
Delay
;
DelayMax
=
Abc_MaxInt
(
DelayMax
,
Delay
+
(
int
)
pPerm
[
i
]
);
}
return
DelayMax
;
...
...
@@ -330,17 +331,17 @@ int If_CutLutBalanceEval( If_Man_t * p, If_Cut_t * pCut )
}
else
{
char
*
pCutPerm
=
If_CutDsdPerm
(
p
,
pCut
);
int
LutSize
=
p
->
pPars
->
pLutStruct
[
0
]
-
'0'
;
int
i
,
pTimes
[
IF_MAX_FUNC_LUTSIZE
];
int
DelayMax
=
0
,
nLeafMax
=
0
;
unsigned
uLeafMask
=
0
;
for
(
i
=
0
;
i
<
If_CutLeaveNum
(
pCut
);
i
++
)
{
pTimes
[
i
]
=
(
int
)
If_ObjCutBest
(
If_CutLeaf
(
p
,
pCut
,
i
))
->
Delay
;
assert
(
DelayMax
<=
pTimes
[
i
]
);
pTimes
[
i
]
=
(
int
)
If_ObjCutBest
(
If_CutLeaf
(
p
,
pCut
,
pCutPerm
[
i
]))
->
Delay
;
if
(
DelayMax
<
pTimes
[
i
]
)
DelayMax
=
pTimes
[
i
],
nLeafMax
=
1
,
uLeafMask
=
(
1
<<
(
i
<<
2
));
else
else
if
(
DelayMax
==
pTimes
[
i
]
)
nLeafMax
++
,
uLeafMask
|=
(
1
<<
(
i
<<
2
));
}
if
(
If_CutLeaveNum
(
pCut
)
<=
LutSize
)
...
...
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