good morning!!!!

Skip to content
Snippets Groups Projects
Commit 5b561f43 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Merge pull request #254 from chfast/pr/jitvm_stub

JitVm struct stub. Forwards calls to DebugVm.
parents 750d70c2 ba225017
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ type Type int
const (
StandardVmTy Type = iota
DebugVmTy
JitVmTy
MaxVmTy
)
......
......@@ -15,6 +15,8 @@ func New(env Environment, typ Type) VirtualMachine {
switch typ {
case DebugVmTy:
return NewDebugVm(env)
case JitVmTy:
return NewJitVm(env)
default:
return &Vm{env: env}
}
......
package vm
import "math/big"
type JitVm struct {
env Environment
backup *DebugVm
}
func NewJitVm(env Environment) *JitVm {
backupVm := NewDebugVm(env)
return &JitVm{env: env, backup: backupVm}
}
func (self *JitVm) Run(me, caller ContextRef, code []byte, value, gas, price *big.Int, callData []byte) (ret []byte, err error) {
return self.backup.Run(me, caller, code, value, gas, price, callData)
}
func (self *JitVm) Printf(format string, v ...interface{}) VirtualMachine {
return self.backup.Printf(format, v)
}
func (self *JitVm) Endl() VirtualMachine {
return self.backup.Endl()
}
func (self *JitVm) Env() Environment {
return self.env
}
//go is nice
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment