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
598b4260
Commit
598b4260
authored
Sep 06, 2021
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apply port standardization to tasks and functions
parent
95c2bc99
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
1 deletions
+63
-1
src/Convert/PortDecl.hs
+23
-1
test/core/non_ansi_port_decl_tf.sv
+22
-0
test/core/non_ansi_port_decl_tf.v
+18
-0
No files found.
src/Convert/PortDecl.hs
View file @
598b4260
...
...
@@ -28,11 +28,20 @@ traverseDescription :: Description -> Description
traverseDescription
(
Part
attrs
extern
kw
liftetime
name
ports
items
)
=
Part
attrs
extern
kw
liftetime
name
ports
items'
where
items'
=
convertPorts
name
ports
items
traverseDescription
(
PackageItem
item
)
=
PackageItem
$
convertPackageItem
item
traverseDescription
other
=
other
convertPackageItem
::
PackageItem
->
PackageItem
convertPackageItem
(
Function
l
t
x
decls
stmts
)
=
Function
l
t
x
(
convertTFDecls
decls
)
stmts
convertPackageItem
(
Task
l
x
decls
stmts
)
=
Task
l
x
(
convertTFDecls
decls
)
stmts
convertPackageItem
other
=
other
convertPorts
::
Identifier
->
[
Identifier
]
->
[
ModuleItem
]
->
[
ModuleItem
]
convertPorts
name
ports
items
|
not
(
null
extraPorts
)
=
|
not
(
null
name
)
&&
not
(
null
extraPorts
)
=
error
$
"declared ports "
++
intercalate
", "
extraPorts
++
" are not in the port list of "
++
name
|
otherwise
=
...
...
@@ -48,6 +57,8 @@ convertPorts name ports items
|
Variable
d
_
x
_
e
<-
decl
=
rewrite
decl
(
combineIdent
x
)
d
x
e
|
Net
d
_
_
_
x
_
e
<-
decl
=
rewrite
decl
(
combineIdent
x
)
d
x
e
|
otherwise
=
MIPackageItem
$
Decl
decl
traverseItem
(
MIPackageItem
item
)
=
MIPackageItem
$
convertPackageItem
item
traverseItem
other
=
other
-- produce the combined declaration for a port, if it has one
...
...
@@ -57,6 +68,17 @@ convertPorts name ports items
dataDecl
<-
lookup
x
dataDecls
Just
$
combineDecls
portDecl
dataDecl
-- wrapper for convertPorts enabling its application to task or function decls
convertTFDecls
::
[
Decl
]
->
[
Decl
]
convertTFDecls
=
map
unwrap
.
convertPorts
""
[]
.
map
wrap
where
wrap
::
Decl
->
ModuleItem
wrap
=
MIPackageItem
.
Decl
unwrap
::
ModuleItem
->
Decl
unwrap
item
=
decl
where
MIPackageItem
(
Decl
decl
)
=
item
-- given helpfully extracted information, update the given declaration
rewrite
::
Decl
->
Maybe
Decl
->
Direction
->
Identifier
->
Expr
->
ModuleItem
-- implicitly-typed ports default to `logic` in SystemVerilog
...
...
test/core/non_ansi_port_decl_tf.sv
0 → 100644
View file @
598b4260
function
automatic
[
4
:
0
]
f
;
input
signed
[
3
:
0
]
x
;
reg
[
3
:
0
]
x
;
var
type
(
x
)
y
;
y
=
x
;
f
=
y
;
endfunction
module
top
;
task
t
;
input
signed
[
3
:
0
]
x
;
reg
[
3
:
0
]
x
;
var
type
(
x
)
y
;
reg
[
4
:
0
]
z
;
y
=
x
;
z
=
y
;
$
display
(
"t(%b) -> %b"
,
x
,
z
)
;
endtask
localparam
[
3
:
0
]
X
=
4'b1011
;
localparam
[
4
:
0
]
Y
=
f
(
X
)
;
initial
$
display
(
"f(%b) -> %b"
,
X
,
Y
)
;
initial
t
(
X
)
;
endmodule
test/core/non_ansi_port_decl_tf.v
0 → 100644
View file @
598b4260
module
top
;
function
automatic
[
4
:
0
]
f
;
input
reg
signed
[
3
:
0
]
x
;
f
=
x
;
endfunction
task
t
;
input
signed
[
3
:
0
]
x
;
reg
[
4
:
0
]
z
;
begin
z
=
x
;
$
display
(
"t(%b) -> %b"
,
x
,
z
)
;
end
endtask
localparam
[
3
:
0
]
X
=
4'b1011
;
localparam
[
4
:
0
]
Y
=
f
(
X
)
;
initial
$
display
(
"f(%b) -> %b"
,
X
,
Y
)
;
initial
t
(
X
)
;
endmodule
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