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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
runeks
GHC
Commits
03ca551d
Commit
03ca551d
authored
1 year ago
by
Simon Peyton Jones
Committed by
Marge Bot
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Comments only in FloatIn
Relevant to #3458
parent
d8baa1bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/GHC/Core/Opt/FloatIn.hs
+23
-0
23 additions, 0 deletions
compiler/GHC/Core/Opt/FloatIn.hs
with
23 additions
and
0 deletions
compiler/GHC/Core/Opt/FloatIn.hs
+
23
−
0
View file @
03ca551d
...
...
@@ -234,6 +234,29 @@ Every jump must be exact, so the jump to j must have three arguments. Hence
we're careful not to float into the target of a jump (though we can float into
the arguments just fine).
Floating in can /enhance/ join points. Consider this (#3458)
f2 x = let g :: Int -> Int
g y = if y==0 then y+x else g (y-1)
in case g x of
0 -> True
_ -> False
Here `g` is not a join point. But if we float inwards it becomes one! We
float in; the occurrence analyser identifies `g` as a join point; the Simplifier
retains that property, so we get
f2 x = case (joinrec
g y = if y==0 then y+x else g (y-1)
in jump g x) of
0 -> True
_ -> False
Now that outer case gets pushed into the RHS of the joinrec, giving
f2 x = joinrec g y = if y==0
then case y+x of { 0 -> True; _ -> False }
else jump g (y-1)
in jump g x
Nice!
Note [Floating in past a lambda group]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* We must be careful about floating inside a value lambda.
...
...
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