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
8a8b089a
Commit
8a8b089a
authored
Aug 16, 2020
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
assume 0-based sized ranges are non-negative
parent
2429a2c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/Convert/ExprUtils.hs
+6
-0
No files found.
src/Convert/ExprUtils.hs
View file @
8a8b089a
...
...
@@ -178,6 +178,7 @@ rangeSizeHiLo (hi, lo) =
-- chooses one or the other expression based on the endianness of the given
-- range; [hi:lo] chooses the first expression
endianCondExpr
::
Range
->
Expr
->
Expr
->
Expr
endianCondExpr
SizedRange
{}
e
_
=
e
endianCondExpr
r
e1
e2
=
simplify
$
Mux
(
uncurry
(
BinOp
Ge
)
r
)
e1
e2
-- chooses one or the other range based on the endianness of the given range,
...
...
@@ -197,3 +198,8 @@ dimensionsSize ranges =
foldl
(
BinOp
Mul
)
(
RawNum
1
)
$
map
rangeSize
$
ranges
-- "sized ranges" are of the form [E-1:0], where E is any expression; in most
-- designs, we can safely assume that E >= 1, allowing for more succinct output
pattern
SizedRange
::
Expr
->
Range
pattern
SizedRange
expr
=
(
BinOp
Sub
expr
(
RawNum
1
),
RawNum
0
)
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