2014-10-18 14:31:20 +03:00
|
|
|
package vm
|
2014-07-22 12:54:48 +03:00
|
|
|
|
2014-12-03 18:06:54 +02:00
|
|
|
import "math/big"
|
2014-07-22 12:54:48 +03:00
|
|
|
|
2014-10-15 18:12:26 +03:00
|
|
|
// BIG FAT WARNING. THIS VM IS NOT YET IS USE!
|
|
|
|
// I want to get all VM tests pass first before updating this VM
|
|
|
|
|
2014-07-22 12:54:48 +03:00
|
|
|
type Vm struct {
|
2014-10-14 12:48:52 +03:00
|
|
|
env Environment
|
|
|
|
err error
|
2014-10-11 01:41:37 +03:00
|
|
|
depth int
|
2014-07-22 12:54:48 +03:00
|
|
|
}
|
|
|
|
|
2014-10-14 12:48:52 +03:00
|
|
|
func New(env Environment, typ Type) VirtualMachine {
|
|
|
|
switch typ {
|
|
|
|
case DebugVmTy:
|
|
|
|
return NewDebugVm(env)
|
|
|
|
default:
|
|
|
|
return &Vm{env: env}
|
2014-07-22 12:54:48 +03:00
|
|
|
}
|
2014-09-15 02:11:01 +03:00
|
|
|
}
|
|
|
|
|
2014-12-03 18:06:54 +02:00
|
|
|
func (self *Vm) Run(me, caller ClosureRef, code []byte, value, gas, price *big.Int, data []byte) (ret []byte, err error) {
|
2014-12-12 23:24:27 +02:00
|
|
|
panic("not implemented")
|
2014-07-22 12:54:48 +03:00
|
|
|
}
|
|
|
|
|
2014-10-14 12:48:52 +03:00
|
|
|
func (self *Vm) Env() Environment {
|
|
|
|
return self.env
|
2014-07-22 12:54:48 +03:00
|
|
|
}
|
|
|
|
|
2014-10-14 12:48:52 +03:00
|
|
|
func (self *Vm) Depth() int {
|
|
|
|
return self.depth
|
2014-09-19 14:19:19 +03:00
|
|
|
}
|
2014-10-14 14:37:26 +03:00
|
|
|
|
|
|
|
func (self *Vm) Printf(format string, v ...interface{}) VirtualMachine { return self }
|
|
|
|
func (self *Vm) Endl() VirtualMachine { return self }
|