diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-14 17:48:52 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-14 17:48:52 +0800 |
commit | c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28 (patch) | |
tree | 5588276a932ac88daaaf9ca1858106ba3ff007b1 /ethvm/virtual_machine.go | |
parent | 2e894b668a2bde3eb83418cfd9128f3a571e0026 (diff) | |
download | go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.gz go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.bz2 go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.lz go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.xz go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.tar.zst go-tangerine-c5bd32b0ad1a3d0fd20a3d1014cc8a97d889dc28.zip |
Refactored VM to two separate VMs; std & debug
Standard VM should be about 10x faster than the debug VM. Some error
checking has been removed, all of the log statements and therefor quite
some unnecessary if-statements.
Diffstat (limited to 'ethvm/virtual_machine.go')
-rw-r--r-- | ethvm/virtual_machine.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ethvm/virtual_machine.go b/ethvm/virtual_machine.go new file mode 100644 index 000000000..6dd837049 --- /dev/null +++ b/ethvm/virtual_machine.go @@ -0,0 +1,7 @@ +package ethvm + +type VirtualMachine interface { + Env() Environment + RunClosure(*Closure) ([]byte, error) + Depth() int +} |