vm_debug.go 19.9 KB
Newer Older
obscuren's avatar
obscuren committed
1
package vm
2 3 4 5 6

import (
	"fmt"
	"math/big"

obscuren's avatar
obscuren committed
7
	"github.com/ethereum/go-ethereum/crypto"
8
	"github.com/ethereum/go-ethereum/ethutil"
obscuren's avatar
obscuren committed
9
	"github.com/ethereum/go-ethereum/state"
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
)

type DebugVm struct {
	env Environment

	logTy  byte
	logStr string

	err error

	// Debugging
	Dbg Debugger

	BreakPoints []int64
	Stepping    bool
	Fn          string

	Recoverable bool

	depth int
}

func NewDebugVm(env Environment) *DebugVm {
	lt := LogTyPretty
	if ethutil.Config.Diff {
		lt = LogTyDiff
	}

	return &DebugVm{env: env, logTy: lt, Recoverable: true}
}

func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) {
	self.depth++

obscuren's avatar
obscuren committed
44 45 46 47 48 49 50 51
	var (
		op OpCode

		mem      = &Memory{}
		stack    = NewStack()
		pc       = big.NewInt(0)
		step     = 0
		prevStep = 0
obscuren's avatar
obscuren committed
52
		statedb  = self.env.State()
obscuren's avatar
obscuren committed
53 54 55 56 57
		require  = func(m int) {
			if stack.Len() < m {
				panic(fmt.Sprintf("%04v (%v) stack err size = %d, required = %d", pc, op, stack.Len(), m))
			}
		}
obscuren's avatar
obscuren committed
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

		jump = func(pos *big.Int) {
			p := int(pos.Int64())

			self.Printf(" ~> %v", pos)
			// Return to start
			if p == 0 {
				pc = big.NewInt(0)
			} else {
				nop := OpCode(closure.GetOp(p - 1))
				if nop != JUMPDEST {
					panic(fmt.Sprintf("JUMP missed JUMPDEST (%v) %v", nop, p))
				}

				pc = pos
			}

			self.Endl()
		}
obscuren's avatar
obscuren committed
77 78
	)

79 80 81 82
	if self.Recoverable {
		// Recover from any require exception
		defer func() {
			if r := recover(); r != nil {
obscuren's avatar
obscuren committed
83 84
				self.Endl()

85
				ret = closure.Return(nil)
obscuren's avatar
obscuren committed
86 87
				// No error should be set. Recover is used with require
				// Is this too error prone?
88 89 90 91 92 93 94 95 96 97 98 99 100 101
			}
		}()
	}

	// Debug hook
	if self.Dbg != nil {
		self.Dbg.SetCode(closure.Code)
	}

	// Don't bother with the execution if there's no code.
	if len(closure.Code) == 0 {
		return closure.Return(nil), nil
	}

102
	vmlogger.Debugf("(%d) %x gas: %v (d) %x\n", self.depth, closure.Address(), closure.Gas, closure.Args)
103 104 105 106 107 108 109 110

	for {
		prevStep = step
		// The base for all big integer arithmetic
		base := new(big.Int)

		step++
		// Get the memory location of pc
111
		op = closure.GetOp(int(pc.Uint64()))
112 113 114 115 116 117

		// XXX Leave this Println intact. Don't change this to the log system.
		// Used for creating diffs between implementations
		if self.logTy == LogTyDiff {
			switch op {
			case STOP, RETURN, SUICIDE:
obscuren's avatar
obscuren committed
118
				statedb.GetStateObject(closure.Address()).EachStorage(func(key string, value *ethutil.Value) {
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
					value.Decode()
					fmt.Printf("%x %x\n", new(big.Int).SetBytes([]byte(key)).Bytes(), value.Bytes())
				})
			}

			b := pc.Bytes()
			if len(b) == 0 {
				b = []byte{0}
			}

			fmt.Printf("%x %x %x %x\n", closure.Address(), b, []byte{byte(op)}, closure.Gas.Bytes())
		}

		gas := new(big.Int)
		addStepGasUsage := func(amount *big.Int) {
			if amount.Cmp(ethutil.Big0) >= 0 {
				gas.Add(gas, amount)
			}
		}

		addStepGasUsage(GasStep)

		var newMemSize *big.Int = ethutil.Big0
142
		// Stack Check, memory resize & gas phase
143
		switch op {
144
		// Stack checks only
obscuren's avatar
obscuren committed
145
		case NOT, CALLDATALOAD, POP, JUMP, BNOT: // 1
146 147 148 149 150 151 152 153 154 155 156
			require(1)
		case ADD, SUB, DIV, SDIV, MOD, SMOD, EXP, LT, GT, SLT, SGT, EQ, AND, OR, XOR, BYTE: // 2
			require(2)
		case ADDMOD, MULMOD: // 3
			require(3)
		case SWAP1, SWAP2, SWAP3, SWAP4, SWAP5, SWAP6, SWAP7, SWAP8, SWAP9, SWAP10, SWAP11, SWAP12, SWAP13, SWAP14, SWAP15, SWAP16:
			n := int(op - SWAP1 + 2)
			require(n)
		case DUP1, DUP2, DUP3, DUP4, DUP5, DUP6, DUP7, DUP8, DUP9, DUP10, DUP11, DUP12, DUP13, DUP14, DUP15, DUP16:
			n := int(op - DUP1 + 1)
			require(n)
obscuren's avatar
obscuren committed
157 158 159 160 161 162 163 164
		case LOG0, LOG1, LOG2, LOG3, LOG4:
			n := int(op - LOG0)
			require(n + 2)

			mSize, mStart := stack.Peekn()
			gas.Set(GasLog)
			addStepGasUsage(new(big.Int).Mul(big.NewInt(int64(n)), GasLog))
			addStepGasUsage(new(big.Int).Add(mSize, mStart))
165
		// Gas only
166 167 168
		case STOP:
			gas.Set(ethutil.Big0)
		case SUICIDE:
169 170
			require(1)

171 172
			gas.Set(ethutil.Big0)
		case SLOAD:
173 174
			require(1)

175
			gas.Set(GasSLoad)
176
		// Memory resize & Gas
177
		case SSTORE:
178 179
			require(2)

180 181 182 183
			var mult *big.Int
			y, x := stack.Peekn()
			val := closure.GetStorage(x)
			if val.BigInt().Cmp(ethutil.Big0) == 0 && len(y.Bytes()) > 0 {
obscuren's avatar
obscuren committed
184 185
				// 0 => non 0
				mult = ethutil.Big3
186
			} else if val.BigInt().Cmp(ethutil.Big0) != 0 && len(y.Bytes()) == 0 {
obscuren's avatar
obscuren committed
187
				statedb.Refund(closure.caller.Address(), GasSStoreRefund, closure.Price)
obscuren's avatar
obscuren committed
188

189 190
				mult = ethutil.Big0
			} else {
obscuren's avatar
obscuren committed
191
				// non 0 => non 0
192 193
				mult = ethutil.Big1
			}
obscuren's avatar
obscuren committed
194
			gas.Set(new(big.Int).Mul(mult, GasSStore))
195
		case BALANCE:
196
			require(1)
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
			gas.Set(GasBalance)
		case MSTORE:
			require(2)
			newMemSize = calcMemSize(stack.Peek(), u256(32))
		case MLOAD:
			require(1)

			newMemSize = calcMemSize(stack.Peek(), u256(32))
		case MSTORE8:
			require(2)
			newMemSize = calcMemSize(stack.Peek(), u256(1))
		case RETURN:
			require(2)

			newMemSize = calcMemSize(stack.Peek(), stack.data[stack.Len()-2])
		case SHA3:
			require(2)

			gas.Set(GasSha)

			newMemSize = calcMemSize(stack.Peek(), stack.data[stack.Len()-2])
		case CALLDATACOPY:
			require(2)

			newMemSize = calcMemSize(stack.Peek(), stack.data[stack.Len()-3])
		case CODECOPY:
			require(3)

			newMemSize = calcMemSize(stack.Peek(), stack.data[stack.Len()-3])
		case EXTCODECOPY:
			require(4)

			newMemSize = calcMemSize(stack.data[stack.Len()-2], stack.data[stack.Len()-4])
		case CALL, CALLCODE:
			require(7)
			gas.Set(GasCall)
			addStepGasUsage(stack.data[stack.Len()-1])

			x := calcMemSize(stack.data[stack.Len()-6], stack.data[stack.Len()-7])
			y := calcMemSize(stack.data[stack.Len()-4], stack.data[stack.Len()-5])

			newMemSize = ethutil.BigMax(x, y)
		case CREATE:
			require(3)
			gas.Set(GasCreate)

			newMemSize = calcMemSize(stack.data[stack.Len()-2], stack.data[stack.Len()-3])
		}

		if newMemSize.Cmp(ethutil.Big0) > 0 {
			newMemSize.Add(newMemSize, u256(31))
			newMemSize.Div(newMemSize, u256(32))
			newMemSize.Mul(newMemSize, u256(32))

			if newMemSize.Cmp(u256(int64(mem.Len()))) > 0 {
				memGasUsage := new(big.Int).Sub(newMemSize, u256(int64(mem.Len())))
				memGasUsage.Mul(GasMemory, memGasUsage)
				memGasUsage.Div(memGasUsage, u256(32))

				addStepGasUsage(memGasUsage)
			}
		}

260 261 262
		self.Printf("(pc) %-3d -o- %-14s", pc, op.String())
		self.Printf(" (g) %-3v (%v)", gas, closure.Gas)

263
		if !closure.UseGas(gas) {
264 265
			self.Endl()

266
			tmp := new(big.Int).Set(closure.Gas)
267 268 269

			closure.UseGas(closure.Gas)

270
			return closure.Return(nil), OOG(gas, tmp)
271 272 273 274 275
		}

		mem.Resize(newMemSize.Uint64())

		switch op {
obscuren's avatar
obscuren committed
276
		// 0x20 range
277 278 279 280 281 282
		case ADD:
			x, y := stack.Popn()
			self.Printf(" %v + %v", y, x)

			base.Add(y, x)

obscuren's avatar
obscuren committed
283
			U256(base)
284 285 286 287 288 289 290 291 292 293

			self.Printf(" = %v", base)
			// Pop result back on the stack
			stack.Push(base)
		case SUB:
			x, y := stack.Popn()
			self.Printf(" %v - %v", y, x)

			base.Sub(y, x)

obscuren's avatar
obscuren committed
294
			U256(base)
295 296 297 298 299 300 301 302 303 304

			self.Printf(" = %v", base)
			// Pop result back on the stack
			stack.Push(base)
		case MUL:
			x, y := stack.Popn()
			self.Printf(" %v * %v", y, x)

			base.Mul(y, x)

obscuren's avatar
obscuren committed
305
			U256(base)
306 307 308 309 310

			self.Printf(" = %v", base)
			// Pop result back on the stack
			stack.Push(base)
		case DIV:
obscuren's avatar
obscuren committed
311 312
			x, y := stack.Pop(), stack.Pop()
			self.Printf(" %v / %v", x, y)
313

obscuren's avatar
obscuren committed
314 315
			if y.Cmp(ethutil.Big0) != 0 {
				base.Div(x, y)
316 317
			}

obscuren's avatar
obscuren committed
318
			U256(base)
319 320 321 322 323

			self.Printf(" = %v", base)
			// Pop result back on the stack
			stack.Push(base)
		case SDIV:
obscuren's avatar
obscuren committed
324
			x, y := S256(stack.Pop()), S256(stack.Pop())
325

obscuren's avatar
obscuren committed
326 327 328 329 330 331 332 333 334 335 336
			self.Printf(" %v / %v", x, y)

			if y.Cmp(ethutil.Big0) == 0 {
				base.Set(ethutil.Big0)
			} else {
				n := new(big.Int)
				if new(big.Int).Mul(x, y).Cmp(ethutil.Big0) < 0 {
					n.SetInt64(-1)
				} else {
					n.SetInt64(1)
				}
337

obscuren's avatar
obscuren committed
338 339 340 341
				base.Div(x.Abs(x), y.Abs(y)).Mul(base, n)

				U256(base)
			}
342 343 344 345

			self.Printf(" = %v", base)
			stack.Push(base)
		case MOD:
obscuren's avatar
obscuren committed
346
			x, y := stack.Pop(), stack.Pop()
347

obscuren's avatar
obscuren committed
348
			self.Printf(" %v %% %v", x, y)
349

obscuren's avatar
obscuren committed
350 351 352 353 354
			if y.Cmp(ethutil.Big0) == 0 {
				base.Set(ethutil.Big0)
			} else {
				base.Mod(x, y)
			}
355

obscuren's avatar
obscuren committed
356
			U256(base)
357 358 359 360

			self.Printf(" = %v", base)
			stack.Push(base)
		case SMOD:
obscuren's avatar
obscuren committed
361 362 363
			x, y := S256(stack.Pop()), S256(stack.Pop())

			self.Printf(" %v %% %v", x, y)
364

obscuren's avatar
obscuren committed
365 366 367 368 369 370 371 372 373
			if y.Cmp(ethutil.Big0) == 0 {
				base.Set(ethutil.Big0)
			} else {
				n := new(big.Int)
				if x.Cmp(ethutil.Big0) < 0 {
					n.SetInt64(-1)
				} else {
					n.SetInt64(1)
				}
374

obscuren's avatar
obscuren committed
375
				base.Mod(x.Abs(x), y.Abs(y)).Mul(base, n)
376

obscuren's avatar
obscuren committed
377 378
				U256(base)
			}
379 380 381 382 383 384 385 386 387 388 389

			self.Printf(" = %v", base)
			stack.Push(base)

		case EXP:
			x, y := stack.Popn()

			self.Printf(" %v ** %v", y, x)

			base.Exp(y, x, Pow256)

obscuren's avatar
obscuren committed
390
			U256(base)
391 392 393 394

			self.Printf(" = %v", base)

			stack.Push(base)
obscuren's avatar
obscuren committed
395 396
		case BNOT:
			base.Sub(Pow256, stack.Pop()).Sub(base, ethutil.Big1)
obscuren's avatar
obscuren committed
397

obscuren's avatar
obscuren committed
398 399
			// Not needed
			//base = U256(base)
obscuren's avatar
obscuren committed
400

401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
			stack.Push(base)
		case LT:
			x, y := stack.Popn()
			self.Printf(" %v < %v", y, x)
			// x < y
			if y.Cmp(x) < 0 {
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}
		case GT:
			x, y := stack.Popn()
			self.Printf(" %v > %v", y, x)

			// x > y
			if y.Cmp(x) > 0 {
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}

		case SLT:
obscuren's avatar
obscuren committed
423
			y, x := S256(stack.Pop()), S256(stack.Pop())
424 425
			self.Printf(" %v < %v", y, x)
			// x < y
obscuren's avatar
obscuren committed
426
			if y.Cmp(S256(x)) < 0 {
427 428 429 430 431
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}
		case SGT:
obscuren's avatar
obscuren committed
432
			y, x := S256(stack.Pop()), S256(stack.Pop())
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
			self.Printf(" %v > %v", y, x)

			// x > y
			if y.Cmp(x) > 0 {
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}

		case EQ:
			x, y := stack.Popn()
			self.Printf(" %v == %v", y, x)

			// x == y
			if x.Cmp(y) == 0 {
				stack.Push(ethutil.BigTrue)
			} else {
				stack.Push(ethutil.BigFalse)
			}
		case NOT:
			x := stack.Pop()
			if x.Cmp(ethutil.BigFalse) > 0 {
				stack.Push(ethutil.BigFalse)
			} else {
				stack.Push(ethutil.BigTrue)
			}

			// 0x10 range
		case AND:
			x, y := stack.Popn()
			self.Printf(" %v & %v", y, x)

			stack.Push(base.And(y, x))
		case OR:
			x, y := stack.Popn()
			self.Printf(" %v | %v", y, x)

			stack.Push(base.Or(y, x))
		case XOR:
			x, y := stack.Popn()
			self.Printf(" %v ^ %v", y, x)

			stack.Push(base.Xor(y, x))
		case BYTE:
			val, th := stack.Popn()
obscuren's avatar
obscuren committed
478 479

			if th.Cmp(big.NewInt(32)) < 0 {
480 481
				byt := big.NewInt(int64(ethutil.LeftPadBytes(val.Bytes(), 32)[th.Int64()]))

obscuren's avatar
obscuren committed
482
				base.Set(byt)
483
			} else {
obscuren's avatar
obscuren committed
484
				base.Set(ethutil.BigFalse)
485
			}
obscuren's avatar
obscuren committed
486 487 488 489

			self.Printf(" => 0x%x", base.Bytes())

			stack.Push(base)
490 491 492 493 494 495 496 497 498
		case ADDMOD:

			x := stack.Pop()
			y := stack.Pop()
			z := stack.Pop()

			base.Add(x, y)
			base.Mod(base, z)

obscuren's avatar
obscuren committed
499
			U256(base)
500 501 502 503 504 505 506 507 508 509 510 511 512

			self.Printf(" = %v", base)

			stack.Push(base)
		case MULMOD:

			x := stack.Pop()
			y := stack.Pop()
			z := stack.Pop()

			base.Mul(x, y)
			base.Mod(base, z)

obscuren's avatar
obscuren committed
513
			U256(base)
514 515 516 517 518 519 520 521

			self.Printf(" = %v", base)

			stack.Push(base)

			// 0x20 range
		case SHA3:
			size, offset := stack.Popn()
obscuren's avatar
obscuren committed
522
			data := crypto.Sha3(mem.Get(offset.Int64(), size.Int64()))
523 524 525 526 527 528 529 530 531 532 533 534

			stack.Push(ethutil.BigD(data))

			self.Printf(" => %x", data)
			// 0x30 range
		case ADDRESS:
			stack.Push(ethutil.BigD(closure.Address()))

			self.Printf(" => %x", closure.Address())
		case BALANCE:

			addr := stack.Pop().Bytes()
obscuren's avatar
obscuren committed
535
			balance := statedb.GetBalance(addr)
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551

			stack.Push(balance)

			self.Printf(" => %v (%x)", balance, addr)
		case ORIGIN:
			origin := self.env.Origin()

			stack.Push(ethutil.BigD(origin))

			self.Printf(" => %x", origin)
		case CALLER:
			caller := closure.caller.Address()
			stack.Push(ethutil.BigD(caller))

			self.Printf(" => %x", caller)
		case CALLVALUE:
obscuren's avatar
obscuren committed
552
			value := closure.exe.value
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598

			stack.Push(value)

			self.Printf(" => %v", value)
		case CALLDATALOAD:
			var (
				offset  = stack.Pop()
				data    = make([]byte, 32)
				lenData = big.NewInt(int64(len(closure.Args)))
			)

			if lenData.Cmp(offset) >= 0 {
				length := new(big.Int).Add(offset, ethutil.Big32)
				length = ethutil.BigMin(length, lenData)

				copy(data, closure.Args[offset.Int64():length.Int64()])
			}

			self.Printf(" => 0x%x", data)

			stack.Push(ethutil.BigD(data))
		case CALLDATASIZE:
			l := int64(len(closure.Args))
			stack.Push(big.NewInt(l))

			self.Printf(" => %d", l)
		case CALLDATACOPY:
			var (
				size = int64(len(closure.Args))
				mOff = stack.Pop().Int64()
				cOff = stack.Pop().Int64()
				l    = stack.Pop().Int64()
			)

			if cOff > size {
				cOff = 0
				l = 0
			} else if cOff+l > size {
				l = 0
			}

			code := closure.Args[cOff : cOff+l]

			mem.Set(mOff, l, code)
		case CODESIZE, EXTCODESIZE:
			var code []byte
obscuren's avatar
obscuren committed
599
			if op == EXTCODESIZE {
600 601
				addr := stack.Pop().Bytes()

obscuren's avatar
obscuren committed
602
				code = statedb.GetCode(addr)
603 604 605 606 607 608 609 610 611 612 613 614 615
			} else {
				code = closure.Code
			}

			l := big.NewInt(int64(len(code)))
			stack.Push(l)

			self.Printf(" => %d", l)
		case CODECOPY, EXTCODECOPY:
			var code []byte
			if op == EXTCODECOPY {
				addr := stack.Pop().Bytes()

obscuren's avatar
obscuren committed
616
				code = statedb.GetCode(addr)
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
			} else {
				code = closure.Code
			}

			var (
				size = int64(len(code))
				mOff = stack.Pop().Int64()
				cOff = stack.Pop().Int64()
				l    = stack.Pop().Int64()
			)

			if cOff > size {
				cOff = 0
				l = 0
			} else if cOff+l > size {
				l = 0
			}

			codeCopy := code[cOff : cOff+l]

			mem.Set(mOff, l, codeCopy)
		case GASPRICE:
			stack.Push(closure.Price)

			self.Printf(" => %v", closure.Price)

			// 0x40 range
		case PREVHASH:
			prevHash := self.env.PrevHash()

			stack.Push(ethutil.BigD(prevHash))

			self.Printf(" => 0x%x", prevHash)
		case COINBASE:
			coinbase := self.env.Coinbase()

			stack.Push(ethutil.BigD(coinbase))

			self.Printf(" => 0x%x", coinbase)
		case TIMESTAMP:
			time := self.env.Time()

			stack.Push(big.NewInt(time))

			self.Printf(" => 0x%x", time)
		case NUMBER:
			number := self.env.BlockNumber()

			stack.Push(number)

			self.Printf(" => 0x%x", number.Bytes())
		case DIFFICULTY:
			difficulty := self.env.Difficulty()

			stack.Push(difficulty)

			self.Printf(" => 0x%x", difficulty.Bytes())
		case GASLIMIT:
obscuren's avatar
obscuren committed
675
			stack.Push(self.env.GasLimit())
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705

			// 0x50 range
		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 := big.NewInt(int64(op) - int64(PUSH1) + 1)
			pc.Add(pc, ethutil.Big1)
			data := closure.Gets(pc, a)
			val := ethutil.BigD(data.Bytes())
			// Push value to stack
			stack.Push(val)
			pc.Add(pc, a.Sub(a, big.NewInt(1)))

			step += int(op) - int(PUSH1) + 1

			self.Printf(" => 0x%x", data.Bytes())
		case POP:
			stack.Pop()
		case DUP1, DUP2, DUP3, DUP4, DUP5, DUP6, DUP7, DUP8, DUP9, DUP10, DUP11, DUP12, DUP13, DUP14, DUP15, DUP16:
			n := int(op - DUP1 + 1)
			v := stack.Dupn(n)

			self.Printf(" => [%d] 0x%x", n, stack.Peek().Bytes())

			if OpCode(closure.Get(new(big.Int).Add(pc, ethutil.Big1)).Uint()) == POP && OpCode(closure.Get(new(big.Int).Add(pc, big.NewInt(2))).Uint()) == POP {
				fmt.Println(toValue(v))
			}
		case SWAP1, SWAP2, SWAP3, SWAP4, SWAP5, SWAP6, SWAP7, SWAP8, SWAP9, SWAP10, SWAP11, SWAP12, SWAP13, SWAP14, SWAP15, SWAP16:
			n := int(op - SWAP1 + 2)
			x, y := stack.Swapn(n)

			self.Printf(" => [%d] %x [0] %x", n, x.Bytes(), y.Bytes())
obscuren's avatar
obscuren committed
706 707
		case LOG0, LOG1, LOG2, LOG3, LOG4:
			n := int(op - LOG0)
obscuren's avatar
obscuren committed
708
			topics := make([][]byte, n)
obscuren's avatar
obscuren committed
709 710 711
			mSize, mStart := stack.Pop().Int64(), stack.Pop().Int64()
			data := mem.Geti(mStart, mSize)
			for i := 0; i < n; i++ {
obscuren's avatar
obscuren committed
712
				topics[i] = stack.Pop().Bytes()
obscuren's avatar
obscuren committed
713
			}
obscuren's avatar
obscuren committed
714
			self.env.AddLog(state.Log{closure.Address(), topics, data})
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
		case MLOAD:
			offset := stack.Pop()
			val := ethutil.BigD(mem.Get(offset.Int64(), 32))
			stack.Push(val)

			self.Printf(" => 0x%x", val.Bytes())
		case MSTORE: // Store the value at stack top-1 in to memory at location stack top
			// Pop value of the stack
			val, mStart := stack.Popn()
			mem.Set(mStart.Int64(), 32, ethutil.BigToBytes(val, 256))

			self.Printf(" => 0x%x", val)
		case MSTORE8:
			off := stack.Pop()
			val := stack.Pop()

			mem.store[off.Int64()] = byte(val.Int64() & 0xff)

			self.Printf(" => [%v] 0x%x", off, val)
		case SLOAD:
			loc := stack.Pop()
obscuren's avatar
obscuren committed
736
			val := ethutil.BigD(statedb.GetState(closure.Address(), loc.Bytes()))
737
			stack.Push(val)
738 739 740 741

			self.Printf(" {0x%x : 0x%x}", loc.Bytes(), val.Bytes())
		case SSTORE:
			val, loc := stack.Popn()
obscuren's avatar
obscuren committed
742
			statedb.SetState(closure.Address(), loc.Bytes(), val)
743

obscuren's avatar
obscuren committed
744 745 746 747
			// Debug sessions are allowed to run without message
			if closure.message != nil {
				closure.message.AddStorageChange(loc.Bytes())
			}
748 749 750

			self.Printf(" {0x%x : 0x%x}", loc.Bytes(), val.Bytes())
		case JUMP:
751

obscuren's avatar
obscuren committed
752
			jump(stack.Pop())
753 754 755 756 757

			continue
		case JUMPI:
			cond, pos := stack.Popn()

obscuren's avatar
obscuren committed
758 759
			if cond.Cmp(ethutil.BigTrue) >= 0 {
				jump(pos)
760 761 762

				continue
			}
obscuren's avatar
obscuren committed
763

764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
		case JUMPDEST:
		case PC:
			stack.Push(pc)
		case MSIZE:
			stack.Push(big.NewInt(int64(mem.Len())))
		case GAS:
			stack.Push(closure.Gas)
			// 0x60 range
		case CREATE:

			var (
				err          error
				value        = stack.Pop()
				size, offset = stack.Popn()
				input        = mem.Get(offset.Int64(), size.Int64())
				gas          = new(big.Int).Set(closure.Gas)

				// Snapshot the current stack so we are able to
				// revert back to it later.
				//snapshot = self.env.State().Copy()
			)

			// Generate a new address
obscuren's avatar
obscuren committed
787
			n := statedb.GetNonce(closure.Address())
obscuren's avatar
obscuren committed
788
			addr := crypto.CreateAddress(closure.Address(), n)
obscuren's avatar
obscuren committed
789
			statedb.SetNonce(closure.Address(), n+1)
790 791 792 793 794 795

			self.Printf(" (*) %x", addr).Endl()

			closure.UseGas(closure.Gas)

			msg := NewExecution(self, addr, input, gas, closure.Price, value)
obscuren's avatar
obscuren committed
796
			ret, err := msg.Create(closure)
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
			if err != nil {
				stack.Push(ethutil.BigFalse)

				// Revert the state as it was before.
				//self.env.State().Set(snapshot)

				self.Printf("CREATE err %v", err)
			} else {
				msg.object.Code = ret

				stack.Push(ethutil.BigD(addr))
			}

			self.Endl()

			// Debug hook
			if self.Dbg != nil {
				self.Dbg.SetCode(closure.Code)
			}
		case CALL, CALLCODE:
			self.Endl()

			gas := stack.Pop()
			// Pop gas and value of the stack.
			value, addr := stack.Popn()
			// Pop input size and offset
			inSize, inOffset := stack.Popn()
			// Pop return size and offset
			retSize, retOffset := stack.Popn()

			// Get the arguments from the memory
			args := mem.Get(inOffset.Int64(), inSize.Int64())

			var executeAddr []byte
			if op == CALLCODE {
				executeAddr = closure.Address()
			} else {
				executeAddr = addr.Bytes()
			}

			msg := NewExecution(self, executeAddr, args, gas, closure.Price, value)
			ret, err := msg.Exec(addr.Bytes(), closure)
			if err != nil {
				stack.Push(ethutil.BigFalse)

842
				vmlogger.Debugln(err)
843 844 845 846 847
			} else {
				stack.Push(ethutil.BigTrue)

				mem.Set(retOffset.Int64(), retSize.Int64(), ret)
			}
848
			self.Printf("resume %x", closure.Address())
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863

			// Debug hook
			if self.Dbg != nil {
				self.Dbg.SetCode(closure.Code)
			}

		case RETURN:
			size, offset := stack.Popn()
			ret := mem.Get(offset.Int64(), size.Int64())

			self.Printf(" => (%d) 0x%x", len(ret), ret).Endl()

			return closure.Return(ret), nil
		case SUICIDE:

obscuren's avatar
obscuren committed
864
			receiver := statedb.GetOrNewStateObject(stack.Pop().Bytes())
865

obscuren's avatar
obscuren committed
866 867
			receiver.AddAmount(statedb.GetBalance(closure.Address()))
			statedb.Delete(closure.Address())
868 869 870 871 872 873 874 875 876 877

			fallthrough
		case STOP: // Stop the closure
			self.Endl()

			return closure.Return(nil), nil
		default:
			vmlogger.Debugf("(pc) %-3v Invalid opcode %x\n", pc, op)

			//panic(fmt.Sprintf("Invalid opcode %x", op))
obscuren's avatar
obscuren committed
878
			closure.ReturnGas(big.NewInt(1), nil)
879 880 881 882 883 884 885 886 887 888 889 890 891

			return closure.Return(nil), fmt.Errorf("Invalid opcode %x", op)
		}

		pc.Add(pc, ethutil.Big1)

		self.Endl()

		if self.Dbg != nil {
			for _, instrNo := range self.Dbg.BreakPoints() {
				if pc.Cmp(big.NewInt(instrNo)) == 0 {
					self.Stepping = true

obscuren's avatar
obscuren committed
892
					if !self.Dbg.BreakHook(prevStep, op, mem, stack, statedb.GetStateObject(closure.Address())) {
893 894 895
						return nil, nil
					}
				} else if self.Stepping {
obscuren's avatar
obscuren committed
896
					if !self.Dbg.StepHook(prevStep, op, mem, stack, statedb.GetStateObject(closure.Address())) {
897 898 899 900 901 902 903 904 905
						return nil, nil
					}
				}
			}
		}

	}
}

906
func (self *DebugVm) Printf(format string, v ...interface{}) VirtualMachine {
907 908 909 910 911 912 913
	if self.logTy == LogTyPretty {
		self.logStr += fmt.Sprintf(format, v...)
	}

	return self
}

914
func (self *DebugVm) Endl() VirtualMachine {
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
	if self.logTy == LogTyPretty {
		vmlogger.Debugln(self.logStr)
		self.logStr = ""
	}

	return self
}

func (self *DebugVm) Env() Environment {
	return self.env
}

func (self *DebugVm) Depth() int {
	return self.depth
}