<div dir="ltr">Hi Chris,<div><br></div><div>I think you're looking for -ddump-ds which outputs the Core just after the desugarer is done. -ddump-simpl gives the Core after the simplifier is run.</div><div><br></div><div>Hope that helps,</div><div>Rahul</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Apr 7, 2017 at 6:25 PM, Christopher Done <span dir="ltr"><<a href="mailto:chrisdone@gmail.com" target="_blank">chrisdone@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
Just checking, if I want to see the Haskell code desugared to core<br>
BEFORE any simplification passes, is this the way to do it?<br>
<br>
bash-3.2$ cat > X.hs<br>
module X where it = (\x -> x * 2) 123<br>
bash-3.2$ stack exec -- ghc -ddump-simpl X.hs -fforce-recomp<br>
-fmax-simplifier-iterations=0 -O0<br>
[1 of 1] Compiling X                ( X.hs, X.o )<br>
<br>
==================== Tidy Core ====================<br>
Result size of Tidy Core = {terms: 11, types: 3, coercions: 0}<br>
<br>
-- RHS size: {terms: 4, types: 1, coercions: 0}<br>
it :: Integer<br>
[GblId, Str=DmdType]<br>
it = * @ Integer GHC.Num.$fNumInteger 123 2<br>
<br>
I was a bit surprised that the lambda is collapsed already with<br>
optimizations turned off and the simplifier iterations set to 0. I<br>
changed this to (\x -> x * x) and it produced a let instead. Is this<br>
just one of the things the HS->Core desugarer decides to do?<br>
<br>
Ciao!<br>
______________________________<wbr>_________________<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-<wbr>bin/mailman/listinfo/ghc-devs</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">Rahul Muttineni</div>
</div>