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
953970e7
Commit
953970e7
authored
Mar 05, 2023
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skipping zero partial products.
parent
9d0e828b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
13 deletions
+23
-13
src/base/wlc/wlcBlast.c
+11
-4
src/base/wln/wlnRtl.c
+12
-9
No files found.
src/base/wlc/wlcBlast.c
View file @
953970e7
...
...
@@ -1131,13 +1131,14 @@ void Wlc_BlastBooth( Gia_Man_t * pNew, int * pArgA, int * pArgB, int nArgA, int
int
This
=
i
==
nArgA
?
FillA
:
pArgA
[
i
];
int
Prev
=
i
?
pArgA
[
i
-
1
]
:
0
;
int
Part
=
Gia_ManHashOr
(
pNew
,
Gia_ManHashAnd
(
pNew
,
One
,
This
),
Gia_ManHashAnd
(
pNew
,
Two
,
Prev
)
);
pp
=
Gia_ManHashXor
(
pNew
,
Part
,
Neg
);
if
(
pp
==
0
||
(
fSigned
&&
i
==
nArgA
)
)
continue
;
Vec_WecPush
(
vProds
,
k
+
i
,
pp
);
Vec_WecPush
(
vLevels
,
k
+
i
,
0
);
if
(
pp
)
{
Vec_WecPush
(
vProds
,
k
+
i
,
pp
);
Vec_WecPush
(
vLevels
,
k
+
i
,
0
);
}
}
if
(
fSigned
)
i
--
;
// perform sign extension
...
...
@@ -1150,13 +1151,19 @@ void Wlc_BlastBooth( Gia_Man_t * pNew, int * pArgA, int * pArgB, int nArgA, int
Vec_WecPush
(
vProds
,
k
+
i
+
1
,
Sign
);
Vec_WecPush
(
vLevels
,
k
+
i
+
1
,
0
);
if
(
Sign
!=
1
)
{
Vec_WecPush
(
vProds
,
k
+
i
+
2
,
Abc_LitNot
(
Sign
)
);
Vec_WecPush
(
vLevels
,
k
+
i
+
2
,
0
);
}
}
else
{
if
(
Sign
!=
1
)
{
Vec_WecPush
(
vProds
,
k
+
i
,
Abc_LitNot
(
Sign
)
);
Vec_WecPush
(
vLevels
,
k
+
i
,
0
);
}
Vec_WecPush
(
vProds
,
k
+
i
+
1
,
1
);
Vec_WecPush
(
vLevels
,
k
+
i
+
1
,
0
);
...
...
src/base/wln/wlnRtl.c
View file @
953970e7
...
...
@@ -143,13 +143,15 @@ Rtl_Lib_t * Wln_ReadSystemVerilog( char * pFileName, char * pTopModule, char * p
int
fSVlog
=
strstr
(
pFileName
,
".sv"
)
!=
NULL
;
if
(
strstr
(
pFileName
,
".rtl"
)
)
return
Rtl_LibReadFile
(
pFileName
,
pFileName
);
sprintf
(
Command
,
"%s -qp
\"
read_verilog %s
%s%s; hierarchy %s%s; %sproc; write_rtlil %s
\"
"
,
sprintf
(
Command
,
"%s -qp
\"
read_verilog %s
%s %s%s; hierarchy %s%s; %sproc; write_rtlil %s
\"
"
,
Wln_GetYosysName
(),
pDefines
?
pDefines
:
""
,
fSVlog
?
"-sv "
:
""
,
pFileName
,
pDefines
?
"-D"
:
""
,
pDefines
?
pDefines
:
""
,
fSVlog
?
"-sv "
:
""
,
pFileName
,
pTopModule
?
"-top "
:
""
,
pTopModule
?
pTopModule
:
""
,
fCollapse
?
"flatten; "
:
""
,
fCollapse
?
"flatten; "
:
""
,
pFileTemp
);
if
(
fVerbose
)
printf
(
"%s
\n
"
,
Command
);
...
...
@@ -172,13 +174,14 @@ Gia_Man_t * Wln_BlastSystemVerilog( char * pFileName, char * pTopModule, char *
char
*
pFileTemp
=
"_temp_.aig"
;
int
fRtlil
=
strstr
(
pFileName
,
".rtl"
)
!=
NULL
;
int
fSVlog
=
strstr
(
pFileName
,
".sv"
)
!=
NULL
;
sprintf
(
Command
,
"%s -qp
\"
%s %s%s
%s; hierarchy %s%s; flatten; proc; %saigmap; write_aiger %s
\"
"
,
sprintf
(
Command
,
"%s -qp
\"
%s %s%s
%s%s; hierarchy %s%s; flatten; proc; %saigmap; write_aiger %s
\"
"
,
Wln_GetYosysName
(),
fRtlil
?
"read_rtlil"
:
"read_verilog"
,
fRtlil
?
"read_rtlil"
:
"read_verilog"
,
pDefines
?
"-D"
:
""
,
pDefines
?
pDefines
:
""
,
fSVlog
?
" -sv "
:
" "
,
pFileName
,
pTopModule
?
"-top "
:
"-auto-top"
,
fSVlog
?
"-sv "
:
""
,
pFileName
,
pTopModule
?
"-top "
:
"-auto-top"
,
pTopModule
?
pTopModule
:
""
,
fTechMap
?
"techmap; setundef -zero; "
:
""
,
pFileTemp
);
if
(
fVerbose
)
...
...
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