aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-03 00:35:55 +0800
committerobscuren <geffobscura@gmail.com>2015-01-03 00:35:55 +0800
commit55e55826ee3b763be8805dcdef0468a179619ba1 (patch)
tree067d0cdce0e6456a4feb5453ef1d33e3aa5c80cb /vm
parent530953050ad0cf99d2a354c165b431d111baa1e3 (diff)
downloadgo-tangerine-55e55826ee3b763be8805dcdef0468a179619ba1.tar
go-tangerine-55e55826ee3b763be8805dcdef0468a179619ba1.tar.gz
go-tangerine-55e55826ee3b763be8805dcdef0468a179619ba1.tar.bz2
go-tangerine-55e55826ee3b763be8805dcdef0468a179619ba1.tar.lz
go-tangerine-55e55826ee3b763be8805dcdef0468a179619ba1.tar.xz
go-tangerine-55e55826ee3b763be8805dcdef0468a179619ba1.tar.zst
go-tangerine-55e55826ee3b763be8805dcdef0468a179619ba1.zip
Changed JUMP(I) behaviour.
* All jumps must land on a JUMPDEST instruction byte. * The byte may not be part of a PUSH*
Diffstat (limited to 'vm')
-rw-r--r--vm/analysis.go26
-rw-r--r--vm/vm_debug.go20
2 files changed, 8 insertions, 38 deletions
diff --git a/vm/analysis.go b/vm/analysis.go
index fef448b7b..501fbfc4a 100644
--- a/vm/analysis.go
+++ b/vm/analysis.go
@@ -1,34 +1,20 @@
package vm
-import (
- "math/big"
+import "gopkg.in/fatih/set.v0"
- "github.com/ethereum/go-ethereum/ethutil"
-)
+func analyseJumpDests(code []byte) (dests *set.Set) {
+ dests = set.New()
-func analyseJumpDests(code []byte) (dests map[uint64]*big.Int) {
- dests = make(map[uint64]*big.Int)
-
- lp := false
- var lpv *big.Int
for pc := uint64(0); pc < uint64(len(code)); pc++ {
var op OpCode = OpCode(code[pc])
switch op {
case PUSH1, 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:
a := uint64(op) - uint64(PUSH1) + 1
- if uint64(len(code)) > pc+1+a {
- lpv = ethutil.BigD(code[pc+1 : pc+1+a])
- }
pc += a
- lp = true
- case JUMP, JUMPI:
- if lp {
- dests[pc] = lpv
- }
-
- default:
- lp = false
+ //lp = true
+ case JUMPDEST:
+ dests.Add(pc)
}
}
return
diff --git a/vm/vm_debug.go b/vm/vm_debug.go
index 1b9c480f8..6ad385fd0 100644
--- a/vm/vm_debug.go
+++ b/vm/vm_debug.go
@@ -83,29 +83,13 @@ func (self *DebugVm) Run(me, caller ContextRef, code []byte, value, gas, price *
jump = func(from uint64, to *big.Int) {
p := to.Uint64()
- self.Printf(" ~> %v", to)
- /* NOTE: new model. Will change soon
nop := OpCode(context.GetOp(p))
- if nop != JUMPDEST {
+ if !destinations.Has(p) {
panic(fmt.Sprintf("invalid jump destination (%v) %v", nop, p))
}
+ self.Printf(" ~> %v", to)
pc = to.Uint64()
- */
- // Return to start
- if p == 0 {
- pc = 0
- } else {
- nop := OpCode(context.GetOp(p))
- if !(nop == JUMPDEST || destinations[from] != nil) {
- panic(fmt.Sprintf("invalid jump destination (%v) %v", nop, p))
- } else if nop == JUMP || nop == JUMPI {
- panic(fmt.Sprintf("not allowed to JUMP(I) in to JUMP"))
- }
-
- pc = to.Uint64()
-
- }
self.Endl()
}