2014-02-14 22:56:09 +00:00
|
|
|
package ethchain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-03-20 21:51:20 +00:00
|
|
|
_ "github.com/ethereum/eth-go/ethutil"
|
2014-02-14 22:56:09 +00:00
|
|
|
"math/big"
|
|
|
|
)
|
|
|
|
|
|
|
|
type OpCode int
|
|
|
|
|
|
|
|
// Op codes
|
|
|
|
const (
|
2014-03-20 21:51:20 +00:00
|
|
|
// 0x0 range - arithmetic ops
|
|
|
|
oSTOP = 0x00
|
|
|
|
oADD = 0x01
|
|
|
|
oMUL = 0x02
|
|
|
|
oSUB = 0x03
|
|
|
|
oDIV = 0x04
|
|
|
|
oSDIV = 0x05
|
|
|
|
oMOD = 0x06
|
|
|
|
oSMOD = 0x07
|
|
|
|
oEXP = 0x08
|
|
|
|
oNEG = 0x09
|
|
|
|
oLT = 0x0a
|
|
|
|
oGT = 0x0b
|
|
|
|
oEQ = 0x0c
|
|
|
|
oNOT = 0x0d
|
|
|
|
|
|
|
|
// 0x10 range - bit ops
|
|
|
|
oAND = 0x10
|
|
|
|
oOR = 0x11
|
|
|
|
oXOR = 0x12
|
|
|
|
oBYTE = 0x13
|
|
|
|
|
|
|
|
// 0x20 range - crypto
|
|
|
|
oSHA3 = 0x20
|
|
|
|
|
|
|
|
// 0x30 range - closure state
|
|
|
|
oADDRESS = 0x30
|
|
|
|
oBALANCE = 0x31
|
|
|
|
oORIGIN = 0x32
|
|
|
|
oCALLER = 0x33
|
|
|
|
oCALLVALUE = 0x34
|
|
|
|
oCALLDATA = 0x35
|
|
|
|
oCALLDATASIZE = 0x36
|
|
|
|
oRETURNDATASIZE = 0x37
|
|
|
|
oTXGASPRICE = 0x38
|
|
|
|
|
|
|
|
// 0x40 range - block operations
|
|
|
|
oPREVHASH = 0x40
|
|
|
|
oPREVNONCE = 0x41
|
|
|
|
oCOINBASE = 0x42
|
|
|
|
oTIMESTAMP = 0x43
|
|
|
|
oNUMBER = 0x44
|
|
|
|
oDIFFICULTY = 0x45
|
|
|
|
oGASLIMIT = 0x46
|
|
|
|
|
|
|
|
// 0x50 range - 'storage' and execution
|
|
|
|
oPUSH = 0x50
|
|
|
|
oPOP = 0x51
|
|
|
|
oDUP = 0x52
|
|
|
|
oSWAP = 0x53
|
|
|
|
oMLOAD = 0x54
|
|
|
|
oMSTORE = 0x55
|
|
|
|
oMSTORE8 = 0x56
|
|
|
|
oSLOAD = 0x57
|
|
|
|
oSSTORE = 0x58
|
|
|
|
oJUMP = 0x59
|
|
|
|
oJUMPI = 0x5a
|
|
|
|
oPC = 0x5b
|
2014-03-21 10:54:36 +00:00
|
|
|
oMSIZE = 0x5c
|
2014-03-20 21:51:20 +00:00
|
|
|
|
|
|
|
// 0x60 range - closures
|
|
|
|
oCREATE = 0x60
|
|
|
|
oCALL = 0x61
|
|
|
|
oRETURN = 0x62
|
2014-03-21 10:54:36 +00:00
|
|
|
|
|
|
|
// 0x70 range - other
|
|
|
|
oLOG = 0x70 // XXX Unofficial
|
|
|
|
oSUICIDE = 0x7f
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Since the opcodes aren't all in order we can't use a regular slice
|
|
|
|
var opCodeToString = map[OpCode]string{
|
2014-03-20 21:51:20 +00:00
|
|
|
// 0x0 range - arithmetic ops
|
|
|
|
oSTOP: "STOP",
|
|
|
|
oADD: "ADD",
|
|
|
|
oMUL: "MUL",
|
|
|
|
oSUB: "SUB",
|
|
|
|
oDIV: "DIV",
|
|
|
|
oSDIV: "SDIV",
|
|
|
|
oMOD: "MOD",
|
|
|
|
oSMOD: "SMOD",
|
|
|
|
oEXP: "EXP",
|
|
|
|
oNEG: "NEG",
|
|
|
|
oLT: "LT",
|
|
|
|
oGT: "GT",
|
|
|
|
oEQ: "EQ",
|
|
|
|
oNOT: "NOT",
|
|
|
|
|
|
|
|
// 0x10 range - bit ops
|
|
|
|
oAND: "AND",
|
|
|
|
oOR: "OR",
|
|
|
|
oXOR: "XOR",
|
|
|
|
oBYTE: "BYTE",
|
|
|
|
|
|
|
|
// 0x20 range - crypto
|
|
|
|
oSHA3: "SHA3",
|
|
|
|
|
|
|
|
// 0x30 range - closure state
|
|
|
|
oADDRESS: "ADDRESS",
|
2014-02-14 22:56:09 +00:00
|
|
|
oBALANCE: "BALANCE",
|
2014-03-20 21:51:20 +00:00
|
|
|
oORIGIN: "ORIGIN",
|
|
|
|
oCALLER: "CALLER",
|
|
|
|
oCALLVALUE: "CALLVALUE",
|
|
|
|
oCALLDATA: "CALLDATA",
|
|
|
|
oCALLDATASIZE: "CALLDATASIZE",
|
|
|
|
oRETURNDATASIZE: "RETURNDATASIZE",
|
|
|
|
oTXGASPRICE: "TXGASPRICE",
|
|
|
|
|
|
|
|
// 0x40 range - block operations
|
|
|
|
oPREVHASH: "PREVHASH",
|
|
|
|
oPREVNONCE: "PREVNONCE",
|
|
|
|
oCOINBASE: "COINBASE",
|
|
|
|
oTIMESTAMP: "TIMESTAMP",
|
|
|
|
oNUMBER: "NUMBER",
|
|
|
|
oDIFFICULTY: "DIFFICULTY",
|
|
|
|
oGASLIMIT: "GASLIMIT",
|
|
|
|
|
|
|
|
// 0x50 range - 'storage' and execution
|
|
|
|
oPUSH: "PUSH",
|
|
|
|
oPOP: "POP",
|
|
|
|
oDUP: "DUP",
|
|
|
|
oSWAP: "SWAP",
|
|
|
|
oMLOAD: "MLOAD",
|
|
|
|
oMSTORE: "MSTORE",
|
|
|
|
oMSTORE8: "MSTORE8",
|
|
|
|
oSLOAD: "SLOAD",
|
|
|
|
oSSTORE: "SSTORE",
|
|
|
|
oJUMP: "JUMP",
|
|
|
|
oJUMPI: "JUMPI",
|
|
|
|
oPC: "PC",
|
2014-03-21 10:54:36 +00:00
|
|
|
oMSIZE: "MSIZE",
|
2014-03-20 21:51:20 +00:00
|
|
|
|
|
|
|
// 0x60 range - closures
|
|
|
|
oCREATE: "CREATE",
|
2014-03-20 16:26:30 +00:00
|
|
|
oCALL: "CALL",
|
|
|
|
oRETURN: "RETURN",
|
2014-03-21 10:54:36 +00:00
|
|
|
|
|
|
|
// 0x70 range - other
|
|
|
|
oLOG: "LOG",
|
|
|
|
oSUICIDE: "SUICIDE",
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (o OpCode) String() string {
|
|
|
|
return opCodeToString[o]
|
|
|
|
}
|
|
|
|
|
|
|
|
type OpType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
tNorm = iota
|
|
|
|
tData
|
|
|
|
tExtro
|
|
|
|
tCrypto
|
|
|
|
)
|
|
|
|
|
|
|
|
type TxCallback func(opType OpType) bool
|
|
|
|
|
|
|
|
// Simple push/pop stack mechanism
|
|
|
|
type Stack struct {
|
|
|
|
data []*big.Int
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewStack() *Stack {
|
|
|
|
return &Stack{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (st *Stack) Pop() *big.Int {
|
2014-03-20 16:26:30 +00:00
|
|
|
str := st.data[0]
|
|
|
|
st.data = st.data[1:]
|
|
|
|
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (st *Stack) Popn() (*big.Int, *big.Int) {
|
|
|
|
ints := st.data[:2]
|
|
|
|
st.data = st.data[2:]
|
|
|
|
|
|
|
|
return ints[0], ints[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (st *Stack) Peek() *big.Int {
|
|
|
|
str := st.data[0]
|
|
|
|
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
|
|
|
func (st *Stack) Peekn() (*big.Int, *big.Int) {
|
|
|
|
ints := st.data[:2]
|
|
|
|
|
|
|
|
return ints[0], ints[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (st *Stack) Push(d *big.Int) {
|
|
|
|
st.data = append(st.data, d)
|
|
|
|
}
|
|
|
|
func (st *Stack) Print() {
|
|
|
|
fmt.Println("### STACK ###")
|
|
|
|
if len(st.data) > 0 {
|
|
|
|
for i, val := range st.data {
|
|
|
|
fmt.Printf("%-3d %v\n", i, val)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fmt.Println("-- empty --")
|
|
|
|
}
|
|
|
|
fmt.Println("#############")
|
|
|
|
}
|
|
|
|
|
2014-03-20 21:51:20 +00:00
|
|
|
type Memory struct {
|
|
|
|
store []byte
|
2014-02-20 22:10:16 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 21:51:20 +00:00
|
|
|
func (m *Memory) Set(offset, size int64, value []byte) {
|
|
|
|
totSize := offset + size
|
2014-03-21 10:54:36 +00:00
|
|
|
lenSize := int64(len(m.store) - 1)
|
2014-03-20 21:51:20 +00:00
|
|
|
if totSize > lenSize {
|
|
|
|
// Calculate the diff between the sizes
|
|
|
|
diff := totSize - lenSize
|
|
|
|
if diff > 0 {
|
|
|
|
// Create a new empty slice and append it
|
2014-03-21 10:54:36 +00:00
|
|
|
newSlice := make([]byte, diff-1)
|
2014-03-20 21:51:20 +00:00
|
|
|
// Resize slice
|
|
|
|
m.store = append(m.store, newSlice...)
|
2014-02-19 10:35:17 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-21 10:54:36 +00:00
|
|
|
copy(m.store[offset:offset+size], value)
|
2014-03-20 21:51:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Memory) Get(offset, size int64) []byte {
|
|
|
|
return m.store[offset : offset+size]
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
2014-03-21 10:54:36 +00:00
|
|
|
|
|
|
|
func (m *Memory) Print() {
|
|
|
|
fmt.Println("### MEM ###")
|
|
|
|
if len(m.store) > 0 {
|
|
|
|
fmt.Println(m.store)
|
|
|
|
} else {
|
|
|
|
fmt.Println("-- empty --")
|
|
|
|
}
|
|
|
|
fmt.Println("###########")
|
|
|
|
}
|