nimbus-eth1/nimbus/vm2/interpreter/op_handlers/oph_defs.nim

150 lines
4.2 KiB
Nim
Raw Normal View History

# Nimbus
# Copyright (c) 2018 Status Research & Development GmbH
# Licensed under either of
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
# http://www.apache.org/licenses/LICENSE-2.0)
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
# http://opensource.org/licenses/MIT)
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.
2021-04-13 17:12:47 +00:00
## EVM Opcodes, Definitions
## ========================
##
const
kludge {.intdefine.}: int = 0
breakCircularDependency {.used.} = kludge > 0
import
../forks_list,
../op_codes,
../../memory_defs,
../../stack_defs,
eth/common/eth_types
# ------------------------------------------------------------------------------
# Kludge BEGIN
# ------------------------------------------------------------------------------
when not breakCircularDependency:
import
../../v2types
else:
{.warning: "Circular dependency breaker kludge -- "&
"no production code".}
when defined(vm2_enabled):
{.fatal: "Flag \"vm2_enabled\" must be unset "&
"while circular dependency breaker kludge is activated".}
type
GasInt* = int
2021-04-14 16:34:24 +00:00
ReadOnlyStateDB* =
seq[byte]
2021-04-13 17:12:47 +00:00
GasMeter* = object
2021-04-14 16:34:24 +00:00
gasRemaining*: int
2021-04-13 17:12:47 +00:00
CodeStream* = ref object
bytes*: seq[byte]
2021-04-14 16:34:24 +00:00
pc*: int
BaseVMState* = ref object
accountDb*: ReadOnlyStateDB
2021-04-13 17:12:47 +00:00
Message* = ref object
kind*: int
depth*: int
gas*: GasInt
contractAddress*: EthAddress
2021-04-16 15:06:02 +00:00
codeAddress*: EthAddress
sender*: EthAddress
2021-04-13 17:12:47 +00:00
value*: UInt256
data*: seq[byte]
2021-04-14 16:34:24 +00:00
flags*: int
2021-04-13 17:12:47 +00:00
Computation* = ref object
2021-04-14 16:34:24 +00:00
returnStack*: seq[int]
output*: seq[byte]
2021-04-14 16:34:24 +00:00
vmState*: BaseVMState
2021-04-13 17:12:47 +00:00
gasMeter*: GasMeter
stack*: Stack
memory*: Memory
2021-04-13 17:12:47 +00:00
msg*: Message
code*: CodeStream
returnData*: seq[byte]
2021-04-15 16:42:19 +00:00
fork*: Fork
parent*, child*: Computation
continuation*: proc() {.gcsafe.}
# ------------------------------------------------------------------------------
# Kludge END
# ------------------------------------------------------------------------------
export
Op, Fork, Computation, Memory, Stack, UInt256, Message, EthAddress
type
Vm2Ctx* = tuple
cpt: Computation ## computation text
rc: int ## return code from op handler
Vm2OpFn* = ## general op handler, return codes are passed
## back via argument descriptor ``k``
proc(k: var Vm2Ctx) {.gcsafe.}
Vm2OpHanders* = tuple ## three step op code execution, typically
## only the ``run`` entry is activated
prep: Vm2OpFn
run: Vm2OpFn
post: Vm2OpFn
Vm2OpExec* = tuple ## op code handler entry
opCode: Op ## index back-reference
forks: set[Fork] ## forks applicable for this operation
name: string ## handler name
info: string ## handter info, explainer
exec: Vm2OpHanders
# ------------------------------------------------------------------------------
# Public
# ------------------------------------------------------------------------------
const
vm2OpIgnore*: Vm2OpFn = ## No operation, placeholder function
proc(k: var Vm2Ctx) = discard
# similar to: toSeq(Fork).mapIt({it}).foldl(a+b)
Vm2OpAllForks* =
{Fork.low .. Fork.high}
Vm2OpHomesteadAndLater* = ## Set of all fork symbols
Vm2OpAllForks - {FkFrontier}
Vm2OpTangerineAndLater* = ## Set of fork symbols starting from Homestead
Vm2OpHomesteadAndLater - {FkHomestead}
Vm2OpSpuriousAndLater* = ## ditto ...
Vm2OpTangerineAndLater - {FkTangerine}
Vm2OpByzantiumAndLater* =
Vm2OpSpuriousAndLater - {FkSpurious}
Vm2OpConstantinopleAndLater* =
Vm2OpByzantiumAndLater - {FkByzantium}
Vm2OpPetersburgAndLater* =
Vm2OpConstantinopleAndLater - {FkConstantinople}
Vm2OpIstanbulAndLater* =
Vm2OpPetersburgAndLater - {FkPetersburg}
Vm2OpBerlinAndLater* =
Vm2OpIstanbulAndLater - {FkIstanbul}
# ------------------------------------------------------------------------------
# End
# ------------------------------------------------------------------------------