pub mod eof_printer;
use crate::{instructions::*, primitives::Spec, Host, Interpreter};
use core::fmt;
use std::boxed::Box;
pub type Instruction<H> = fn(&mut Interpreter, &mut H);
pub type InstructionTable<H> = [Instruction<H>; 256];
pub type BoxedInstruction<'a, H> = Box<dyn Fn(&mut Interpreter, &mut H) + 'a>;
pub type BoxedInstructionTable<'a, H> = [BoxedInstruction<'a, H>; 256];
pub enum InstructionTables<'a, H> {
Plain(InstructionTable<H>),
Boxed(BoxedInstructionTable<'a, H>),
}
impl<H: Host> InstructionTables<'_, H> {
#[inline]
pub const fn new_plain<SPEC: Spec>() -> Self {
Self::Plain(make_instruction_table::<H, SPEC>())
}
}
impl<'a, H: Host + 'a> InstructionTables<'a, H> {
#[inline]
pub fn insert_boxed(&mut self, opcode: u8, instruction: BoxedInstruction<'a, H>) {
self.convert_boxed();
match self {
Self::Plain(_) => {
unreachable!("we already converted the table to boxed variant");
}
Self::Boxed(table) => {
table[opcode as usize] = Box::new(instruction);
}
}
}
#[inline]
pub fn insert(&mut self, opcode: u8, instruction: Instruction<H>) {
match self {
Self::Plain(table) => {
table[opcode as usize] = instruction;
}
Self::Boxed(table) => {
table[opcode as usize] = Box::new(instruction);
}
}
}
#[inline]
pub fn convert_boxed(&mut self) {
match self {
Self::Plain(table) => {
*self = Self::Boxed(core::array::from_fn(|i| {
let instruction: BoxedInstruction<'a, H> = Box::new(table[i]);
instruction
}));
}
Self::Boxed(_) => {}
};
}
}
#[inline]
pub const fn make_instruction_table<H: Host + ?Sized, SPEC: Spec>() -> InstructionTable<H> {
struct ConstTable<H: Host + ?Sized, SPEC: Spec> {
_host: core::marker::PhantomData<H>,
_spec: core::marker::PhantomData<SPEC>,
}
impl<H: Host + ?Sized, SPEC: Spec> ConstTable<H, SPEC> {
const NEW: InstructionTable<H> = {
let mut tables: InstructionTable<H> = [control::unknown; 256];
let mut i = 0;
while i < 256 {
tables[i] = instruction::<H, SPEC>(i as u8);
i += 1;
}
tables
};
}
ConstTable::<H, SPEC>::NEW
}
#[inline]
pub fn make_boxed_instruction_table<'a, H, SPEC, FN>(
table: InstructionTable<H>,
mut outer: FN,
) -> BoxedInstructionTable<'a, H>
where
H: Host,
SPEC: Spec + 'a,
FN: FnMut(Instruction<H>) -> BoxedInstruction<'a, H>,
{
core::array::from_fn(|i| outer(table[i]))
}
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(transparent)]
pub struct OpCode(u8);
impl fmt::Display for OpCode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let n = self.get();
if let Some(val) = OPCODE_INFO_JUMPTABLE[n as usize] {
f.write_str(val.name)
} else {
write!(f, "UNKNOWN(0x{n:02X})")
}
}
}
impl OpCode {
#[inline]
pub const fn new(opcode: u8) -> Option<Self> {
match OPCODE_INFO_JUMPTABLE[opcode as usize] {
Some(_) => Some(Self(opcode)),
None => None,
}
}
#[inline]
pub const fn is_jumpdest(&self) -> bool {
self.0 == JUMPDEST
}
#[inline]
pub const fn is_jumpdest_by_op(opcode: u8) -> bool {
if let Some(opcode) = Self::new(opcode) {
opcode.is_jumpdest()
} else {
false
}
}
#[inline]
pub const fn is_jump(self) -> bool {
self.0 == JUMP
}
#[inline]
pub const fn is_jump_by_op(opcode: u8) -> bool {
if let Some(opcode) = Self::new(opcode) {
opcode.is_jump()
} else {
false
}
}
#[inline]
pub const fn is_push(self) -> bool {
self.0 >= PUSH1 && self.0 <= PUSH32
}
#[inline]
pub fn is_push_by_op(opcode: u8) -> bool {
if let Some(opcode) = Self::new(opcode) {
opcode.is_push()
} else {
false
}
}
#[inline]
pub unsafe fn new_unchecked(opcode: u8) -> Self {
Self(opcode)
}
#[inline]
pub const fn as_str(self) -> &'static str {
self.info().name
}
#[inline]
pub const fn name_by_op(opcode: u8) -> &'static str {
if let Some(opcode) = Self::new(opcode) {
opcode.as_str()
} else {
"Unknown"
}
}
pub const fn inputs(&self) -> u8 {
self.info().inputs
}
pub const fn outputs(&self) -> u8 {
self.info().outputs
}
pub const fn io_diff(&self) -> i16 {
self.info().io_diff()
}
pub const fn info_by_op(opcode: u8) -> Option<OpCodeInfo> {
if let Some(opcode) = Self::new(opcode) {
Some(opcode.info())
} else {
None
}
}
#[inline]
pub const fn info(&self) -> OpCodeInfo {
if let Some(t) = OPCODE_INFO_JUMPTABLE[self.0 as usize] {
t
} else {
panic!("unreachable, all opcodes are defined")
}
}
pub const fn input_output(&self) -> (u8, u8) {
let info = self.info();
(info.inputs, info.outputs)
}
#[inline]
pub const fn get(self) -> u8 {
self.0
}
}
#[derive(Clone, Copy, Default, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct OpCodeInfo {
pub name: &'static str,
pub inputs: u8,
pub outputs: u8,
pub is_eof: bool,
pub is_terminating_opcode: bool,
pub immediate_size: u8,
}
impl OpCodeInfo {
pub const fn new(name: &'static str) -> Self {
Self {
name,
inputs: 0,
outputs: 0,
is_eof: true,
is_terminating_opcode: false,
immediate_size: 0,
}
}
pub const fn io_diff(&self) -> i16 {
self.outputs as i16 - self.inputs as i16
}
}
pub const NOP: u8 = JUMPDEST;
macro_rules! opcodes {
($($val:literal => $name:ident => $f:expr => $($modifier:ident $(< $($modifier_num:literal),* >)?),*);* $(;)?) => {
$(
#[doc = concat!("The `", stringify!($val), "` (\"", stringify!($name),"\") opcode.")]
pub const $name: u8 = $val;
)*
impl OpCode {$(
#[doc = concat!("The `", stringify!($val), "` (\"", stringify!($name),"\") opcode.")]
pub const $name: Self = Self($val);
)*}
pub const OPCODE_INFO_JUMPTABLE: [Option<OpCodeInfo>; 256] = {
let mut map = [None; 256];
let mut prev: u8 = 0;
$(
let val: u8 = $val;
assert!(val == 0 || val > prev, "opcodes must be sorted in ascending order");
prev = val;
let opcode = OpCodeInfo::new(stringify!($name));
$( let opcode = $modifier$(::< $( $modifier_num ),+ >)? (opcode);)*
map[$val] = Some(opcode);
)*
let _ = prev;
map
};
pub const fn instruction<H: Host + ?Sized, SPEC: Spec>(opcode: u8) -> Instruction<H> {
match opcode {
$($name => $f,)*
_ => control::unknown,
}
}
};
}
pub const fn not_eof(mut opcode: OpCodeInfo) -> OpCodeInfo {
opcode.is_eof = false;
opcode
}
pub const fn imm_size<const N: u8>(mut opcode: OpCodeInfo) -> OpCodeInfo {
opcode.immediate_size = N;
opcode
}
pub const fn terminating(mut opcode: OpCodeInfo) -> OpCodeInfo {
opcode.is_terminating_opcode = true;
opcode
}
pub const fn stack_io<const I: u8, const O: u8>(mut opcode: OpCodeInfo) -> OpCodeInfo {
opcode.inputs = I;
opcode.outputs = O;
opcode
}
opcodes! {
0x00 => STOP => control::stop => stack_io<0,0>, terminating;
0x01 => ADD => arithmetic::add => stack_io<2, 1>;
0x02 => MUL => arithmetic::mul => stack_io<2, 1>;
0x03 => SUB => arithmetic::sub => stack_io<2, 1>;
0x04 => DIV => arithmetic::div => stack_io<2, 1>;
0x05 => SDIV => arithmetic::sdiv => stack_io<2, 1>;
0x06 => MOD => arithmetic::rem => stack_io<2, 1>;
0x07 => SMOD => arithmetic::smod => stack_io<2, 1>;
0x08 => ADDMOD => arithmetic::addmod => stack_io<3, 1>;
0x09 => MULMOD => arithmetic::mulmod => stack_io<3, 1>;
0x0A => EXP => arithmetic::exp::<H, SPEC> => stack_io<2, 1>;
0x0B => SIGNEXTEND => arithmetic::signextend => stack_io<2, 1>;
0x10 => LT => bitwise::lt => stack_io<2, 1>;
0x11 => GT => bitwise::gt => stack_io<2, 1>;
0x12 => SLT => bitwise::slt => stack_io<2, 1>;
0x13 => SGT => bitwise::sgt => stack_io<2, 1>;
0x14 => EQ => bitwise::eq => stack_io<2, 1>;
0x15 => ISZERO => bitwise::iszero => stack_io<1, 1>;
0x16 => AND => bitwise::bitand => stack_io<2, 1>;
0x17 => OR => bitwise::bitor => stack_io<2, 1>;
0x18 => XOR => bitwise::bitxor => stack_io<2, 1>;
0x19 => NOT => bitwise::not => stack_io<1, 1>;
0x1A => BYTE => bitwise::byte => stack_io<2, 1>;
0x1B => SHL => bitwise::shl::<H, SPEC> => stack_io<2, 1>;
0x1C => SHR => bitwise::shr::<H, SPEC> => stack_io<2, 1>;
0x1D => SAR => bitwise::sar::<H, SPEC> => stack_io<2, 1>;
0x20 => KECCAK256 => system::keccak256 => stack_io<2, 1>;
0x30 => ADDRESS => system::address => stack_io<0, 1>;
0x31 => BALANCE => host::balance::<H, SPEC> => stack_io<1, 1>;
0x32 => ORIGIN => host_env::origin => stack_io<0, 1>;
0x33 => CALLER => system::caller => stack_io<0, 1>;
0x34 => CALLVALUE => system::callvalue => stack_io<0, 1>;
0x35 => CALLDATALOAD => system::calldataload => stack_io<1, 1>;
0x36 => CALLDATASIZE => system::calldatasize => stack_io<0, 1>;
0x37 => CALLDATACOPY => system::calldatacopy => stack_io<3, 0>;
0x38 => CODESIZE => system::codesize => stack_io<0, 1>, not_eof;
0x39 => CODECOPY => system::codecopy => stack_io<3, 0>, not_eof;
0x3A => GASPRICE => host_env::gasprice => stack_io<0, 1>;
0x3B => EXTCODESIZE => host::extcodesize::<H, SPEC> => stack_io<1, 1>, not_eof;
0x3C => EXTCODECOPY => host::extcodecopy::<H, SPEC> => stack_io<4, 0>, not_eof;
0x3D => RETURNDATASIZE => system::returndatasize::<H, SPEC> => stack_io<0, 1>;
0x3E => RETURNDATACOPY => system::returndatacopy::<H, SPEC> => stack_io<3, 0>;
0x3F => EXTCODEHASH => host::extcodehash::<H, SPEC> => stack_io<1, 1>, not_eof;
0x40 => BLOCKHASH => host::blockhash => stack_io<1, 1>;
0x41 => COINBASE => host_env::coinbase => stack_io<0, 1>;
0x42 => TIMESTAMP => host_env::timestamp => stack_io<0, 1>;
0x43 => NUMBER => host_env::block_number => stack_io<0, 1>;
0x44 => DIFFICULTY => host_env::difficulty::<H, SPEC> => stack_io<0, 1>;
0x45 => GASLIMIT => host_env::gaslimit => stack_io<0, 1>;
0x46 => CHAINID => host_env::chainid::<H, SPEC> => stack_io<0, 1>;
0x47 => SELFBALANCE => host::selfbalance::<H, SPEC> => stack_io<0, 1>;
0x48 => BASEFEE => host_env::basefee::<H, SPEC> => stack_io<0, 1>;
0x49 => BLOBHASH => host_env::blob_hash::<H, SPEC> => stack_io<1, 1>;
0x4A => BLOBBASEFEE => host_env::blob_basefee::<H, SPEC> => stack_io<0, 1>;
0x50 => POP => stack::pop => stack_io<1, 0>;
0x51 => MLOAD => memory::mload => stack_io<1, 1>;
0x52 => MSTORE => memory::mstore => stack_io<2, 0>;
0x53 => MSTORE8 => memory::mstore8 => stack_io<2, 0>;
0x54 => SLOAD => host::sload::<H, SPEC> => stack_io<1, 1>;
0x55 => SSTORE => host::sstore::<H, SPEC> => stack_io<2, 0>;
0x56 => JUMP => control::jump => stack_io<1, 0>, not_eof;
0x57 => JUMPI => control::jumpi => stack_io<2, 0>, not_eof;
0x58 => PC => control::pc => stack_io<0, 1>, not_eof;
0x59 => MSIZE => memory::msize => stack_io<0, 1>;
0x5A => GAS => system::gas => stack_io<0, 1>, not_eof;
0x5B => JUMPDEST => control::jumpdest_or_nop => stack_io<0, 0>;
0x5C => TLOAD => host::tload::<H, SPEC> => stack_io<1, 1>;
0x5D => TSTORE => host::tstore::<H, SPEC> => stack_io<2, 0>;
0x5E => MCOPY => memory::mcopy::<H, SPEC> => stack_io<3, 0>;
0x5F => PUSH0 => stack::push0::<H, SPEC> => stack_io<0, 1>;
0x60 => PUSH1 => stack::push::<1, H> => stack_io<0, 1>, imm_size<1>;
0x61 => PUSH2 => stack::push::<2, H> => stack_io<0, 1>, imm_size<2>;
0x62 => PUSH3 => stack::push::<3, H> => stack_io<0, 1>, imm_size<3>;
0x63 => PUSH4 => stack::push::<4, H> => stack_io<0, 1>, imm_size<4>;
0x64 => PUSH5 => stack::push::<5, H> => stack_io<0, 1>, imm_size<5>;
0x65 => PUSH6 => stack::push::<6, H> => stack_io<0, 1>, imm_size<6>;
0x66 => PUSH7 => stack::push::<7, H> => stack_io<0, 1>, imm_size<7>;
0x67 => PUSH8 => stack::push::<8, H> => stack_io<0, 1>, imm_size<8>;
0x68 => PUSH9 => stack::push::<9, H> => stack_io<0, 1>, imm_size<9>;
0x69 => PUSH10 => stack::push::<10, H> => stack_io<0, 1>, imm_size<10>;
0x6A => PUSH11 => stack::push::<11, H> => stack_io<0, 1>, imm_size<11>;
0x6B => PUSH12 => stack::push::<12, H> => stack_io<0, 1>, imm_size<12>;
0x6C => PUSH13 => stack::push::<13, H> => stack_io<0, 1>, imm_size<13>;
0x6D => PUSH14 => stack::push::<14, H> => stack_io<0, 1>, imm_size<14>;
0x6E => PUSH15 => stack::push::<15, H> => stack_io<0, 1>, imm_size<15>;
0x6F => PUSH16 => stack::push::<16, H> => stack_io<0, 1>, imm_size<16>;
0x70 => PUSH17 => stack::push::<17, H> => stack_io<0, 1>, imm_size<17>;
0x71 => PUSH18 => stack::push::<18, H> => stack_io<0, 1>, imm_size<18>;
0x72 => PUSH19 => stack::push::<19, H> => stack_io<0, 1>, imm_size<19>;
0x73 => PUSH20 => stack::push::<20, H> => stack_io<0, 1>, imm_size<20>;
0x74 => PUSH21 => stack::push::<21, H> => stack_io<0, 1>, imm_size<21>;
0x75 => PUSH22 => stack::push::<22, H> => stack_io<0, 1>, imm_size<22>;
0x76 => PUSH23 => stack::push::<23, H> => stack_io<0, 1>, imm_size<23>;
0x77 => PUSH24 => stack::push::<24, H> => stack_io<0, 1>, imm_size<24>;
0x78 => PUSH25 => stack::push::<25, H> => stack_io<0, 1>, imm_size<25>;
0x79 => PUSH26 => stack::push::<26, H> => stack_io<0, 1>, imm_size<26>;
0x7A => PUSH27 => stack::push::<27, H> => stack_io<0, 1>, imm_size<27>;
0x7B => PUSH28 => stack::push::<28, H> => stack_io<0, 1>, imm_size<28>;
0x7C => PUSH29 => stack::push::<29, H> => stack_io<0, 1>, imm_size<29>;
0x7D => PUSH30 => stack::push::<30, H> => stack_io<0, 1>, imm_size<30>;
0x7E => PUSH31 => stack::push::<31, H> => stack_io<0, 1>, imm_size<31>;
0x7F => PUSH32 => stack::push::<32, H> => stack_io<0, 1>, imm_size<32>;
0x80 => DUP1 => stack::dup::<1, H> => stack_io<1, 2>;
0x81 => DUP2 => stack::dup::<2, H> => stack_io<2, 3>;
0x82 => DUP3 => stack::dup::<3, H> => stack_io<3, 4>;
0x83 => DUP4 => stack::dup::<4, H> => stack_io<4, 5>;
0x84 => DUP5 => stack::dup::<5, H> => stack_io<5, 6>;
0x85 => DUP6 => stack::dup::<6, H> => stack_io<6, 7>;
0x86 => DUP7 => stack::dup::<7, H> => stack_io<7, 8>;
0x87 => DUP8 => stack::dup::<8, H> => stack_io<8, 9>;
0x88 => DUP9 => stack::dup::<9, H> => stack_io<9, 10>;
0x89 => DUP10 => stack::dup::<10, H> => stack_io<10, 11>;
0x8A => DUP11 => stack::dup::<11, H> => stack_io<11, 12>;
0x8B => DUP12 => stack::dup::<12, H> => stack_io<12, 13>;
0x8C => DUP13 => stack::dup::<13, H> => stack_io<13, 14>;
0x8D => DUP14 => stack::dup::<14, H> => stack_io<14, 15>;
0x8E => DUP15 => stack::dup::<15, H> => stack_io<15, 16>;
0x8F => DUP16 => stack::dup::<16, H> => stack_io<16, 17>;
0x90 => SWAP1 => stack::swap::<1, H> => stack_io<2, 2>;
0x91 => SWAP2 => stack::swap::<2, H> => stack_io<3, 3>;
0x92 => SWAP3 => stack::swap::<3, H> => stack_io<4, 4>;
0x93 => SWAP4 => stack::swap::<4, H> => stack_io<5, 5>;
0x94 => SWAP5 => stack::swap::<5, H> => stack_io<6, 6>;
0x95 => SWAP6 => stack::swap::<6, H> => stack_io<7, 7>;
0x96 => SWAP7 => stack::swap::<7, H> => stack_io<8, 8>;
0x97 => SWAP8 => stack::swap::<8, H> => stack_io<9, 9>;
0x98 => SWAP9 => stack::swap::<9, H> => stack_io<10, 10>;
0x99 => SWAP10 => stack::swap::<10, H> => stack_io<11, 11>;
0x9A => SWAP11 => stack::swap::<11, H> => stack_io<12, 12>;
0x9B => SWAP12 => stack::swap::<12, H> => stack_io<13, 13>;
0x9C => SWAP13 => stack::swap::<13, H> => stack_io<14, 14>;
0x9D => SWAP14 => stack::swap::<14, H> => stack_io<15, 15>;
0x9E => SWAP15 => stack::swap::<15, H> => stack_io<16, 16>;
0x9F => SWAP16 => stack::swap::<16, H> => stack_io<17, 17>;
0xA0 => LOG0 => host::log::<0, H> => stack_io<2, 0>;
0xA1 => LOG1 => host::log::<1, H> => stack_io<3, 0>;
0xA2 => LOG2 => host::log::<2, H> => stack_io<4, 0>;
0xA3 => LOG3 => host::log::<3, H> => stack_io<5, 0>;
0xA4 => LOG4 => host::log::<4, H> => stack_io<6, 0>;
0xD0 => DATALOAD => data::data_load => stack_io<1, 1>;
0xD1 => DATALOADN => data::data_loadn => stack_io<0, 1>, imm_size<2>;
0xD2 => DATASIZE => data::data_size => stack_io<0, 1>;
0xD3 => DATACOPY => data::data_copy => stack_io<3, 0>;
0xE0 => RJUMP => control::rjump => stack_io<0, 0>, imm_size<2>, terminating;
0xE1 => RJUMPI => control::rjumpi => stack_io<1, 0>, imm_size<2>;
0xE2 => RJUMPV => control::rjumpv => stack_io<1, 0>, imm_size<1>;
0xE3 => CALLF => control::callf => stack_io<0, 0>, imm_size<2>;
0xE4 => RETF => control::retf => stack_io<0, 0>, terminating;
0xE5 => JUMPF => control::jumpf => stack_io<0, 0>, imm_size<2>, terminating;
0xE6 => DUPN => stack::dupn => stack_io<0, 1>, imm_size<1>;
0xE7 => SWAPN => stack::swapn => stack_io<0, 0>, imm_size<1>;
0xE8 => EXCHANGE => stack::exchange => stack_io<0, 0>, imm_size<1>;
0xEC => EOFCREATE => contract::eofcreate::<H> => stack_io<4, 1>, imm_size<1>;
0xED => TXCREATE => contract::txcreate::<H> => stack_io<5, 1>;
0xEE => RETURNCONTRACT => contract::return_contract::<H> => stack_io<2, 0>, imm_size<1>, terminating;
0xF0 => CREATE => contract::create::<false, H, SPEC> => stack_io<3, 1>, not_eof;
0xF1 => CALL => contract::call::<H, SPEC> => stack_io<7, 1>, not_eof;
0xF2 => CALLCODE => contract::call_code::<H, SPEC> => stack_io<7, 1>, not_eof;
0xF3 => RETURN => control::ret => stack_io<2, 0>, terminating;
0xF4 => DELEGATECALL => contract::delegate_call::<H, SPEC> => stack_io<6, 1>, not_eof;
0xF5 => CREATE2 => contract::create::<true, H, SPEC> => stack_io<4, 1>, not_eof;
0xF7 => RETURNDATALOAD => system::returndataload::<H> => stack_io<1, 1>;
0xF8 => EXTCALL => contract::extcall::<H,SPEC> => stack_io<4, 1>;
0xF9 => EXFCALL => contract::extdcall::<H, SPEC> => stack_io<3, 1>;
0xFA => STATICCALL => contract::static_call::<H, SPEC> => stack_io<6, 1>, not_eof;
0xFB => EXTSCALL => contract::extscall::<H> => stack_io<3, 1>;
0xFD => REVERT => control::revert::<H, SPEC> => stack_io<2, 0>, terminating;
0xFE => INVALID => control::invalid => stack_io<0, 0>, terminating;
0xFF => SELFDESTRUCT => host::selfdestruct::<H, SPEC> => stack_io<1, 0>, not_eof, terminating;
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_opcode() {
let opcode = OpCode::new(0x00).unwrap();
assert!(!opcode.is_jumpdest());
assert!(!opcode.is_jump());
assert!(!opcode.is_push());
assert_eq!(opcode.as_str(), "STOP");
assert_eq!(opcode.get(), 0x00);
}
const REJECTED_IN_EOF: &[u8] = &[
0x38, 0x39, 0x3b, 0x3c, 0x3f, 0x5a, 0xf1, 0xf2, 0xf4, 0xfa, 0xff,
];
#[test]
fn test_eof_disable() {
for opcode in REJECTED_IN_EOF.iter() {
let opcode = OpCode::new(*opcode).unwrap();
assert!(!opcode.info().is_eof, "Opcode {:?} is not EOF", opcode);
}
}
#[test]
fn test_imm_size() {
let mut opcodes = [0u8; 256];
for push in PUSH1..PUSH32 {
opcodes[push as usize] = push - PUSH1 + 1;
}
opcodes[DATALOADN as usize] = 2;
opcodes[RJUMP as usize] = 2;
opcodes[RJUMPI as usize] = 2;
opcodes[RJUMPV as usize] = 2;
opcodes[CALLF as usize] = 2;
opcodes[JUMPF as usize] = 2;
opcodes[DUPN as usize] = 1;
opcodes[SWAPN as usize] = 1;
opcodes[EXCHANGE as usize] = 1;
}
#[test]
fn test_enabled_opcodes() {
let opcodes = [
0x10..=0x1d,
0x20..=0x20,
0x30..=0x3f,
0x40..=0x48,
0x50..=0x5b,
0x54..=0x5f,
0x60..=0x6f,
0x70..=0x7f,
0x80..=0x8f,
0x90..=0x9f,
0xa0..=0xa4,
0xf0..=0xf5,
0xfa..=0xfa,
0xfd..=0xfd,
0xff..=0xff,
];
for i in opcodes {
for opcode in i {
OpCode::new(opcode).expect("Opcode should be valid and enabled");
}
}
}
#[test]
fn test_terminating_opcodes() {
let terminating = [
RETF,
REVERT,
RETURN,
INVALID,
SELFDESTRUCT,
RETURNCONTRACT,
STOP,
RJUMP,
JUMPF,
];
let mut opcodes = [false; 256];
for terminating in terminating.iter() {
opcodes[*terminating as usize] = true;
}
for (i, opcode) in OPCODE_INFO_JUMPTABLE.into_iter().enumerate() {
assert_eq!(
opcode
.map(|opcode| opcode.is_terminating_opcode)
.unwrap_or_default(),
opcodes[i],
"Opcode {:?} terminating chack failed.",
opcode
);
}
}
}