revm_interpreter/
opcode.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
//! EVM opcode definitions and utilities.

pub mod eof_printer;

mod tables;
pub use tables::{
    make_boxed_instruction_table, make_instruction_table, update_boxed_instruction,
    BoxedInstruction, BoxedInstructionTable, DynInstruction, Instruction, InstructionTable,
    InstructionTables,
};

use crate::{instructions::*, primitives::Spec, Host};
use core::{fmt, ptr::NonNull};

/// An error indicating that an opcode is invalid.
#[derive(Debug, PartialEq, Eq)]
#[cfg(feature = "parse")]
pub struct OpCodeError(());

#[cfg(feature = "parse")]
impl fmt::Display for OpCodeError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("invalid opcode")
    }
}

#[cfg(all(feature = "std", feature = "parse"))]
impl std::error::Error for OpCodeError {}

/// An EVM opcode.
///
/// This is always a valid opcode, as declared in the [`opcode`][self] module or the
/// [`OPCODE_INFO_JUMPTABLE`] constant.
#[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})")
        }
    }
}

#[cfg(feature = "parse")]
impl core::str::FromStr for OpCode {
    type Err = OpCodeError;

    #[inline]
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Self::parse(s).ok_or(OpCodeError(()))
    }
}

impl OpCode {
    /// Instantiate a new opcode from a u8.
    #[inline]
    pub const fn new(opcode: u8) -> Option<Self> {
        match OPCODE_INFO_JUMPTABLE[opcode as usize] {
            Some(_) => Some(Self(opcode)),
            None => None,
        }
    }

    /// Parses an opcode from a string. This is the inverse of [`as_str`](Self::as_str).
    #[inline]
    #[cfg(feature = "parse")]
    pub fn parse(s: &str) -> Option<Self> {
        NAME_TO_OPCODE.get(s).copied()
    }

    /// Returns true if the opcode is a jump destination.
    #[inline]
    pub const fn is_jumpdest(&self) -> bool {
        self.0 == JUMPDEST
    }

    /// Takes a u8 and returns true if it is a jump destination.
    #[inline]
    pub const fn is_jumpdest_by_op(opcode: u8) -> bool {
        if let Some(opcode) = Self::new(opcode) {
            opcode.is_jumpdest()
        } else {
            false
        }
    }

    /// Returns true if the opcode is a legacy jump instruction.
    #[inline]
    pub const fn is_jump(self) -> bool {
        self.0 == JUMP
    }

    /// Takes a u8 and returns true if it is a jump instruction.
    #[inline]
    pub const fn is_jump_by_op(opcode: u8) -> bool {
        if let Some(opcode) = Self::new(opcode) {
            opcode.is_jump()
        } else {
            false
        }
    }

    /// Returns true if the opcode is a `PUSH` instruction.
    #[inline]
    pub const fn is_push(self) -> bool {
        self.0 >= PUSH1 && self.0 <= PUSH32
    }

    /// Takes a u8 and returns true if it is a push instruction.
    #[inline]
    pub fn is_push_by_op(opcode: u8) -> bool {
        if let Some(opcode) = Self::new(opcode) {
            opcode.is_push()
        } else {
            false
        }
    }

    /// Instantiate a new opcode from a u8 without checking if it is valid.
    ///
    /// # Safety
    ///
    /// All code using `Opcode` values assume that they are valid opcodes, so providing an invalid
    /// opcode may cause undefined behavior.
    #[inline]
    pub unsafe fn new_unchecked(opcode: u8) -> Self {
        Self(opcode)
    }

    /// Returns the opcode as a string. This is the inverse of [`parse`](Self::parse).
    #[doc(alias = "name")]
    #[inline]
    pub const fn as_str(self) -> &'static str {
        self.info().name()
    }

    /// Returns the opcode name.
    #[inline]
    pub const fn name_by_op(opcode: u8) -> &'static str {
        if let Some(opcode) = Self::new(opcode) {
            opcode.as_str()
        } else {
            "Unknown"
        }
    }

    /// Returns the number of input stack elements.
    #[inline]
    pub const fn inputs(&self) -> u8 {
        self.info().inputs()
    }

    /// Returns the number of output stack elements.
    #[inline]
    pub const fn outputs(&self) -> u8 {
        self.info().outputs()
    }

    /// Calculates the difference between the number of input and output stack elements.
    #[inline]
    pub const fn io_diff(&self) -> i16 {
        self.info().io_diff()
    }

    /// Returns the opcode information for the given opcode.
    #[inline]
    pub const fn info_by_op(opcode: u8) -> Option<OpCodeInfo> {
        if let Some(opcode) = Self::new(opcode) {
            Some(opcode.info())
        } else {
            None
        }
    }

    /// Returns the opcode information.
    #[inline]
    pub const fn info(&self) -> OpCodeInfo {
        if let Some(t) = OPCODE_INFO_JUMPTABLE[self.0 as usize] {
            t
        } else {
            panic!("opcode not found")
        }
    }

    /// Returns the number of both input and output stack elements.
    ///
    /// Can be slightly faster that calling `inputs` and `outputs` separately.
    pub const fn input_output(&self) -> (u8, u8) {
        let info = self.info();
        (info.inputs, info.outputs)
    }

    /// Returns the opcode as a u8.
    #[inline]
    pub const fn get(self) -> u8 {
        self.0
    }

    /// Returns true if the opcode modifies memory.
    /// <https://bluealloy.github.io/revm/crates/interpreter/memory.html#opcodes>
    /// <https://github.com/crytic/evm-opcodes>
    #[inline]
    pub const fn modifies_memory(&self) -> bool {
        matches!(
            *self,
            OpCode::EXTCODECOPY
                | OpCode::MLOAD
                | OpCode::MSTORE
                | OpCode::MSTORE8
                | OpCode::MCOPY
                | OpCode::CODECOPY
                | OpCode::CALLDATACOPY
                | OpCode::RETURNDATACOPY
                | OpCode::CALL
                | OpCode::CALLCODE
                | OpCode::DELEGATECALL
                | OpCode::STATICCALL
                | OpCode::DATACOPY
                | OpCode::EOFCREATE
                | OpCode::RETURNCONTRACT
                | OpCode::EXTCALL
                | OpCode::EXTDELEGATECALL
                | OpCode::EXTSTATICCALL
        )
    }
}

/// Information about opcode, such as name, and stack inputs and outputs.
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct OpCodeInfo {
    /// Invariant: `(name_ptr, name_len)` is a `&'static str`. It is a shorted variant of `str` as
    /// the name length is always less than 256 characters.
    name_ptr: NonNull<u8>,
    name_len: u8,
    /// Stack inputs.
    inputs: u8,
    /// Stack outputs.
    outputs: u8,
    /// Number of intermediate bytes.
    ///
    /// RJUMPV is a special case where the bytes len depends on bytecode value,
    /// for RJUMV size will be set to one byte as it is the minimum immediate size.
    immediate_size: u8,
    /// Used by EOF verification. All not EOF opcodes are marked false.
    not_eof: bool,
    /// If the opcode stops execution. aka STOP, RETURN, ..
    terminating: bool,
}

impl fmt::Debug for OpCodeInfo {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("OpCodeInfo")
            .field("name", &self.name())
            .field("inputs", &self.inputs())
            .field("outputs", &self.outputs())
            .field("not_eof", &self.is_disabled_in_eof())
            .field("terminating", &self.is_terminating())
            .field("immediate_size", &self.immediate_size())
            .finish()
    }
}

impl OpCodeInfo {
    /// Creates a new opcode info with the given name and default values.
    pub const fn new(name: &'static str) -> Self {
        assert!(name.len() < 256, "opcode name is too long");
        Self {
            name_ptr: unsafe { NonNull::new_unchecked(name.as_ptr().cast_mut()) },
            name_len: name.len() as u8,
            inputs: 0,
            outputs: 0,
            not_eof: false,
            terminating: false,
            immediate_size: 0,
        }
    }

    /// Returns the opcode name.
    #[inline]
    pub const fn name(&self) -> &'static str {
        // SAFETY: `self.name_*` can only be initialized with a valid `&'static str`.
        unsafe {
            // TODO: Use `str::from_raw_parts` when it's stable.
            let slice = core::slice::from_raw_parts(self.name_ptr.as_ptr(), self.name_len as usize);
            core::str::from_utf8_unchecked(slice)
        }
    }

    /// Calculates the difference between the number of input and output stack elements.
    #[inline]
    pub const fn io_diff(&self) -> i16 {
        self.outputs as i16 - self.inputs as i16
    }

    /// Returns the number of input stack elements.
    #[inline]
    pub const fn inputs(&self) -> u8 {
        self.inputs
    }

    /// Returns the number of output stack elements.
    #[inline]
    pub const fn outputs(&self) -> u8 {
        self.outputs
    }

    /// Returns whether this opcode is disabled in EOF bytecode.
    #[inline]
    pub const fn is_disabled_in_eof(&self) -> bool {
        self.not_eof
    }

    /// Returns whether this opcode terminates execution, e.g. `STOP`, `RETURN`, etc.
    #[inline]
    pub const fn is_terminating(&self) -> bool {
        self.terminating
    }

    /// Returns the size of the immediate value in bytes.
    #[inline]
    pub const fn immediate_size(&self) -> u8 {
        self.immediate_size
    }
}

/// Sets the EOF flag to false.
#[inline]
pub const fn not_eof(mut op: OpCodeInfo) -> OpCodeInfo {
    op.not_eof = true;
    op
}

/// Sets the immediate bytes number.
///
/// RJUMPV is special case where the bytes len is depending on bytecode value,
/// for RJUMPV size will be set to one byte while minimum is two.
#[inline]
pub const fn immediate_size(mut op: OpCodeInfo, n: u8) -> OpCodeInfo {
    op.immediate_size = n;
    op
}

/// Sets the terminating flag to true.
#[inline]
pub const fn terminating(mut op: OpCodeInfo) -> OpCodeInfo {
    op.terminating = true;
    op
}

/// Sets the number of stack inputs and outputs.
#[inline]
pub const fn stack_io(mut op: OpCodeInfo, inputs: u8, outputs: u8) -> OpCodeInfo {
    op.inputs = inputs;
    op.outputs = outputs;
    op
}

/// Alias for the [`JUMPDEST`] opcode.
pub const NOP: u8 = JUMPDEST;

/// Callback for creating a [`phf`] map with `stringify_with_cb`.
#[cfg(feature = "parse")]
macro_rules! phf_map_cb {
    ($(#[doc = $s:literal] $id:ident)*) => {
        phf::phf_map! {
            $($s => OpCode::$id),*
        }
    };
}

/// Stringifies identifiers with `paste` so that they are available as literals.
/// This doesn't work with `stringify!` because it cannot be expanded inside of another macro.
#[cfg(feature = "parse")]
macro_rules! stringify_with_cb {
    ($callback:ident; $($id:ident)*) => { paste::paste! {
        $callback! { $(#[doc = "" $id ""] $id)* }
    }};
}

macro_rules! opcodes {
    ($($val:literal => $name:ident => $f:expr => $($modifier:ident $(( $($modifier_arg:expr),* ))?),*);* $(;)?) => {
        // Constants for each opcode. This also takes care of duplicate names.
        $(
            #[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);
        )*}

        /// Maps each opcode to its info.
        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 info = OpCodeInfo::new(stringify!($name));
                $(
                let info = $modifier(info, $($($modifier_arg),*)?);
                )*
                map[$val] = Some(info);
            )*
            let _ = prev;
            map
        };

        /// Maps each name to its opcode.
        #[cfg(feature = "parse")]
        static NAME_TO_OPCODE: phf::Map<&'static str, OpCode> = stringify_with_cb! { phf_map_cb; $($name)* };

        /// Returns the instruction function for the given opcode and spec.
        pub const fn instruction<H: Host + ?Sized, SPEC: Spec>(opcode: u8) -> Instruction<H> {
            match opcode {
                $($name => $f,)*
                _ => control::unknown,
            }
        }
    };
}

// When adding new opcodes:
// 1. add the opcode to the list below; make sure it's sorted by opcode value
// 2. implement the opcode in the corresponding module;
//    the function signature must be the exact same as the others
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);
    // 0x0C
    // 0x0D
    // 0x0E
    // 0x0F
    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);
    // 0x1E
    // 0x1F
    0x20 => KECCAK256 => system::keccak256    => stack_io(2, 1);
    // 0x21
    // 0x22
    // 0x23
    // 0x24
    // 0x25
    // 0x26
    // 0x27
    // 0x28
    // 0x29
    // 0x2A
    // 0x2B
    // 0x2C
    // 0x2D
    // 0x2E
    // 0x2F
    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::<H, SPEC>          => 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);
    // 0x4B
    // 0x4C
    // 0x4D
    // 0x4E
    // 0x4F
    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), immediate_size(1);
    0x61 => PUSH2  => stack::push::<2, H>     => stack_io(0, 1), immediate_size(2);
    0x62 => PUSH3  => stack::push::<3, H>     => stack_io(0, 1), immediate_size(3);
    0x63 => PUSH4  => stack::push::<4, H>     => stack_io(0, 1), immediate_size(4);
    0x64 => PUSH5  => stack::push::<5, H>     => stack_io(0, 1), immediate_size(5);
    0x65 => PUSH6  => stack::push::<6, H>     => stack_io(0, 1), immediate_size(6);
    0x66 => PUSH7  => stack::push::<7, H>     => stack_io(0, 1), immediate_size(7);
    0x67 => PUSH8  => stack::push::<8, H>     => stack_io(0, 1), immediate_size(8);
    0x68 => PUSH9  => stack::push::<9, H>     => stack_io(0, 1), immediate_size(9);
    0x69 => PUSH10 => stack::push::<10, H>    => stack_io(0, 1), immediate_size(10);
    0x6A => PUSH11 => stack::push::<11, H>    => stack_io(0, 1), immediate_size(11);
    0x6B => PUSH12 => stack::push::<12, H>    => stack_io(0, 1), immediate_size(12);
    0x6C => PUSH13 => stack::push::<13, H>    => stack_io(0, 1), immediate_size(13);
    0x6D => PUSH14 => stack::push::<14, H>    => stack_io(0, 1), immediate_size(14);
    0x6E => PUSH15 => stack::push::<15, H>    => stack_io(0, 1), immediate_size(15);
    0x6F => PUSH16 => stack::push::<16, H>    => stack_io(0, 1), immediate_size(16);
    0x70 => PUSH17 => stack::push::<17, H>    => stack_io(0, 1), immediate_size(17);
    0x71 => PUSH18 => stack::push::<18, H>    => stack_io(0, 1), immediate_size(18);
    0x72 => PUSH19 => stack::push::<19, H>    => stack_io(0, 1), immediate_size(19);
    0x73 => PUSH20 => stack::push::<20, H>    => stack_io(0, 1), immediate_size(20);
    0x74 => PUSH21 => stack::push::<21, H>    => stack_io(0, 1), immediate_size(21);
    0x75 => PUSH22 => stack::push::<22, H>    => stack_io(0, 1), immediate_size(22);
    0x76 => PUSH23 => stack::push::<23, H>    => stack_io(0, 1), immediate_size(23);
    0x77 => PUSH24 => stack::push::<24, H>    => stack_io(0, 1), immediate_size(24);
    0x78 => PUSH25 => stack::push::<25, H>    => stack_io(0, 1), immediate_size(25);
    0x79 => PUSH26 => stack::push::<26, H>    => stack_io(0, 1), immediate_size(26);
    0x7A => PUSH27 => stack::push::<27, H>    => stack_io(0, 1), immediate_size(27);
    0x7B => PUSH28 => stack::push::<28, H>    => stack_io(0, 1), immediate_size(28);
    0x7C => PUSH29 => stack::push::<29, H>    => stack_io(0, 1), immediate_size(29);
    0x7D => PUSH30 => stack::push::<30, H>    => stack_io(0, 1), immediate_size(30);
    0x7E => PUSH31 => stack::push::<31, H>    => stack_io(0, 1), immediate_size(31);
    0x7F => PUSH32 => stack::push::<32, H>    => stack_io(0, 1), immediate_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);
    // 0xA5
    // 0xA6
    // 0xA7
    // 0xA8
    // 0xA9
    // 0xAA
    // 0xAB
    // 0xAC
    // 0xAD
    // 0xAE
    // 0xAF
    // 0xB0
    // 0xB1
    // 0xB2
    // 0xB3
    // 0xB4
    // 0xB5
    // 0xB6
    // 0xB7
    // 0xB8
    // 0xB9
    // 0xBA
    // 0xBB
    // 0xBC
    // 0xBD
    // 0xBE
    // 0xBF
    // 0xC0
    // 0xC1
    // 0xC2
    // 0xC3
    // 0xC4
    // 0xC5
    // 0xC6
    // 0xC7
    // 0xC8
    // 0xC9
    // 0xCA
    // 0xCB
    // 0xCC
    // 0xCD
    // 0xCE
    // 0xCF
    0xD0 => DATALOAD  => data::data_load   => stack_io(1, 1);
    0xD1 => DATALOADN => data::data_loadn  => stack_io(0, 1), immediate_size(2);
    0xD2 => DATASIZE  => data::data_size   => stack_io(0, 1);
    0xD3 => DATACOPY  => data::data_copy   => stack_io(3, 0);
    // 0xD4
    // 0xD5
    // 0xD6
    // 0xD7
    // 0xD8
    // 0xD9
    // 0xDA
    // 0xDB
    // 0xDC
    // 0xDD
    // 0xDE
    // 0xDF
    0xE0 => RJUMP    => control::rjump  => stack_io(0, 0), immediate_size(2), terminating;
    0xE1 => RJUMPI   => control::rjumpi => stack_io(1, 0), immediate_size(2);
    0xE2 => RJUMPV   => control::rjumpv => stack_io(1, 0), immediate_size(1);
    0xE3 => CALLF    => control::callf  => stack_io(0, 0), immediate_size(2);
    0xE4 => RETF     => control::retf   => stack_io(0, 0), terminating;
    0xE5 => JUMPF    => control::jumpf  => stack_io(0, 0), immediate_size(2), terminating;
    0xE6 => DUPN     => stack::dupn     => stack_io(0, 1), immediate_size(1);
    0xE7 => SWAPN    => stack::swapn    => stack_io(0, 0), immediate_size(1);
    0xE8 => EXCHANGE => stack::exchange => stack_io(0, 0), immediate_size(1);
    // 0xE9
    // 0xEA
    // 0xEB
    0xEC => EOFCREATE       => contract::eofcreate            => stack_io(4, 1), immediate_size(1);
    // 0xED
    0xEE => RETURNCONTRACT  => contract::return_contract      => stack_io(2, 0), immediate_size(1), terminating;
    // 0xEF
    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;
    // 0xF6
    0xF7 => RETURNDATALOAD  => system::returndataload                => stack_io(1, 1);
    0xF8 => EXTCALL         => contract::extcall::<H, SPEC>          => stack_io(4, 1);
    0xF9 => EXTDELEGATECALL => contract::extdelegatecall::<H, SPEC>  => stack_io(3, 1);
    0xFA => STATICCALL      => contract::static_call::<H, SPEC>      => stack_io(6, 1), not_eof;
    0xFB => EXTSTATICCALL   => contract::extstaticcall               => stack_io(3, 1);
    // 0xFC
    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);
    }

    #[test]
    fn test_eof_disable() {
        const REJECTED_IN_EOF: &[u8] = &[
            0x38, 0x39, 0x3b, 0x3c, 0x3f, 0x5a, 0xf1, 0xf2, 0xf4, 0xfa, 0xff,
        ];

        for opcode in REJECTED_IN_EOF {
            let opcode = OpCode::new(*opcode).unwrap();
            assert!(
                opcode.info().is_disabled_in_eof(),
                "not disabled in EOF: {opcode:#?}",
            );
        }
    }

    #[test]
    fn test_immediate_size() {
        let mut expected = [0u8; 256];
        // PUSH opcodes
        for push in PUSH1..=PUSH32 {
            expected[push as usize] = push - PUSH1 + 1;
        }
        expected[DATALOADN as usize] = 2;
        expected[RJUMP as usize] = 2;
        expected[RJUMPI as usize] = 2;
        expected[RJUMPV as usize] = 1;
        expected[CALLF as usize] = 2;
        expected[JUMPF as usize] = 2;
        expected[DUPN as usize] = 1;
        expected[SWAPN as usize] = 1;
        expected[EXCHANGE as usize] = 1;
        expected[EOFCREATE as usize] = 1;
        expected[RETURNCONTRACT as usize] = 1;

        for (i, opcode) in OPCODE_INFO_JUMPTABLE.iter().enumerate() {
            if let Some(opcode) = opcode {
                assert_eq!(
                    opcode.immediate_size(),
                    expected[i],
                    "immediate_size check failed for {opcode:#?}",
                );
            }
        }
    }

    #[test]
    fn test_enabled_opcodes() {
        // List obtained from https://eips.ethereum.org/EIPS/eip-3670
        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,
            //0xfe,
            0xff..=0xff,
        ];
        for i in opcodes {
            for opcode in i {
                OpCode::new(opcode).expect("Opcode should be valid and enabled");
            }
        }
    }

    #[test]
    fn count_opcodes() {
        let mut opcode_num = 0;
        let mut eof_opcode_num = 0;
        for opcode in OPCODE_INFO_JUMPTABLE.into_iter().flatten() {
            opcode_num += 1;
            if !opcode.is_disabled_in_eof() {
                eof_opcode_num += 1;
            }
        }
        assert_eq!(opcode_num, 168);
        assert_eq!(eof_opcode_num, 152);
    }

    #[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.terminating).unwrap_or_default(),
                opcodes[i],
                "Opcode {:?} terminating chack failed.",
                opcode
            );
        }
    }

    #[test]
    #[cfg(feature = "parse")]
    fn test_parsing() {
        for i in 0..=u8::MAX {
            if let Some(op) = OpCode::new(i) {
                assert_eq!(OpCode::parse(op.as_str()), Some(op));
            }
        }
    }
}