Elliott Stoneham
Elliott Stoneham
Yes, that makes sense in the light of our recent discussion @PXshadow .
I look forward to the time when we can compile the Go component of the system (go4hx) into Haxe so that code can be integrated into a pure Haxe code-base....
I don't know of a decompiler, but one would not be too tricky to write in terms of functionality. The best way to understand the SSA ecosystem originally used by...
This repository is not working, that is why the README.md says: ``` NOT WORKING, PLEASE HELP ``` The code is built on a previous version of [golang.org/x/tools/go/ssa/interp]( https://golang.org/x/tools/go/ssa/interp) but has...
Thank you Seb, for starting this conversation again, especially in so structured a way. Re-reading the `interp-ideas` document from 10 months ago, I still think the ideas hold good. We...
I've only just started my investigations @sbinet, but the part we are interested in [`emu` "the Inferno emulator"](http://www.vitanuova.com/inferno/man/1/emu.html) includes a [NOTICE](https://bitbucket.org/inferno-os/inferno-os/src/68f98ca17effa92be9e79f0294c221706624dea5/emu/NOTICE?at=default&fileviewer=file-view-default) that does not have LGPL restrictions but does proclaim...
The generic instructions that our vm will need to work from are defined at https://github.com/golang/go/blob/master/src/cmd/compile/internal/ssa/gen/genericOps.go The simplifications that apply to all backend architectures are at https://github.com/golang/go/blob/master/src/cmd/compile/internal/ssa/gen/generic.rules These are used to...
Nice article on making the go1.7 SSA form visible at https://pauladamsmith.com/blog/2016/08/go-1.7-ssa.html Using the first test code from @sbinet ``` func add(i, j int) int { return i+j } ``` The...
https://github.com/gopherjs/gopherwasm aims to provide a common API for both platforms.
Yes, I'm still keen too, even if I've not been saying much lately! Before I started my new job a few months ago, I'd been extending and speeding-up the ssa...