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
7ccab1c7
Commit
7ccab1c7
authored
Aug 17, 2021
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix parsing of sized ports with implicit directions
parent
7325bd79
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
31 deletions
+31
-31
CHANGELOG.md
+1
-0
src/Language/SystemVerilog/Parser/ParseDecl.hs
+12
-31
test/core/function_implicit_dir.sv
+9
-0
test/core/function_implicit_dir.v
+9
-0
No files found.
CHANGELOG.md
View file @
7ccab1c7
...
...
@@ -17,6 +17,7 @@
*
Support deferred immediate assertion statements
*
Apply implicit port directions to tasks and functions
*
Support bare delay controls with real number delays
*
Fix parsing of sized ports with implicit directions
## v0.0.8
...
...
src/Language/SystemVerilog/Parser/ParseDecl.hs
View file @
7ccab1c7
...
...
@@ -96,8 +96,7 @@ parseDTsAsPortDecls' pieces =
Just
simpleIdents
=
maybeSimpleIdents
isSimpleList
=
maybeSimpleIdents
/=
Nothing
declarations
=
propagateDirections
Input
$
parseDTsAsDecls
ModeDefault
pieces'
declarations
=
parseDTsAsDecls
Input
ModeDefault
pieces'
pieces'
=
filter
(
not
.
isAttr
)
pieces
...
...
@@ -124,24 +123,6 @@ parseDTsAsPortDecls' pieces =
wrapDecl
::
[
Attr
]
->
Decl
->
ModuleItem
wrapDecl
attrs
decl
=
foldr
MIAttr
(
MIPackageItem
$
Decl
decl
)
attrs
-- internal utility for carying forward port directions in a port list
propagateDirections
::
Direction
->
[
Decl
]
->
[
Decl
]
propagateDirections
dir
(
decl
@
(
Variable
_
InterfaceT
{}
_
_
_
)
:
decls
)
=
decl
:
propagateDirections
dir
decls
propagateDirections
lastDir
(
Variable
currDir
t
x
a
e
:
decls
)
=
decl
:
propagateDirections
dir
decls
where
decl
=
Variable
dir
t
x
a
e
dir
=
if
currDir
==
Local
then
lastDir
else
currDir
propagateDirections
lastDir
(
Net
currDir
n
s
t
x
a
e
:
decls
)
=
decl
:
propagateDirections
dir
decls
where
decl
=
Net
dir
n
s
t
x
a
e
dir
=
if
currDir
==
Local
then
lastDir
else
currDir
propagateDirections
dir
(
decl
:
decls
)
=
decl
:
propagateDirections
dir
decls
propagateDirections
_
[]
=
[]
-- internal utility for a simple list of port identifiers
parseDTsAsIdents
::
[
DeclToken
]
->
Maybe
[
Identifier
]
parseDTsAsIdents
[
DTIdent
_
x
,
DTEnd
_
_
]
=
Just
[
x
]
...
...
@@ -236,13 +217,13 @@ parseDTsAsIntantiation l0 delimTok =
-- [PUBLIC]: parser for comma-separated task/function port declarations
parseDTsAsTFDecls
::
[
DeclToken
]
->
[
Decl
]
parseDTsAsTFDecls
=
p
ropagateDirections
Input
.
parseDTsAsDecls
ModeDefault
parseDTsAsTFDecls
=
p
arseDTsAsDecls
Input
ModeDefault
-- [PUBLIC]; used for "single" declarations, i.e., declarations appearing
-- outside of a port list
parseDTsAsDecl
::
[
DeclToken
]
->
[
Decl
]
parseDTsAsDecl
=
parseDTsAsDecls
ModeSingle
parseDTsAsDecl
=
parseDTsAsDecls
Local
ModeSingle
-- [PUBLIC]: parser for single block item declarations or assign or arg-less
...
...
@@ -259,7 +240,7 @@ declLookahead :: [DeclToken] -> Bool
declLookahead
l0
=
length
l0
/=
length
l6
&&
tripLookahead
l6
where
(
_
,
l1
)
=
takeDir
l0
(
_
,
l1
)
=
takeDir
l0
Local
(
_
,
l2
)
=
takeLifetime
l1
(
_
,
l3
)
=
takeConst
l2
(
_
,
l4
)
=
takeVarOrNet
l3
...
...
@@ -303,7 +284,7 @@ portsToArgs bindings =
parseDTsAsDeclsOrAsgns
::
[
DeclToken
]
->
Either
[
Decl
]
[(
LHS
,
Expr
)]
parseDTsAsDeclsOrAsgns
tokens
=
if
declLookahead
tokens
then
Left
$
parseDTsAsDecls
ModeForLoop
tokens
then
Left
$
parseDTsAsDecls
Local
ModeForLoop
tokens
else
Right
$
parseDTsAsAsgns
$
shiftIncOrDec
tokens
-- internal parser for basic assignment lists
...
...
@@ -363,8 +344,8 @@ data Mode
deriving
Eq
-- internal; entrypoint of the critical portion of our parser
parseDTsAsDecls
::
Mode
->
[
DeclToken
]
->
[
Decl
]
parseDTsAsDecls
mode
l0
=
parseDTsAsDecls
::
Direction
->
Mode
->
[
DeclToken
]
->
[
Decl
]
parseDTsAsDecls
backupDir
mode
l0
=
if
l
/=
Nothing
&&
l
/=
Just
Automatic
then
parseError
(
head
l1
)
"unexpected non-automatic lifetime"
else
if
dir
==
Local
&&
isImplicit
t
&&
not
(
isNet
$
head
l3
)
then
...
...
@@ -374,14 +355,14 @@ parseDTsAsDecls mode l0 =
else
if
mode
==
ModeSingle
then
parseError
(
head
l7
)
"unexpected token in declaration"
else
decls
++
parseDTsAsDecls
mode
l7
decls
++
parseDTsAsDecls
dir
mode
l7
where
initReason
|
hasDriveStrength
(
head
l3
)
=
"net with drive strength"
|
mode
==
ModeForLoop
=
"for loop"
|
con
=
"const"
|
otherwise
=
""
(
dir
,
l1
)
=
takeDir
l0
(
dir
,
l1
)
=
takeDir
l0
backupDir
(
l
,
l2
)
=
takeLifetime
l1
(
con
,
l3
)
=
takeConst
l2
(
von
,
l4
)
=
takeVarOrNet
l3
...
...
@@ -432,9 +413,9 @@ tripLookahead l0 =
(
_
,
l2
)
=
takeRanges
l1
(
_
,
l3
)
=
takeAsgn
l2
""
takeDir
::
[
DeclToken
]
->
(
Direction
,
[
DeclToken
])
takeDir
(
DTDir
_
dir
:
rest
)
=
(
dir
,
rest
)
takeDir
rest
=
(
Local
,
rest
)
takeDir
::
[
DeclToken
]
->
Direction
->
(
Direction
,
[
DeclToken
])
takeDir
(
DTDir
_
dir
:
rest
)
_
=
(
dir
,
rest
)
takeDir
rest
dir
=
(
dir
,
rest
)
takeLifetime
::
[
DeclToken
]
->
(
Maybe
Lifetime
,
[
DeclToken
])
takeLifetime
(
DTLifetime
_
l
:
rest
)
=
(
Just
l
,
rest
)
...
...
test/core/function_implicit_dir.sv
0 → 100644
View file @
7ccab1c7
module
top
;
function
automatic
integer
f
(
input
a
,
b
,
[
1
:
0
]
c
,
d
)
;
f
=
{
1'bx
,
a
,
1'bx
,
b
,
1'bx
,
c
,
1'bx
,
d
,
1'bx
};
endfunction
integer
x
=
f
(
0
,
1
,
2
,
3
)
;
initial
$
display
(
"%b"
,
x
)
;
endmodule
test/core/function_implicit_dir.v
0 → 100644
View file @
7ccab1c7
module
top
;
function
automatic
integer
f
(
input
a
,
b
,
input
[
1
:
0
]
c
,
d
)
;
f
=
{
1'bx
,
a
,
1'bx
,
b
,
1'bx
,
c
,
1'bx
,
d
,
1'bx
};
endfunction
integer
x
=
f
(
0
,
1
,
2
,
3
)
;
initial
$
display
(
"%b"
,
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