<div dir="ltr"><br><div class="gmail_extra"><div class="gmail_quote">On Wed, Oct 28, 2015 at 5:05 AM, Simon Peyton Jones <span dir="ltr"><<a href="mailto:simonpj@microsoft.com" target="_blank">simonpj@microsoft.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I'm out of bandwidth at the moment, but let me just remark that this is swampy territory. It's easy to mess up.<br>
<br>
A particular challenge is polymorphism:<br>
<br>
  map :: forall a b. (a->b) -> [a] -> [b]<br>
  map f (x:xs) = (f x) : (map f xs)<br>
<br>
In the compiled code for map, is a thunk built for (f x), or is it evaluated eagerly.  Well, if you can instantiate the 'b' with !Int, say, then it should be evaluated eagerly. But if you instantiate with Int, then build a thunk.   So, we really need two compiled versions of 'map'.  Or perhaps four if we take 'b' into account.  In general an exponential number.<br></blockquote><div><br></div><div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">That's one reason that GHC doesn't let you instantiate a polymorphic type variable with an unlifted type, even if it is boxed.<br></blockquote></div><div><br></div><div>This is one of the things we'd like to be able to fix. Right now I have a small explosion of code going on that is being duplicated over and over to parameterize over different unlifted types.</div><div><br></div><div>In the discussions about levity/lifting so far Dan and I have been trying to tease apart what cases can be handled "forall" style rather than "pi" style to borrow the split from Richard's presentation, just to get at a sense of what really could be talked about without needing different calling conventions, despite lifting. There are situations where we are truly polymorphic in lifting, e.g. (==) from Eq and compare from Ord don't care if the arguments of type 'a' are lifted or not.  </div><div><div><br></div><div>Until you go to write a function application that returns a value of that type. If all you do is rearrange them then that machinery can be parametric in the choice. `map` on the other hand, cares about the selection because of the `f x` application. </div></div><div><br></div><div>(Similarly, `min` and `max` from Ord do care about the convention on hand.)<br></div><div><br></div><div>One could see a world wherein you could parameterize such an instance on levity explicitly, but it is pretty exhausting to think about.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Another big issue is that *any* mixture of subtyping and (Haskell-style) parametric polymorphism gets very complicated very fast.  Especially when you add higher kinds.  (Then you need variance annotations, and before long you want variance polymorphism.)  I'm extremely dubious about adding subtyping to Haskell.  That's one reason Scala is so complicated.<br></blockquote><div><br></div><div>I was actually quite surprised to see a subtyping relationship rear its head in:</div><div><br></div><div><a href="https://ghc.haskell.org/trac/ghc/attachment/wiki/ImpredicativePolymorphism/Impredicative-2015/impredicativity.pdf">https://ghc.haskell.org/trac/ghc/attachment/wiki/ImpredicativePolymorphism/Impredicative-2015/impredicativity.pdf</a></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">But re-imagining GHC is good too.  Swampy territory it may be, but it's also important, and there really *ought* to be a more seamless of combining strictness and laziness.</blockquote><div><br></div><div>I'm somewhat dubious of most approaches that try to mix strictness and laziness under one umbrella. That is why trying to tease out the small handful of cases where we are truly parametric in levity seems interesting. Finding out some situations existed where we really don't care if a type is lifted or not was eye opening to me personally, at least.</div><div><br></div><div>-Edward</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><span class="im">
|  -----Original Message-----<br>
|  From: Dan Doel [mailto:<a href="mailto:dan.doel@gmail.com">dan.doel@gmail.com</a>]<br>
</span><span class="im">|  Sent: 27 October 2015 23:42<br>
|  To: Richard Eisenberg<br>
|  Cc: Simon Peyton Jones; ghc-devs<br>
|  Subject: Re: Unlifted data types<br>
|<br>
</span><div class=""><div class="h5">|  Hello,<br>
|<br>
|  I've added a section with my notes on the minimal semantics required to<br>
|  address what Haskell lacks with respect to strict types.<br>
|<br>
|  Ed Kmett pointed me to some stuff that I think may fix all the problems with<br>
|  the !T sort of solution. It builds on the new constraint being considered<br>
|  for handling impredicativity. The quick sketch goes like this. Given the<br>
|  declaration:<br>
|<br>
|      data Nat = Z | S !Nat<br>
|<br>
|  then:<br>
|<br>
|      Nat :: *<br>
|      !Nat :: Unlifted<br>
|      S :: Nat -> Nat<br>
|<br>
|  But we also have:<br>
|<br>
|      !Nat <~ Nat<br>
|<br>
|  and the witness of this is just an identity function, because all values of<br>
|  type !Nat are legitimate values of type Nat. Then we can<br>
|  have:<br>
|<br>
|      case n of<br>
|        S m -> ...<br>
|        Z -> ...<br>
|<br>
|  where m has type !Nat, but we can still call `S m` and the like, because<br>
|  !Nat <~ Nat. If we do use `S m`, the S call will do some unnecessary<br>
|  evaluation of m, but this can (hopefully) be fixed with an optimization<br>
|  based on knowing that m has type !Nat, which we are weakening to Nat.<br>
|<br>
|  Thoughts?<br>
|<br>
|  -- Dan<br>
|<br>
|<br>
|  On Thu, Oct 8, 2015 at 8:36 AM, Richard Eisenberg <<a href="mailto:eir@cis.upenn.edu">eir@cis.upenn.edu</a>> wrote:<br>
|  ><br>
|  > On Oct 8, 2015, at 6:02 AM, Simon Peyton Jones <<a href="mailto:simonpj@microsoft.com">simonpj@microsoft.com</a>><br>
|  wrote:<br>
|  ><br>
|  >> What's the wiki page?<br>
|  ><br>
|  > <a href="https://ghc.haskell.org/trac/ghc/wiki/UnliftedDataTypes" rel="noreferrer" target="_blank">https://ghc.haskell.org/trac/ghc/wiki/UnliftedDataTypes</a><br>
_______________________________________________<br>
ghc-devs mailing list<br>
<a href="mailto:ghc-devs@haskell.org">ghc-devs@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs</a><br>
</div></div></blockquote></div><br></div></div>