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
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
//! Collection of structs and functions used to:
//! - Define the internals of a [`MemoryOp`], [`StackOp`] and [`StorageOp`].
//! - Define the actual operation types and a wrapper over them (the [`Operation`] enum).
//! - Define structures that interact with operations such as [`OperationContainer`].
pub(crate) mod container;

pub use container::OperationContainer;
pub use eth_types::evm_types::{MemoryAddress, StackAddress};
use gadgets::impl_expr;
use halo2_proofs::plonk::Expression;
use strum_macros::EnumIter;

use core::{cmp::Ordering, fmt, fmt::Debug};
use eth_types::{Address, Word};
use std::mem::swap;

/// Marker that defines whether an Operation performs a `READ` or a `WRITE`.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum RW {
    /// Marks op as READ.
    READ,
    /// Marks op as WRITE.
    WRITE,
}

impl RW {
    /// Returns true if the RW corresponds internally to a [`READ`](RW::READ).
    pub const fn is_read(&self) -> bool {
        matches!(self, RW::READ)
    }

    /// Returns true if the RW corresponds internally to a [`WRITE`](RW::WRITE).
    pub const fn is_write(&self) -> bool {
        matches!(self, RW::WRITE)
    }
}

/// Wrapper type over `usize` which represents the global counter. The purpose
/// of the `RWCounter` is to enforce that each Opcode/Instruction and Operation
/// is unique and just executed once.
#[derive(Clone, Copy, Eq, PartialEq, PartialOrd, Ord)]
pub struct RWCounter(pub usize);

impl fmt::Debug for RWCounter {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_fmt(format_args!("{}", self.0))
    }
}

impl From<RWCounter> for usize {
    fn from(addr: RWCounter) -> usize {
        addr.0
    }
}

impl From<RWCounter> for u64 {
    fn from(addr: RWCounter) -> u64 {
        addr.0.try_into().expect("rwc should not overflow")
    }
}

impl From<usize> for RWCounter {
    fn from(rwc: usize) -> Self {
        RWCounter(rwc)
    }
}

impl Default for RWCounter {
    fn default() -> Self {
        Self::new()
    }
}

impl RWCounter {
    /// Create a new RWCounter with the initial default value
    pub fn new() -> Self {
        Self(1)
    }

    /// Increase Self by one
    pub fn inc(&mut self) {
        self.0 += 1;
    }

    /// Increase Self by one and return the value before the increase.
    pub fn inc_pre(&mut self) -> Self {
        let pre = *self;
        self.inc();
        pre
    }
}

/// Enum used to differentiate between EVM Stack, Memory and Storage operations.
/// This is also used as the RwTableTag for the RwTable.
#[derive(Debug, Clone, PartialEq, Eq, Copy, EnumIter, Hash)]
pub enum Target {
    /// Start operation in the first row
    Start = 1,
    /// Means the target of the operation is the Memory.
    Memory,
    /// Means the target of the operation is the Stack.
    Stack,
    /// Means the target of the operation is the Storage.
    Storage,
    /// Means the target of the operation is the TransientStorage.
    TransientStorage,
    /// Means the target of the operation is the TxAccessListAccount.
    TxAccessListAccount,
    /// Means the target of the operation is the TxAccessListAccountStorage.
    TxAccessListAccountStorage,
    /// Means the target of the operation is the TxRefund.
    TxRefund,
    /// Means the target of the operation is the Account.
    Account,
    /// Means the target of the operation is the CallContext.
    CallContext,
    /// Means the target of the operation is the TxReceipt.
    TxReceipt,
    /// Means the target of the operation is the TxLog.
    TxLog,

    /// Chunking: StepState
    StepState,
    /// Chunking: padding operation.
    Padding,
}

impl_expr!(Target);

impl From<Target> for usize {
    fn from(value: Target) -> usize {
        value as usize
    }
}

impl Target {
    /// Returns true if the RwTable operation is reversible
    pub fn is_reversible(self) -> bool {
        matches!(
            self,
            Target::TxAccessListAccount
                | Target::TxAccessListAccountStorage
                | Target::TxRefund
                | Target::Account
                | Target::Storage
                | Target::TransientStorage
        )
    }
}

/// Trait used for Operation Kinds.

pub trait Op: Clone + Eq + Ord {
    /// Turn the Generic Op into an OpEnum so that we can match it into a
    /// particular Operation Kind.
    fn into_enum(self) -> OpEnum;
    /// Return a copy of the operation reversed.
    fn reverse(&self) -> Self;
}

/// Represents a [`READ`](RW::READ)/[`WRITE`](RW::WRITE) into the memory implied
/// by an specific [`OpcodeId`](eth_types::evm_types::opcode_ids::OpcodeId) of
/// the [`ExecStep`](crate::circuit_input_builder::ExecStep).
#[derive(Clone, PartialEq, Eq)]
pub struct MemoryOp {
    /// Call ID
    pub call_id: usize,
    /// Memory Address
    pub address: MemoryAddress,
    /// Value
    pub value: u8,
}

impl fmt::Debug for MemoryOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("MemoryOp { ")?;
        f.write_fmt(format_args!(
            "call_id: {:?}, addr: {:?}, value: 0x{:02x}",
            self.call_id, self.address, self.value
        ))?;
        f.write_str(" }")
    }
}

impl MemoryOp {
    /// Create a new instance of a `MemoryOp` from it's components.
    pub fn new(call_id: usize, address: MemoryAddress, value: u8) -> MemoryOp {
        MemoryOp {
            call_id,
            address,
            value,
        }
    }

    /// Returns the [`Target`] (operation type) of this operation.
    pub const fn target(&self) -> Target {
        Target::Memory
    }

    /// Returns the call id associated to this Operation.
    pub const fn call_id(&self) -> usize {
        self.call_id
    }

    /// Returns the [`MemoryAddress`] associated to this Operation.
    pub const fn address(&self) -> &MemoryAddress {
        &self.address
    }

    /// Returns the bytes read or written by this operation.
    pub fn value(&self) -> u8 {
        self.value
    }
}

impl Op for MemoryOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::Memory(self)
    }

    fn reverse(&self) -> Self {
        unreachable!("MemoryOp can't be reverted")
    }
}

impl PartialOrd for MemoryOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for MemoryOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.call_id, &self.address).cmp(&(&other.call_id, &other.address))
    }
}

/// Represents a [`READ`](RW::READ)/[`WRITE`](RW::WRITE) into the stack implied
/// by an specific [`OpcodeId`](eth_types::evm_types::opcode_ids::OpcodeId) of
/// the [`ExecStep`](crate::circuit_input_builder::ExecStep).
#[derive(Clone, PartialEq, Eq)]
pub struct StackOp {
    /// Call ID
    pub call_id: usize,
    /// Stack Address
    pub address: StackAddress,
    /// Value
    pub value: Word,
}

impl fmt::Debug for StackOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("StackOp { ")?;
        f.write_fmt(format_args!(
            "call_id: {:?}, addr: {:?}, val: 0x{:x}",
            self.call_id, self.address, self.value
        ))?;
        f.write_str(" }")
    }
}

impl StackOp {
    /// Create a new instance of a `StackOp` from it's components.
    pub const fn new(call_id: usize, address: StackAddress, value: Word) -> StackOp {
        StackOp {
            call_id,
            address,
            value,
        }
    }

    /// Returns the [`Target`] (operation type) of this operation.
    pub const fn target(&self) -> Target {
        Target::Stack
    }

    /// Returns the call id associated to this Operation.
    pub const fn call_id(&self) -> usize {
        self.call_id
    }

    /// Returns the [`StackAddress`] associated to this Operation.
    pub const fn address(&self) -> &StackAddress {
        &self.address
    }

    /// Returns the [`Word`] read or written by this operation.
    pub const fn value(&self) -> &Word {
        &self.value
    }
}

impl Op for StackOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::Stack(self)
    }

    fn reverse(&self) -> Self {
        unreachable!("StackOp can't be reverted")
    }
}

impl PartialOrd for StackOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for StackOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.call_id, &self.address).cmp(&(&other.call_id, &other.address))
    }
}

/// Represents a [`READ`](RW::READ)/[`WRITE`](RW::WRITE) into the storage
/// implied by a specific
/// [`OpcodeId`](eth_types::evm_types::opcode_ids::OpcodeId) of
/// the [`ExecStep`](crate::circuit_input_builder::ExecStep).
#[derive(Clone, PartialEq, Eq)]
pub struct StorageOp {
    /// Account Address
    pub address: Address,
    /// Storage Key
    pub key: Word,
    /// Storage Value after the operation
    pub value: Word,
    /// Storage Value before the operation
    pub value_prev: Word,
    /// Transaction ID: Transaction index in the block starting at 1.
    pub tx_id: usize,
    /// Storage Value before the transaction
    pub committed_value: Word,
}

impl fmt::Debug for StorageOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("StorageOp { ")?;
        f.write_fmt(format_args!(
            "tx_id: {:?}, addr: {:?}, key: {:?}, committed_val: 0x{:x}, val_prev: 0x{:x}, val: 0x{:x}",
            self.tx_id, self.address, self.key, self.committed_value, self.value_prev, self.value
        ))?;
        f.write_str(" }")
    }
}

impl StorageOp {
    /// Create a new instance of a `StorageOp` from it's components.
    pub const fn new(
        address: Address,
        key: Word,
        value: Word,
        value_prev: Word,
        tx_id: usize,
        committed_value: Word,
    ) -> StorageOp {
        StorageOp {
            address,
            key,
            value,
            value_prev,
            tx_id,
            committed_value,
        }
    }

    /// Returns the [`Target`] (operation type) of this operation.
    pub const fn target(&self) -> Target {
        Target::Storage
    }

    /// Returns the [`Address`] corresponding to this storage operation.
    pub const fn address(&self) -> &Address {
        &self.address
    }

    /// Returns the [`Word`] used as key for this operation.
    pub const fn key(&self) -> &Word {
        &self.key
    }

    /// Returns the [`Word`] read or written by this operation.
    pub const fn value(&self) -> &Word {
        &self.value
    }

    /// Returns the [`Word`] at key found previous to this operation.
    pub const fn value_prev(&self) -> &Word {
        &self.value_prev
    }
}

impl Op for StorageOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::Storage(self)
    }

    fn reverse(&self) -> Self {
        let mut rev = self.clone();
        swap(&mut rev.value, &mut rev.value_prev);
        rev
    }
}

impl PartialOrd for StorageOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for StorageOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.address, &self.key).cmp(&(&other.address, &other.key))
    }
}

/// Represents a [`READ`](RW::READ)/[`WRITE`](RW::WRITE) into the transient storage
/// implied by a specific
/// [`OpcodeId`](eth_types::evm_types::opcode_ids::OpcodeId) of
/// the [`ExecStep`](crate::circuit_input_builder::ExecStep).
#[derive(Clone, PartialEq, Eq)]
pub struct TransientStorageOp {
    /// Account Address
    pub address: Address,
    /// Transient Storage Key
    pub key: Word,
    /// Transient Storage Value after the operation
    pub value: Word,
    /// Transient Storage Value before the operation
    pub value_prev: Word,
    /// Transaction ID: Transaction index in the block starting at 1.
    pub tx_id: usize,
}

impl fmt::Debug for TransientStorageOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("TransientStorageOp { ")?;
        f.write_fmt(format_args!(
            "tx_id: {:?}, addr: {:?}, key: {:?}, val_prev: 0x{:x}, val: 0x{:x}",
            self.tx_id, self.address, self.key, self.value_prev, self.value
        ))?;
        f.write_str(" }")
    }
}

impl TransientStorageOp {
    /// Create a new instance of a `TransientStorageOp` from its components.
    pub const fn new(
        address: Address,
        key: Word,
        value: Word,
        value_prev: Word,
        tx_id: usize,
    ) -> TransientStorageOp {
        TransientStorageOp {
            address,
            key,
            value,
            value_prev,
            tx_id,
        }
    }

    /// Returns the [`Target`] (operation type) of this operation.
    pub const fn target(&self) -> Target {
        Target::TransientStorage
    }

    /// Returns the [`Address`] corresponding to this transient storage operation.
    pub const fn address(&self) -> &Address {
        &self.address
    }

    /// Returns the [`Word`] used as key for this operation.
    pub const fn key(&self) -> &Word {
        &self.key
    }

    /// Returns the [`Word`] read or written by this operation.
    pub const fn value(&self) -> &Word {
        &self.value
    }

    /// Returns the [`Word`] at key found previous to this operation.
    pub const fn value_prev(&self) -> &Word {
        &self.value_prev
    }
}

impl Op for TransientStorageOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::TransientStorage(self)
    }

    fn reverse(&self) -> Self {
        let mut rev = self.clone();
        swap(&mut rev.value, &mut rev.value_prev);
        rev
    }
}

impl PartialOrd for TransientStorageOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for TransientStorageOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.address, &self.key).cmp(&(&other.address, &other.key))
    }
}

/// Represents a change in the Account AccessList implied by a `BeginTx`,
/// `EXTCODECOPY`, `EXTCODESIZE`, `EXTCODEHASH` `BALANCE`, `SELFDESTRUCT`,
/// `*CALL`* or `CREATE*` step.
#[derive(Clone, PartialEq, Eq)]
pub struct TxAccessListAccountOp {
    /// Transaction ID: Transaction index in the block starting at 1.
    pub tx_id: usize,
    /// Account Address
    pub address: Address,
    /// Represents whether we can classify the access to the value as `WARM`.
    pub is_warm: bool,
    /// Represents whether we can classify the access to the previous value as
    /// `WARM`.
    pub is_warm_prev: bool,
}

impl fmt::Debug for TxAccessListAccountOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("TxAccessListAccountOp { ")?;
        f.write_fmt(format_args!(
            "tx_id: {:?}, addr: {:?}, is_warm_prev: {:?}, is_warm: {:?}",
            self.tx_id, self.address, self.is_warm_prev, self.is_warm
        ))?;
        f.write_str(" }")
    }
}

impl PartialOrd for TxAccessListAccountOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for TxAccessListAccountOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.tx_id, &self.address).cmp(&(&other.tx_id, &other.address))
    }
}

impl Op for TxAccessListAccountOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::TxAccessListAccount(self)
    }

    fn reverse(&self) -> Self {
        let mut rev = self.clone();
        swap(&mut rev.is_warm, &mut rev.is_warm_prev);
        rev
    }
}

/// Represents a change in the Storage AccessList implied by an `SSTORE` or
/// `SLOAD` step of the [`ExecStep`](crate::circuit_input_builder::ExecStep).
#[derive(Clone, PartialEq, Eq)]
pub struct TxAccessListAccountStorageOp {
    /// Transaction ID: Transaction index in the block starting at 1.
    pub tx_id: usize,
    /// Account Address
    pub address: Address,
    /// Storage Key
    pub key: Word,
    /// Whether the access was classified as `WARM` or not.
    pub is_warm: bool,
    /// Whether the prev_value access was classified as `WARM` or not.
    pub is_warm_prev: bool,
}

impl fmt::Debug for TxAccessListAccountStorageOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("TxAccessListAccountStorageOp { ")?;
        f.write_fmt(format_args!(
            "tx_id: {:?}, addr: {:?}, key: 0x{:x}, is_warm_prev: {:?}, is_warm: {:?}",
            self.tx_id, self.address, self.key, self.is_warm_prev, self.is_warm
        ))?;
        f.write_str(" }")
    }
}

impl PartialOrd for TxAccessListAccountStorageOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for TxAccessListAccountStorageOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.tx_id, &self.address, &self.key).cmp(&(&other.tx_id, &other.address, &other.key))
    }
}

impl Op for TxAccessListAccountStorageOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::TxAccessListAccountStorage(self)
    }

    fn reverse(&self) -> Self {
        let mut rev = self.clone();
        swap(&mut rev.is_warm, &mut rev.is_warm_prev);
        rev
    }
}

/// Represents a change in the Transaction Refund AccessList implied by an
/// `SSTORE`, `STOP`, `RETURN` or `REVERT` step of the
/// [`ExecStep`](crate::circuit_input_builder::ExecStep).
#[derive(Clone, PartialEq, Eq)]
pub struct TxRefundOp {
    /// Transaction ID: Transaction index in the block starting at 1.
    pub tx_id: usize,
    /// Refund Value in units of gas after the operation.
    pub value: u64,
    /// Refund Value in units of gas after the operation.
    pub value_prev: u64,
}

impl fmt::Debug for TxRefundOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("TxRefundOp { ")?;
        f.write_fmt(format_args!(
            "tx_id: {:?}, val_prev: 0x{:x}, val: 0x{:x}",
            self.tx_id, self.value_prev, self.value
        ))?;
        f.write_str(" }")
    }
}

impl PartialOrd for TxRefundOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for TxRefundOp {
    fn cmp(&self, other: &Self) -> Ordering {
        self.tx_id.cmp(&other.tx_id)
    }
}

impl Op for TxRefundOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::TxRefund(self)
    }

    fn reverse(&self) -> Self {
        let mut rev = self.clone();
        swap(&mut rev.value, &mut rev.value_prev);
        rev
    }
}

/// Represents a field parameter of the Account that can be accessed via EVM
/// execution.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum AccountField {
    /// Account Nonce
    Nonce,
    /// Account Balance
    Balance,
    /// Account Code Hash
    CodeHash,
}

/// Represents a change in the Account field implied by a `BeginTx`,
/// `EXTCODECOPY`, `EXTCODESIZE`, `BALANCE`, `SELFDESTRUCT`, `*CALL`*,
/// `CREATE*`, `STOP`, `RETURN` or `REVERT` step.
#[derive(Clone, PartialEq, Eq)]
pub struct AccountOp {
    /// Account Address
    pub address: Address,
    /// Field
    pub field: AccountField,
    /// Field Value after the operation
    pub value: Word,
    /// Field Value before the operation
    pub value_prev: Word,
}

impl AccountOp {
    /// Create a new instance of a `AccountOp` from it's components.
    pub const fn new(
        address: Address,
        field: AccountField,
        value: Word,
        value_prev: Word,
    ) -> AccountOp {
        AccountOp {
            address,
            field,
            value,
            value_prev,
        }
    }
}

impl fmt::Debug for AccountOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("AccountOp { ")?;
        f.write_fmt(format_args!(
            "addr: {:?}, field: {:?}, val_prev: 0x{:x}, val: 0x{:x}",
            self.address, self.field, self.value_prev, self.value
        ))?;
        f.write_str(" }")
    }
}

impl PartialOrd for AccountOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for AccountOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.address, &self.field).cmp(&(&other.address, &other.field))
    }
}

impl Op for AccountOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::Account(self)
    }

    fn reverse(&self) -> Self {
        let mut rev = self.clone();
        swap(&mut rev.value, &mut rev.value_prev);
        rev
    }
}

/// Represents a field parameter of the CallContext that can be accessed via EVM
/// execution.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum CallContextField {
    /// RwCounterEndOfReversion
    RwCounterEndOfReversion,
    /// CallerId
    CallerId,
    /// TxId
    TxId,
    /// Depth
    Depth,
    /// CallerAddress
    CallerAddress,
    /// CalleeAddress
    CalleeAddress,
    /// CallDataOffset
    CallDataOffset,
    /// CallDataLength
    CallDataLength,
    /// ReturnDataOffset
    ReturnDataOffset,
    /// ReturnDataLength
    ReturnDataLength,
    /// Value
    Value,
    /// IsSuccess
    IsSuccess,
    /// IsPersistent
    IsPersistent,
    /// IsStatic
    IsStatic,
    /// LastCalleeId
    LastCalleeId,
    /// LastCalleeReturnDataOffset
    LastCalleeReturnDataOffset,
    /// LastCalleeReturnDataLength
    LastCalleeReturnDataLength,
    /// IsRoot
    IsRoot,
    /// IsCreate
    IsCreate,
    /// CodeHash
    CodeHash,
    /// ProgramCounter
    ProgramCounter,
    /// StackPointer
    StackPointer,
    /// GasLeft
    GasLeft,
    /// MemorySize
    MemorySize,
    /// ReversibleWriteCounter
    ReversibleWriteCounter,
}

/// Represents an CallContext read/write operation.
#[derive(Clone, PartialEq, Eq)]
pub struct CallContextOp {
    /// call_id of CallContext
    pub call_id: usize,
    /// field of CallContext
    pub field: CallContextField,
    /// value of CallContext
    pub value: Word,
}

impl fmt::Debug for CallContextOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("CallContextOp { ")?;
        f.write_fmt(format_args!(
            "call_id: {:?}, field: {:?}, value: {:?}",
            self.call_id, self.field, self.value,
        ))?;
        f.write_str(" }")
    }
}

impl PartialOrd for CallContextOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for CallContextOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.call_id, &self.field).cmp(&(&other.call_id, &other.field))
    }
}

impl Op for CallContextOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::CallContext(self)
    }

    fn reverse(&self) -> Self {
        unreachable!("CallContextOp can't be reverted")
    }
}

impl CallContextOp {
    /// Create a new instance of a `CallContextOp` from it's components.
    pub const fn new(call_id: usize, field: CallContextField, value: Word) -> CallContextOp {
        CallContextOp {
            call_id,
            field,
            value,
        }
    }

    /// Returns the [`Target`] (operation type) of this operation.
    pub const fn target(&self) -> Target {
        Target::CallContext
    }

    /// Returns the call id associated to this Operation.
    pub const fn call_id(&self) -> usize {
        self.call_id
    }

    /// Returns the [`Word`] read or written by this operation.
    pub const fn value(&self) -> &Word {
        &self.value
    }
}

/// Represents a field parameter of the TxLog that can be accessed via EVM
/// execution.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum TxLogField {
    /// contract address
    Address,
    /// topic of log entry
    Topic,
    /// data of log entry
    Data,
    // TODO: Add `TopicLength` and `DataLength`, which will be used for the RLP encoding of the
    // Tx Receipt
}

/// Represents TxLog read/write operation.
#[derive(Clone, PartialEq, Eq)]
pub struct TxLogOp {
    /// tx_id of TxLog, starts with 1 in rw table, and it's unique per Tx
    pub tx_id: usize,
    /// id of log entry, starts with 1 in rw table, it's unique within Tx,
    /// currently it is also field of execution step, As field of execution
    /// step, it resets to zero (in begin_tx), and increases with each Log* step
    /// the reason why rw table's `log_id` start with 1 instead of zero is that
    /// zero `log_id` represents no log steps(no any logs inserting) executed
    pub log_id: usize,
    /// field of TxLogField
    pub field: TxLogField,
    /// topic index if field is Topic
    /// byte index if field is Data
    /// it would be zero for other field tags
    pub index: usize,
    /// value
    pub value: Word,
}

impl TxLogOp {
    /// Create a new instance of a `TxLogOp` from it's components.
    pub fn new(
        tx_id: usize,
        log_id: usize,
        field: TxLogField,
        index: usize,
        value: Word,
    ) -> TxLogOp {
        TxLogOp {
            tx_id,
            log_id,
            field,
            index,
            value,
        }
    }
}

impl fmt::Debug for TxLogOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("TxLogOp { ")?;
        f.write_fmt(format_args!(
            "tx_id: {:?}, log_id: {:?}, field: {:?}, index: {:?}, value: {:?}",
            self.tx_id, self.log_id, self.field, self.index, self.value,
        ))?;
        f.write_str(" }")
    }
}

impl PartialOrd for TxLogOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for TxLogOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.tx_id, &self.log_id, &self.field).cmp(&(&other.tx_id, &other.log_id, &other.field))
    }
}

impl Op for TxLogOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::TxLog(self)
    }

    fn reverse(&self) -> Self {
        unreachable!("TxLog can't be reverted")
    }
}

/// Represents a field parameter of the TxReceipt that can be accessed via EVM
/// execution.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum TxReceiptField {
    /// flag indicates whether a tx succeed or not
    PostStateOrStatus,
    /// the cumulative gas used in the block containing the transaction receipt
    /// as of immediately after the transaction has happened.
    CumulativeGasUsed,
    /// record how many log entries in the receipt/tx , 0 if tx fails
    LogLength,
}

/// Represent a Start padding operation
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct StartOp {}

impl PartialOrd for StartOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for StartOp {
    fn cmp(&self, _other: &Self) -> Ordering {
        Ordering::Equal
    }
}

impl Op for StartOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::Start(self)
    }

    fn reverse(&self) -> Self {
        unreachable!("StartOp can't be reverted")
    }
}

/// Represents a field parameter of the StepStateField.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum StepStateField {
    /// caller id field
    CallID,
    /// is_root field
    IsRoot,
    /// is_create field
    IsCreate,
    /// code_hash field
    CodeHash,
    /// program_counter field
    ProgramCounter,
    /// stack_pointer field
    StackPointer,
    /// gas_left field
    GasLeft,
    /// memory_word_size field
    MemoryWordSize,
    /// reversible_write_counter field
    ReversibleWriteCounter,
    /// log_id field
    LogID,
}

/// StepStateOp represents exec state store and load
#[derive(Clone, PartialEq, Eq)]
pub struct StepStateOp {
    /// field of CallContext
    pub field: StepStateField,
    /// value of CallContext
    pub value: Word,
}

impl fmt::Debug for StepStateOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("StepStateOp { ")?;
        f.write_fmt(format_args!(
            "field: {:?}, value: {:?}",
            self.field, self.value,
        ))?;
        f.write_str(" }")
    }
}

impl PartialOrd for StepStateOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for StepStateOp {
    fn cmp(&self, other: &Self) -> Ordering {
        self.field.cmp(&other.field)
    }
}

impl Op for StepStateOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::StepState(self)
    }

    fn reverse(&self) -> Self {
        unreachable!("StepStateOp can't be reverted")
    }
}

impl StepStateOp {
    /// Create a new instance of a `StepStateOp` from it's components.
    pub const fn new(field: StepStateField, value: Word) -> StepStateOp {
        StepStateOp { field, value }
    }

    /// Returns the [`Target`] (operation type) of this operation.
    pub const fn target(&self) -> Target {
        Target::StepState
    }

    /// Returns the [`Word`] read or written by this operation.
    pub const fn value(&self) -> &Word {
        &self.value
    }
}

/// Represent a Padding padding operation
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct PaddingOp {}

impl PartialOrd for PaddingOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for PaddingOp {
    fn cmp(&self, _other: &Self) -> Ordering {
        Ordering::Equal
    }
}

impl Op for PaddingOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::Padding(self)
    }

    fn reverse(&self) -> Self {
        unreachable!("Padding can't be reverted")
    }
}

/// Represents TxReceipt read/write operation.
#[derive(Clone, PartialEq, Eq)]
pub struct TxReceiptOp {
    /// tx_id of TxReceipt
    pub tx_id: usize,
    /// field of TxReceipt
    pub field: TxReceiptField,
    /// value of TxReceipt
    pub value: u64,
}

impl fmt::Debug for TxReceiptOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("TxReceiptOp { ")?;
        f.write_fmt(format_args!(
            "tx_id: {:?}, field: {:?}, value: {:?}",
            self.tx_id, self.field, self.value,
        ))?;
        f.write_str(" }")
    }
}

impl PartialOrd for TxReceiptOp {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl Ord for TxReceiptOp {
    fn cmp(&self, other: &Self) -> Ordering {
        (&self.tx_id, &self.field).cmp(&(&other.tx_id, &other.field))
    }
}

impl Op for TxReceiptOp {
    fn into_enum(self) -> OpEnum {
        OpEnum::TxReceipt(self)
    }

    fn reverse(&self) -> Self {
        unreachable!("TxReceiptOp can't be reverted")
    }
}

/// Generic enum that wraps over all the operation types possible.
/// In particular [`StackOp`], [`MemoryOp`] and [`StorageOp`].
#[derive(Debug, Clone)]
pub enum OpEnum {
    /// Stack
    Stack(StackOp),
    /// Memory
    Memory(MemoryOp),
    /// Storage
    Storage(StorageOp),
    /// TransientStorage
    TransientStorage(TransientStorageOp),
    /// TxAccessListAccount
    TxAccessListAccount(TxAccessListAccountOp),
    /// TxAccessListAccountStorage
    TxAccessListAccountStorage(TxAccessListAccountStorageOp),
    /// TxRefund
    TxRefund(TxRefundOp),
    /// Account
    Account(AccountOp),
    /// CallContext
    CallContext(CallContextOp),
    /// TxReceipt
    TxReceipt(TxReceiptOp),
    /// TxLog
    TxLog(TxLogOp),
    /// Start
    Start(StartOp),
    /// Padding
    Padding(PaddingOp),
    /// StepState
    StepState(StepStateOp),
}

/// Operation is a Wrapper over a type that implements Op with a RWCounter.
#[derive(Debug, Clone)]
pub struct Operation<T: Op> {
    rwc: RWCounter,
    rwc_inner_chunk: RWCounter,
    rw: RW,
    /// True when this Operation should be reverted or not when
    /// handle_reversion.
    reversible: bool,
    op: T,
}

impl<T: Op> PartialEq for Operation<T> {
    fn eq(&self, other: &Self) -> bool {
        self.op.eq(&other.op) && self.rwc == other.rwc
    }
}

impl<T: Op> Eq for Operation<T> {}

impl<T: Op> PartialOrd for Operation<T> {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

impl<T: Op> Ord for Operation<T> {
    fn cmp(&self, other: &Self) -> Ordering {
        match self.op.cmp(&other.op) {
            Ordering::Equal => self.rwc.cmp(&other.rwc),
            ord => ord,
        }
    }
}

impl<T: Op> Operation<T> {
    /// Create a new Operation from an `op` with a `rwc`
    pub fn new(rwc: RWCounter, rwc_inner_chunk: RWCounter, rw: RW, op: T) -> Self {
        Self {
            rwc,
            rwc_inner_chunk,
            rw,
            reversible: false,
            op,
        }
    }

    /// Create a new reversible Operation from an `op` with a `rwc`
    pub fn new_reversible(rwc: RWCounter, rwc_inner_chunk: RWCounter, rw: RW, op: T) -> Self {
        Self {
            rwc,
            rwc_inner_chunk,
            rw,
            reversible: true,
            op,
        }
    }

    /// Return this `Operation` `rwc`
    pub fn rwc(&self) -> RWCounter {
        self.rwc
    }

    /// Return this `Operation` `rwc_inner_chunk`
    pub fn rwc_inner_chunk(&self) -> RWCounter {
        self.rwc_inner_chunk
    }

    /// Return this `Operation` `rw`
    pub fn rw(&self) -> RW {
        self.rw
    }

    /// Return this `Operation` `reversible`
    pub fn reversible(&self) -> bool {
        self.reversible
    }

    /// Return this `Operation` `op`
    pub fn op(&self) -> &T {
        &self.op
    }

    /// Return this `Operation` `op` as mutable reference
    pub fn op_mut(&mut self) -> &mut T {
        &mut self.op
    }

    // /// Matches over an `Operation` returning the [`Target`] of the internal
    // op /// it stores inside.
    // pub const fn target(&self) -> Target {
    //     self.op.target()
    // }
    //     match self {
    //         Operation::Memory(_) => Target::Memory,
    //         Operation::Stack(_) => Target::Stack,
    //         Operation::Storage(_) => Target::Storage,
    //     }
    // }

    // /// Returns true if the Operation hold internally is a [`StackOp`].
    // pub const fn is_stack(&self) -> bool {
    //     matches!(*self, Operation::Stack(_))
    // }

    // /// Returns true if the Operation hold internally is a [`MemoryOp`].
    // pub const fn is_memory(&self) -> bool {
    //     matches!(*self, Operation::Memory(_))
    // }

    // /// Returns true if the Operation hold internally is a [`StorageOp`].
    // pub const fn is_storage(&self) -> bool {
    //     matches!(*self, Operation::Storage(_))
    // }

    // /// Transmutes the internal (unlabeled) repr of the operation contained
    // /// inside of the enum into a [`StackOp`].
    // pub fn into_stack_unchecked(self) -> StackOp {
    //     match self {
    //         Operation::Stack(stack_op) => stack_op,
    //         _ => panic!("Broken Invariant"),
    //     }
    // }

    // /// Transmutes the internal (unlabeled) repr of the operation contained
    // /// inside of the enum into a [`MemoryOp`].
    // pub fn into_memory_unchecked(self) -> MemoryOp {
    //     match self {
    //         Operation::Memory(memory_op) => memory_op,
    //         _ => panic!("Broken Invariant"),
    //     }
    // }

    // /// Transmutes the internal (unlabeled) repr of the operation contained
    // /// inside of the enum into a [`StorageOp`].
    // pub fn into_storage_unchecked(self) -> StorageOp {
    //     match self {
    //         Operation::Storage(storage_op) => storage_op,
    //         _ => panic!("Broken Invariant"),
    //     }
    // }
}

#[cfg(test)]
mod operation_tests {
    use super::*;

    #[test]
    fn unchecked_op_transmutations_are_safe() {
        let stack_op = StackOp::new(1, StackAddress::from(1024), Word::from(0x40));

        let stack_op_as_operation =
            Operation::new(RWCounter(1), RWCounter(1), RW::WRITE, stack_op.clone());

        let memory_op = MemoryOp::new(1, MemoryAddress(0x40), 0x40);

        let memory_op_as_operation =
            Operation::new(RWCounter(1), RWCounter(1), RW::WRITE, memory_op.clone());

        assert_eq!(stack_op, stack_op_as_operation.op);
        assert_eq!(memory_op, memory_op_as_operation.op)
    }
}