2021-04-15 13:40:31 +00:00
|
|
|
# Nimbus
|
2024-06-07 08:24:32 +00:00
|
|
|
# Copyright (c) 2018-2024 Status Research & Development GmbH
|
2021-04-15 13:40:31 +00:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
## EVM Opcode Handlers: Swap Operations
|
|
|
|
## ====================================
|
|
|
|
##
|
|
|
|
|
2024-06-07 08:24:32 +00:00
|
|
|
{.push raises: [].}
|
|
|
|
|
2021-04-15 13:40:31 +00:00
|
|
|
import
|
2024-06-07 08:24:32 +00:00
|
|
|
../../evm_errors,
|
2021-04-21 17:04:54 +00:00
|
|
|
../../stack,
|
|
|
|
../op_codes,
|
2021-04-15 13:40:31 +00:00
|
|
|
./oph_defs,
|
2021-04-23 10:47:58 +00:00
|
|
|
./oph_gen_handlers,
|
2024-06-07 08:24:32 +00:00
|
|
|
sequtils
|
2023-02-14 14:37:21 +00:00
|
|
|
|
2021-04-15 13:40:31 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private, names & settings
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc fnName(n: int): string {.compileTime.} =
|
2024-06-07 08:24:32 +00:00
|
|
|
"swap" & $n & "Op"
|
2021-04-15 13:40:31 +00:00
|
|
|
|
|
|
|
proc opName(n: int): string {.compileTime.} =
|
2024-06-07 08:24:32 +00:00
|
|
|
"Swap" & $n
|
2021-04-15 13:40:31 +00:00
|
|
|
|
|
|
|
proc fnInfo(n: int): string {.compileTime.} =
|
|
|
|
var blurb = case n+1
|
|
|
|
of 1: "first"
|
|
|
|
of 2: "second"
|
|
|
|
of 3: "third"
|
2024-06-07 08:24:32 +00:00
|
|
|
else: $(n+1) & "th"
|
|
|
|
"Exchange first and " & blurb & " stack items"
|
2021-04-15 13:40:31 +00:00
|
|
|
|
|
|
|
|
2024-07-19 01:44:01 +00:00
|
|
|
template swapImpl(cpt: VmCpt; n: static int): EvmResultVoid =
|
|
|
|
cpt.stack.swap(n)
|
2021-04-15 13:40:31 +00:00
|
|
|
|
|
|
|
const
|
|
|
|
inxRange = toSeq(1 .. 16)
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private, op handlers implementation
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
genOphHandlers fnName, fnInfo, inxRange, swapImpl
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public, op exec table entries
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2024-06-15 16:18:53 +00:00
|
|
|
genOphList fnName, fnInfo, inxRange, "VmOpExecSwap", opName
|
2021-04-15 13:40:31 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|