[Haskell-cafe] Toy implementation of the STG machine

2011-06-11 Thread Florian Weimer
I'm looking for a simple implementation of the STG machine to do some
experiments, preferably implemented in something with memory safety.
Performance is totally secondary.  I'm also not interested in garbage
collection details, but I do want to look at the contents of the
various stacks.

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


Re: [Haskell-cafe] Toy implementation of the STG machine

2011-06-11 Thread Thomas Schilling
Does Bernie Pope's http://www.haskell.org/haskellwiki/Ministg work for you?

On 11 June 2011 21:19, Florian Weimer f...@deneb.enyo.de wrote:
 I'm looking for a simple implementation of the STG machine to do some
 experiments, preferably implemented in something with memory safety.
 Performance is totally secondary.  I'm also not interested in garbage
 collection details, but I do want to look at the contents of the
 various stacks.

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




-- 
Push the envelope. Watch it bend.

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


Re: [Haskell-cafe] Toy implementation of the STG machine

2011-06-11 Thread Don Stewart
See also:

 * STG machine in Coq,
http://www.cs.ox.ac.uk/files/3858/pirog-biernacki-hs10.pdf

http://www.cs.ox.ac.uk/files/3858/pirog-biernacki-hs10.pdfAlso

 * ] Jon Mountjoy. The spineless tagless G-machine, naturally. 1998 ACM
SIGPLAN International Conference on Functional Programming,
SIGPLAN Notices, Vol. 34, No. 1, pages 163–173, Baltimore,
Maryland, September 1998. ACM Press.

On Sat, Jun 11, 2011 at 4:32 PM, Thomas Schilling
nomin...@googlemail.comwrote:

 Does Bernie Pope's http://www.haskell.org/haskellwiki/Ministg work for
 you?

 On 11 June 2011 21:19, Florian Weimer f...@deneb.enyo.de wrote:
  I'm looking for a simple implementation of the STG machine to do some
  experiments, preferably implemented in something with memory safety.
  Performance is totally secondary.  I'm also not interested in garbage
  collection details, but I do want to look at the contents of the
  various stacks.
 
  ___
  Haskell-Cafe mailing list
  Haskell-Cafe@haskell.org
  http://www.haskell.org/mailman/listinfo/haskell-cafe
 



 --
 Push the envelope. Watch it bend.

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

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


Re: [Haskell-cafe] Toy implementation of the STG machine

2011-06-11 Thread Florian Weimer
* Thomas Schilling:

 Does Bernie Pope's http://www.haskell.org/haskellwiki/Ministg work for you?

MiniSTG might do it, I will definitely look at it.  The source
repository is gone, but there's still a tarball on Hackage.  I had
hoped for something more interactive, though.

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