diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-19 22:07:33 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-19 22:07:33 +0800 |
commit | 554f20930abba7e55fb0dd2718a00c4bd066c973 (patch) | |
tree | 41ba92fa976a28547e4e7e43f7e80a4a4f680685 /vm/vm.go | |
parent | 8b20c3cc976a149c64ef0ac2cabbe49e93ba739d (diff) | |
parent | a756dbeb7b1027eb91130ecf8d5440dca8e738d8 (diff) | |
download | dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.gz dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.bz2 dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.lz dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.xz dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.zst dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.zip |
Merge branch 'develop' into rpcfrontier
Diffstat (limited to 'vm/vm.go')
-rw-r--r-- | vm/vm.go | 39 |
1 files changed, 19 insertions, 20 deletions
@@ -4,8 +4,8 @@ import ( "fmt" "math/big" - "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/state" ) @@ -443,24 +443,18 @@ func (self *Vm) Run(context *Context, callData []byte) (ret []byte, err error) { self.Printf(" => %d", l) case CALLDATACOPY: var ( - size = uint64(len(callData)) - mOff = stack.pop().Uint64() - cOff = stack.pop().Uint64() - l = stack.pop().Uint64() + mOff = stack.pop() + cOff = stack.pop() + l = stack.pop() ) - - if cOff > size { - cOff = 0 - l = 0 - } else if cOff+l > size { - l = 0 + var data []byte + if cOff.Cmp(big.NewInt(int64(len(callData)))) <= 0 { + data = getData(callData, cOff.Uint64(), l.Uint64()) } - code := callData[cOff : cOff+l] - - mem.Set(mOff, l, code) + mem.Set(mOff.Uint64(), l.Uint64(), data) - self.Printf(" => [%v, %v, %v] %x", mOff, cOff, l, callData[cOff:cOff+l]) + self.Printf(" => [%v, %v, %v] %x", mOff, cOff, l, data) case CODESIZE, EXTCODESIZE: var code []byte if op == EXTCODESIZE { @@ -482,14 +476,19 @@ func (self *Vm) Run(context *Context, callData []byte) (ret []byte, err error) { } else { code = context.Code } + var ( - mOff = stack.pop().Uint64() - cOff = stack.pop().Uint64() - l = stack.pop().Uint64() + mOff = stack.pop() + cOff = stack.pop() + l = stack.pop() ) - codeCopy := getCode(code, cOff, l) - mem.Set(mOff, l, codeCopy) + var codeCopy []byte + if cOff.Cmp(big.NewInt(int64(len(code)))) <= 0 { + codeCopy = getData(code, cOff.Uint64(), l.Uint64()) + } + + mem.Set(mOff.Uint64(), l.Uint64(), codeCopy) self.Printf(" => [%v, %v, %v] %x", mOff, cOff, l, codeCopy) case GASPRICE: |