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,28 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 0xffffffff => A
8
+ 254 => D
9
+ :CALL(SHLarithBit)
10
+
11
+ %SHLARITHBIT_STEP - STEP:JMPN(failedCounters)
12
+ %SHLARITHBIT_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
13
+ %SHLARITHBIT_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
14
+ %SHLARITHBIT_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
15
+ %SHLARITHBIT_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
16
+ %SHLARITHBIT_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
17
+ %SHLARITHBIT_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
18
+
19
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
20
+ finalizeExecution:
21
+ :JMP(finalWait)
22
+ readCode:
23
+ :RETURN
24
+ failedCounters:
25
+ 2 => A
26
+ 1 :ASSERT
27
+
28
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,28 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 0xffffffff => A
8
+ 2 => D
9
+ :CALL(SHRarith)
10
+
11
+ %SHRARITH_STEP - STEP:JMPN(failedCounters)
12
+ %SHRARITH_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
13
+ %SHRARITH_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
14
+ %SHRARITH_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
15
+ %SHRARITH_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
16
+ %SHRARITH_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
17
+ %SHRARITH_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
18
+
19
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
20
+ finalizeExecution:
21
+ :JMP(finalWait)
22
+ readCode:
23
+ :RETURN
24
+ failedCounters:
25
+ 2 => A
26
+ 1 :ASSERT
27
+
28
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,28 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 0xffffffff => A
8
+ 2 => D
9
+ :CALL(SHRarithBit)
10
+
11
+ %SHRARITHBIT_STEP - STEP:JMPN(failedCounters)
12
+ %SHRARITHBIT_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
13
+ %SHRARITHBIT_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
14
+ %SHRARITHBIT_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
15
+ %SHRARITHBIT_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
16
+ %SHRARITHBIT_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
17
+ %SHRARITHBIT_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
18
+
19
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
20
+ finalizeExecution:
21
+ :JMP(finalWait)
22
+ readCode:
23
+ :RETURN
24
+ failedCounters:
25
+ 2 => A
26
+ 1 :ASSERT
27
+
28
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,29 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+ start:
3
+ 1000000 => GAS
4
+
5
+ operation:
6
+ ; @info Get absolute value and sign
7
+ ; @in A => number to convert
8
+ ; @out A => Absolut value of A
9
+ ; @out B => Sign of A [1 if negative, 0 positive]
10
+ 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFn => A
11
+ :CALL(abs)
12
+
13
+ %ABS_STEP - STEP:JMPN(failedCounters)
14
+ %ABS_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
15
+ %ABS_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
16
+ %ABS_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
17
+ %ABS_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
18
+ %ABS_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
19
+ %ABS_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
20
+ finalizeExecution:
21
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
22
+ :JMP(finalWait)
23
+ readCode:
24
+ :RETURN
25
+ failedCounters:
26
+ 2 => A
27
+ 1 :ASSERT
28
+
29
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,31 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ ;@info: adds data to batchHashdata byte by byte
8
+ ;@in: A: bytes to add
9
+ ;@in D: bytes length
10
+ 12 => A
11
+ 31 => D
12
+ :CALL(addBatchHashByteByByte)
13
+
14
+ %ADDBATCHHASH_STEP*D - STEP:JMPN(failedCounters)
15
+ %ADDBATCHHASH_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
16
+ %ADDBATCHHASH_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
17
+ %ADDBATCHHASH_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
18
+ %ADDBATCHHASH_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
19
+ %ADDBATCHHASH_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
20
+ %ADDBATCHHASH_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
21
+
22
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
23
+ finalizeExecution:
24
+ :JMP(finalWait)
25
+ readCode:
26
+ :RETURN
27
+ failedCounters:
28
+ 2 => A
29
+ 1 :ASSERT
30
+
31
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,30 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ ; @info Compute gas to send to call following EIP 150
8
+ ; @in gasCall: gas sent to call
9
+ ; @out A => min( requested_gas , all_but_one_64th(63/64) )
10
+ 1000000 :MSTORE(gasCall)
11
+ :CALL(computeGasSendCall)
12
+
13
+ %COMPUTEGASSENDCALL_STEP - STEP:JMPN(failedCounters)
14
+ %COMPUTEGASSENDCALL_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
15
+ %COMPUTEGASSENDCALL_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
16
+ %COMPUTEGASSENDCALL_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
17
+ %COMPUTEGASSENDCALL_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
18
+ %COMPUTEGASSENDCALL_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
19
+ %COMPUTEGASSENDCALL_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
20
+
21
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
22
+ finalizeExecution:
23
+ :JMP(finalWait)
24
+ readCode:
25
+ :RETURN
26
+ failedCounters:
27
+ 2 => A
28
+ 1 :ASSERT
29
+
30
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,27 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 10 :MSTORE(arithA)
8
+ 2 :MSTORE(arithB)
9
+ :CALL(divARITH)
10
+
11
+ %DIVARITH_STEP - STEP:JMPN(failedCounters)
12
+ %DIVARITH_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
13
+ %DIVARITH_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
14
+ %DIVARITH_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
15
+ %DIVARITH_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
16
+ %DIVARITH_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
17
+ %DIVARITH_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
18
+ finalizeExecution:
19
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
20
+ :JMP(finalWait)
21
+ readCode:
22
+ :RETURN
23
+ failedCounters:
24
+ 2 => A
25
+ 1 :ASSERT
26
+
27
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,30 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 2 => A
8
+ 2 => D
9
+ :CALL(expAD)
10
+
11
+ %EXPAD_STEP + 300 - STEP:JMPN(failedCounters)
12
+ 23 - CNT_BINARY :JMPNZ(failedCounters)
13
+ ;%EXPAD_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
14
+ 5 - CNT_ARITH :JMPNZ(failedCounters)
15
+ ;%EXPAD_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
16
+ %EXPAD_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
17
+ %EXPAD_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
18
+ %EXPAD_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
19
+ %EXPAD_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
20
+
21
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
22
+ finalizeExecution:
23
+ :JMP(finalWait)
24
+ readCode:
25
+ :RETURN
26
+ failedCounters:
27
+ 2 => A
28
+ 1 :ASSERT
29
+
30
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,30 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ ; @info bits length of B
5
+ ; @in B => number
6
+ ; @out A => bits length
7
+ 1000000 => GAS
8
+
9
+ operation:
10
+ 0xFFFFFFFFFFFFFFFFFFFFn => B
11
+ 80 => C
12
+ :CALL(getLenBits)
13
+ %GETLENBITS_STEP + %DIVARITH_STEP*C - STEP:JMPN(failedCounters)
14
+ %GETLENBITS_CNT_BINARY + %DIVARITH_CNT_BINARY*C + C - CNT_BINARY :JMPNZ(failedCounters)
15
+ %GETLENBITS_CNT_ARITH + %DIVARITH_CNT_ARITH*C - 1 - CNT_ARITH :JMPNZ(failedCounters)
16
+ %GETLENBITS_CNT_KECCAK_F + %DIVARITH_CNT_KECCAK_F*C - CNT_KECCAK_F :JMPNZ(failedCounters)
17
+ %GETLENBITS_CNT_MEM_ALIGN + %DIVARITH_CNT_MEM_ALIGN*C - CNT_MEM_ALIGN :JMPNZ(failedCounters)
18
+ %GETLENBITS_CNT_PADDING_PG + %DIVARITH_CNT_PADDING_PG*C - CNT_PADDING_PG :JMPNZ(failedCounters)
19
+ %GETLENBITS_CNT_POSEIDON_G + %DIVARITH_CNT_POSEIDON_G*C - CNT_POSEIDON_G :JMPNZ(failedCounters)
20
+
21
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
22
+ finalizeExecution:
23
+ :JMP(finalWait)
24
+ readCode:
25
+ :RETURN
26
+ failedCounters:
27
+ 2 => A
28
+ 1 :ASSERT
29
+
30
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,32 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ ; @info byte length of B
5
+ ; @in B => number
6
+ ; @out A => bytes length
7
+ 1000000 => GAS
8
+
9
+ operation:
10
+ 0xFFFFFFFFFFFFFFFFFFFFn => B
11
+ 19 => C
12
+ :CALL(getLenBytes)
13
+ %GETLENBYTES_STEP + %SHRARITH_STEP*C - STEP:JMPN(failedCounters)
14
+ %GETLENBYTES_CNT_BINARY + 60 - CNT_BINARY :JMPNZ(failedCounters)
15
+ ;%GETLENBYTES_CNT_BINARY + %SHRARITH_CNT_BINARY*C + C + 1 - CNT_BINARY :JMPNZ(failedCounters)
16
+ %GETLENBYTES_CNT_ARITH + 19 - CNT_ARITH :JMPNZ(failedCounters)
17
+ ;%GETLENBYTES_CNT_ARITH + %SHRARITH_CNT_ARITH*C - CNT_ARITH :JMPNZ(failedCounters)
18
+ %GETLENBYTES_CNT_KECCAK_F + %SHRARITH_CNT_KECCAK_F*C - CNT_KECCAK_F :JMPNZ(failedCounters)
19
+ %GETLENBYTES_CNT_MEM_ALIGN + %SHRARITH_CNT_MEM_ALIGN*C - CNT_MEM_ALIGN :JMPNZ(failedCounters)
20
+ %GETLENBYTES_CNT_PADDING_PG + %SHRARITH_CNT_PADDING_PG*C - CNT_PADDING_PG :JMPNZ(failedCounters)
21
+ %GETLENBYTES_CNT_POSEIDON_G + %SHRARITH_CNT_POSEIDON_G*C - CNT_POSEIDON_G :JMPNZ(failedCounters)
22
+
23
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
24
+ finalizeExecution:
25
+ :JMP(finalWait)
26
+ readCode:
27
+ :RETURN
28
+ failedCounters:
29
+ 2 => A
30
+ 1 :ASSERT
31
+
32
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,30 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ ; @info check account is empty ( balance == nonce == code == 0x )
8
+ ; @in E => address
9
+ ; @out E => isEmpty => 1 = true, 0 = false
10
+ 56346543 => E
11
+ :CALL(isEmptyAccount)
12
+
13
+ %ISEMPTYACCOUNT_STEP - STEP:JMPN(failedCounters)
14
+ %ISEMPTYACCOUNT_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
15
+ %ISEMPTYACCOUNT_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
16
+ %ISEMPTYACCOUNT_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
17
+ %ISEMPTYACCOUNT_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
18
+ %ISEMPTYACCOUNT_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
19
+ %ISEMPTYACCOUNT_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
20
+
21
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
22
+ finalizeExecution:
23
+ :JMP(finalWait)
24
+ readCode:
25
+ :RETURN
26
+ failedCounters:
27
+ 2 => A
28
+ 1 :ASSERT
29
+
30
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,28 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 115792089237316195423570985008687907853269984665640564039457584007913129639935n :MSTORE(arithA)
8
+ 2 :MSTORE(arithB)
9
+ :CALL(mulARITH)
10
+
11
+ %MULARITH_STEP - STEP:JMPN(failedCounters)
12
+ %MULARITH_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
13
+ %MULARITH_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
14
+ %MULARITH_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
15
+ %MULARITH_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
16
+ %MULARITH_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
17
+ %MULARITH_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
18
+
19
+ finalizeExecution:
20
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
21
+ :JMP(finalWait)
22
+ readCode:
23
+ :RETURN
24
+ failedCounters:
25
+ 2 => A
26
+ 1 :ASSERT
27
+
28
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,29 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+ start:
3
+ 1000000 => GAS
4
+
5
+ operation:
6
+ ;Get offset/32 & offset%32
7
+ ;@in A offset
8
+ ;@out E offset/32
9
+ ;@out C offset%32
10
+ 3 => A
11
+ :CALL(offsetUtil)
12
+
13
+ %OFFSETUTIL_STEP - STEP:JMPN(failedCounters)
14
+ %OFFSETUTIL_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
15
+ %OFFSETUTIL_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
16
+ %OFFSETUTIL_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
17
+ %OFFSETUTIL_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
18
+ %OFFSETUTIL_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
19
+ %OFFSETUTIL_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
20
+ finalizeExecution:
21
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
22
+ :JMP(finalWait)
23
+ readCode:
24
+ :RETURN
25
+ failedCounters:
26
+ 2 => A
27
+ 1 :ASSERT
28
+
29
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,28 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 10 :MSTORE(SP++)
8
+ 3 :MSTORE(SP++)
9
+ 2 :MSTORE(SP++)
10
+ :JMP(opADDMOD)
11
+ checkCounters:
12
+ %OPADDMOD_STEP - STEP:JMPN(failedCounters)
13
+ %OPADDMOD_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
14
+ %OPADDMOD_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
15
+ %OPADDMOD_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
16
+ %OPADDMOD_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
17
+ %OPADDMOD_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
18
+ %OPADDMOD_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
19
+
20
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
21
+ finalizeExecution:
22
+ :JMP(finalWait)
23
+ readCode:
24
+ :JMP(checkCounters)
25
+ failedCounters:
26
+ 2 => A
27
+ 1 :ASSERT
28
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,27 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 2 :MSTORE(SP++)
8
+ 2 :MSTORE(SP++)
9
+ :JMP(opADD)
10
+ checkCounters:
11
+ %OPADD_STEP - STEP:JMPN(failedCounters)
12
+ %OPADD_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
13
+ %OPADD_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
14
+ %OPADD_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
15
+ %OPADD_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
16
+ %OPADD_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
17
+ %OPADD_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
18
+
19
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
20
+ finalizeExecution:
21
+ :JMP(finalWait)
22
+ readCode:
23
+ :JMP(checkCounters)
24
+ failedCounters:
25
+ 2 => A
26
+ 1 :ASSERT
27
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,28 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 2 :HASHK1(0)
8
+ 10 :MSTORE(blockNum)
9
+ 1 :MSTORE(SP++)
10
+ :JMP(opBLOCKHASH)
11
+ checkCounters:
12
+ %OPBLOCKHASH_STEP - STEP:JMPN(failedCounters)
13
+ %OPBLOCKHASH_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
14
+ %OPBLOCKHASH_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
15
+ %OPBLOCKHASH_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
16
+ %OPBLOCKHASH_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
17
+ %OPBLOCKHASH_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
18
+ %OPBLOCKHASH_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
19
+
20
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
21
+ finalizeExecution:
22
+ :JMP(finalWait)
23
+ readCode:
24
+ :JMP(checkCounters)
25
+ failedCounters:
26
+ 2 => A
27
+ 1 :ASSERT
28
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,41 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 1 => CTX
8
+ 100 :MSTORE(storageAddr)
9
+ 100 => A
10
+ 0 => B, C
11
+ 100000 => D
12
+ $ => SR :SSTORE
13
+ ; stack input: [gas, address, value, argsOffset, argsSize, retOffset, retSize]
14
+ ; stack output: [success]
15
+ 1000 :MSTORE(SP++)
16
+ 43 :MSTORE(SP++)
17
+ 54 :MSTORE(SP++)
18
+ 8 :MSTORE(SP++)
19
+ 10000 :MSTORE(SP++)
20
+ 100 :MSTORE(SP++)
21
+ 1000 :MSTORE(SP++)
22
+ :JMP(opCALL)
23
+ checkCounters:
24
+ %OPCALL_STEP - STEP:JMPN(failedCounters)
25
+ %OPCALL_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
26
+ %OPCALL_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
27
+ %OPCALL_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
28
+ %OPCALL_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
29
+ %OPCALL_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
30
+ %OPCALL_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
31
+
32
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
33
+ finalizeExecution:
34
+ :JMP(finalWait)
35
+ readCode:
36
+ txType:
37
+ :JMP(checkCounters)
38
+ failedCounters:
39
+ 2 => A
40
+ 1 :ASSERT
41
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,41 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 1 => CTX
8
+ 100 :MSTORE(storageAddr)
9
+ 100 => A
10
+ 0 => B, C
11
+ 100000 => D
12
+ $ => SR :SSTORE
13
+ ; stack input: [gas, address, value, argsOffset, argsSize, retOffset, retSize]
14
+ ; stack output: [success]
15
+ 1000 :MSTORE(SP++)
16
+ 43 :MSTORE(SP++)
17
+ 54 :MSTORE(SP++)
18
+ 8 :MSTORE(SP++)
19
+ 10000 :MSTORE(SP++)
20
+ 100 :MSTORE(SP++)
21
+ 1000 :MSTORE(SP++)
22
+ :JMP(opCALLCODE)
23
+ checkCounters:
24
+ %OPCALLCODE_STEP - STEP:JMPN(failedCounters)
25
+ %OPCALLCODE_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
26
+ %OPCALLCODE_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
27
+ %OPCALLCODE_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
28
+ %OPCALLCODE_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
29
+ %OPCALLCODE_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
30
+ %OPCALLCODE_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
31
+
32
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
33
+ finalizeExecution:
34
+ :JMP(finalWait)
35
+ readCode:
36
+ txType:
37
+ :JMP(checkCounters)
38
+ failedCounters:
39
+ 2 => A
40
+ 1 :ASSERT
41
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,28 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 43 :MSTORE(SP++)
8
+ 54 :MSTORE(SP++)
9
+ 432543 :MSTORE(SP++)
10
+ :JMP(opCALLDATACOPY)
11
+ checkCounters:
12
+ %OPCALLDATACOPY_STEP - STEP:JMPN(failedCounters)
13
+ %OPCALLDATACOPY_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
14
+ %OPCALLDATACOPY_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
15
+ %OPCALLDATACOPY_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
16
+ %OPCALLDATACOPY_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
17
+ %OPCALLDATACOPY_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
18
+ %OPCALLDATACOPY_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
19
+
20
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
21
+ finalizeExecution:
22
+ :JMP(finalWait)
23
+ readCode:
24
+ :JMP(checkCounters)
25
+ failedCounters:
26
+ 2 => A
27
+ 1 :ASSERT
28
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,27 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 128 :MSTORE(txCalldataLen)
8
+ 1 :MSTORE(SP++)
9
+ :JMP(opCALLDATALOAD)
10
+ checkCounters:
11
+ %OPCALLDATALOAD_STEP - STEP:JMPN(failedCounters)
12
+ %OPCALLDATALOAD_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
13
+ %OPCALLDATALOAD_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
14
+ %OPCALLDATALOAD_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
15
+ %OPCALLDATALOAD_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
16
+ %OPCALLDATALOAD_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
17
+ %OPCALLDATALOAD_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
18
+
19
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
20
+ finalizeExecution:
21
+ :JMP(finalWait)
22
+ readCode:
23
+ :JMP(checkCounters)
24
+ failedCounters:
25
+ 2 => A
26
+ 1 :ASSERT
27
+ INCLUDE "../endIncludes.zkasm"
@@ -0,0 +1,28 @@
1
+ INCLUDE "../initIncludes.zkasm"
2
+
3
+ start:
4
+ 1000000 => GAS
5
+
6
+ operation:
7
+ 43 :MSTORE(SP++)
8
+ 54 :MSTORE(SP++)
9
+ 432543 :MSTORE(SP++)
10
+ :JMP(opCODECOPY)
11
+ checkCounters:
12
+ %OPCODECOPY_STEP - STEP:JMPN(failedCounters)
13
+ %OPCODECOPY_CNT_BINARY - CNT_BINARY :JMPNZ(failedCounters)
14
+ %OPCODECOPY_CNT_ARITH - CNT_ARITH :JMPNZ(failedCounters)
15
+ %OPCODECOPY_CNT_KECCAK_F - CNT_KECCAK_F :JMPNZ(failedCounters)
16
+ %OPCODECOPY_CNT_MEM_ALIGN - CNT_MEM_ALIGN :JMPNZ(failedCounters)
17
+ %OPCODECOPY_CNT_PADDING_PG - CNT_PADDING_PG :JMPNZ(failedCounters)
18
+ %OPCODECOPY_CNT_POSEIDON_G - CNT_POSEIDON_G :JMPNZ(failedCounters)
19
+
20
+ 0 => A,B,C,D,E,CTX, SP, PC, GAS, SR, HASHPOS, RR ; Set all registers to 0
21
+ finalizeExecution:
22
+ :JMP(finalWait)
23
+ readCode:
24
+ :JMP(checkCounters)
25
+ failedCounters:
26
+ 2 => A
27
+ 1 :ASSERT
28
+ INCLUDE "../endIncludes.zkasm"