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
eda9a34a
Commit
eda9a34a
authored
Jul 16, 2021
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add simplification assumption for reversed sized ranges
parent
dd951740
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/Convert/ExprUtils.hs
+5
-0
No files found.
src/Convert/ExprUtils.hs
View file @
eda9a34a
...
@@ -193,6 +193,7 @@ rangeSizeHiLo (hi, lo) =
...
@@ -193,6 +193,7 @@ rangeSizeHiLo (hi, lo) =
-- range; [hi:lo] chooses the first expression
-- range; [hi:lo] chooses the first expression
endianCondExpr
::
Range
->
Expr
->
Expr
->
Expr
endianCondExpr
::
Range
->
Expr
->
Expr
->
Expr
endianCondExpr
SizedRange
{}
e
_
=
e
endianCondExpr
SizedRange
{}
e
_
=
e
endianCondExpr
RevSzRange
{}
_
e
=
e
endianCondExpr
r
e1
e2
=
simplify
$
Mux
(
uncurry
(
BinOp
Ge
)
r
)
e1
e2
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,
-- chooses one or the other range based on the endianness of the given range,
...
@@ -218,3 +219,7 @@ dimensionsSize ranges =
...
@@ -218,3 +219,7 @@ dimensionsSize ranges =
-- designs, we can safely assume that E >= 1, allowing for more succinct output
-- designs, we can safely assume that E >= 1, allowing for more succinct output
pattern
SizedRange
::
Expr
->
Range
pattern
SizedRange
::
Expr
->
Range
pattern
SizedRange
expr
=
(
BinOp
Sub
expr
(
RawNum
1
),
RawNum
0
)
pattern
SizedRange
expr
=
(
BinOp
Sub
expr
(
RawNum
1
),
RawNum
0
)
-- similar to the above pattern, we assume E >= 1 for any range like [0:E-1]
pattern
RevSzRange
::
Expr
->
Range
pattern
RevSzRange
expr
=
(
RawNum
0
,
BinOp
Sub
expr
(
RawNum
1
))
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