From 82bd181871ba1106e033883db224758adeb896e0 Mon Sep 17 00:00:00 2001 From: Ilyas Ridhuan Date: Thu, 29 Aug 2024 18:34:28 +0100 Subject: [PATCH] feat(avm): range check gadget (#7967) This doesnt replace the existing range check - this just sets up the initial work for a range check gadget --- barretenberg/cpp/pil/avm/alu.pil | 1 - .../cpp/pil/avm/gadgets/range_check.pil | 28 +- .../vm/avm/generated/circuit_builder.cpp | 6 - .../barretenberg/vm/avm/generated/flavor.cpp | 1543 +++++++++-------- .../barretenberg/vm/avm/generated/flavor.hpp | 186 +- .../vm/avm/generated/full_row.cpp | 18 +- .../vm/avm/generated/full_row.hpp | 11 +- .../avm/generated/relations/range_check.hpp | 34 +- .../vm/avm/tests/range_check.test.cpp | 22 +- .../vm/avm/trace/gadgets/range_check.cpp | 65 +- .../vm/avm/trace/gadgets/range_check.hpp | 35 +- 11 files changed, 966 insertions(+), 983 deletions(-) diff --git a/barretenberg/cpp/pil/avm/alu.pil b/barretenberg/cpp/pil/avm/alu.pil index 6778c42e9d78..6c1bfbd50404 100644 --- a/barretenberg/cpp/pil/avm/alu.pil +++ b/barretenberg/cpp/pil/avm/alu.pil @@ -1,5 +1,4 @@ include "gadgets/range_check.pil"; -include "gadgets/cmp.pil"; namespace alu(256); // =============== Table ALU-TR ================================================= diff --git a/barretenberg/cpp/pil/avm/gadgets/range_check.pil b/barretenberg/cpp/pil/avm/gadgets/range_check.pil index 102f5461a2ca..fb82a13baf46 100644 --- a/barretenberg/cpp/pil/avm/gadgets/range_check.pil +++ b/barretenberg/cpp/pil/avm/gadgets/range_check.pil @@ -1,7 +1,7 @@ +include "../main.pil"; +include "../fixed/powers.pil"; namespace range_check(256); - // TODO: We should look to rename this to something like rng_idx - // Increasingly this is less likely to be associated directly with a subtrace's clk pol commit clk; // Range check selector @@ -11,7 +11,7 @@ namespace range_check(256); // Witnesses // Value to range check pol commit value; - // Number of bits to check against (this number must be <=128) + // Number of bits to check against pol commit rng_chk_bits; // Bit Size Columns @@ -188,25 +188,3 @@ namespace range_check(256); #[LOOKUP_RNG_CHK_7] sel_rng_chk { u16_r7 } in main.sel_rng_16 { main.clk }; - // ===== MEM TRACE RANGE CHECKS ===== - pol commit mem_rng_chk; - // We range check 40 bits in the mem trace - mem_rng_chk * (rng_chk_bits - 40) = 0; - - - // ===== GAS TRACE RANGE CHECKS ===== - pol commit gas_l2_rng_chk; - pol commit gas_da_rng_chk; - // We range check 32 bits in the gas trace - gas_l2_rng_chk * (rng_chk_bits - 32) = 0; - gas_da_rng_chk * (rng_chk_bits - 32) = 0; - - // ==== CMP TRACE RANGE CHECKS ===== - pol commit cmp_lo_bits_rng_chk; - pol commit cmp_hi_bits_rng_chk; - // We range check 128 bits in the cmp trace - cmp_lo_bits_rng_chk * (rng_chk_bits - 128) = 0; - cmp_hi_bits_rng_chk * (rng_chk_bits - 128) = 0; - - // ==== ALU TRACE RANGE CHECKS ==== - pol commit alu_rng_chk; diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/generated/circuit_builder.cpp b/barretenberg/cpp/src/barretenberg/vm/avm/generated/circuit_builder.cpp index 72e8e628942a..9506a6f38399 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/generated/circuit_builder.cpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/generated/circuit_builder.cpp @@ -596,15 +596,10 @@ AvmCircuitBuilder::ProverPolynomials AvmCircuitBuilder::compute_polynomials() co polys.poseidon2_mem_addr_write_d[i] = rows[i].poseidon2_mem_addr_write_d; polys.poseidon2_output_addr[i] = rows[i].poseidon2_output_addr; polys.poseidon2_sel_poseidon_perm[i] = rows[i].poseidon2_sel_poseidon_perm; - polys.range_check_alu_rng_chk[i] = rows[i].range_check_alu_rng_chk; polys.range_check_clk[i] = rows[i].range_check_clk; - polys.range_check_cmp_hi_bits_rng_chk[i] = rows[i].range_check_cmp_hi_bits_rng_chk; - polys.range_check_cmp_lo_bits_rng_chk[i] = rows[i].range_check_cmp_lo_bits_rng_chk; polys.range_check_dyn_diff[i] = rows[i].range_check_dyn_diff; polys.range_check_dyn_rng_chk_bits[i] = rows[i].range_check_dyn_rng_chk_bits; polys.range_check_dyn_rng_chk_pow_2[i] = rows[i].range_check_dyn_rng_chk_pow_2; - polys.range_check_gas_da_rng_chk[i] = rows[i].range_check_gas_da_rng_chk; - polys.range_check_gas_l2_rng_chk[i] = rows[i].range_check_gas_l2_rng_chk; polys.range_check_is_lte_u112[i] = rows[i].range_check_is_lte_u112; polys.range_check_is_lte_u128[i] = rows[i].range_check_is_lte_u128; polys.range_check_is_lte_u16[i] = rows[i].range_check_is_lte_u16; @@ -613,7 +608,6 @@ AvmCircuitBuilder::ProverPolynomials AvmCircuitBuilder::compute_polynomials() co polys.range_check_is_lte_u64[i] = rows[i].range_check_is_lte_u64; polys.range_check_is_lte_u80[i] = rows[i].range_check_is_lte_u80; polys.range_check_is_lte_u96[i] = rows[i].range_check_is_lte_u96; - polys.range_check_mem_rng_chk[i] = rows[i].range_check_mem_rng_chk; polys.range_check_rng_chk_bits[i] = rows[i].range_check_rng_chk_bits; polys.range_check_sel_lookup_0[i] = rows[i].range_check_sel_lookup_0; polys.range_check_sel_lookup_1[i] = rows[i].range_check_sel_lookup_1; diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/generated/flavor.cpp b/barretenberg/cpp/src/barretenberg/vm/avm/generated/flavor.cpp index d6e3b0c7cabe..af64a88a2bb9 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/generated/flavor.cpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/generated/flavor.cpp @@ -31,723 +31,817 @@ AvmFlavor::AllConstRefValues::AllConstRefValues( , alu_a_lo(il[23]) , alu_b_hi(il[24]) , alu_b_lo(il[25]) - , alu_b_pow(il[26]) - , alu_c_hi(il[27]) - , alu_c_lo(il[28]) - , alu_cf(il[29]) - , alu_clk(il[30]) - , alu_cmp_gadget_gt(il[31]) - , alu_cmp_gadget_input_a(il[32]) - , alu_cmp_gadget_input_b(il[33]) - , alu_cmp_gadget_result(il[34]) - , alu_cmp_gadget_sel(il[35]) - , alu_ff_tag(il[36]) - , alu_ia(il[37]) - , alu_ib(il[38]) - , alu_ic(il[39]) - , alu_in_tag(il[40]) - , alu_max_bits_sub_b_bits(il[41]) - , alu_max_bits_sub_b_pow(il[42]) - , alu_op_add(il[43]) - , alu_op_cast(il[44]) - , alu_op_div(il[45]) - , alu_op_eq(il[46]) - , alu_op_lt(il[47]) - , alu_op_lte(il[48]) - , alu_op_mul(il[49]) - , alu_op_not(il[50]) - , alu_op_shl(il[51]) - , alu_op_shr(il[52]) - , alu_op_sub(il[53]) - , alu_partial_prod_hi(il[54]) - , alu_partial_prod_lo(il[55]) - , alu_range_check_input_value(il[56]) - , alu_range_check_num_bits(il[57]) - , alu_range_check_sel(il[58]) - , alu_remainder(il[59]) - , alu_sel_alu(il[60]) - , alu_sel_cmp(il[61]) - , alu_sel_shift_which(il[62]) - , alu_u128_tag(il[63]) - , alu_u16_tag(il[64]) - , alu_u32_tag(il[65]) - , alu_u64_tag(il[66]) - , alu_u8_tag(il[67]) - , alu_zero_shift(il[68]) - , binary_acc_ia(il[69]) - , binary_acc_ib(il[70]) - , binary_acc_ic(il[71]) - , binary_clk(il[72]) - , binary_ia_bytes(il[73]) - , binary_ib_bytes(il[74]) - , binary_ic_bytes(il[75]) - , binary_in_tag(il[76]) - , binary_mem_tag_ctr(il[77]) - , binary_mem_tag_ctr_inv(il[78]) - , binary_op_id(il[79]) - , binary_sel_bin(il[80]) - , binary_start(il[81]) - , cmp_a_hi(il[82]) - , cmp_a_lo(il[83]) - , cmp_b_hi(il[84]) - , cmp_b_lo(il[85]) - , cmp_borrow(il[86]) - , cmp_clk(il[87]) - , cmp_cmp_rng_ctr(il[88]) - , cmp_input_a(il[89]) - , cmp_input_b(il[90]) - , cmp_op_eq(il[91]) - , cmp_op_eq_diff_inv(il[92]) - , cmp_op_gt(il[93]) - , cmp_p_a_borrow(il[94]) - , cmp_p_b_borrow(il[95]) - , cmp_p_sub_a_hi(il[96]) - , cmp_p_sub_a_lo(il[97]) - , cmp_p_sub_b_hi(il[98]) - , cmp_p_sub_b_lo(il[99]) - , cmp_range_chk_clk(il[100]) - , cmp_res_hi(il[101]) - , cmp_res_lo(il[102]) - , cmp_result(il[103]) - , cmp_sel_cmp(il[104]) - , cmp_sel_rng_chk(il[105]) - , cmp_shift_sel(il[106]) - , conversion_clk(il[107]) - , conversion_input(il[108]) - , conversion_num_limbs(il[109]) - , conversion_radix(il[110]) - , conversion_sel_to_radix_le(il[111]) - , keccakf1600_clk(il[112]) - , keccakf1600_input(il[113]) - , keccakf1600_output(il[114]) - , keccakf1600_sel_keccakf1600(il[115]) - , main_abs_da_rem_gas(il[116]) - , main_abs_l2_rem_gas(il[117]) - , main_alu_in_tag(il[118]) - , main_base_da_gas_op_cost(il[119]) - , main_base_l2_gas_op_cost(il[120]) - , main_bin_op_id(il[121]) - , main_call_ptr(il[122]) - , main_da_gas_remaining(il[123]) - , main_da_out_of_gas(il[124]) - , main_dyn_da_gas_op_cost(il[125]) - , main_dyn_gas_multiplier(il[126]) - , main_dyn_l2_gas_op_cost(il[127]) - , main_emit_l2_to_l1_msg_write_offset(il[128]) - , main_emit_note_hash_write_offset(il[129]) - , main_emit_nullifier_write_offset(il[130]) - , main_emit_unencrypted_log_write_offset(il[131]) - , main_ia(il[132]) - , main_ib(il[133]) - , main_ic(il[134]) - , main_id(il[135]) - , main_id_zero(il[136]) - , main_ind_addr_a(il[137]) - , main_ind_addr_b(il[138]) - , main_ind_addr_c(il[139]) - , main_ind_addr_d(il[140]) - , main_internal_return_ptr(il[141]) - , main_inv(il[142]) - , main_kernel_in_offset(il[143]) - , main_kernel_out_offset(il[144]) - , main_l1_to_l2_msg_exists_write_offset(il[145]) - , main_l2_gas_remaining(il[146]) - , main_l2_out_of_gas(il[147]) - , main_mem_addr_a(il[148]) - , main_mem_addr_b(il[149]) - , main_mem_addr_c(il[150]) - , main_mem_addr_d(il[151]) - , main_note_hash_exist_write_offset(il[152]) - , main_nullifier_exists_write_offset(il[153]) - , main_nullifier_non_exists_write_offset(il[154]) - , main_op_err(il[155]) - , main_opcode_val(il[156]) - , main_pc(il[157]) - , main_r_in_tag(il[158]) - , main_rwa(il[159]) - , main_rwb(il[160]) - , main_rwc(il[161]) - , main_rwd(il[162]) - , main_sel_alu(il[163]) - , main_sel_bin(il[164]) - , main_sel_calldata(il[165]) - , main_sel_execution_row(il[166]) - , main_sel_kernel_inputs(il[167]) - , main_sel_kernel_out(il[168]) - , main_sel_last(il[169]) - , main_sel_mem_op_a(il[170]) - , main_sel_mem_op_b(il[171]) - , main_sel_mem_op_c(il[172]) - , main_sel_mem_op_d(il[173]) - , main_sel_mov_ia_to_ic(il[174]) - , main_sel_mov_ib_to_ic(il[175]) - , main_sel_op_add(il[176]) - , main_sel_op_address(il[177]) - , main_sel_op_and(il[178]) - , main_sel_op_block_number(il[179]) - , main_sel_op_calldata_copy(il[180]) - , main_sel_op_cast(il[181]) - , main_sel_op_chain_id(il[182]) - , main_sel_op_cmov(il[183]) - , main_sel_op_coinbase(il[184]) - , main_sel_op_dagasleft(il[185]) - , main_sel_op_div(il[186]) - , main_sel_op_ecadd(il[187]) - , main_sel_op_emit_l2_to_l1_msg(il[188]) - , main_sel_op_emit_note_hash(il[189]) - , main_sel_op_emit_nullifier(il[190]) - , main_sel_op_emit_unencrypted_log(il[191]) - , main_sel_op_eq(il[192]) - , main_sel_op_external_call(il[193]) - , main_sel_op_external_return(il[194]) - , main_sel_op_external_revert(il[195]) - , main_sel_op_fdiv(il[196]) - , main_sel_op_fee_per_da_gas(il[197]) - , main_sel_op_fee_per_l2_gas(il[198]) - , main_sel_op_function_selector(il[199]) - , main_sel_op_get_contract_instance(il[200]) - , main_sel_op_internal_call(il[201]) - , main_sel_op_internal_return(il[202]) - , main_sel_op_jump(il[203]) - , main_sel_op_jumpi(il[204]) - , main_sel_op_keccak(il[205]) - , main_sel_op_l1_to_l2_msg_exists(il[206]) - , main_sel_op_l2gasleft(il[207]) - , main_sel_op_lt(il[208]) - , main_sel_op_lte(il[209]) - , main_sel_op_mov(il[210]) - , main_sel_op_msm(il[211]) - , main_sel_op_mul(il[212]) - , main_sel_op_not(il[213]) - , main_sel_op_note_hash_exists(il[214]) - , main_sel_op_nullifier_exists(il[215]) - , main_sel_op_or(il[216]) - , main_sel_op_pedersen(il[217]) - , main_sel_op_pedersen_commit(il[218]) - , main_sel_op_poseidon2(il[219]) - , main_sel_op_radix_le(il[220]) - , main_sel_op_sender(il[221]) - , main_sel_op_set(il[222]) - , main_sel_op_sha256(il[223]) - , main_sel_op_shl(il[224]) - , main_sel_op_shr(il[225]) - , main_sel_op_sload(il[226]) - , main_sel_op_sstore(il[227]) - , main_sel_op_storage_address(il[228]) - , main_sel_op_sub(il[229]) - , main_sel_op_timestamp(il[230]) - , main_sel_op_transaction_fee(il[231]) - , main_sel_op_version(il[232]) - , main_sel_op_xor(il[233]) - , main_sel_q_kernel_lookup(il[234]) - , main_sel_q_kernel_output_lookup(il[235]) - , main_sel_resolve_ind_addr_a(il[236]) - , main_sel_resolve_ind_addr_b(il[237]) - , main_sel_resolve_ind_addr_c(il[238]) - , main_sel_resolve_ind_addr_d(il[239]) - , main_sel_returndata(il[240]) - , main_sel_rng_16(il[241]) - , main_sel_rng_8(il[242]) - , main_sel_slice_gadget(il[243]) - , main_side_effect_counter(il[244]) - , main_sload_write_offset(il[245]) - , main_space_id(il[246]) - , main_sstore_write_offset(il[247]) - , main_tag_err(il[248]) - , main_w_in_tag(il[249]) - , mem_addr(il[250]) - , mem_clk(il[251]) - , mem_diff(il[252]) - , mem_glob_addr(il[253]) - , mem_last(il[254]) - , mem_lastAccess(il[255]) - , mem_one_min_inv(il[256]) - , mem_r_in_tag(il[257]) - , mem_rw(il[258]) - , mem_sel_mem(il[259]) - , mem_sel_mov_ia_to_ic(il[260]) - , mem_sel_mov_ib_to_ic(il[261]) - , mem_sel_op_a(il[262]) - , mem_sel_op_b(il[263]) - , mem_sel_op_c(il[264]) - , mem_sel_op_cmov(il[265]) - , mem_sel_op_d(il[266]) - , mem_sel_op_poseidon_read_a(il[267]) - , mem_sel_op_poseidon_read_b(il[268]) - , mem_sel_op_poseidon_read_c(il[269]) - , mem_sel_op_poseidon_read_d(il[270]) - , mem_sel_op_poseidon_write_a(il[271]) - , mem_sel_op_poseidon_write_b(il[272]) - , mem_sel_op_poseidon_write_c(il[273]) - , mem_sel_op_poseidon_write_d(il[274]) - , mem_sel_op_slice(il[275]) - , mem_sel_resolve_ind_addr_a(il[276]) - , mem_sel_resolve_ind_addr_b(il[277]) - , mem_sel_resolve_ind_addr_c(il[278]) - , mem_sel_resolve_ind_addr_d(il[279]) - , mem_sel_rng_chk(il[280]) - , mem_skip_check_tag(il[281]) - , mem_space_id(il[282]) - , mem_tag(il[283]) - , mem_tag_err(il[284]) - , mem_tsp(il[285]) - , mem_val(il[286]) - , mem_w_in_tag(il[287]) - , pedersen_clk(il[288]) - , pedersen_input(il[289]) - , pedersen_output(il[290]) - , pedersen_sel_pedersen(il[291]) - , poseidon2_B_10_0(il[292]) - , poseidon2_B_10_1(il[293]) - , poseidon2_B_10_2(il[294]) - , poseidon2_B_10_3(il[295]) - , poseidon2_B_11_0(il[296]) - , poseidon2_B_11_1(il[297]) - , poseidon2_B_11_2(il[298]) - , poseidon2_B_11_3(il[299]) - , poseidon2_B_12_0(il[300]) - , poseidon2_B_12_1(il[301]) - , poseidon2_B_12_2(il[302]) - , poseidon2_B_12_3(il[303]) - , poseidon2_B_13_0(il[304]) - , poseidon2_B_13_1(il[305]) - , poseidon2_B_13_2(il[306]) - , poseidon2_B_13_3(il[307]) - , poseidon2_B_14_0(il[308]) - , poseidon2_B_14_1(il[309]) - , poseidon2_B_14_2(il[310]) - , poseidon2_B_14_3(il[311]) - , poseidon2_B_15_0(il[312]) - , poseidon2_B_15_1(il[313]) - , poseidon2_B_15_2(il[314]) - , poseidon2_B_15_3(il[315]) - , poseidon2_B_16_0(il[316]) - , poseidon2_B_16_1(il[317]) - , poseidon2_B_16_2(il[318]) - , poseidon2_B_16_3(il[319]) - , poseidon2_B_17_0(il[320]) - , poseidon2_B_17_1(il[321]) - , poseidon2_B_17_2(il[322]) - , poseidon2_B_17_3(il[323]) - , poseidon2_B_18_0(il[324]) - , poseidon2_B_18_1(il[325]) - , poseidon2_B_18_2(il[326]) - , poseidon2_B_18_3(il[327]) - , poseidon2_B_19_0(il[328]) - , poseidon2_B_19_1(il[329]) - , poseidon2_B_19_2(il[330]) - , poseidon2_B_19_3(il[331]) - , poseidon2_B_20_0(il[332]) - , poseidon2_B_20_1(il[333]) - , poseidon2_B_20_2(il[334]) - , poseidon2_B_20_3(il[335]) - , poseidon2_B_21_0(il[336]) - , poseidon2_B_21_1(il[337]) - , poseidon2_B_21_2(il[338]) - , poseidon2_B_21_3(il[339]) - , poseidon2_B_22_0(il[340]) - , poseidon2_B_22_1(il[341]) - , poseidon2_B_22_2(il[342]) - , poseidon2_B_22_3(il[343]) - , poseidon2_B_23_0(il[344]) - , poseidon2_B_23_1(il[345]) - , poseidon2_B_23_2(il[346]) - , poseidon2_B_23_3(il[347]) - , poseidon2_B_24_0(il[348]) - , poseidon2_B_24_1(il[349]) - , poseidon2_B_24_2(il[350]) - , poseidon2_B_24_3(il[351]) - , poseidon2_B_25_0(il[352]) - , poseidon2_B_25_1(il[353]) - , poseidon2_B_25_2(il[354]) - , poseidon2_B_25_3(il[355]) - , poseidon2_B_26_0(il[356]) - , poseidon2_B_26_1(il[357]) - , poseidon2_B_26_2(il[358]) - , poseidon2_B_26_3(il[359]) - , poseidon2_B_27_0(il[360]) - , poseidon2_B_27_1(il[361]) - , poseidon2_B_27_2(il[362]) - , poseidon2_B_27_3(il[363]) - , poseidon2_B_28_0(il[364]) - , poseidon2_B_28_1(il[365]) - , poseidon2_B_28_2(il[366]) - , poseidon2_B_28_3(il[367]) - , poseidon2_B_29_0(il[368]) - , poseidon2_B_29_1(il[369]) - , poseidon2_B_29_2(il[370]) - , poseidon2_B_29_3(il[371]) - , poseidon2_B_30_0(il[372]) - , poseidon2_B_30_1(il[373]) - , poseidon2_B_30_2(il[374]) - , poseidon2_B_30_3(il[375]) - , poseidon2_B_31_0(il[376]) - , poseidon2_B_31_1(il[377]) - , poseidon2_B_31_2(il[378]) - , poseidon2_B_31_3(il[379]) - , poseidon2_B_32_0(il[380]) - , poseidon2_B_32_1(il[381]) - , poseidon2_B_32_2(il[382]) - , poseidon2_B_32_3(il[383]) - , poseidon2_B_33_0(il[384]) - , poseidon2_B_33_1(il[385]) - , poseidon2_B_33_2(il[386]) - , poseidon2_B_33_3(il[387]) - , poseidon2_B_34_0(il[388]) - , poseidon2_B_34_1(il[389]) - , poseidon2_B_34_2(il[390]) - , poseidon2_B_34_3(il[391]) - , poseidon2_B_35_0(il[392]) - , poseidon2_B_35_1(il[393]) - , poseidon2_B_35_2(il[394]) - , poseidon2_B_35_3(il[395]) - , poseidon2_B_36_0(il[396]) - , poseidon2_B_36_1(il[397]) - , poseidon2_B_36_2(il[398]) - , poseidon2_B_36_3(il[399]) - , poseidon2_B_37_0(il[400]) - , poseidon2_B_37_1(il[401]) - , poseidon2_B_37_2(il[402]) - , poseidon2_B_37_3(il[403]) - , poseidon2_B_38_0(il[404]) - , poseidon2_B_38_1(il[405]) - , poseidon2_B_38_2(il[406]) - , poseidon2_B_38_3(il[407]) - , poseidon2_B_39_0(il[408]) - , poseidon2_B_39_1(il[409]) - , poseidon2_B_39_2(il[410]) - , poseidon2_B_39_3(il[411]) - , poseidon2_B_40_0(il[412]) - , poseidon2_B_40_1(il[413]) - , poseidon2_B_40_2(il[414]) - , poseidon2_B_40_3(il[415]) - , poseidon2_B_41_0(il[416]) - , poseidon2_B_41_1(il[417]) - , poseidon2_B_41_2(il[418]) - , poseidon2_B_41_3(il[419]) - , poseidon2_B_42_0(il[420]) - , poseidon2_B_42_1(il[421]) - , poseidon2_B_42_2(il[422]) - , poseidon2_B_42_3(il[423]) - , poseidon2_B_43_0(il[424]) - , poseidon2_B_43_1(il[425]) - , poseidon2_B_43_2(il[426]) - , poseidon2_B_43_3(il[427]) - , poseidon2_B_44_0(il[428]) - , poseidon2_B_44_1(il[429]) - , poseidon2_B_44_2(il[430]) - , poseidon2_B_44_3(il[431]) - , poseidon2_B_45_0(il[432]) - , poseidon2_B_45_1(il[433]) - , poseidon2_B_45_2(il[434]) - , poseidon2_B_45_3(il[435]) - , poseidon2_B_46_0(il[436]) - , poseidon2_B_46_1(il[437]) - , poseidon2_B_46_2(il[438]) - , poseidon2_B_46_3(il[439]) - , poseidon2_B_47_0(il[440]) - , poseidon2_B_47_1(il[441]) - , poseidon2_B_47_2(il[442]) - , poseidon2_B_47_3(il[443]) - , poseidon2_B_48_0(il[444]) - , poseidon2_B_48_1(il[445]) - , poseidon2_B_48_2(il[446]) - , poseidon2_B_48_3(il[447]) - , poseidon2_B_49_0(il[448]) - , poseidon2_B_49_1(il[449]) - , poseidon2_B_49_2(il[450]) - , poseidon2_B_49_3(il[451]) - , poseidon2_B_4_0(il[452]) - , poseidon2_B_4_1(il[453]) - , poseidon2_B_4_2(il[454]) - , poseidon2_B_4_3(il[455]) - , poseidon2_B_50_0(il[456]) - , poseidon2_B_50_1(il[457]) - , poseidon2_B_50_2(il[458]) - , poseidon2_B_50_3(il[459]) - , poseidon2_B_51_0(il[460]) - , poseidon2_B_51_1(il[461]) - , poseidon2_B_51_2(il[462]) - , poseidon2_B_51_3(il[463]) - , poseidon2_B_52_0(il[464]) - , poseidon2_B_52_1(il[465]) - , poseidon2_B_52_2(il[466]) - , poseidon2_B_52_3(il[467]) - , poseidon2_B_53_0(il[468]) - , poseidon2_B_53_1(il[469]) - , poseidon2_B_53_2(il[470]) - , poseidon2_B_53_3(il[471]) - , poseidon2_B_54_0(il[472]) - , poseidon2_B_54_1(il[473]) - , poseidon2_B_54_2(il[474]) - , poseidon2_B_54_3(il[475]) - , poseidon2_B_55_0(il[476]) - , poseidon2_B_55_1(il[477]) - , poseidon2_B_55_2(il[478]) - , poseidon2_B_55_3(il[479]) - , poseidon2_B_56_0(il[480]) - , poseidon2_B_56_1(il[481]) - , poseidon2_B_56_2(il[482]) - , poseidon2_B_56_3(il[483]) - , poseidon2_B_57_0(il[484]) - , poseidon2_B_57_1(il[485]) - , poseidon2_B_57_2(il[486]) - , poseidon2_B_57_3(il[487]) - , poseidon2_B_58_0(il[488]) - , poseidon2_B_58_1(il[489]) - , poseidon2_B_58_2(il[490]) - , poseidon2_B_58_3(il[491]) - , poseidon2_B_59_0(il[492]) - , poseidon2_B_59_1(il[493]) - , poseidon2_B_59_2(il[494]) - , poseidon2_B_59_3(il[495]) - , poseidon2_B_5_0(il[496]) - , poseidon2_B_5_1(il[497]) - , poseidon2_B_5_2(il[498]) - , poseidon2_B_5_3(il[499]) - , poseidon2_B_6_0(il[500]) - , poseidon2_B_6_1(il[501]) - , poseidon2_B_6_2(il[502]) - , poseidon2_B_6_3(il[503]) - , poseidon2_B_7_0(il[504]) - , poseidon2_B_7_1(il[505]) - , poseidon2_B_7_2(il[506]) - , poseidon2_B_7_3(il[507]) - , poseidon2_B_8_0(il[508]) - , poseidon2_B_8_1(il[509]) - , poseidon2_B_8_2(il[510]) - , poseidon2_B_8_3(il[511]) - , poseidon2_B_9_0(il[512]) - , poseidon2_B_9_1(il[513]) - , poseidon2_B_9_2(il[514]) - , poseidon2_B_9_3(il[515]) - , poseidon2_EXT_LAYER_4(il[516]) - , poseidon2_EXT_LAYER_5(il[517]) - , poseidon2_EXT_LAYER_6(il[518]) - , poseidon2_EXT_LAYER_7(il[519]) - , poseidon2_T_0_4(il[520]) - , poseidon2_T_0_5(il[521]) - , poseidon2_T_0_6(il[522]) - , poseidon2_T_0_7(il[523]) - , poseidon2_T_1_4(il[524]) - , poseidon2_T_1_5(il[525]) - , poseidon2_T_1_6(il[526]) - , poseidon2_T_1_7(il[527]) - , poseidon2_T_2_4(il[528]) - , poseidon2_T_2_5(il[529]) - , poseidon2_T_2_6(il[530]) - , poseidon2_T_2_7(il[531]) - , poseidon2_T_3_4(il[532]) - , poseidon2_T_3_5(il[533]) - , poseidon2_T_3_6(il[534]) - , poseidon2_T_3_7(il[535]) - , poseidon2_T_60_4(il[536]) - , poseidon2_T_60_5(il[537]) - , poseidon2_T_60_6(il[538]) - , poseidon2_T_60_7(il[539]) - , poseidon2_T_61_4(il[540]) - , poseidon2_T_61_5(il[541]) - , poseidon2_T_61_6(il[542]) - , poseidon2_T_61_7(il[543]) - , poseidon2_T_62_4(il[544]) - , poseidon2_T_62_5(il[545]) - , poseidon2_T_62_6(il[546]) - , poseidon2_T_62_7(il[547]) - , poseidon2_T_63_4(il[548]) - , poseidon2_T_63_5(il[549]) - , poseidon2_T_63_6(il[550]) - , poseidon2_T_63_7(il[551]) - , poseidon2_a_0(il[552]) - , poseidon2_a_1(il[553]) - , poseidon2_a_2(il[554]) - , poseidon2_a_3(il[555]) - , poseidon2_b_0(il[556]) - , poseidon2_b_1(il[557]) - , poseidon2_b_2(il[558]) - , poseidon2_b_3(il[559]) - , poseidon2_clk(il[560]) - , poseidon2_input_addr(il[561]) - , poseidon2_mem_addr_read_a(il[562]) - , poseidon2_mem_addr_read_b(il[563]) - , poseidon2_mem_addr_read_c(il[564]) - , poseidon2_mem_addr_read_d(il[565]) - , poseidon2_mem_addr_write_a(il[566]) - , poseidon2_mem_addr_write_b(il[567]) - , poseidon2_mem_addr_write_c(il[568]) - , poseidon2_mem_addr_write_d(il[569]) - , poseidon2_output_addr(il[570]) - , poseidon2_sel_poseidon_perm(il[571]) - , range_check_alu_rng_chk(il[572]) - , range_check_clk(il[573]) - , range_check_cmp_hi_bits_rng_chk(il[574]) - , range_check_cmp_lo_bits_rng_chk(il[575]) - , range_check_dyn_diff(il[576]) - , range_check_dyn_rng_chk_bits(il[577]) - , range_check_dyn_rng_chk_pow_2(il[578]) - , range_check_gas_da_rng_chk(il[579]) - , range_check_gas_l2_rng_chk(il[580]) - , range_check_is_lte_u112(il[581]) - , range_check_is_lte_u128(il[582]) - , range_check_is_lte_u16(il[583]) - , range_check_is_lte_u32(il[584]) - , range_check_is_lte_u48(il[585]) - , range_check_is_lte_u64(il[586]) - , range_check_is_lte_u80(il[587]) - , range_check_is_lte_u96(il[588]) - , range_check_mem_rng_chk(il[589]) - , range_check_rng_chk_bits(il[590]) - , range_check_sel_lookup_0(il[591]) - , range_check_sel_lookup_1(il[592]) - , range_check_sel_lookup_2(il[593]) - , range_check_sel_lookup_3(il[594]) - , range_check_sel_lookup_4(il[595]) - , range_check_sel_lookup_5(il[596]) - , range_check_sel_lookup_6(il[597]) - , range_check_sel_rng_chk(il[598]) - , range_check_u16_r0(il[599]) - , range_check_u16_r1(il[600]) - , range_check_u16_r2(il[601]) - , range_check_u16_r3(il[602]) - , range_check_u16_r4(il[603]) - , range_check_u16_r5(il[604]) - , range_check_u16_r6(il[605]) - , range_check_u16_r7(il[606]) - , range_check_value(il[607]) - , sha256_clk(il[608]) - , sha256_input(il[609]) - , sha256_output(il[610]) - , sha256_sel_sha256_compression(il[611]) - , sha256_state(il[612]) - , slice_addr(il[613]) - , slice_clk(il[614]) - , slice_cnt(il[615]) - , slice_col_offset(il[616]) - , slice_one_min_inv(il[617]) - , slice_sel_cd_cpy(il[618]) - , slice_sel_mem_active(il[619]) - , slice_sel_return(il[620]) - , slice_sel_start(il[621]) - , slice_space_id(il[622]) - , slice_val(il[623]) - , lookup_rng_chk_pow_2_counts(il[624]) - , lookup_rng_chk_diff_counts(il[625]) - , lookup_rng_chk_0_counts(il[626]) - , lookup_rng_chk_1_counts(il[627]) - , lookup_rng_chk_2_counts(il[628]) - , lookup_rng_chk_3_counts(il[629]) - , lookup_rng_chk_4_counts(il[630]) - , lookup_rng_chk_5_counts(il[631]) - , lookup_rng_chk_6_counts(il[632]) - , lookup_rng_chk_7_counts(il[633]) - , lookup_pow_2_0_counts(il[634]) - , lookup_pow_2_1_counts(il[635]) - , lookup_byte_lengths_counts(il[636]) - , lookup_byte_operations_counts(il[637]) - , lookup_opcode_gas_counts(il[638]) - , kernel_output_lookup_counts(il[639]) - , lookup_into_kernel_counts(il[640]) - , lookup_cd_value_counts(il[641]) - , lookup_ret_value_counts(il[642]) - , incl_main_tag_err_counts(il[643]) - , incl_mem_tag_err_counts(il[644]) - , perm_rng_mem_inv(il[645]) - , perm_rng_cmp_lo_inv(il[646]) - , perm_rng_cmp_hi_inv(il[647]) - , perm_rng_alu_inv(il[648]) - , perm_cmp_alu_inv(il[649]) - , perm_rng_gas_l2_inv(il[650]) - , perm_rng_gas_da_inv(il[651]) - , perm_pos_mem_read_a_inv(il[652]) - , perm_pos_mem_read_b_inv(il[653]) - , perm_pos_mem_read_c_inv(il[654]) - , perm_pos_mem_read_d_inv(il[655]) - , perm_pos_mem_write_a_inv(il[656]) - , perm_pos_mem_write_b_inv(il[657]) - , perm_pos_mem_write_c_inv(il[658]) - , perm_pos_mem_write_d_inv(il[659]) - , perm_slice_mem_inv(il[660]) - , perm_main_alu_inv(il[661]) - , perm_main_bin_inv(il[662]) - , perm_main_conv_inv(il[663]) - , perm_main_pos2_perm_inv(il[664]) - , perm_main_pedersen_inv(il[665]) - , perm_main_slice_inv(il[666]) - , perm_main_mem_a_inv(il[667]) - , perm_main_mem_b_inv(il[668]) - , perm_main_mem_c_inv(il[669]) - , perm_main_mem_d_inv(il[670]) - , perm_main_mem_ind_addr_a_inv(il[671]) - , perm_main_mem_ind_addr_b_inv(il[672]) - , perm_main_mem_ind_addr_c_inv(il[673]) - , perm_main_mem_ind_addr_d_inv(il[674]) - , lookup_rng_chk_pow_2_inv(il[675]) - , lookup_rng_chk_diff_inv(il[676]) - , lookup_rng_chk_0_inv(il[677]) - , lookup_rng_chk_1_inv(il[678]) - , lookup_rng_chk_2_inv(il[679]) - , lookup_rng_chk_3_inv(il[680]) - , lookup_rng_chk_4_inv(il[681]) - , lookup_rng_chk_5_inv(il[682]) - , lookup_rng_chk_6_inv(il[683]) - , lookup_rng_chk_7_inv(il[684]) - , lookup_pow_2_0_inv(il[685]) - , lookup_pow_2_1_inv(il[686]) - , lookup_byte_lengths_inv(il[687]) - , lookup_byte_operations_inv(il[688]) - , lookup_opcode_gas_inv(il[689]) - , kernel_output_lookup_inv(il[690]) - , lookup_into_kernel_inv(il[691]) - , lookup_cd_value_inv(il[692]) - , lookup_ret_value_inv(il[693]) - , incl_main_tag_err_inv(il[694]) - , incl_mem_tag_err_inv(il[695]) - , binary_acc_ia_shift(il[696]) - , binary_acc_ib_shift(il[697]) - , binary_acc_ic_shift(il[698]) - , binary_mem_tag_ctr_shift(il[699]) - , binary_op_id_shift(il[700]) - , cmp_a_hi_shift(il[701]) - , cmp_a_lo_shift(il[702]) - , cmp_b_hi_shift(il[703]) - , cmp_b_lo_shift(il[704]) - , cmp_cmp_rng_ctr_shift(il[705]) - , cmp_op_gt_shift(il[706]) - , cmp_p_sub_a_hi_shift(il[707]) - , cmp_p_sub_a_lo_shift(il[708]) - , cmp_p_sub_b_hi_shift(il[709]) - , cmp_p_sub_b_lo_shift(il[710]) - , cmp_sel_rng_chk_shift(il[711]) - , main_da_gas_remaining_shift(il[712]) - , main_emit_l2_to_l1_msg_write_offset_shift(il[713]) - , main_emit_note_hash_write_offset_shift(il[714]) - , main_emit_nullifier_write_offset_shift(il[715]) - , main_emit_unencrypted_log_write_offset_shift(il[716]) - , main_internal_return_ptr_shift(il[717]) - , main_l1_to_l2_msg_exists_write_offset_shift(il[718]) - , main_l2_gas_remaining_shift(il[719]) - , main_note_hash_exist_write_offset_shift(il[720]) - , main_nullifier_exists_write_offset_shift(il[721]) - , main_nullifier_non_exists_write_offset_shift(il[722]) - , main_pc_shift(il[723]) - , main_sel_execution_row_shift(il[724]) - , main_side_effect_counter_shift(il[725]) - , main_sload_write_offset_shift(il[726]) - , main_sstore_write_offset_shift(il[727]) - , mem_glob_addr_shift(il[728]) - , mem_rw_shift(il[729]) - , mem_sel_mem_shift(il[730]) - , mem_tag_shift(il[731]) - , mem_tsp_shift(il[732]) - , mem_val_shift(il[733]) - , slice_addr_shift(il[734]) - , slice_clk_shift(il[735]) - , slice_cnt_shift(il[736]) - , slice_col_offset_shift(il[737]) - , slice_sel_cd_cpy_shift(il[738]) - , slice_sel_mem_active_shift(il[739]) - , slice_sel_return_shift(il[740]) - , slice_sel_start_shift(il[741]) - , slice_space_id_shift(il[742]) + , alu_borrow(il[26]) + , alu_cf(il[27]) + , alu_clk(il[28]) + , alu_cmp_rng_ctr(il[29]) + , alu_div_u16_r0(il[30]) + , alu_div_u16_r1(il[31]) + , alu_div_u16_r2(il[32]) + , alu_div_u16_r3(il[33]) + , alu_div_u16_r4(il[34]) + , alu_div_u16_r5(il[35]) + , alu_div_u16_r6(il[36]) + , alu_div_u16_r7(il[37]) + , alu_divisor_hi(il[38]) + , alu_divisor_lo(il[39]) + , alu_ff_tag(il[40]) + , alu_ia(il[41]) + , alu_ib(il[42]) + , alu_ic(il[43]) + , alu_in_tag(il[44]) + , alu_op_add(il[45]) + , alu_op_cast(il[46]) + , alu_op_cast_prev(il[47]) + , alu_op_div(il[48]) + , alu_op_div_a_lt_b(il[49]) + , alu_op_div_std(il[50]) + , alu_op_eq(il[51]) + , alu_op_eq_diff_inv(il[52]) + , alu_op_lt(il[53]) + , alu_op_lte(il[54]) + , alu_op_mul(il[55]) + , alu_op_not(il[56]) + , alu_op_shl(il[57]) + , alu_op_shr(il[58]) + , alu_op_sub(il[59]) + , alu_p_a_borrow(il[60]) + , alu_p_b_borrow(il[61]) + , alu_p_sub_a_hi(il[62]) + , alu_p_sub_a_lo(il[63]) + , alu_p_sub_b_hi(il[64]) + , alu_p_sub_b_lo(il[65]) + , alu_partial_prod_hi(il[66]) + , alu_partial_prod_lo(il[67]) + , alu_quotient_hi(il[68]) + , alu_quotient_lo(il[69]) + , alu_remainder(il[70]) + , alu_res_hi(il[71]) + , alu_res_lo(il[72]) + , alu_sel_alu(il[73]) + , alu_sel_cmp(il[74]) + , alu_sel_div_rng_chk(il[75]) + , alu_sel_rng_chk(il[76]) + , alu_sel_rng_chk_lookup(il[77]) + , alu_sel_shift_which(il[78]) + , alu_shift_lt_bit_len(il[79]) + , alu_t_sub_s_bits(il[80]) + , alu_two_pow_s(il[81]) + , alu_two_pow_t_sub_s(il[82]) + , alu_u128_tag(il[83]) + , alu_u16_r0(il[84]) + , alu_u16_r1(il[85]) + , alu_u16_r10(il[86]) + , alu_u16_r11(il[87]) + , alu_u16_r12(il[88]) + , alu_u16_r13(il[89]) + , alu_u16_r14(il[90]) + , alu_u16_r2(il[91]) + , alu_u16_r3(il[92]) + , alu_u16_r4(il[93]) + , alu_u16_r5(il[94]) + , alu_u16_r6(il[95]) + , alu_u16_r7(il[96]) + , alu_u16_r8(il[97]) + , alu_u16_r9(il[98]) + , alu_u16_tag(il[99]) + , alu_u32_tag(il[100]) + , alu_u64_tag(il[101]) + , alu_u8_r0(il[102]) + , alu_u8_r1(il[103]) + , alu_u8_tag(il[104]) + , binary_acc_ia(il[105]) + , binary_acc_ib(il[106]) + , binary_acc_ic(il[107]) + , binary_clk(il[108]) + , binary_ia_bytes(il[109]) + , binary_ib_bytes(il[110]) + , binary_ic_bytes(il[111]) + , binary_in_tag(il[112]) + , binary_mem_tag_ctr(il[113]) + , binary_mem_tag_ctr_inv(il[114]) + , binary_op_id(il[115]) + , binary_sel_bin(il[116]) + , binary_start(il[117]) + , conversion_clk(il[118]) + , conversion_input(il[119]) + , conversion_num_limbs(il[120]) + , conversion_radix(il[121]) + , conversion_sel_to_radix_le(il[122]) + , keccakf1600_clk(il[123]) + , keccakf1600_input(il[124]) + , keccakf1600_output(il[125]) + , keccakf1600_sel_keccakf1600(il[126]) + , main_abs_da_rem_gas_hi(il[127]) + , main_abs_da_rem_gas_lo(il[128]) + , main_abs_l2_rem_gas_hi(il[129]) + , main_abs_l2_rem_gas_lo(il[130]) + , main_alu_in_tag(il[131]) + , main_base_da_gas_op_cost(il[132]) + , main_base_l2_gas_op_cost(il[133]) + , main_bin_op_id(il[134]) + , main_call_ptr(il[135]) + , main_da_gas_remaining(il[136]) + , main_da_out_of_gas(il[137]) + , main_dyn_da_gas_op_cost(il[138]) + , main_dyn_gas_multiplier(il[139]) + , main_dyn_l2_gas_op_cost(il[140]) + , main_emit_l2_to_l1_msg_write_offset(il[141]) + , main_emit_note_hash_write_offset(il[142]) + , main_emit_nullifier_write_offset(il[143]) + , main_emit_unencrypted_log_write_offset(il[144]) + , main_ia(il[145]) + , main_ib(il[146]) + , main_ic(il[147]) + , main_id(il[148]) + , main_id_zero(il[149]) + , main_ind_addr_a(il[150]) + , main_ind_addr_b(il[151]) + , main_ind_addr_c(il[152]) + , main_ind_addr_d(il[153]) + , main_internal_return_ptr(il[154]) + , main_inv(il[155]) + , main_kernel_in_offset(il[156]) + , main_kernel_out_offset(il[157]) + , main_l1_to_l2_msg_exists_write_offset(il[158]) + , main_l2_gas_remaining(il[159]) + , main_l2_out_of_gas(il[160]) + , main_mem_addr_a(il[161]) + , main_mem_addr_b(il[162]) + , main_mem_addr_c(il[163]) + , main_mem_addr_d(il[164]) + , main_note_hash_exist_write_offset(il[165]) + , main_nullifier_exists_write_offset(il[166]) + , main_nullifier_non_exists_write_offset(il[167]) + , main_op_err(il[168]) + , main_opcode_val(il[169]) + , main_pc(il[170]) + , main_r_in_tag(il[171]) + , main_rwa(il[172]) + , main_rwb(il[173]) + , main_rwc(il[174]) + , main_rwd(il[175]) + , main_sel_alu(il[176]) + , main_sel_bin(il[177]) + , main_sel_calldata(il[178]) + , main_sel_execution_row(il[179]) + , main_sel_kernel_inputs(il[180]) + , main_sel_kernel_out(il[181]) + , main_sel_last(il[182]) + , main_sel_mem_op_a(il[183]) + , main_sel_mem_op_b(il[184]) + , main_sel_mem_op_c(il[185]) + , main_sel_mem_op_d(il[186]) + , main_sel_mov_ia_to_ic(il[187]) + , main_sel_mov_ib_to_ic(il[188]) + , main_sel_op_add(il[189]) + , main_sel_op_address(il[190]) + , main_sel_op_and(il[191]) + , main_sel_op_block_number(il[192]) + , main_sel_op_calldata_copy(il[193]) + , main_sel_op_cast(il[194]) + , main_sel_op_chain_id(il[195]) + , main_sel_op_cmov(il[196]) + , main_sel_op_coinbase(il[197]) + , main_sel_op_dagasleft(il[198]) + , main_sel_op_div(il[199]) + , main_sel_op_ecadd(il[200]) + , main_sel_op_emit_l2_to_l1_msg(il[201]) + , main_sel_op_emit_note_hash(il[202]) + , main_sel_op_emit_nullifier(il[203]) + , main_sel_op_emit_unencrypted_log(il[204]) + , main_sel_op_eq(il[205]) + , main_sel_op_external_call(il[206]) + , main_sel_op_external_return(il[207]) + , main_sel_op_external_revert(il[208]) + , main_sel_op_fdiv(il[209]) + , main_sel_op_fee_per_da_gas(il[210]) + , main_sel_op_fee_per_l2_gas(il[211]) + , main_sel_op_function_selector(il[212]) + , main_sel_op_get_contract_instance(il[213]) + , main_sel_op_internal_call(il[214]) + , main_sel_op_internal_return(il[215]) + , main_sel_op_jump(il[216]) + , main_sel_op_jumpi(il[217]) + , main_sel_op_keccak(il[218]) + , main_sel_op_l1_to_l2_msg_exists(il[219]) + , main_sel_op_l2gasleft(il[220]) + , main_sel_op_lt(il[221]) + , main_sel_op_lte(il[222]) + , main_sel_op_mov(il[223]) + , main_sel_op_msm(il[224]) + , main_sel_op_mul(il[225]) + , main_sel_op_not(il[226]) + , main_sel_op_note_hash_exists(il[227]) + , main_sel_op_nullifier_exists(il[228]) + , main_sel_op_or(il[229]) + , main_sel_op_pedersen(il[230]) + , main_sel_op_pedersen_commit(il[231]) + , main_sel_op_poseidon2(il[232]) + , main_sel_op_radix_le(il[233]) + , main_sel_op_sender(il[234]) + , main_sel_op_set(il[235]) + , main_sel_op_sha256(il[236]) + , main_sel_op_shl(il[237]) + , main_sel_op_shr(il[238]) + , main_sel_op_sload(il[239]) + , main_sel_op_sstore(il[240]) + , main_sel_op_storage_address(il[241]) + , main_sel_op_sub(il[242]) + , main_sel_op_timestamp(il[243]) + , main_sel_op_transaction_fee(il[244]) + , main_sel_op_version(il[245]) + , main_sel_op_xor(il[246]) + , main_sel_q_kernel_lookup(il[247]) + , main_sel_q_kernel_output_lookup(il[248]) + , main_sel_resolve_ind_addr_a(il[249]) + , main_sel_resolve_ind_addr_b(il[250]) + , main_sel_resolve_ind_addr_c(il[251]) + , main_sel_resolve_ind_addr_d(il[252]) + , main_sel_returndata(il[253]) + , main_sel_rng_16(il[254]) + , main_sel_rng_8(il[255]) + , main_sel_slice_gadget(il[256]) + , main_side_effect_counter(il[257]) + , main_sload_write_offset(il[258]) + , main_space_id(il[259]) + , main_sstore_write_offset(il[260]) + , main_tag_err(il[261]) + , main_w_in_tag(il[262]) + , mem_addr(il[263]) + , mem_clk(il[264]) + , mem_diff_hi(il[265]) + , mem_diff_lo(il[266]) + , mem_diff_mid(il[267]) + , mem_glob_addr(il[268]) + , mem_last(il[269]) + , mem_lastAccess(il[270]) + , mem_one_min_inv(il[271]) + , mem_r_in_tag(il[272]) + , mem_rw(il[273]) + , mem_sel_mem(il[274]) + , mem_sel_mov_ia_to_ic(il[275]) + , mem_sel_mov_ib_to_ic(il[276]) + , mem_sel_op_a(il[277]) + , mem_sel_op_b(il[278]) + , mem_sel_op_c(il[279]) + , mem_sel_op_cmov(il[280]) + , mem_sel_op_d(il[281]) + , mem_sel_op_poseidon_read_a(il[282]) + , mem_sel_op_poseidon_read_b(il[283]) + , mem_sel_op_poseidon_read_c(il[284]) + , mem_sel_op_poseidon_read_d(il[285]) + , mem_sel_op_poseidon_write_a(il[286]) + , mem_sel_op_poseidon_write_b(il[287]) + , mem_sel_op_poseidon_write_c(il[288]) + , mem_sel_op_poseidon_write_d(il[289]) + , mem_sel_op_slice(il[290]) + , mem_sel_resolve_ind_addr_a(il[291]) + , mem_sel_resolve_ind_addr_b(il[292]) + , mem_sel_resolve_ind_addr_c(il[293]) + , mem_sel_resolve_ind_addr_d(il[294]) + , mem_sel_rng_chk(il[295]) + , mem_skip_check_tag(il[296]) + , mem_space_id(il[297]) + , mem_tag(il[298]) + , mem_tag_err(il[299]) + , mem_tsp(il[300]) + , mem_val(il[301]) + , mem_w_in_tag(il[302]) + , pedersen_clk(il[303]) + , pedersen_input(il[304]) + , pedersen_output(il[305]) + , pedersen_sel_pedersen(il[306]) + , poseidon2_B_10_0(il[307]) + , poseidon2_B_10_1(il[308]) + , poseidon2_B_10_2(il[309]) + , poseidon2_B_10_3(il[310]) + , poseidon2_B_11_0(il[311]) + , poseidon2_B_11_1(il[312]) + , poseidon2_B_11_2(il[313]) + , poseidon2_B_11_3(il[314]) + , poseidon2_B_12_0(il[315]) + , poseidon2_B_12_1(il[316]) + , poseidon2_B_12_2(il[317]) + , poseidon2_B_12_3(il[318]) + , poseidon2_B_13_0(il[319]) + , poseidon2_B_13_1(il[320]) + , poseidon2_B_13_2(il[321]) + , poseidon2_B_13_3(il[322]) + , poseidon2_B_14_0(il[323]) + , poseidon2_B_14_1(il[324]) + , poseidon2_B_14_2(il[325]) + , poseidon2_B_14_3(il[326]) + , poseidon2_B_15_0(il[327]) + , poseidon2_B_15_1(il[328]) + , poseidon2_B_15_2(il[329]) + , poseidon2_B_15_3(il[330]) + , poseidon2_B_16_0(il[331]) + , poseidon2_B_16_1(il[332]) + , poseidon2_B_16_2(il[333]) + , poseidon2_B_16_3(il[334]) + , poseidon2_B_17_0(il[335]) + , poseidon2_B_17_1(il[336]) + , poseidon2_B_17_2(il[337]) + , poseidon2_B_17_3(il[338]) + , poseidon2_B_18_0(il[339]) + , poseidon2_B_18_1(il[340]) + , poseidon2_B_18_2(il[341]) + , poseidon2_B_18_3(il[342]) + , poseidon2_B_19_0(il[343]) + , poseidon2_B_19_1(il[344]) + , poseidon2_B_19_2(il[345]) + , poseidon2_B_19_3(il[346]) + , poseidon2_B_20_0(il[347]) + , poseidon2_B_20_1(il[348]) + , poseidon2_B_20_2(il[349]) + , poseidon2_B_20_3(il[350]) + , poseidon2_B_21_0(il[351]) + , poseidon2_B_21_1(il[352]) + , poseidon2_B_21_2(il[353]) + , poseidon2_B_21_3(il[354]) + , poseidon2_B_22_0(il[355]) + , poseidon2_B_22_1(il[356]) + , poseidon2_B_22_2(il[357]) + , poseidon2_B_22_3(il[358]) + , poseidon2_B_23_0(il[359]) + , poseidon2_B_23_1(il[360]) + , poseidon2_B_23_2(il[361]) + , poseidon2_B_23_3(il[362]) + , poseidon2_B_24_0(il[363]) + , poseidon2_B_24_1(il[364]) + , poseidon2_B_24_2(il[365]) + , poseidon2_B_24_3(il[366]) + , poseidon2_B_25_0(il[367]) + , poseidon2_B_25_1(il[368]) + , poseidon2_B_25_2(il[369]) + , poseidon2_B_25_3(il[370]) + , poseidon2_B_26_0(il[371]) + , poseidon2_B_26_1(il[372]) + , poseidon2_B_26_2(il[373]) + , poseidon2_B_26_3(il[374]) + , poseidon2_B_27_0(il[375]) + , poseidon2_B_27_1(il[376]) + , poseidon2_B_27_2(il[377]) + , poseidon2_B_27_3(il[378]) + , poseidon2_B_28_0(il[379]) + , poseidon2_B_28_1(il[380]) + , poseidon2_B_28_2(il[381]) + , poseidon2_B_28_3(il[382]) + , poseidon2_B_29_0(il[383]) + , poseidon2_B_29_1(il[384]) + , poseidon2_B_29_2(il[385]) + , poseidon2_B_29_3(il[386]) + , poseidon2_B_30_0(il[387]) + , poseidon2_B_30_1(il[388]) + , poseidon2_B_30_2(il[389]) + , poseidon2_B_30_3(il[390]) + , poseidon2_B_31_0(il[391]) + , poseidon2_B_31_1(il[392]) + , poseidon2_B_31_2(il[393]) + , poseidon2_B_31_3(il[394]) + , poseidon2_B_32_0(il[395]) + , poseidon2_B_32_1(il[396]) + , poseidon2_B_32_2(il[397]) + , poseidon2_B_32_3(il[398]) + , poseidon2_B_33_0(il[399]) + , poseidon2_B_33_1(il[400]) + , poseidon2_B_33_2(il[401]) + , poseidon2_B_33_3(il[402]) + , poseidon2_B_34_0(il[403]) + , poseidon2_B_34_1(il[404]) + , poseidon2_B_34_2(il[405]) + , poseidon2_B_34_3(il[406]) + , poseidon2_B_35_0(il[407]) + , poseidon2_B_35_1(il[408]) + , poseidon2_B_35_2(il[409]) + , poseidon2_B_35_3(il[410]) + , poseidon2_B_36_0(il[411]) + , poseidon2_B_36_1(il[412]) + , poseidon2_B_36_2(il[413]) + , poseidon2_B_36_3(il[414]) + , poseidon2_B_37_0(il[415]) + , poseidon2_B_37_1(il[416]) + , poseidon2_B_37_2(il[417]) + , poseidon2_B_37_3(il[418]) + , poseidon2_B_38_0(il[419]) + , poseidon2_B_38_1(il[420]) + , poseidon2_B_38_2(il[421]) + , poseidon2_B_38_3(il[422]) + , poseidon2_B_39_0(il[423]) + , poseidon2_B_39_1(il[424]) + , poseidon2_B_39_2(il[425]) + , poseidon2_B_39_3(il[426]) + , poseidon2_B_40_0(il[427]) + , poseidon2_B_40_1(il[428]) + , poseidon2_B_40_2(il[429]) + , poseidon2_B_40_3(il[430]) + , poseidon2_B_41_0(il[431]) + , poseidon2_B_41_1(il[432]) + , poseidon2_B_41_2(il[433]) + , poseidon2_B_41_3(il[434]) + , poseidon2_B_42_0(il[435]) + , poseidon2_B_42_1(il[436]) + , poseidon2_B_42_2(il[437]) + , poseidon2_B_42_3(il[438]) + , poseidon2_B_43_0(il[439]) + , poseidon2_B_43_1(il[440]) + , poseidon2_B_43_2(il[441]) + , poseidon2_B_43_3(il[442]) + , poseidon2_B_44_0(il[443]) + , poseidon2_B_44_1(il[444]) + , poseidon2_B_44_2(il[445]) + , poseidon2_B_44_3(il[446]) + , poseidon2_B_45_0(il[447]) + , poseidon2_B_45_1(il[448]) + , poseidon2_B_45_2(il[449]) + , poseidon2_B_45_3(il[450]) + , poseidon2_B_46_0(il[451]) + , poseidon2_B_46_1(il[452]) + , poseidon2_B_46_2(il[453]) + , poseidon2_B_46_3(il[454]) + , poseidon2_B_47_0(il[455]) + , poseidon2_B_47_1(il[456]) + , poseidon2_B_47_2(il[457]) + , poseidon2_B_47_3(il[458]) + , poseidon2_B_48_0(il[459]) + , poseidon2_B_48_1(il[460]) + , poseidon2_B_48_2(il[461]) + , poseidon2_B_48_3(il[462]) + , poseidon2_B_49_0(il[463]) + , poseidon2_B_49_1(il[464]) + , poseidon2_B_49_2(il[465]) + , poseidon2_B_49_3(il[466]) + , poseidon2_B_4_0(il[467]) + , poseidon2_B_4_1(il[468]) + , poseidon2_B_4_2(il[469]) + , poseidon2_B_4_3(il[470]) + , poseidon2_B_50_0(il[471]) + , poseidon2_B_50_1(il[472]) + , poseidon2_B_50_2(il[473]) + , poseidon2_B_50_3(il[474]) + , poseidon2_B_51_0(il[475]) + , poseidon2_B_51_1(il[476]) + , poseidon2_B_51_2(il[477]) + , poseidon2_B_51_3(il[478]) + , poseidon2_B_52_0(il[479]) + , poseidon2_B_52_1(il[480]) + , poseidon2_B_52_2(il[481]) + , poseidon2_B_52_3(il[482]) + , poseidon2_B_53_0(il[483]) + , poseidon2_B_53_1(il[484]) + , poseidon2_B_53_2(il[485]) + , poseidon2_B_53_3(il[486]) + , poseidon2_B_54_0(il[487]) + , poseidon2_B_54_1(il[488]) + , poseidon2_B_54_2(il[489]) + , poseidon2_B_54_3(il[490]) + , poseidon2_B_55_0(il[491]) + , poseidon2_B_55_1(il[492]) + , poseidon2_B_55_2(il[493]) + , poseidon2_B_55_3(il[494]) + , poseidon2_B_56_0(il[495]) + , poseidon2_B_56_1(il[496]) + , poseidon2_B_56_2(il[497]) + , poseidon2_B_56_3(il[498]) + , poseidon2_B_57_0(il[499]) + , poseidon2_B_57_1(il[500]) + , poseidon2_B_57_2(il[501]) + , poseidon2_B_57_3(il[502]) + , poseidon2_B_58_0(il[503]) + , poseidon2_B_58_1(il[504]) + , poseidon2_B_58_2(il[505]) + , poseidon2_B_58_3(il[506]) + , poseidon2_B_59_0(il[507]) + , poseidon2_B_59_1(il[508]) + , poseidon2_B_59_2(il[509]) + , poseidon2_B_59_3(il[510]) + , poseidon2_B_5_0(il[511]) + , poseidon2_B_5_1(il[512]) + , poseidon2_B_5_2(il[513]) + , poseidon2_B_5_3(il[514]) + , poseidon2_B_6_0(il[515]) + , poseidon2_B_6_1(il[516]) + , poseidon2_B_6_2(il[517]) + , poseidon2_B_6_3(il[518]) + , poseidon2_B_7_0(il[519]) + , poseidon2_B_7_1(il[520]) + , poseidon2_B_7_2(il[521]) + , poseidon2_B_7_3(il[522]) + , poseidon2_B_8_0(il[523]) + , poseidon2_B_8_1(il[524]) + , poseidon2_B_8_2(il[525]) + , poseidon2_B_8_3(il[526]) + , poseidon2_B_9_0(il[527]) + , poseidon2_B_9_1(il[528]) + , poseidon2_B_9_2(il[529]) + , poseidon2_B_9_3(il[530]) + , poseidon2_EXT_LAYER_4(il[531]) + , poseidon2_EXT_LAYER_5(il[532]) + , poseidon2_EXT_LAYER_6(il[533]) + , poseidon2_EXT_LAYER_7(il[534]) + , poseidon2_T_0_4(il[535]) + , poseidon2_T_0_5(il[536]) + , poseidon2_T_0_6(il[537]) + , poseidon2_T_0_7(il[538]) + , poseidon2_T_1_4(il[539]) + , poseidon2_T_1_5(il[540]) + , poseidon2_T_1_6(il[541]) + , poseidon2_T_1_7(il[542]) + , poseidon2_T_2_4(il[543]) + , poseidon2_T_2_5(il[544]) + , poseidon2_T_2_6(il[545]) + , poseidon2_T_2_7(il[546]) + , poseidon2_T_3_4(il[547]) + , poseidon2_T_3_5(il[548]) + , poseidon2_T_3_6(il[549]) + , poseidon2_T_3_7(il[550]) + , poseidon2_T_60_4(il[551]) + , poseidon2_T_60_5(il[552]) + , poseidon2_T_60_6(il[553]) + , poseidon2_T_60_7(il[554]) + , poseidon2_T_61_4(il[555]) + , poseidon2_T_61_5(il[556]) + , poseidon2_T_61_6(il[557]) + , poseidon2_T_61_7(il[558]) + , poseidon2_T_62_4(il[559]) + , poseidon2_T_62_5(il[560]) + , poseidon2_T_62_6(il[561]) + , poseidon2_T_62_7(il[562]) + , poseidon2_T_63_4(il[563]) + , poseidon2_T_63_5(il[564]) + , poseidon2_T_63_6(il[565]) + , poseidon2_T_63_7(il[566]) + , poseidon2_a_0(il[567]) + , poseidon2_a_1(il[568]) + , poseidon2_a_2(il[569]) + , poseidon2_a_3(il[570]) + , poseidon2_b_0(il[571]) + , poseidon2_b_1(il[572]) + , poseidon2_b_2(il[573]) + , poseidon2_b_3(il[574]) + , poseidon2_clk(il[575]) + , poseidon2_input_addr(il[576]) + , poseidon2_mem_addr_read_a(il[577]) + , poseidon2_mem_addr_read_b(il[578]) + , poseidon2_mem_addr_read_c(il[579]) + , poseidon2_mem_addr_read_d(il[580]) + , poseidon2_mem_addr_write_a(il[581]) + , poseidon2_mem_addr_write_b(il[582]) + , poseidon2_mem_addr_write_c(il[583]) + , poseidon2_mem_addr_write_d(il[584]) + , poseidon2_output_addr(il[585]) + , poseidon2_sel_poseidon_perm(il[586]) + , range_check_clk(il[587]) + , range_check_dyn_diff(il[588]) + , range_check_dyn_rng_chk_bits(il[589]) + , range_check_dyn_rng_chk_pow_2(il[590]) + , range_check_is_lte_u112(il[591]) + , range_check_is_lte_u128(il[592]) + , range_check_is_lte_u16(il[593]) + , range_check_is_lte_u32(il[594]) + , range_check_is_lte_u48(il[595]) + , range_check_is_lte_u64(il[596]) + , range_check_is_lte_u80(il[597]) + , range_check_is_lte_u96(il[598]) + , range_check_rng_chk_bits(il[599]) + , range_check_sel_lookup_0(il[600]) + , range_check_sel_lookup_1(il[601]) + , range_check_sel_lookup_2(il[602]) + , range_check_sel_lookup_3(il[603]) + , range_check_sel_lookup_4(il[604]) + , range_check_sel_lookup_5(il[605]) + , range_check_sel_lookup_6(il[606]) + , range_check_sel_rng_chk(il[607]) + , range_check_u16_r0(il[608]) + , range_check_u16_r1(il[609]) + , range_check_u16_r2(il[610]) + , range_check_u16_r3(il[611]) + , range_check_u16_r4(il[612]) + , range_check_u16_r5(il[613]) + , range_check_u16_r6(il[614]) + , range_check_u16_r7(il[615]) + , range_check_value(il[616]) + , sha256_clk(il[617]) + , sha256_input(il[618]) + , sha256_output(il[619]) + , sha256_sel_sha256_compression(il[620]) + , sha256_state(il[621]) + , slice_addr(il[622]) + , slice_clk(il[623]) + , slice_cnt(il[624]) + , slice_col_offset(il[625]) + , slice_one_min_inv(il[626]) + , slice_sel_cd_cpy(il[627]) + , slice_sel_mem_active(il[628]) + , slice_sel_return(il[629]) + , slice_sel_start(il[630]) + , slice_space_id(il[631]) + , slice_val(il[632]) + , lookup_rng_chk_pow_2_counts(il[633]) + , lookup_rng_chk_diff_counts(il[634]) + , lookup_rng_chk_0_counts(il[635]) + , lookup_rng_chk_1_counts(il[636]) + , lookup_rng_chk_2_counts(il[637]) + , lookup_rng_chk_3_counts(il[638]) + , lookup_rng_chk_4_counts(il[639]) + , lookup_rng_chk_5_counts(il[640]) + , lookup_rng_chk_6_counts(il[641]) + , lookup_rng_chk_7_counts(il[642]) + , lookup_pow_2_0_counts(il[643]) + , lookup_pow_2_1_counts(il[644]) + , lookup_u8_0_counts(il[645]) + , lookup_u8_1_counts(il[646]) + , lookup_u16_0_counts(il[647]) + , lookup_u16_1_counts(il[648]) + , lookup_u16_2_counts(il[649]) + , lookup_u16_3_counts(il[650]) + , lookup_u16_4_counts(il[651]) + , lookup_u16_5_counts(il[652]) + , lookup_u16_6_counts(il[653]) + , lookup_u16_7_counts(il[654]) + , lookup_u16_8_counts(il[655]) + , lookup_u16_9_counts(il[656]) + , lookup_u16_10_counts(il[657]) + , lookup_u16_11_counts(il[658]) + , lookup_u16_12_counts(il[659]) + , lookup_u16_13_counts(il[660]) + , lookup_u16_14_counts(il[661]) + , lookup_div_u16_0_counts(il[662]) + , lookup_div_u16_1_counts(il[663]) + , lookup_div_u16_2_counts(il[664]) + , lookup_div_u16_3_counts(il[665]) + , lookup_div_u16_4_counts(il[666]) + , lookup_div_u16_5_counts(il[667]) + , lookup_div_u16_6_counts(il[668]) + , lookup_div_u16_7_counts(il[669]) + , lookup_byte_lengths_counts(il[670]) + , lookup_byte_operations_counts(il[671]) + , lookup_opcode_gas_counts(il[672]) + , range_check_l2_gas_hi_counts(il[673]) + , range_check_l2_gas_lo_counts(il[674]) + , range_check_da_gas_hi_counts(il[675]) + , range_check_da_gas_lo_counts(il[676]) + , kernel_output_lookup_counts(il[677]) + , lookup_into_kernel_counts(il[678]) + , lookup_cd_value_counts(il[679]) + , lookup_ret_value_counts(il[680]) + , incl_main_tag_err_counts(il[681]) + , incl_mem_tag_err_counts(il[682]) + , lookup_mem_rng_chk_lo_counts(il[683]) + , lookup_mem_rng_chk_mid_counts(il[684]) + , lookup_mem_rng_chk_hi_counts(il[685]) + , perm_pos_mem_read_a_inv(il[686]) + , perm_pos_mem_read_b_inv(il[687]) + , perm_pos_mem_read_c_inv(il[688]) + , perm_pos_mem_read_d_inv(il[689]) + , perm_pos_mem_write_a_inv(il[690]) + , perm_pos_mem_write_b_inv(il[691]) + , perm_pos_mem_write_c_inv(il[692]) + , perm_pos_mem_write_d_inv(il[693]) + , perm_slice_mem_inv(il[694]) + , perm_main_alu_inv(il[695]) + , perm_main_bin_inv(il[696]) + , perm_main_conv_inv(il[697]) + , perm_main_pos2_perm_inv(il[698]) + , perm_main_pedersen_inv(il[699]) + , perm_main_slice_inv(il[700]) + , perm_main_mem_a_inv(il[701]) + , perm_main_mem_b_inv(il[702]) + , perm_main_mem_c_inv(il[703]) + , perm_main_mem_d_inv(il[704]) + , perm_main_mem_ind_addr_a_inv(il[705]) + , perm_main_mem_ind_addr_b_inv(il[706]) + , perm_main_mem_ind_addr_c_inv(il[707]) + , perm_main_mem_ind_addr_d_inv(il[708]) + , lookup_rng_chk_pow_2_inv(il[709]) + , lookup_rng_chk_diff_inv(il[710]) + , lookup_rng_chk_0_inv(il[711]) + , lookup_rng_chk_1_inv(il[712]) + , lookup_rng_chk_2_inv(il[713]) + , lookup_rng_chk_3_inv(il[714]) + , lookup_rng_chk_4_inv(il[715]) + , lookup_rng_chk_5_inv(il[716]) + , lookup_rng_chk_6_inv(il[717]) + , lookup_rng_chk_7_inv(il[718]) + , lookup_pow_2_0_inv(il[719]) + , lookup_pow_2_1_inv(il[720]) + , lookup_u8_0_inv(il[721]) + , lookup_u8_1_inv(il[722]) + , lookup_u16_0_inv(il[723]) + , lookup_u16_1_inv(il[724]) + , lookup_u16_2_inv(il[725]) + , lookup_u16_3_inv(il[726]) + , lookup_u16_4_inv(il[727]) + , lookup_u16_5_inv(il[728]) + , lookup_u16_6_inv(il[729]) + , lookup_u16_7_inv(il[730]) + , lookup_u16_8_inv(il[731]) + , lookup_u16_9_inv(il[732]) + , lookup_u16_10_inv(il[733]) + , lookup_u16_11_inv(il[734]) + , lookup_u16_12_inv(il[735]) + , lookup_u16_13_inv(il[736]) + , lookup_u16_14_inv(il[737]) + , lookup_div_u16_0_inv(il[738]) + , lookup_div_u16_1_inv(il[739]) + , lookup_div_u16_2_inv(il[740]) + , lookup_div_u16_3_inv(il[741]) + , lookup_div_u16_4_inv(il[742]) + , lookup_div_u16_5_inv(il[743]) + , lookup_div_u16_6_inv(il[744]) + , lookup_div_u16_7_inv(il[745]) + , lookup_byte_lengths_inv(il[746]) + , lookup_byte_operations_inv(il[747]) + , lookup_opcode_gas_inv(il[748]) + , range_check_l2_gas_hi_inv(il[749]) + , range_check_l2_gas_lo_inv(il[750]) + , range_check_da_gas_hi_inv(il[751]) + , range_check_da_gas_lo_inv(il[752]) + , kernel_output_lookup_inv(il[753]) + , lookup_into_kernel_inv(il[754]) + , lookup_cd_value_inv(il[755]) + , lookup_ret_value_inv(il[756]) + , incl_main_tag_err_inv(il[757]) + , incl_mem_tag_err_inv(il[758]) + , lookup_mem_rng_chk_lo_inv(il[759]) + , lookup_mem_rng_chk_mid_inv(il[760]) + , lookup_mem_rng_chk_hi_inv(il[761]) + , alu_a_hi_shift(il[762]) + , alu_a_lo_shift(il[763]) + , alu_b_hi_shift(il[764]) + , alu_b_lo_shift(il[765]) + , alu_cmp_rng_ctr_shift(il[766]) + , alu_div_u16_r0_shift(il[767]) + , alu_div_u16_r1_shift(il[768]) + , alu_div_u16_r2_shift(il[769]) + , alu_div_u16_r3_shift(il[770]) + , alu_div_u16_r4_shift(il[771]) + , alu_div_u16_r5_shift(il[772]) + , alu_div_u16_r6_shift(il[773]) + , alu_div_u16_r7_shift(il[774]) + , alu_op_add_shift(il[775]) + , alu_op_cast_shift(il[776]) + , alu_op_cast_prev_shift(il[777]) + , alu_op_div_shift(il[778]) + , alu_op_mul_shift(il[779]) + , alu_op_shl_shift(il[780]) + , alu_op_shr_shift(il[781]) + , alu_op_sub_shift(il[782]) + , alu_p_sub_a_hi_shift(il[783]) + , alu_p_sub_a_lo_shift(il[784]) + , alu_p_sub_b_hi_shift(il[785]) + , alu_p_sub_b_lo_shift(il[786]) + , alu_sel_alu_shift(il[787]) + , alu_sel_cmp_shift(il[788]) + , alu_sel_div_rng_chk_shift(il[789]) + , alu_sel_rng_chk_shift(il[790]) + , alu_sel_rng_chk_lookup_shift(il[791]) + , alu_u16_r0_shift(il[792]) + , alu_u16_r1_shift(il[793]) + , alu_u16_r2_shift(il[794]) + , alu_u16_r3_shift(il[795]) + , alu_u16_r4_shift(il[796]) + , alu_u16_r5_shift(il[797]) + , alu_u16_r6_shift(il[798]) + , alu_u8_r0_shift(il[799]) + , alu_u8_r1_shift(il[800]) + , binary_acc_ia_shift(il[801]) + , binary_acc_ib_shift(il[802]) + , binary_acc_ic_shift(il[803]) + , binary_mem_tag_ctr_shift(il[804]) + , binary_op_id_shift(il[805]) + , main_da_gas_remaining_shift(il[806]) + , main_emit_l2_to_l1_msg_write_offset_shift(il[807]) + , main_emit_note_hash_write_offset_shift(il[808]) + , main_emit_nullifier_write_offset_shift(il[809]) + , main_emit_unencrypted_log_write_offset_shift(il[810]) + , main_internal_return_ptr_shift(il[811]) + , main_l1_to_l2_msg_exists_write_offset_shift(il[812]) + , main_l2_gas_remaining_shift(il[813]) + , main_note_hash_exist_write_offset_shift(il[814]) + , main_nullifier_exists_write_offset_shift(il[815]) + , main_nullifier_non_exists_write_offset_shift(il[816]) + , main_pc_shift(il[817]) + , main_sel_execution_row_shift(il[818]) + , main_side_effect_counter_shift(il[819]) + , main_sload_write_offset_shift(il[820]) + , main_sstore_write_offset_shift(il[821]) + , mem_glob_addr_shift(il[822]) + , mem_rw_shift(il[823]) + , mem_sel_mem_shift(il[824]) + , mem_tag_shift(il[825]) + , mem_tsp_shift(il[826]) + , mem_val_shift(il[827]) + , slice_addr_shift(il[828]) + , slice_clk_shift(il[829]) + , slice_cnt_shift(il[830]) + , slice_col_offset_shift(il[831]) + , slice_sel_cd_cpy_shift(il[832]) + , slice_sel_mem_active_shift(il[833]) + , slice_sel_return_shift(il[834]) + , slice_sel_start_shift(il[835]) + , slice_space_id_shift(il[836]) {} AvmFlavor::ProverPolynomials::ProverPolynomials(ProvingKey& proving_key) @@ -1336,15 +1430,10 @@ AvmFlavor::AllConstRefValues AvmFlavor::ProverPolynomials::get_row(size_t row_id poseidon2_mem_addr_write_d[row_idx], poseidon2_output_addr[row_idx], poseidon2_sel_poseidon_perm[row_idx], - range_check_alu_rng_chk[row_idx], range_check_clk[row_idx], - range_check_cmp_hi_bits_rng_chk[row_idx], - range_check_cmp_lo_bits_rng_chk[row_idx], range_check_dyn_diff[row_idx], range_check_dyn_rng_chk_bits[row_idx], range_check_dyn_rng_chk_pow_2[row_idx], - range_check_gas_da_rng_chk[row_idx], - range_check_gas_l2_rng_chk[row_idx], range_check_is_lte_u112[row_idx], range_check_is_lte_u128[row_idx], range_check_is_lte_u16[row_idx], @@ -1353,7 +1442,6 @@ AvmFlavor::AllConstRefValues AvmFlavor::ProverPolynomials::get_row(size_t row_id range_check_is_lte_u64[row_idx], range_check_is_lte_u80[row_idx], range_check_is_lte_u96[row_idx], - range_check_mem_rng_chk[row_idx], range_check_rng_chk_bits[row_idx], range_check_sel_lookup_0[row_idx], range_check_sel_lookup_1[row_idx], @@ -2083,15 +2171,10 @@ AvmFlavor::CommitmentLabels::CommitmentLabels() Base::poseidon2_mem_addr_write_d = "POSEIDON2_MEM_ADDR_WRITE_D"; Base::poseidon2_output_addr = "POSEIDON2_OUTPUT_ADDR"; Base::poseidon2_sel_poseidon_perm = "POSEIDON2_SEL_POSEIDON_PERM"; - Base::range_check_alu_rng_chk = "RANGE_CHECK_ALU_RNG_CHK"; Base::range_check_clk = "RANGE_CHECK_CLK"; - Base::range_check_cmp_hi_bits_rng_chk = "RANGE_CHECK_CMP_HI_BITS_RNG_CHK"; - Base::range_check_cmp_lo_bits_rng_chk = "RANGE_CHECK_CMP_LO_BITS_RNG_CHK"; Base::range_check_dyn_diff = "RANGE_CHECK_DYN_DIFF"; Base::range_check_dyn_rng_chk_bits = "RANGE_CHECK_DYN_RNG_CHK_BITS"; Base::range_check_dyn_rng_chk_pow_2 = "RANGE_CHECK_DYN_RNG_CHK_POW_2"; - Base::range_check_gas_da_rng_chk = "RANGE_CHECK_GAS_DA_RNG_CHK"; - Base::range_check_gas_l2_rng_chk = "RANGE_CHECK_GAS_L2_RNG_CHK"; Base::range_check_is_lte_u112 = "RANGE_CHECK_IS_LTE_U112"; Base::range_check_is_lte_u128 = "RANGE_CHECK_IS_LTE_U128"; Base::range_check_is_lte_u16 = "RANGE_CHECK_IS_LTE_U16"; @@ -2100,7 +2183,6 @@ AvmFlavor::CommitmentLabels::CommitmentLabels() Base::range_check_is_lte_u64 = "RANGE_CHECK_IS_LTE_U64"; Base::range_check_is_lte_u80 = "RANGE_CHECK_IS_LTE_U80"; Base::range_check_is_lte_u96 = "RANGE_CHECK_IS_LTE_U96"; - Base::range_check_mem_rng_chk = "RANGE_CHECK_MEM_RNG_CHK"; Base::range_check_rng_chk_bits = "RANGE_CHECK_RNG_CHK_BITS"; Base::range_check_sel_lookup_0 = "RANGE_CHECK_SEL_LOOKUP_0"; Base::range_check_sel_lookup_1 = "RANGE_CHECK_SEL_LOOKUP_1"; @@ -2186,6 +2268,9 @@ AvmFlavor::CommitmentLabels::CommitmentLabels() Base::lookup_ret_value_inv = "LOOKUP_RET_VALUE_INV"; Base::incl_main_tag_err_inv = "INCL_MAIN_TAG_ERR_INV"; Base::incl_mem_tag_err_inv = "INCL_MEM_TAG_ERR_INV"; + Base::lookup_mem_rng_chk_lo_inv = "LOOKUP_MEM_RNG_CHK_LO_INV"; + Base::lookup_mem_rng_chk_mid_inv = "LOOKUP_MEM_RNG_CHK_MID_INV"; + Base::lookup_mem_rng_chk_hi_inv = "LOOKUP_MEM_RNG_CHK_HI_INV"; Base::lookup_rng_chk_pow_2_counts = "LOOKUP_RNG_CHK_POW_2_COUNTS"; Base::lookup_rng_chk_diff_counts = "LOOKUP_RNG_CHK_DIFF_COUNTS"; Base::lookup_rng_chk_0_counts = "LOOKUP_RNG_CHK_0_COUNTS"; diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/generated/flavor.hpp b/barretenberg/cpp/src/barretenberg/vm/avm/generated/flavor.hpp index 338a49da1013..03327c18278a 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/generated/flavor.hpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/generated/flavor.hpp @@ -52,7 +52,23 @@ #include "barretenberg/vm/avm/generated/relations/lookup_rng_chk_7.hpp" #include "barretenberg/vm/avm/generated/relations/lookup_rng_chk_diff.hpp" #include "barretenberg/vm/avm/generated/relations/lookup_rng_chk_pow_2.hpp" -#include "barretenberg/vm/avm/generated/relations/perm_cmp_alu.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_0.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_1.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_10.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_11.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_12.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_13.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_14.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_2.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_3.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_4.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_5.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_6.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_7.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_8.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u16_9.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u8_0.hpp" +#include "barretenberg/vm/avm/generated/relations/lookup_u8_1.hpp" #include "barretenberg/vm/avm/generated/relations/perm_main_alu.hpp" #include "barretenberg/vm/avm/generated/relations/perm_main_bin.hpp" #include "barretenberg/vm/avm/generated/relations/perm_main_conv.hpp" @@ -89,10 +105,10 @@ template using tuple_cat_t = decltype(std::tuple_cat(std:: // The entities that will be used in the flavor. // clang-format off #define PRECOMPUTED_ENTITIES byte_lookup_sel_bin, byte_lookup_table_byte_lengths, byte_lookup_table_in_tags, byte_lookup_table_input_a, byte_lookup_table_input_b, byte_lookup_table_op_id, byte_lookup_table_output, gas_base_da_gas_fixed_table, gas_base_l2_gas_fixed_table, gas_dyn_da_gas_fixed_table, gas_dyn_l2_gas_fixed_table, gas_sel_gas_cost, main_clk, main_sel_first, main_zeroes, powers_power_of_2 -#define WIRE_ENTITIES main_kernel_inputs, main_kernel_value_out, main_kernel_side_effect_out, main_kernel_metadata_out, main_calldata, main_returndata, alu_a_hi, alu_a_lo, alu_b_hi, alu_b_lo, alu_b_pow, alu_c_hi, alu_c_lo, alu_cf, alu_clk, alu_cmp_gadget_gt, alu_cmp_gadget_input_a, alu_cmp_gadget_input_b, alu_cmp_gadget_result, alu_cmp_gadget_sel, alu_ff_tag, alu_ia, alu_ib, alu_ic, alu_in_tag, alu_max_bits_sub_b_bits, alu_max_bits_sub_b_pow, alu_op_add, alu_op_cast, alu_op_div, alu_op_eq, alu_op_lt, alu_op_lte, alu_op_mul, alu_op_not, alu_op_shl, alu_op_shr, alu_op_sub, alu_partial_prod_hi, alu_partial_prod_lo, alu_range_check_input_value, alu_range_check_num_bits, alu_range_check_sel, alu_remainder, alu_sel_alu, alu_sel_cmp, alu_sel_shift_which, alu_u128_tag, alu_u16_tag, alu_u32_tag, alu_u64_tag, alu_u8_tag, alu_zero_shift, binary_acc_ia, binary_acc_ib, binary_acc_ic, binary_clk, binary_ia_bytes, binary_ib_bytes, binary_ic_bytes, binary_in_tag, binary_mem_tag_ctr, binary_mem_tag_ctr_inv, binary_op_id, binary_sel_bin, binary_start, cmp_a_hi, cmp_a_lo, cmp_b_hi, cmp_b_lo, cmp_borrow, cmp_clk, cmp_cmp_rng_ctr, cmp_input_a, cmp_input_b, cmp_op_eq, cmp_op_eq_diff_inv, cmp_op_gt, cmp_p_a_borrow, cmp_p_b_borrow, cmp_p_sub_a_hi, cmp_p_sub_a_lo, cmp_p_sub_b_hi, cmp_p_sub_b_lo, cmp_range_chk_clk, cmp_res_hi, cmp_res_lo, cmp_result, cmp_sel_cmp, cmp_sel_rng_chk, cmp_shift_sel, conversion_clk, conversion_input, conversion_num_limbs, conversion_radix, conversion_sel_to_radix_le, keccakf1600_clk, keccakf1600_input, keccakf1600_output, keccakf1600_sel_keccakf1600, main_abs_da_rem_gas, main_abs_l2_rem_gas, main_alu_in_tag, main_base_da_gas_op_cost, main_base_l2_gas_op_cost, main_bin_op_id, main_call_ptr, main_da_gas_remaining, main_da_out_of_gas, main_dyn_da_gas_op_cost, main_dyn_gas_multiplier, main_dyn_l2_gas_op_cost, main_emit_l2_to_l1_msg_write_offset, main_emit_note_hash_write_offset, main_emit_nullifier_write_offset, main_emit_unencrypted_log_write_offset, main_ia, main_ib, main_ic, main_id, main_id_zero, main_ind_addr_a, main_ind_addr_b, main_ind_addr_c, main_ind_addr_d, main_internal_return_ptr, main_inv, main_kernel_in_offset, main_kernel_out_offset, main_l1_to_l2_msg_exists_write_offset, main_l2_gas_remaining, main_l2_out_of_gas, main_mem_addr_a, main_mem_addr_b, main_mem_addr_c, main_mem_addr_d, main_note_hash_exist_write_offset, main_nullifier_exists_write_offset, main_nullifier_non_exists_write_offset, main_op_err, main_opcode_val, main_pc, main_r_in_tag, main_rwa, main_rwb, main_rwc, main_rwd, main_sel_alu, main_sel_bin, main_sel_calldata, main_sel_execution_row, main_sel_kernel_inputs, main_sel_kernel_out, main_sel_last, main_sel_mem_op_a, main_sel_mem_op_b, main_sel_mem_op_c, main_sel_mem_op_d, main_sel_mov_ia_to_ic, main_sel_mov_ib_to_ic, main_sel_op_add, main_sel_op_address, main_sel_op_and, main_sel_op_block_number, main_sel_op_calldata_copy, main_sel_op_cast, main_sel_op_chain_id, main_sel_op_cmov, main_sel_op_coinbase, main_sel_op_dagasleft, main_sel_op_div, main_sel_op_ecadd, main_sel_op_emit_l2_to_l1_msg, main_sel_op_emit_note_hash, main_sel_op_emit_nullifier, main_sel_op_emit_unencrypted_log, main_sel_op_eq, main_sel_op_external_call, main_sel_op_external_return, main_sel_op_external_revert, main_sel_op_fdiv, main_sel_op_fee_per_da_gas, main_sel_op_fee_per_l2_gas, main_sel_op_function_selector, main_sel_op_get_contract_instance, main_sel_op_internal_call, main_sel_op_internal_return, main_sel_op_jump, main_sel_op_jumpi, main_sel_op_keccak, main_sel_op_l1_to_l2_msg_exists, main_sel_op_l2gasleft, main_sel_op_lt, main_sel_op_lte, main_sel_op_mov, main_sel_op_msm, main_sel_op_mul, main_sel_op_not, main_sel_op_note_hash_exists, main_sel_op_nullifier_exists, main_sel_op_or, main_sel_op_pedersen, main_sel_op_pedersen_commit, main_sel_op_poseidon2, main_sel_op_radix_le, main_sel_op_sender, main_sel_op_set, main_sel_op_sha256, main_sel_op_shl, main_sel_op_shr, main_sel_op_sload, main_sel_op_sstore, main_sel_op_storage_address, main_sel_op_sub, main_sel_op_timestamp, main_sel_op_transaction_fee, main_sel_op_version, main_sel_op_xor, main_sel_q_kernel_lookup, main_sel_q_kernel_output_lookup, main_sel_resolve_ind_addr_a, main_sel_resolve_ind_addr_b, main_sel_resolve_ind_addr_c, main_sel_resolve_ind_addr_d, main_sel_returndata, main_sel_rng_16, main_sel_rng_8, main_sel_slice_gadget, main_side_effect_counter, main_sload_write_offset, main_space_id, main_sstore_write_offset, main_tag_err, main_w_in_tag, mem_addr, mem_clk, mem_diff, mem_glob_addr, mem_last, mem_lastAccess, mem_one_min_inv, mem_r_in_tag, mem_rw, mem_sel_mem, mem_sel_mov_ia_to_ic, mem_sel_mov_ib_to_ic, mem_sel_op_a, mem_sel_op_b, mem_sel_op_c, mem_sel_op_cmov, mem_sel_op_d, mem_sel_op_poseidon_read_a, mem_sel_op_poseidon_read_b, mem_sel_op_poseidon_read_c, mem_sel_op_poseidon_read_d, mem_sel_op_poseidon_write_a, mem_sel_op_poseidon_write_b, mem_sel_op_poseidon_write_c, mem_sel_op_poseidon_write_d, mem_sel_op_slice, mem_sel_resolve_ind_addr_a, mem_sel_resolve_ind_addr_b, mem_sel_resolve_ind_addr_c, mem_sel_resolve_ind_addr_d, mem_sel_rng_chk, mem_skip_check_tag, mem_space_id, mem_tag, mem_tag_err, mem_tsp, mem_val, mem_w_in_tag, pedersen_clk, pedersen_input, pedersen_output, pedersen_sel_pedersen, poseidon2_B_10_0, poseidon2_B_10_1, poseidon2_B_10_2, poseidon2_B_10_3, poseidon2_B_11_0, poseidon2_B_11_1, poseidon2_B_11_2, poseidon2_B_11_3, poseidon2_B_12_0, poseidon2_B_12_1, poseidon2_B_12_2, poseidon2_B_12_3, poseidon2_B_13_0, poseidon2_B_13_1, poseidon2_B_13_2, poseidon2_B_13_3, poseidon2_B_14_0, poseidon2_B_14_1, poseidon2_B_14_2, poseidon2_B_14_3, poseidon2_B_15_0, poseidon2_B_15_1, poseidon2_B_15_2, poseidon2_B_15_3, poseidon2_B_16_0, poseidon2_B_16_1, poseidon2_B_16_2, poseidon2_B_16_3, poseidon2_B_17_0, poseidon2_B_17_1, poseidon2_B_17_2, poseidon2_B_17_3, poseidon2_B_18_0, poseidon2_B_18_1, poseidon2_B_18_2, poseidon2_B_18_3, poseidon2_B_19_0, poseidon2_B_19_1, poseidon2_B_19_2, poseidon2_B_19_3, poseidon2_B_20_0, poseidon2_B_20_1, poseidon2_B_20_2, poseidon2_B_20_3, poseidon2_B_21_0, poseidon2_B_21_1, poseidon2_B_21_2, poseidon2_B_21_3, poseidon2_B_22_0, poseidon2_B_22_1, poseidon2_B_22_2, poseidon2_B_22_3, poseidon2_B_23_0, poseidon2_B_23_1, poseidon2_B_23_2, poseidon2_B_23_3, poseidon2_B_24_0, poseidon2_B_24_1, poseidon2_B_24_2, poseidon2_B_24_3, poseidon2_B_25_0, poseidon2_B_25_1, poseidon2_B_25_2, poseidon2_B_25_3, poseidon2_B_26_0, poseidon2_B_26_1, poseidon2_B_26_2, poseidon2_B_26_3, poseidon2_B_27_0, poseidon2_B_27_1, poseidon2_B_27_2, poseidon2_B_27_3, poseidon2_B_28_0, poseidon2_B_28_1, poseidon2_B_28_2, poseidon2_B_28_3, poseidon2_B_29_0, poseidon2_B_29_1, poseidon2_B_29_2, poseidon2_B_29_3, poseidon2_B_30_0, poseidon2_B_30_1, poseidon2_B_30_2, poseidon2_B_30_3, poseidon2_B_31_0, poseidon2_B_31_1, poseidon2_B_31_2, poseidon2_B_31_3, poseidon2_B_32_0, poseidon2_B_32_1, poseidon2_B_32_2, poseidon2_B_32_3, poseidon2_B_33_0, poseidon2_B_33_1, poseidon2_B_33_2, poseidon2_B_33_3, poseidon2_B_34_0, poseidon2_B_34_1, poseidon2_B_34_2, poseidon2_B_34_3, poseidon2_B_35_0, poseidon2_B_35_1, poseidon2_B_35_2, poseidon2_B_35_3, poseidon2_B_36_0, poseidon2_B_36_1, poseidon2_B_36_2, poseidon2_B_36_3, poseidon2_B_37_0, poseidon2_B_37_1, poseidon2_B_37_2, poseidon2_B_37_3, poseidon2_B_38_0, poseidon2_B_38_1, poseidon2_B_38_2, poseidon2_B_38_3, poseidon2_B_39_0, poseidon2_B_39_1, poseidon2_B_39_2, poseidon2_B_39_3, poseidon2_B_40_0, poseidon2_B_40_1, poseidon2_B_40_2, poseidon2_B_40_3, poseidon2_B_41_0, poseidon2_B_41_1, poseidon2_B_41_2, poseidon2_B_41_3, poseidon2_B_42_0, poseidon2_B_42_1, poseidon2_B_42_2, poseidon2_B_42_3, poseidon2_B_43_0, poseidon2_B_43_1, poseidon2_B_43_2, poseidon2_B_43_3, poseidon2_B_44_0, poseidon2_B_44_1, poseidon2_B_44_2, poseidon2_B_44_3, poseidon2_B_45_0, poseidon2_B_45_1, poseidon2_B_45_2, poseidon2_B_45_3, poseidon2_B_46_0, poseidon2_B_46_1, poseidon2_B_46_2, poseidon2_B_46_3, poseidon2_B_47_0, poseidon2_B_47_1, poseidon2_B_47_2, poseidon2_B_47_3, poseidon2_B_48_0, poseidon2_B_48_1, poseidon2_B_48_2, poseidon2_B_48_3, poseidon2_B_49_0, poseidon2_B_49_1, poseidon2_B_49_2, poseidon2_B_49_3, poseidon2_B_4_0, poseidon2_B_4_1, poseidon2_B_4_2, poseidon2_B_4_3, poseidon2_B_50_0, poseidon2_B_50_1, poseidon2_B_50_2, poseidon2_B_50_3, poseidon2_B_51_0, poseidon2_B_51_1, poseidon2_B_51_2, poseidon2_B_51_3, poseidon2_B_52_0, poseidon2_B_52_1, poseidon2_B_52_2, poseidon2_B_52_3, poseidon2_B_53_0, poseidon2_B_53_1, poseidon2_B_53_2, poseidon2_B_53_3, poseidon2_B_54_0, poseidon2_B_54_1, poseidon2_B_54_2, poseidon2_B_54_3, poseidon2_B_55_0, poseidon2_B_55_1, poseidon2_B_55_2, poseidon2_B_55_3, poseidon2_B_56_0, poseidon2_B_56_1, poseidon2_B_56_2, poseidon2_B_56_3, poseidon2_B_57_0, poseidon2_B_57_1, poseidon2_B_57_2, poseidon2_B_57_3, poseidon2_B_58_0, poseidon2_B_58_1, poseidon2_B_58_2, poseidon2_B_58_3, poseidon2_B_59_0, poseidon2_B_59_1, poseidon2_B_59_2, poseidon2_B_59_3, poseidon2_B_5_0, poseidon2_B_5_1, poseidon2_B_5_2, poseidon2_B_5_3, poseidon2_B_6_0, poseidon2_B_6_1, poseidon2_B_6_2, poseidon2_B_6_3, poseidon2_B_7_0, poseidon2_B_7_1, poseidon2_B_7_2, poseidon2_B_7_3, poseidon2_B_8_0, poseidon2_B_8_1, poseidon2_B_8_2, poseidon2_B_8_3, poseidon2_B_9_0, poseidon2_B_9_1, poseidon2_B_9_2, poseidon2_B_9_3, poseidon2_EXT_LAYER_4, poseidon2_EXT_LAYER_5, poseidon2_EXT_LAYER_6, poseidon2_EXT_LAYER_7, poseidon2_T_0_4, poseidon2_T_0_5, poseidon2_T_0_6, poseidon2_T_0_7, poseidon2_T_1_4, poseidon2_T_1_5, poseidon2_T_1_6, poseidon2_T_1_7, poseidon2_T_2_4, poseidon2_T_2_5, poseidon2_T_2_6, poseidon2_T_2_7, poseidon2_T_3_4, poseidon2_T_3_5, poseidon2_T_3_6, poseidon2_T_3_7, poseidon2_T_60_4, poseidon2_T_60_5, poseidon2_T_60_6, poseidon2_T_60_7, poseidon2_T_61_4, poseidon2_T_61_5, poseidon2_T_61_6, poseidon2_T_61_7, poseidon2_T_62_4, poseidon2_T_62_5, poseidon2_T_62_6, poseidon2_T_62_7, poseidon2_T_63_4, poseidon2_T_63_5, poseidon2_T_63_6, poseidon2_T_63_7, poseidon2_a_0, poseidon2_a_1, poseidon2_a_2, poseidon2_a_3, poseidon2_b_0, poseidon2_b_1, poseidon2_b_2, poseidon2_b_3, poseidon2_clk, poseidon2_input_addr, poseidon2_mem_addr_read_a, poseidon2_mem_addr_read_b, poseidon2_mem_addr_read_c, poseidon2_mem_addr_read_d, poseidon2_mem_addr_write_a, poseidon2_mem_addr_write_b, poseidon2_mem_addr_write_c, poseidon2_mem_addr_write_d, poseidon2_output_addr, poseidon2_sel_poseidon_perm, range_check_alu_rng_chk, range_check_clk, range_check_cmp_hi_bits_rng_chk, range_check_cmp_lo_bits_rng_chk, range_check_dyn_diff, range_check_dyn_rng_chk_bits, range_check_dyn_rng_chk_pow_2, range_check_gas_da_rng_chk, range_check_gas_l2_rng_chk, range_check_is_lte_u112, range_check_is_lte_u128, range_check_is_lte_u16, range_check_is_lte_u32, range_check_is_lte_u48, range_check_is_lte_u64, range_check_is_lte_u80, range_check_is_lte_u96, range_check_mem_rng_chk, range_check_rng_chk_bits, range_check_sel_lookup_0, range_check_sel_lookup_1, range_check_sel_lookup_2, range_check_sel_lookup_3, range_check_sel_lookup_4, range_check_sel_lookup_5, range_check_sel_lookup_6, range_check_sel_rng_chk, range_check_u16_r0, range_check_u16_r1, range_check_u16_r2, range_check_u16_r3, range_check_u16_r4, range_check_u16_r5, range_check_u16_r6, range_check_u16_r7, range_check_value, sha256_clk, sha256_input, sha256_output, sha256_sel_sha256_compression, sha256_state, slice_addr, slice_clk, slice_cnt, slice_col_offset, slice_one_min_inv, slice_sel_cd_cpy, slice_sel_mem_active, slice_sel_return, slice_sel_start, slice_space_id, slice_val, lookup_rng_chk_pow_2_counts, lookup_rng_chk_diff_counts, lookup_rng_chk_0_counts, lookup_rng_chk_1_counts, lookup_rng_chk_2_counts, lookup_rng_chk_3_counts, lookup_rng_chk_4_counts, lookup_rng_chk_5_counts, lookup_rng_chk_6_counts, lookup_rng_chk_7_counts, lookup_pow_2_0_counts, lookup_pow_2_1_counts, lookup_byte_lengths_counts, lookup_byte_operations_counts, lookup_opcode_gas_counts, kernel_output_lookup_counts, lookup_into_kernel_counts, lookup_cd_value_counts, lookup_ret_value_counts, incl_main_tag_err_counts, incl_mem_tag_err_counts -#define DERIVED_WITNESS_ENTITIES perm_rng_mem_inv, perm_rng_cmp_lo_inv, perm_rng_cmp_hi_inv, perm_rng_alu_inv, perm_cmp_alu_inv, perm_rng_gas_l2_inv, perm_rng_gas_da_inv, perm_pos_mem_read_a_inv, perm_pos_mem_read_b_inv, perm_pos_mem_read_c_inv, perm_pos_mem_read_d_inv, perm_pos_mem_write_a_inv, perm_pos_mem_write_b_inv, perm_pos_mem_write_c_inv, perm_pos_mem_write_d_inv, perm_slice_mem_inv, perm_main_alu_inv, perm_main_bin_inv, perm_main_conv_inv, perm_main_pos2_perm_inv, perm_main_pedersen_inv, perm_main_slice_inv, perm_main_mem_a_inv, perm_main_mem_b_inv, perm_main_mem_c_inv, perm_main_mem_d_inv, perm_main_mem_ind_addr_a_inv, perm_main_mem_ind_addr_b_inv, perm_main_mem_ind_addr_c_inv, perm_main_mem_ind_addr_d_inv, lookup_rng_chk_pow_2_inv, lookup_rng_chk_diff_inv, lookup_rng_chk_0_inv, lookup_rng_chk_1_inv, lookup_rng_chk_2_inv, lookup_rng_chk_3_inv, lookup_rng_chk_4_inv, lookup_rng_chk_5_inv, lookup_rng_chk_6_inv, lookup_rng_chk_7_inv, lookup_pow_2_0_inv, lookup_pow_2_1_inv, lookup_byte_lengths_inv, lookup_byte_operations_inv, lookup_opcode_gas_inv, kernel_output_lookup_inv, lookup_into_kernel_inv, lookup_cd_value_inv, lookup_ret_value_inv, incl_main_tag_err_inv, incl_mem_tag_err_inv -#define SHIFTED_ENTITIES binary_acc_ia_shift, binary_acc_ib_shift, binary_acc_ic_shift, binary_mem_tag_ctr_shift, binary_op_id_shift, cmp_a_hi_shift, cmp_a_lo_shift, cmp_b_hi_shift, cmp_b_lo_shift, cmp_cmp_rng_ctr_shift, cmp_op_gt_shift, cmp_p_sub_a_hi_shift, cmp_p_sub_a_lo_shift, cmp_p_sub_b_hi_shift, cmp_p_sub_b_lo_shift, cmp_sel_rng_chk_shift, main_da_gas_remaining_shift, main_emit_l2_to_l1_msg_write_offset_shift, main_emit_note_hash_write_offset_shift, main_emit_nullifier_write_offset_shift, main_emit_unencrypted_log_write_offset_shift, main_internal_return_ptr_shift, main_l1_to_l2_msg_exists_write_offset_shift, main_l2_gas_remaining_shift, main_note_hash_exist_write_offset_shift, main_nullifier_exists_write_offset_shift, main_nullifier_non_exists_write_offset_shift, main_pc_shift, main_sel_execution_row_shift, main_side_effect_counter_shift, main_sload_write_offset_shift, main_sstore_write_offset_shift, mem_glob_addr_shift, mem_rw_shift, mem_sel_mem_shift, mem_tag_shift, mem_tsp_shift, mem_val_shift, slice_addr_shift, slice_clk_shift, slice_cnt_shift, slice_col_offset_shift, slice_sel_cd_cpy_shift, slice_sel_mem_active_shift, slice_sel_return_shift, slice_sel_start_shift, slice_space_id_shift -#define TO_BE_SHIFTED(e) e.binary_acc_ia, e.binary_acc_ib, e.binary_acc_ic, e.binary_mem_tag_ctr, e.binary_op_id, e.cmp_a_hi, e.cmp_a_lo, e.cmp_b_hi, e.cmp_b_lo, e.cmp_cmp_rng_ctr, e.cmp_op_gt, e.cmp_p_sub_a_hi, e.cmp_p_sub_a_lo, e.cmp_p_sub_b_hi, e.cmp_p_sub_b_lo, e.cmp_sel_rng_chk, e.main_da_gas_remaining, e.main_emit_l2_to_l1_msg_write_offset, e.main_emit_note_hash_write_offset, e.main_emit_nullifier_write_offset, e.main_emit_unencrypted_log_write_offset, e.main_internal_return_ptr, e.main_l1_to_l2_msg_exists_write_offset, e.main_l2_gas_remaining, e.main_note_hash_exist_write_offset, e.main_nullifier_exists_write_offset, e.main_nullifier_non_exists_write_offset, e.main_pc, e.main_sel_execution_row, e.main_side_effect_counter, e.main_sload_write_offset, e.main_sstore_write_offset, e.mem_glob_addr, e.mem_rw, e.mem_sel_mem, e.mem_tag, e.mem_tsp, e.mem_val, e.slice_addr, e.slice_clk, e.slice_cnt, e.slice_col_offset, e.slice_sel_cd_cpy, e.slice_sel_mem_active, e.slice_sel_return, e.slice_sel_start, e.slice_space_id +#define WIRE_ENTITIES main_kernel_inputs, main_kernel_value_out, main_kernel_side_effect_out, main_kernel_metadata_out, main_calldata, main_returndata, alu_a_hi, alu_a_lo, alu_b_hi, alu_b_lo, alu_borrow, alu_cf, alu_clk, alu_cmp_rng_ctr, alu_div_u16_r0, alu_div_u16_r1, alu_div_u16_r2, alu_div_u16_r3, alu_div_u16_r4, alu_div_u16_r5, alu_div_u16_r6, alu_div_u16_r7, alu_divisor_hi, alu_divisor_lo, alu_ff_tag, alu_ia, alu_ib, alu_ic, alu_in_tag, alu_op_add, alu_op_cast, alu_op_cast_prev, alu_op_div, alu_op_div_a_lt_b, alu_op_div_std, alu_op_eq, alu_op_eq_diff_inv, alu_op_lt, alu_op_lte, alu_op_mul, alu_op_not, alu_op_shl, alu_op_shr, alu_op_sub, alu_p_a_borrow, alu_p_b_borrow, alu_p_sub_a_hi, alu_p_sub_a_lo, alu_p_sub_b_hi, alu_p_sub_b_lo, alu_partial_prod_hi, alu_partial_prod_lo, alu_quotient_hi, alu_quotient_lo, alu_remainder, alu_res_hi, alu_res_lo, alu_sel_alu, alu_sel_cmp, alu_sel_div_rng_chk, alu_sel_rng_chk, alu_sel_rng_chk_lookup, alu_sel_shift_which, alu_shift_lt_bit_len, alu_t_sub_s_bits, alu_two_pow_s, alu_two_pow_t_sub_s, alu_u128_tag, alu_u16_r0, alu_u16_r1, alu_u16_r10, alu_u16_r11, alu_u16_r12, alu_u16_r13, alu_u16_r14, alu_u16_r2, alu_u16_r3, alu_u16_r4, alu_u16_r5, alu_u16_r6, alu_u16_r7, alu_u16_r8, alu_u16_r9, alu_u16_tag, alu_u32_tag, alu_u64_tag, alu_u8_r0, alu_u8_r1, alu_u8_tag, binary_acc_ia, binary_acc_ib, binary_acc_ic, binary_clk, binary_ia_bytes, binary_ib_bytes, binary_ic_bytes, binary_in_tag, binary_mem_tag_ctr, binary_mem_tag_ctr_inv, binary_op_id, binary_sel_bin, binary_start, conversion_clk, conversion_input, conversion_num_limbs, conversion_radix, conversion_sel_to_radix_le, keccakf1600_clk, keccakf1600_input, keccakf1600_output, keccakf1600_sel_keccakf1600, main_abs_da_rem_gas_hi, main_abs_da_rem_gas_lo, main_abs_l2_rem_gas_hi, main_abs_l2_rem_gas_lo, main_alu_in_tag, main_base_da_gas_op_cost, main_base_l2_gas_op_cost, main_bin_op_id, main_call_ptr, main_da_gas_remaining, main_da_out_of_gas, main_dyn_da_gas_op_cost, main_dyn_gas_multiplier, main_dyn_l2_gas_op_cost, main_emit_l2_to_l1_msg_write_offset, main_emit_note_hash_write_offset, main_emit_nullifier_write_offset, main_emit_unencrypted_log_write_offset, main_ia, main_ib, main_ic, main_id, main_id_zero, main_ind_addr_a, main_ind_addr_b, main_ind_addr_c, main_ind_addr_d, main_internal_return_ptr, main_inv, main_kernel_in_offset, main_kernel_out_offset, main_l1_to_l2_msg_exists_write_offset, main_l2_gas_remaining, main_l2_out_of_gas, main_mem_addr_a, main_mem_addr_b, main_mem_addr_c, main_mem_addr_d, main_note_hash_exist_write_offset, main_nullifier_exists_write_offset, main_nullifier_non_exists_write_offset, main_op_err, main_opcode_val, main_pc, main_r_in_tag, main_rwa, main_rwb, main_rwc, main_rwd, main_sel_alu, main_sel_bin, main_sel_calldata, main_sel_execution_row, main_sel_kernel_inputs, main_sel_kernel_out, main_sel_last, main_sel_mem_op_a, main_sel_mem_op_b, main_sel_mem_op_c, main_sel_mem_op_d, main_sel_mov_ia_to_ic, main_sel_mov_ib_to_ic, main_sel_op_add, main_sel_op_address, main_sel_op_and, main_sel_op_block_number, main_sel_op_calldata_copy, main_sel_op_cast, main_sel_op_chain_id, main_sel_op_cmov, main_sel_op_coinbase, main_sel_op_dagasleft, main_sel_op_div, main_sel_op_ecadd, main_sel_op_emit_l2_to_l1_msg, main_sel_op_emit_note_hash, main_sel_op_emit_nullifier, main_sel_op_emit_unencrypted_log, main_sel_op_eq, main_sel_op_external_call, main_sel_op_external_return, main_sel_op_external_revert, main_sel_op_fdiv, main_sel_op_fee_per_da_gas, main_sel_op_fee_per_l2_gas, main_sel_op_function_selector, main_sel_op_get_contract_instance, main_sel_op_internal_call, main_sel_op_internal_return, main_sel_op_jump, main_sel_op_jumpi, main_sel_op_keccak, main_sel_op_l1_to_l2_msg_exists, main_sel_op_l2gasleft, main_sel_op_lt, main_sel_op_lte, main_sel_op_mov, main_sel_op_msm, main_sel_op_mul, main_sel_op_not, main_sel_op_note_hash_exists, main_sel_op_nullifier_exists, main_sel_op_or, main_sel_op_pedersen, main_sel_op_pedersen_commit, main_sel_op_poseidon2, main_sel_op_radix_le, main_sel_op_sender, main_sel_op_set, main_sel_op_sha256, main_sel_op_shl, main_sel_op_shr, main_sel_op_sload, main_sel_op_sstore, main_sel_op_storage_address, main_sel_op_sub, main_sel_op_timestamp, main_sel_op_transaction_fee, main_sel_op_version, main_sel_op_xor, main_sel_q_kernel_lookup, main_sel_q_kernel_output_lookup, main_sel_resolve_ind_addr_a, main_sel_resolve_ind_addr_b, main_sel_resolve_ind_addr_c, main_sel_resolve_ind_addr_d, main_sel_returndata, main_sel_rng_16, main_sel_rng_8, main_sel_slice_gadget, main_side_effect_counter, main_sload_write_offset, main_space_id, main_sstore_write_offset, main_tag_err, main_w_in_tag, mem_addr, mem_clk, mem_diff_hi, mem_diff_lo, mem_diff_mid, mem_glob_addr, mem_last, mem_lastAccess, mem_one_min_inv, mem_r_in_tag, mem_rw, mem_sel_mem, mem_sel_mov_ia_to_ic, mem_sel_mov_ib_to_ic, mem_sel_op_a, mem_sel_op_b, mem_sel_op_c, mem_sel_op_cmov, mem_sel_op_d, mem_sel_op_poseidon_read_a, mem_sel_op_poseidon_read_b, mem_sel_op_poseidon_read_c, mem_sel_op_poseidon_read_d, mem_sel_op_poseidon_write_a, mem_sel_op_poseidon_write_b, mem_sel_op_poseidon_write_c, mem_sel_op_poseidon_write_d, mem_sel_op_slice, mem_sel_resolve_ind_addr_a, mem_sel_resolve_ind_addr_b, mem_sel_resolve_ind_addr_c, mem_sel_resolve_ind_addr_d, mem_sel_rng_chk, mem_skip_check_tag, mem_space_id, mem_tag, mem_tag_err, mem_tsp, mem_val, mem_w_in_tag, pedersen_clk, pedersen_input, pedersen_output, pedersen_sel_pedersen, poseidon2_B_10_0, poseidon2_B_10_1, poseidon2_B_10_2, poseidon2_B_10_3, poseidon2_B_11_0, poseidon2_B_11_1, poseidon2_B_11_2, poseidon2_B_11_3, poseidon2_B_12_0, poseidon2_B_12_1, poseidon2_B_12_2, poseidon2_B_12_3, poseidon2_B_13_0, poseidon2_B_13_1, poseidon2_B_13_2, poseidon2_B_13_3, poseidon2_B_14_0, poseidon2_B_14_1, poseidon2_B_14_2, poseidon2_B_14_3, poseidon2_B_15_0, poseidon2_B_15_1, poseidon2_B_15_2, poseidon2_B_15_3, poseidon2_B_16_0, poseidon2_B_16_1, poseidon2_B_16_2, poseidon2_B_16_3, poseidon2_B_17_0, poseidon2_B_17_1, poseidon2_B_17_2, poseidon2_B_17_3, poseidon2_B_18_0, poseidon2_B_18_1, poseidon2_B_18_2, poseidon2_B_18_3, poseidon2_B_19_0, poseidon2_B_19_1, poseidon2_B_19_2, poseidon2_B_19_3, poseidon2_B_20_0, poseidon2_B_20_1, poseidon2_B_20_2, poseidon2_B_20_3, poseidon2_B_21_0, poseidon2_B_21_1, poseidon2_B_21_2, poseidon2_B_21_3, poseidon2_B_22_0, poseidon2_B_22_1, poseidon2_B_22_2, poseidon2_B_22_3, poseidon2_B_23_0, poseidon2_B_23_1, poseidon2_B_23_2, poseidon2_B_23_3, poseidon2_B_24_0, poseidon2_B_24_1, poseidon2_B_24_2, poseidon2_B_24_3, poseidon2_B_25_0, poseidon2_B_25_1, poseidon2_B_25_2, poseidon2_B_25_3, poseidon2_B_26_0, poseidon2_B_26_1, poseidon2_B_26_2, poseidon2_B_26_3, poseidon2_B_27_0, poseidon2_B_27_1, poseidon2_B_27_2, poseidon2_B_27_3, poseidon2_B_28_0, poseidon2_B_28_1, poseidon2_B_28_2, poseidon2_B_28_3, poseidon2_B_29_0, poseidon2_B_29_1, poseidon2_B_29_2, poseidon2_B_29_3, poseidon2_B_30_0, poseidon2_B_30_1, poseidon2_B_30_2, poseidon2_B_30_3, poseidon2_B_31_0, poseidon2_B_31_1, poseidon2_B_31_2, poseidon2_B_31_3, poseidon2_B_32_0, poseidon2_B_32_1, poseidon2_B_32_2, poseidon2_B_32_3, poseidon2_B_33_0, poseidon2_B_33_1, poseidon2_B_33_2, poseidon2_B_33_3, poseidon2_B_34_0, poseidon2_B_34_1, poseidon2_B_34_2, poseidon2_B_34_3, poseidon2_B_35_0, poseidon2_B_35_1, poseidon2_B_35_2, poseidon2_B_35_3, poseidon2_B_36_0, poseidon2_B_36_1, poseidon2_B_36_2, poseidon2_B_36_3, poseidon2_B_37_0, poseidon2_B_37_1, poseidon2_B_37_2, poseidon2_B_37_3, poseidon2_B_38_0, poseidon2_B_38_1, poseidon2_B_38_2, poseidon2_B_38_3, poseidon2_B_39_0, poseidon2_B_39_1, poseidon2_B_39_2, poseidon2_B_39_3, poseidon2_B_40_0, poseidon2_B_40_1, poseidon2_B_40_2, poseidon2_B_40_3, poseidon2_B_41_0, poseidon2_B_41_1, poseidon2_B_41_2, poseidon2_B_41_3, poseidon2_B_42_0, poseidon2_B_42_1, poseidon2_B_42_2, poseidon2_B_42_3, poseidon2_B_43_0, poseidon2_B_43_1, poseidon2_B_43_2, poseidon2_B_43_3, poseidon2_B_44_0, poseidon2_B_44_1, poseidon2_B_44_2, poseidon2_B_44_3, poseidon2_B_45_0, poseidon2_B_45_1, poseidon2_B_45_2, poseidon2_B_45_3, poseidon2_B_46_0, poseidon2_B_46_1, poseidon2_B_46_2, poseidon2_B_46_3, poseidon2_B_47_0, poseidon2_B_47_1, poseidon2_B_47_2, poseidon2_B_47_3, poseidon2_B_48_0, poseidon2_B_48_1, poseidon2_B_48_2, poseidon2_B_48_3, poseidon2_B_49_0, poseidon2_B_49_1, poseidon2_B_49_2, poseidon2_B_49_3, poseidon2_B_4_0, poseidon2_B_4_1, poseidon2_B_4_2, poseidon2_B_4_3, poseidon2_B_50_0, poseidon2_B_50_1, poseidon2_B_50_2, poseidon2_B_50_3, poseidon2_B_51_0, poseidon2_B_51_1, poseidon2_B_51_2, poseidon2_B_51_3, poseidon2_B_52_0, poseidon2_B_52_1, poseidon2_B_52_2, poseidon2_B_52_3, poseidon2_B_53_0, poseidon2_B_53_1, poseidon2_B_53_2, poseidon2_B_53_3, poseidon2_B_54_0, poseidon2_B_54_1, poseidon2_B_54_2, poseidon2_B_54_3, poseidon2_B_55_0, poseidon2_B_55_1, poseidon2_B_55_2, poseidon2_B_55_3, poseidon2_B_56_0, poseidon2_B_56_1, poseidon2_B_56_2, poseidon2_B_56_3, poseidon2_B_57_0, poseidon2_B_57_1, poseidon2_B_57_2, poseidon2_B_57_3, poseidon2_B_58_0, poseidon2_B_58_1, poseidon2_B_58_2, poseidon2_B_58_3, poseidon2_B_59_0, poseidon2_B_59_1, poseidon2_B_59_2, poseidon2_B_59_3, poseidon2_B_5_0, poseidon2_B_5_1, poseidon2_B_5_2, poseidon2_B_5_3, poseidon2_B_6_0, poseidon2_B_6_1, poseidon2_B_6_2, poseidon2_B_6_3, poseidon2_B_7_0, poseidon2_B_7_1, poseidon2_B_7_2, poseidon2_B_7_3, poseidon2_B_8_0, poseidon2_B_8_1, poseidon2_B_8_2, poseidon2_B_8_3, poseidon2_B_9_0, poseidon2_B_9_1, poseidon2_B_9_2, poseidon2_B_9_3, poseidon2_EXT_LAYER_4, poseidon2_EXT_LAYER_5, poseidon2_EXT_LAYER_6, poseidon2_EXT_LAYER_7, poseidon2_T_0_4, poseidon2_T_0_5, poseidon2_T_0_6, poseidon2_T_0_7, poseidon2_T_1_4, poseidon2_T_1_5, poseidon2_T_1_6, poseidon2_T_1_7, poseidon2_T_2_4, poseidon2_T_2_5, poseidon2_T_2_6, poseidon2_T_2_7, poseidon2_T_3_4, poseidon2_T_3_5, poseidon2_T_3_6, poseidon2_T_3_7, poseidon2_T_60_4, poseidon2_T_60_5, poseidon2_T_60_6, poseidon2_T_60_7, poseidon2_T_61_4, poseidon2_T_61_5, poseidon2_T_61_6, poseidon2_T_61_7, poseidon2_T_62_4, poseidon2_T_62_5, poseidon2_T_62_6, poseidon2_T_62_7, poseidon2_T_63_4, poseidon2_T_63_5, poseidon2_T_63_6, poseidon2_T_63_7, poseidon2_a_0, poseidon2_a_1, poseidon2_a_2, poseidon2_a_3, poseidon2_b_0, poseidon2_b_1, poseidon2_b_2, poseidon2_b_3, poseidon2_clk, poseidon2_input_addr, poseidon2_mem_addr_read_a, poseidon2_mem_addr_read_b, poseidon2_mem_addr_read_c, poseidon2_mem_addr_read_d, poseidon2_mem_addr_write_a, poseidon2_mem_addr_write_b, poseidon2_mem_addr_write_c, poseidon2_mem_addr_write_d, poseidon2_output_addr, poseidon2_sel_poseidon_perm, range_check_clk, range_check_dyn_diff, range_check_dyn_rng_chk_bits, range_check_dyn_rng_chk_pow_2, range_check_is_lte_u112, range_check_is_lte_u128, range_check_is_lte_u16, range_check_is_lte_u32, range_check_is_lte_u48, range_check_is_lte_u64, range_check_is_lte_u80, range_check_is_lte_u96, range_check_rng_chk_bits, range_check_sel_lookup_0, range_check_sel_lookup_1, range_check_sel_lookup_2, range_check_sel_lookup_3, range_check_sel_lookup_4, range_check_sel_lookup_5, range_check_sel_lookup_6, range_check_sel_rng_chk, range_check_u16_r0, range_check_u16_r1, range_check_u16_r2, range_check_u16_r3, range_check_u16_r4, range_check_u16_r5, range_check_u16_r6, range_check_u16_r7, range_check_value, sha256_clk, sha256_input, sha256_output, sha256_sel_sha256_compression, sha256_state, slice_addr, slice_clk, slice_cnt, slice_col_offset, slice_one_min_inv, slice_sel_cd_cpy, slice_sel_mem_active, slice_sel_return, slice_sel_start, slice_space_id, slice_val, lookup_rng_chk_pow_2_counts, lookup_rng_chk_diff_counts, lookup_rng_chk_0_counts, lookup_rng_chk_1_counts, lookup_rng_chk_2_counts, lookup_rng_chk_3_counts, lookup_rng_chk_4_counts, lookup_rng_chk_5_counts, lookup_rng_chk_6_counts, lookup_rng_chk_7_counts, lookup_pow_2_0_counts, lookup_pow_2_1_counts, lookup_u8_0_counts, lookup_u8_1_counts, lookup_u16_0_counts, lookup_u16_1_counts, lookup_u16_2_counts, lookup_u16_3_counts, lookup_u16_4_counts, lookup_u16_5_counts, lookup_u16_6_counts, lookup_u16_7_counts, lookup_u16_8_counts, lookup_u16_9_counts, lookup_u16_10_counts, lookup_u16_11_counts, lookup_u16_12_counts, lookup_u16_13_counts, lookup_u16_14_counts, lookup_div_u16_0_counts, lookup_div_u16_1_counts, lookup_div_u16_2_counts, lookup_div_u16_3_counts, lookup_div_u16_4_counts, lookup_div_u16_5_counts, lookup_div_u16_6_counts, lookup_div_u16_7_counts, lookup_byte_lengths_counts, lookup_byte_operations_counts, lookup_opcode_gas_counts, range_check_l2_gas_hi_counts, range_check_l2_gas_lo_counts, range_check_da_gas_hi_counts, range_check_da_gas_lo_counts, kernel_output_lookup_counts, lookup_into_kernel_counts, lookup_cd_value_counts, lookup_ret_value_counts, incl_main_tag_err_counts, incl_mem_tag_err_counts, lookup_mem_rng_chk_lo_counts, lookup_mem_rng_chk_mid_counts, lookup_mem_rng_chk_hi_counts +#define DERIVED_WITNESS_ENTITIES perm_pos_mem_read_a_inv, perm_pos_mem_read_b_inv, perm_pos_mem_read_c_inv, perm_pos_mem_read_d_inv, perm_pos_mem_write_a_inv, perm_pos_mem_write_b_inv, perm_pos_mem_write_c_inv, perm_pos_mem_write_d_inv, perm_slice_mem_inv, perm_main_alu_inv, perm_main_bin_inv, perm_main_conv_inv, perm_main_pos2_perm_inv, perm_main_pedersen_inv, perm_main_slice_inv, perm_main_mem_a_inv, perm_main_mem_b_inv, perm_main_mem_c_inv, perm_main_mem_d_inv, perm_main_mem_ind_addr_a_inv, perm_main_mem_ind_addr_b_inv, perm_main_mem_ind_addr_c_inv, perm_main_mem_ind_addr_d_inv, lookup_rng_chk_pow_2_inv, lookup_rng_chk_diff_inv, lookup_rng_chk_0_inv, lookup_rng_chk_1_inv, lookup_rng_chk_2_inv, lookup_rng_chk_3_inv, lookup_rng_chk_4_inv, lookup_rng_chk_5_inv, lookup_rng_chk_6_inv, lookup_rng_chk_7_inv, lookup_pow_2_0_inv, lookup_pow_2_1_inv, lookup_u8_0_inv, lookup_u8_1_inv, lookup_u16_0_inv, lookup_u16_1_inv, lookup_u16_2_inv, lookup_u16_3_inv, lookup_u16_4_inv, lookup_u16_5_inv, lookup_u16_6_inv, lookup_u16_7_inv, lookup_u16_8_inv, lookup_u16_9_inv, lookup_u16_10_inv, lookup_u16_11_inv, lookup_u16_12_inv, lookup_u16_13_inv, lookup_u16_14_inv, lookup_div_u16_0_inv, lookup_div_u16_1_inv, lookup_div_u16_2_inv, lookup_div_u16_3_inv, lookup_div_u16_4_inv, lookup_div_u16_5_inv, lookup_div_u16_6_inv, lookup_div_u16_7_inv, lookup_byte_lengths_inv, lookup_byte_operations_inv, lookup_opcode_gas_inv, range_check_l2_gas_hi_inv, range_check_l2_gas_lo_inv, range_check_da_gas_hi_inv, range_check_da_gas_lo_inv, kernel_output_lookup_inv, lookup_into_kernel_inv, lookup_cd_value_inv, lookup_ret_value_inv, incl_main_tag_err_inv, incl_mem_tag_err_inv, lookup_mem_rng_chk_lo_inv, lookup_mem_rng_chk_mid_inv, lookup_mem_rng_chk_hi_inv +#define SHIFTED_ENTITIES alu_a_hi_shift, alu_a_lo_shift, alu_b_hi_shift, alu_b_lo_shift, alu_cmp_rng_ctr_shift, alu_div_u16_r0_shift, alu_div_u16_r1_shift, alu_div_u16_r2_shift, alu_div_u16_r3_shift, alu_div_u16_r4_shift, alu_div_u16_r5_shift, alu_div_u16_r6_shift, alu_div_u16_r7_shift, alu_op_add_shift, alu_op_cast_shift, alu_op_cast_prev_shift, alu_op_div_shift, alu_op_mul_shift, alu_op_shl_shift, alu_op_shr_shift, alu_op_sub_shift, alu_p_sub_a_hi_shift, alu_p_sub_a_lo_shift, alu_p_sub_b_hi_shift, alu_p_sub_b_lo_shift, alu_sel_alu_shift, alu_sel_cmp_shift, alu_sel_div_rng_chk_shift, alu_sel_rng_chk_shift, alu_sel_rng_chk_lookup_shift, alu_u16_r0_shift, alu_u16_r1_shift, alu_u16_r2_shift, alu_u16_r3_shift, alu_u16_r4_shift, alu_u16_r5_shift, alu_u16_r6_shift, alu_u8_r0_shift, alu_u8_r1_shift, binary_acc_ia_shift, binary_acc_ib_shift, binary_acc_ic_shift, binary_mem_tag_ctr_shift, binary_op_id_shift, main_da_gas_remaining_shift, main_emit_l2_to_l1_msg_write_offset_shift, main_emit_note_hash_write_offset_shift, main_emit_nullifier_write_offset_shift, main_emit_unencrypted_log_write_offset_shift, main_internal_return_ptr_shift, main_l1_to_l2_msg_exists_write_offset_shift, main_l2_gas_remaining_shift, main_note_hash_exist_write_offset_shift, main_nullifier_exists_write_offset_shift, main_nullifier_non_exists_write_offset_shift, main_pc_shift, main_sel_execution_row_shift, main_side_effect_counter_shift, main_sload_write_offset_shift, main_sstore_write_offset_shift, mem_glob_addr_shift, mem_rw_shift, mem_sel_mem_shift, mem_tag_shift, mem_tsp_shift, mem_val_shift, slice_addr_shift, slice_clk_shift, slice_cnt_shift, slice_col_offset_shift, slice_sel_cd_cpy_shift, slice_sel_mem_active_shift, slice_sel_return_shift, slice_sel_start_shift, slice_space_id_shift +#define TO_BE_SHIFTED(e) e.alu_a_hi, e.alu_a_lo, e.alu_b_hi, e.alu_b_lo, e.alu_cmp_rng_ctr, e.alu_div_u16_r0, e.alu_div_u16_r1, e.alu_div_u16_r2, e.alu_div_u16_r3, e.alu_div_u16_r4, e.alu_div_u16_r5, e.alu_div_u16_r6, e.alu_div_u16_r7, e.alu_op_add, e.alu_op_cast, e.alu_op_cast_prev, e.alu_op_div, e.alu_op_mul, e.alu_op_shl, e.alu_op_shr, e.alu_op_sub, e.alu_p_sub_a_hi, e.alu_p_sub_a_lo, e.alu_p_sub_b_hi, e.alu_p_sub_b_lo, e.alu_sel_alu, e.alu_sel_cmp, e.alu_sel_div_rng_chk, e.alu_sel_rng_chk, e.alu_sel_rng_chk_lookup, e.alu_u16_r0, e.alu_u16_r1, e.alu_u16_r2, e.alu_u16_r3, e.alu_u16_r4, e.alu_u16_r5, e.alu_u16_r6, e.alu_u8_r0, e.alu_u8_r1, e.binary_acc_ia, e.binary_acc_ib, e.binary_acc_ic, e.binary_mem_tag_ctr, e.binary_op_id, e.main_da_gas_remaining, e.main_emit_l2_to_l1_msg_write_offset, e.main_emit_note_hash_write_offset, e.main_emit_nullifier_write_offset, e.main_emit_unencrypted_log_write_offset, e.main_internal_return_ptr, e.main_l1_to_l2_msg_exists_write_offset, e.main_l2_gas_remaining, e.main_note_hash_exist_write_offset, e.main_nullifier_exists_write_offset, e.main_nullifier_non_exists_write_offset, e.main_pc, e.main_sel_execution_row, e.main_side_effect_counter, e.main_sload_write_offset, e.main_sstore_write_offset, e.mem_glob_addr, e.mem_rw, e.mem_sel_mem, e.mem_tag, e.mem_tsp, e.mem_val, e.slice_addr, e.slice_clk, e.slice_cnt, e.slice_col_offset, e.slice_sel_cd_cpy, e.slice_sel_mem_active, e.slice_sel_return, e.slice_sel_start, e.slice_space_id #define ALL_ENTITIES PRECOMPUTED_ENTITIES, WIRE_ENTITIES, DERIVED_WITNESS_ENTITIES, SHIFTED_ENTITIES // clang-format on @@ -118,12 +134,12 @@ class AvmFlavor { static constexpr bool HasZK = false; static constexpr size_t NUM_PRECOMPUTED_ENTITIES = 16; - static constexpr size_t NUM_WITNESS_ENTITIES = 680; - static constexpr size_t NUM_SHIFTED_ENTITIES = 47; + static constexpr size_t NUM_WITNESS_ENTITIES = 746; + static constexpr size_t NUM_SHIFTED_ENTITIES = 75; static constexpr size_t NUM_WIRES = NUM_WITNESS_ENTITIES + NUM_PRECOMPUTED_ENTITIES; // We have two copies of the witness entities, so we subtract the number of fixed ones (they have no shift), one for // the unshifted and one for the shifted - static constexpr size_t NUM_ALL_ENTITIES = 743; + static constexpr size_t NUM_ALL_ENTITIES = 837; // The total number of witnesses including shifts and derived entities. static constexpr size_t NUM_ALL_WITNESS_ENTITIES = NUM_WITNESS_ENTITIES + NUM_SHIFTED_ENTITIES; @@ -131,20 +147,19 @@ class AvmFlavor { template using MainRelations_ = std::tuple< // Relations - Avm_vm::alu, - Avm_vm::binary, - Avm_vm::cmp, - Avm_vm::conversion, - Avm_vm::gas, - Avm_vm::keccakf1600, - Avm_vm::kernel, - Avm_vm::main, - Avm_vm::mem, - Avm_vm::mem_slice, - Avm_vm::pedersen, - Avm_vm::poseidon2, - Avm_vm::range_check, - Avm_vm::sha256>; + Avm_vm::alu, + Avm_vm::binary, + Avm_vm::conversion, + Avm_vm::gas, + Avm_vm::keccakf1600, + Avm_vm::kernel, + Avm_vm::main, + Avm_vm::mem, + Avm_vm::mem_slice, + Avm_vm::pedersen, + Avm_vm::poseidon2, + Avm_vm::range_check, + Avm_vm::sha256>; using MainRelations = MainRelations_; @@ -152,57 +167,82 @@ class AvmFlavor { template using LookupRelations_ = std::tuple< // Lookups - incl_main_tag_err_relation, - incl_mem_tag_err_relation, - kernel_output_lookup_relation, - lookup_byte_lengths_relation, - lookup_byte_operations_relation, - lookup_cd_value_relation, - lookup_into_kernel_relation, - lookup_opcode_gas_relation, - lookup_pow_2_0_relation, - lookup_pow_2_1_relation, - lookup_ret_value_relation, - lookup_rng_chk_0_relation, - lookup_rng_chk_1_relation, - lookup_rng_chk_2_relation, - lookup_rng_chk_3_relation, - lookup_rng_chk_4_relation, - lookup_rng_chk_5_relation, - lookup_rng_chk_6_relation, - lookup_rng_chk_7_relation, - lookup_rng_chk_diff_relation, - lookup_rng_chk_pow_2_relation, - perm_cmp_alu_relation, - perm_main_alu_relation, - perm_main_bin_relation, - perm_main_conv_relation, - perm_main_mem_a_relation, - perm_main_mem_b_relation, - perm_main_mem_c_relation, - perm_main_mem_d_relation, - perm_main_mem_ind_addr_a_relation, - perm_main_mem_ind_addr_b_relation, - perm_main_mem_ind_addr_c_relation, - perm_main_mem_ind_addr_d_relation, - perm_main_pedersen_relation, - perm_main_pos2_perm_relation, - perm_main_slice_relation, - perm_pos_mem_read_a_relation, - perm_pos_mem_read_b_relation, - perm_pos_mem_read_c_relation, - perm_pos_mem_read_d_relation, - perm_pos_mem_write_a_relation, - perm_pos_mem_write_b_relation, - perm_pos_mem_write_c_relation, - perm_pos_mem_write_d_relation, - perm_rng_alu_relation, - perm_rng_cmp_hi_relation, - perm_rng_cmp_lo_relation, - perm_rng_gas_da_relation, - perm_rng_gas_l2_relation, - perm_rng_mem_relation, - perm_slice_mem_relation>; + incl_main_tag_err_relation, + incl_mem_tag_err_relation, + kernel_output_lookup_relation, + lookup_byte_lengths_relation, + lookup_byte_operations_relation, + lookup_cd_value_relation, + lookup_div_u16_0_relation, + lookup_div_u16_1_relation, + lookup_div_u16_2_relation, + lookup_div_u16_3_relation, + lookup_div_u16_4_relation, + lookup_div_u16_5_relation, + lookup_div_u16_6_relation, + lookup_div_u16_7_relation, + lookup_into_kernel_relation, + lookup_mem_rng_chk_hi_relation, + lookup_mem_rng_chk_lo_relation, + lookup_mem_rng_chk_mid_relation, + lookup_opcode_gas_relation, + lookup_pow_2_0_relation, + lookup_pow_2_1_relation, + lookup_ret_value_relation, + lookup_rng_chk_0_relation, + lookup_rng_chk_1_relation, + lookup_rng_chk_2_relation, + lookup_rng_chk_3_relation, + lookup_rng_chk_4_relation, + lookup_rng_chk_5_relation, + lookup_rng_chk_6_relation, + lookup_rng_chk_7_relation, + lookup_rng_chk_diff_relation, + lookup_rng_chk_pow_2_relation, + lookup_u16_0_relation, + lookup_u16_1_relation, + lookup_u16_10_relation, + lookup_u16_11_relation, + lookup_u16_12_relation, + lookup_u16_13_relation, + lookup_u16_14_relation, + lookup_u16_2_relation, + lookup_u16_3_relation, + lookup_u16_4_relation, + lookup_u16_5_relation, + lookup_u16_6_relation, + lookup_u16_7_relation, + lookup_u16_8_relation, + lookup_u16_9_relation, + lookup_u8_0_relation, + lookup_u8_1_relation, + perm_main_alu_relation, + perm_main_bin_relation, + perm_main_conv_relation, + perm_main_mem_a_relation, + perm_main_mem_b_relation, + perm_main_mem_c_relation, + perm_main_mem_d_relation, + perm_main_mem_ind_addr_a_relation, + perm_main_mem_ind_addr_b_relation, + perm_main_mem_ind_addr_c_relation, + perm_main_mem_ind_addr_d_relation, + perm_main_pedersen_relation, + perm_main_pos2_perm_relation, + perm_main_slice_relation, + perm_pos_mem_read_a_relation, + perm_pos_mem_read_b_relation, + perm_pos_mem_read_c_relation, + perm_pos_mem_read_d_relation, + perm_pos_mem_write_a_relation, + perm_pos_mem_write_b_relation, + perm_pos_mem_write_c_relation, + perm_pos_mem_write_d_relation, + perm_slice_mem_relation, + range_check_da_gas_hi_relation, + range_check_da_gas_lo_relation, + range_check_l2_gas_hi_relation, + range_check_l2_gas_lo_relation>; using LookupRelations = LookupRelations_; diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/generated/full_row.cpp b/barretenberg/cpp/src/barretenberg/vm/avm/generated/full_row.cpp index 01ac46e02d8b..83f15cc84746 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/generated/full_row.cpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/generated/full_row.cpp @@ -591,15 +591,10 @@ template std::vector AvmFullRow::names() "poseidon2_mem_addr_write_d", "poseidon2_output_addr", "poseidon2_sel_poseidon_perm", - "range_check_alu_rng_chk", "range_check_clk", - "range_check_cmp_hi_bits_rng_chk", - "range_check_cmp_lo_bits_rng_chk", "range_check_dyn_diff", "range_check_dyn_rng_chk_bits", "range_check_dyn_rng_chk_pow_2", - "range_check_gas_da_rng_chk", - "range_check_gas_l2_rng_chk", "range_check_is_lte_u112", "range_check_is_lte_u128", "range_check_is_lte_u16", @@ -608,7 +603,6 @@ template std::vector AvmFullRow::names() "range_check_is_lte_u64", "range_check_is_lte_u80", "range_check_is_lte_u96", - "range_check_mem_rng_chk", "range_check_rng_chk_bits", "range_check_sel_lookup_0", "range_check_sel_lookup_1", @@ -694,6 +688,9 @@ template std::vector AvmFullRow::names() "lookup_ret_value_inv", "incl_main_tag_err_inv", "incl_mem_tag_err_inv", + "lookup_mem_rng_chk_lo_inv", + "lookup_mem_rng_chk_mid_inv", + "lookup_mem_rng_chk_hi_inv", "lookup_rng_chk_pow_2_counts", "lookup_rng_chk_diff_counts", "lookup_rng_chk_0_counts", @@ -1292,15 +1289,10 @@ template RefVector AvmFullRow::as_vector() const poseidon2_mem_addr_write_d, poseidon2_output_addr, poseidon2_sel_poseidon_perm, - range_check_alu_rng_chk, range_check_clk, - range_check_cmp_hi_bits_rng_chk, - range_check_cmp_lo_bits_rng_chk, range_check_dyn_diff, range_check_dyn_rng_chk_bits, range_check_dyn_rng_chk_pow_2, - range_check_gas_da_rng_chk, - range_check_gas_l2_rng_chk, range_check_is_lte_u112, range_check_is_lte_u128, range_check_is_lte_u16, @@ -1309,7 +1301,6 @@ template RefVector AvmFullRow::as_vector() const range_check_is_lte_u64, range_check_is_lte_u80, range_check_is_lte_u96, - range_check_mem_rng_chk, range_check_rng_chk_bits, range_check_sel_lookup_0, range_check_sel_lookup_1, @@ -1395,6 +1386,9 @@ template RefVector AvmFullRow::as_vector() const lookup_ret_value_inv, incl_main_tag_err_inv, incl_mem_tag_err_inv, + lookup_mem_rng_chk_lo_inv, + lookup_mem_rng_chk_mid_inv, + lookup_mem_rng_chk_hi_inv, lookup_rng_chk_pow_2_counts, lookup_rng_chk_diff_counts, lookup_rng_chk_0_counts, diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/generated/full_row.hpp b/barretenberg/cpp/src/barretenberg/vm/avm/generated/full_row.hpp index bf958cce1b47..83416878f7c0 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/generated/full_row.hpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/generated/full_row.hpp @@ -582,15 +582,10 @@ template struct AvmFullRow { FF poseidon2_mem_addr_write_d{}; FF poseidon2_output_addr{}; FF poseidon2_sel_poseidon_perm{}; - FF range_check_alu_rng_chk{}; FF range_check_clk{}; - FF range_check_cmp_hi_bits_rng_chk{}; - FF range_check_cmp_lo_bits_rng_chk{}; FF range_check_dyn_diff{}; FF range_check_dyn_rng_chk_bits{}; FF range_check_dyn_rng_chk_pow_2{}; - FF range_check_gas_da_rng_chk{}; - FF range_check_gas_l2_rng_chk{}; FF range_check_is_lte_u112{}; FF range_check_is_lte_u128{}; FF range_check_is_lte_u16{}; @@ -599,7 +594,6 @@ template struct AvmFullRow { FF range_check_is_lte_u64{}; FF range_check_is_lte_u80{}; FF range_check_is_lte_u96{}; - FF range_check_mem_rng_chk{}; FF range_check_rng_chk_bits{}; FF range_check_sel_lookup_0{}; FF range_check_sel_lookup_1{}; @@ -685,6 +679,9 @@ template struct AvmFullRow { FF lookup_ret_value_inv{}; FF incl_main_tag_err_inv{}; FF incl_mem_tag_err_inv{}; + FF lookup_mem_rng_chk_lo_inv{}; + FF lookup_mem_rng_chk_mid_inv{}; + FF lookup_mem_rng_chk_hi_inv{}; FF lookup_rng_chk_pow_2_counts{}; FF lookup_rng_chk_diff_counts{}; FF lookup_rng_chk_0_counts{}; @@ -710,7 +707,7 @@ template struct AvmFullRow { RefVector as_vector() const; static std::vector names(); - static constexpr size_t SIZE = 696; + static constexpr size_t SIZE = 762; }; template std::ostream& operator<<(std::ostream& os, AvmFullRow const& row); diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/generated/relations/range_check.hpp b/barretenberg/cpp/src/barretenberg/vm/avm/generated/relations/range_check.hpp index 13c8cde0c2bf..be65234513fc 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/generated/relations/range_check.hpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/generated/relations/range_check.hpp @@ -10,8 +10,8 @@ template class range_checkImpl { public: using FF = FF_; - static constexpr std::array SUBRELATION_PARTIAL_LENGTHS = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 4, 2, 3, - 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3 }; + static constexpr std::array SUBRELATION_PARTIAL_LENGTHS = { 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, + 4, 2, 3, 2, 2, 2, 2, 2, 2, 2 }; template void static accumulate(ContainerOverSubrelations& evals, @@ -219,36 +219,6 @@ template class range_checkImpl { tmp *= scaling_factor; std::get<19>(evals) += typename Accumulator::View(tmp); } - { - using Accumulator = typename std::tuple_element_t<20, ContainerOverSubrelations>; - auto tmp = (new_term.range_check_mem_rng_chk * (new_term.range_check_rng_chk_bits - FF(40))); - tmp *= scaling_factor; - std::get<20>(evals) += typename Accumulator::View(tmp); - } - { - using Accumulator = typename std::tuple_element_t<21, ContainerOverSubrelations>; - auto tmp = (new_term.range_check_gas_l2_rng_chk * (new_term.range_check_rng_chk_bits - FF(32))); - tmp *= scaling_factor; - std::get<21>(evals) += typename Accumulator::View(tmp); - } - { - using Accumulator = typename std::tuple_element_t<22, ContainerOverSubrelations>; - auto tmp = (new_term.range_check_gas_da_rng_chk * (new_term.range_check_rng_chk_bits - FF(32))); - tmp *= scaling_factor; - std::get<22>(evals) += typename Accumulator::View(tmp); - } - { - using Accumulator = typename std::tuple_element_t<23, ContainerOverSubrelations>; - auto tmp = (new_term.range_check_cmp_lo_bits_rng_chk * (new_term.range_check_rng_chk_bits - FF(128))); - tmp *= scaling_factor; - std::get<23>(evals) += typename Accumulator::View(tmp); - } - { - using Accumulator = typename std::tuple_element_t<24, ContainerOverSubrelations>; - auto tmp = (new_term.range_check_cmp_hi_bits_rng_chk * (new_term.range_check_rng_chk_bits - FF(128))); - tmp *= scaling_factor; - std::get<24>(evals) += typename Accumulator::View(tmp); - } } }; diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/tests/range_check.test.cpp b/barretenberg/cpp/src/barretenberg/vm/avm/tests/range_check.test.cpp index 9b0dee869591..95a4b795338d 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/tests/range_check.test.cpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/tests/range_check.test.cpp @@ -27,16 +27,16 @@ TEST(AvmRangeCheck, shouldRangeCheck) std::cerr << "Generating trace of size " << TRACE_SIZE << "..." << std::endl; // Do a bunch of range checks (clk does not matter here so we just have it as 0) - range_check_builder.assert_range(0, 0, EventEmitter::ALU, 0); - range_check_builder.assert_range(0, 1, EventEmitter::ALU, 0); - range_check_builder.assert_range(0, 16, EventEmitter::ALU, 0); - range_check_builder.assert_range(2, 2, EventEmitter::ALU, 0); - range_check_builder.assert_range(255, 8, EventEmitter::ALU, 0); - range_check_builder.assert_range(1 << 16, 17, EventEmitter::ALU, 0); - range_check_builder.assert_range(1 << 18, 32, EventEmitter::ALU, 0); - range_check_builder.assert_range(uint128_t(1) << 66, 67, EventEmitter::ALU, 0); - range_check_builder.assert_range(1024, 109, EventEmitter::ALU, 0); - range_check_builder.assert_range(1, 128, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(0), 0, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(0), 1, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(0), 16, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(2), 2, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(255), 8, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF((1 << 16)), 17, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(1 << 18), 32, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(uint256_t::from_uint128(uint128_t(1) << 66)), 67, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(1024), 109, EventEmitter::ALU, 0); + range_check_builder.assert_range(FF(1), 128, EventEmitter::ALU, 0); auto finalised_builder = range_check_builder.finalize(); for (size_t i = 0; i < finalised_builder.size(); i++) { @@ -62,7 +62,7 @@ TEST(AvmRangeCheck, shouldRangeCheck) trace[i].lookup_rng_chk_6_counts = range_check_builder.u16_range_chk_counters[6][uint16_t(i)]; trace[i].lookup_rng_chk_7_counts = range_check_builder.u16_range_chk_counters[7][uint16_t(i)]; trace[i].lookup_rng_chk_diff_counts = range_check_builder.dyn_diff_counts[uint16_t(i)]; - trace[i].lookup_rng_chk_pow_2_counts = range_check_builder.powers_of_2_counts[uint8_t(i)]; + trace[i].lookup_rng_chk_pow_2_counts = range_check_builder.powers_of_2_counts[uint16_t(i)]; } std::cerr << "Done generating trace..." << std::endl; diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/trace/gadgets/range_check.cpp b/barretenberg/cpp/src/barretenberg/vm/avm/trace/gadgets/range_check.cpp index 5dea409ea77e..1cc98dfb1b5b 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/trace/gadgets/range_check.cpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/trace/gadgets/range_check.cpp @@ -1,51 +1,15 @@ #include "barretenberg/vm/avm/trace/gadgets/range_check.hpp" -#include "barretenberg/common/serialize.hpp" -#include namespace bb::avm_trace { -/************************************************************************************************** - * RANGE CHECK OPERATIONS - **************************************************************************************************/ // This function just enqueues a range check event, we handle processing them later in finalize. -bool AvmRangeCheckBuilder::assert_range(uint128_t value, uint8_t num_bits, EventEmitter e, uint64_t clk) +bool AvmRangeCheckBuilder::assert_range(FF value, uint8_t num_bits, EventEmitter e, uint32_t clk) { // We don't support range checks on values that are field-sized - ASSERT(num_bits <= 128); - range_check_events.push_back({ clk, value, num_bits, e }); + // ASSERT(num_bits <= 128); + range_check_events.push_back({ clk, uint128_t(value), num_bits, e }); return true; } - -void AvmRangeCheckBuilder::combine_range_builders(AvmRangeCheckBuilder const& other) -{ - // Update events - range_check_events.insert( - range_check_events.end(), other.range_check_events.begin(), other.range_check_events.end()); - // Sort just in case (i dont think we need to) - std::sort(range_check_events.begin(), range_check_events.end(), [](auto const& a, auto const& b) { - return a.clk < b.clk; - }); - // Update counters - // U16 counters - for (size_t i = 0; i < 8; i++) { - const auto& row = other.u16_range_chk_counters[i]; - for (auto const& [key, value] : row) { - u16_range_chk_counters[i][key] += value; - } - } - // Powers of 2 counter - for (auto const& [key, value] : other.powers_of_2_counts) { - powers_of_2_counts[key] += value; - } - // Dyn diff counter - for (auto const& [key, value] : other.dyn_diff_counts) { - dyn_diff_counts[key] += value; - } -} - -/************************************************************************************************** - * FINALIZE - **************************************************************************************************/ // Turns range check events into real entries std::vector AvmRangeCheckBuilder::finalize() { @@ -78,31 +42,10 @@ std::vector AvmRangeCheckBuilder::finaliz } // Update the other counters - powers_of_2_counts[uint8_t(entry.dyn_bits)]++; + powers_of_2_counts[entry.dyn_bits]++; auto dyn_diff = uint16_t((1 << entry.dyn_bits) - entry.dynamic_slice_register - 1); entry.dyn_diff = dyn_diff; dyn_diff_counts[dyn_diff]++; - - switch (event.emitter) { - case EventEmitter::ALU: - entry.is_alu_sel = true; - break; - case EventEmitter::MEMORY: - entry.is_mem_sel = true; - break; - case EventEmitter::GAS_L2: - entry.is_gas_l2_sel = true; - break; - case EventEmitter::GAS_DA: - entry.is_gas_da_sel = true; - break; - case EventEmitter::CMP_LO: - entry.is_cmp_lo = true; - break; - case EventEmitter::CMP_HI: - entry.is_cmp_hi = true; - break; - } entries.push_back(entry); } return entries; diff --git a/barretenberg/cpp/src/barretenberg/vm/avm/trace/gadgets/range_check.hpp b/barretenberg/cpp/src/barretenberg/vm/avm/trace/gadgets/range_check.hpp index 5c4e88677d93..fc1fd70b3750 100644 --- a/barretenberg/cpp/src/barretenberg/vm/avm/trace/gadgets/range_check.hpp +++ b/barretenberg/cpp/src/barretenberg/vm/avm/trace/gadgets/range_check.hpp @@ -1,24 +1,26 @@ #pragma once -#include "barretenberg/common/serialize.hpp" #include "barretenberg/vm/avm/generated/relations/range_check.hpp" #include "barretenberg/vm/avm/trace/common.hpp" #include -enum class EventEmitter { ALU, MEMORY, GAS_L2, GAS_DA, CMP_LO, CMP_HI }; +enum class EventEmitter { + ALU, + MEMORY, +}; namespace bb::avm_trace { class AvmRangeCheckBuilder { public: struct RangeCheckEvent { - uint64_t clk; + uint32_t clk; uint128_t value; uint8_t num_bits; EventEmitter emitter; }; struct RangeCheckEntry { - uint64_t clk; + uint32_t clk; uint128_t value; uint8_t num_bits; // 8 total 16-bit registers, the last one is dynamic @@ -26,38 +28,26 @@ class AvmRangeCheckBuilder { uint16_t dynamic_slice_register; // The number of bits that need to be dynamically checked uint16_t dyn_bits; - // The difference between max value of the dynamic bit range and what is stored in the dyn register + // The difference between uint16_t dyn_diff; // Bit string representing which of the is_lte_x flags are on // From LSB to MSB: // [is_lte_u16, is_lte_u32, is_lte_u48, is_lte_u64, is_lte_u80, is_lte_u96, is_lte_u112, is_lte_u128] uint8_t bit_range_flag; - bool is_mem_sel; - bool is_alu_sel; - bool is_gas_l2_sel; - bool is_gas_da_sel; - bool is_cmp_lo; - bool is_cmp_hi; - - // Need this for sorting - bool operator<(RangeCheckEntry const& other) const { return clk < other.clk; } }; std::array, 8> u16_range_chk_counters; - std::unordered_map powers_of_2_counts; + std::unordered_map powers_of_2_counts; std::unordered_map dyn_diff_counts; // This function just enqueues a range check event, we handle processing them later in finalize. - bool assert_range(uint128_t value, uint8_t num_bits, EventEmitter e, uint64_t clk); - - void combine_range_builders(AvmRangeCheckBuilder const& other); + bool assert_range(FF value, uint8_t num_bits, EventEmitter e, uint32_t clk); // Turns range check events into real entries std::vector finalize(); template void merge_into(DestRow& row, RangeCheckEntry const& entry) { - row.range_check_clk = entry.clk; row.range_check_sel_rng_chk = FF::one(); row.range_check_value = FF(uint256_t::from_uint128(entry.value)); row.range_check_rng_chk_bits = entry.num_bits; @@ -90,13 +80,6 @@ class AvmRangeCheckBuilder { row.range_check_u16_r5 = entry.fixed_slice_registers[5]; row.range_check_u16_r6 = entry.fixed_slice_registers[6]; row.range_check_u16_r7 = entry.dynamic_slice_register; - - row.range_check_alu_rng_chk = entry.is_alu_sel; - row.range_check_mem_rng_chk = entry.is_mem_sel; - row.range_check_gas_l2_rng_chk = entry.is_gas_l2_sel; - row.range_check_gas_da_rng_chk = entry.is_gas_da_sel; - row.range_check_cmp_lo_bits_rng_chk = entry.is_cmp_lo; - row.range_check_cmp_hi_bits_rng_chk = entry.is_cmp_hi; } private: