vm

package
v0.8.6-0...-0fd6a22 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 26, 2015 License: LGPL-2.1-or-later Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const MaxCallDepth = 1025

Variables

View Source
var (
	GasStep         = big.NewInt(1)
	GasSha          = big.NewInt(10)
	GasSLoad        = big.NewInt(20)
	GasSStore       = big.NewInt(100)
	GasSStoreRefund = big.NewInt(100)
	GasBalance      = big.NewInt(20)
	GasCreate       = big.NewInt(100)
	GasCall         = big.NewInt(20)
	GasCreateByte   = big.NewInt(5)
	GasSha3Byte     = big.NewInt(10)
	GasSha256Byte   = big.NewInt(50)
	GasRipemdByte   = big.NewInt(50)
	GasMemory       = big.NewInt(1)
	GasData         = big.NewInt(5)
	GasTx           = big.NewInt(500)
	GasLog          = big.NewInt(32)
	GasSha256       = big.NewInt(50)
	GasRipemd       = big.NewInt(50)
	GasEcrecover    = big.NewInt(500)
	GasMemCpy       = big.NewInt(1)

	Pow256 = ethutil.BigPow(2, 256)

	LogTyPretty byte = 0x1
	LogTyDiff   byte = 0x2

	U256 = ethutil.U256
	S256 = ethutil.S256
)
View Source
var Precompiled = PrecompiledContracts()

Functions

func Disassemble

func Disassemble(script []byte) (asm []string)

func IsDepthErr

func IsDepthErr(err error) bool

func IsOOGErr

func IsOOGErr(err error) bool

func IsStack

func IsStack(err error) bool

func PrecompiledContracts

func PrecompiledContracts() map[string]*PrecompiledAccount

XXX Could set directly. Testing requires resetting and setting of pre compiled contracts.

func Transfer

func Transfer(from, to Account, amount *big.Int) error

generic transfer method

Types

type Account

type Account interface {
	SubBalance(amount *big.Int)
	AddBalance(amount *big.Int)
	Balance() *big.Int
}

type Address

type Address interface {
	Call(in []byte) []byte
}

type Context

type Context struct {
	Code []byte

	Gas, UsedGas, Price *big.Int

	Args []byte
	// contains filtered or unexported fields
}

func NewContext

func NewContext(caller ContextRef, object ContextRef, code []byte, gas, price *big.Int) *Context

Create a new context for the given data items

func (*Context) Address

func (c *Context) Address() []byte

* Set / Get

func (*Context) GetByte

func (c *Context) GetByte(n uint64) byte

func (*Context) GetBytes

func (c *Context) GetBytes(x, y int) []byte

func (*Context) GetCode

func (c *Context) GetCode(x, size uint64) []byte

func (*Context) GetOp

func (c *Context) GetOp(n uint64) OpCode

func (*Context) GetRangeValue

func (c *Context) GetRangeValue(x, size uint64) []byte

func (*Context) Return

func (c *Context) Return(ret []byte) []byte

func (*Context) ReturnGas

func (c *Context) ReturnGas(gas, price *big.Int)

Implement the caller interface

func (*Context) SetCode

func (self *Context) SetCode(code []byte)

func (*Context) UseGas

func (c *Context) UseGas(gas *big.Int) bool

* Gas functions

type ContextRef

type ContextRef interface {
	ReturnGas(*big.Int, *big.Int)
	Address() []byte
	SetCode([]byte)
}

type Debugger

type Debugger interface {
	BreakHook(step int, op OpCode, mem *Memory, stack *Stack, object *state.StateObject) bool
	StepHook(step int, op OpCode, mem *Memory, stack *Stack, object *state.StateObject) bool
	BreakPoints() []int64
	SetCode(byteCode []byte)
}

type DepthError

type DepthError struct{}

func (DepthError) Error

func (self DepthError) Error() string

type Environment

type Environment interface {
	State() *state.StateDB

	Origin() []byte
	BlockNumber() *big.Int
	GetHash(n uint64) []byte
	Coinbase() []byte
	Time() int64
	Difficulty() *big.Int
	GasLimit() *big.Int
	Transfer(from, to Account, amount *big.Int) error
	AddLog(state.Log)

	VmType() Type

	Depth() int
	SetDepth(i int)

	Call(me ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error)
	CallCode(me ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error)
	Create(me ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error, ContextRef)
}

type Log

type Log struct {
	// contains filtered or unexported fields
}

func (*Log) Address

func (self *Log) Address() []byte

func (*Log) Data

func (self *Log) Data() []byte

func (*Log) Number

func (self *Log) Number() uint64

func (*Log) RlpData

func (self *Log) RlpData() interface{}

func (*Log) String

func (self *Log) String() string

func (*Log) Topics

func (self *Log) Topics() [][]byte

type Memory

type Memory struct {
	// contains filtered or unexported fields
}

func NewMemory

func NewMemory() *Memory

func (*Memory) Data

func (m *Memory) Data() []byte

func (*Memory) Get

func (self *Memory) Get(offset, size int64) (cpy []byte)

func (*Memory) Len

func (m *Memory) Len() int

func (*Memory) Print

func (m *Memory) Print()

func (*Memory) Resize

func (m *Memory) Resize(size uint64)

func (*Memory) Set

func (m *Memory) Set(offset, size uint64, value []byte)

type OpCode

type OpCode byte
const (
	// 0x0 range - arithmetic ops
	STOP OpCode = iota
	ADD
	MUL
	SUB
	DIV
	SDIV
	MOD
	SMOD
	ADDMOD
	MULMOD
	EXP
	SIGNEXTEND
)

Op codes

const (
	LT OpCode = iota + 0x10
	GT
	SLT
	SGT
	EQ
	ISZERO
	AND
	OR
	XOR
	NOT
	BYTE

	SHA3 = 0x20
)
const (
	// 0x30 range - closure state
	ADDRESS OpCode = 0x30 + iota
	BALANCE
	ORIGIN
	CALLER
	CALLVALUE
	CALLDATALOAD
	CALLDATASIZE
	CALLDATACOPY
	CODESIZE
	CODECOPY
	GASPRICE
	EXTCODESIZE
	EXTCODECOPY
)
const (

	// 0x40 range - block operations
	BLOCKHASH OpCode = 0x40 + iota
	COINBASE
	TIMESTAMP
	NUMBER
	DIFFICULTY
	GASLIMIT
)
const (
	// 0x50 range - 'storage' and execution
	POP OpCode = 0x50 + iota
	MLOAD
	MSTORE
	MSTORE8
	SLOAD
	SSTORE
	JUMP
	JUMPI
	PC
	MSIZE
	GAS
	JUMPDEST
)
const (
	// 0x60 range
	PUSH1 OpCode = 0x60 + iota
	PUSH2
	PUSH3
	PUSH4
	PUSH5
	PUSH6
	PUSH7
	PUSH8
	PUSH9
	PUSH10
	PUSH11
	PUSH12
	PUSH13
	PUSH14
	PUSH15
	PUSH16
	PUSH17
	PUSH18
	PUSH19
	PUSH20
	PUSH21
	PUSH22
	PUSH23
	PUSH24
	PUSH25
	PUSH26
	PUSH27
	PUSH28
	PUSH29
	PUSH30
	PUSH31
	PUSH32
	DUP1
	DUP2
	DUP3
	DUP4
	DUP5
	DUP6
	DUP7
	DUP8
	DUP9
	DUP10
	DUP11
	DUP12
	DUP13
	DUP14
	DUP15
	DUP16
	SWAP1
	SWAP2
	SWAP3
	SWAP4
	SWAP5
	SWAP6
	SWAP7
	SWAP8
	SWAP9
	SWAP10
	SWAP11
	SWAP12
	SWAP13
	SWAP14
	SWAP15
	SWAP16
)
const (
	LOG0 OpCode = 0xa0 + iota
	LOG1
	LOG2
	LOG3
	LOG4
)
const (
	// 0xf0 range - closures
	CREATE OpCode = 0xf0 + iota
	CALL
	CALLCODE
	RETURN

	// 0x70 range - other
	SUICIDE = 0xff
)

func (OpCode) String

func (o OpCode) String() string

type OpType

type OpType int

type OutOfGasError

type OutOfGasError struct {
	// contains filtered or unexported fields
}

func OOG

func OOG(req, has *big.Int) OutOfGasError

func (OutOfGasError) Error

func (self OutOfGasError) Error() string

type PrecompiledAccount

type PrecompiledAccount struct {
	Gas func(l int) *big.Int
	// contains filtered or unexported fields
}

func (PrecompiledAccount) Call

func (self PrecompiledAccount) Call(in []byte) []byte

type Stack

type Stack struct {
	// contains filtered or unexported fields
}

Simple push/pop stack mechanism

func NewStack

func NewStack() *Stack

func (*Stack) Data

func (st *Stack) Data() []*big.Int

func (*Stack) Dupn

func (st *Stack) Dupn(n int) *big.Int

func (*Stack) Get

func (st *Stack) Get(amount *big.Int) []*big.Int

func (*Stack) Len

func (st *Stack) Len() int

func (*Stack) Peek

func (st *Stack) Peek() *big.Int

func (*Stack) Peekn

func (st *Stack) Peekn() (*big.Int, *big.Int)

func (*Stack) Pop

func (st *Stack) Pop() *big.Int

func (*Stack) Popn

func (st *Stack) Popn() (*big.Int, *big.Int)

func (*Stack) Print

func (st *Stack) Print()

func (*Stack) Push

func (st *Stack) Push(d *big.Int)

func (*Stack) Swapn

func (st *Stack) Swapn(n int) (*big.Int, *big.Int)

type StackError

type StackError struct {
	// contains filtered or unexported fields
}

func StackErr

func StackErr(req, has int) StackError

func (StackError) Error

func (self StackError) Error() string

type TxCallback

type TxCallback func(opType OpType) bool

type Type

type Type byte
const (
	StdVmTy Type = iota
	JitVmTy

	MaxVmTy
)

type VirtualMachine

type VirtualMachine interface {
	Env() Environment
	Run(me, caller ContextRef, code []byte, value, gas, price *big.Int, data []byte) ([]byte, error)
	Printf(string, ...interface{}) VirtualMachine
	Endl() VirtualMachine
}

func NewJitVm

func NewJitVm(env Environment) VirtualMachine

func NewVm

func NewVm(env Environment) VirtualMachine

type Vm

type Vm struct {
	Dbg Debugger

	BreakPoints []int64
	Stepping    bool
	Fn          string

	Recoverable bool
	// contains filtered or unexported fields
}

func New

func New(env Environment) *Vm

func (*Vm) Endl

func (self *Vm) Endl() VirtualMachine

func (*Vm) Env

func (self *Vm) Env() Environment

func (*Vm) Printf

func (self *Vm) Printf(format string, v ...interface{}) VirtualMachine

func (*Vm) Run

func (self *Vm) Run(me, caller ContextRef, code []byte, value, gas, price *big.Int, callData []byte) (ret []byte, err error)

func (*Vm) RunPrecompiled

func (self *Vm) RunPrecompiled(p *PrecompiledAccount, callData []byte, context *Context) (ret []byte, err error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL