Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex D
GHC
Commits
8f32d2bc
Commit
8f32d2bc
authored
Aug 10, 2019
by
Tobias Decking
Committed by
Marge Bot
Aug 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
base: Reintroduce fusion for scanr
While avoiding #16943.
parent
605bce26
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
1 deletion
+46
-1
libraries/base/GHC/List.hs
libraries/base/GHC/List.hs
+45
-0
libraries/base/changelog.md
libraries/base/changelog.md
+1
-1
No files found.
libraries/base/GHC/List.hs
View file @
8f32d2bc
...
@@ -385,11 +385,56 @@ foldr1 f = go
...
@@ -385,11 +385,56 @@ foldr1 f = go
-- Note that
-- Note that
--
--
-- > head (scanr f z xs) == foldr f z xs.
-- > head (scanr f z xs) == foldr f z xs.
{-# NOINLINE [1] scanr #-}
scanr
::
(
a
->
b
->
b
)
->
b
->
[
a
]
->
[
b
]
scanr
::
(
a
->
b
->
b
)
->
b
->
[
a
]
->
[
b
]
scanr
_
q0
[]
=
[
q0
]
scanr
_
q0
[]
=
[
q0
]
scanr
f
q0
(
x
:
xs
)
=
f
x
q
:
qs
scanr
f
q0
(
x
:
xs
)
=
f
x
q
:
qs
where
qs
@
(
q
:
_
)
=
scanr
f
q0
xs
where
qs
@
(
q
:
_
)
=
scanr
f
q0
xs
{-# INLINE [0] strictUncurryScanr #-}
strictUncurryScanr
::
(
a
->
b
->
c
)
->
(
a
,
b
)
->
c
strictUncurryScanr
f
pair
=
case
pair
of
(
x
,
y
)
->
f
x
y
{-# INLINE [0] scanrFB #-}
-- See Note [Inline FB functions]
scanrFB
::
(
a
->
b
->
b
)
->
(
b
->
c
->
c
)
->
a
->
(
b
,
c
)
->
(
b
,
c
)
scanrFB
f
c
=
\
x
~
(
r
,
est
)
->
(
f
x
r
,
r
`
c
`
est
)
-- This lazy pattern match on the tuple is necessary to prevent
-- an infinite loop when scanr recieves a fusable infinite list,
-- which was the reason for #16943.
-- See Note [scanrFB and evaluation] below
{-# RULES
"scanr" [~1] forall f q0 ls . scanr f q0 ls =
build (\c n -> strictUncurryScanr c (foldr (scanrFB f c) (q0,n) ls))
"scanrList" [1] forall f q0 ls .
strictUncurryScanr (:) (foldr (scanrFB f (:)) (q0,[]) ls) =
scanr f q0 ls
#-}
{- Note [scanrFB and evaluation]
In a previous Version, the pattern match on the tuple in scanrFB used to be
strict. If scanr is called with a build expression, the following would happen:
The rule "scanr" would fire, and we obtain
build (\c n -> strictUncurryScanr c (foldr (scanrFB f c) (q0,n) (build g))))
The rule "foldr/build" now fires, and the second argument of strictUncurryScanr
will be the expression
g (scanrFB f c) (q0,n)
which will be evaluated, thanks to strictUncurryScanr.
The type of (g :: (a -> b -> b) -> b -> b) allows us to apply parametricity:
Either the tuple is returned (trivial), or scanrFB is called:
g (scanrFB f c) (q0,n) = scanrFB ... (g' (scanrFB f c) (q0,n))
Notice that thanks to the strictness of scanrFB, the expression
g' (scanrFB f c) (q0,n) gets evaluated aswell. In particular, if g' is a
recursive case of g, parametricity applies again and we will again have a
possible call to scanrFB. In short, g (scanrFB f c) (q0,n) will end up being
completely evaluated. This is resource consuming for large lists and if the
recursion has no exit condition (and this will be the case in functions like
repeat or cycle), the program will crash (see #16943).
The solution: Don't make scanrFB strict in its last argument. Doing so will
remove the cause for the chain of evaluations, and all is well.
-}
-- | \(\mathcal{O}(n)\). 'scanr1' is a variant of 'scanr' that has no starting
-- | \(\mathcal{O}(n)\). 'scanr1' is a variant of 'scanr' that has no starting
-- value argument.
-- value argument.
scanr1
::
(
a
->
a
->
a
)
->
[
a
]
->
[
a
]
scanr1
::
(
a
->
a
->
a
)
->
[
a
]
->
[
a
]
...
...
libraries/base/changelog.md
View file @
8f32d2bc
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
`Word`
, and
`WordN`
now throw an overflow exception for negative shift
`Word`
, and
`WordN`
now throw an overflow exception for negative shift
values (instead of being undefined behaviour).
values (instead of being undefined behaviour).
*
`scanr`
no longer
participates in list fusion (due
#16943)
*
`scanr`
no longer
crashes when passed a fusable, infinite list. (
#16943)
## 4.12.0.0 *21 September 2018*
## 4.12.0.0 *21 September 2018*
*
Bundled with GHC 8.6.1
*
Bundled with GHC 8.6.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