2021-03-31 14:51:13 +00:00
|
|
|
# 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-03-31 17:08:31 +00:00
|
|
|
# At the moment, this header file interface is only used for testing.
|
|
|
|
|
2022-09-26 04:56:54 +00:00
|
|
|
import
|
2022-12-02 04:39:12 +00:00
|
|
|
./evm/memory as vmm
|
2022-09-26 04:56:54 +00:00
|
|
|
|
2021-03-31 17:08:31 +00:00
|
|
|
export
|
|
|
|
vmm.Memory,
|
|
|
|
vmm.extend,
|
|
|
|
vmm.len,
|
|
|
|
vmm.newMemory,
|
2023-04-24 20:59:38 +00:00
|
|
|
vmm.read,
|
|
|
|
vmm.write
|
2021-03-31 14:51:13 +00:00
|
|
|
|
2021-03-31 17:08:31 +00:00
|
|
|
when defined(evmc_enabled):
|
|
|
|
export
|
|
|
|
vmm.readPtr
|
|
|
|
|
2022-09-26 04:56:54 +00:00
|
|
|
import
|
2022-12-02 04:39:12 +00:00
|
|
|
./evm/interpreter/utils/utils_numeric as vmn
|
2021-03-31 17:08:31 +00:00
|
|
|
|
2021-04-08 14:52:10 +00:00
|
|
|
|
2021-03-31 14:51:13 +00:00
|
|
|
export
|
|
|
|
vmn.GasNatural,
|
|
|
|
vmn.calcMemSize,
|
|
|
|
vmn.ceil32,
|
|
|
|
vmn.cleanMemRef,
|
|
|
|
vmn.log2,
|
|
|
|
vmn.log256,
|
|
|
|
vmn.rangeToPadded,
|
|
|
|
vmn.safeInt,
|
|
|
|
vmn.setSign,
|
|
|
|
vmn.toInt,
|
|
|
|
vmn.wordCount
|
2021-03-31 17:08:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Wrapping the wrapper -- lol
|
2022-09-26 04:56:54 +00:00
|
|
|
import
|
2022-12-02 04:39:12 +00:00
|
|
|
./evm/code_stream as aCst,
|
|
|
|
./evm/computation as bChp,
|
|
|
|
./evm/interpreter_dispatch as cVmc,
|
|
|
|
./evm/interpreter/gas_meter as eGmt,
|
|
|
|
./evm/interpreter/op_codes as fVmo,
|
|
|
|
./evm/message as gVmg,
|
|
|
|
./evm/stack as hStk
|
2022-09-26 04:56:54 +00:00
|
|
|
export
|
|
|
|
aCst.CodeStream,
|
|
|
|
aCst.`$`,
|
|
|
|
aCst.`[]`,
|
|
|
|
aCst.atEnd,
|
|
|
|
aCst.decompile,
|
|
|
|
aCst.displayDecompiled,
|
|
|
|
aCst.hasSStore,
|
|
|
|
aCst.isValidOpcode,
|
|
|
|
aCst.items,
|
|
|
|
aCst.len,
|
|
|
|
aCst.newCodeStream,
|
|
|
|
aCst.newCodeStreamFromUnescaped,
|
|
|
|
aCst.next,
|
|
|
|
aCst.peek,
|
|
|
|
aCst.read,
|
|
|
|
aCst.readVmWord,
|
|
|
|
aCst.updatePc,
|
|
|
|
bChp.accountExists,
|
|
|
|
bChp.addLogEntry,
|
|
|
|
bChp.chainTo,
|
|
|
|
bChp.commit,
|
|
|
|
bChp.dispose,
|
|
|
|
bChp.fork,
|
|
|
|
bChp.getBalance,
|
|
|
|
bChp.getBlockHash,
|
|
|
|
bChp.getBlockNumber,
|
|
|
|
bChp.getChainId,
|
|
|
|
bChp.getCode,
|
|
|
|
bChp.getCodeHash,
|
|
|
|
bChp.getCodeSize,
|
|
|
|
bChp.getCoinbase,
|
|
|
|
bChp.getDifficulty,
|
|
|
|
bChp.getGasLimit,
|
|
|
|
bChp.getGasPrice,
|
|
|
|
bChp.getGasRefund,
|
|
|
|
bChp.getOrigin,
|
|
|
|
bChp.getStorage,
|
|
|
|
bChp.getTimestamp,
|
|
|
|
bChp.isError,
|
|
|
|
bChp.isOriginComputation,
|
|
|
|
bChp.isSuccess,
|
|
|
|
bChp.merge,
|
|
|
|
bChp.newComputation,
|
|
|
|
bChp.prepareTracer,
|
|
|
|
bChp.refundSelfDestruct,
|
|
|
|
bChp.rollback,
|
|
|
|
bChp.selfDestruct,
|
|
|
|
bChp.setError,
|
|
|
|
bChp.shouldBurnGas,
|
|
|
|
bChp.snapshot,
|
|
|
|
bChp.traceError,
|
|
|
|
bChp.traceOpCodeEnded,
|
|
|
|
bChp.traceOpCodeStarted,
|
|
|
|
bChp.tracingEnabled,
|
|
|
|
bChp.writeContract,
|
|
|
|
cVmc.execCallOrCreate,
|
|
|
|
cVmc.executeOpcodes,
|
|
|
|
eGmt.consumeGas,
|
|
|
|
eGmt.init,
|
|
|
|
eGmt.refundGas,
|
|
|
|
eGmt.returnGas,
|
|
|
|
fVmo.Op,
|
|
|
|
fVmo.PrevRandao,
|
|
|
|
gVmg.isCreate,
|
|
|
|
hStk.Stack,
|
|
|
|
hStk.`$`,
|
|
|
|
hStk.`[]`,
|
|
|
|
hStk.dup,
|
|
|
|
hStk.len,
|
|
|
|
hStk.newStack,
|
|
|
|
hStk.peek,
|
2023-04-24 20:59:38 +00:00
|
|
|
hStk.peekInt,
|
2022-09-26 04:56:54 +00:00
|
|
|
hStk.popAddress,
|
|
|
|
hStk.popInt,
|
|
|
|
hStk.popTopic,
|
|
|
|
hStk.push,
|
|
|
|
hStk.swap,
|
2023-04-24 20:59:38 +00:00
|
|
|
hStk.top
|
2021-03-31 17:08:31 +00:00
|
|
|
|
2021-03-31 14:51:13 +00:00
|
|
|
# End
|