|
|
@ -46,40 +46,33 @@ func opStaticJump(instr instruction, ret *big.Int, env Environment, context *Con
|
|
|
|
|
|
|
|
|
|
|
|
func opAdd(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opAdd(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
stack.push(U256(x.Add(x, y)))
|
|
|
|
stack.push(U256(new(big.Int).Add(x, y)))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opSub(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opSub(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
stack.push(U256(x.Sub(x, y)))
|
|
|
|
stack.push(U256(new(big.Int).Sub(x, y)))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opMul(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opMul(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
stack.push(U256(x.Mul(x, y)))
|
|
|
|
stack.push(U256(new(big.Int).Mul(x, y)))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opDiv(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opDiv(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
base := new(big.Int)
|
|
|
|
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
|
|
|
|
if y.Cmp(common.Big0) != 0 {
|
|
|
|
if y.Cmp(common.Big0) != 0 {
|
|
|
|
base.Div(x, y)
|
|
|
|
stack.push(U256(x.Div(x, y)))
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// pop result back on the stack
|
|
|
|
|
|
|
|
stack.push(U256(base))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opSdiv(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opSdiv(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
base := new(big.Int)
|
|
|
|
|
|
|
|
x, y := S256(stack.pop()), S256(stack.pop())
|
|
|
|
x, y := S256(stack.pop()), S256(stack.pop())
|
|
|
|
|
|
|
|
|
|
|
|
if y.Cmp(common.Big0) == 0 {
|
|
|
|
if y.Cmp(common.Big0) == 0 {
|
|
|
|
base.Set(common.Big0)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
n := new(big.Int)
|
|
|
|
n := new(big.Int)
|
|
|
|
if new(big.Int).Mul(x, y).Cmp(common.Big0) < 0 {
|
|
|
|
if new(big.Int).Mul(x, y).Cmp(common.Big0) < 0 {
|
|
|
@ -88,35 +81,27 @@ func opSdiv(instr instruction, env Environment, context *Context, memory *Memory
|
|
|
|
n.SetInt64(1)
|
|
|
|
n.SetInt64(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
base.Div(x.Abs(x), y.Abs(y)).Mul(base, n)
|
|
|
|
res := x.Div(x.Abs(x), y.Abs(y))
|
|
|
|
|
|
|
|
res.Mul(res, n)
|
|
|
|
|
|
|
|
|
|
|
|
U256(base)
|
|
|
|
stack.push(U256(res))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(base)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opMod(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opMod(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
base := new(big.Int)
|
|
|
|
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
|
|
|
|
if y.Cmp(common.Big0) == 0 {
|
|
|
|
if y.Cmp(common.Big0) == 0 {
|
|
|
|
base.Set(common.Big0)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
base.Mod(x, y)
|
|
|
|
stack.push(U256(x.Mod(x, y)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
U256(base)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(base)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opSmod(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opSmod(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
base := new(big.Int)
|
|
|
|
|
|
|
|
x, y := S256(stack.pop()), S256(stack.pop())
|
|
|
|
x, y := S256(stack.pop()), S256(stack.pop())
|
|
|
|
|
|
|
|
|
|
|
|
if y.Cmp(common.Big0) == 0 {
|
|
|
|
if y.Cmp(common.Big0) == 0 {
|
|
|
|
base.Set(common.Big0)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
n := new(big.Int)
|
|
|
|
n := new(big.Int)
|
|
|
|
if x.Cmp(common.Big0) < 0 {
|
|
|
|
if x.Cmp(common.Big0) < 0 {
|
|
|
@ -125,23 +110,16 @@ func opSmod(instr instruction, env Environment, context *Context, memory *Memory
|
|
|
|
n.SetInt64(1)
|
|
|
|
n.SetInt64(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
base.Mod(x.Abs(x), y.Abs(y)).Mul(base, n)
|
|
|
|
res := x.Mod(x.Abs(x), y.Abs(y))
|
|
|
|
|
|
|
|
res.Mul(res, n)
|
|
|
|
|
|
|
|
|
|
|
|
U256(base)
|
|
|
|
stack.push(U256(res))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(base)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opExp(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opExp(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
base := new(big.Int)
|
|
|
|
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
stack.push(U256(x.Exp(x, y, Pow256)))
|
|
|
|
base.Exp(x, y, Pow256)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
U256(base)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(base)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opSignExtend(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opSignExtend(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
@ -149,7 +127,7 @@ func opSignExtend(instr instruction, env Environment, context *Context, memory *
|
|
|
|
if back.Cmp(big.NewInt(31)) < 0 {
|
|
|
|
if back.Cmp(big.NewInt(31)) < 0 {
|
|
|
|
bit := uint(back.Uint64()*8 + 7)
|
|
|
|
bit := uint(back.Uint64()*8 + 7)
|
|
|
|
num := stack.pop()
|
|
|
|
num := stack.pop()
|
|
|
|
mask := new(big.Int).Lsh(common.Big1, bit)
|
|
|
|
mask := back.Lsh(common.Big1, bit)
|
|
|
|
mask.Sub(mask, common.Big1)
|
|
|
|
mask.Sub(mask, common.Big1)
|
|
|
|
if common.BitTest(num, int(bit)) {
|
|
|
|
if common.BitTest(num, int(bit)) {
|
|
|
|
num.Or(num, mask.Not(mask))
|
|
|
|
num.Or(num, mask.Not(mask))
|
|
|
@ -157,145 +135,116 @@ func opSignExtend(instr instruction, env Environment, context *Context, memory *
|
|
|
|
num.And(num, mask)
|
|
|
|
num.And(num, mask)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
num = U256(num)
|
|
|
|
stack.push(U256(num))
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(num)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opNot(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opNot(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
stack.push(U256(new(big.Int).Not(stack.pop())))
|
|
|
|
x := stack.pop()
|
|
|
|
|
|
|
|
stack.push(U256(x.Not(x)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opLt(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opLt(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
|
|
|
|
// x < y
|
|
|
|
|
|
|
|
if x.Cmp(y) < 0 {
|
|
|
|
if x.Cmp(y) < 0 {
|
|
|
|
stack.push(common.BigTrue)
|
|
|
|
stack.push(big.NewInt(1))
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opGt(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opGt(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
|
|
|
|
// x > y
|
|
|
|
|
|
|
|
if x.Cmp(y) > 0 {
|
|
|
|
if x.Cmp(y) > 0 {
|
|
|
|
stack.push(common.BigTrue)
|
|
|
|
stack.push(big.NewInt(1))
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opSlt(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opSlt(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := S256(stack.pop()), S256(stack.pop())
|
|
|
|
x, y := S256(stack.pop()), S256(stack.pop())
|
|
|
|
|
|
|
|
|
|
|
|
// x < y
|
|
|
|
|
|
|
|
if x.Cmp(S256(y)) < 0 {
|
|
|
|
if x.Cmp(S256(y)) < 0 {
|
|
|
|
stack.push(common.BigTrue)
|
|
|
|
stack.push(big.NewInt(1))
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opSgt(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opSgt(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := S256(stack.pop()), S256(stack.pop())
|
|
|
|
x, y := S256(stack.pop()), S256(stack.pop())
|
|
|
|
|
|
|
|
|
|
|
|
// x > y
|
|
|
|
|
|
|
|
if x.Cmp(y) > 0 {
|
|
|
|
if x.Cmp(y) > 0 {
|
|
|
|
stack.push(common.BigTrue)
|
|
|
|
stack.push(big.NewInt(1))
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opEq(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opEq(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
|
|
|
|
// x == y
|
|
|
|
|
|
|
|
if x.Cmp(y) == 0 {
|
|
|
|
if x.Cmp(y) == 0 {
|
|
|
|
stack.push(common.BigTrue)
|
|
|
|
stack.push(big.NewInt(1))
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opIszero(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opIszero(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x := stack.pop()
|
|
|
|
x := stack.pop()
|
|
|
|
if x.Cmp(common.BigFalse) > 0 {
|
|
|
|
if x.Cmp(common.Big0) > 0 {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.BigTrue)
|
|
|
|
stack.push(big.NewInt(1))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opAnd(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opAnd(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
stack.push(x.And(x, y))
|
|
|
|
stack.push(new(big.Int).And(x, y))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func opOr(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opOr(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
stack.push(x.Or(x, y))
|
|
|
|
stack.push(new(big.Int).Or(x, y))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func opXor(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opXor(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
x, y := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
stack.push(x.Xor(x, y))
|
|
|
|
stack.push(new(big.Int).Xor(x, y))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func opByte(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opByte(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
base := new(big.Int)
|
|
|
|
|
|
|
|
th, val := stack.pop(), stack.pop()
|
|
|
|
th, val := stack.pop(), stack.pop()
|
|
|
|
|
|
|
|
|
|
|
|
if th.Cmp(big.NewInt(32)) < 0 {
|
|
|
|
if th.Cmp(big.NewInt(32)) < 0 {
|
|
|
|
byt := big.NewInt(int64(common.LeftPadBytes(val.Bytes(), 32)[th.Int64()]))
|
|
|
|
byte := big.NewInt(int64(common.LeftPadBytes(val.Bytes(), 32)[th.Int64()]))
|
|
|
|
|
|
|
|
stack.push(byte)
|
|
|
|
base.Set(byt)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
base.Set(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(base)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func opAddmod(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opAddmod(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
base := new(big.Int)
|
|
|
|
x, y, z := stack.pop(), stack.pop(), stack.pop()
|
|
|
|
x := stack.pop()
|
|
|
|
|
|
|
|
y := stack.pop()
|
|
|
|
|
|
|
|
z := stack.pop()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if z.Cmp(Zero) > 0 {
|
|
|
|
if z.Cmp(Zero) > 0 {
|
|
|
|
add := new(big.Int).Add(x, y)
|
|
|
|
add := x.Add(x, y)
|
|
|
|
base.Mod(add, z)
|
|
|
|
add.Mod(add, z)
|
|
|
|
|
|
|
|
stack.push(U256(add))
|
|
|
|
base = U256(base)
|
|
|
|
} else {
|
|
|
|
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(base)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func opMulmod(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opMulmod(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
base := new(big.Int)
|
|
|
|
x, y, z := stack.pop(), stack.pop(), stack.pop()
|
|
|
|
x := stack.pop()
|
|
|
|
|
|
|
|
y := stack.pop()
|
|
|
|
|
|
|
|
z := stack.pop()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if z.Cmp(Zero) > 0 {
|
|
|
|
if z.Cmp(Zero) > 0 {
|
|
|
|
mul := new(big.Int).Mul(x, y)
|
|
|
|
mul := x.Mul(x, y)
|
|
|
|
base.Mod(mul, z)
|
|
|
|
mul.Mod(mul, z)
|
|
|
|
|
|
|
|
stack.push(U256(mul))
|
|
|
|
U256(base)
|
|
|
|
} else {
|
|
|
|
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(base)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opSha3(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opSha3(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
offset, size := stack.pop(), stack.pop()
|
|
|
|
offset, size := stack.pop(), stack.pop()
|
|
|
|
hash := crypto.Sha3(memory.Get(offset.Int64(), size.Int64()))
|
|
|
|
hash := crypto.Sha3(memory.Get(offset.Int64(), size.Int64()))
|
|
|
|
|
|
|
|
|
|
|
|
stack.push(common.BigD(hash))
|
|
|
|
stack.push(common.BytesToBig(hash))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func opAddress(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
|
func opAddress(instr instruction, env Environment, context *Context, memory *Memory, stack *stack) {
|
|
|
@ -383,7 +332,7 @@ func opBlockhash(instr instruction, env Environment, context *Context, memory *M
|
|
|
|
if num.Cmp(n) > 0 && num.Cmp(env.BlockNumber()) < 0 {
|
|
|
|
if num.Cmp(n) > 0 && num.Cmp(env.BlockNumber()) < 0 {
|
|
|
|
stack.push(env.GetHash(num.Uint64()).Big())
|
|
|
|
stack.push(env.GetHash(num.Uint64()).Big())
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.Big0)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -497,7 +446,7 @@ func opCreate(instr instruction, env Environment, context *Context, memory *Memo
|
|
|
|
context.UseGas(context.Gas)
|
|
|
|
context.UseGas(context.Gas)
|
|
|
|
ret, suberr, ref := env.Create(context, input, gas, context.Price, value)
|
|
|
|
ret, suberr, ref := env.Create(context, input, gas, context.Price, value)
|
|
|
|
if suberr != nil {
|
|
|
|
if suberr != nil {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// gas < len(ret) * Createinstr.dataGas == NO_CODE
|
|
|
|
// gas < len(ret) * Createinstr.dataGas == NO_CODE
|
|
|
@ -535,10 +484,10 @@ func opCall(instr instruction, env Environment, context *Context, memory *Memory
|
|
|
|
ret, err := env.Call(context, address, args, gas, context.Price, value)
|
|
|
|
ret, err := env.Call(context, address, args, gas, context.Price, value)
|
|
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.BigTrue)
|
|
|
|
stack.push(big.NewInt(1))
|
|
|
|
|
|
|
|
|
|
|
|
memory.Set(retOffset.Uint64(), retSize.Uint64(), ret)
|
|
|
|
memory.Set(retOffset.Uint64(), retSize.Uint64(), ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -566,10 +515,10 @@ func opCallCode(instr instruction, env Environment, context *Context, memory *Me
|
|
|
|
ret, err := env.CallCode(context, address, args, gas, context.Price, value)
|
|
|
|
ret, err := env.CallCode(context, address, args, gas, context.Price, value)
|
|
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
stack.push(common.BigFalse)
|
|
|
|
stack.push(new(big.Int))
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
stack.push(common.BigTrue)
|
|
|
|
stack.push(big.NewInt(1))
|
|
|
|
|
|
|
|
|
|
|
|
memory.Set(retOffset.Uint64(), retSize.Uint64(), ret)
|
|
|
|
memory.Set(retOffset.Uint64(), retSize.Uint64(), ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|