Comments only
authorsimonpj@microsoft.com <unknown>
Thu, 12 Oct 2006 16:02:54 +0000 (16:02 +0000)
committersimonpj@microsoft.com <unknown>
Thu, 12 Oct 2006 16:02:54 +0000 (16:02 +0000)
compiler/stranal/DmdAnal.lhs
compiler/stranal/WorkWrap.lhs

index 3fc8477..309cd29 100644 (file)
@@ -474,7 +474,22 @@ The thunk_cpr_ok stuff [CPR-AND-STRICTNESS]
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 If the rhs is a thunk, we usually forget the CPR info, because
 it is presumably shared (else it would have been inlined, and 
-so we'd lose sharing if w/w'd it into a function.
+so we'd lose sharing if w/w'd it into a function).  E.g.
+
+       let r = case expensive of
+                 (a,b) -> (b,a)
+       in ...
+
+If we marked r as having the CPR property, then we'd w/w into
+
+       let $wr = \() -> case expensive of
+                           (a,b) -> (# b, a #)
+           r = case $wr () of
+                 (# b,a #) -> (b,a)
+       in ...
+
+But now r is a thunk, which won't be inlined, so we are no further ahead.
+
 
 However, if the strictness analyser has figured out (in a previous 
 iteration) that it's strict, then we DON'T need to forget the CPR info.
index 2f5d38c..456f2f0 100644 (file)
@@ -317,7 +317,7 @@ splitThunk transforms like this:
 Now simplifier will transform to
 
       case x-rhs of 
-       I# a -> let x* = I# b 
+       I# a -> let x* = I# a 
                in body
 
 which is what we want. Now suppose x-rhs is itself a case: