zkevm-rom 0.0.1-security → 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of zkevm-rom might be problematic. Click here for more details.

Files changed (232) hide show
  1. package/.eslintrc.js +33 -0
  2. package/.github/CODEOWNERS +14 -0
  3. package/.github/ISSUE_TEMPLATE/bug.yml +38 -0
  4. package/.github/ISSUE_TEMPLATE/feature.yml +26 -0
  5. package/.github/ISSUE_TEMPLATE/question.yml +26 -0
  6. package/.github/workflows/main.yaml +40 -0
  7. package/LICENSE +636 -0
  8. package/README.md +23 -5
  9. package/audits/Hexens_Polygon_zkEVM_PUBLIC_27.02.23.pdf +0 -0
  10. package/audits/Polygon-zkEVM-Public-v1.1-verichains-19-03-2024.pdf +0 -0
  11. package/audits/zkEVM-ROM-upgrade-1-Spearbit-30-May.pdf +0 -0
  12. package/audits/zkEVM-ROM-upgrade-2-Spearbit-21-August.pdf +0 -0
  13. package/audits/zkEVM-engagement-1-Spearbit-27-March.pdf +0 -0
  14. package/audits/zkEVM-engagement-2-Spearbit-27-March.pdf +0 -0
  15. package/audits/zkEVM-engagement-3-Spearbit-6-April.pdf +0 -0
  16. package/counters/README.md +45 -0
  17. package/counters/counters-executor.js +80 -0
  18. package/counters/countersConstants.zkasm +370 -0
  19. package/counters/endIncludes.zkasm +18 -0
  20. package/counters/initIncludes.zkasm +2 -0
  21. package/counters/tests/MLOAD32.zkasm +27 -0
  22. package/counters/tests/MLOADX.zkasm +30 -0
  23. package/counters/tests/MSTORE32.zkasm +32 -0
  24. package/counters/tests/MSTOREX.zkasm +36 -0
  25. package/counters/tests/SHLarith.zkasm +28 -0
  26. package/counters/tests/SHLarithBit.zkasm +28 -0
  27. package/counters/tests/SHRarith.zkasm +28 -0
  28. package/counters/tests/SHRarithBit.zkasm +28 -0
  29. package/counters/tests/abs.zkasm +29 -0
  30. package/counters/tests/addBatchHashByteByByte.zkasm +31 -0
  31. package/counters/tests/computeGasSendCall.zkasm +30 -0
  32. package/counters/tests/divArith.zkasm +27 -0
  33. package/counters/tests/expAD.zkasm +30 -0
  34. package/counters/tests/getLenBits.zkasm +30 -0
  35. package/counters/tests/getLenBytes.zkasm +32 -0
  36. package/counters/tests/isEmptyAccount.zkasm +30 -0
  37. package/counters/tests/mulARITH.zkasm +28 -0
  38. package/counters/tests/offsetUtil.zkasm +29 -0
  39. package/counters/tests/opADDMOD.zkasm +28 -0
  40. package/counters/tests/opAdd.zkasm +27 -0
  41. package/counters/tests/opBLOCKHASH.zkasm +28 -0
  42. package/counters/tests/opCALL.zkasm +41 -0
  43. package/counters/tests/opCALLCODE.zkasm +41 -0
  44. package/counters/tests/opCALLDATACOPY.zkasm +28 -0
  45. package/counters/tests/opCALLDATALOAD.zkasm +27 -0
  46. package/counters/tests/opCODECOPY.zkasm +28 -0
  47. package/counters/tests/opCREATE.zkasm +35 -0
  48. package/counters/tests/opCREATE2.zkasm +35 -0
  49. package/counters/tests/opDELEGATECALL.zkasm +35 -0
  50. package/counters/tests/opDIV.zkasm +27 -0
  51. package/counters/tests/opEXP.zkasm +29 -0
  52. package/counters/tests/opEXTCODECOPY.zkasm +29 -0
  53. package/counters/tests/opMOD.zkasm +27 -0
  54. package/counters/tests/opMUL.zkasm +27 -0
  55. package/counters/tests/opMULMOD.zkasm +28 -0
  56. package/counters/tests/opRETURN.zkasm +32 -0
  57. package/counters/tests/opRETURNDATACOPY.zkasm +29 -0
  58. package/counters/tests/opREVERT.zkasm +32 -0
  59. package/counters/tests/opSDIV.zkasm +28 -0
  60. package/counters/tests/opSHA3.zkasm +28 -0
  61. package/counters/tests/opSIGNEXTEND.zkasm +27 -0
  62. package/counters/tests/opSMOD.zkasm +28 -0
  63. package/counters/tests/opSTATICCALL.zkasm +35 -0
  64. package/counters/tests/opSUB.zkasm +27 -0
  65. package/counters/tests/saveMem.zkasm +31 -0
  66. package/docs/opcode-cost-zk-counters.md +315 -0
  67. package/docs/usage-ecrecover.md +51 -0
  68. package/index.js +43 -0
  69. package/main/block-info.zkasm +204 -0
  70. package/main/constants.zkasm +145 -0
  71. package/main/ecrecover/addFpEc.zkasm +31 -0
  72. package/main/ecrecover/checkSqrtFpEc.zkasm +1558 -0
  73. package/main/ecrecover/constEc.zkasm +13 -0
  74. package/main/ecrecover/ecrecover.zkasm +280 -0
  75. package/main/ecrecover/invFnEc.zkasm +44 -0
  76. package/main/ecrecover/invFpEc.zkasm +45 -0
  77. package/main/ecrecover/mulFnEc.zkasm +36 -0
  78. package/main/ecrecover/mulFpEc.zkasm +36 -0
  79. package/main/ecrecover/mulPointEc.zkasm +311 -0
  80. package/main/ecrecover/sqFpEc.zkasm +38 -0
  81. package/main/ecrecover/sqrtFpEc.zkasm +70 -0
  82. package/main/end.zkasm +4 -0
  83. package/main/l2-tx-hash.zkasm +159 -0
  84. package/main/load-change-l2-block-utils.zkasm +11 -0
  85. package/main/load-change-l2-block.zkasm +28 -0
  86. package/main/load-tx-rlp-utils.zkasm +72 -0
  87. package/main/load-tx-rlp.zkasm +431 -0
  88. package/main/main.zkasm +237 -0
  89. package/main/map-opcodes.zkasm +274 -0
  90. package/main/modexp/array_lib/array_add_AGTB.zkasm +123 -0
  91. package/main/modexp/array_lib/array_add_short.zkasm +85 -0
  92. package/main/modexp/array_lib/array_div.zkasm +215 -0
  93. package/main/modexp/array_lib/array_div_long.zkasm +284 -0
  94. package/main/modexp/array_lib/array_div_short.zkasm +222 -0
  95. package/main/modexp/array_lib/array_mul.zkasm +97 -0
  96. package/main/modexp/array_lib/array_mul_long.zkasm +156 -0
  97. package/main/modexp/array_lib/array_mul_short.zkasm +127 -0
  98. package/main/modexp/array_lib/array_square.zkasm +246 -0
  99. package/main/modexp/array_lib/unused/array_add.zkasm +100 -0
  100. package/main/modexp/array_lib/unused/array_is_odd.zkasm +23 -0
  101. package/main/modexp/array_lib/unused/array_is_one.zkasm +33 -0
  102. package/main/modexp/array_lib/unused/array_is_zero.zkasm +34 -0
  103. package/main/modexp/array_lib/unused/array_sub_AGTB.zkasm +111 -0
  104. package/main/modexp/array_lib/unused/array_unshift.zkasm +37 -0
  105. package/main/modexp/array_lib/utils/array_compare.zkasm +82 -0
  106. package/main/modexp/array_lib/utils/array_trim.zkasm +49 -0
  107. package/main/modexp/constants.zkasm +5 -0
  108. package/main/modexp/modexp.zkasm +296 -0
  109. package/main/modexp/modexp_utils.zkasm +230 -0
  110. package/main/opcodes/arithmetic.zkasm +357 -0
  111. package/main/opcodes/block.zkasm +163 -0
  112. package/main/opcodes/calldata-returndata-code.zkasm +619 -0
  113. package/main/opcodes/comparison.zkasm +446 -0
  114. package/main/opcodes/context-information.zkasm +169 -0
  115. package/main/opcodes/create-terminate-context.zkasm +1011 -0
  116. package/main/opcodes/crypto.zkasm +96 -0
  117. package/main/opcodes/flow-control.zkasm +126 -0
  118. package/main/opcodes/logs.zkasm +193 -0
  119. package/main/opcodes/stack-operations.zkasm +658 -0
  120. package/main/opcodes/storage-memory.zkasm +313 -0
  121. package/main/pairings/BN254/addPointBN254.zkasm +245 -0
  122. package/main/pairings/BN254/ecAdd.zkasm +312 -0
  123. package/main/pairings/BN254/ecMul.zkasm +159 -0
  124. package/main/pairings/BN254/escalarMulBN254.zkasm +155 -0
  125. package/main/pairings/BN254/lineDiffPointsBN254.zkasm +83 -0
  126. package/main/pairings/BN254/lineSamePointsBN254.zkasm +96 -0
  127. package/main/pairings/FP12BN254/CYCLOFP12BN254/compressFp12BN254.zkasm +49 -0
  128. package/main/pairings/FP12BN254/CYCLOFP12BN254/decompressFp12BN254.zkasm +236 -0
  129. package/main/pairings/FP12BN254/CYCLOFP12BN254/expByXCompCycloFp12BN254.zkasm +444 -0
  130. package/main/pairings/FP12BN254/CYCLOFP12BN254/squareCompCycloFp12BN254.zkasm +212 -0
  131. package/main/pairings/FP12BN254/CYCLOFP12BN254/squareCycloFp12BN254.zkasm +228 -0
  132. package/main/pairings/FP12BN254/CYCLOFP12BN254/xBinDecompBN254.zkasm +64 -0
  133. package/main/pairings/FP12BN254/frob2Fp12BN254.zkasm +80 -0
  134. package/main/pairings/FP12BN254/frob3Fp12BN254.zkasm +96 -0
  135. package/main/pairings/FP12BN254/frobFp12BN254.zkasm +96 -0
  136. package/main/pairings/FP12BN254/inverseFp12BN254.zkasm +289 -0
  137. package/main/pairings/FP12BN254/mulFp12BN254.zkasm +408 -0
  138. package/main/pairings/FP12BN254/sparseMulAFp12BN254.zkasm +296 -0
  139. package/main/pairings/FP12BN254/sparseMulBFp12BN254.zkasm +291 -0
  140. package/main/pairings/FP12BN254/squareFp12BN254.zkasm +376 -0
  141. package/main/pairings/FP2BN254/addFp2BN254.zkasm +19 -0
  142. package/main/pairings/FP2BN254/escalarMulFp2BN254.zkasm +20 -0
  143. package/main/pairings/FP2BN254/invFp2BN254.zkasm +66 -0
  144. package/main/pairings/FP2BN254/mulFp2BN254.zkasm +19 -0
  145. package/main/pairings/FP2BN254/squareFp2BN254.zkasm +21 -0
  146. package/main/pairings/FP2BN254/subFp2BN254.zkasm +19 -0
  147. package/main/pairings/FP4BN254/squareFp4BN254.zkasm +76 -0
  148. package/main/pairings/FP6BN254/addFp6BN254.zkasm +59 -0
  149. package/main/pairings/FP6BN254/escalarMulFp6BN254.zkasm +51 -0
  150. package/main/pairings/FP6BN254/inverseFp6BN254.zkasm +208 -0
  151. package/main/pairings/FP6BN254/mulFp6BN254.zkasm +201 -0
  152. package/main/pairings/FP6BN254/sparseMulAFp6BN254.zkasm +65 -0
  153. package/main/pairings/FP6BN254/sparseMulBFp6BN254.zkasm +134 -0
  154. package/main/pairings/FP6BN254/sparseMulCFp6BN254.zkasm +128 -0
  155. package/main/pairings/FP6BN254/squareFp6BN254.zkasm +147 -0
  156. package/main/pairings/FP6BN254/subFp6BN254.zkasm +59 -0
  157. package/main/pairings/FPBN254/addFpBN254.zkasm +29 -0
  158. package/main/pairings/FPBN254/invFpBN254.zkasm +55 -0
  159. package/main/pairings/FPBN254/mulFpBN254.zkasm +29 -0
  160. package/main/pairings/FPBN254/reduceFpBN254.zkasm +25 -0
  161. package/main/pairings/FPBN254/squareFpBN254.zkasm +31 -0
  162. package/main/pairings/FPBN254/subFpBN254.zkasm +36 -0
  163. package/main/pairings/FRBN254/reduceFrBN254.zkasm +25 -0
  164. package/main/pairings/constants.zkasm +62 -0
  165. package/main/pairings/ecPairing.zkasm +244 -0
  166. package/main/pairings/finalExpBN254.zkasm +2095 -0
  167. package/main/pairings/halfPairingBN254.zkasm +428 -0
  168. package/main/pairings/loopLengthBN254.zkasm +75 -0
  169. package/main/pairings/millerLoopBN254.zkasm +741 -0
  170. package/main/pairings/pairingBN254.zkasm +481 -0
  171. package/main/pairings/unused/addFp12BN254.zkasm +130 -0
  172. package/main/pairings/unused/expByXCycloFp12BN254.zkasm +411 -0
  173. package/main/pairings/unused/expFp12BN254.zkasm +333 -0
  174. package/main/pairings/unused/subFp12BN254.zkasm +130 -0
  175. package/main/pairings/unused/xPseudoBinDecompBN254.zkasm +68 -0
  176. package/main/pairings/utilsTests/expCycloFp12BN254.zkasm +334 -0
  177. package/main/precompiled/end.zkasm +42 -0
  178. package/main/precompiled/identity.zkasm +99 -0
  179. package/main/precompiled/pre-ecAdd.zkasm +84 -0
  180. package/main/precompiled/pre-ecMul.zkasm +82 -0
  181. package/main/precompiled/pre-ecPairing.zkasm +72 -0
  182. package/main/precompiled/pre-ecrecover.zkasm +71 -0
  183. package/main/precompiled/pre-modexp.zkasm +367 -0
  184. package/main/precompiled/pre-sha2-256.zkasm +125 -0
  185. package/main/precompiled/revert-precompiled.zkasm +25 -0
  186. package/main/precompiled/selector.zkasm +77 -0
  187. package/main/process-change-l2-block.zkasm +147 -0
  188. package/main/process-tx.zkasm +587 -0
  189. package/main/tables/2-exp.zkasm +260 -0
  190. package/main/touched.zkasm +118 -0
  191. package/main/utils.zkasm +2335 -0
  192. package/main/vars.zkasm +117 -0
  193. package/package.json +62 -3
  194. package/test/bytes-length.zkasm +39 -0
  195. package/test/ecrecover.zkasm +538 -0
  196. package/test/lt4-test.zkasm +38 -0
  197. package/test/mstorex.zkasm +191 -0
  198. package/test/opcalldatacopy.ignore.zkasm +331 -0
  199. package/test/performance/read-push.zkasm +71 -0
  200. package/test/read-push.zkasm +304 -0
  201. package/test/testArrayArith.zkasm +1099 -0
  202. package/test/testArrayUtils.zkasm +335 -0
  203. package/test/testCycloFp12ArithBN254.zkasm +548 -0
  204. package/test/testEcAdd.zkasm +252 -0
  205. package/test/testEcMul.zkasm +231 -0
  206. package/test/testEcPairing.zkasm +436 -0
  207. package/test/testFinalExpBn254.zkasm +139 -0
  208. package/test/testFp12ArithBN254.zkasm +692 -0
  209. package/test/testFp2ArithBN254.zkasm +185 -0
  210. package/test/testFp4ArithBN254.zkasm +128 -0
  211. package/test/testFp6ArithBN254.zkasm +260 -0
  212. package/test/testFpArithBN254.zkasm +159 -0
  213. package/test/testFrArithBN254.zkasm +113 -0
  214. package/test/testHalfPairingBN254.zkasm +285 -0
  215. package/test/testModExp.zkasm +586 -0
  216. package/test/testModExpReturn.zkasm +81 -0
  217. package/test/testPairingBN254.zkasm +463 -0
  218. package/test/testPointArithBN254.zkasm +270 -0
  219. package/test/testSHA256.zkasm +27 -0
  220. package/test/touched-assert.zkasm +59 -0
  221. package/test/utils-expAD.zkasm +48 -0
  222. package/test/utils-getLenBytes.zkasm +36 -0
  223. package/tools/audit-tools/registry-op-checker.js +71 -0
  224. package/tools/get-not-used-labels.js +31 -0
  225. package/tools/helpers/helpers.js +47 -0
  226. package/tools/modexp-utils/README.md +5 -0
  227. package/tools/modexp-utils/modexp-test-gen.js +168 -0
  228. package/tools/modexp-utils/modexp-test-int.sage +37 -0
  229. package/tools/parallel-testing/checker.sh +6 -0
  230. package/tools/parallel-testing/gen-parallel-tests.js +78 -0
  231. package/tools/parallel-testing/parallel-tests-sample/sample.test.js +136 -0
  232. package/tools/run-tests-zkasm.js +83 -0
@@ -0,0 +1,335 @@
1
+ ; constants needed by executor C++
2
+ INCLUDE "../main/constants.zkasm"
3
+
4
+ VAR GLOBAL lastHashKId
5
+ VAR GLOBAL lastHashPId
6
+
7
+ VAR GLOBAL initial_A
8
+ VAR GLOBAL initial_B
9
+ VAR GLOBAL initial_C
10
+ VAR GLOBAL initial_D
11
+ VAR GLOBAL initial_E
12
+ VAR GLOBAL initial_CTX
13
+ VAR GLOBAL initial_SP
14
+ VAR GLOBAL initial_PC
15
+ VAR GLOBAL initial_GAS
16
+ VAR GLOBAL initial_SR
17
+ VAR GLOBAL initial_RR
18
+ VAR GLOBAL initial_HASHPOS
19
+ VAR GLOBAL initial_RCX
20
+
21
+ ; Fix better notation for the above
22
+
23
+ start:
24
+
25
+ STEP => A
26
+ 0 :ASSERT
27
+
28
+ A :MSTORE(initial_A)
29
+ B :MSTORE(initial_B)
30
+ C :MSTORE(initial_C)
31
+ D :MSTORE(initial_D)
32
+ E :MSTORE(initial_E)
33
+ CTX :MSTORE(initial_CTX)
34
+ SP :MSTORE(initial_SP)
35
+ PC :MSTORE(initial_PC)
36
+ GAS :MSTORE(initial_GAS)
37
+ SR :MSTORE(initial_SR)
38
+ RR :MSTORE(initial_RR)
39
+ HASHPOS :MSTORE(initial_HASHPOS)
40
+ RCX :MSTORE(initial_RCX)
41
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, RR, HASHPOS, RCX
42
+
43
+ -1 :MSTORE(lastHashKId)
44
+ -1 :MSTORE(lastHashPId)
45
+
46
+ ; array_compare
47
+ ; ---------------------------------------------------------------
48
+ ; 1] inA = [5,6,7], inB = [2,3]. len(inA) > len(inB) should return 2
49
+ array_compare_test_1:
50
+ 3 => C
51
+ 2 => D
52
+ 5n :MSTORE(array_compare_inA)
53
+ 1 => E
54
+ 6n :MSTORE(array_compare_inA + E)
55
+ 2 => E
56
+ 7n :MSTORE(array_compare_inA + E)
57
+ 2n :MSTORE(array_compare_inB)
58
+ 1 => E
59
+ 3n :MSTORE(array_compare_inB + E)
60
+ :CALL(array_compare)
61
+ 2 :MLOAD(array_compare_result)
62
+
63
+ ; 2] inA = [5,6], inB = [2,3,4]. len(inA) < len(inB) should return 0
64
+ array_compare_test_2:
65
+ 2 => C
66
+ 3 => D
67
+ 5n :MSTORE(array_compare_inA)
68
+ 1 => E
69
+ 6n :MSTORE(array_compare_inA + E)
70
+ 2n :MSTORE(array_compare_inB)
71
+ 1 => E
72
+ 3n :MSTORE(array_compare_inB + E)
73
+ 2 => E
74
+ 4n :MSTORE(array_compare_inB + E)
75
+ :CALL(array_compare)
76
+ 0 :MLOAD(array_compare_result)
77
+
78
+
79
+
80
+ ; 3] inA = [5,6,7], inB = [5,6,6]. len(inA) = len(inB) but inA > inB should return 2
81
+ array_compare_test_3:
82
+ 3 => C
83
+ 3 => D
84
+ 5n :MSTORE(array_compare_inA)
85
+ 1 => E
86
+ 6n :MSTORE(array_compare_inA + E)
87
+ 2 => E
88
+ 7n :MSTORE(array_compare_inA + E)
89
+ 5n :MSTORE(array_compare_inB)
90
+ 1 => E
91
+ 6n :MSTORE(array_compare_inB + E)
92
+ 2 => E
93
+ 6n :MSTORE(array_compare_inB + E)
94
+ :CALL(array_compare)
95
+ 2 :MLOAD(array_compare_result)
96
+
97
+ ; 4] inA = [5,6,6], inB = [5,6,7]. len(inA) = len(inB) but inA < inB should return 0
98
+ array_compare_test_4:
99
+ 3 => C
100
+ 3 => D
101
+ 5n :MSTORE(array_compare_inA)
102
+ 1 => E
103
+ 6n :MSTORE(array_compare_inA + E)
104
+ 2 => E
105
+ 6n :MSTORE(array_compare_inA + E)
106
+
107
+ 5n :MSTORE(array_compare_inB)
108
+ 1 => E
109
+ 6n :MSTORE(array_compare_inB + E)
110
+ 2 => E
111
+ 7n :MSTORE(array_compare_inB + E)
112
+ :CALL(array_compare)
113
+ 0 :MLOAD(array_compare_result)
114
+
115
+ ; 5] inA = [5,6,6], inB = [5,6,6]. inA = inB should return 1
116
+ array_compare_test_5:
117
+ 3 => C
118
+ 3 => D
119
+ 5n :MSTORE(array_compare_inA)
120
+ 1 => E
121
+ 6n :MSTORE(array_compare_inA + E)
122
+ 2 => E
123
+ 6n :MSTORE(array_compare_inA + E)
124
+ 5n :MSTORE(array_compare_inB)
125
+ 1 => E
126
+ 6n :MSTORE(array_compare_inB + E)
127
+ 2 => E
128
+ 6n :MSTORE(array_compare_inB + E)
129
+ :CALL(array_compare)
130
+ 1 :MLOAD(array_compare_result)
131
+ ; ---------------------------------------------------------------
132
+
133
+ ; array unshift
134
+ ; ---------------------------------------------------------------
135
+ ; 1] in = [3] and D = 5 => in = [5,3]
136
+ array_unshift_test_1:
137
+ 1 => C
138
+ 3n :MSTORE(array_unshift_in)
139
+ 5 => D
140
+ :CALL(array_unshift)
141
+ 5n :MLOAD(array_unshift_in)
142
+ 1 => E
143
+ 3n :MLOAD(array_unshift_in + E)
144
+ 2 :MLOAD(array_unshift_len)
145
+
146
+ ; 2] in = [2,1,1] and D = 5 => in = [5,2,1,1]
147
+ array_unshift_test_2:
148
+ 3 => C
149
+ 5 => D
150
+ 2n :MSTORE(array_unshift_in)
151
+ 1 => E
152
+ 1n :MSTORE(array_unshift_in + E)
153
+ 2 => E
154
+ 1n :MSTORE(array_unshift_in + E)
155
+ :CALL(array_unshift)
156
+ 5n :MLOAD(array_unshift_in)
157
+ 1 => E
158
+ 2n :MLOAD(array_unshift_in + E)
159
+ 2 => E
160
+ 1n :MLOAD(array_unshift_in + E)
161
+ 3 => E
162
+ 1n :MLOAD(array_unshift_in + E)
163
+ 4 :MLOAD(array_unshift_len)
164
+ ; ---------------------------------------------------------------
165
+
166
+ ; array trim
167
+ ; ---------------------------------------------------------------
168
+ ; 1] [2,1,0] should return 2
169
+ array_trim_test_1:
170
+ 3 => C
171
+ 2n :MSTORE(array_trim_in)
172
+ 1 => E
173
+ 1n :MSTORE(array_trim_in + E)
174
+ 2 => E
175
+ 0n :MSTORE(array_trim_in + E)
176
+ :CALL(array_trim)
177
+ 2 => A
178
+ C :ASSERT
179
+
180
+ ; 2] [2,1,0,2] should return 4
181
+ array_trim_test_2:
182
+ 4 => C
183
+ 2n :MSTORE(array_trim_in)
184
+ 1 => E
185
+ 1n :MSTORE(array_trim_in + E)
186
+ 2 => E
187
+ 0n :MSTORE(array_trim_in + E)
188
+ 3 => E
189
+ 2n :MSTORE(array_trim_in + E)
190
+ :CALL(array_trim)
191
+ 4 => A
192
+ C :ASSERT
193
+
194
+ ; 3] [0,0,0,0,0,0] should return 1
195
+ array_trim_test_3:
196
+ 6 => C
197
+ 0n :MSTORE(array_trim_in)
198
+ 1 => E
199
+ 0n :MSTORE(array_trim_in + E)
200
+ 2 => E
201
+ 0n :MSTORE(array_trim_in + E)
202
+ 3 => E
203
+ 0n :MSTORE(array_trim_in + E)
204
+ 4 => E
205
+ 0n :MSTORE(array_trim_in + E)
206
+ 5 => E
207
+ 0n :MSTORE(array_trim_in + E)
208
+ :CALL(array_trim)
209
+ 1 => A
210
+ C :ASSERT
211
+
212
+ ; 4] [0] should return 1
213
+ array_trim_test_4:
214
+ 1 => C
215
+ 0n :MSTORE(array_trim_in)
216
+ :CALL(array_trim)
217
+ 1 => A
218
+ C :ASSERT
219
+ ; ---------------------------------------------------------------
220
+
221
+ ; array is zero
222
+ ; ---------------------------------------------------------------
223
+ ; 1] [2,1] should return 0
224
+ array_is_zero_test_1:
225
+ 2 => C
226
+ 2n :MSTORE(array_is_zero_in)
227
+ 1 => E
228
+ 1n :MSTORE(array_is_zero_in + E)
229
+ :CALL(array_is_zero)
230
+ 0 :MLOAD(array_is_zero_result)
231
+
232
+ ; 2] [0] should return 1
233
+ array_is_zero_test_2:
234
+ 1 => C
235
+ 0n :MSTORE(array_is_zero_in)
236
+ :CALL(array_is_zero)
237
+ 1 :MLOAD(array_is_zero_result)
238
+
239
+ ; 3] [5] should return 0
240
+ array_is_zero_test_3:
241
+ 1 => C
242
+ 5n :MSTORE(array_is_zero_in)
243
+ :CALL(array_is_zero)
244
+ 0 :MLOAD(array_is_zero_result)
245
+ ; ---------------------------------------------------------------
246
+
247
+ ; array is one
248
+ ; ---------------------------------------------------------------
249
+ ; 1] [2,1] should return 0
250
+ array_is_one_test_1:
251
+ 2 => C
252
+ 2n :MSTORE(array_is_one_in)
253
+ 1 => E
254
+ 1n :MSTORE(array_is_one_in + E)
255
+ :CALL(array_is_one)
256
+ 0 :MLOAD(array_is_one_result)
257
+
258
+ ; 2] [1] should return 1
259
+ array_is_one_test_2:
260
+ 1 => C
261
+ 1n :MSTORE(array_is_one_in)
262
+ :CALL(array_is_one)
263
+ 1 :MLOAD(array_is_one_result)
264
+
265
+ ; 3] [5] should return 0
266
+ array_is_one_test_3:
267
+ 1 => C
268
+ 5n :MSTORE(array_is_one_in)
269
+ :CALL(array_is_one)
270
+ 0 :MLOAD(array_is_one_result)
271
+ ; ---------------------------------------------------------------
272
+
273
+ ; array is odd
274
+ ; ---------------------------------------------------------------
275
+ ; 1] [2,1] should return 0
276
+ array_is_odd_test_1:
277
+ 2n :MSTORE(array_is_odd_in)
278
+ 1 => E
279
+ 1n :MSTORE(array_is_odd_in + E)
280
+ :CALL(array_is_odd)
281
+ 0 :MLOAD(array_is_odd_result)
282
+
283
+ ; 2] [5] should return 1
284
+ array_is_odd_test_2:
285
+ 5n :MSTORE(array_is_odd_in)
286
+ :CALL(array_is_odd)
287
+ 1 :MLOAD(array_is_odd_result)
288
+
289
+ ; 2] [3, 2] should return 1
290
+ array_is_odd_test_3:
291
+ 3n :MSTORE(array_is_odd_in)
292
+ 1 => E
293
+ 2n :MSTORE(array_is_odd_in + E)
294
+ :CALL(array_is_odd)
295
+ 1 :MLOAD(array_is_odd_result)
296
+ ; ---------------------------------------------------------------
297
+
298
+ outOfCountersBinary:
299
+ outOfCountersStep:
300
+
301
+ end:
302
+
303
+ $ => A :MLOAD(initial_A)
304
+ $ => B :MLOAD(initial_B)
305
+ $ => C :MLOAD(initial_C)
306
+ $ => D :MLOAD(initial_D)
307
+ $ => E :MLOAD(initial_E)
308
+ $ => CTX :MLOAD(initial_CTX)
309
+ $ => SP :MLOAD(initial_SP)
310
+ $ => PC :MLOAD(initial_PC)
311
+ $ => GAS :MLOAD(initial_GAS)
312
+ $ => SR :MLOAD(initial_SR)
313
+ $ => RR :MLOAD(initial_RR)
314
+ $ => HASHPOS :MLOAD(initial_HASHPOS)
315
+ $ => RCX :MLOAD(initial_RCX)
316
+
317
+ ; label finalizeExecution needed by executor C++
318
+ finalizeExecution:
319
+ ${beforeLast()} :JMPN(finalizeExecution)
320
+
321
+ :JMP(start)
322
+ opINVALID:
323
+ ; label checkAndSaveFrom needed by executor C++
324
+ checkAndSaveFrom:
325
+ :JMP(opINVALID)
326
+
327
+ INCLUDE "../main/modexp/constants.zkasm"
328
+
329
+ INCLUDE "../main/modexp/array_lib/utils/array_compare.zkasm"
330
+ INCLUDE "../main/modexp/array_lib/utils/array_trim.zkasm"
331
+
332
+ INCLUDE "../main/modexp/array_lib/unused/array_is_zero.zkasm"
333
+ INCLUDE "../main/modexp/array_lib/unused/array_is_one.zkasm"
334
+ INCLUDE "../main/modexp/array_lib/unused/array_is_odd.zkasm"
335
+ INCLUDE "../main/modexp/array_lib/unused/array_unshift.zkasm"