Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
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
sv2v
Commits
55a54437
Commit
55a54437
authored
Apr 22, 2019
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
logic conversion makes continuous assignments procedural where necessary
parent
d41dcb2b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
src/Convert/Logic.hs
+13
-6
No files found.
src/Convert/Logic.hs
View file @
55a54437
...
...
@@ -19,7 +19,7 @@ import qualified Data.Set as Set
import
Convert.Traverse
import
Language.SystemVerilog.AST
type
RegIdents
=
Set
.
Set
String
type
Idents
=
Set
.
Set
Identifier
convert
::
AST
->
AST
convert
=
traverseDescriptions
convertDescription
...
...
@@ -38,6 +38,12 @@ convertDescription orig =
conversion
=
traverseDecls
convertDecl
.
convertModuleItem
idents
=
execWriter
(
collectModuleItemsM
regIdents
orig
)
convertModuleItem
::
ModuleItem
->
ModuleItem
convertModuleItem
(
Assign
Nothing
lhs
expr
)
=
if
Set
.
null
$
Set
.
intersection
usedIdents
idents
then
Assign
Nothing
lhs
expr
else
AlwaysC
AlwaysComb
$
AsgnBlk
AsgnOpEq
lhs
expr
where
usedIdents
=
execWriter
$
collectNestedLHSsM
lhsIdents
lhs
convertModuleItem
(
MIDecl
(
Variable
dir
(
IntegerVector
TLogic
sg
mr
)
ident
a
me
))
=
MIDecl
$
Variable
dir
(
t
mr
)
ident
a
me
where
...
...
@@ -55,17 +61,18 @@ convertDescription orig =
Variable
d
(
IntegerVector
TReg
sg
rs
)
x
a
me
convertDecl
other
=
other
regIdents
::
ModuleItem
->
Writer
Reg
Idents
()
regIdents
::
ModuleItem
->
Writer
Idents
()
regIdents
(
AlwaysC
_
stmt
)
=
collectNestedStmtsM
(
collectStmtLHSsM
(
collectNestedLHSsM
i
dents
))
$
collectNestedStmtsM
(
collectStmtLHSsM
(
collectNestedLHSsM
lhsI
dents
))
$
traverseNestedStmts
removeTimings
stmt
where
idents
::
LHS
->
Writer
RegIdents
()
idents
(
LHSIdent
vx
)
=
tell
$
Set
.
singleton
vx
idents
_
=
return
()
-- the collector recurses for us
removeTimings
::
Stmt
->
Stmt
removeTimings
(
Timing
_
s
)
=
s
removeTimings
other
=
other
regIdents
(
Initial
stmt
)
=
regIdents
$
AlwaysC
Always
stmt
regIdents
_
=
return
()
lhsIdents
::
LHS
->
Writer
Idents
()
lhsIdents
(
LHSIdent
vx
)
=
tell
$
Set
.
singleton
vx
lhsIdents
_
=
return
()
-- the collector recurses for us
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