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
92feef87
Commit
92feef87
authored
Sep 03, 2019
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
standardized, shorter hash generation
parent
9435c9d9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
9 deletions
+11
-9
src/Convert/Stream.hs
+1
-4
src/Convert/Struct.hs
+1
-5
src/Language/SystemVerilog/AST.hs
+9
-0
No files found.
src/Convert/Stream.hs
View file @
92feef87
...
...
@@ -70,10 +70,7 @@ streamerBlock chunk size asgn output input =
streamerBlockName
::
Expr
->
Expr
->
Identifier
streamerBlockName
chunk
size
=
"_sv2v_strm_"
++
take
5
str
where
val
=
hash
$
show
(
chunk
,
size
)
str
=
tail
$
show
val
"_sv2v_strm_"
++
shortHash
(
chunk
,
size
)
traverseStmtM
::
Stmt
->
Writer
Funcs
Stmt
traverseStmtM
(
AsgnBlk
op
lhs
expr
)
=
...
...
src/Convert/Struct.hs
View file @
92feef87
...
...
@@ -8,7 +8,6 @@ module Convert.Struct (convert) where
import
Control.Monad.State
import
Control.Monad.Writer
import
Data.Hashable
(
hash
)
import
Data.List
(
elemIndex
,
sortOn
)
import
Data.Maybe
(
fromJust
,
isJust
)
import
Data.Tuple
(
swap
)
...
...
@@ -207,10 +206,7 @@ packerFn structTf =
-- returns a "unique" name for the packer for a given struct type
packerFnName
::
TypeFunc
->
Identifier
packerFnName
structTf
=
"sv2v_pack_struct_"
++
str
where
val
=
hash
$
show
structTf
str
=
tail
$
show
val
"sv2v_struct_"
++
shortHash
structTf
-- This is where the magic happens. This is responsible for converting struct
-- accesses, assignments, and literals, given appropriate information about the
...
...
src/Language/SystemVerilog/AST.hs
View file @
92feef87
...
...
@@ -27,8 +27,12 @@ module Language.SystemVerilog.AST
,
module
Type
,
exprToLHS
,
lhsToExpr
,
shortHash
)
where
import
Text.Printf
(
printf
)
import
Data.Hashable
(
hash
)
import
Language.SystemVerilog.AST.Attr
as
Attr
import
Language.SystemVerilog.AST.Decl
as
Decl
import
Language.SystemVerilog.AST.Description
as
Description
...
...
@@ -68,3 +72,8 @@ lhsToExpr (LHSRange l m r ) = Range (lhsToExpr l) m r
lhsToExpr
(
LHSDot
l
x
)
=
Dot
(
lhsToExpr
l
)
x
lhsToExpr
(
LHSConcat
ls
)
=
Concat
$
map
lhsToExpr
ls
lhsToExpr
(
LHSStream
o
e
ls
)
=
Stream
o
e
$
map
lhsToExpr
ls
shortHash
::
(
Show
a
)
=>
a
->
String
shortHash
x
=
take
5
$
printf
"%05X"
val
where
val
=
hash
$
show
x
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