Rami.Mukhtar:
> Hi,
> 
> Can anyone tell me a way to identify the generated assembly (as found in the
> intermediate files produced by GHC) corresponding to a particular fragment of
> Core code.  

Hey Rami,

I use the ghc-core tool:

    http://hackage.haskell.org/package/ghc-core

Which displays both the core and assembly in a pager, with syntax
highlighting. 

In general, if you see "foo" in the Core, you're looking for "foo_entry"
or similar in the assembly.

-- Don
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to