Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reinier Maas
GHC
Commits
8af401cc
Commit
8af401cc
authored
2 years ago
by
Sylvain Henry
Committed by
Marge Bot
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Make WordQuotRem2Op ok-for-speculation too
parent
1148ac72
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
compiler/GHC/Builtin/PrimOps.hs
+2
-1
2 additions, 1 deletion
compiler/GHC/Builtin/PrimOps.hs
compiler/GHC/Core/Utils.hs
+4
-2
4 additions, 2 deletions
compiler/GHC/Core/Utils.hs
with
6 additions
and
3 deletions
compiler/GHC/Builtin/PrimOps.hs
+
2
−
1
View file @
8af401cc
...
...
@@ -551,7 +551,6 @@ primOpIsCheap op = primOpOkForSpeculation op
primOpIsDiv
::
PrimOp
->
Bool
primOpIsDiv
op
=
case
op
of
-- TODO: quotRemWord2
IntQuotOp
->
True
Int8QuotOp
->
True
Int16QuotOp
->
True
...
...
@@ -588,6 +587,8 @@ primOpIsDiv op = case op of
Word32QuotRemOp
->
True
-- Word64QuotRemOp doesn't exist (yet)
WordQuotRem2Op
->
True
FloatDivOp
->
True
DoubleDivOp
->
True
_
->
False
...
...
This diff is collapsed.
Click to expand it.
compiler/GHC/Core/Utils.hs
+
4
−
2
View file @
8af401cc
...
...
@@ -1615,8 +1615,10 @@ app_ok fun_ok primop_ok fun args
PrimOpId
op
_
|
primOpIsDiv
op
,
[
arg1
,
Lit
lit
]
<-
args
->
not
(
isZeroLit
lit
)
&&
expr_ok
fun_ok
primop_ok
arg1
,
Lit
divisor
<-
last
args
-- there can be 2 args (most div primops) or 3 args
-- (WordQuotRem2Op), hence the use of last/init
->
not
(
isZeroLit
divisor
)
&&
all
(
expr_ok
fun_ok
primop_ok
)
(
init
args
)
-- Special case for dividing operations that fail
-- In general they are NOT ok-for-speculation
-- (which primop_ok will catch), but they ARE OK
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment