quorum/core/vm
Jeffrey Wilcke 8b57c49490 params: core, core/vm, miner: 64bit gas instructions (#3514)
Reworked the EVM gas instructions to use 64bit integers rather than
arbitrary size big ints. All gas operations, be it additions,
multiplications or divisions, are checked and guarded against 64 bit
integer overflows.

In additon, most of the protocol paramaters in the params package have
been converted to uint64 and are now constants rather than variables.

* common/math: added overflow check ops
* core: vmenv, env renamed to evm
* eth, internal/ethapi, les: unmetered eth_call and cancel methods
* core/vm: implemented big.Int pool for evm instructions
* core/vm: unexported intPool methods & verification methods
* core/vm: added memoryGasCost overflow check and test
2017-02-02 15:25:42 +01:00
..
runtime params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
analysis.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
asm.go all: fix go vet warnings 2016-04-15 11:17:27 +02:00
common.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
contract.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
contracts.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
disasm.go all: fix license headers one more time 2015-07-23 18:35:11 +02:00
doc.go all: update license information 2016-04-15 09:48:05 +02:00
errors.go core/vm: improved EVM run loop & instruction calling (#3378) 2017-01-05 11:52:10 +01:00
evm.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
gas.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
gas_table.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
gas_table_test.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
instructions.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
int_pool_verifier.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
int_pool_verifier_empty.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
interface.go cmd/geth, core: add support for recording SHA3 preimages (#3543) 2017-01-17 12:19:50 +01:00
interpreter.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
intpool.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
jump_table.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
logger.go core/vm: improved EVM run loop & instruction calling (#3378) 2017-01-05 11:52:10 +01:00
logger_test.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
memory.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
memory_table.go core/vm: improved EVM run loop & instruction calling (#3378) 2017-01-05 11:52:10 +01:00
noop.go cmd/geth, core: add support for recording SHA3 preimages (#3543) 2017-01-17 12:19:50 +01:00
opcodes.go core/vm: fix GASPRICE string (resolves #2553) 2016-10-19 15:55:34 +11:00
stack.go core/vm: improved EVM run loop & instruction calling (#3378) 2017-01-05 11:52:10 +01:00
stack_table.go params: core, core/vm, miner: 64bit gas instructions (#3514) 2017-02-02 15:25:42 +01:00
vm_jit.go core/vm: improved EVM run loop & instruction calling (#3378) 2017-01-05 11:52:10 +01:00
vm_jit_fake.go core, core/vm: implemented a generic environment (#3348) 2016-12-06 02:16:03 +01:00