quorum/core/vm/common.go

90 lines
1.6 KiB
Go
Raw Normal View History

2014-10-18 04:31:20 -07:00
package vm
import (
"math"
"math/big"
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2015-04-04 03:40:11 -07:00
"github.com/ethereum/go-ethereum/logger/glog"
)
// Global Debug flag indicating Debug VM (full logging)
var Debug bool
2015-01-19 02:18:34 -08:00
type Type byte
const (
2015-01-19 02:18:34 -08:00
StdVmTy Type = iota
JitVmTy
MaxVmTy
2015-03-16 13:46:47 -07:00
LogTyPretty byte = 0x1
LogTyDiff byte = 0x2
)
var (
Pow256 = common.BigPow(2, 256)
U256 = common.U256
S256 = common.S256
Zero = common.Big0
One = common.Big1
2015-03-16 13:46:47 -07:00
max = big.NewInt(math.MaxInt64)
)
2015-02-01 06:30:29 -08:00
func NewVm(env Environment) VirtualMachine {
switch env.VmType() {
case JitVmTy:
return NewJitVm(env)
default:
2015-04-04 03:40:11 -07:00
glog.V(0).Infoln("unsupported vm type %d", env.VmType())
2015-02-01 06:30:29 -08:00
fallthrough
case StdVmTy:
return New(env)
}
}
func calcMemSize(off, l *big.Int) *big.Int {
2015-03-16 03:27:38 -07:00
if l.Cmp(common.Big0) == 0 {
return common.Big0
}
return new(big.Int).Add(off, l)
}
// Simple helper
func u256(n int64) *big.Int {
return big.NewInt(n)
}
// Mainly used for print variables and passing to Print*
func toValue(val *big.Int) interface{} {
// Let's assume a string on right padded zero's
b := val.Bytes()
if b[0] != 0 && b[len(b)-1] == 0x0 && b[len(b)-2] == 0x0 {
return string(b)
}
return val
}
2015-03-19 14:45:03 -07:00
func getData(data []byte, start, size *big.Int) []byte {
dlen := big.NewInt(int64(len(data)))
2015-03-19 14:45:03 -07:00
s := common.BigMin(start, dlen)
e := common.BigMin(new(big.Int).Add(s, size), dlen)
return common.RightPadBytes(data[s.Uint64():e.Uint64()], int(size.Uint64()))
}
2015-03-28 12:03:25 -07:00
func UseGas(gas, amount *big.Int) bool {
if gas.Cmp(amount) < 0 {
return false
}
// Sub the amount of gas from the remaining
gas.Sub(gas, amount)
return true
}