diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-09-07 21:25:36 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-09-07 21:25:36 +0300 |
| commit | 23db5514bf626801c8e752f12171eb45d2598946 (patch) | |
| tree | 8a5fbd619ddb4d5c22b6c6fb1c1027c1fd2e7af4 | |
| parent | 4d8fdd4288cc3ca5e0a2bd6ac80b725c2ee52118 (diff) | |
| download | copyjit-23db5514bf626801c8e752f12171eb45d2598946.tar.gz copyjit-23db5514bf626801c8e752f12171eb45d2598946.zip | |
allow fibonacci in jit-comparison
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | lib/imm.h | 49 | ||||
| -rw-r--r-- | lib/imm_decls.h | 12 | ||||
| -rw-r--r-- | lib/imm_defns.h | 75 | ||||
| -rw-r--r-- | lib/op_decls.h | 2839 | ||||
| -rw-r--r-- | lib/op_defns.h | 19855 | ||||
| -rw-r--r-- | ops/branchi/call.c | 6 | ||||
| -rw-r--r-- | ops/branchi/xlei.c | 7 | ||||
| -rw-r--r-- | ops/common.h | 6 | ||||
| -rw-r--r-- | ops/le/source.mk | 2 | ||||
| -rw-r--r-- | ops/le/xle2.c | 5 | ||||
| -rw-r--r-- | ops/li/liom1.c | 7 | ||||
| -rw-r--r-- | ops/li/lixm1.c | 7 | ||||
| -rw-r--r-- | ops/popx.c | 6 | ||||
| -rw-r--r-- | ops/pushx.c | 7 | ||||
| -rw-r--r-- | ops/source.mk | 1 |
16 files changed, 55 insertions, 22832 deletions
@@ -7,6 +7,9 @@ lib/prune lib/decls.h lib/defns.h lib/ops.h +lib/imm_decls.h +lib/imm_defns.h +lib/imm.h lib/*.d tests/*.d build diff --git a/lib/imm.h b/lib/imm.h deleted file mode 100644 index 97580f4..0000000 --- a/lib/imm.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifndef COPYJIT_IMM_H -#define COPYJIT_IMM_H -unsigned char gen_addia[] = { - 0x48, 0x03, 0x35, 0x05, 0x00, 0x00, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, - 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_addia_len = 20; -unsigned char gen_addio[] = { - 0x4c, 0x03, 0x05, 0x05, 0x00, 0x00, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, - 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_addio_len = 20; -unsigned char gen_addix[] = { - 0x48, 0x03, 0x15, 0x05, 0x00, 0x00, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, - 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_addix_len = 20; -unsigned char gen_addiy[] = { - 0x48, 0x03, 0x0d, 0x05, 0x00, 0x00, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, - 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_addiy_len = 20; -unsigned char gen_lia[] = { - 0x48, 0x8b, 0x35, 0x05, 0x00, 0x00, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, - 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_lia_len = 20; -unsigned char gen_lio[] = { - 0x4c, 0x8b, 0x05, 0x05, 0x00, 0x00, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, - 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_lio_len = 20; -unsigned char gen_lix[] = { - 0x48, 0x8b, 0x15, 0x05, 0x00, 0x00, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, - 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_lix_len = 20; -unsigned char gen_liy[] = { - 0x48, 0x8b, 0x0d, 0x05, 0x00, 0x00, 0x00, 0xe9, 0x08, 0x00, 0x00, 0x00, - 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_liy_len = 20; -unsigned char gen_bani[] = { - 0x48, 0x85, 0xf6, 0x48, 0x8d, 0x05, 0x12, 0x00, 0x00, 0x00, 0x48, 0x0f, - 0x45, 0x05, 0x02, 0x00, 0x00, 0x00, 0xff, 0xe0, 0x0f, 0x1f, 0x84, 0x00, - 0x00, 0x00, 0x00, 0x00 -}; -unsigned int gen_bani_len = 28; -#endif /* COPYJIT_OPS_H */ diff --git a/lib/imm_decls.h b/lib/imm_decls.h deleted file mode 100644 index f520e1f..0000000 --- a/lib/imm_decls.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef COPYJIT_IMM_DECLS_H -#define COPYJIT_IMM_DECLS_H -void *compile_addia(ctx_t *ctx, unsigned long i); -void *compile_addio(ctx_t *ctx, unsigned long i); -void *compile_addix(ctx_t *ctx, unsigned long i); -void *compile_addiy(ctx_t *ctx, unsigned long i); -void *compile_lia(ctx_t *ctx, unsigned long i); -void *compile_lio(ctx_t *ctx, unsigned long i); -void *compile_lix(ctx_t *ctx, unsigned long i); -void *compile_liy(ctx_t *ctx, unsigned long i); -void *compile_bani(ctx_t *ctx, unsigned long i); -#endif /* COPYJIT_DECLS_H */ diff --git a/lib/imm_defns.h b/lib/imm_defns.h deleted file mode 100644 index f3b8baa..0000000 --- a/lib/imm_defns.h +++ /dev/null @@ -1,75 +0,0 @@ -#ifndef COPYJIT_IMM_DEFNS_H -#define COPYJIT_IMM_DEFNS_H -void *compile_addia(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_addia, gen_addia_len); - *(unsigned long *)(ctx->pc + gen_addia_len - 8) = i; - ctx->pc += gen_addia_len; - return pc; - } -void *compile_addio(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_addio, gen_addio_len); - *(unsigned long *)(ctx->pc + gen_addio_len - 8) = i; - ctx->pc += gen_addio_len; - return pc; - } -void *compile_addix(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_addix, gen_addix_len); - *(unsigned long *)(ctx->pc + gen_addix_len - 8) = i; - ctx->pc += gen_addix_len; - return pc; - } -void *compile_addiy(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_addiy, gen_addiy_len); - *(unsigned long *)(ctx->pc + gen_addiy_len - 8) = i; - ctx->pc += gen_addiy_len; - return pc; - } -void *compile_lia(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_lia, gen_lia_len); - *(unsigned long *)(ctx->pc + gen_lia_len - 8) = i; - ctx->pc += gen_lia_len; - return pc; - } -void *compile_lio(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_lio, gen_lio_len); - *(unsigned long *)(ctx->pc + gen_lio_len - 8) = i; - ctx->pc += gen_lio_len; - return pc; - } -void *compile_lix(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_lix, gen_lix_len); - *(unsigned long *)(ctx->pc + gen_lix_len - 8) = i; - ctx->pc += gen_lix_len; - return pc; - } -void *compile_liy(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_liy, gen_liy_len); - *(unsigned long *)(ctx->pc + gen_liy_len - 8) = i; - ctx->pc += gen_liy_len; - return pc; - } -void *compile_bani(ctx_t *ctx, unsigned long i) - { - void *pc = ctx->pc; - memcpy(ctx->pc, gen_bani, gen_bani_len); - *(unsigned long *)(ctx->pc + gen_bani_len - 8) = i; - ctx->pc += gen_bani_len; - return pc; - } -#endif /* COPYJIT_DEFNS_H */ diff --git a/lib/op_decls.h b/lib/op_decls.h deleted file mode 100644 index c7eb3fb..0000000 --- a/lib/op_decls.h +++ /dev/null @@ -1,2839 +0,0 @@ -#ifndef COPYJIT_OP_DECLS_H -#define COPYJIT_OP_DECLS_H -void *compile_add(ctx_t *ctx); -void *compile_addao(ctx_t *ctx); -void *compile_addxo(ctx_t *ctx); -void *compile_addyo(ctx_t *ctx); -void *compile_ban(ctx_t *ctx); -void *compile_baz(ctx_t *ctx); -void *compile_end(ctx_t *ctx); -void *compile_incy(ctx_t *ctx); -void *compile_j(ctx_t *ctx); -void *compile_movao(ctx_t *ctx); -void *compile_movxa(ctx_t *ctx); -void *compile_movxo(ctx_t *ctx); -void *compile_movya(ctx_t *ctx); -void *compile_movyo(ctx_t *ctx); -void *compile_peeko(ctx_t *ctx); -void *compile_popo(ctx_t *ctx); -void *compile_pusha(ctx_t *ctx); -void *compile_sub(ctx_t *ctx); -void *compile_subxo(ctx_t *ctx); -void *compile_subyo(ctx_t *ctx); -void *compile_addia0(ctx_t *ctx); -void *compile_addia1(ctx_t *ctx); -void *compile_addia10(ctx_t *ctx); -void *compile_addia100(ctx_t *ctx); -void *compile_addia101(ctx_t *ctx); -void *compile_addia102(ctx_t *ctx); -void *compile_addia103(ctx_t *ctx); -void *compile_addia104(ctx_t *ctx); -void *compile_addia105(ctx_t *ctx); -void *compile_addia106(ctx_t *ctx); -void *compile_addia107(ctx_t *ctx); -void *compile_addia108(ctx_t *ctx); -void *compile_addia109(ctx_t *ctx); -void *compile_addia11(ctx_t *ctx); -void *compile_addia110(ctx_t *ctx); -void *compile_addia111(ctx_t *ctx); -void *compile_addia112(ctx_t *ctx); -void *compile_addia113(ctx_t *ctx); -void *compile_addia114(ctx_t *ctx); -void *compile_addia115(ctx_t *ctx); -void *compile_addia116(ctx_t *ctx); -void *compile_addia117(ctx_t *ctx); -void *compile_addia118(ctx_t *ctx); -void *compile_addia119(ctx_t *ctx); -void *compile_addia12(ctx_t *ctx); -void *compile_addia120(ctx_t *ctx); -void *compile_addia121(ctx_t *ctx); -void *compile_addia122(ctx_t *ctx); -void *compile_addia123(ctx_t *ctx); -void *compile_addia124(ctx_t *ctx); -void *compile_addia125(ctx_t *ctx); -void *compile_addia126(ctx_t *ctx); -void *compile_addia127(ctx_t *ctx); -void *compile_addia128(ctx_t *ctx); -void *compile_addia129(ctx_t *ctx); -void *compile_addia13(ctx_t *ctx); -void *compile_addia130(ctx_t *ctx); -void *compile_addia131(ctx_t *ctx); -void *compile_addia132(ctx_t *ctx); -void *compile_addia133(ctx_t *ctx); -void *compile_addia134(ctx_t *ctx); -void *compile_addia135(ctx_t *ctx); -void *compile_addia136(ctx_t *ctx); -void *compile_addia137(ctx_t *ctx); -void *compile_addia138(ctx_t *ctx); -void *compile_addia139(ctx_t *ctx); -void *compile_addia14(ctx_t *ctx); -void *compile_addia140(ctx_t *ctx); -void *compile_addia141(ctx_t *ctx); -void *compile_addia142(ctx_t *ctx); -void *compile_addia143(ctx_t *ctx); -void *compile_addia144(ctx_t *ctx); -void *compile_addia145(ctx_t *ctx); -void *compile_addia146(ctx_t *ctx); -void *compile_addia147(ctx_t *ctx); -void *compile_addia148(ctx_t *ctx); -void *compile_addia149(ctx_t *ctx); -void *compile_addia15(ctx_t *ctx); -void *compile_addia150(ctx_t *ctx); -void *compile_addia151(ctx_t *ctx); -void *compile_addia152(ctx_t *ctx); -void *compile_addia153(ctx_t *ctx); -void *compile_addia154(ctx_t *ctx); -void *compile_addia155(ctx_t *ctx); -void *compile_addia156(ctx_t *ctx); -void *compile_addia157(ctx_t *ctx); -void *compile_addia158(ctx_t *ctx); -void *compile_addia159(ctx_t *ctx); -void *compile_addia16(ctx_t *ctx); -void *compile_addia160(ctx_t *ctx); -void *compile_addia161(ctx_t *ctx); -void *compile_addia162(ctx_t *ctx); -void *compile_addia163(ctx_t *ctx); -void *compile_addia164(ctx_t *ctx); -void *compile_addia165(ctx_t *ctx); -void *compile_addia166(ctx_t *ctx); -void *compile_addia167(ctx_t *ctx); -void *compile_addia168(ctx_t *ctx); -void *compile_addia169(ctx_t *ctx); -void *compile_addia17(ctx_t *ctx); -void *compile_addia170(ctx_t *ctx); -void *compile_addia171(ctx_t *ctx); -void *compile_addia172(ctx_t *ctx); -void *compile_addia173(ctx_t *ctx); -void *compile_addia174(ctx_t *ctx); -void *compile_addia175(ctx_t *ctx); -void *compile_addia176(ctx_t *ctx); -void *compile_addia177(ctx_t *ctx); -void *compile_addia178(ctx_t *ctx); -void *compile_addia179(ctx_t *ctx); -void *compile_addia18(ctx_t *ctx); -void *compile_addia180(ctx_t *ctx); -void *compile_addia181(ctx_t *ctx); -void *compile_addia182(ctx_t *ctx); -void *compile_addia183(ctx_t *ctx); -void *compile_addia184(ctx_t *ctx); -void *compile_addia185(ctx_t *ctx); -void *compile_addia186(ctx_t *ctx); -void *compile_addia187(ctx_t *ctx); -void *compile_addia188(ctx_t *ctx); -void *compile_addia189(ctx_t *ctx); -void *compile_addia19(ctx_t *ctx); -void *compile_addia190(ctx_t *ctx); -void *compile_addia191(ctx_t *ctx); -void *compile_addia192(ctx_t *ctx); -void *compile_addia193(ctx_t *ctx); -void *compile_addia194(ctx_t *ctx); -void *compile_addia195(ctx_t *ctx); -void *compile_addia196(ctx_t *ctx); -void *compile_addia197(ctx_t *ctx); -void *compile_addia198(ctx_t *ctx); -void *compile_addia199(ctx_t *ctx); -void *compile_addia2(ctx_t *ctx); -void *compile_addia20(ctx_t *ctx); -void *compile_addia200(ctx_t *ctx); -void *compile_addia201(ctx_t *ctx); -void *compile_addia202(ctx_t *ctx); -void *compile_addia203(ctx_t *ctx); -void *compile_addia204(ctx_t *ctx); -void *compile_addia205(ctx_t *ctx); -void *compile_addia206(ctx_t *ctx); -void *compile_addia207(ctx_t *ctx); -void *compile_addia208(ctx_t *ctx); -void *compile_addia209(ctx_t *ctx); -void *compile_addia21(ctx_t *ctx); -void *compile_addia210(ctx_t *ctx); -void *compile_addia211(ctx_t *ctx); -void *compile_addia212(ctx_t *ctx); -void *compile_addia213(ctx_t *ctx); -void *compile_addia214(ctx_t *ctx); -void *compile_addia215(ctx_t *ctx); -void *compile_addia216(ctx_t *ctx); -void *compile_addia217(ctx_t *ctx); -void *compile_addia218(ctx_t *ctx); -void *compile_addia219(ctx_t *ctx); -void *compile_addia22(ctx_t *ctx); -void *compile_addia220(ctx_t *ctx); -void *compile_addia221(ctx_t *ctx); -void *compile_addia222(ctx_t *ctx); -void *compile_addia223(ctx_t *ctx); -void *compile_addia224(ctx_t *ctx); -void *compile_addia225(ctx_t *ctx); -void *compile_addia226(ctx_t *ctx); -void *compile_addia227(ctx_t *ctx); -void *compile_addia228(ctx_t *ctx); -void *compile_addia229(ctx_t *ctx); -void *compile_addia23(ctx_t *ctx); -void *compile_addia230(ctx_t *ctx); -void *compile_addia231(ctx_t *ctx); -void *compile_addia232(ctx_t *ctx); -void *compile_addia233(ctx_t *ctx); -void *compile_addia234(ctx_t *ctx); -void *compile_addia235(ctx_t *ctx); -void *compile_addia236(ctx_t *ctx); -void *compile_addia237(ctx_t *ctx); -void *compile_addia238(ctx_t *ctx); -void *compile_addia239(ctx_t *ctx); -void *compile_addia24(ctx_t *ctx); -void *compile_addia240(ctx_t *ctx); -void *compile_addia241(ctx_t *ctx); -void *compile_addia242(ctx_t *ctx); -void *compile_addia243(ctx_t *ctx); -void *compile_addia244(ctx_t *ctx); -void *compile_addia245(ctx_t *ctx); -void *compile_addia246(ctx_t *ctx); -void *compile_addia247(ctx_t *ctx); -void *compile_addia248(ctx_t *ctx); -void *compile_addia249(ctx_t *ctx); -void *compile_addia25(ctx_t *ctx); -void *compile_addia250(ctx_t *ctx); -void *compile_addia251(ctx_t *ctx); -void *compile_addia252(ctx_t *ctx); -void *compile_addia253(ctx_t *ctx); -void *compile_addia254(ctx_t *ctx); -void *compile_addia255(ctx_t *ctx); -void *compile_addia26(ctx_t *ctx); -void *compile_addia27(ctx_t *ctx); -void *compile_addia28(ctx_t *ctx); -void *compile_addia29(ctx_t *ctx); -void *compile_addia3(ctx_t *ctx); -void *compile_addia30(ctx_t *ctx); -void *compile_addia31(ctx_t *ctx); -void *compile_addia32(ctx_t *ctx); -void *compile_addia33(ctx_t *ctx); -void *compile_addia34(ctx_t *ctx); -void *compile_addia35(ctx_t *ctx); -void *compile_addia36(ctx_t *ctx); -void *compile_addia37(ctx_t *ctx); -void *compile_addia38(ctx_t *ctx); -void *compile_addia39(ctx_t *ctx); -void *compile_addia4(ctx_t *ctx); -void *compile_addia40(ctx_t *ctx); -void *compile_addia41(ctx_t *ctx); -void *compile_addia42(ctx_t *ctx); -void *compile_addia43(ctx_t *ctx); -void *compile_addia44(ctx_t *ctx); -void *compile_addia45(ctx_t *ctx); -void *compile_addia46(ctx_t *ctx); -void *compile_addia47(ctx_t *ctx); -void *compile_addia48(ctx_t *ctx); -void *compile_addia49(ctx_t *ctx); -void *compile_addia5(ctx_t *ctx); -void *compile_addia50(ctx_t *ctx); -void *compile_addia51(ctx_t *ctx); -void *compile_addia52(ctx_t *ctx); -void *compile_addia53(ctx_t *ctx); -void *compile_addia54(ctx_t *ctx); -void *compile_addia55(ctx_t *ctx); -void *compile_addia56(ctx_t *ctx); -void *compile_addia57(ctx_t *ctx); -void *compile_addia58(ctx_t *ctx); -void *compile_addia59(ctx_t *ctx); -void *compile_addia6(ctx_t *ctx); -void *compile_addia60(ctx_t *ctx); -void *compile_addia61(ctx_t *ctx); -void *compile_addia62(ctx_t *ctx); -void *compile_addia63(ctx_t *ctx); -void *compile_addia64(ctx_t *ctx); -void *compile_addia65(ctx_t *ctx); -void *compile_addia66(ctx_t *ctx); -void *compile_addia67(ctx_t *ctx); -void *compile_addia68(ctx_t *ctx); -void *compile_addia69(ctx_t *ctx); -void *compile_addia7(ctx_t *ctx); -void *compile_addia70(ctx_t *ctx); -void *compile_addia71(ctx_t *ctx); -void *compile_addia72(ctx_t *ctx); -void *compile_addia73(ctx_t *ctx); -void *compile_addia74(ctx_t *ctx); -void *compile_addia75(ctx_t *ctx); -void *compile_addia76(ctx_t *ctx); -void *compile_addia77(ctx_t *ctx); -void *compile_addia78(ctx_t *ctx); -void *compile_addia79(ctx_t *ctx); -void *compile_addia8(ctx_t *ctx); -void *compile_addia80(ctx_t *ctx); -void *compile_addia81(ctx_t *ctx); -void *compile_addia82(ctx_t *ctx); -void *compile_addia83(ctx_t *ctx); -void *compile_addia84(ctx_t *ctx); -void *compile_addia85(ctx_t *ctx); -void *compile_addia86(ctx_t *ctx); -void *compile_addia87(ctx_t *ctx); -void *compile_addia88(ctx_t *ctx); -void *compile_addia89(ctx_t *ctx); -void *compile_addia9(ctx_t *ctx); -void *compile_addia90(ctx_t *ctx); -void *compile_addia91(ctx_t *ctx); -void *compile_addia92(ctx_t *ctx); -void *compile_addia93(ctx_t *ctx); -void *compile_addia94(ctx_t *ctx); -void *compile_addia95(ctx_t *ctx); -void *compile_addia96(ctx_t *ctx); -void *compile_addia97(ctx_t *ctx); -void *compile_addia98(ctx_t *ctx); -void *compile_addia99(ctx_t *ctx); -void *compile_addio0(ctx_t *ctx); -void *compile_addio1(ctx_t *ctx); -void *compile_addio10(ctx_t *ctx); -void *compile_addio100(ctx_t *ctx); -void *compile_addio101(ctx_t *ctx); -void *compile_addio102(ctx_t *ctx); -void *compile_addio103(ctx_t *ctx); -void *compile_addio104(ctx_t *ctx); -void *compile_addio105(ctx_t *ctx); -void *compile_addio106(ctx_t *ctx); -void *compile_addio107(ctx_t *ctx); -void *compile_addio108(ctx_t *ctx); -void *compile_addio109(ctx_t *ctx); -void *compile_addio11(ctx_t *ctx); -void *compile_addio110(ctx_t *ctx); -void *compile_addio111(ctx_t *ctx); -void *compile_addio112(ctx_t *ctx); -void *compile_addio113(ctx_t *ctx); -void *compile_addio114(ctx_t *ctx); -void *compile_addio115(ctx_t *ctx); -void *compile_addio116(ctx_t *ctx); -void *compile_addio117(ctx_t *ctx); -void *compile_addio118(ctx_t *ctx); -void *compile_addio119(ctx_t *ctx); -void *compile_addio12(ctx_t *ctx); -void *compile_addio120(ctx_t *ctx); -void *compile_addio121(ctx_t *ctx); -void *compile_addio122(ctx_t *ctx); -void *compile_addio123(ctx_t *ctx); -void *compile_addio124(ctx_t *ctx); -void *compile_addio125(ctx_t *ctx); -void *compile_addio126(ctx_t *ctx); -void *compile_addio127(ctx_t *ctx); -void *compile_addio128(ctx_t *ctx); -void *compile_addio129(ctx_t *ctx); -void *compile_addio13(ctx_t *ctx); -void *compile_addio130(ctx_t *ctx); -void *compile_addio131(ctx_t *ctx); -void *compile_addio132(ctx_t *ctx); -void *compile_addio133(ctx_t *ctx); -void *compile_addio134(ctx_t *ctx); -void *compile_addio135(ctx_t *ctx); -void *compile_addio136(ctx_t *ctx); -void *compile_addio137(ctx_t *ctx); -void *compile_addio138(ctx_t *ctx); -void *compile_addio139(ctx_t *ctx); -void *compile_addio14(ctx_t *ctx); -void *compile_addio140(ctx_t *ctx); -void *compile_addio141(ctx_t *ctx); -void *compile_addio142(ctx_t *ctx); -void *compile_addio143(ctx_t *ctx); -void *compile_addio144(ctx_t *ctx); -void *compile_addio145(ctx_t *ctx); -void *compile_addio146(ctx_t *ctx); -void *compile_addio147(ctx_t *ctx); -void *compile_addio148(ctx_t *ctx); -void *compile_addio149(ctx_t *ctx); -void *compile_addio15(ctx_t *ctx); -void *compile_addio150(ctx_t *ctx); -void *compile_addio151(ctx_t *ctx); -void *compile_addio152(ctx_t *ctx); -void *compile_addio153(ctx_t *ctx); -void *compile_addio154(ctx_t *ctx); -void *compile_addio155(ctx_t *ctx); -void *compile_addio156(ctx_t *ctx); -void *compile_addio157(ctx_t *ctx); -void *compile_addio158(ctx_t *ctx); -void *compile_addio159(ctx_t *ctx); -void *compile_addio16(ctx_t *ctx); -void *compile_addio160(ctx_t *ctx); -void *compile_addio161(ctx_t *ctx); -void *compile_addio162(ctx_t *ctx); -void *compile_addio163(ctx_t *ctx); -void *compile_addio164(ctx_t *ctx); -void *compile_addio165(ctx_t *ctx); -void *compile_addio166(ctx_t *ctx); -void *compile_addio167(ctx_t *ctx); -void *compile_addio168(ctx_t *ctx); -void *compile_addio169(ctx_t *ctx); -void *compile_addio17(ctx_t *ctx); -void *compile_addio170(ctx_t *ctx); -void *compile_addio171(ctx_t *ctx); -void *compile_addio172(ctx_t *ctx); -void *compile_addio173(ctx_t *ctx); -void *compile_addio174(ctx_t *ctx); -void *compile_addio175(ctx_t *ctx); -void *compile_addio176(ctx_t *ctx); -void *compile_addio177(ctx_t *ctx); -void *compile_addio178(ctx_t *ctx); -void *compile_addio179(ctx_t *ctx); -void *compile_addio18(ctx_t *ctx); -void *compile_addio180(ctx_t *ctx); -void *compile_addio181(ctx_t *ctx); -void *compile_addio182(ctx_t *ctx); -void *compile_addio183(ctx_t *ctx); -void *compile_addio184(ctx_t *ctx); -void *compile_addio185(ctx_t *ctx); -void *compile_addio186(ctx_t *ctx); -void *compile_addio187(ctx_t *ctx); -void *compile_addio188(ctx_t *ctx); -void *compile_addio189(ctx_t *ctx); -void *compile_addio19(ctx_t *ctx); -void *compile_addio190(ctx_t *ctx); -void *compile_addio191(ctx_t *ctx); -void *compile_addio192(ctx_t *ctx); -void *compile_addio193(ctx_t *ctx); -void *compile_addio194(ctx_t *ctx); -void *compile_addio195(ctx_t *ctx); -void *compile_addio196(ctx_t *ctx); -void *compile_addio197(ctx_t *ctx); -void *compile_addio198(ctx_t *ctx); -void *compile_addio199(ctx_t *ctx); -void *compile_addio2(ctx_t *ctx); -void *compile_addio20(ctx_t *ctx); -void *compile_addio200(ctx_t *ctx); -void *compile_addio201(ctx_t *ctx); -void *compile_addio202(ctx_t *ctx); -void *compile_addio203(ctx_t *ctx); -void *compile_addio204(ctx_t *ctx); -void *compile_addio205(ctx_t *ctx); -void *compile_addio206(ctx_t *ctx); -void *compile_addio207(ctx_t *ctx); -void *compile_addio208(ctx_t *ctx); -void *compile_addio209(ctx_t *ctx); -void *compile_addio21(ctx_t *ctx); -void *compile_addio210(ctx_t *ctx); -void *compile_addio211(ctx_t *ctx); -void *compile_addio212(ctx_t *ctx); -void *compile_addio213(ctx_t *ctx); -void *compile_addio214(ctx_t *ctx); -void *compile_addio215(ctx_t *ctx); -void *compile_addio216(ctx_t *ctx); -void *compile_addio217(ctx_t *ctx); -void *compile_addio218(ctx_t *ctx); -void *compile_addio219(ctx_t *ctx); -void *compile_addio22(ctx_t *ctx); -void *compile_addio220(ctx_t *ctx); -void *compile_addio221(ctx_t *ctx); -void *compile_addio222(ctx_t *ctx); -void *compile_addio223(ctx_t *ctx); -void *compile_addio224(ctx_t *ctx); -void *compile_addio225(ctx_t *ctx); -void *compile_addio226(ctx_t *ctx); -void *compile_addio227(ctx_t *ctx); -void *compile_addio228(ctx_t *ctx); -void *compile_addio229(ctx_t *ctx); -void *compile_addio23(ctx_t *ctx); -void *compile_addio230(ctx_t *ctx); -void *compile_addio231(ctx_t *ctx); -void *compile_addio232(ctx_t *ctx); -void *compile_addio233(ctx_t *ctx); -void *compile_addio234(ctx_t *ctx); -void *compile_addio235(ctx_t *ctx); -void *compile_addio236(ctx_t *ctx); -void *compile_addio237(ctx_t *ctx); -void *compile_addio238(ctx_t *ctx); -void *compile_addio239(ctx_t *ctx); -void *compile_addio24(ctx_t *ctx); -void *compile_addio240(ctx_t *ctx); -void *compile_addio241(ctx_t *ctx); -void *compile_addio242(ctx_t *ctx); -void *compile_addio243(ctx_t *ctx); -void *compile_addio244(ctx_t *ctx); -void *compile_addio245(ctx_t *ctx); -void *compile_addio246(ctx_t *ctx); -void *compile_addio247(ctx_t *ctx); -void *compile_addio248(ctx_t *ctx); -void *compile_addio249(ctx_t *ctx); -void *compile_addio25(ctx_t *ctx); -void *compile_addio250(ctx_t *ctx); -void *compile_addio251(ctx_t *ctx); -void *compile_addio252(ctx_t *ctx); -void *compile_addio253(ctx_t *ctx); -void *compile_addio254(ctx_t *ctx); -void *compile_addio255(ctx_t *ctx); -void *compile_addio26(ctx_t *ctx); -void *compile_addio27(ctx_t *ctx); -void *compile_addio28(ctx_t *ctx); -void *compile_addio29(ctx_t *ctx); -void *compile_addio3(ctx_t *ctx); -void *compile_addio30(ctx_t *ctx); -void *compile_addio31(ctx_t *ctx); -void *compile_addio32(ctx_t *ctx); -void *compile_addio33(ctx_t *ctx); -void *compile_addio34(ctx_t *ctx); -void *compile_addio35(ctx_t *ctx); -void *compile_addio36(ctx_t *ctx); -void *compile_addio37(ctx_t *ctx); -void *compile_addio38(ctx_t *ctx); -void *compile_addio39(ctx_t *ctx); -void *compile_addio4(ctx_t *ctx); -void *compile_addio40(ctx_t *ctx); -void *compile_addio41(ctx_t *ctx); -void *compile_addio42(ctx_t *ctx); -void *compile_addio43(ctx_t *ctx); -void *compile_addio44(ctx_t *ctx); -void *compile_addio45(ctx_t *ctx); -void *compile_addio46(ctx_t *ctx); -void *compile_addio47(ctx_t *ctx); -void *compile_addio48(ctx_t *ctx); -void *compile_addio49(ctx_t *ctx); -void *compile_addio5(ctx_t *ctx); -void *compile_addio50(ctx_t *ctx); -void *compile_addio51(ctx_t *ctx); -void *compile_addio52(ctx_t *ctx); -void *compile_addio53(ctx_t *ctx); -void *compile_addio54(ctx_t *ctx); -void *compile_addio55(ctx_t *ctx); -void *compile_addio56(ctx_t *ctx); -void *compile_addio57(ctx_t *ctx); -void *compile_addio58(ctx_t *ctx); -void *compile_addio59(ctx_t *ctx); -void *compile_addio6(ctx_t *ctx); -void *compile_addio60(ctx_t *ctx); -void *compile_addio61(ctx_t *ctx); -void *compile_addio62(ctx_t *ctx); -void *compile_addio63(ctx_t *ctx); -void *compile_addio64(ctx_t *ctx); -void *compile_addio65(ctx_t *ctx); -void *compile_addio66(ctx_t *ctx); -void *compile_addio67(ctx_t *ctx); -void *compile_addio68(ctx_t *ctx); -void *compile_addio69(ctx_t *ctx); -void *compile_addio7(ctx_t *ctx); -void *compile_addio70(ctx_t *ctx); -void *compile_addio71(ctx_t *ctx); -void *compile_addio72(ctx_t *ctx); -void *compile_addio73(ctx_t *ctx); -void *compile_addio74(ctx_t *ctx); -void *compile_addio75(ctx_t *ctx); -void *compile_addio76(ctx_t *ctx); -void *compile_addio77(ctx_t *ctx); -void *compile_addio78(ctx_t *ctx); -void *compile_addio79(ctx_t *ctx); -void *compile_addio8(ctx_t *ctx); -void *compile_addio80(ctx_t *ctx); -void *compile_addio81(ctx_t *ctx); -void *compile_addio82(ctx_t *ctx); -void *compile_addio83(ctx_t *ctx); -void *compile_addio84(ctx_t *ctx); -void *compile_addio85(ctx_t *ctx); -void *compile_addio86(ctx_t *ctx); -void *compile_addio87(ctx_t *ctx); -void *compile_addio88(ctx_t *ctx); -void *compile_addio89(ctx_t *ctx); -void *compile_addio9(ctx_t *ctx); -void *compile_addio90(ctx_t *ctx); -void *compile_addio91(ctx_t *ctx); -void *compile_addio92(ctx_t *ctx); -void *compile_addio93(ctx_t *ctx); -void *compile_addio94(ctx_t *ctx); -void *compile_addio95(ctx_t *ctx); -void *compile_addio96(ctx_t *ctx); -void *compile_addio97(ctx_t *ctx); -void *compile_addio98(ctx_t *ctx); -void *compile_addio99(ctx_t *ctx); -void *compile_addix0(ctx_t *ctx); -void *compile_addix1(ctx_t *ctx); -void *compile_addix10(ctx_t *ctx); -void *compile_addix100(ctx_t *ctx); -void *compile_addix101(ctx_t *ctx); -void *compile_addix102(ctx_t *ctx); -void *compile_addix103(ctx_t *ctx); -void *compile_addix104(ctx_t *ctx); -void *compile_addix105(ctx_t *ctx); -void *compile_addix106(ctx_t *ctx); -void *compile_addix107(ctx_t *ctx); -void *compile_addix108(ctx_t *ctx); -void *compile_addix109(ctx_t *ctx); -void *compile_addix11(ctx_t *ctx); -void *compile_addix110(ctx_t *ctx); -void *compile_addix111(ctx_t *ctx); -void *compile_addix112(ctx_t *ctx); -void *compile_addix113(ctx_t *ctx); -void *compile_addix114(ctx_t *ctx); -void *compile_addix115(ctx_t *ctx); -void *compile_addix116(ctx_t *ctx); -void *compile_addix117(ctx_t *ctx); -void *compile_addix118(ctx_t *ctx); -void *compile_addix119(ctx_t *ctx); -void *compile_addix12(ctx_t *ctx); -void *compile_addix120(ctx_t *ctx); -void *compile_addix121(ctx_t *ctx); -void *compile_addix122(ctx_t *ctx); -void *compile_addix123(ctx_t *ctx); -void *compile_addix124(ctx_t *ctx); -void *compile_addix125(ctx_t *ctx); -void *compile_addix126(ctx_t *ctx); -void *compile_addix127(ctx_t *ctx); -void *compile_addix128(ctx_t *ctx); -void *compile_addix129(ctx_t *ctx); -void *compile_addix13(ctx_t *ctx); -void *compile_addix130(ctx_t *ctx); -void *compile_addix131(ctx_t *ctx); -void *compile_addix132(ctx_t *ctx); -void *compile_addix133(ctx_t *ctx); -void *compile_addix134(ctx_t *ctx); -void *compile_addix135(ctx_t *ctx); -void *compile_addix136(ctx_t *ctx); -void *compile_addix137(ctx_t *ctx); -void *compile_addix138(ctx_t *ctx); -void *compile_addix139(ctx_t *ctx); -void *compile_addix14(ctx_t *ctx); -void *compile_addix140(ctx_t *ctx); -void *compile_addix141(ctx_t *ctx); -void *compile_addix142(ctx_t *ctx); -void *compile_addix143(ctx_t *ctx); -void *compile_addix144(ctx_t *ctx); -void *compile_addix145(ctx_t *ctx); -void *compile_addix146(ctx_t *ctx); -void *compile_addix147(ctx_t *ctx); -void *compile_addix148(ctx_t *ctx); -void *compile_addix149(ctx_t *ctx); -void *compile_addix15(ctx_t *ctx); -void *compile_addix150(ctx_t *ctx); -void *compile_addix151(ctx_t *ctx); -void *compile_addix152(ctx_t *ctx); -void *compile_addix153(ctx_t *ctx); -void *compile_addix154(ctx_t *ctx); -void *compile_addix155(ctx_t *ctx); -void *compile_addix156(ctx_t *ctx); -void *compile_addix157(ctx_t *ctx); -void *compile_addix158(ctx_t *ctx); -void *compile_addix159(ctx_t *ctx); -void *compile_addix16(ctx_t *ctx); -void *compile_addix160(ctx_t *ctx); -void *compile_addix161(ctx_t *ctx); -void *compile_addix162(ctx_t *ctx); -void *compile_addix163(ctx_t *ctx); -void *compile_addix164(ctx_t *ctx); -void *compile_addix165(ctx_t *ctx); -void *compile_addix166(ctx_t *ctx); -void *compile_addix167(ctx_t *ctx); -void *compile_addix168(ctx_t *ctx); -void *compile_addix169(ctx_t *ctx); -void *compile_addix17(ctx_t *ctx); -void *compile_addix170(ctx_t *ctx); -void *compile_addix171(ctx_t *ctx); -void *compile_addix172(ctx_t *ctx); -void *compile_addix173(ctx_t *ctx); -void *compile_addix174(ctx_t *ctx); -void *compile_addix175(ctx_t *ctx); -void *compile_addix176(ctx_t *ctx); -void *compile_addix177(ctx_t *ctx); -void *compile_addix178(ctx_t *ctx); -void *compile_addix179(ctx_t *ctx); -void *compile_addix18(ctx_t *ctx); -void *compile_addix180(ctx_t *ctx); -void *compile_addix181(ctx_t *ctx); -void *compile_addix182(ctx_t *ctx); -void *compile_addix183(ctx_t *ctx); -void *compile_addix184(ctx_t *ctx); -void *compile_addix185(ctx_t *ctx); -void *compile_addix186(ctx_t *ctx); -void *compile_addix187(ctx_t *ctx); -void *compile_addix188(ctx_t *ctx); -void *compile_addix189(ctx_t *ctx); -void *compile_addix19(ctx_t *ctx); -void *compile_addix190(ctx_t *ctx); -void *compile_addix191(ctx_t *ctx); -void *compile_addix192(ctx_t *ctx); -void *compile_addix193(ctx_t *ctx); -void *compile_addix194(ctx_t *ctx); -void *compile_addix195(ctx_t *ctx); -void *compile_addix196(ctx_t *ctx); -void *compile_addix197(ctx_t *ctx); -void *compile_addix198(ctx_t *ctx); -void *compile_addix199(ctx_t *ctx); -void *compile_addix2(ctx_t *ctx); -void *compile_addix20(ctx_t *ctx); -void *compile_addix200(ctx_t *ctx); -void *compile_addix201(ctx_t *ctx); -void *compile_addix202(ctx_t *ctx); -void *compile_addix203(ctx_t *ctx); -void *compile_addix204(ctx_t *ctx); -void *compile_addix205(ctx_t *ctx); -void *compile_addix206(ctx_t *ctx); -void *compile_addix207(ctx_t *ctx); -void *compile_addix208(ctx_t *ctx); -void *compile_addix209(ctx_t *ctx); -void *compile_addix21(ctx_t *ctx); -void *compile_addix210(ctx_t *ctx); -void *compile_addix211(ctx_t *ctx); -void *compile_addix212(ctx_t *ctx); -void *compile_addix213(ctx_t *ctx); -void *compile_addix214(ctx_t *ctx); -void *compile_addix215(ctx_t *ctx); -void *compile_addix216(ctx_t *ctx); -void *compile_addix217(ctx_t *ctx); -void *compile_addix218(ctx_t *ctx); -void *compile_addix219(ctx_t *ctx); -void *compile_addix22(ctx_t *ctx); -void *compile_addix220(ctx_t *ctx); -void *compile_addix221(ctx_t *ctx); -void *compile_addix222(ctx_t *ctx); -void *compile_addix223(ctx_t *ctx); -void *compile_addix224(ctx_t *ctx); -void *compile_addix225(ctx_t *ctx); -void *compile_addix226(ctx_t *ctx); -void *compile_addix227(ctx_t *ctx); -void *compile_addix228(ctx_t *ctx); -void *compile_addix229(ctx_t *ctx); -void *compile_addix23(ctx_t *ctx); -void *compile_addix230(ctx_t *ctx); -void *compile_addix231(ctx_t *ctx); -void *compile_addix232(ctx_t *ctx); -void *compile_addix233(ctx_t *ctx); -void *compile_addix234(ctx_t *ctx); -void *compile_addix235(ctx_t *ctx); -void *compile_addix236(ctx_t *ctx); -void *compile_addix237(ctx_t *ctx); -void *compile_addix238(ctx_t *ctx); -void *compile_addix239(ctx_t *ctx); -void *compile_addix24(ctx_t *ctx); -void *compile_addix240(ctx_t *ctx); -void *compile_addix241(ctx_t *ctx); -void *compile_addix242(ctx_t *ctx); -void *compile_addix243(ctx_t *ctx); -void *compile_addix244(ctx_t *ctx); -void *compile_addix245(ctx_t *ctx); -void *compile_addix246(ctx_t *ctx); -void *compile_addix247(ctx_t *ctx); -void *compile_addix248(ctx_t *ctx); -void *compile_addix249(ctx_t *ctx); -void *compile_addix25(ctx_t *ctx); -void *compile_addix250(ctx_t *ctx); -void *compile_addix251(ctx_t *ctx); -void *compile_addix252(ctx_t *ctx); -void *compile_addix253(ctx_t *ctx); -void *compile_addix254(ctx_t *ctx); -void *compile_addix255(ctx_t *ctx); -void *compile_addix26(ctx_t *ctx); -void *compile_addix27(ctx_t *ctx); -void *compile_addix28(ctx_t *ctx); -void *compile_addix29(ctx_t *ctx); -void *compile_addix3(ctx_t *ctx); -void *compile_addix30(ctx_t *ctx); -void *compile_addix31(ctx_t *ctx); -void *compile_addix32(ctx_t *ctx); -void *compile_addix33(ctx_t *ctx); -void *compile_addix34(ctx_t *ctx); -void *compile_addix35(ctx_t *ctx); -void *compile_addix36(ctx_t *ctx); -void *compile_addix37(ctx_t *ctx); -void *compile_addix38(ctx_t *ctx); -void *compile_addix39(ctx_t *ctx); -void *compile_addix4(ctx_t *ctx); -void *compile_addix40(ctx_t *ctx); -void *compile_addix41(ctx_t *ctx); -void *compile_addix42(ctx_t *ctx); -void *compile_addix43(ctx_t *ctx); -void *compile_addix44(ctx_t *ctx); -void *compile_addix45(ctx_t *ctx); -void *compile_addix46(ctx_t *ctx); -void *compile_addix47(ctx_t *ctx); -void *compile_addix48(ctx_t *ctx); -void *compile_addix49(ctx_t *ctx); -void *compile_addix5(ctx_t *ctx); -void *compile_addix50(ctx_t *ctx); -void *compile_addix51(ctx_t *ctx); -void *compile_addix52(ctx_t *ctx); -void *compile_addix53(ctx_t *ctx); -void *compile_addix54(ctx_t *ctx); -void *compile_addix55(ctx_t *ctx); -void *compile_addix56(ctx_t *ctx); -void *compile_addix57(ctx_t *ctx); -void *compile_addix58(ctx_t *ctx); -void *compile_addix59(ctx_t *ctx); -void *compile_addix6(ctx_t *ctx); -void *compile_addix60(ctx_t *ctx); -void *compile_addix61(ctx_t *ctx); -void *compile_addix62(ctx_t *ctx); -void *compile_addix63(ctx_t *ctx); -void *compile_addix64(ctx_t *ctx); -void *compile_addix65(ctx_t *ctx); -void *compile_addix66(ctx_t *ctx); -void *compile_addix67(ctx_t *ctx); -void *compile_addix68(ctx_t *ctx); -void *compile_addix69(ctx_t *ctx); -void *compile_addix7(ctx_t *ctx); -void *compile_addix70(ctx_t *ctx); -void *compile_addix71(ctx_t *ctx); -void *compile_addix72(ctx_t *ctx); -void *compile_addix73(ctx_t *ctx); -void *compile_addix74(ctx_t *ctx); -void *compile_addix75(ctx_t *ctx); -void *compile_addix76(ctx_t *ctx); -void *compile_addix77(ctx_t *ctx); -void *compile_addix78(ctx_t *ctx); -void *compile_addix79(ctx_t *ctx); -void *compile_addix8(ctx_t *ctx); -void *compile_addix80(ctx_t *ctx); -void *compile_addix81(ctx_t *ctx); -void *compile_addix82(ctx_t *ctx); -void *compile_addix83(ctx_t *ctx); -void *compile_addix84(ctx_t *ctx); -void *compile_addix85(ctx_t *ctx); -void *compile_addix86(ctx_t *ctx); -void *compile_addix87(ctx_t *ctx); -void *compile_addix88(ctx_t *ctx); -void *compile_addix89(ctx_t *ctx); -void *compile_addix9(ctx_t *ctx); -void *compile_addix90(ctx_t *ctx); -void *compile_addix91(ctx_t *ctx); -void *compile_addix92(ctx_t *ctx); -void *compile_addix93(ctx_t *ctx); -void *compile_addix94(ctx_t *ctx); -void *compile_addix95(ctx_t *ctx); -void *compile_addix96(ctx_t *ctx); -void *compile_addix97(ctx_t *ctx); -void *compile_addix98(ctx_t *ctx); -void *compile_addix99(ctx_t *ctx); -void *compile_addiy0(ctx_t *ctx); -void *compile_addiy1(ctx_t *ctx); -void *compile_addiy10(ctx_t *ctx); -void *compile_addiy100(ctx_t *ctx); -void *compile_addiy101(ctx_t *ctx); -void *compile_addiy102(ctx_t *ctx); -void *compile_addiy103(ctx_t *ctx); -void *compile_addiy104(ctx_t *ctx); -void *compile_addiy105(ctx_t *ctx); -void *compile_addiy106(ctx_t *ctx); -void *compile_addiy107(ctx_t *ctx); -void *compile_addiy108(ctx_t *ctx); -void *compile_addiy109(ctx_t *ctx); -void *compile_addiy11(ctx_t *ctx); -void *compile_addiy110(ctx_t *ctx); -void *compile_addiy111(ctx_t *ctx); -void *compile_addiy112(ctx_t *ctx); -void *compile_addiy113(ctx_t *ctx); -void *compile_addiy114(ctx_t *ctx); -void *compile_addiy115(ctx_t *ctx); -void *compile_addiy116(ctx_t *ctx); -void *compile_addiy117(ctx_t *ctx); -void *compile_addiy118(ctx_t *ctx); -void *compile_addiy119(ctx_t *ctx); -void *compile_addiy12(ctx_t *ctx); -void *compile_addiy120(ctx_t *ctx); -void *compile_addiy121(ctx_t *ctx); -void *compile_addiy122(ctx_t *ctx); -void *compile_addiy123(ctx_t *ctx); -void *compile_addiy124(ctx_t *ctx); -void *compile_addiy125(ctx_t *ctx); -void *compile_addiy126(ctx_t *ctx); -void *compile_addiy127(ctx_t *ctx); -void *compile_addiy128(ctx_t *ctx); -void *compile_addiy129(ctx_t *ctx); -void *compile_addiy13(ctx_t *ctx); -void *compile_addiy130(ctx_t *ctx); -void *compile_addiy131(ctx_t *ctx); -void *compile_addiy132(ctx_t *ctx); -void *compile_addiy133(ctx_t *ctx); -void *compile_addiy134(ctx_t *ctx); -void *compile_addiy135(ctx_t *ctx); -void *compile_addiy136(ctx_t *ctx); -void *compile_addiy137(ctx_t *ctx); -void *compile_addiy138(ctx_t *ctx); -void *compile_addiy139(ctx_t *ctx); -void *compile_addiy14(ctx_t *ctx); -void *compile_addiy140(ctx_t *ctx); -void *compile_addiy141(ctx_t *ctx); -void *compile_addiy142(ctx_t *ctx); -void *compile_addiy143(ctx_t *ctx); -void *compile_addiy144(ctx_t *ctx); -void *compile_addiy145(ctx_t *ctx); -void *compile_addiy146(ctx_t *ctx); -void *compile_addiy147(ctx_t *ctx); -void *compile_addiy148(ctx_t *ctx); -void *compile_addiy149(ctx_t *ctx); -void *compile_addiy15(ctx_t *ctx); -void *compile_addiy150(ctx_t *ctx); -void *compile_addiy151(ctx_t *ctx); -void *compile_addiy152(ctx_t *ctx); -void *compile_addiy153(ctx_t *ctx); -void *compile_addiy154(ctx_t *ctx); -void *compile_addiy155(ctx_t *ctx); -void *compile_addiy156(ctx_t *ctx); -void *compile_addiy157(ctx_t *ctx); -void *compile_addiy158(ctx_t *ctx); -void *compile_addiy159(ctx_t *ctx); -void *compile_addiy16(ctx_t *ctx); -void *compile_addiy160(ctx_t *ctx); -void *compile_addiy161(ctx_t *ctx); -void *compile_addiy162(ctx_t *ctx); -void *compile_addiy163(ctx_t *ctx); -void *compile_addiy164(ctx_t *ctx); -void *compile_addiy165(ctx_t *ctx); -void *compile_addiy166(ctx_t *ctx); -void *compile_addiy167(ctx_t *ctx); -void *compile_addiy168(ctx_t *ctx); -void *compile_addiy169(ctx_t *ctx); -void *compile_addiy17(ctx_t *ctx); -void *compile_addiy170(ctx_t *ctx); -void *compile_addiy171(ctx_t *ctx); -void *compile_addiy172(ctx_t *ctx); -void *compile_addiy173(ctx_t *ctx); -void *compile_addiy174(ctx_t *ctx); -void *compile_addiy175(ctx_t *ctx); -void *compile_addiy176(ctx_t *ctx); -void *compile_addiy177(ctx_t *ctx); -void *compile_addiy178(ctx_t *ctx); -void *compile_addiy179(ctx_t *ctx); -void *compile_addiy18(ctx_t *ctx); -void *compile_addiy180(ctx_t *ctx); -void *compile_addiy181(ctx_t *ctx); -void *compile_addiy182(ctx_t *ctx); -void *compile_addiy183(ctx_t *ctx); -void *compile_addiy184(ctx_t *ctx); -void *compile_addiy185(ctx_t *ctx); -void *compile_addiy186(ctx_t *ctx); -void *compile_addiy187(ctx_t *ctx); -void *compile_addiy188(ctx_t *ctx); -void *compile_addiy189(ctx_t *ctx); -void *compile_addiy19(ctx_t *ctx); -void *compile_addiy190(ctx_t *ctx); -void *compile_addiy191(ctx_t *ctx); -void *compile_addiy192(ctx_t *ctx); -void *compile_addiy193(ctx_t *ctx); -void *compile_addiy194(ctx_t *ctx); -void *compile_addiy195(ctx_t *ctx); -void *compile_addiy196(ctx_t *ctx); -void *compile_addiy197(ctx_t *ctx); -void *compile_addiy198(ctx_t *ctx); -void *compile_addiy199(ctx_t *ctx); -void *compile_addiy2(ctx_t *ctx); -void *compile_addiy20(ctx_t *ctx); -void *compile_addiy200(ctx_t *ctx); -void *compile_addiy201(ctx_t *ctx); -void *compile_addiy202(ctx_t *ctx); -void *compile_addiy203(ctx_t *ctx); -void *compile_addiy204(ctx_t *ctx); -void *compile_addiy205(ctx_t *ctx); -void *compile_addiy206(ctx_t *ctx); -void *compile_addiy207(ctx_t *ctx); -void *compile_addiy208(ctx_t *ctx); -void *compile_addiy209(ctx_t *ctx); -void *compile_addiy21(ctx_t *ctx); -void *compile_addiy210(ctx_t *ctx); -void *compile_addiy211(ctx_t *ctx); -void *compile_addiy212(ctx_t *ctx); -void *compile_addiy213(ctx_t *ctx); -void *compile_addiy214(ctx_t *ctx); -void *compile_addiy215(ctx_t *ctx); -void *compile_addiy216(ctx_t *ctx); -void *compile_addiy217(ctx_t *ctx); -void *compile_addiy218(ctx_t *ctx); -void *compile_addiy219(ctx_t *ctx); -void *compile_addiy22(ctx_t *ctx); -void *compile_addiy220(ctx_t *ctx); -void *compile_addiy221(ctx_t *ctx); -void *compile_addiy222(ctx_t *ctx); -void *compile_addiy223(ctx_t *ctx); -void *compile_addiy224(ctx_t *ctx); -void *compile_addiy225(ctx_t *ctx); -void *compile_addiy226(ctx_t *ctx); -void *compile_addiy227(ctx_t *ctx); -void *compile_addiy228(ctx_t *ctx); -void *compile_addiy229(ctx_t *ctx); -void *compile_addiy23(ctx_t *ctx); -void *compile_addiy230(ctx_t *ctx); -void *compile_addiy231(ctx_t *ctx); -void *compile_addiy232(ctx_t *ctx); -void *compile_addiy233(ctx_t *ctx); -void *compile_addiy234(ctx_t *ctx); -void *compile_addiy235(ctx_t *ctx); -void *compile_addiy236(ctx_t *ctx); -void *compile_addiy237(ctx_t *ctx); -void *compile_addiy238(ctx_t *ctx); -void *compile_addiy239(ctx_t *ctx); -void *compile_addiy24(ctx_t *ctx); -void *compile_addiy240(ctx_t *ctx); -void *compile_addiy241(ctx_t *ctx); -void *compile_addiy242(ctx_t *ctx); -void *compile_addiy243(ctx_t *ctx); -void *compile_addiy244(ctx_t *ctx); -void *compile_addiy245(ctx_t *ctx); -void *compile_addiy246(ctx_t *ctx); -void *compile_addiy247(ctx_t *ctx); -void *compile_addiy248(ctx_t *ctx); -void *compile_addiy249(ctx_t *ctx); -void *compile_addiy25(ctx_t *ctx); -void *compile_addiy250(ctx_t *ctx); -void *compile_addiy251(ctx_t *ctx); -void *compile_addiy252(ctx_t *ctx); -void *compile_addiy253(ctx_t *ctx); -void *compile_addiy254(ctx_t *ctx); -void *compile_addiy255(ctx_t *ctx); -void *compile_addiy26(ctx_t *ctx); -void *compile_addiy27(ctx_t *ctx); -void *compile_addiy28(ctx_t *ctx); -void *compile_addiy29(ctx_t *ctx); -void *compile_addiy3(ctx_t *ctx); -void *compile_addiy30(ctx_t *ctx); -void *compile_addiy31(ctx_t *ctx); -void *compile_addiy32(ctx_t *ctx); -void *compile_addiy33(ctx_t *ctx); -void *compile_addiy34(ctx_t *ctx); -void *compile_addiy35(ctx_t *ctx); -void *compile_addiy36(ctx_t *ctx); -void *compile_addiy37(ctx_t *ctx); -void *compile_addiy38(ctx_t *ctx); -void *compile_addiy39(ctx_t *ctx); -void *compile_addiy4(ctx_t *ctx); -void *compile_addiy40(ctx_t *ctx); -void *compile_addiy41(ctx_t *ctx); -void *compile_addiy42(ctx_t *ctx); -void *compile_addiy43(ctx_t *ctx); -void *compile_addiy44(ctx_t *ctx); -void *compile_addiy45(ctx_t *ctx); -void *compile_addiy46(ctx_t *ctx); -void *compile_addiy47(ctx_t *ctx); -void *compile_addiy48(ctx_t *ctx); -void *compile_addiy49(ctx_t *ctx); -void *compile_addiy5(ctx_t *ctx); -void *compile_addiy50(ctx_t *ctx); -void *compile_addiy51(ctx_t *ctx); -void *compile_addiy52(ctx_t *ctx); -void *compile_addiy53(ctx_t *ctx); -void *compile_addiy54(ctx_t *ctx); -void *compile_addiy55(ctx_t *ctx); -void *compile_addiy56(ctx_t *ctx); -void *compile_addiy57(ctx_t *ctx); -void *compile_addiy58(ctx_t *ctx); -void *compile_addiy59(ctx_t *ctx); -void *compile_addiy6(ctx_t *ctx); -void *compile_addiy60(ctx_t *ctx); -void *compile_addiy61(ctx_t *ctx); -void *compile_addiy62(ctx_t *ctx); -void *compile_addiy63(ctx_t *ctx); -void *compile_addiy64(ctx_t *ctx); -void *compile_addiy65(ctx_t *ctx); -void *compile_addiy66(ctx_t *ctx); -void *compile_addiy67(ctx_t *ctx); -void *compile_addiy68(ctx_t *ctx); -void *compile_addiy69(ctx_t *ctx); -void *compile_addiy7(ctx_t *ctx); -void *compile_addiy70(ctx_t *ctx); -void *compile_addiy71(ctx_t *ctx); -void *compile_addiy72(ctx_t *ctx); -void *compile_addiy73(ctx_t *ctx); -void *compile_addiy74(ctx_t *ctx); -void *compile_addiy75(ctx_t *ctx); -void *compile_addiy76(ctx_t *ctx); -void *compile_addiy77(ctx_t *ctx); -void *compile_addiy78(ctx_t *ctx); -void *compile_addiy79(ctx_t *ctx); -void *compile_addiy8(ctx_t *ctx); -void *compile_addiy80(ctx_t *ctx); -void *compile_addiy81(ctx_t *ctx); -void *compile_addiy82(ctx_t *ctx); -void *compile_addiy83(ctx_t *ctx); -void *compile_addiy84(ctx_t *ctx); -void *compile_addiy85(ctx_t *ctx); -void *compile_addiy86(ctx_t *ctx); -void *compile_addiy87(ctx_t *ctx); -void *compile_addiy88(ctx_t *ctx); -void *compile_addiy89(ctx_t *ctx); -void *compile_addiy9(ctx_t *ctx); -void *compile_addiy90(ctx_t *ctx); -void *compile_addiy91(ctx_t *ctx); -void *compile_addiy92(ctx_t *ctx); -void *compile_addiy93(ctx_t *ctx); -void *compile_addiy94(ctx_t *ctx); -void *compile_addiy95(ctx_t *ctx); -void *compile_addiy96(ctx_t *ctx); -void *compile_addiy97(ctx_t *ctx); -void *compile_addiy98(ctx_t *ctx); -void *compile_addiy99(ctx_t *ctx); -void *compile_bsa0(ctx_t *ctx); -void *compile_bsa1(ctx_t *ctx); -void *compile_bsa10(ctx_t *ctx); -void *compile_bsa11(ctx_t *ctx); -void *compile_bsa12(ctx_t *ctx); -void *compile_bsa13(ctx_t *ctx); -void *compile_bsa14(ctx_t *ctx); -void *compile_bsa15(ctx_t *ctx); -void *compile_bsa16(ctx_t *ctx); -void *compile_bsa17(ctx_t *ctx); -void *compile_bsa18(ctx_t *ctx); -void *compile_bsa19(ctx_t *ctx); -void *compile_bsa2(ctx_t *ctx); -void *compile_bsa20(ctx_t *ctx); -void *compile_bsa21(ctx_t *ctx); -void *compile_bsa22(ctx_t *ctx); -void *compile_bsa23(ctx_t *ctx); -void *compile_bsa24(ctx_t *ctx); -void *compile_bsa25(ctx_t *ctx); -void *compile_bsa26(ctx_t *ctx); -void *compile_bsa27(ctx_t *ctx); -void *compile_bsa28(ctx_t *ctx); -void *compile_bsa29(ctx_t *ctx); -void *compile_bsa3(ctx_t *ctx); -void *compile_bsa30(ctx_t *ctx); -void *compile_bsa31(ctx_t *ctx); -void *compile_bsa32(ctx_t *ctx); -void *compile_bsa33(ctx_t *ctx); -void *compile_bsa34(ctx_t *ctx); -void *compile_bsa35(ctx_t *ctx); -void *compile_bsa36(ctx_t *ctx); -void *compile_bsa37(ctx_t *ctx); -void *compile_bsa38(ctx_t *ctx); -void *compile_bsa39(ctx_t *ctx); -void *compile_bsa4(ctx_t *ctx); -void *compile_bsa40(ctx_t *ctx); -void *compile_bsa41(ctx_t *ctx); -void *compile_bsa42(ctx_t *ctx); -void *compile_bsa43(ctx_t *ctx); -void *compile_bsa44(ctx_t *ctx); -void *compile_bsa45(ctx_t *ctx); -void *compile_bsa46(ctx_t *ctx); -void *compile_bsa47(ctx_t *ctx); -void *compile_bsa48(ctx_t *ctx); -void *compile_bsa49(ctx_t *ctx); -void *compile_bsa5(ctx_t *ctx); -void *compile_bsa50(ctx_t *ctx); -void *compile_bsa51(ctx_t *ctx); -void *compile_bsa52(ctx_t *ctx); -void *compile_bsa53(ctx_t *ctx); -void *compile_bsa54(ctx_t *ctx); -void *compile_bsa55(ctx_t *ctx); -void *compile_bsa56(ctx_t *ctx); -void *compile_bsa57(ctx_t *ctx); -void *compile_bsa58(ctx_t *ctx); -void *compile_bsa59(ctx_t *ctx); -void *compile_bsa6(ctx_t *ctx); -void *compile_bsa60(ctx_t *ctx); -void *compile_bsa61(ctx_t *ctx); -void *compile_bsa62(ctx_t *ctx); -void *compile_bsa63(ctx_t *ctx); -void *compile_bsa7(ctx_t *ctx); -void *compile_bsa8(ctx_t *ctx); -void *compile_bsa9(ctx_t *ctx); -void *compile_bso0(ctx_t *ctx); -void *compile_bso1(ctx_t *ctx); -void *compile_bso10(ctx_t *ctx); -void *compile_bso11(ctx_t *ctx); -void *compile_bso12(ctx_t *ctx); -void *compile_bso13(ctx_t *ctx); -void *compile_bso14(ctx_t *ctx); -void *compile_bso15(ctx_t *ctx); -void *compile_bso16(ctx_t *ctx); -void *compile_bso17(ctx_t *ctx); -void *compile_bso18(ctx_t *ctx); -void *compile_bso19(ctx_t *ctx); -void *compile_bso2(ctx_t *ctx); -void *compile_bso20(ctx_t *ctx); -void *compile_bso21(ctx_t *ctx); -void *compile_bso22(ctx_t *ctx); -void *compile_bso23(ctx_t *ctx); -void *compile_bso24(ctx_t *ctx); -void *compile_bso25(ctx_t *ctx); -void *compile_bso26(ctx_t *ctx); -void *compile_bso27(ctx_t *ctx); -void *compile_bso28(ctx_t *ctx); -void *compile_bso29(ctx_t *ctx); -void *compile_bso3(ctx_t *ctx); -void *compile_bso30(ctx_t *ctx); -void *compile_bso31(ctx_t *ctx); -void *compile_bso32(ctx_t *ctx); -void *compile_bso33(ctx_t *ctx); -void *compile_bso34(ctx_t *ctx); -void *compile_bso35(ctx_t *ctx); -void *compile_bso36(ctx_t *ctx); -void *compile_bso37(ctx_t *ctx); -void *compile_bso38(ctx_t *ctx); -void *compile_bso39(ctx_t *ctx); -void *compile_bso4(ctx_t *ctx); -void *compile_bso40(ctx_t *ctx); -void *compile_bso41(ctx_t *ctx); -void *compile_bso42(ctx_t *ctx); -void *compile_bso43(ctx_t *ctx); -void *compile_bso44(ctx_t *ctx); -void *compile_bso45(ctx_t *ctx); -void *compile_bso46(ctx_t *ctx); -void *compile_bso47(ctx_t *ctx); -void *compile_bso48(ctx_t *ctx); -void *compile_bso49(ctx_t *ctx); -void *compile_bso5(ctx_t *ctx); -void *compile_bso50(ctx_t *ctx); -void *compile_bso51(ctx_t *ctx); -void *compile_bso52(ctx_t *ctx); -void *compile_bso53(ctx_t *ctx); -void *compile_bso54(ctx_t *ctx); -void *compile_bso55(ctx_t *ctx); -void *compile_bso56(ctx_t *ctx); -void *compile_bso57(ctx_t *ctx); -void *compile_bso58(ctx_t *ctx); -void *compile_bso59(ctx_t *ctx); -void *compile_bso6(ctx_t *ctx); -void *compile_bso60(ctx_t *ctx); -void *compile_bso61(ctx_t *ctx); -void *compile_bso62(ctx_t *ctx); -void *compile_bso63(ctx_t *ctx); -void *compile_bso7(ctx_t *ctx); -void *compile_bso8(ctx_t *ctx); -void *compile_bso9(ctx_t *ctx); -void *compile_bsx0(ctx_t *ctx); -void *compile_bsx1(ctx_t *ctx); -void *compile_bsx10(ctx_t *ctx); -void *compile_bsx11(ctx_t *ctx); -void *compile_bsx12(ctx_t *ctx); -void *compile_bsx13(ctx_t *ctx); -void *compile_bsx14(ctx_t *ctx); -void *compile_bsx15(ctx_t *ctx); -void *compile_bsx16(ctx_t *ctx); -void *compile_bsx17(ctx_t *ctx); -void *compile_bsx18(ctx_t *ctx); -void *compile_bsx19(ctx_t *ctx); -void *compile_bsx2(ctx_t *ctx); -void *compile_bsx20(ctx_t *ctx); -void *compile_bsx21(ctx_t *ctx); -void *compile_bsx22(ctx_t *ctx); -void *compile_bsx23(ctx_t *ctx); -void *compile_bsx24(ctx_t *ctx); -void *compile_bsx25(ctx_t *ctx); -void *compile_bsx26(ctx_t *ctx); -void *compile_bsx27(ctx_t *ctx); -void *compile_bsx28(ctx_t *ctx); -void *compile_bsx29(ctx_t *ctx); -void *compile_bsx3(ctx_t *ctx); -void *compile_bsx30(ctx_t *ctx); -void *compile_bsx31(ctx_t *ctx); -void *compile_bsx32(ctx_t *ctx); -void *compile_bsx33(ctx_t *ctx); -void *compile_bsx34(ctx_t *ctx); -void *compile_bsx35(ctx_t *ctx); -void *compile_bsx36(ctx_t *ctx); -void *compile_bsx37(ctx_t *ctx); -void *compile_bsx38(ctx_t *ctx); -void *compile_bsx39(ctx_t *ctx); -void *compile_bsx4(ctx_t *ctx); -void *compile_bsx40(ctx_t *ctx); -void *compile_bsx41(ctx_t *ctx); -void *compile_bsx42(ctx_t *ctx); -void *compile_bsx43(ctx_t *ctx); -void *compile_bsx44(ctx_t *ctx); -void *compile_bsx45(ctx_t *ctx); -void *compile_bsx46(ctx_t *ctx); -void *compile_bsx47(ctx_t *ctx); -void *compile_bsx48(ctx_t *ctx); -void *compile_bsx49(ctx_t *ctx); -void *compile_bsx5(ctx_t *ctx); -void *compile_bsx50(ctx_t *ctx); -void *compile_bsx51(ctx_t *ctx); -void *compile_bsx52(ctx_t *ctx); -void *compile_bsx53(ctx_t *ctx); -void *compile_bsx54(ctx_t *ctx); -void *compile_bsx55(ctx_t *ctx); -void *compile_bsx56(ctx_t *ctx); -void *compile_bsx57(ctx_t *ctx); -void *compile_bsx58(ctx_t *ctx); -void *compile_bsx59(ctx_t *ctx); -void *compile_bsx6(ctx_t *ctx); -void *compile_bsx60(ctx_t *ctx); -void *compile_bsx61(ctx_t *ctx); -void *compile_bsx62(ctx_t *ctx); -void *compile_bsx63(ctx_t *ctx); -void *compile_bsx7(ctx_t *ctx); -void *compile_bsx8(ctx_t *ctx); -void *compile_bsx9(ctx_t *ctx); -void *compile_bsy0(ctx_t *ctx); -void *compile_bsy1(ctx_t *ctx); -void *compile_bsy10(ctx_t *ctx); -void *compile_bsy11(ctx_t *ctx); -void *compile_bsy12(ctx_t *ctx); -void *compile_bsy13(ctx_t *ctx); -void *compile_bsy14(ctx_t *ctx); -void *compile_bsy15(ctx_t *ctx); -void *compile_bsy16(ctx_t *ctx); -void *compile_bsy17(ctx_t *ctx); -void *compile_bsy18(ctx_t *ctx); -void *compile_bsy19(ctx_t *ctx); -void *compile_bsy2(ctx_t *ctx); -void *compile_bsy20(ctx_t *ctx); -void *compile_bsy21(ctx_t *ctx); -void *compile_bsy22(ctx_t *ctx); -void *compile_bsy23(ctx_t *ctx); -void *compile_bsy24(ctx_t *ctx); -void *compile_bsy25(ctx_t *ctx); -void *compile_bsy26(ctx_t *ctx); -void *compile_bsy27(ctx_t *ctx); -void *compile_bsy28(ctx_t *ctx); -void *compile_bsy29(ctx_t *ctx); -void *compile_bsy3(ctx_t *ctx); -void *compile_bsy30(ctx_t *ctx); -void *compile_bsy31(ctx_t *ctx); -void *compile_bsy32(ctx_t *ctx); -void *compile_bsy33(ctx_t *ctx); -void *compile_bsy34(ctx_t *ctx); -void *compile_bsy35(ctx_t *ctx); -void *compile_bsy36(ctx_t *ctx); -void *compile_bsy37(ctx_t *ctx); -void *compile_bsy38(ctx_t *ctx); -void *compile_bsy39(ctx_t *ctx); -void *compile_bsy4(ctx_t *ctx); -void *compile_bsy40(ctx_t *ctx); -void *compile_bsy41(ctx_t *ctx); -void *compile_bsy42(ctx_t *ctx); -void *compile_bsy43(ctx_t *ctx); -void *compile_bsy44(ctx_t *ctx); -void *compile_bsy45(ctx_t *ctx); -void *compile_bsy46(ctx_t *ctx); -void *compile_bsy47(ctx_t *ctx); -void *compile_bsy48(ctx_t *ctx); -void *compile_bsy49(ctx_t *ctx); -void *compile_bsy5(ctx_t *ctx); -void *compile_bsy50(ctx_t *ctx); -void *compile_bsy51(ctx_t *ctx); -void *compile_bsy52(ctx_t *ctx); -void *compile_bsy53(ctx_t *ctx); -void *compile_bsy54(ctx_t *ctx); -void *compile_bsy55(ctx_t *ctx); -void *compile_bsy56(ctx_t *ctx); -void *compile_bsy57(ctx_t *ctx); -void *compile_bsy58(ctx_t *ctx); -void *compile_bsy59(ctx_t *ctx); -void *compile_bsy6(ctx_t *ctx); -void *compile_bsy60(ctx_t *ctx); -void *compile_bsy61(ctx_t *ctx); -void *compile_bsy62(ctx_t *ctx); -void *compile_bsy63(ctx_t *ctx); -void *compile_bsy7(ctx_t *ctx); -void *compile_bsy8(ctx_t *ctx); -void *compile_bsy9(ctx_t *ctx); -void *compile_lia0(ctx_t *ctx); -void *compile_lia1(ctx_t *ctx); -void *compile_lia10(ctx_t *ctx); -void *compile_lia100(ctx_t *ctx); -void *compile_lia101(ctx_t *ctx); -void *compile_lia102(ctx_t *ctx); -void *compile_lia103(ctx_t *ctx); -void *compile_lia104(ctx_t *ctx); -void *compile_lia105(ctx_t *ctx); -void *compile_lia106(ctx_t *ctx); -void *compile_lia107(ctx_t *ctx); -void *compile_lia108(ctx_t *ctx); -void *compile_lia109(ctx_t *ctx); -void *compile_lia11(ctx_t *ctx); -void *compile_lia110(ctx_t *ctx); -void *compile_lia111(ctx_t *ctx); -void *compile_lia112(ctx_t *ctx); -void *compile_lia113(ctx_t *ctx); -void *compile_lia114(ctx_t *ctx); -void *compile_lia115(ctx_t *ctx); -void *compile_lia116(ctx_t *ctx); -void *compile_lia117(ctx_t *ctx); -void *compile_lia118(ctx_t *ctx); -void *compile_lia119(ctx_t *ctx); -void *compile_lia12(ctx_t *ctx); -void *compile_lia120(ctx_t *ctx); -void *compile_lia121(ctx_t *ctx); -void *compile_lia122(ctx_t *ctx); -void *compile_lia123(ctx_t *ctx); -void *compile_lia124(ctx_t *ctx); -void *compile_lia125(ctx_t *ctx); -void *compile_lia126(ctx_t *ctx); -void *compile_lia127(ctx_t *ctx); -void *compile_lia128(ctx_t *ctx); -void *compile_lia129(ctx_t *ctx); -void *compile_lia13(ctx_t *ctx); -void *compile_lia130(ctx_t *ctx); -void *compile_lia131(ctx_t *ctx); -void *compile_lia132(ctx_t *ctx); -void *compile_lia133(ctx_t *ctx); -void *compile_lia134(ctx_t *ctx); -void *compile_lia135(ctx_t *ctx); -void *compile_lia136(ctx_t *ctx); -void *compile_lia137(ctx_t *ctx); -void *compile_lia138(ctx_t *ctx); -void *compile_lia139(ctx_t *ctx); -void *compile_lia14(ctx_t *ctx); -void *compile_lia140(ctx_t *ctx); -void *compile_lia141(ctx_t *ctx); -void *compile_lia142(ctx_t *ctx); -void *compile_lia143(ctx_t *ctx); -void *compile_lia144(ctx_t *ctx); -void *compile_lia145(ctx_t *ctx); -void *compile_lia146(ctx_t *ctx); -void *compile_lia147(ctx_t *ctx); -void *compile_lia148(ctx_t *ctx); -void *compile_lia149(ctx_t *ctx); -void *compile_lia15(ctx_t *ctx); -void *compile_lia150(ctx_t *ctx); -void *compile_lia151(ctx_t *ctx); -void *compile_lia152(ctx_t *ctx); -void *compile_lia153(ctx_t *ctx); -void *compile_lia154(ctx_t *ctx); -void *compile_lia155(ctx_t *ctx); -void *compile_lia156(ctx_t *ctx); -void *compile_lia157(ctx_t *ctx); -void *compile_lia158(ctx_t *ctx); -void *compile_lia159(ctx_t *ctx); -void *compile_lia16(ctx_t *ctx); -void *compile_lia160(ctx_t *ctx); -void *compile_lia161(ctx_t *ctx); -void *compile_lia162(ctx_t *ctx); -void *compile_lia163(ctx_t *ctx); -void *compile_lia164(ctx_t *ctx); -void *compile_lia165(ctx_t *ctx); -void *compile_lia166(ctx_t *ctx); -void *compile_lia167(ctx_t *ctx); -void *compile_lia168(ctx_t *ctx); -void *compile_lia169(ctx_t *ctx); -void *compile_lia17(ctx_t *ctx); -void *compile_lia170(ctx_t *ctx); -void *compile_lia171(ctx_t *ctx); -void *compile_lia172(ctx_t *ctx); -void *compile_lia173(ctx_t *ctx); -void *compile_lia174(ctx_t *ctx); -void *compile_lia175(ctx_t *ctx); -void *compile_lia176(ctx_t *ctx); -void *compile_lia177(ctx_t *ctx); -void *compile_lia178(ctx_t *ctx); -void *compile_lia179(ctx_t *ctx); -void *compile_lia18(ctx_t *ctx); -void *compile_lia180(ctx_t *ctx); -void *compile_lia181(ctx_t *ctx); -void *compile_lia182(ctx_t *ctx); -void *compile_lia183(ctx_t *ctx); -void *compile_lia184(ctx_t *ctx); -void *compile_lia185(ctx_t *ctx); -void *compile_lia186(ctx_t *ctx); -void *compile_lia187(ctx_t *ctx); -void *compile_lia188(ctx_t *ctx); -void *compile_lia189(ctx_t *ctx); -void *compile_lia19(ctx_t *ctx); -void *compile_lia190(ctx_t *ctx); -void *compile_lia191(ctx_t *ctx); -void *compile_lia192(ctx_t *ctx); -void *compile_lia193(ctx_t *ctx); -void *compile_lia194(ctx_t *ctx); -void *compile_lia195(ctx_t *ctx); -void *compile_lia196(ctx_t *ctx); -void *compile_lia197(ctx_t *ctx); -void *compile_lia198(ctx_t *ctx); -void *compile_lia199(ctx_t *ctx); -void *compile_lia2(ctx_t *ctx); -void *compile_lia20(ctx_t *ctx); -void *compile_lia200(ctx_t *ctx); -void *compile_lia201(ctx_t *ctx); -void *compile_lia202(ctx_t *ctx); -void *compile_lia203(ctx_t *ctx); -void *compile_lia204(ctx_t *ctx); -void *compile_lia205(ctx_t *ctx); -void *compile_lia206(ctx_t *ctx); -void *compile_lia207(ctx_t *ctx); -void *compile_lia208(ctx_t *ctx); -void *compile_lia209(ctx_t *ctx); -void *compile_lia21(ctx_t *ctx); -void *compile_lia210(ctx_t *ctx); -void *compile_lia211(ctx_t *ctx); -void *compile_lia212(ctx_t *ctx); -void *compile_lia213(ctx_t *ctx); -void *compile_lia214(ctx_t *ctx); -void *compile_lia215(ctx_t *ctx); -void *compile_lia216(ctx_t *ctx); -void *compile_lia217(ctx_t *ctx); -void *compile_lia218(ctx_t *ctx); -void *compile_lia219(ctx_t *ctx); -void *compile_lia22(ctx_t *ctx); -void *compile_lia220(ctx_t *ctx); -void *compile_lia221(ctx_t *ctx); -void *compile_lia222(ctx_t *ctx); -void *compile_lia223(ctx_t *ctx); -void *compile_lia224(ctx_t *ctx); -void *compile_lia225(ctx_t *ctx); -void *compile_lia226(ctx_t *ctx); -void *compile_lia227(ctx_t *ctx); -void *compile_lia228(ctx_t *ctx); -void *compile_lia229(ctx_t *ctx); -void *compile_lia23(ctx_t *ctx); -void *compile_lia230(ctx_t *ctx); -void *compile_lia231(ctx_t *ctx); -void *compile_lia232(ctx_t *ctx); -void *compile_lia233(ctx_t *ctx); -void *compile_lia234(ctx_t *ctx); -void *compile_lia235(ctx_t *ctx); -void *compile_lia236(ctx_t *ctx); -void *compile_lia237(ctx_t *ctx); -void *compile_lia238(ctx_t *ctx); -void *compile_lia239(ctx_t *ctx); -void *compile_lia24(ctx_t *ctx); -void *compile_lia240(ctx_t *ctx); -void *compile_lia241(ctx_t *ctx); -void *compile_lia242(ctx_t *ctx); -void *compile_lia243(ctx_t *ctx); -void *compile_lia244(ctx_t *ctx); -void *compile_lia245(ctx_t *ctx); -void *compile_lia246(ctx_t *ctx); -void *compile_lia247(ctx_t *ctx); -void *compile_lia248(ctx_t *ctx); -void *compile_lia249(ctx_t *ctx); -void *compile_lia25(ctx_t *ctx); -void *compile_lia250(ctx_t *ctx); -void *compile_lia251(ctx_t *ctx); -void *compile_lia252(ctx_t *ctx); -void *compile_lia253(ctx_t *ctx); -void *compile_lia254(ctx_t *ctx); -void *compile_lia255(ctx_t *ctx); -void *compile_lia26(ctx_t *ctx); -void *compile_lia27(ctx_t *ctx); -void *compile_lia28(ctx_t *ctx); -void *compile_lia29(ctx_t *ctx); -void *compile_lia3(ctx_t *ctx); -void *compile_lia30(ctx_t *ctx); -void *compile_lia31(ctx_t *ctx); -void *compile_lia32(ctx_t *ctx); -void *compile_lia33(ctx_t *ctx); -void *compile_lia34(ctx_t *ctx); -void *compile_lia35(ctx_t *ctx); -void *compile_lia36(ctx_t *ctx); -void *compile_lia37(ctx_t *ctx); -void *compile_lia38(ctx_t *ctx); -void *compile_lia39(ctx_t *ctx); -void *compile_lia4(ctx_t *ctx); -void *compile_lia40(ctx_t *ctx); -void *compile_lia41(ctx_t *ctx); -void *compile_lia42(ctx_t *ctx); -void *compile_lia43(ctx_t *ctx); -void *compile_lia44(ctx_t *ctx); -void *compile_lia45(ctx_t *ctx); -void *compile_lia46(ctx_t *ctx); -void *compile_lia47(ctx_t *ctx); -void *compile_lia48(ctx_t *ctx); -void *compile_lia49(ctx_t *ctx); -void *compile_lia5(ctx_t *ctx); -void *compile_lia50(ctx_t *ctx); -void *compile_lia51(ctx_t *ctx); -void *compile_lia52(ctx_t *ctx); -void *compile_lia53(ctx_t *ctx); -void *compile_lia54(ctx_t *ctx); -void *compile_lia55(ctx_t *ctx); -void *compile_lia56(ctx_t *ctx); -void *compile_lia57(ctx_t *ctx); -void *compile_lia58(ctx_t *ctx); -void *compile_lia59(ctx_t *ctx); -void *compile_lia6(ctx_t *ctx); -void *compile_lia60(ctx_t *ctx); -void *compile_lia61(ctx_t *ctx); -void *compile_lia62(ctx_t *ctx); -void *compile_lia63(ctx_t *ctx); -void *compile_lia64(ctx_t *ctx); -void *compile_lia65(ctx_t *ctx); -void *compile_lia66(ctx_t *ctx); -void *compile_lia67(ctx_t *ctx); -void *compile_lia68(ctx_t *ctx); -void *compile_lia69(ctx_t *ctx); -void *compile_lia7(ctx_t *ctx); -void *compile_lia70(ctx_t *ctx); -void *compile_lia71(ctx_t *ctx); -void *compile_lia72(ctx_t *ctx); -void *compile_lia73(ctx_t *ctx); -void *compile_lia74(ctx_t *ctx); -void *compile_lia75(ctx_t *ctx); -void *compile_lia76(ctx_t *ctx); -void *compile_lia77(ctx_t *ctx); -void *compile_lia78(ctx_t *ctx); -void *compile_lia79(ctx_t *ctx); -void *compile_lia8(ctx_t *ctx); -void *compile_lia80(ctx_t *ctx); -void *compile_lia81(ctx_t *ctx); -void *compile_lia82(ctx_t *ctx); -void *compile_lia83(ctx_t *ctx); -void *compile_lia84(ctx_t *ctx); -void *compile_lia85(ctx_t *ctx); -void *compile_lia86(ctx_t *ctx); -void *compile_lia87(ctx_t *ctx); -void *compile_lia88(ctx_t *ctx); -void *compile_lia89(ctx_t *ctx); -void *compile_lia9(ctx_t *ctx); -void *compile_lia90(ctx_t *ctx); -void *compile_lia91(ctx_t *ctx); -void *compile_lia92(ctx_t *ctx); -void *compile_lia93(ctx_t *ctx); -void *compile_lia94(ctx_t *ctx); -void *compile_lia95(ctx_t *ctx); -void *compile_lia96(ctx_t *ctx); -void *compile_lia97(ctx_t *ctx); -void *compile_lia98(ctx_t *ctx); -void *compile_lia99(ctx_t *ctx); -void *compile_lio0(ctx_t *ctx); -void *compile_lio1(ctx_t *ctx); -void *compile_lio10(ctx_t *ctx); -void *compile_lio100(ctx_t *ctx); -void *compile_lio101(ctx_t *ctx); -void *compile_lio102(ctx_t *ctx); -void *compile_lio103(ctx_t *ctx); -void *compile_lio104(ctx_t *ctx); -void *compile_lio105(ctx_t *ctx); -void *compile_lio106(ctx_t *ctx); -void *compile_lio107(ctx_t *ctx); -void *compile_lio108(ctx_t *ctx); -void *compile_lio109(ctx_t *ctx); -void *compile_lio11(ctx_t *ctx); -void *compile_lio110(ctx_t *ctx); -void *compile_lio111(ctx_t *ctx); -void *compile_lio112(ctx_t *ctx); -void *compile_lio113(ctx_t *ctx); -void *compile_lio114(ctx_t *ctx); -void *compile_lio115(ctx_t *ctx); -void *compile_lio116(ctx_t *ctx); -void *compile_lio117(ctx_t *ctx); -void *compile_lio118(ctx_t *ctx); -void *compile_lio119(ctx_t *ctx); -void *compile_lio12(ctx_t *ctx); -void *compile_lio120(ctx_t *ctx); -void *compile_lio121(ctx_t *ctx); -void *compile_lio122(ctx_t *ctx); -void *compile_lio123(ctx_t *ctx); -void *compile_lio124(ctx_t *ctx); -void *compile_lio125(ctx_t *ctx); -void *compile_lio126(ctx_t *ctx); -void *compile_lio127(ctx_t *ctx); -void *compile_lio128(ctx_t *ctx); -void *compile_lio129(ctx_t *ctx); -void *compile_lio13(ctx_t *ctx); -void *compile_lio130(ctx_t *ctx); -void *compile_lio131(ctx_t *ctx); -void *compile_lio132(ctx_t *ctx); -void *compile_lio133(ctx_t *ctx); -void *compile_lio134(ctx_t *ctx); -void *compile_lio135(ctx_t *ctx); -void *compile_lio136(ctx_t *ctx); -void *compile_lio137(ctx_t *ctx); -void *compile_lio138(ctx_t *ctx); -void *compile_lio139(ctx_t *ctx); -void *compile_lio14(ctx_t *ctx); -void *compile_lio140(ctx_t *ctx); -void *compile_lio141(ctx_t *ctx); -void *compile_lio142(ctx_t *ctx); -void *compile_lio143(ctx_t *ctx); -void *compile_lio144(ctx_t *ctx); -void *compile_lio145(ctx_t *ctx); -void *compile_lio146(ctx_t *ctx); -void *compile_lio147(ctx_t *ctx); -void *compile_lio148(ctx_t *ctx); -void *compile_lio149(ctx_t *ctx); -void *compile_lio15(ctx_t *ctx); -void *compile_lio150(ctx_t *ctx); -void *compile_lio151(ctx_t *ctx); -void *compile_lio152(ctx_t *ctx); -void *compile_lio153(ctx_t *ctx); -void *compile_lio154(ctx_t *ctx); -void *compile_lio155(ctx_t *ctx); -void *compile_lio156(ctx_t *ctx); -void *compile_lio157(ctx_t *ctx); -void *compile_lio158(ctx_t *ctx); -void *compile_lio159(ctx_t *ctx); -void *compile_lio16(ctx_t *ctx); -void *compile_lio160(ctx_t *ctx); -void *compile_lio161(ctx_t *ctx); -void *compile_lio162(ctx_t *ctx); -void *compile_lio163(ctx_t *ctx); -void *compile_lio164(ctx_t *ctx); -void *compile_lio165(ctx_t *ctx); -void *compile_lio166(ctx_t *ctx); -void *compile_lio167(ctx_t *ctx); -void *compile_lio168(ctx_t *ctx); -void *compile_lio169(ctx_t *ctx); -void *compile_lio17(ctx_t *ctx); -void *compile_lio170(ctx_t *ctx); -void *compile_lio171(ctx_t *ctx); -void *compile_lio172(ctx_t *ctx); -void *compile_lio173(ctx_t *ctx); -void *compile_lio174(ctx_t *ctx); -void *compile_lio175(ctx_t *ctx); -void *compile_lio176(ctx_t *ctx); -void *compile_lio177(ctx_t *ctx); -void *compile_lio178(ctx_t *ctx); -void *compile_lio179(ctx_t *ctx); -void *compile_lio18(ctx_t *ctx); -void *compile_lio180(ctx_t *ctx); -void *compile_lio181(ctx_t *ctx); -void *compile_lio182(ctx_t *ctx); -void *compile_lio183(ctx_t *ctx); -void *compile_lio184(ctx_t *ctx); -void *compile_lio185(ctx_t *ctx); -void *compile_lio186(ctx_t *ctx); -void *compile_lio187(ctx_t *ctx); -void *compile_lio188(ctx_t *ctx); -void *compile_lio189(ctx_t *ctx); -void *compile_lio19(ctx_t *ctx); -void *compile_lio190(ctx_t *ctx); -void *compile_lio191(ctx_t *ctx); -void *compile_lio192(ctx_t *ctx); -void *compile_lio193(ctx_t *ctx); -void *compile_lio194(ctx_t *ctx); -void *compile_lio195(ctx_t *ctx); -void *compile_lio196(ctx_t *ctx); -void *compile_lio197(ctx_t *ctx); -void *compile_lio198(ctx_t *ctx); -void *compile_lio199(ctx_t *ctx); -void *compile_lio2(ctx_t *ctx); -void *compile_lio20(ctx_t *ctx); -void *compile_lio200(ctx_t *ctx); -void *compile_lio201(ctx_t *ctx); -void *compile_lio202(ctx_t *ctx); -void *compile_lio203(ctx_t *ctx); -void *compile_lio204(ctx_t *ctx); -void *compile_lio205(ctx_t *ctx); -void *compile_lio206(ctx_t *ctx); -void *compile_lio207(ctx_t *ctx); -void *compile_lio208(ctx_t *ctx); -void *compile_lio209(ctx_t *ctx); -void *compile_lio21(ctx_t *ctx); -void *compile_lio210(ctx_t *ctx); -void *compile_lio211(ctx_t *ctx); -void *compile_lio212(ctx_t *ctx); -void *compile_lio213(ctx_t *ctx); -void *compile_lio214(ctx_t *ctx); -void *compile_lio215(ctx_t *ctx); -void *compile_lio216(ctx_t *ctx); -void *compile_lio217(ctx_t *ctx); -void *compile_lio218(ctx_t *ctx); -void *compile_lio219(ctx_t *ctx); -void *compile_lio22(ctx_t *ctx); -void *compile_lio220(ctx_t *ctx); -void *compile_lio221(ctx_t *ctx); -void *compile_lio222(ctx_t *ctx); -void *compile_lio223(ctx_t *ctx); -void *compile_lio224(ctx_t *ctx); -void *compile_lio225(ctx_t *ctx); -void *compile_lio226(ctx_t *ctx); -void *compile_lio227(ctx_t *ctx); -void *compile_lio228(ctx_t *ctx); -void *compile_lio229(ctx_t *ctx); -void *compile_lio23(ctx_t *ctx); -void *compile_lio230(ctx_t *ctx); -void *compile_lio231(ctx_t *ctx); -void *compile_lio232(ctx_t *ctx); -void *compile_lio233(ctx_t *ctx); -void *compile_lio234(ctx_t *ctx); -void *compile_lio235(ctx_t *ctx); -void *compile_lio236(ctx_t *ctx); -void *compile_lio237(ctx_t *ctx); -void *compile_lio238(ctx_t *ctx); -void *compile_lio239(ctx_t *ctx); -void *compile_lio24(ctx_t *ctx); -void *compile_lio240(ctx_t *ctx); -void *compile_lio241(ctx_t *ctx); -void *compile_lio242(ctx_t *ctx); -void *compile_lio243(ctx_t *ctx); -void *compile_lio244(ctx_t *ctx); -void *compile_lio245(ctx_t *ctx); -void *compile_lio246(ctx_t *ctx); -void *compile_lio247(ctx_t *ctx); -void *compile_lio248(ctx_t *ctx); -void *compile_lio249(ctx_t *ctx); -void *compile_lio25(ctx_t *ctx); -void *compile_lio250(ctx_t *ctx); -void *compile_lio251(ctx_t *ctx); -void *compile_lio252(ctx_t *ctx); -void *compile_lio253(ctx_t *ctx); -void *compile_lio254(ctx_t *ctx); -void *compile_lio255(ctx_t *ctx); -void *compile_lio26(ctx_t *ctx); -void *compile_lio27(ctx_t *ctx); -void *compile_lio28(ctx_t *ctx); -void *compile_lio29(ctx_t *ctx); -void *compile_lio3(ctx_t *ctx); -void *compile_lio30(ctx_t *ctx); -void *compile_lio31(ctx_t *ctx); -void *compile_lio32(ctx_t *ctx); -void *compile_lio33(ctx_t *ctx); -void *compile_lio34(ctx_t *ctx); -void *compile_lio35(ctx_t *ctx); -void *compile_lio36(ctx_t *ctx); -void *compile_lio37(ctx_t *ctx); -void *compile_lio38(ctx_t *ctx); -void *compile_lio39(ctx_t *ctx); -void *compile_lio4(ctx_t *ctx); -void *compile_lio40(ctx_t *ctx); -void *compile_lio41(ctx_t *ctx); -void *compile_lio42(ctx_t *ctx); -void *compile_lio43(ctx_t *ctx); -void *compile_lio44(ctx_t *ctx); -void *compile_lio45(ctx_t *ctx); -void *compile_lio46(ctx_t *ctx); -void *compile_lio47(ctx_t *ctx); -void *compile_lio48(ctx_t *ctx); -void *compile_lio49(ctx_t *ctx); -void *compile_lio5(ctx_t *ctx); -void *compile_lio50(ctx_t *ctx); -void *compile_lio51(ctx_t *ctx); -void *compile_lio52(ctx_t *ctx); -void *compile_lio53(ctx_t *ctx); -void *compile_lio54(ctx_t *ctx); -void *compile_lio55(ctx_t *ctx); -void *compile_lio56(ctx_t *ctx); -void *compile_lio57(ctx_t *ctx); -void *compile_lio58(ctx_t *ctx); -void *compile_lio59(ctx_t *ctx); -void *compile_lio6(ctx_t *ctx); -void *compile_lio60(ctx_t *ctx); -void *compile_lio61(ctx_t *ctx); -void *compile_lio62(ctx_t *ctx); -void *compile_lio63(ctx_t *ctx); -void *compile_lio64(ctx_t *ctx); -void *compile_lio65(ctx_t *ctx); -void *compile_lio66(ctx_t *ctx); -void *compile_lio67(ctx_t *ctx); -void *compile_lio68(ctx_t *ctx); -void *compile_lio69(ctx_t *ctx); -void *compile_lio7(ctx_t *ctx); -void *compile_lio70(ctx_t *ctx); -void *compile_lio71(ctx_t *ctx); -void *compile_lio72(ctx_t *ctx); -void *compile_lio73(ctx_t *ctx); -void *compile_lio74(ctx_t *ctx); -void *compile_lio75(ctx_t *ctx); -void *compile_lio76(ctx_t *ctx); -void *compile_lio77(ctx_t *ctx); -void *compile_lio78(ctx_t *ctx); -void *compile_lio79(ctx_t *ctx); -void *compile_lio8(ctx_t *ctx); -void *compile_lio80(ctx_t *ctx); -void *compile_lio81(ctx_t *ctx); -void *compile_lio82(ctx_t *ctx); -void *compile_lio83(ctx_t *ctx); -void *compile_lio84(ctx_t *ctx); -void *compile_lio85(ctx_t *ctx); -void *compile_lio86(ctx_t *ctx); -void *compile_lio87(ctx_t *ctx); -void *compile_lio88(ctx_t *ctx); -void *compile_lio89(ctx_t *ctx); -void *compile_lio9(ctx_t *ctx); -void *compile_lio90(ctx_t *ctx); -void *compile_lio91(ctx_t *ctx); -void *compile_lio92(ctx_t *ctx); -void *compile_lio93(ctx_t *ctx); -void *compile_lio94(ctx_t *ctx); -void *compile_lio95(ctx_t *ctx); -void *compile_lio96(ctx_t *ctx); -void *compile_lio97(ctx_t *ctx); -void *compile_lio98(ctx_t *ctx); -void *compile_lio99(ctx_t *ctx); -void *compile_lix0(ctx_t *ctx); -void *compile_lix1(ctx_t *ctx); -void *compile_lix10(ctx_t *ctx); -void *compile_lix100(ctx_t *ctx); -void *compile_lix101(ctx_t *ctx); -void *compile_lix102(ctx_t *ctx); -void *compile_lix103(ctx_t *ctx); -void *compile_lix104(ctx_t *ctx); -void *compile_lix105(ctx_t *ctx); -void *compile_lix106(ctx_t *ctx); -void *compile_lix107(ctx_t *ctx); -void *compile_lix108(ctx_t *ctx); -void *compile_lix109(ctx_t *ctx); -void *compile_lix11(ctx_t *ctx); -void *compile_lix110(ctx_t *ctx); -void *compile_lix111(ctx_t *ctx); -void *compile_lix112(ctx_t *ctx); -void *compile_lix113(ctx_t *ctx); -void *compile_lix114(ctx_t *ctx); -void *compile_lix115(ctx_t *ctx); -void *compile_lix116(ctx_t *ctx); -void *compile_lix117(ctx_t *ctx); -void *compile_lix118(ctx_t *ctx); -void *compile_lix119(ctx_t *ctx); -void *compile_lix12(ctx_t *ctx); -void *compile_lix120(ctx_t *ctx); -void *compile_lix121(ctx_t *ctx); -void *compile_lix122(ctx_t *ctx); -void *compile_lix123(ctx_t *ctx); -void *compile_lix124(ctx_t *ctx); -void *compile_lix125(ctx_t *ctx); -void *compile_lix126(ctx_t *ctx); -void *compile_lix127(ctx_t *ctx); -void *compile_lix128(ctx_t *ctx); -void *compile_lix129(ctx_t *ctx); -void *compile_lix13(ctx_t *ctx); -void *compile_lix130(ctx_t *ctx); -void *compile_lix131(ctx_t *ctx); -void *compile_lix132(ctx_t *ctx); -void *compile_lix133(ctx_t *ctx); -void *compile_lix134(ctx_t *ctx); -void *compile_lix135(ctx_t *ctx); -void *compile_lix136(ctx_t *ctx); -void *compile_lix137(ctx_t *ctx); -void *compile_lix138(ctx_t *ctx); -void *compile_lix139(ctx_t *ctx); -void *compile_lix14(ctx_t *ctx); -void *compile_lix140(ctx_t *ctx); -void *compile_lix141(ctx_t *ctx); -void *compile_lix142(ctx_t *ctx); -void *compile_lix143(ctx_t *ctx); -void *compile_lix144(ctx_t *ctx); -void *compile_lix145(ctx_t *ctx); -void *compile_lix146(ctx_t *ctx); -void *compile_lix147(ctx_t *ctx); -void *compile_lix148(ctx_t *ctx); -void *compile_lix149(ctx_t *ctx); -void *compile_lix15(ctx_t *ctx); -void *compile_lix150(ctx_t *ctx); -void *compile_lix151(ctx_t *ctx); -void *compile_lix152(ctx_t *ctx); -void *compile_lix153(ctx_t *ctx); -void *compile_lix154(ctx_t *ctx); -void *compile_lix155(ctx_t *ctx); -void *compile_lix156(ctx_t *ctx); -void *compile_lix157(ctx_t *ctx); -void *compile_lix158(ctx_t *ctx); -void *compile_lix159(ctx_t *ctx); -void *compile_lix16(ctx_t *ctx); -void *compile_lix160(ctx_t *ctx); -void *compile_lix161(ctx_t *ctx); -void *compile_lix162(ctx_t *ctx); -void *compile_lix163(ctx_t *ctx); -void *compile_lix164(ctx_t *ctx); -void *compile_lix165(ctx_t *ctx); -void *compile_lix166(ctx_t *ctx); -void *compile_lix167(ctx_t *ctx); -void *compile_lix168(ctx_t *ctx); -void *compile_lix169(ctx_t *ctx); -void *compile_lix17(ctx_t *ctx); -void *compile_lix170(ctx_t *ctx); -void *compile_lix171(ctx_t *ctx); -void *compile_lix172(ctx_t *ctx); -void *compile_lix173(ctx_t *ctx); -void *compile_lix174(ctx_t *ctx); -void *compile_lix175(ctx_t *ctx); -void *compile_lix176(ctx_t *ctx); -void *compile_lix177(ctx_t *ctx); -void *compile_lix178(ctx_t *ctx); -void *compile_lix179(ctx_t *ctx); -void *compile_lix18(ctx_t *ctx); -void *compile_lix180(ctx_t *ctx); -void *compile_lix181(ctx_t *ctx); -void *compile_lix182(ctx_t *ctx); -void *compile_lix183(ctx_t *ctx); -void *compile_lix184(ctx_t *ctx); -void *compile_lix185(ctx_t *ctx); -void *compile_lix186(ctx_t *ctx); -void *compile_lix187(ctx_t *ctx); -void *compile_lix188(ctx_t *ctx); -void *compile_lix189(ctx_t *ctx); -void *compile_lix19(ctx_t *ctx); -void *compile_lix190(ctx_t *ctx); -void *compile_lix191(ctx_t *ctx); -void *compile_lix192(ctx_t *ctx); -void *compile_lix193(ctx_t *ctx); -void *compile_lix194(ctx_t *ctx); -void *compile_lix195(ctx_t *ctx); -void *compile_lix196(ctx_t *ctx); -void *compile_lix197(ctx_t *ctx); -void *compile_lix198(ctx_t *ctx); -void *compile_lix199(ctx_t *ctx); -void *compile_lix2(ctx_t *ctx); -void *compile_lix20(ctx_t *ctx); -void *compile_lix200(ctx_t *ctx); -void *compile_lix201(ctx_t *ctx); -void *compile_lix202(ctx_t *ctx); -void *compile_lix203(ctx_t *ctx); -void *compile_lix204(ctx_t *ctx); -void *compile_lix205(ctx_t *ctx); -void *compile_lix206(ctx_t *ctx); -void *compile_lix207(ctx_t *ctx); -void *compile_lix208(ctx_t *ctx); -void *compile_lix209(ctx_t *ctx); -void *compile_lix21(ctx_t *ctx); -void *compile_lix210(ctx_t *ctx); -void *compile_lix211(ctx_t *ctx); -void *compile_lix212(ctx_t *ctx); -void *compile_lix213(ctx_t *ctx); -void *compile_lix214(ctx_t *ctx); -void *compile_lix215(ctx_t *ctx); -void *compile_lix216(ctx_t *ctx); -void *compile_lix217(ctx_t *ctx); -void *compile_lix218(ctx_t *ctx); -void *compile_lix219(ctx_t *ctx); -void *compile_lix22(ctx_t *ctx); -void *compile_lix220(ctx_t *ctx); -void *compile_lix221(ctx_t *ctx); -void *compile_lix222(ctx_t *ctx); -void *compile_lix223(ctx_t *ctx); -void *compile_lix224(ctx_t *ctx); -void *compile_lix225(ctx_t *ctx); -void *compile_lix226(ctx_t *ctx); -void *compile_lix227(ctx_t *ctx); -void *compile_lix228(ctx_t *ctx); -void *compile_lix229(ctx_t *ctx); -void *compile_lix23(ctx_t *ctx); -void *compile_lix230(ctx_t *ctx); -void *compile_lix231(ctx_t *ctx); -void *compile_lix232(ctx_t *ctx); -void *compile_lix233(ctx_t *ctx); -void *compile_lix234(ctx_t *ctx); -void *compile_lix235(ctx_t *ctx); -void *compile_lix236(ctx_t *ctx); -void *compile_lix237(ctx_t *ctx); -void *compile_lix238(ctx_t *ctx); -void *compile_lix239(ctx_t *ctx); -void *compile_lix24(ctx_t *ctx); -void *compile_lix240(ctx_t *ctx); -void *compile_lix241(ctx_t *ctx); -void *compile_lix242(ctx_t *ctx); -void *compile_lix243(ctx_t *ctx); -void *compile_lix244(ctx_t *ctx); -void *compile_lix245(ctx_t *ctx); -void *compile_lix246(ctx_t *ctx); -void *compile_lix247(ctx_t *ctx); -void *compile_lix248(ctx_t *ctx); -void *compile_lix249(ctx_t *ctx); -void *compile_lix25(ctx_t *ctx); -void *compile_lix250(ctx_t *ctx); -void *compile_lix251(ctx_t *ctx); -void *compile_lix252(ctx_t *ctx); -void *compile_lix253(ctx_t *ctx); -void *compile_lix254(ctx_t *ctx); -void *compile_lix255(ctx_t *ctx); -void *compile_lix26(ctx_t *ctx); -void *compile_lix27(ctx_t *ctx); -void *compile_lix28(ctx_t *ctx); -void *compile_lix29(ctx_t *ctx); -void *compile_lix3(ctx_t *ctx); -void *compile_lix30(ctx_t *ctx); -void *compile_lix31(ctx_t *ctx); -void *compile_lix32(ctx_t *ctx); -void *compile_lix33(ctx_t *ctx); -void *compile_lix34(ctx_t *ctx); -void *compile_lix35(ctx_t *ctx); -void *compile_lix36(ctx_t *ctx); -void *compile_lix37(ctx_t *ctx); -void *compile_lix38(ctx_t *ctx); -void *compile_lix39(ctx_t *ctx); -void *compile_lix4(ctx_t *ctx); -void *compile_lix40(ctx_t *ctx); -void *compile_lix41(ctx_t *ctx); -void *compile_lix42(ctx_t *ctx); -void *compile_lix43(ctx_t *ctx); -void *compile_lix44(ctx_t *ctx); -void *compile_lix45(ctx_t *ctx); -void *compile_lix46(ctx_t *ctx); -void *compile_lix47(ctx_t *ctx); -void *compile_lix48(ctx_t *ctx); -void *compile_lix49(ctx_t *ctx); -void *compile_lix5(ctx_t *ctx); -void *compile_lix50(ctx_t *ctx); -void *compile_lix51(ctx_t *ctx); -void *compile_lix52(ctx_t *ctx); -void *compile_lix53(ctx_t *ctx); -void *compile_lix54(ctx_t *ctx); -void *compile_lix55(ctx_t *ctx); -void *compile_lix56(ctx_t *ctx); -void *compile_lix57(ctx_t *ctx); -void *compile_lix58(ctx_t *ctx); -void *compile_lix59(ctx_t *ctx); -void *compile_lix6(ctx_t *ctx); -void *compile_lix60(ctx_t *ctx); -void *compile_lix61(ctx_t *ctx); -void *compile_lix62(ctx_t *ctx); -void *compile_lix63(ctx_t *ctx); -void *compile_lix64(ctx_t *ctx); -void *compile_lix65(ctx_t *ctx); -void *compile_lix66(ctx_t *ctx); -void *compile_lix67(ctx_t *ctx); -void *compile_lix68(ctx_t *ctx); -void *compile_lix69(ctx_t *ctx); -void *compile_lix7(ctx_t *ctx); -void *compile_lix70(ctx_t *ctx); -void *compile_lix71(ctx_t *ctx); -void *compile_lix72(ctx_t *ctx); -void *compile_lix73(ctx_t *ctx); -void *compile_lix74(ctx_t *ctx); -void *compile_lix75(ctx_t *ctx); -void *compile_lix76(ctx_t *ctx); -void *compile_lix77(ctx_t *ctx); -void *compile_lix78(ctx_t *ctx); -void *compile_lix79(ctx_t *ctx); -void *compile_lix8(ctx_t *ctx); -void *compile_lix80(ctx_t *ctx); -void *compile_lix81(ctx_t *ctx); -void *compile_lix82(ctx_t *ctx); -void *compile_lix83(ctx_t *ctx); -void *compile_lix84(ctx_t *ctx); -void *compile_lix85(ctx_t *ctx); -void *compile_lix86(ctx_t *ctx); -void *compile_lix87(ctx_t *ctx); -void *compile_lix88(ctx_t *ctx); -void *compile_lix89(ctx_t *ctx); -void *compile_lix9(ctx_t *ctx); -void *compile_lix90(ctx_t *ctx); -void *compile_lix91(ctx_t *ctx); -void *compile_lix92(ctx_t *ctx); -void *compile_lix93(ctx_t *ctx); -void *compile_lix94(ctx_t *ctx); -void *compile_lix95(ctx_t *ctx); -void *compile_lix96(ctx_t *ctx); -void *compile_lix97(ctx_t *ctx); -void *compile_lix98(ctx_t *ctx); -void *compile_lix99(ctx_t *ctx); -void *compile_liy0(ctx_t *ctx); -void *compile_liy1(ctx_t *ctx); -void *compile_liy10(ctx_t *ctx); -void *compile_liy100(ctx_t *ctx); -void *compile_liy101(ctx_t *ctx); -void *compile_liy102(ctx_t *ctx); -void *compile_liy103(ctx_t *ctx); -void *compile_liy104(ctx_t *ctx); -void *compile_liy105(ctx_t *ctx); -void *compile_liy106(ctx_t *ctx); -void *compile_liy107(ctx_t *ctx); -void *compile_liy108(ctx_t *ctx); -void *compile_liy109(ctx_t *ctx); -void *compile_liy11(ctx_t *ctx); -void *compile_liy110(ctx_t *ctx); -void *compile_liy111(ctx_t *ctx); -void *compile_liy112(ctx_t *ctx); -void *compile_liy113(ctx_t *ctx); -void *compile_liy114(ctx_t *ctx); -void *compile_liy115(ctx_t *ctx); -void *compile_liy116(ctx_t *ctx); -void *compile_liy117(ctx_t *ctx); -void *compile_liy118(ctx_t *ctx); -void *compile_liy119(ctx_t *ctx); -void *compile_liy12(ctx_t *ctx); -void *compile_liy120(ctx_t *ctx); -void *compile_liy121(ctx_t *ctx); -void *compile_liy122(ctx_t *ctx); -void *compile_liy123(ctx_t *ctx); -void *compile_liy124(ctx_t *ctx); -void *compile_liy125(ctx_t *ctx); -void *compile_liy126(ctx_t *ctx); -void *compile_liy127(ctx_t *ctx); -void *compile_liy128(ctx_t *ctx); -void *compile_liy129(ctx_t *ctx); -void *compile_liy13(ctx_t *ctx); -void *compile_liy130(ctx_t *ctx); -void *compile_liy131(ctx_t *ctx); -void *compile_liy132(ctx_t *ctx); -void *compile_liy133(ctx_t *ctx); -void *compile_liy134(ctx_t *ctx); -void *compile_liy135(ctx_t *ctx); -void *compile_liy136(ctx_t *ctx); -void *compile_liy137(ctx_t *ctx); -void *compile_liy138(ctx_t *ctx); -void *compile_liy139(ctx_t *ctx); -void *compile_liy14(ctx_t *ctx); -void *compile_liy140(ctx_t *ctx); -void *compile_liy141(ctx_t *ctx); -void *compile_liy142(ctx_t *ctx); -void *compile_liy143(ctx_t *ctx); -void *compile_liy144(ctx_t *ctx); -void *compile_liy145(ctx_t *ctx); -void *compile_liy146(ctx_t *ctx); -void *compile_liy147(ctx_t *ctx); -void *compile_liy148(ctx_t *ctx); -void *compile_liy149(ctx_t *ctx); -void *compile_liy15(ctx_t *ctx); -void *compile_liy150(ctx_t *ctx); -void *compile_liy151(ctx_t *ctx); -void *compile_liy152(ctx_t *ctx); -void *compile_liy153(ctx_t *ctx); -void *compile_liy154(ctx_t *ctx); -void *compile_liy155(ctx_t *ctx); -void *compile_liy156(ctx_t *ctx); -void *compile_liy157(ctx_t *ctx); -void *compile_liy158(ctx_t *ctx); -void *compile_liy159(ctx_t *ctx); -void *compile_liy16(ctx_t *ctx); -void *compile_liy160(ctx_t *ctx); -void *compile_liy161(ctx_t *ctx); -void *compile_liy162(ctx_t *ctx); -void *compile_liy163(ctx_t *ctx); -void *compile_liy164(ctx_t *ctx); -void *compile_liy165(ctx_t *ctx); -void *compile_liy166(ctx_t *ctx); -void *compile_liy167(ctx_t *ctx); -void *compile_liy168(ctx_t *ctx); -void *compile_liy169(ctx_t *ctx); -void *compile_liy17(ctx_t *ctx); -void *compile_liy170(ctx_t *ctx); -void *compile_liy171(ctx_t *ctx); -void *compile_liy172(ctx_t *ctx); -void *compile_liy173(ctx_t *ctx); -void *compile_liy174(ctx_t *ctx); -void *compile_liy175(ctx_t *ctx); -void *compile_liy176(ctx_t *ctx); -void *compile_liy177(ctx_t *ctx); -void *compile_liy178(ctx_t *ctx); -void *compile_liy179(ctx_t *ctx); -void *compile_liy18(ctx_t *ctx); -void *compile_liy180(ctx_t *ctx); -void *compile_liy181(ctx_t *ctx); -void *compile_liy182(ctx_t *ctx); -void *compile_liy183(ctx_t *ctx); -void *compile_liy184(ctx_t *ctx); -void *compile_liy185(ctx_t *ctx); -void *compile_liy186(ctx_t *ctx); -void *compile_liy187(ctx_t *ctx); -void *compile_liy188(ctx_t *ctx); -void *compile_liy189(ctx_t *ctx); -void *compile_liy19(ctx_t *ctx); -void *compile_liy190(ctx_t *ctx); -void *compile_liy191(ctx_t *ctx); -void *compile_liy192(ctx_t *ctx); -void *compile_liy193(ctx_t *ctx); -void *compile_liy194(ctx_t *ctx); -void *compile_liy195(ctx_t *ctx); -void *compile_liy196(ctx_t *ctx); -void *compile_liy197(ctx_t *ctx); -void *compile_liy198(ctx_t *ctx); -void *compile_liy199(ctx_t *ctx); -void *compile_liy2(ctx_t *ctx); -void *compile_liy20(ctx_t *ctx); -void *compile_liy200(ctx_t *ctx); -void *compile_liy201(ctx_t *ctx); -void *compile_liy202(ctx_t *ctx); -void *compile_liy203(ctx_t *ctx); -void *compile_liy204(ctx_t *ctx); -void *compile_liy205(ctx_t *ctx); -void *compile_liy206(ctx_t *ctx); -void *compile_liy207(ctx_t *ctx); -void *compile_liy208(ctx_t *ctx); -void *compile_liy209(ctx_t *ctx); -void *compile_liy21(ctx_t *ctx); -void *compile_liy210(ctx_t *ctx); -void *compile_liy211(ctx_t *ctx); -void *compile_liy212(ctx_t *ctx); -void *compile_liy213(ctx_t *ctx); -void *compile_liy214(ctx_t *ctx); -void *compile_liy215(ctx_t *ctx); -void *compile_liy216(ctx_t *ctx); -void *compile_liy217(ctx_t *ctx); -void *compile_liy218(ctx_t *ctx); -void *compile_liy219(ctx_t *ctx); -void *compile_liy22(ctx_t *ctx); -void *compile_liy220(ctx_t *ctx); -void *compile_liy221(ctx_t *ctx); -void *compile_liy222(ctx_t *ctx); -void *compile_liy223(ctx_t *ctx); -void *compile_liy224(ctx_t *ctx); -void *compile_liy225(ctx_t *ctx); -void *compile_liy226(ctx_t *ctx); -void *compile_liy227(ctx_t *ctx); -void *compile_liy228(ctx_t *ctx); -void *compile_liy229(ctx_t *ctx); -void *compile_liy23(ctx_t *ctx); -void *compile_liy230(ctx_t *ctx); -void *compile_liy231(ctx_t *ctx); -void *compile_liy232(ctx_t *ctx); -void *compile_liy233(ctx_t *ctx); -void *compile_liy234(ctx_t *ctx); -void *compile_liy235(ctx_t *ctx); -void *compile_liy236(ctx_t *ctx); -void *compile_liy237(ctx_t *ctx); -void *compile_liy238(ctx_t *ctx); -void *compile_liy239(ctx_t *ctx); -void *compile_liy24(ctx_t *ctx); -void *compile_liy240(ctx_t *ctx); -void *compile_liy241(ctx_t *ctx); -void *compile_liy242(ctx_t *ctx); -void *compile_liy243(ctx_t *ctx); -void *compile_liy244(ctx_t *ctx); -void *compile_liy245(ctx_t *ctx); -void *compile_liy246(ctx_t *ctx); -void *compile_liy247(ctx_t *ctx); -void *compile_liy248(ctx_t *ctx); -void *compile_liy249(ctx_t *ctx); -void *compile_liy25(ctx_t *ctx); -void *compile_liy250(ctx_t *ctx); -void *compile_liy251(ctx_t *ctx); -void *compile_liy252(ctx_t *ctx); -void *compile_liy253(ctx_t *ctx); -void *compile_liy254(ctx_t *ctx); -void *compile_liy255(ctx_t *ctx); -void *compile_liy26(ctx_t *ctx); -void *compile_liy27(ctx_t *ctx); -void *compile_liy28(ctx_t *ctx); -void *compile_liy29(ctx_t *ctx); -void *compile_liy3(ctx_t *ctx); -void *compile_liy30(ctx_t *ctx); -void *compile_liy31(ctx_t *ctx); -void *compile_liy32(ctx_t *ctx); -void *compile_liy33(ctx_t *ctx); -void *compile_liy34(ctx_t *ctx); -void *compile_liy35(ctx_t *ctx); -void *compile_liy36(ctx_t *ctx); -void *compile_liy37(ctx_t *ctx); -void *compile_liy38(ctx_t *ctx); -void *compile_liy39(ctx_t *ctx); -void *compile_liy4(ctx_t *ctx); -void *compile_liy40(ctx_t *ctx); -void *compile_liy41(ctx_t *ctx); -void *compile_liy42(ctx_t *ctx); -void *compile_liy43(ctx_t *ctx); -void *compile_liy44(ctx_t *ctx); -void *compile_liy45(ctx_t *ctx); -void *compile_liy46(ctx_t *ctx); -void *compile_liy47(ctx_t *ctx); -void *compile_liy48(ctx_t *ctx); -void *compile_liy49(ctx_t *ctx); -void *compile_liy5(ctx_t *ctx); -void *compile_liy50(ctx_t *ctx); -void *compile_liy51(ctx_t *ctx); -void *compile_liy52(ctx_t *ctx); -void *compile_liy53(ctx_t *ctx); -void *compile_liy54(ctx_t *ctx); -void *compile_liy55(ctx_t *ctx); -void *compile_liy56(ctx_t *ctx); -void *compile_liy57(ctx_t *ctx); -void *compile_liy58(ctx_t *ctx); -void *compile_liy59(ctx_t *ctx); -void *compile_liy6(ctx_t *ctx); -void *compile_liy60(ctx_t *ctx); -void *compile_liy61(ctx_t *ctx); -void *compile_liy62(ctx_t *ctx); -void *compile_liy63(ctx_t *ctx); -void *compile_liy64(ctx_t *ctx); -void *compile_liy65(ctx_t *ctx); -void *compile_liy66(ctx_t *ctx); -void *compile_liy67(ctx_t *ctx); -void *compile_liy68(ctx_t *ctx); -void *compile_liy69(ctx_t *ctx); -void *compile_liy7(ctx_t *ctx); -void *compile_liy70(ctx_t *ctx); -void *compile_liy71(ctx_t *ctx); -void *compile_liy72(ctx_t *ctx); -void *compile_liy73(ctx_t *ctx); -void *compile_liy74(ctx_t *ctx); -void *compile_liy75(ctx_t *ctx); -void *compile_liy76(ctx_t *ctx); -void *compile_liy77(ctx_t *ctx); -void *compile_liy78(ctx_t *ctx); -void *compile_liy79(ctx_t *ctx); -void *compile_liy8(ctx_t *ctx); -void *compile_liy80(ctx_t *ctx); -void *compile_liy81(ctx_t *ctx); -void *compile_liy82(ctx_t *ctx); -void *compile_liy83(ctx_t *ctx); -void *compile_liy84(ctx_t *ctx); -void *compile_liy85(ctx_t *ctx); -void *compile_liy86(ctx_t *ctx); -void *compile_liy87(ctx_t *ctx); -void *compile_liy88(ctx_t *ctx); -void *compile_liy89(ctx_t *ctx); -void *compile_liy9(ctx_t *ctx); -void *compile_liy90(ctx_t *ctx); -void *compile_liy91(ctx_t *ctx); -void *compile_liy92(ctx_t *ctx); -void *compile_liy93(ctx_t *ctx); -void *compile_liy94(ctx_t *ctx); -void *compile_liy95(ctx_t *ctx); -void *compile_liy96(ctx_t *ctx); -void *compile_liy97(ctx_t *ctx); -void *compile_liy98(ctx_t *ctx); -void *compile_liy99(ctx_t *ctx); -void *compile_sla0(ctx_t *ctx); -void *compile_sla1(ctx_t *ctx); -void *compile_sla10(ctx_t *ctx); -void *compile_sla11(ctx_t *ctx); -void *compile_sla12(ctx_t *ctx); -void *compile_sla13(ctx_t *ctx); -void *compile_sla14(ctx_t *ctx); -void *compile_sla15(ctx_t *ctx); -void *compile_sla16(ctx_t *ctx); -void *compile_sla17(ctx_t *ctx); -void *compile_sla18(ctx_t *ctx); -void *compile_sla19(ctx_t *ctx); -void *compile_sla2(ctx_t *ctx); -void *compile_sla20(ctx_t *ctx); -void *compile_sla21(ctx_t *ctx); -void *compile_sla22(ctx_t *ctx); -void *compile_sla23(ctx_t *ctx); -void *compile_sla24(ctx_t *ctx); -void *compile_sla25(ctx_t *ctx); -void *compile_sla26(ctx_t *ctx); -void *compile_sla27(ctx_t *ctx); -void *compile_sla28(ctx_t *ctx); -void *compile_sla29(ctx_t *ctx); -void *compile_sla3(ctx_t *ctx); -void *compile_sla30(ctx_t *ctx); -void *compile_sla31(ctx_t *ctx); -void *compile_sla32(ctx_t *ctx); -void *compile_sla33(ctx_t *ctx); -void *compile_sla34(ctx_t *ctx); -void *compile_sla35(ctx_t *ctx); -void *compile_sla36(ctx_t *ctx); -void *compile_sla37(ctx_t *ctx); -void *compile_sla38(ctx_t *ctx); -void *compile_sla39(ctx_t *ctx); -void *compile_sla4(ctx_t *ctx); -void *compile_sla40(ctx_t *ctx); -void *compile_sla41(ctx_t *ctx); -void *compile_sla42(ctx_t *ctx); -void *compile_sla43(ctx_t *ctx); -void *compile_sla44(ctx_t *ctx); -void *compile_sla45(ctx_t *ctx); -void *compile_sla46(ctx_t *ctx); -void *compile_sla47(ctx_t *ctx); -void *compile_sla48(ctx_t *ctx); -void *compile_sla49(ctx_t *ctx); -void *compile_sla5(ctx_t *ctx); -void *compile_sla50(ctx_t *ctx); -void *compile_sla51(ctx_t *ctx); -void *compile_sla52(ctx_t *ctx); -void *compile_sla53(ctx_t *ctx); -void *compile_sla54(ctx_t *ctx); -void *compile_sla55(ctx_t *ctx); -void *compile_sla56(ctx_t *ctx); -void *compile_sla57(ctx_t *ctx); -void *compile_sla58(ctx_t *ctx); -void *compile_sla59(ctx_t *ctx); -void *compile_sla6(ctx_t *ctx); -void *compile_sla60(ctx_t *ctx); -void *compile_sla61(ctx_t *ctx); -void *compile_sla62(ctx_t *ctx); -void *compile_sla63(ctx_t *ctx); -void *compile_sla7(ctx_t *ctx); -void *compile_sla8(ctx_t *ctx); -void *compile_sla9(ctx_t *ctx); -void *compile_slo0(ctx_t *ctx); -void *compile_slo1(ctx_t *ctx); -void *compile_slo10(ctx_t *ctx); -void *compile_slo11(ctx_t *ctx); -void *compile_slo12(ctx_t *ctx); -void *compile_slo13(ctx_t *ctx); -void *compile_slo14(ctx_t *ctx); -void *compile_slo15(ctx_t *ctx); -void *compile_slo16(ctx_t *ctx); -void *compile_slo17(ctx_t *ctx); -void *compile_slo18(ctx_t *ctx); -void *compile_slo19(ctx_t *ctx); -void *compile_slo2(ctx_t *ctx); -void *compile_slo20(ctx_t *ctx); -void *compile_slo21(ctx_t *ctx); -void *compile_slo22(ctx_t *ctx); -void *compile_slo23(ctx_t *ctx); -void *compile_slo24(ctx_t *ctx); -void *compile_slo25(ctx_t *ctx); -void *compile_slo26(ctx_t *ctx); -void *compile_slo27(ctx_t *ctx); -void *compile_slo28(ctx_t *ctx); -void *compile_slo29(ctx_t *ctx); -void *compile_slo3(ctx_t *ctx); -void *compile_slo30(ctx_t *ctx); -void *compile_slo31(ctx_t *ctx); -void *compile_slo32(ctx_t *ctx); -void *compile_slo33(ctx_t *ctx); -void *compile_slo34(ctx_t *ctx); -void *compile_slo35(ctx_t *ctx); -void *compile_slo36(ctx_t *ctx); -void *compile_slo37(ctx_t *ctx); -void *compile_slo38(ctx_t *ctx); -void *compile_slo39(ctx_t *ctx); -void *compile_slo4(ctx_t *ctx); -void *compile_slo40(ctx_t *ctx); -void *compile_slo41(ctx_t *ctx); -void *compile_slo42(ctx_t *ctx); -void *compile_slo43(ctx_t *ctx); -void *compile_slo44(ctx_t *ctx); -void *compile_slo45(ctx_t *ctx); -void *compile_slo46(ctx_t *ctx); -void *compile_slo47(ctx_t *ctx); -void *compile_slo48(ctx_t *ctx); -void *compile_slo49(ctx_t *ctx); -void *compile_slo5(ctx_t *ctx); -void *compile_slo50(ctx_t *ctx); -void *compile_slo51(ctx_t *ctx); -void *compile_slo52(ctx_t *ctx); -void *compile_slo53(ctx_t *ctx); -void *compile_slo54(ctx_t *ctx); -void *compile_slo55(ctx_t *ctx); -void *compile_slo56(ctx_t *ctx); -void *compile_slo57(ctx_t *ctx); -void *compile_slo58(ctx_t *ctx); -void *compile_slo59(ctx_t *ctx); -void *compile_slo6(ctx_t *ctx); -void *compile_slo60(ctx_t *ctx); -void *compile_slo61(ctx_t *ctx); -void *compile_slo62(ctx_t *ctx); -void *compile_slo63(ctx_t *ctx); -void *compile_slo7(ctx_t *ctx); -void *compile_slo8(ctx_t *ctx); -void *compile_slo9(ctx_t *ctx); -void *compile_slx0(ctx_t *ctx); -void *compile_slx1(ctx_t *ctx); -void *compile_slx10(ctx_t *ctx); -void *compile_slx11(ctx_t *ctx); -void *compile_slx12(ctx_t *ctx); -void *compile_slx13(ctx_t *ctx); -void *compile_slx14(ctx_t *ctx); -void *compile_slx15(ctx_t *ctx); -void *compile_slx16(ctx_t *ctx); -void *compile_slx17(ctx_t *ctx); -void *compile_slx18(ctx_t *ctx); -void *compile_slx19(ctx_t *ctx); -void *compile_slx2(ctx_t *ctx); -void *compile_slx20(ctx_t *ctx); -void *compile_slx21(ctx_t *ctx); -void *compile_slx22(ctx_t *ctx); -void *compile_slx23(ctx_t *ctx); -void *compile_slx24(ctx_t *ctx); -void *compile_slx25(ctx_t *ctx); -void *compile_slx26(ctx_t *ctx); -void *compile_slx27(ctx_t *ctx); -void *compile_slx28(ctx_t *ctx); -void *compile_slx29(ctx_t *ctx); -void *compile_slx3(ctx_t *ctx); -void *compile_slx30(ctx_t *ctx); -void *compile_slx31(ctx_t *ctx); -void *compile_slx32(ctx_t *ctx); -void *compile_slx33(ctx_t *ctx); -void *compile_slx34(ctx_t *ctx); -void *compile_slx35(ctx_t *ctx); -void *compile_slx36(ctx_t *ctx); -void *compile_slx37(ctx_t *ctx); -void *compile_slx38(ctx_t *ctx); -void *compile_slx39(ctx_t *ctx); -void *compile_slx4(ctx_t *ctx); -void *compile_slx40(ctx_t *ctx); -void *compile_slx41(ctx_t *ctx); -void *compile_slx42(ctx_t *ctx); -void *compile_slx43(ctx_t *ctx); -void *compile_slx44(ctx_t *ctx); -void *compile_slx45(ctx_t *ctx); -void *compile_slx46(ctx_t *ctx); -void *compile_slx47(ctx_t *ctx); -void *compile_slx48(ctx_t *ctx); -void *compile_slx49(ctx_t *ctx); -void *compile_slx5(ctx_t *ctx); -void *compile_slx50(ctx_t *ctx); -void *compile_slx51(ctx_t *ctx); -void *compile_slx52(ctx_t *ctx); -void *compile_slx53(ctx_t *ctx); -void *compile_slx54(ctx_t *ctx); -void *compile_slx55(ctx_t *ctx); -void *compile_slx56(ctx_t *ctx); -void *compile_slx57(ctx_t *ctx); -void *compile_slx58(ctx_t *ctx); -void *compile_slx59(ctx_t *ctx); -void *compile_slx6(ctx_t *ctx); -void *compile_slx60(ctx_t *ctx); -void *compile_slx61(ctx_t *ctx); -void *compile_slx62(ctx_t *ctx); -void *compile_slx63(ctx_t *ctx); -void *compile_slx7(ctx_t *ctx); -void *compile_slx8(ctx_t *ctx); -void *compile_slx9(ctx_t *ctx); -void *compile_sly0(ctx_t *ctx); -void *compile_sly1(ctx_t *ctx); -void *compile_sly10(ctx_t *ctx); -void *compile_sly11(ctx_t *ctx); -void *compile_sly12(ctx_t *ctx); -void *compile_sly13(ctx_t *ctx); -void *compile_sly14(ctx_t *ctx); -void *compile_sly15(ctx_t *ctx); -void *compile_sly16(ctx_t *ctx); -void *compile_sly17(ctx_t *ctx); -void *compile_sly18(ctx_t *ctx); -void *compile_sly19(ctx_t *ctx); -void *compile_sly2(ctx_t *ctx); -void *compile_sly20(ctx_t *ctx); -void *compile_sly21(ctx_t *ctx); -void *compile_sly22(ctx_t *ctx); -void *compile_sly23(ctx_t *ctx); -void *compile_sly24(ctx_t *ctx); -void *compile_sly25(ctx_t *ctx); -void *compile_sly26(ctx_t *ctx); -void *compile_sly27(ctx_t *ctx); -void *compile_sly28(ctx_t *ctx); -void *compile_sly29(ctx_t *ctx); -void *compile_sly3(ctx_t *ctx); -void *compile_sly30(ctx_t *ctx); -void *compile_sly31(ctx_t *ctx); -void *compile_sly32(ctx_t *ctx); -void *compile_sly33(ctx_t *ctx); -void *compile_sly34(ctx_t *ctx); -void *compile_sly35(ctx_t *ctx); -void *compile_sly36(ctx_t *ctx); -void *compile_sly37(ctx_t *ctx); -void *compile_sly38(ctx_t *ctx); -void *compile_sly39(ctx_t *ctx); -void *compile_sly4(ctx_t *ctx); -void *compile_sly40(ctx_t *ctx); -void *compile_sly41(ctx_t *ctx); -void *compile_sly42(ctx_t *ctx); -void *compile_sly43(ctx_t *ctx); -void *compile_sly44(ctx_t *ctx); -void *compile_sly45(ctx_t *ctx); -void *compile_sly46(ctx_t *ctx); -void *compile_sly47(ctx_t *ctx); -void *compile_sly48(ctx_t *ctx); -void *compile_sly49(ctx_t *ctx); -void *compile_sly5(ctx_t *ctx); -void *compile_sly50(ctx_t *ctx); -void *compile_sly51(ctx_t *ctx); -void *compile_sly52(ctx_t *ctx); -void *compile_sly53(ctx_t *ctx); -void *compile_sly54(ctx_t *ctx); -void *compile_sly55(ctx_t *ctx); -void *compile_sly56(ctx_t *ctx); -void *compile_sly57(ctx_t *ctx); -void *compile_sly58(ctx_t *ctx); -void *compile_sly59(ctx_t *ctx); -void *compile_sly6(ctx_t *ctx); -void *compile_sly60(ctx_t *ctx); -void *compile_sly61(ctx_t *ctx); -void *compile_sly62(ctx_t *ctx); -void *compile_sly63(ctx_t *ctx); -void *compile_sly7(ctx_t *ctx); -void *compile_sly8(ctx_t *ctx); -void *compile_sly9(ctx_t *ctx); -void *compile_sra0(ctx_t *ctx); -void *compile_sra1(ctx_t *ctx); -void *compile_sra10(ctx_t *ctx); -void *compile_sra11(ctx_t *ctx); -void *compile_sra12(ctx_t *ctx); -void *compile_sra13(ctx_t *ctx); -void *compile_sra14(ctx_t *ctx); -void *compile_sra15(ctx_t *ctx); -void *compile_sra16(ctx_t *ctx); -void *compile_sra17(ctx_t *ctx); -void *compile_sra18(ctx_t *ctx); -void *compile_sra19(ctx_t *ctx); -void *compile_sra2(ctx_t *ctx); -void *compile_sra20(ctx_t *ctx); -void *compile_sra21(ctx_t *ctx); -void *compile_sra22(ctx_t *ctx); -void *compile_sra23(ctx_t *ctx); -void *compile_sra24(ctx_t *ctx); -void *compile_sra25(ctx_t *ctx); -void *compile_sra26(ctx_t *ctx); -void *compile_sra27(ctx_t *ctx); -void *compile_sra28(ctx_t *ctx); -void *compile_sra29(ctx_t *ctx); -void *compile_sra3(ctx_t *ctx); -void *compile_sra30(ctx_t *ctx); -void *compile_sra31(ctx_t *ctx); -void *compile_sra32(ctx_t *ctx); -void *compile_sra33(ctx_t *ctx); -void *compile_sra34(ctx_t *ctx); -void *compile_sra35(ctx_t *ctx); -void *compile_sra36(ctx_t *ctx); -void *compile_sra37(ctx_t *ctx); -void *compile_sra38(ctx_t *ctx); -void *compile_sra39(ctx_t *ctx); -void *compile_sra4(ctx_t *ctx); -void *compile_sra40(ctx_t *ctx); -void *compile_sra41(ctx_t *ctx); -void *compile_sra42(ctx_t *ctx); -void *compile_sra43(ctx_t *ctx); -void *compile_sra44(ctx_t *ctx); -void *compile_sra45(ctx_t *ctx); -void *compile_sra46(ctx_t *ctx); -void *compile_sra47(ctx_t *ctx); -void *compile_sra48(ctx_t *ctx); -void *compile_sra49(ctx_t *ctx); -void *compile_sra5(ctx_t *ctx); -void *compile_sra50(ctx_t *ctx); -void *compile_sra51(ctx_t *ctx); -void *compile_sra52(ctx_t *ctx); -void *compile_sra53(ctx_t *ctx); -void *compile_sra54(ctx_t *ctx); -void *compile_sra55(ctx_t *ctx); -void *compile_sra56(ctx_t *ctx); -void *compile_sra57(ctx_t *ctx); -void *compile_sra58(ctx_t *ctx); -void *compile_sra59(ctx_t *ctx); -void *compile_sra6(ctx_t *ctx); -void *compile_sra60(ctx_t *ctx); -void *compile_sra61(ctx_t *ctx); -void *compile_sra62(ctx_t *ctx); -void *compile_sra63(ctx_t *ctx); -void *compile_sra7(ctx_t *ctx); -void *compile_sra8(ctx_t *ctx); -void *compile_sra9(ctx_t *ctx); -void *compile_sro0(ctx_t *ctx); -void *compile_sro1(ctx_t *ctx); -void *compile_sro10(ctx_t *ctx); -void *compile_sro11(ctx_t *ctx); -void *compile_sro12(ctx_t *ctx); -void *compile_sro13(ctx_t *ctx); -void *compile_sro14(ctx_t *ctx); -void *compile_sro15(ctx_t *ctx); -void *compile_sro16(ctx_t *ctx); -void *compile_sro17(ctx_t *ctx); -void *compile_sro18(ctx_t *ctx); -void *compile_sro19(ctx_t *ctx); -void *compile_sro2(ctx_t *ctx); -void *compile_sro20(ctx_t *ctx); -void *compile_sro21(ctx_t *ctx); -void *compile_sro22(ctx_t *ctx); -void *compile_sro23(ctx_t *ctx); -void *compile_sro24(ctx_t *ctx); -void *compile_sro25(ctx_t *ctx); -void *compile_sro26(ctx_t *ctx); -void *compile_sro27(ctx_t *ctx); -void *compile_sro28(ctx_t *ctx); -void *compile_sro29(ctx_t *ctx); -void *compile_sro3(ctx_t *ctx); -void *compile_sro30(ctx_t *ctx); -void *compile_sro31(ctx_t *ctx); -void *compile_sro32(ctx_t *ctx); -void *compile_sro33(ctx_t *ctx); -void *compile_sro34(ctx_t *ctx); -void *compile_sro35(ctx_t *ctx); -void *compile_sro36(ctx_t *ctx); -void *compile_sro37(ctx_t *ctx); -void *compile_sro38(ctx_t *ctx); -void *compile_sro39(ctx_t *ctx); -void *compile_sro4(ctx_t *ctx); -void *compile_sro40(ctx_t *ctx); -void *compile_sro41(ctx_t *ctx); -void *compile_sro42(ctx_t *ctx); -void *compile_sro43(ctx_t *ctx); -void *compile_sro44(ctx_t *ctx); -void *compile_sro45(ctx_t *ctx); -void *compile_sro46(ctx_t *ctx); -void *compile_sro47(ctx_t *ctx); -void *compile_sro48(ctx_t *ctx); -void *compile_sro49(ctx_t *ctx); -void *compile_sro5(ctx_t *ctx); -void *compile_sro50(ctx_t *ctx); -void *compile_sro51(ctx_t *ctx); -void *compile_sro52(ctx_t *ctx); -void *compile_sro53(ctx_t *ctx); -void *compile_sro54(ctx_t *ctx); -void *compile_sro55(ctx_t *ctx); -void *compile_sro56(ctx_t *ctx); -void *compile_sro57(ctx_t *ctx); -void *compile_sro58(ctx_t *ctx); -void *compile_sro59(ctx_t *ctx); -void *compile_sro6(ctx_t *ctx); -void *compile_sro60(ctx_t *ctx); -void *compile_sro61(ctx_t *ctx); -void *compile_sro62(ctx_t *ctx); -void *compile_sro63(ctx_t *ctx); -void *compile_sro7(ctx_t *ctx); -void *compile_sro8(ctx_t *ctx); -void *compile_sro9(ctx_t *ctx); -void *compile_srx0(ctx_t *ctx); -void *compile_srx1(ctx_t *ctx); -void *compile_srx10(ctx_t *ctx); -void *compile_srx11(ctx_t *ctx); -void *compile_srx12(ctx_t *ctx); -void *compile_srx13(ctx_t *ctx); -void *compile_srx14(ctx_t *ctx); -void *compile_srx15(ctx_t *ctx); -void *compile_srx16(ctx_t *ctx); -void *compile_srx17(ctx_t *ctx); -void *compile_srx18(ctx_t *ctx); -void *compile_srx19(ctx_t *ctx); -void *compile_srx2(ctx_t *ctx); -void *compile_srx20(ctx_t *ctx); -void *compile_srx21(ctx_t *ctx); -void *compile_srx22(ctx_t *ctx); -void *compile_srx23(ctx_t *ctx); -void *compile_srx24(ctx_t *ctx); -void *compile_srx25(ctx_t *ctx); -void *compile_srx26(ctx_t *ctx); -void *compile_srx27(ctx_t *ctx); -void *compile_srx28(ctx_t *ctx); -void *compile_srx29(ctx_t *ctx); -void *compile_srx3(ctx_t *ctx); -void *compile_srx30(ctx_t *ctx); -void *compile_srx31(ctx_t *ctx); -void *compile_srx32(ctx_t *ctx); -void *compile_srx33(ctx_t *ctx); -void *compile_srx34(ctx_t *ctx); -void *compile_srx35(ctx_t *ctx); -void *compile_srx36(ctx_t *ctx); -void *compile_srx37(ctx_t *ctx); -void *compile_srx38(ctx_t *ctx); -void *compile_srx39(ctx_t *ctx); -void *compile_srx4(ctx_t *ctx); -void *compile_srx40(ctx_t *ctx); -void *compile_srx41(ctx_t *ctx); -void *compile_srx42(ctx_t *ctx); -void *compile_srx43(ctx_t *ctx); -void *compile_srx44(ctx_t *ctx); -void *compile_srx45(ctx_t *ctx); -void *compile_srx46(ctx_t *ctx); -void *compile_srx47(ctx_t *ctx); -void *compile_srx48(ctx_t *ctx); -void *compile_srx49(ctx_t *ctx); -void *compile_srx5(ctx_t *ctx); -void *compile_srx50(ctx_t *ctx); -void *compile_srx51(ctx_t *ctx); -void *compile_srx52(ctx_t *ctx); -void *compile_srx53(ctx_t *ctx); -void *compile_srx54(ctx_t *ctx); -void *compile_srx55(ctx_t *ctx); -void *compile_srx56(ctx_t *ctx); -void *compile_srx57(ctx_t *ctx); -void *compile_srx58(ctx_t *ctx); -void *compile_srx59(ctx_t *ctx); -void *compile_srx6(ctx_t *ctx); -void *compile_srx60(ctx_t *ctx); -void *compile_srx61(ctx_t *ctx); -void *compile_srx62(ctx_t *ctx); -void *compile_srx63(ctx_t *ctx); -void *compile_srx7(ctx_t *ctx); -void *compile_srx8(ctx_t *ctx); -void *compile_srx9(ctx_t *ctx); -void *compile_sry0(ctx_t *ctx); -void *compile_sry1(ctx_t *ctx); -void *compile_sry10(ctx_t *ctx); -void *compile_sry11(ctx_t *ctx); -void *compile_sry12(ctx_t *ctx); -void *compile_sry13(ctx_t *ctx); -void *compile_sry14(ctx_t *ctx); -void *compile_sry15(ctx_t *ctx); -void *compile_sry16(ctx_t *ctx); -void *compile_sry17(ctx_t *ctx); -void *compile_sry18(ctx_t *ctx); -void *compile_sry19(ctx_t *ctx); -void *compile_sry2(ctx_t *ctx); -void *compile_sry20(ctx_t *ctx); -void *compile_sry21(ctx_t *ctx); -void *compile_sry22(ctx_t *ctx); -void *compile_sry23(ctx_t *ctx); -void *compile_sry24(ctx_t *ctx); -void *compile_sry25(ctx_t *ctx); -void *compile_sry26(ctx_t *ctx); -void *compile_sry27(ctx_t *ctx); -void *compile_sry28(ctx_t *ctx); -void *compile_sry29(ctx_t *ctx); -void *compile_sry3(ctx_t *ctx); -void *compile_sry30(ctx_t *ctx); -void *compile_sry31(ctx_t *ctx); -void *compile_sry32(ctx_t *ctx); -void *compile_sry33(ctx_t *ctx); -void *compile_sry34(ctx_t *ctx); -void *compile_sry35(ctx_t *ctx); -void *compile_sry36(ctx_t *ctx); -void *compile_sry37(ctx_t *ctx); -void *compile_sry38(ctx_t *ctx); -void *compile_sry39(ctx_t *ctx); -void *compile_sry4(ctx_t *ctx); -void *compile_sry40(ctx_t *ctx); -void *compile_sry41(ctx_t *ctx); -void *compile_sry42(ctx_t *ctx); -void *compile_sry43(ctx_t *ctx); -void *compile_sry44(ctx_t *ctx); -void *compile_sry45(ctx_t *ctx); -void *compile_sry46(ctx_t *ctx); -void *compile_sry47(ctx_t *ctx); -void *compile_sry48(ctx_t *ctx); -void *compile_sry49(ctx_t *ctx); -void *compile_sry5(ctx_t *ctx); -void *compile_sry50(ctx_t *ctx); -void *compile_sry51(ctx_t *ctx); -void *compile_sry52(ctx_t *ctx); -void *compile_sry53(ctx_t *ctx); -void *compile_sry54(ctx_t *ctx); -void *compile_sry55(ctx_t *ctx); -void *compile_sry56(ctx_t *ctx); -void *compile_sry57(ctx_t *ctx); -void *compile_sry58(ctx_t *ctx); -void *compile_sry59(ctx_t *ctx); -void *compile_sry6(ctx_t *ctx); -void *compile_sry60(ctx_t *ctx); -void *compile_sry61(ctx_t *ctx); -void *compile_sry62(ctx_t *ctx); -void *compile_sry63(ctx_t *ctx); -void *compile_sry7(ctx_t *ctx); -void *compile_sry8(ctx_t *ctx); -void *compile_sry9(ctx_t *ctx); -#endif /* COPYJIT_OP_DECLS_H */ diff --git a/lib/op_defns.h b/lib/op_defns.h deleted file mode 100644 index f930abe..0000000 --- a/lib/op_defns.h +++ /dev/null @@ -1,19855 +0,0 @@ -#ifndef COPYJIT_OP_DEFNS_H -#define COPYJIT_OP_DEFNS_H -void *compile_add(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_add, gen_add_len); - ctx->pc += gen_add_len; - return pc; - } -void *compile_addao(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addao, gen_addao_len); - ctx->pc += gen_addao_len; - return pc; - } -void *compile_addxo(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addxo, gen_addxo_len); - ctx->pc += gen_addxo_len; - return pc; - } -void *compile_addyo(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addyo, gen_addyo_len); - ctx->pc += gen_addyo_len; - return pc; - } -void *compile_ban(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_ban, gen_ban_len); - ctx->pc += gen_ban_len; - return pc; - } -void *compile_baz(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_baz, gen_baz_len); - ctx->pc += gen_baz_len; - return pc; - } -void *compile_end(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_end, gen_end_len); - ctx->pc += gen_end_len; - return pc; - } -void *compile_incy(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_incy, gen_incy_len); - ctx->pc += gen_incy_len; - return pc; - } -void *compile_j(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_j, gen_j_len); - ctx->pc += gen_j_len; - return pc; - } -void *compile_movao(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_movao, gen_movao_len); - ctx->pc += gen_movao_len; - return pc; - } -void *compile_movxa(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_movxa, gen_movxa_len); - ctx->pc += gen_movxa_len; - return pc; - } -void *compile_movxo(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_movxo, gen_movxo_len); - ctx->pc += gen_movxo_len; - return pc; - } -void *compile_movya(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_movya, gen_movya_len); - ctx->pc += gen_movya_len; - return pc; - } -void *compile_movyo(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_movyo, gen_movyo_len); - ctx->pc += gen_movyo_len; - return pc; - } -void *compile_peeko(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_peeko, gen_peeko_len); - ctx->pc += gen_peeko_len; - return pc; - } -void *compile_popo(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_popo, gen_popo_len); - ctx->pc += gen_popo_len; - return pc; - } -void *compile_pusha(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_pusha, gen_pusha_len); - ctx->pc += gen_pusha_len; - return pc; - } -void *compile_sub(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sub, gen_sub_len); - ctx->pc += gen_sub_len; - return pc; - } -void *compile_subxo(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_subxo, gen_subxo_len); - ctx->pc += gen_subxo_len; - return pc; - } -void *compile_subyo(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_subyo, gen_subyo_len); - ctx->pc += gen_subyo_len; - return pc; - } -void *compile_addia0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia0, gen_addia0_len); - ctx->pc += gen_addia0_len; - return pc; - } -void *compile_addia1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia1, gen_addia1_len); - ctx->pc += gen_addia1_len; - return pc; - } -void *compile_addia10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia10, gen_addia10_len); - ctx->pc += gen_addia10_len; - return pc; - } -void *compile_addia100(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia100, gen_addia100_len); - ctx->pc += gen_addia100_len; - return pc; - } -void *compile_addia101(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia101, gen_addia101_len); - ctx->pc += gen_addia101_len; - return pc; - } -void *compile_addia102(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia102, gen_addia102_len); - ctx->pc += gen_addia102_len; - return pc; - } -void *compile_addia103(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia103, gen_addia103_len); - ctx->pc += gen_addia103_len; - return pc; - } -void *compile_addia104(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia104, gen_addia104_len); - ctx->pc += gen_addia104_len; - return pc; - } -void *compile_addia105(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia105, gen_addia105_len); - ctx->pc += gen_addia105_len; - return pc; - } -void *compile_addia106(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia106, gen_addia106_len); - ctx->pc += gen_addia106_len; - return pc; - } -void *compile_addia107(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia107, gen_addia107_len); - ctx->pc += gen_addia107_len; - return pc; - } -void *compile_addia108(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia108, gen_addia108_len); - ctx->pc += gen_addia108_len; - return pc; - } -void *compile_addia109(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia109, gen_addia109_len); - ctx->pc += gen_addia109_len; - return pc; - } -void *compile_addia11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia11, gen_addia11_len); - ctx->pc += gen_addia11_len; - return pc; - } -void *compile_addia110(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia110, gen_addia110_len); - ctx->pc += gen_addia110_len; - return pc; - } -void *compile_addia111(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia111, gen_addia111_len); - ctx->pc += gen_addia111_len; - return pc; - } -void *compile_addia112(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia112, gen_addia112_len); - ctx->pc += gen_addia112_len; - return pc; - } -void *compile_addia113(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia113, gen_addia113_len); - ctx->pc += gen_addia113_len; - return pc; - } -void *compile_addia114(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia114, gen_addia114_len); - ctx->pc += gen_addia114_len; - return pc; - } -void *compile_addia115(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia115, gen_addia115_len); - ctx->pc += gen_addia115_len; - return pc; - } -void *compile_addia116(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia116, gen_addia116_len); - ctx->pc += gen_addia116_len; - return pc; - } -void *compile_addia117(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia117, gen_addia117_len); - ctx->pc += gen_addia117_len; - return pc; - } -void *compile_addia118(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia118, gen_addia118_len); - ctx->pc += gen_addia118_len; - return pc; - } -void *compile_addia119(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia119, gen_addia119_len); - ctx->pc += gen_addia119_len; - return pc; - } -void *compile_addia12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia12, gen_addia12_len); - ctx->pc += gen_addia12_len; - return pc; - } -void *compile_addia120(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia120, gen_addia120_len); - ctx->pc += gen_addia120_len; - return pc; - } -void *compile_addia121(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia121, gen_addia121_len); - ctx->pc += gen_addia121_len; - return pc; - } -void *compile_addia122(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia122, gen_addia122_len); - ctx->pc += gen_addia122_len; - return pc; - } -void *compile_addia123(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia123, gen_addia123_len); - ctx->pc += gen_addia123_len; - return pc; - } -void *compile_addia124(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia124, gen_addia124_len); - ctx->pc += gen_addia124_len; - return pc; - } -void *compile_addia125(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia125, gen_addia125_len); - ctx->pc += gen_addia125_len; - return pc; - } -void *compile_addia126(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia126, gen_addia126_len); - ctx->pc += gen_addia126_len; - return pc; - } -void *compile_addia127(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia127, gen_addia127_len); - ctx->pc += gen_addia127_len; - return pc; - } -void *compile_addia128(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia128, gen_addia128_len); - ctx->pc += gen_addia128_len; - return pc; - } -void *compile_addia129(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia129, gen_addia129_len); - ctx->pc += gen_addia129_len; - return pc; - } -void *compile_addia13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia13, gen_addia13_len); - ctx->pc += gen_addia13_len; - return pc; - } -void *compile_addia130(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia130, gen_addia130_len); - ctx->pc += gen_addia130_len; - return pc; - } -void *compile_addia131(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia131, gen_addia131_len); - ctx->pc += gen_addia131_len; - return pc; - } -void *compile_addia132(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia132, gen_addia132_len); - ctx->pc += gen_addia132_len; - return pc; - } -void *compile_addia133(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia133, gen_addia133_len); - ctx->pc += gen_addia133_len; - return pc; - } -void *compile_addia134(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia134, gen_addia134_len); - ctx->pc += gen_addia134_len; - return pc; - } -void *compile_addia135(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia135, gen_addia135_len); - ctx->pc += gen_addia135_len; - return pc; - } -void *compile_addia136(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia136, gen_addia136_len); - ctx->pc += gen_addia136_len; - return pc; - } -void *compile_addia137(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia137, gen_addia137_len); - ctx->pc += gen_addia137_len; - return pc; - } -void *compile_addia138(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia138, gen_addia138_len); - ctx->pc += gen_addia138_len; - return pc; - } -void *compile_addia139(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia139, gen_addia139_len); - ctx->pc += gen_addia139_len; - return pc; - } -void *compile_addia14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia14, gen_addia14_len); - ctx->pc += gen_addia14_len; - return pc; - } -void *compile_addia140(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia140, gen_addia140_len); - ctx->pc += gen_addia140_len; - return pc; - } -void *compile_addia141(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia141, gen_addia141_len); - ctx->pc += gen_addia141_len; - return pc; - } -void *compile_addia142(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia142, gen_addia142_len); - ctx->pc += gen_addia142_len; - return pc; - } -void *compile_addia143(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia143, gen_addia143_len); - ctx->pc += gen_addia143_len; - return pc; - } -void *compile_addia144(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia144, gen_addia144_len); - ctx->pc += gen_addia144_len; - return pc; - } -void *compile_addia145(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia145, gen_addia145_len); - ctx->pc += gen_addia145_len; - return pc; - } -void *compile_addia146(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia146, gen_addia146_len); - ctx->pc += gen_addia146_len; - return pc; - } -void *compile_addia147(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia147, gen_addia147_len); - ctx->pc += gen_addia147_len; - return pc; - } -void *compile_addia148(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia148, gen_addia148_len); - ctx->pc += gen_addia148_len; - return pc; - } -void *compile_addia149(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia149, gen_addia149_len); - ctx->pc += gen_addia149_len; - return pc; - } -void *compile_addia15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia15, gen_addia15_len); - ctx->pc += gen_addia15_len; - return pc; - } -void *compile_addia150(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia150, gen_addia150_len); - ctx->pc += gen_addia150_len; - return pc; - } -void *compile_addia151(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia151, gen_addia151_len); - ctx->pc += gen_addia151_len; - return pc; - } -void *compile_addia152(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia152, gen_addia152_len); - ctx->pc += gen_addia152_len; - return pc; - } -void *compile_addia153(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia153, gen_addia153_len); - ctx->pc += gen_addia153_len; - return pc; - } -void *compile_addia154(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia154, gen_addia154_len); - ctx->pc += gen_addia154_len; - return pc; - } -void *compile_addia155(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia155, gen_addia155_len); - ctx->pc += gen_addia155_len; - return pc; - } -void *compile_addia156(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia156, gen_addia156_len); - ctx->pc += gen_addia156_len; - return pc; - } -void *compile_addia157(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia157, gen_addia157_len); - ctx->pc += gen_addia157_len; - return pc; - } -void *compile_addia158(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia158, gen_addia158_len); - ctx->pc += gen_addia158_len; - return pc; - } -void *compile_addia159(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia159, gen_addia159_len); - ctx->pc += gen_addia159_len; - return pc; - } -void *compile_addia16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia16, gen_addia16_len); - ctx->pc += gen_addia16_len; - return pc; - } -void *compile_addia160(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia160, gen_addia160_len); - ctx->pc += gen_addia160_len; - return pc; - } -void *compile_addia161(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia161, gen_addia161_len); - ctx->pc += gen_addia161_len; - return pc; - } -void *compile_addia162(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia162, gen_addia162_len); - ctx->pc += gen_addia162_len; - return pc; - } -void *compile_addia163(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia163, gen_addia163_len); - ctx->pc += gen_addia163_len; - return pc; - } -void *compile_addia164(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia164, gen_addia164_len); - ctx->pc += gen_addia164_len; - return pc; - } -void *compile_addia165(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia165, gen_addia165_len); - ctx->pc += gen_addia165_len; - return pc; - } -void *compile_addia166(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia166, gen_addia166_len); - ctx->pc += gen_addia166_len; - return pc; - } -void *compile_addia167(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia167, gen_addia167_len); - ctx->pc += gen_addia167_len; - return pc; - } -void *compile_addia168(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia168, gen_addia168_len); - ctx->pc += gen_addia168_len; - return pc; - } -void *compile_addia169(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia169, gen_addia169_len); - ctx->pc += gen_addia169_len; - return pc; - } -void *compile_addia17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia17, gen_addia17_len); - ctx->pc += gen_addia17_len; - return pc; - } -void *compile_addia170(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia170, gen_addia170_len); - ctx->pc += gen_addia170_len; - return pc; - } -void *compile_addia171(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia171, gen_addia171_len); - ctx->pc += gen_addia171_len; - return pc; - } -void *compile_addia172(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia172, gen_addia172_len); - ctx->pc += gen_addia172_len; - return pc; - } -void *compile_addia173(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia173, gen_addia173_len); - ctx->pc += gen_addia173_len; - return pc; - } -void *compile_addia174(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia174, gen_addia174_len); - ctx->pc += gen_addia174_len; - return pc; - } -void *compile_addia175(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia175, gen_addia175_len); - ctx->pc += gen_addia175_len; - return pc; - } -void *compile_addia176(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia176, gen_addia176_len); - ctx->pc += gen_addia176_len; - return pc; - } -void *compile_addia177(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia177, gen_addia177_len); - ctx->pc += gen_addia177_len; - return pc; - } -void *compile_addia178(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia178, gen_addia178_len); - ctx->pc += gen_addia178_len; - return pc; - } -void *compile_addia179(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia179, gen_addia179_len); - ctx->pc += gen_addia179_len; - return pc; - } -void *compile_addia18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia18, gen_addia18_len); - ctx->pc += gen_addia18_len; - return pc; - } -void *compile_addia180(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia180, gen_addia180_len); - ctx->pc += gen_addia180_len; - return pc; - } -void *compile_addia181(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia181, gen_addia181_len); - ctx->pc += gen_addia181_len; - return pc; - } -void *compile_addia182(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia182, gen_addia182_len); - ctx->pc += gen_addia182_len; - return pc; - } -void *compile_addia183(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia183, gen_addia183_len); - ctx->pc += gen_addia183_len; - return pc; - } -void *compile_addia184(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia184, gen_addia184_len); - ctx->pc += gen_addia184_len; - return pc; - } -void *compile_addia185(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia185, gen_addia185_len); - ctx->pc += gen_addia185_len; - return pc; - } -void *compile_addia186(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia186, gen_addia186_len); - ctx->pc += gen_addia186_len; - return pc; - } -void *compile_addia187(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia187, gen_addia187_len); - ctx->pc += gen_addia187_len; - return pc; - } -void *compile_addia188(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia188, gen_addia188_len); - ctx->pc += gen_addia188_len; - return pc; - } -void *compile_addia189(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia189, gen_addia189_len); - ctx->pc += gen_addia189_len; - return pc; - } -void *compile_addia19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia19, gen_addia19_len); - ctx->pc += gen_addia19_len; - return pc; - } -void *compile_addia190(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia190, gen_addia190_len); - ctx->pc += gen_addia190_len; - return pc; - } -void *compile_addia191(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia191, gen_addia191_len); - ctx->pc += gen_addia191_len; - return pc; - } -void *compile_addia192(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia192, gen_addia192_len); - ctx->pc += gen_addia192_len; - return pc; - } -void *compile_addia193(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia193, gen_addia193_len); - ctx->pc += gen_addia193_len; - return pc; - } -void *compile_addia194(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia194, gen_addia194_len); - ctx->pc += gen_addia194_len; - return pc; - } -void *compile_addia195(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia195, gen_addia195_len); - ctx->pc += gen_addia195_len; - return pc; - } -void *compile_addia196(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia196, gen_addia196_len); - ctx->pc += gen_addia196_len; - return pc; - } -void *compile_addia197(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia197, gen_addia197_len); - ctx->pc += gen_addia197_len; - return pc; - } -void *compile_addia198(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia198, gen_addia198_len); - ctx->pc += gen_addia198_len; - return pc; - } -void *compile_addia199(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia199, gen_addia199_len); - ctx->pc += gen_addia199_len; - return pc; - } -void *compile_addia2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia2, gen_addia2_len); - ctx->pc += gen_addia2_len; - return pc; - } -void *compile_addia20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia20, gen_addia20_len); - ctx->pc += gen_addia20_len; - return pc; - } -void *compile_addia200(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia200, gen_addia200_len); - ctx->pc += gen_addia200_len; - return pc; - } -void *compile_addia201(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia201, gen_addia201_len); - ctx->pc += gen_addia201_len; - return pc; - } -void *compile_addia202(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia202, gen_addia202_len); - ctx->pc += gen_addia202_len; - return pc; - } -void *compile_addia203(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia203, gen_addia203_len); - ctx->pc += gen_addia203_len; - return pc; - } -void *compile_addia204(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia204, gen_addia204_len); - ctx->pc += gen_addia204_len; - return pc; - } -void *compile_addia205(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia205, gen_addia205_len); - ctx->pc += gen_addia205_len; - return pc; - } -void *compile_addia206(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia206, gen_addia206_len); - ctx->pc += gen_addia206_len; - return pc; - } -void *compile_addia207(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia207, gen_addia207_len); - ctx->pc += gen_addia207_len; - return pc; - } -void *compile_addia208(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia208, gen_addia208_len); - ctx->pc += gen_addia208_len; - return pc; - } -void *compile_addia209(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia209, gen_addia209_len); - ctx->pc += gen_addia209_len; - return pc; - } -void *compile_addia21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia21, gen_addia21_len); - ctx->pc += gen_addia21_len; - return pc; - } -void *compile_addia210(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia210, gen_addia210_len); - ctx->pc += gen_addia210_len; - return pc; - } -void *compile_addia211(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia211, gen_addia211_len); - ctx->pc += gen_addia211_len; - return pc; - } -void *compile_addia212(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia212, gen_addia212_len); - ctx->pc += gen_addia212_len; - return pc; - } -void *compile_addia213(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia213, gen_addia213_len); - ctx->pc += gen_addia213_len; - return pc; - } -void *compile_addia214(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia214, gen_addia214_len); - ctx->pc += gen_addia214_len; - return pc; - } -void *compile_addia215(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia215, gen_addia215_len); - ctx->pc += gen_addia215_len; - return pc; - } -void *compile_addia216(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia216, gen_addia216_len); - ctx->pc += gen_addia216_len; - return pc; - } -void *compile_addia217(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia217, gen_addia217_len); - ctx->pc += gen_addia217_len; - return pc; - } -void *compile_addia218(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia218, gen_addia218_len); - ctx->pc += gen_addia218_len; - return pc; - } -void *compile_addia219(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia219, gen_addia219_len); - ctx->pc += gen_addia219_len; - return pc; - } -void *compile_addia22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia22, gen_addia22_len); - ctx->pc += gen_addia22_len; - return pc; - } -void *compile_addia220(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia220, gen_addia220_len); - ctx->pc += gen_addia220_len; - return pc; - } -void *compile_addia221(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia221, gen_addia221_len); - ctx->pc += gen_addia221_len; - return pc; - } -void *compile_addia222(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia222, gen_addia222_len); - ctx->pc += gen_addia222_len; - return pc; - } -void *compile_addia223(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia223, gen_addia223_len); - ctx->pc += gen_addia223_len; - return pc; - } -void *compile_addia224(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia224, gen_addia224_len); - ctx->pc += gen_addia224_len; - return pc; - } -void *compile_addia225(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia225, gen_addia225_len); - ctx->pc += gen_addia225_len; - return pc; - } -void *compile_addia226(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia226, gen_addia226_len); - ctx->pc += gen_addia226_len; - return pc; - } -void *compile_addia227(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia227, gen_addia227_len); - ctx->pc += gen_addia227_len; - return pc; - } -void *compile_addia228(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia228, gen_addia228_len); - ctx->pc += gen_addia228_len; - return pc; - } -void *compile_addia229(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia229, gen_addia229_len); - ctx->pc += gen_addia229_len; - return pc; - } -void *compile_addia23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia23, gen_addia23_len); - ctx->pc += gen_addia23_len; - return pc; - } -void *compile_addia230(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia230, gen_addia230_len); - ctx->pc += gen_addia230_len; - return pc; - } -void *compile_addia231(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia231, gen_addia231_len); - ctx->pc += gen_addia231_len; - return pc; - } -void *compile_addia232(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia232, gen_addia232_len); - ctx->pc += gen_addia232_len; - return pc; - } -void *compile_addia233(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia233, gen_addia233_len); - ctx->pc += gen_addia233_len; - return pc; - } -void *compile_addia234(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia234, gen_addia234_len); - ctx->pc += gen_addia234_len; - return pc; - } -void *compile_addia235(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia235, gen_addia235_len); - ctx->pc += gen_addia235_len; - return pc; - } -void *compile_addia236(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia236, gen_addia236_len); - ctx->pc += gen_addia236_len; - return pc; - } -void *compile_addia237(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia237, gen_addia237_len); - ctx->pc += gen_addia237_len; - return pc; - } -void *compile_addia238(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia238, gen_addia238_len); - ctx->pc += gen_addia238_len; - return pc; - } -void *compile_addia239(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia239, gen_addia239_len); - ctx->pc += gen_addia239_len; - return pc; - } -void *compile_addia24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia24, gen_addia24_len); - ctx->pc += gen_addia24_len; - return pc; - } -void *compile_addia240(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia240, gen_addia240_len); - ctx->pc += gen_addia240_len; - return pc; - } -void *compile_addia241(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia241, gen_addia241_len); - ctx->pc += gen_addia241_len; - return pc; - } -void *compile_addia242(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia242, gen_addia242_len); - ctx->pc += gen_addia242_len; - return pc; - } -void *compile_addia243(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia243, gen_addia243_len); - ctx->pc += gen_addia243_len; - return pc; - } -void *compile_addia244(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia244, gen_addia244_len); - ctx->pc += gen_addia244_len; - return pc; - } -void *compile_addia245(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia245, gen_addia245_len); - ctx->pc += gen_addia245_len; - return pc; - } -void *compile_addia246(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia246, gen_addia246_len); - ctx->pc += gen_addia246_len; - return pc; - } -void *compile_addia247(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia247, gen_addia247_len); - ctx->pc += gen_addia247_len; - return pc; - } -void *compile_addia248(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia248, gen_addia248_len); - ctx->pc += gen_addia248_len; - return pc; - } -void *compile_addia249(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia249, gen_addia249_len); - ctx->pc += gen_addia249_len; - return pc; - } -void *compile_addia25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia25, gen_addia25_len); - ctx->pc += gen_addia25_len; - return pc; - } -void *compile_addia250(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia250, gen_addia250_len); - ctx->pc += gen_addia250_len; - return pc; - } -void *compile_addia251(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia251, gen_addia251_len); - ctx->pc += gen_addia251_len; - return pc; - } -void *compile_addia252(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia252, gen_addia252_len); - ctx->pc += gen_addia252_len; - return pc; - } -void *compile_addia253(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia253, gen_addia253_len); - ctx->pc += gen_addia253_len; - return pc; - } -void *compile_addia254(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia254, gen_addia254_len); - ctx->pc += gen_addia254_len; - return pc; - } -void *compile_addia255(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia255, gen_addia255_len); - ctx->pc += gen_addia255_len; - return pc; - } -void *compile_addia26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia26, gen_addia26_len); - ctx->pc += gen_addia26_len; - return pc; - } -void *compile_addia27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia27, gen_addia27_len); - ctx->pc += gen_addia27_len; - return pc; - } -void *compile_addia28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia28, gen_addia28_len); - ctx->pc += gen_addia28_len; - return pc; - } -void *compile_addia29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia29, gen_addia29_len); - ctx->pc += gen_addia29_len; - return pc; - } -void *compile_addia3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia3, gen_addia3_len); - ctx->pc += gen_addia3_len; - return pc; - } -void *compile_addia30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia30, gen_addia30_len); - ctx->pc += gen_addia30_len; - return pc; - } -void *compile_addia31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia31, gen_addia31_len); - ctx->pc += gen_addia31_len; - return pc; - } -void *compile_addia32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia32, gen_addia32_len); - ctx->pc += gen_addia32_len; - return pc; - } -void *compile_addia33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia33, gen_addia33_len); - ctx->pc += gen_addia33_len; - return pc; - } -void *compile_addia34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia34, gen_addia34_len); - ctx->pc += gen_addia34_len; - return pc; - } -void *compile_addia35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia35, gen_addia35_len); - ctx->pc += gen_addia35_len; - return pc; - } -void *compile_addia36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia36, gen_addia36_len); - ctx->pc += gen_addia36_len; - return pc; - } -void *compile_addia37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia37, gen_addia37_len); - ctx->pc += gen_addia37_len; - return pc; - } -void *compile_addia38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia38, gen_addia38_len); - ctx->pc += gen_addia38_len; - return pc; - } -void *compile_addia39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia39, gen_addia39_len); - ctx->pc += gen_addia39_len; - return pc; - } -void *compile_addia4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia4, gen_addia4_len); - ctx->pc += gen_addia4_len; - return pc; - } -void *compile_addia40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia40, gen_addia40_len); - ctx->pc += gen_addia40_len; - return pc; - } -void *compile_addia41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia41, gen_addia41_len); - ctx->pc += gen_addia41_len; - return pc; - } -void *compile_addia42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia42, gen_addia42_len); - ctx->pc += gen_addia42_len; - return pc; - } -void *compile_addia43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia43, gen_addia43_len); - ctx->pc += gen_addia43_len; - return pc; - } -void *compile_addia44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia44, gen_addia44_len); - ctx->pc += gen_addia44_len; - return pc; - } -void *compile_addia45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia45, gen_addia45_len); - ctx->pc += gen_addia45_len; - return pc; - } -void *compile_addia46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia46, gen_addia46_len); - ctx->pc += gen_addia46_len; - return pc; - } -void *compile_addia47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia47, gen_addia47_len); - ctx->pc += gen_addia47_len; - return pc; - } -void *compile_addia48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia48, gen_addia48_len); - ctx->pc += gen_addia48_len; - return pc; - } -void *compile_addia49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia49, gen_addia49_len); - ctx->pc += gen_addia49_len; - return pc; - } -void *compile_addia5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia5, gen_addia5_len); - ctx->pc += gen_addia5_len; - return pc; - } -void *compile_addia50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia50, gen_addia50_len); - ctx->pc += gen_addia50_len; - return pc; - } -void *compile_addia51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia51, gen_addia51_len); - ctx->pc += gen_addia51_len; - return pc; - } -void *compile_addia52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia52, gen_addia52_len); - ctx->pc += gen_addia52_len; - return pc; - } -void *compile_addia53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia53, gen_addia53_len); - ctx->pc += gen_addia53_len; - return pc; - } -void *compile_addia54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia54, gen_addia54_len); - ctx->pc += gen_addia54_len; - return pc; - } -void *compile_addia55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia55, gen_addia55_len); - ctx->pc += gen_addia55_len; - return pc; - } -void *compile_addia56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia56, gen_addia56_len); - ctx->pc += gen_addia56_len; - return pc; - } -void *compile_addia57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia57, gen_addia57_len); - ctx->pc += gen_addia57_len; - return pc; - } -void *compile_addia58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia58, gen_addia58_len); - ctx->pc += gen_addia58_len; - return pc; - } -void *compile_addia59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia59, gen_addia59_len); - ctx->pc += gen_addia59_len; - return pc; - } -void *compile_addia6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia6, gen_addia6_len); - ctx->pc += gen_addia6_len; - return pc; - } -void *compile_addia60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia60, gen_addia60_len); - ctx->pc += gen_addia60_len; - return pc; - } -void *compile_addia61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia61, gen_addia61_len); - ctx->pc += gen_addia61_len; - return pc; - } -void *compile_addia62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia62, gen_addia62_len); - ctx->pc += gen_addia62_len; - return pc; - } -void *compile_addia63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia63, gen_addia63_len); - ctx->pc += gen_addia63_len; - return pc; - } -void *compile_addia64(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia64, gen_addia64_len); - ctx->pc += gen_addia64_len; - return pc; - } -void *compile_addia65(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia65, gen_addia65_len); - ctx->pc += gen_addia65_len; - return pc; - } -void *compile_addia66(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia66, gen_addia66_len); - ctx->pc += gen_addia66_len; - return pc; - } -void *compile_addia67(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia67, gen_addia67_len); - ctx->pc += gen_addia67_len; - return pc; - } -void *compile_addia68(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia68, gen_addia68_len); - ctx->pc += gen_addia68_len; - return pc; - } -void *compile_addia69(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia69, gen_addia69_len); - ctx->pc += gen_addia69_len; - return pc; - } -void *compile_addia7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia7, gen_addia7_len); - ctx->pc += gen_addia7_len; - return pc; - } -void *compile_addia70(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia70, gen_addia70_len); - ctx->pc += gen_addia70_len; - return pc; - } -void *compile_addia71(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia71, gen_addia71_len); - ctx->pc += gen_addia71_len; - return pc; - } -void *compile_addia72(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia72, gen_addia72_len); - ctx->pc += gen_addia72_len; - return pc; - } -void *compile_addia73(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia73, gen_addia73_len); - ctx->pc += gen_addia73_len; - return pc; - } -void *compile_addia74(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia74, gen_addia74_len); - ctx->pc += gen_addia74_len; - return pc; - } -void *compile_addia75(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia75, gen_addia75_len); - ctx->pc += gen_addia75_len; - return pc; - } -void *compile_addia76(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia76, gen_addia76_len); - ctx->pc += gen_addia76_len; - return pc; - } -void *compile_addia77(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia77, gen_addia77_len); - ctx->pc += gen_addia77_len; - return pc; - } -void *compile_addia78(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia78, gen_addia78_len); - ctx->pc += gen_addia78_len; - return pc; - } -void *compile_addia79(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia79, gen_addia79_len); - ctx->pc += gen_addia79_len; - return pc; - } -void *compile_addia8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia8, gen_addia8_len); - ctx->pc += gen_addia8_len; - return pc; - } -void *compile_addia80(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia80, gen_addia80_len); - ctx->pc += gen_addia80_len; - return pc; - } -void *compile_addia81(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia81, gen_addia81_len); - ctx->pc += gen_addia81_len; - return pc; - } -void *compile_addia82(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia82, gen_addia82_len); - ctx->pc += gen_addia82_len; - return pc; - } -void *compile_addia83(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia83, gen_addia83_len); - ctx->pc += gen_addia83_len; - return pc; - } -void *compile_addia84(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia84, gen_addia84_len); - ctx->pc += gen_addia84_len; - return pc; - } -void *compile_addia85(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia85, gen_addia85_len); - ctx->pc += gen_addia85_len; - return pc; - } -void *compile_addia86(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia86, gen_addia86_len); - ctx->pc += gen_addia86_len; - return pc; - } -void *compile_addia87(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia87, gen_addia87_len); - ctx->pc += gen_addia87_len; - return pc; - } -void *compile_addia88(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia88, gen_addia88_len); - ctx->pc += gen_addia88_len; - return pc; - } -void *compile_addia89(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia89, gen_addia89_len); - ctx->pc += gen_addia89_len; - return pc; - } -void *compile_addia9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia9, gen_addia9_len); - ctx->pc += gen_addia9_len; - return pc; - } -void *compile_addia90(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia90, gen_addia90_len); - ctx->pc += gen_addia90_len; - return pc; - } -void *compile_addia91(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia91, gen_addia91_len); - ctx->pc += gen_addia91_len; - return pc; - } -void *compile_addia92(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia92, gen_addia92_len); - ctx->pc += gen_addia92_len; - return pc; - } -void *compile_addia93(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia93, gen_addia93_len); - ctx->pc += gen_addia93_len; - return pc; - } -void *compile_addia94(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia94, gen_addia94_len); - ctx->pc += gen_addia94_len; - return pc; - } -void *compile_addia95(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia95, gen_addia95_len); - ctx->pc += gen_addia95_len; - return pc; - } -void *compile_addia96(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia96, gen_addia96_len); - ctx->pc += gen_addia96_len; - return pc; - } -void *compile_addia97(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia97, gen_addia97_len); - ctx->pc += gen_addia97_len; - return pc; - } -void *compile_addia98(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia98, gen_addia98_len); - ctx->pc += gen_addia98_len; - return pc; - } -void *compile_addia99(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addia99, gen_addia99_len); - ctx->pc += gen_addia99_len; - return pc; - } -void *compile_addio0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio0, gen_addio0_len); - ctx->pc += gen_addio0_len; - return pc; - } -void *compile_addio1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio1, gen_addio1_len); - ctx->pc += gen_addio1_len; - return pc; - } -void *compile_addio10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio10, gen_addio10_len); - ctx->pc += gen_addio10_len; - return pc; - } -void *compile_addio100(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio100, gen_addio100_len); - ctx->pc += gen_addio100_len; - return pc; - } -void *compile_addio101(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio101, gen_addio101_len); - ctx->pc += gen_addio101_len; - return pc; - } -void *compile_addio102(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio102, gen_addio102_len); - ctx->pc += gen_addio102_len; - return pc; - } -void *compile_addio103(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio103, gen_addio103_len); - ctx->pc += gen_addio103_len; - return pc; - } -void *compile_addio104(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio104, gen_addio104_len); - ctx->pc += gen_addio104_len; - return pc; - } -void *compile_addio105(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio105, gen_addio105_len); - ctx->pc += gen_addio105_len; - return pc; - } -void *compile_addio106(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio106, gen_addio106_len); - ctx->pc += gen_addio106_len; - return pc; - } -void *compile_addio107(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio107, gen_addio107_len); - ctx->pc += gen_addio107_len; - return pc; - } -void *compile_addio108(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio108, gen_addio108_len); - ctx->pc += gen_addio108_len; - return pc; - } -void *compile_addio109(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio109, gen_addio109_len); - ctx->pc += gen_addio109_len; - return pc; - } -void *compile_addio11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio11, gen_addio11_len); - ctx->pc += gen_addio11_len; - return pc; - } -void *compile_addio110(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio110, gen_addio110_len); - ctx->pc += gen_addio110_len; - return pc; - } -void *compile_addio111(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio111, gen_addio111_len); - ctx->pc += gen_addio111_len; - return pc; - } -void *compile_addio112(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio112, gen_addio112_len); - ctx->pc += gen_addio112_len; - return pc; - } -void *compile_addio113(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio113, gen_addio113_len); - ctx->pc += gen_addio113_len; - return pc; - } -void *compile_addio114(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio114, gen_addio114_len); - ctx->pc += gen_addio114_len; - return pc; - } -void *compile_addio115(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio115, gen_addio115_len); - ctx->pc += gen_addio115_len; - return pc; - } -void *compile_addio116(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio116, gen_addio116_len); - ctx->pc += gen_addio116_len; - return pc; - } -void *compile_addio117(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio117, gen_addio117_len); - ctx->pc += gen_addio117_len; - return pc; - } -void *compile_addio118(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio118, gen_addio118_len); - ctx->pc += gen_addio118_len; - return pc; - } -void *compile_addio119(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio119, gen_addio119_len); - ctx->pc += gen_addio119_len; - return pc; - } -void *compile_addio12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio12, gen_addio12_len); - ctx->pc += gen_addio12_len; - return pc; - } -void *compile_addio120(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio120, gen_addio120_len); - ctx->pc += gen_addio120_len; - return pc; - } -void *compile_addio121(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio121, gen_addio121_len); - ctx->pc += gen_addio121_len; - return pc; - } -void *compile_addio122(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio122, gen_addio122_len); - ctx->pc += gen_addio122_len; - return pc; - } -void *compile_addio123(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio123, gen_addio123_len); - ctx->pc += gen_addio123_len; - return pc; - } -void *compile_addio124(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio124, gen_addio124_len); - ctx->pc += gen_addio124_len; - return pc; - } -void *compile_addio125(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio125, gen_addio125_len); - ctx->pc += gen_addio125_len; - return pc; - } -void *compile_addio126(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio126, gen_addio126_len); - ctx->pc += gen_addio126_len; - return pc; - } -void *compile_addio127(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio127, gen_addio127_len); - ctx->pc += gen_addio127_len; - return pc; - } -void *compile_addio128(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio128, gen_addio128_len); - ctx->pc += gen_addio128_len; - return pc; - } -void *compile_addio129(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio129, gen_addio129_len); - ctx->pc += gen_addio129_len; - return pc; - } -void *compile_addio13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio13, gen_addio13_len); - ctx->pc += gen_addio13_len; - return pc; - } -void *compile_addio130(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio130, gen_addio130_len); - ctx->pc += gen_addio130_len; - return pc; - } -void *compile_addio131(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio131, gen_addio131_len); - ctx->pc += gen_addio131_len; - return pc; - } -void *compile_addio132(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio132, gen_addio132_len); - ctx->pc += gen_addio132_len; - return pc; - } -void *compile_addio133(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio133, gen_addio133_len); - ctx->pc += gen_addio133_len; - return pc; - } -void *compile_addio134(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio134, gen_addio134_len); - ctx->pc += gen_addio134_len; - return pc; - } -void *compile_addio135(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio135, gen_addio135_len); - ctx->pc += gen_addio135_len; - return pc; - } -void *compile_addio136(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio136, gen_addio136_len); - ctx->pc += gen_addio136_len; - return pc; - } -void *compile_addio137(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio137, gen_addio137_len); - ctx->pc += gen_addio137_len; - return pc; - } -void *compile_addio138(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio138, gen_addio138_len); - ctx->pc += gen_addio138_len; - return pc; - } -void *compile_addio139(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio139, gen_addio139_len); - ctx->pc += gen_addio139_len; - return pc; - } -void *compile_addio14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio14, gen_addio14_len); - ctx->pc += gen_addio14_len; - return pc; - } -void *compile_addio140(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio140, gen_addio140_len); - ctx->pc += gen_addio140_len; - return pc; - } -void *compile_addio141(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio141, gen_addio141_len); - ctx->pc += gen_addio141_len; - return pc; - } -void *compile_addio142(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio142, gen_addio142_len); - ctx->pc += gen_addio142_len; - return pc; - } -void *compile_addio143(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio143, gen_addio143_len); - ctx->pc += gen_addio143_len; - return pc; - } -void *compile_addio144(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio144, gen_addio144_len); - ctx->pc += gen_addio144_len; - return pc; - } -void *compile_addio145(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio145, gen_addio145_len); - ctx->pc += gen_addio145_len; - return pc; - } -void *compile_addio146(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio146, gen_addio146_len); - ctx->pc += gen_addio146_len; - return pc; - } -void *compile_addio147(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio147, gen_addio147_len); - ctx->pc += gen_addio147_len; - return pc; - } -void *compile_addio148(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio148, gen_addio148_len); - ctx->pc += gen_addio148_len; - return pc; - } -void *compile_addio149(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio149, gen_addio149_len); - ctx->pc += gen_addio149_len; - return pc; - } -void *compile_addio15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio15, gen_addio15_len); - ctx->pc += gen_addio15_len; - return pc; - } -void *compile_addio150(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio150, gen_addio150_len); - ctx->pc += gen_addio150_len; - return pc; - } -void *compile_addio151(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio151, gen_addio151_len); - ctx->pc += gen_addio151_len; - return pc; - } -void *compile_addio152(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio152, gen_addio152_len); - ctx->pc += gen_addio152_len; - return pc; - } -void *compile_addio153(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio153, gen_addio153_len); - ctx->pc += gen_addio153_len; - return pc; - } -void *compile_addio154(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio154, gen_addio154_len); - ctx->pc += gen_addio154_len; - return pc; - } -void *compile_addio155(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio155, gen_addio155_len); - ctx->pc += gen_addio155_len; - return pc; - } -void *compile_addio156(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio156, gen_addio156_len); - ctx->pc += gen_addio156_len; - return pc; - } -void *compile_addio157(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio157, gen_addio157_len); - ctx->pc += gen_addio157_len; - return pc; - } -void *compile_addio158(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio158, gen_addio158_len); - ctx->pc += gen_addio158_len; - return pc; - } -void *compile_addio159(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio159, gen_addio159_len); - ctx->pc += gen_addio159_len; - return pc; - } -void *compile_addio16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio16, gen_addio16_len); - ctx->pc += gen_addio16_len; - return pc; - } -void *compile_addio160(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio160, gen_addio160_len); - ctx->pc += gen_addio160_len; - return pc; - } -void *compile_addio161(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio161, gen_addio161_len); - ctx->pc += gen_addio161_len; - return pc; - } -void *compile_addio162(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio162, gen_addio162_len); - ctx->pc += gen_addio162_len; - return pc; - } -void *compile_addio163(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio163, gen_addio163_len); - ctx->pc += gen_addio163_len; - return pc; - } -void *compile_addio164(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio164, gen_addio164_len); - ctx->pc += gen_addio164_len; - return pc; - } -void *compile_addio165(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio165, gen_addio165_len); - ctx->pc += gen_addio165_len; - return pc; - } -void *compile_addio166(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio166, gen_addio166_len); - ctx->pc += gen_addio166_len; - return pc; - } -void *compile_addio167(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio167, gen_addio167_len); - ctx->pc += gen_addio167_len; - return pc; - } -void *compile_addio168(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio168, gen_addio168_len); - ctx->pc += gen_addio168_len; - return pc; - } -void *compile_addio169(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio169, gen_addio169_len); - ctx->pc += gen_addio169_len; - return pc; - } -void *compile_addio17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio17, gen_addio17_len); - ctx->pc += gen_addio17_len; - return pc; - } -void *compile_addio170(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio170, gen_addio170_len); - ctx->pc += gen_addio170_len; - return pc; - } -void *compile_addio171(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio171, gen_addio171_len); - ctx->pc += gen_addio171_len; - return pc; - } -void *compile_addio172(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio172, gen_addio172_len); - ctx->pc += gen_addio172_len; - return pc; - } -void *compile_addio173(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio173, gen_addio173_len); - ctx->pc += gen_addio173_len; - return pc; - } -void *compile_addio174(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio174, gen_addio174_len); - ctx->pc += gen_addio174_len; - return pc; - } -void *compile_addio175(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio175, gen_addio175_len); - ctx->pc += gen_addio175_len; - return pc; - } -void *compile_addio176(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio176, gen_addio176_len); - ctx->pc += gen_addio176_len; - return pc; - } -void *compile_addio177(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio177, gen_addio177_len); - ctx->pc += gen_addio177_len; - return pc; - } -void *compile_addio178(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio178, gen_addio178_len); - ctx->pc += gen_addio178_len; - return pc; - } -void *compile_addio179(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio179, gen_addio179_len); - ctx->pc += gen_addio179_len; - return pc; - } -void *compile_addio18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio18, gen_addio18_len); - ctx->pc += gen_addio18_len; - return pc; - } -void *compile_addio180(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio180, gen_addio180_len); - ctx->pc += gen_addio180_len; - return pc; - } -void *compile_addio181(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio181, gen_addio181_len); - ctx->pc += gen_addio181_len; - return pc; - } -void *compile_addio182(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio182, gen_addio182_len); - ctx->pc += gen_addio182_len; - return pc; - } -void *compile_addio183(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio183, gen_addio183_len); - ctx->pc += gen_addio183_len; - return pc; - } -void *compile_addio184(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio184, gen_addio184_len); - ctx->pc += gen_addio184_len; - return pc; - } -void *compile_addio185(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio185, gen_addio185_len); - ctx->pc += gen_addio185_len; - return pc; - } -void *compile_addio186(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio186, gen_addio186_len); - ctx->pc += gen_addio186_len; - return pc; - } -void *compile_addio187(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio187, gen_addio187_len); - ctx->pc += gen_addio187_len; - return pc; - } -void *compile_addio188(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio188, gen_addio188_len); - ctx->pc += gen_addio188_len; - return pc; - } -void *compile_addio189(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio189, gen_addio189_len); - ctx->pc += gen_addio189_len; - return pc; - } -void *compile_addio19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio19, gen_addio19_len); - ctx->pc += gen_addio19_len; - return pc; - } -void *compile_addio190(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio190, gen_addio190_len); - ctx->pc += gen_addio190_len; - return pc; - } -void *compile_addio191(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio191, gen_addio191_len); - ctx->pc += gen_addio191_len; - return pc; - } -void *compile_addio192(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio192, gen_addio192_len); - ctx->pc += gen_addio192_len; - return pc; - } -void *compile_addio193(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio193, gen_addio193_len); - ctx->pc += gen_addio193_len; - return pc; - } -void *compile_addio194(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio194, gen_addio194_len); - ctx->pc += gen_addio194_len; - return pc; - } -void *compile_addio195(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio195, gen_addio195_len); - ctx->pc += gen_addio195_len; - return pc; - } -void *compile_addio196(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio196, gen_addio196_len); - ctx->pc += gen_addio196_len; - return pc; - } -void *compile_addio197(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio197, gen_addio197_len); - ctx->pc += gen_addio197_len; - return pc; - } -void *compile_addio198(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio198, gen_addio198_len); - ctx->pc += gen_addio198_len; - return pc; - } -void *compile_addio199(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio199, gen_addio199_len); - ctx->pc += gen_addio199_len; - return pc; - } -void *compile_addio2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio2, gen_addio2_len); - ctx->pc += gen_addio2_len; - return pc; - } -void *compile_addio20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio20, gen_addio20_len); - ctx->pc += gen_addio20_len; - return pc; - } -void *compile_addio200(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio200, gen_addio200_len); - ctx->pc += gen_addio200_len; - return pc; - } -void *compile_addio201(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio201, gen_addio201_len); - ctx->pc += gen_addio201_len; - return pc; - } -void *compile_addio202(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio202, gen_addio202_len); - ctx->pc += gen_addio202_len; - return pc; - } -void *compile_addio203(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio203, gen_addio203_len); - ctx->pc += gen_addio203_len; - return pc; - } -void *compile_addio204(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio204, gen_addio204_len); - ctx->pc += gen_addio204_len; - return pc; - } -void *compile_addio205(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio205, gen_addio205_len); - ctx->pc += gen_addio205_len; - return pc; - } -void *compile_addio206(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio206, gen_addio206_len); - ctx->pc += gen_addio206_len; - return pc; - } -void *compile_addio207(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio207, gen_addio207_len); - ctx->pc += gen_addio207_len; - return pc; - } -void *compile_addio208(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio208, gen_addio208_len); - ctx->pc += gen_addio208_len; - return pc; - } -void *compile_addio209(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio209, gen_addio209_len); - ctx->pc += gen_addio209_len; - return pc; - } -void *compile_addio21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio21, gen_addio21_len); - ctx->pc += gen_addio21_len; - return pc; - } -void *compile_addio210(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio210, gen_addio210_len); - ctx->pc += gen_addio210_len; - return pc; - } -void *compile_addio211(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio211, gen_addio211_len); - ctx->pc += gen_addio211_len; - return pc; - } -void *compile_addio212(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio212, gen_addio212_len); - ctx->pc += gen_addio212_len; - return pc; - } -void *compile_addio213(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio213, gen_addio213_len); - ctx->pc += gen_addio213_len; - return pc; - } -void *compile_addio214(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio214, gen_addio214_len); - ctx->pc += gen_addio214_len; - return pc; - } -void *compile_addio215(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio215, gen_addio215_len); - ctx->pc += gen_addio215_len; - return pc; - } -void *compile_addio216(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio216, gen_addio216_len); - ctx->pc += gen_addio216_len; - return pc; - } -void *compile_addio217(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio217, gen_addio217_len); - ctx->pc += gen_addio217_len; - return pc; - } -void *compile_addio218(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio218, gen_addio218_len); - ctx->pc += gen_addio218_len; - return pc; - } -void *compile_addio219(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio219, gen_addio219_len); - ctx->pc += gen_addio219_len; - return pc; - } -void *compile_addio22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio22, gen_addio22_len); - ctx->pc += gen_addio22_len; - return pc; - } -void *compile_addio220(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio220, gen_addio220_len); - ctx->pc += gen_addio220_len; - return pc; - } -void *compile_addio221(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio221, gen_addio221_len); - ctx->pc += gen_addio221_len; - return pc; - } -void *compile_addio222(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio222, gen_addio222_len); - ctx->pc += gen_addio222_len; - return pc; - } -void *compile_addio223(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio223, gen_addio223_len); - ctx->pc += gen_addio223_len; - return pc; - } -void *compile_addio224(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio224, gen_addio224_len); - ctx->pc += gen_addio224_len; - return pc; - } -void *compile_addio225(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio225, gen_addio225_len); - ctx->pc += gen_addio225_len; - return pc; - } -void *compile_addio226(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio226, gen_addio226_len); - ctx->pc += gen_addio226_len; - return pc; - } -void *compile_addio227(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio227, gen_addio227_len); - ctx->pc += gen_addio227_len; - return pc; - } -void *compile_addio228(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio228, gen_addio228_len); - ctx->pc += gen_addio228_len; - return pc; - } -void *compile_addio229(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio229, gen_addio229_len); - ctx->pc += gen_addio229_len; - return pc; - } -void *compile_addio23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio23, gen_addio23_len); - ctx->pc += gen_addio23_len; - return pc; - } -void *compile_addio230(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio230, gen_addio230_len); - ctx->pc += gen_addio230_len; - return pc; - } -void *compile_addio231(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio231, gen_addio231_len); - ctx->pc += gen_addio231_len; - return pc; - } -void *compile_addio232(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio232, gen_addio232_len); - ctx->pc += gen_addio232_len; - return pc; - } -void *compile_addio233(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio233, gen_addio233_len); - ctx->pc += gen_addio233_len; - return pc; - } -void *compile_addio234(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio234, gen_addio234_len); - ctx->pc += gen_addio234_len; - return pc; - } -void *compile_addio235(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio235, gen_addio235_len); - ctx->pc += gen_addio235_len; - return pc; - } -void *compile_addio236(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio236, gen_addio236_len); - ctx->pc += gen_addio236_len; - return pc; - } -void *compile_addio237(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio237, gen_addio237_len); - ctx->pc += gen_addio237_len; - return pc; - } -void *compile_addio238(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio238, gen_addio238_len); - ctx->pc += gen_addio238_len; - return pc; - } -void *compile_addio239(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio239, gen_addio239_len); - ctx->pc += gen_addio239_len; - return pc; - } -void *compile_addio24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio24, gen_addio24_len); - ctx->pc += gen_addio24_len; - return pc; - } -void *compile_addio240(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio240, gen_addio240_len); - ctx->pc += gen_addio240_len; - return pc; - } -void *compile_addio241(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio241, gen_addio241_len); - ctx->pc += gen_addio241_len; - return pc; - } -void *compile_addio242(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio242, gen_addio242_len); - ctx->pc += gen_addio242_len; - return pc; - } -void *compile_addio243(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio243, gen_addio243_len); - ctx->pc += gen_addio243_len; - return pc; - } -void *compile_addio244(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio244, gen_addio244_len); - ctx->pc += gen_addio244_len; - return pc; - } -void *compile_addio245(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio245, gen_addio245_len); - ctx->pc += gen_addio245_len; - return pc; - } -void *compile_addio246(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio246, gen_addio246_len); - ctx->pc += gen_addio246_len; - return pc; - } -void *compile_addio247(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio247, gen_addio247_len); - ctx->pc += gen_addio247_len; - return pc; - } -void *compile_addio248(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio248, gen_addio248_len); - ctx->pc += gen_addio248_len; - return pc; - } -void *compile_addio249(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio249, gen_addio249_len); - ctx->pc += gen_addio249_len; - return pc; - } -void *compile_addio25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio25, gen_addio25_len); - ctx->pc += gen_addio25_len; - return pc; - } -void *compile_addio250(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio250, gen_addio250_len); - ctx->pc += gen_addio250_len; - return pc; - } -void *compile_addio251(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio251, gen_addio251_len); - ctx->pc += gen_addio251_len; - return pc; - } -void *compile_addio252(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio252, gen_addio252_len); - ctx->pc += gen_addio252_len; - return pc; - } -void *compile_addio253(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio253, gen_addio253_len); - ctx->pc += gen_addio253_len; - return pc; - } -void *compile_addio254(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio254, gen_addio254_len); - ctx->pc += gen_addio254_len; - return pc; - } -void *compile_addio255(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio255, gen_addio255_len); - ctx->pc += gen_addio255_len; - return pc; - } -void *compile_addio26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio26, gen_addio26_len); - ctx->pc += gen_addio26_len; - return pc; - } -void *compile_addio27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio27, gen_addio27_len); - ctx->pc += gen_addio27_len; - return pc; - } -void *compile_addio28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio28, gen_addio28_len); - ctx->pc += gen_addio28_len; - return pc; - } -void *compile_addio29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio29, gen_addio29_len); - ctx->pc += gen_addio29_len; - return pc; - } -void *compile_addio3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio3, gen_addio3_len); - ctx->pc += gen_addio3_len; - return pc; - } -void *compile_addio30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio30, gen_addio30_len); - ctx->pc += gen_addio30_len; - return pc; - } -void *compile_addio31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio31, gen_addio31_len); - ctx->pc += gen_addio31_len; - return pc; - } -void *compile_addio32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio32, gen_addio32_len); - ctx->pc += gen_addio32_len; - return pc; - } -void *compile_addio33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio33, gen_addio33_len); - ctx->pc += gen_addio33_len; - return pc; - } -void *compile_addio34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio34, gen_addio34_len); - ctx->pc += gen_addio34_len; - return pc; - } -void *compile_addio35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio35, gen_addio35_len); - ctx->pc += gen_addio35_len; - return pc; - } -void *compile_addio36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio36, gen_addio36_len); - ctx->pc += gen_addio36_len; - return pc; - } -void *compile_addio37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio37, gen_addio37_len); - ctx->pc += gen_addio37_len; - return pc; - } -void *compile_addio38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio38, gen_addio38_len); - ctx->pc += gen_addio38_len; - return pc; - } -void *compile_addio39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio39, gen_addio39_len); - ctx->pc += gen_addio39_len; - return pc; - } -void *compile_addio4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio4, gen_addio4_len); - ctx->pc += gen_addio4_len; - return pc; - } -void *compile_addio40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio40, gen_addio40_len); - ctx->pc += gen_addio40_len; - return pc; - } -void *compile_addio41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio41, gen_addio41_len); - ctx->pc += gen_addio41_len; - return pc; - } -void *compile_addio42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio42, gen_addio42_len); - ctx->pc += gen_addio42_len; - return pc; - } -void *compile_addio43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio43, gen_addio43_len); - ctx->pc += gen_addio43_len; - return pc; - } -void *compile_addio44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio44, gen_addio44_len); - ctx->pc += gen_addio44_len; - return pc; - } -void *compile_addio45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio45, gen_addio45_len); - ctx->pc += gen_addio45_len; - return pc; - } -void *compile_addio46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio46, gen_addio46_len); - ctx->pc += gen_addio46_len; - return pc; - } -void *compile_addio47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio47, gen_addio47_len); - ctx->pc += gen_addio47_len; - return pc; - } -void *compile_addio48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio48, gen_addio48_len); - ctx->pc += gen_addio48_len; - return pc; - } -void *compile_addio49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio49, gen_addio49_len); - ctx->pc += gen_addio49_len; - return pc; - } -void *compile_addio5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio5, gen_addio5_len); - ctx->pc += gen_addio5_len; - return pc; - } -void *compile_addio50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio50, gen_addio50_len); - ctx->pc += gen_addio50_len; - return pc; - } -void *compile_addio51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio51, gen_addio51_len); - ctx->pc += gen_addio51_len; - return pc; - } -void *compile_addio52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio52, gen_addio52_len); - ctx->pc += gen_addio52_len; - return pc; - } -void *compile_addio53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio53, gen_addio53_len); - ctx->pc += gen_addio53_len; - return pc; - } -void *compile_addio54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio54, gen_addio54_len); - ctx->pc += gen_addio54_len; - return pc; - } -void *compile_addio55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio55, gen_addio55_len); - ctx->pc += gen_addio55_len; - return pc; - } -void *compile_addio56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio56, gen_addio56_len); - ctx->pc += gen_addio56_len; - return pc; - } -void *compile_addio57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio57, gen_addio57_len); - ctx->pc += gen_addio57_len; - return pc; - } -void *compile_addio58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio58, gen_addio58_len); - ctx->pc += gen_addio58_len; - return pc; - } -void *compile_addio59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio59, gen_addio59_len); - ctx->pc += gen_addio59_len; - return pc; - } -void *compile_addio6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio6, gen_addio6_len); - ctx->pc += gen_addio6_len; - return pc; - } -void *compile_addio60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio60, gen_addio60_len); - ctx->pc += gen_addio60_len; - return pc; - } -void *compile_addio61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio61, gen_addio61_len); - ctx->pc += gen_addio61_len; - return pc; - } -void *compile_addio62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio62, gen_addio62_len); - ctx->pc += gen_addio62_len; - return pc; - } -void *compile_addio63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio63, gen_addio63_len); - ctx->pc += gen_addio63_len; - return pc; - } -void *compile_addio64(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio64, gen_addio64_len); - ctx->pc += gen_addio64_len; - return pc; - } -void *compile_addio65(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio65, gen_addio65_len); - ctx->pc += gen_addio65_len; - return pc; - } -void *compile_addio66(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio66, gen_addio66_len); - ctx->pc += gen_addio66_len; - return pc; - } -void *compile_addio67(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio67, gen_addio67_len); - ctx->pc += gen_addio67_len; - return pc; - } -void *compile_addio68(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio68, gen_addio68_len); - ctx->pc += gen_addio68_len; - return pc; - } -void *compile_addio69(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio69, gen_addio69_len); - ctx->pc += gen_addio69_len; - return pc; - } -void *compile_addio7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio7, gen_addio7_len); - ctx->pc += gen_addio7_len; - return pc; - } -void *compile_addio70(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio70, gen_addio70_len); - ctx->pc += gen_addio70_len; - return pc; - } -void *compile_addio71(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio71, gen_addio71_len); - ctx->pc += gen_addio71_len; - return pc; - } -void *compile_addio72(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio72, gen_addio72_len); - ctx->pc += gen_addio72_len; - return pc; - } -void *compile_addio73(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio73, gen_addio73_len); - ctx->pc += gen_addio73_len; - return pc; - } -void *compile_addio74(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio74, gen_addio74_len); - ctx->pc += gen_addio74_len; - return pc; - } -void *compile_addio75(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio75, gen_addio75_len); - ctx->pc += gen_addio75_len; - return pc; - } -void *compile_addio76(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio76, gen_addio76_len); - ctx->pc += gen_addio76_len; - return pc; - } -void *compile_addio77(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio77, gen_addio77_len); - ctx->pc += gen_addio77_len; - return pc; - } -void *compile_addio78(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio78, gen_addio78_len); - ctx->pc += gen_addio78_len; - return pc; - } -void *compile_addio79(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio79, gen_addio79_len); - ctx->pc += gen_addio79_len; - return pc; - } -void *compile_addio8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio8, gen_addio8_len); - ctx->pc += gen_addio8_len; - return pc; - } -void *compile_addio80(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio80, gen_addio80_len); - ctx->pc += gen_addio80_len; - return pc; - } -void *compile_addio81(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio81, gen_addio81_len); - ctx->pc += gen_addio81_len; - return pc; - } -void *compile_addio82(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio82, gen_addio82_len); - ctx->pc += gen_addio82_len; - return pc; - } -void *compile_addio83(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio83, gen_addio83_len); - ctx->pc += gen_addio83_len; - return pc; - } -void *compile_addio84(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio84, gen_addio84_len); - ctx->pc += gen_addio84_len; - return pc; - } -void *compile_addio85(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio85, gen_addio85_len); - ctx->pc += gen_addio85_len; - return pc; - } -void *compile_addio86(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio86, gen_addio86_len); - ctx->pc += gen_addio86_len; - return pc; - } -void *compile_addio87(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio87, gen_addio87_len); - ctx->pc += gen_addio87_len; - return pc; - } -void *compile_addio88(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio88, gen_addio88_len); - ctx->pc += gen_addio88_len; - return pc; - } -void *compile_addio89(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio89, gen_addio89_len); - ctx->pc += gen_addio89_len; - return pc; - } -void *compile_addio9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio9, gen_addio9_len); - ctx->pc += gen_addio9_len; - return pc; - } -void *compile_addio90(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio90, gen_addio90_len); - ctx->pc += gen_addio90_len; - return pc; - } -void *compile_addio91(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio91, gen_addio91_len); - ctx->pc += gen_addio91_len; - return pc; - } -void *compile_addio92(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio92, gen_addio92_len); - ctx->pc += gen_addio92_len; - return pc; - } -void *compile_addio93(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio93, gen_addio93_len); - ctx->pc += gen_addio93_len; - return pc; - } -void *compile_addio94(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio94, gen_addio94_len); - ctx->pc += gen_addio94_len; - return pc; - } -void *compile_addio95(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio95, gen_addio95_len); - ctx->pc += gen_addio95_len; - return pc; - } -void *compile_addio96(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio96, gen_addio96_len); - ctx->pc += gen_addio96_len; - return pc; - } -void *compile_addio97(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio97, gen_addio97_len); - ctx->pc += gen_addio97_len; - return pc; - } -void *compile_addio98(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio98, gen_addio98_len); - ctx->pc += gen_addio98_len; - return pc; - } -void *compile_addio99(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addio99, gen_addio99_len); - ctx->pc += gen_addio99_len; - return pc; - } -void *compile_addix0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix0, gen_addix0_len); - ctx->pc += gen_addix0_len; - return pc; - } -void *compile_addix1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix1, gen_addix1_len); - ctx->pc += gen_addix1_len; - return pc; - } -void *compile_addix10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix10, gen_addix10_len); - ctx->pc += gen_addix10_len; - return pc; - } -void *compile_addix100(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix100, gen_addix100_len); - ctx->pc += gen_addix100_len; - return pc; - } -void *compile_addix101(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix101, gen_addix101_len); - ctx->pc += gen_addix101_len; - return pc; - } -void *compile_addix102(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix102, gen_addix102_len); - ctx->pc += gen_addix102_len; - return pc; - } -void *compile_addix103(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix103, gen_addix103_len); - ctx->pc += gen_addix103_len; - return pc; - } -void *compile_addix104(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix104, gen_addix104_len); - ctx->pc += gen_addix104_len; - return pc; - } -void *compile_addix105(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix105, gen_addix105_len); - ctx->pc += gen_addix105_len; - return pc; - } -void *compile_addix106(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix106, gen_addix106_len); - ctx->pc += gen_addix106_len; - return pc; - } -void *compile_addix107(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix107, gen_addix107_len); - ctx->pc += gen_addix107_len; - return pc; - } -void *compile_addix108(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix108, gen_addix108_len); - ctx->pc += gen_addix108_len; - return pc; - } -void *compile_addix109(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix109, gen_addix109_len); - ctx->pc += gen_addix109_len; - return pc; - } -void *compile_addix11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix11, gen_addix11_len); - ctx->pc += gen_addix11_len; - return pc; - } -void *compile_addix110(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix110, gen_addix110_len); - ctx->pc += gen_addix110_len; - return pc; - } -void *compile_addix111(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix111, gen_addix111_len); - ctx->pc += gen_addix111_len; - return pc; - } -void *compile_addix112(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix112, gen_addix112_len); - ctx->pc += gen_addix112_len; - return pc; - } -void *compile_addix113(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix113, gen_addix113_len); - ctx->pc += gen_addix113_len; - return pc; - } -void *compile_addix114(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix114, gen_addix114_len); - ctx->pc += gen_addix114_len; - return pc; - } -void *compile_addix115(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix115, gen_addix115_len); - ctx->pc += gen_addix115_len; - return pc; - } -void *compile_addix116(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix116, gen_addix116_len); - ctx->pc += gen_addix116_len; - return pc; - } -void *compile_addix117(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix117, gen_addix117_len); - ctx->pc += gen_addix117_len; - return pc; - } -void *compile_addix118(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix118, gen_addix118_len); - ctx->pc += gen_addix118_len; - return pc; - } -void *compile_addix119(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix119, gen_addix119_len); - ctx->pc += gen_addix119_len; - return pc; - } -void *compile_addix12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix12, gen_addix12_len); - ctx->pc += gen_addix12_len; - return pc; - } -void *compile_addix120(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix120, gen_addix120_len); - ctx->pc += gen_addix120_len; - return pc; - } -void *compile_addix121(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix121, gen_addix121_len); - ctx->pc += gen_addix121_len; - return pc; - } -void *compile_addix122(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix122, gen_addix122_len); - ctx->pc += gen_addix122_len; - return pc; - } -void *compile_addix123(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix123, gen_addix123_len); - ctx->pc += gen_addix123_len; - return pc; - } -void *compile_addix124(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix124, gen_addix124_len); - ctx->pc += gen_addix124_len; - return pc; - } -void *compile_addix125(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix125, gen_addix125_len); - ctx->pc += gen_addix125_len; - return pc; - } -void *compile_addix126(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix126, gen_addix126_len); - ctx->pc += gen_addix126_len; - return pc; - } -void *compile_addix127(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix127, gen_addix127_len); - ctx->pc += gen_addix127_len; - return pc; - } -void *compile_addix128(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix128, gen_addix128_len); - ctx->pc += gen_addix128_len; - return pc; - } -void *compile_addix129(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix129, gen_addix129_len); - ctx->pc += gen_addix129_len; - return pc; - } -void *compile_addix13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix13, gen_addix13_len); - ctx->pc += gen_addix13_len; - return pc; - } -void *compile_addix130(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix130, gen_addix130_len); - ctx->pc += gen_addix130_len; - return pc; - } -void *compile_addix131(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix131, gen_addix131_len); - ctx->pc += gen_addix131_len; - return pc; - } -void *compile_addix132(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix132, gen_addix132_len); - ctx->pc += gen_addix132_len; - return pc; - } -void *compile_addix133(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix133, gen_addix133_len); - ctx->pc += gen_addix133_len; - return pc; - } -void *compile_addix134(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix134, gen_addix134_len); - ctx->pc += gen_addix134_len; - return pc; - } -void *compile_addix135(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix135, gen_addix135_len); - ctx->pc += gen_addix135_len; - return pc; - } -void *compile_addix136(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix136, gen_addix136_len); - ctx->pc += gen_addix136_len; - return pc; - } -void *compile_addix137(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix137, gen_addix137_len); - ctx->pc += gen_addix137_len; - return pc; - } -void *compile_addix138(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix138, gen_addix138_len); - ctx->pc += gen_addix138_len; - return pc; - } -void *compile_addix139(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix139, gen_addix139_len); - ctx->pc += gen_addix139_len; - return pc; - } -void *compile_addix14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix14, gen_addix14_len); - ctx->pc += gen_addix14_len; - return pc; - } -void *compile_addix140(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix140, gen_addix140_len); - ctx->pc += gen_addix140_len; - return pc; - } -void *compile_addix141(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix141, gen_addix141_len); - ctx->pc += gen_addix141_len; - return pc; - } -void *compile_addix142(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix142, gen_addix142_len); - ctx->pc += gen_addix142_len; - return pc; - } -void *compile_addix143(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix143, gen_addix143_len); - ctx->pc += gen_addix143_len; - return pc; - } -void *compile_addix144(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix144, gen_addix144_len); - ctx->pc += gen_addix144_len; - return pc; - } -void *compile_addix145(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix145, gen_addix145_len); - ctx->pc += gen_addix145_len; - return pc; - } -void *compile_addix146(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix146, gen_addix146_len); - ctx->pc += gen_addix146_len; - return pc; - } -void *compile_addix147(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix147, gen_addix147_len); - ctx->pc += gen_addix147_len; - return pc; - } -void *compile_addix148(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix148, gen_addix148_len); - ctx->pc += gen_addix148_len; - return pc; - } -void *compile_addix149(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix149, gen_addix149_len); - ctx->pc += gen_addix149_len; - return pc; - } -void *compile_addix15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix15, gen_addix15_len); - ctx->pc += gen_addix15_len; - return pc; - } -void *compile_addix150(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix150, gen_addix150_len); - ctx->pc += gen_addix150_len; - return pc; - } -void *compile_addix151(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix151, gen_addix151_len); - ctx->pc += gen_addix151_len; - return pc; - } -void *compile_addix152(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix152, gen_addix152_len); - ctx->pc += gen_addix152_len; - return pc; - } -void *compile_addix153(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix153, gen_addix153_len); - ctx->pc += gen_addix153_len; - return pc; - } -void *compile_addix154(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix154, gen_addix154_len); - ctx->pc += gen_addix154_len; - return pc; - } -void *compile_addix155(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix155, gen_addix155_len); - ctx->pc += gen_addix155_len; - return pc; - } -void *compile_addix156(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix156, gen_addix156_len); - ctx->pc += gen_addix156_len; - return pc; - } -void *compile_addix157(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix157, gen_addix157_len); - ctx->pc += gen_addix157_len; - return pc; - } -void *compile_addix158(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix158, gen_addix158_len); - ctx->pc += gen_addix158_len; - return pc; - } -void *compile_addix159(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix159, gen_addix159_len); - ctx->pc += gen_addix159_len; - return pc; - } -void *compile_addix16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix16, gen_addix16_len); - ctx->pc += gen_addix16_len; - return pc; - } -void *compile_addix160(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix160, gen_addix160_len); - ctx->pc += gen_addix160_len; - return pc; - } -void *compile_addix161(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix161, gen_addix161_len); - ctx->pc += gen_addix161_len; - return pc; - } -void *compile_addix162(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix162, gen_addix162_len); - ctx->pc += gen_addix162_len; - return pc; - } -void *compile_addix163(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix163, gen_addix163_len); - ctx->pc += gen_addix163_len; - return pc; - } -void *compile_addix164(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix164, gen_addix164_len); - ctx->pc += gen_addix164_len; - return pc; - } -void *compile_addix165(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix165, gen_addix165_len); - ctx->pc += gen_addix165_len; - return pc; - } -void *compile_addix166(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix166, gen_addix166_len); - ctx->pc += gen_addix166_len; - return pc; - } -void *compile_addix167(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix167, gen_addix167_len); - ctx->pc += gen_addix167_len; - return pc; - } -void *compile_addix168(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix168, gen_addix168_len); - ctx->pc += gen_addix168_len; - return pc; - } -void *compile_addix169(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix169, gen_addix169_len); - ctx->pc += gen_addix169_len; - return pc; - } -void *compile_addix17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix17, gen_addix17_len); - ctx->pc += gen_addix17_len; - return pc; - } -void *compile_addix170(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix170, gen_addix170_len); - ctx->pc += gen_addix170_len; - return pc; - } -void *compile_addix171(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix171, gen_addix171_len); - ctx->pc += gen_addix171_len; - return pc; - } -void *compile_addix172(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix172, gen_addix172_len); - ctx->pc += gen_addix172_len; - return pc; - } -void *compile_addix173(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix173, gen_addix173_len); - ctx->pc += gen_addix173_len; - return pc; - } -void *compile_addix174(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix174, gen_addix174_len); - ctx->pc += gen_addix174_len; - return pc; - } -void *compile_addix175(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix175, gen_addix175_len); - ctx->pc += gen_addix175_len; - return pc; - } -void *compile_addix176(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix176, gen_addix176_len); - ctx->pc += gen_addix176_len; - return pc; - } -void *compile_addix177(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix177, gen_addix177_len); - ctx->pc += gen_addix177_len; - return pc; - } -void *compile_addix178(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix178, gen_addix178_len); - ctx->pc += gen_addix178_len; - return pc; - } -void *compile_addix179(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix179, gen_addix179_len); - ctx->pc += gen_addix179_len; - return pc; - } -void *compile_addix18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix18, gen_addix18_len); - ctx->pc += gen_addix18_len; - return pc; - } -void *compile_addix180(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix180, gen_addix180_len); - ctx->pc += gen_addix180_len; - return pc; - } -void *compile_addix181(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix181, gen_addix181_len); - ctx->pc += gen_addix181_len; - return pc; - } -void *compile_addix182(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix182, gen_addix182_len); - ctx->pc += gen_addix182_len; - return pc; - } -void *compile_addix183(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix183, gen_addix183_len); - ctx->pc += gen_addix183_len; - return pc; - } -void *compile_addix184(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix184, gen_addix184_len); - ctx->pc += gen_addix184_len; - return pc; - } -void *compile_addix185(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix185, gen_addix185_len); - ctx->pc += gen_addix185_len; - return pc; - } -void *compile_addix186(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix186, gen_addix186_len); - ctx->pc += gen_addix186_len; - return pc; - } -void *compile_addix187(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix187, gen_addix187_len); - ctx->pc += gen_addix187_len; - return pc; - } -void *compile_addix188(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix188, gen_addix188_len); - ctx->pc += gen_addix188_len; - return pc; - } -void *compile_addix189(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix189, gen_addix189_len); - ctx->pc += gen_addix189_len; - return pc; - } -void *compile_addix19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix19, gen_addix19_len); - ctx->pc += gen_addix19_len; - return pc; - } -void *compile_addix190(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix190, gen_addix190_len); - ctx->pc += gen_addix190_len; - return pc; - } -void *compile_addix191(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix191, gen_addix191_len); - ctx->pc += gen_addix191_len; - return pc; - } -void *compile_addix192(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix192, gen_addix192_len); - ctx->pc += gen_addix192_len; - return pc; - } -void *compile_addix193(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix193, gen_addix193_len); - ctx->pc += gen_addix193_len; - return pc; - } -void *compile_addix194(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix194, gen_addix194_len); - ctx->pc += gen_addix194_len; - return pc; - } -void *compile_addix195(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix195, gen_addix195_len); - ctx->pc += gen_addix195_len; - return pc; - } -void *compile_addix196(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix196, gen_addix196_len); - ctx->pc += gen_addix196_len; - return pc; - } -void *compile_addix197(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix197, gen_addix197_len); - ctx->pc += gen_addix197_len; - return pc; - } -void *compile_addix198(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix198, gen_addix198_len); - ctx->pc += gen_addix198_len; - return pc; - } -void *compile_addix199(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix199, gen_addix199_len); - ctx->pc += gen_addix199_len; - return pc; - } -void *compile_addix2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix2, gen_addix2_len); - ctx->pc += gen_addix2_len; - return pc; - } -void *compile_addix20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix20, gen_addix20_len); - ctx->pc += gen_addix20_len; - return pc; - } -void *compile_addix200(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix200, gen_addix200_len); - ctx->pc += gen_addix200_len; - return pc; - } -void *compile_addix201(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix201, gen_addix201_len); - ctx->pc += gen_addix201_len; - return pc; - } -void *compile_addix202(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix202, gen_addix202_len); - ctx->pc += gen_addix202_len; - return pc; - } -void *compile_addix203(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix203, gen_addix203_len); - ctx->pc += gen_addix203_len; - return pc; - } -void *compile_addix204(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix204, gen_addix204_len); - ctx->pc += gen_addix204_len; - return pc; - } -void *compile_addix205(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix205, gen_addix205_len); - ctx->pc += gen_addix205_len; - return pc; - } -void *compile_addix206(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix206, gen_addix206_len); - ctx->pc += gen_addix206_len; - return pc; - } -void *compile_addix207(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix207, gen_addix207_len); - ctx->pc += gen_addix207_len; - return pc; - } -void *compile_addix208(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix208, gen_addix208_len); - ctx->pc += gen_addix208_len; - return pc; - } -void *compile_addix209(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix209, gen_addix209_len); - ctx->pc += gen_addix209_len; - return pc; - } -void *compile_addix21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix21, gen_addix21_len); - ctx->pc += gen_addix21_len; - return pc; - } -void *compile_addix210(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix210, gen_addix210_len); - ctx->pc += gen_addix210_len; - return pc; - } -void *compile_addix211(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix211, gen_addix211_len); - ctx->pc += gen_addix211_len; - return pc; - } -void *compile_addix212(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix212, gen_addix212_len); - ctx->pc += gen_addix212_len; - return pc; - } -void *compile_addix213(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix213, gen_addix213_len); - ctx->pc += gen_addix213_len; - return pc; - } -void *compile_addix214(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix214, gen_addix214_len); - ctx->pc += gen_addix214_len; - return pc; - } -void *compile_addix215(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix215, gen_addix215_len); - ctx->pc += gen_addix215_len; - return pc; - } -void *compile_addix216(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix216, gen_addix216_len); - ctx->pc += gen_addix216_len; - return pc; - } -void *compile_addix217(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix217, gen_addix217_len); - ctx->pc += gen_addix217_len; - return pc; - } -void *compile_addix218(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix218, gen_addix218_len); - ctx->pc += gen_addix218_len; - return pc; - } -void *compile_addix219(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix219, gen_addix219_len); - ctx->pc += gen_addix219_len; - return pc; - } -void *compile_addix22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix22, gen_addix22_len); - ctx->pc += gen_addix22_len; - return pc; - } -void *compile_addix220(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix220, gen_addix220_len); - ctx->pc += gen_addix220_len; - return pc; - } -void *compile_addix221(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix221, gen_addix221_len); - ctx->pc += gen_addix221_len; - return pc; - } -void *compile_addix222(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix222, gen_addix222_len); - ctx->pc += gen_addix222_len; - return pc; - } -void *compile_addix223(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix223, gen_addix223_len); - ctx->pc += gen_addix223_len; - return pc; - } -void *compile_addix224(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix224, gen_addix224_len); - ctx->pc += gen_addix224_len; - return pc; - } -void *compile_addix225(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix225, gen_addix225_len); - ctx->pc += gen_addix225_len; - return pc; - } -void *compile_addix226(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix226, gen_addix226_len); - ctx->pc += gen_addix226_len; - return pc; - } -void *compile_addix227(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix227, gen_addix227_len); - ctx->pc += gen_addix227_len; - return pc; - } -void *compile_addix228(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix228, gen_addix228_len); - ctx->pc += gen_addix228_len; - return pc; - } -void *compile_addix229(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix229, gen_addix229_len); - ctx->pc += gen_addix229_len; - return pc; - } -void *compile_addix23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix23, gen_addix23_len); - ctx->pc += gen_addix23_len; - return pc; - } -void *compile_addix230(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix230, gen_addix230_len); - ctx->pc += gen_addix230_len; - return pc; - } -void *compile_addix231(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix231, gen_addix231_len); - ctx->pc += gen_addix231_len; - return pc; - } -void *compile_addix232(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix232, gen_addix232_len); - ctx->pc += gen_addix232_len; - return pc; - } -void *compile_addix233(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix233, gen_addix233_len); - ctx->pc += gen_addix233_len; - return pc; - } -void *compile_addix234(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix234, gen_addix234_len); - ctx->pc += gen_addix234_len; - return pc; - } -void *compile_addix235(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix235, gen_addix235_len); - ctx->pc += gen_addix235_len; - return pc; - } -void *compile_addix236(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix236, gen_addix236_len); - ctx->pc += gen_addix236_len; - return pc; - } -void *compile_addix237(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix237, gen_addix237_len); - ctx->pc += gen_addix237_len; - return pc; - } -void *compile_addix238(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix238, gen_addix238_len); - ctx->pc += gen_addix238_len; - return pc; - } -void *compile_addix239(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix239, gen_addix239_len); - ctx->pc += gen_addix239_len; - return pc; - } -void *compile_addix24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix24, gen_addix24_len); - ctx->pc += gen_addix24_len; - return pc; - } -void *compile_addix240(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix240, gen_addix240_len); - ctx->pc += gen_addix240_len; - return pc; - } -void *compile_addix241(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix241, gen_addix241_len); - ctx->pc += gen_addix241_len; - return pc; - } -void *compile_addix242(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix242, gen_addix242_len); - ctx->pc += gen_addix242_len; - return pc; - } -void *compile_addix243(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix243, gen_addix243_len); - ctx->pc += gen_addix243_len; - return pc; - } -void *compile_addix244(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix244, gen_addix244_len); - ctx->pc += gen_addix244_len; - return pc; - } -void *compile_addix245(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix245, gen_addix245_len); - ctx->pc += gen_addix245_len; - return pc; - } -void *compile_addix246(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix246, gen_addix246_len); - ctx->pc += gen_addix246_len; - return pc; - } -void *compile_addix247(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix247, gen_addix247_len); - ctx->pc += gen_addix247_len; - return pc; - } -void *compile_addix248(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix248, gen_addix248_len); - ctx->pc += gen_addix248_len; - return pc; - } -void *compile_addix249(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix249, gen_addix249_len); - ctx->pc += gen_addix249_len; - return pc; - } -void *compile_addix25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix25, gen_addix25_len); - ctx->pc += gen_addix25_len; - return pc; - } -void *compile_addix250(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix250, gen_addix250_len); - ctx->pc += gen_addix250_len; - return pc; - } -void *compile_addix251(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix251, gen_addix251_len); - ctx->pc += gen_addix251_len; - return pc; - } -void *compile_addix252(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix252, gen_addix252_len); - ctx->pc += gen_addix252_len; - return pc; - } -void *compile_addix253(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix253, gen_addix253_len); - ctx->pc += gen_addix253_len; - return pc; - } -void *compile_addix254(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix254, gen_addix254_len); - ctx->pc += gen_addix254_len; - return pc; - } -void *compile_addix255(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix255, gen_addix255_len); - ctx->pc += gen_addix255_len; - return pc; - } -void *compile_addix26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix26, gen_addix26_len); - ctx->pc += gen_addix26_len; - return pc; - } -void *compile_addix27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix27, gen_addix27_len); - ctx->pc += gen_addix27_len; - return pc; - } -void *compile_addix28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix28, gen_addix28_len); - ctx->pc += gen_addix28_len; - return pc; - } -void *compile_addix29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix29, gen_addix29_len); - ctx->pc += gen_addix29_len; - return pc; - } -void *compile_addix3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix3, gen_addix3_len); - ctx->pc += gen_addix3_len; - return pc; - } -void *compile_addix30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix30, gen_addix30_len); - ctx->pc += gen_addix30_len; - return pc; - } -void *compile_addix31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix31, gen_addix31_len); - ctx->pc += gen_addix31_len; - return pc; - } -void *compile_addix32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix32, gen_addix32_len); - ctx->pc += gen_addix32_len; - return pc; - } -void *compile_addix33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix33, gen_addix33_len); - ctx->pc += gen_addix33_len; - return pc; - } -void *compile_addix34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix34, gen_addix34_len); - ctx->pc += gen_addix34_len; - return pc; - } -void *compile_addix35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix35, gen_addix35_len); - ctx->pc += gen_addix35_len; - return pc; - } -void *compile_addix36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix36, gen_addix36_len); - ctx->pc += gen_addix36_len; - return pc; - } -void *compile_addix37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix37, gen_addix37_len); - ctx->pc += gen_addix37_len; - return pc; - } -void *compile_addix38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix38, gen_addix38_len); - ctx->pc += gen_addix38_len; - return pc; - } -void *compile_addix39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix39, gen_addix39_len); - ctx->pc += gen_addix39_len; - return pc; - } -void *compile_addix4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix4, gen_addix4_len); - ctx->pc += gen_addix4_len; - return pc; - } -void *compile_addix40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix40, gen_addix40_len); - ctx->pc += gen_addix40_len; - return pc; - } -void *compile_addix41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix41, gen_addix41_len); - ctx->pc += gen_addix41_len; - return pc; - } -void *compile_addix42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix42, gen_addix42_len); - ctx->pc += gen_addix42_len; - return pc; - } -void *compile_addix43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix43, gen_addix43_len); - ctx->pc += gen_addix43_len; - return pc; - } -void *compile_addix44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix44, gen_addix44_len); - ctx->pc += gen_addix44_len; - return pc; - } -void *compile_addix45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix45, gen_addix45_len); - ctx->pc += gen_addix45_len; - return pc; - } -void *compile_addix46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix46, gen_addix46_len); - ctx->pc += gen_addix46_len; - return pc; - } -void *compile_addix47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix47, gen_addix47_len); - ctx->pc += gen_addix47_len; - return pc; - } -void *compile_addix48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix48, gen_addix48_len); - ctx->pc += gen_addix48_len; - return pc; - } -void *compile_addix49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix49, gen_addix49_len); - ctx->pc += gen_addix49_len; - return pc; - } -void *compile_addix5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix5, gen_addix5_len); - ctx->pc += gen_addix5_len; - return pc; - } -void *compile_addix50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix50, gen_addix50_len); - ctx->pc += gen_addix50_len; - return pc; - } -void *compile_addix51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix51, gen_addix51_len); - ctx->pc += gen_addix51_len; - return pc; - } -void *compile_addix52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix52, gen_addix52_len); - ctx->pc += gen_addix52_len; - return pc; - } -void *compile_addix53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix53, gen_addix53_len); - ctx->pc += gen_addix53_len; - return pc; - } -void *compile_addix54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix54, gen_addix54_len); - ctx->pc += gen_addix54_len; - return pc; - } -void *compile_addix55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix55, gen_addix55_len); - ctx->pc += gen_addix55_len; - return pc; - } -void *compile_addix56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix56, gen_addix56_len); - ctx->pc += gen_addix56_len; - return pc; - } -void *compile_addix57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix57, gen_addix57_len); - ctx->pc += gen_addix57_len; - return pc; - } -void *compile_addix58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix58, gen_addix58_len); - ctx->pc += gen_addix58_len; - return pc; - } -void *compile_addix59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix59, gen_addix59_len); - ctx->pc += gen_addix59_len; - return pc; - } -void *compile_addix6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix6, gen_addix6_len); - ctx->pc += gen_addix6_len; - return pc; - } -void *compile_addix60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix60, gen_addix60_len); - ctx->pc += gen_addix60_len; - return pc; - } -void *compile_addix61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix61, gen_addix61_len); - ctx->pc += gen_addix61_len; - return pc; - } -void *compile_addix62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix62, gen_addix62_len); - ctx->pc += gen_addix62_len; - return pc; - } -void *compile_addix63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix63, gen_addix63_len); - ctx->pc += gen_addix63_len; - return pc; - } -void *compile_addix64(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix64, gen_addix64_len); - ctx->pc += gen_addix64_len; - return pc; - } -void *compile_addix65(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix65, gen_addix65_len); - ctx->pc += gen_addix65_len; - return pc; - } -void *compile_addix66(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix66, gen_addix66_len); - ctx->pc += gen_addix66_len; - return pc; - } -void *compile_addix67(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix67, gen_addix67_len); - ctx->pc += gen_addix67_len; - return pc; - } -void *compile_addix68(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix68, gen_addix68_len); - ctx->pc += gen_addix68_len; - return pc; - } -void *compile_addix69(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix69, gen_addix69_len); - ctx->pc += gen_addix69_len; - return pc; - } -void *compile_addix7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix7, gen_addix7_len); - ctx->pc += gen_addix7_len; - return pc; - } -void *compile_addix70(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix70, gen_addix70_len); - ctx->pc += gen_addix70_len; - return pc; - } -void *compile_addix71(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix71, gen_addix71_len); - ctx->pc += gen_addix71_len; - return pc; - } -void *compile_addix72(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix72, gen_addix72_len); - ctx->pc += gen_addix72_len; - return pc; - } -void *compile_addix73(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix73, gen_addix73_len); - ctx->pc += gen_addix73_len; - return pc; - } -void *compile_addix74(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix74, gen_addix74_len); - ctx->pc += gen_addix74_len; - return pc; - } -void *compile_addix75(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix75, gen_addix75_len); - ctx->pc += gen_addix75_len; - return pc; - } -void *compile_addix76(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix76, gen_addix76_len); - ctx->pc += gen_addix76_len; - return pc; - } -void *compile_addix77(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix77, gen_addix77_len); - ctx->pc += gen_addix77_len; - return pc; - } -void *compile_addix78(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix78, gen_addix78_len); - ctx->pc += gen_addix78_len; - return pc; - } -void *compile_addix79(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix79, gen_addix79_len); - ctx->pc += gen_addix79_len; - return pc; - } -void *compile_addix8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix8, gen_addix8_len); - ctx->pc += gen_addix8_len; - return pc; - } -void *compile_addix80(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix80, gen_addix80_len); - ctx->pc += gen_addix80_len; - return pc; - } -void *compile_addix81(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix81, gen_addix81_len); - ctx->pc += gen_addix81_len; - return pc; - } -void *compile_addix82(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix82, gen_addix82_len); - ctx->pc += gen_addix82_len; - return pc; - } -void *compile_addix83(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix83, gen_addix83_len); - ctx->pc += gen_addix83_len; - return pc; - } -void *compile_addix84(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix84, gen_addix84_len); - ctx->pc += gen_addix84_len; - return pc; - } -void *compile_addix85(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix85, gen_addix85_len); - ctx->pc += gen_addix85_len; - return pc; - } -void *compile_addix86(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix86, gen_addix86_len); - ctx->pc += gen_addix86_len; - return pc; - } -void *compile_addix87(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix87, gen_addix87_len); - ctx->pc += gen_addix87_len; - return pc; - } -void *compile_addix88(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix88, gen_addix88_len); - ctx->pc += gen_addix88_len; - return pc; - } -void *compile_addix89(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix89, gen_addix89_len); - ctx->pc += gen_addix89_len; - return pc; - } -void *compile_addix9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix9, gen_addix9_len); - ctx->pc += gen_addix9_len; - return pc; - } -void *compile_addix90(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix90, gen_addix90_len); - ctx->pc += gen_addix90_len; - return pc; - } -void *compile_addix91(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix91, gen_addix91_len); - ctx->pc += gen_addix91_len; - return pc; - } -void *compile_addix92(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix92, gen_addix92_len); - ctx->pc += gen_addix92_len; - return pc; - } -void *compile_addix93(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix93, gen_addix93_len); - ctx->pc += gen_addix93_len; - return pc; - } -void *compile_addix94(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix94, gen_addix94_len); - ctx->pc += gen_addix94_len; - return pc; - } -void *compile_addix95(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix95, gen_addix95_len); - ctx->pc += gen_addix95_len; - return pc; - } -void *compile_addix96(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix96, gen_addix96_len); - ctx->pc += gen_addix96_len; - return pc; - } -void *compile_addix97(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix97, gen_addix97_len); - ctx->pc += gen_addix97_len; - return pc; - } -void *compile_addix98(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix98, gen_addix98_len); - ctx->pc += gen_addix98_len; - return pc; - } -void *compile_addix99(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addix99, gen_addix99_len); - ctx->pc += gen_addix99_len; - return pc; - } -void *compile_addiy0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy0, gen_addiy0_len); - ctx->pc += gen_addiy0_len; - return pc; - } -void *compile_addiy1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy1, gen_addiy1_len); - ctx->pc += gen_addiy1_len; - return pc; - } -void *compile_addiy10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy10, gen_addiy10_len); - ctx->pc += gen_addiy10_len; - return pc; - } -void *compile_addiy100(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy100, gen_addiy100_len); - ctx->pc += gen_addiy100_len; - return pc; - } -void *compile_addiy101(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy101, gen_addiy101_len); - ctx->pc += gen_addiy101_len; - return pc; - } -void *compile_addiy102(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy102, gen_addiy102_len); - ctx->pc += gen_addiy102_len; - return pc; - } -void *compile_addiy103(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy103, gen_addiy103_len); - ctx->pc += gen_addiy103_len; - return pc; - } -void *compile_addiy104(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy104, gen_addiy104_len); - ctx->pc += gen_addiy104_len; - return pc; - } -void *compile_addiy105(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy105, gen_addiy105_len); - ctx->pc += gen_addiy105_len; - return pc; - } -void *compile_addiy106(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy106, gen_addiy106_len); - ctx->pc += gen_addiy106_len; - return pc; - } -void *compile_addiy107(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy107, gen_addiy107_len); - ctx->pc += gen_addiy107_len; - return pc; - } -void *compile_addiy108(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy108, gen_addiy108_len); - ctx->pc += gen_addiy108_len; - return pc; - } -void *compile_addiy109(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy109, gen_addiy109_len); - ctx->pc += gen_addiy109_len; - return pc; - } -void *compile_addiy11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy11, gen_addiy11_len); - ctx->pc += gen_addiy11_len; - return pc; - } -void *compile_addiy110(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy110, gen_addiy110_len); - ctx->pc += gen_addiy110_len; - return pc; - } -void *compile_addiy111(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy111, gen_addiy111_len); - ctx->pc += gen_addiy111_len; - return pc; - } -void *compile_addiy112(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy112, gen_addiy112_len); - ctx->pc += gen_addiy112_len; - return pc; - } -void *compile_addiy113(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy113, gen_addiy113_len); - ctx->pc += gen_addiy113_len; - return pc; - } -void *compile_addiy114(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy114, gen_addiy114_len); - ctx->pc += gen_addiy114_len; - return pc; - } -void *compile_addiy115(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy115, gen_addiy115_len); - ctx->pc += gen_addiy115_len; - return pc; - } -void *compile_addiy116(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy116, gen_addiy116_len); - ctx->pc += gen_addiy116_len; - return pc; - } -void *compile_addiy117(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy117, gen_addiy117_len); - ctx->pc += gen_addiy117_len; - return pc; - } -void *compile_addiy118(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy118, gen_addiy118_len); - ctx->pc += gen_addiy118_len; - return pc; - } -void *compile_addiy119(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy119, gen_addiy119_len); - ctx->pc += gen_addiy119_len; - return pc; - } -void *compile_addiy12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy12, gen_addiy12_len); - ctx->pc += gen_addiy12_len; - return pc; - } -void *compile_addiy120(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy120, gen_addiy120_len); - ctx->pc += gen_addiy120_len; - return pc; - } -void *compile_addiy121(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy121, gen_addiy121_len); - ctx->pc += gen_addiy121_len; - return pc; - } -void *compile_addiy122(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy122, gen_addiy122_len); - ctx->pc += gen_addiy122_len; - return pc; - } -void *compile_addiy123(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy123, gen_addiy123_len); - ctx->pc += gen_addiy123_len; - return pc; - } -void *compile_addiy124(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy124, gen_addiy124_len); - ctx->pc += gen_addiy124_len; - return pc; - } -void *compile_addiy125(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy125, gen_addiy125_len); - ctx->pc += gen_addiy125_len; - return pc; - } -void *compile_addiy126(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy126, gen_addiy126_len); - ctx->pc += gen_addiy126_len; - return pc; - } -void *compile_addiy127(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy127, gen_addiy127_len); - ctx->pc += gen_addiy127_len; - return pc; - } -void *compile_addiy128(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy128, gen_addiy128_len); - ctx->pc += gen_addiy128_len; - return pc; - } -void *compile_addiy129(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy129, gen_addiy129_len); - ctx->pc += gen_addiy129_len; - return pc; - } -void *compile_addiy13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy13, gen_addiy13_len); - ctx->pc += gen_addiy13_len; - return pc; - } -void *compile_addiy130(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy130, gen_addiy130_len); - ctx->pc += gen_addiy130_len; - return pc; - } -void *compile_addiy131(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy131, gen_addiy131_len); - ctx->pc += gen_addiy131_len; - return pc; - } -void *compile_addiy132(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy132, gen_addiy132_len); - ctx->pc += gen_addiy132_len; - return pc; - } -void *compile_addiy133(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy133, gen_addiy133_len); - ctx->pc += gen_addiy133_len; - return pc; - } -void *compile_addiy134(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy134, gen_addiy134_len); - ctx->pc += gen_addiy134_len; - return pc; - } -void *compile_addiy135(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy135, gen_addiy135_len); - ctx->pc += gen_addiy135_len; - return pc; - } -void *compile_addiy136(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy136, gen_addiy136_len); - ctx->pc += gen_addiy136_len; - return pc; - } -void *compile_addiy137(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy137, gen_addiy137_len); - ctx->pc += gen_addiy137_len; - return pc; - } -void *compile_addiy138(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy138, gen_addiy138_len); - ctx->pc += gen_addiy138_len; - return pc; - } -void *compile_addiy139(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy139, gen_addiy139_len); - ctx->pc += gen_addiy139_len; - return pc; - } -void *compile_addiy14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy14, gen_addiy14_len); - ctx->pc += gen_addiy14_len; - return pc; - } -void *compile_addiy140(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy140, gen_addiy140_len); - ctx->pc += gen_addiy140_len; - return pc; - } -void *compile_addiy141(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy141, gen_addiy141_len); - ctx->pc += gen_addiy141_len; - return pc; - } -void *compile_addiy142(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy142, gen_addiy142_len); - ctx->pc += gen_addiy142_len; - return pc; - } -void *compile_addiy143(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy143, gen_addiy143_len); - ctx->pc += gen_addiy143_len; - return pc; - } -void *compile_addiy144(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy144, gen_addiy144_len); - ctx->pc += gen_addiy144_len; - return pc; - } -void *compile_addiy145(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy145, gen_addiy145_len); - ctx->pc += gen_addiy145_len; - return pc; - } -void *compile_addiy146(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy146, gen_addiy146_len); - ctx->pc += gen_addiy146_len; - return pc; - } -void *compile_addiy147(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy147, gen_addiy147_len); - ctx->pc += gen_addiy147_len; - return pc; - } -void *compile_addiy148(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy148, gen_addiy148_len); - ctx->pc += gen_addiy148_len; - return pc; - } -void *compile_addiy149(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy149, gen_addiy149_len); - ctx->pc += gen_addiy149_len; - return pc; - } -void *compile_addiy15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy15, gen_addiy15_len); - ctx->pc += gen_addiy15_len; - return pc; - } -void *compile_addiy150(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy150, gen_addiy150_len); - ctx->pc += gen_addiy150_len; - return pc; - } -void *compile_addiy151(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy151, gen_addiy151_len); - ctx->pc += gen_addiy151_len; - return pc; - } -void *compile_addiy152(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy152, gen_addiy152_len); - ctx->pc += gen_addiy152_len; - return pc; - } -void *compile_addiy153(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy153, gen_addiy153_len); - ctx->pc += gen_addiy153_len; - return pc; - } -void *compile_addiy154(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy154, gen_addiy154_len); - ctx->pc += gen_addiy154_len; - return pc; - } -void *compile_addiy155(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy155, gen_addiy155_len); - ctx->pc += gen_addiy155_len; - return pc; - } -void *compile_addiy156(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy156, gen_addiy156_len); - ctx->pc += gen_addiy156_len; - return pc; - } -void *compile_addiy157(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy157, gen_addiy157_len); - ctx->pc += gen_addiy157_len; - return pc; - } -void *compile_addiy158(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy158, gen_addiy158_len); - ctx->pc += gen_addiy158_len; - return pc; - } -void *compile_addiy159(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy159, gen_addiy159_len); - ctx->pc += gen_addiy159_len; - return pc; - } -void *compile_addiy16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy16, gen_addiy16_len); - ctx->pc += gen_addiy16_len; - return pc; - } -void *compile_addiy160(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy160, gen_addiy160_len); - ctx->pc += gen_addiy160_len; - return pc; - } -void *compile_addiy161(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy161, gen_addiy161_len); - ctx->pc += gen_addiy161_len; - return pc; - } -void *compile_addiy162(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy162, gen_addiy162_len); - ctx->pc += gen_addiy162_len; - return pc; - } -void *compile_addiy163(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy163, gen_addiy163_len); - ctx->pc += gen_addiy163_len; - return pc; - } -void *compile_addiy164(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy164, gen_addiy164_len); - ctx->pc += gen_addiy164_len; - return pc; - } -void *compile_addiy165(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy165, gen_addiy165_len); - ctx->pc += gen_addiy165_len; - return pc; - } -void *compile_addiy166(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy166, gen_addiy166_len); - ctx->pc += gen_addiy166_len; - return pc; - } -void *compile_addiy167(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy167, gen_addiy167_len); - ctx->pc += gen_addiy167_len; - return pc; - } -void *compile_addiy168(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy168, gen_addiy168_len); - ctx->pc += gen_addiy168_len; - return pc; - } -void *compile_addiy169(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy169, gen_addiy169_len); - ctx->pc += gen_addiy169_len; - return pc; - } -void *compile_addiy17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy17, gen_addiy17_len); - ctx->pc += gen_addiy17_len; - return pc; - } -void *compile_addiy170(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy170, gen_addiy170_len); - ctx->pc += gen_addiy170_len; - return pc; - } -void *compile_addiy171(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy171, gen_addiy171_len); - ctx->pc += gen_addiy171_len; - return pc; - } -void *compile_addiy172(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy172, gen_addiy172_len); - ctx->pc += gen_addiy172_len; - return pc; - } -void *compile_addiy173(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy173, gen_addiy173_len); - ctx->pc += gen_addiy173_len; - return pc; - } -void *compile_addiy174(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy174, gen_addiy174_len); - ctx->pc += gen_addiy174_len; - return pc; - } -void *compile_addiy175(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy175, gen_addiy175_len); - ctx->pc += gen_addiy175_len; - return pc; - } -void *compile_addiy176(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy176, gen_addiy176_len); - ctx->pc += gen_addiy176_len; - return pc; - } -void *compile_addiy177(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy177, gen_addiy177_len); - ctx->pc += gen_addiy177_len; - return pc; - } -void *compile_addiy178(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy178, gen_addiy178_len); - ctx->pc += gen_addiy178_len; - return pc; - } -void *compile_addiy179(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy179, gen_addiy179_len); - ctx->pc += gen_addiy179_len; - return pc; - } -void *compile_addiy18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy18, gen_addiy18_len); - ctx->pc += gen_addiy18_len; - return pc; - } -void *compile_addiy180(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy180, gen_addiy180_len); - ctx->pc += gen_addiy180_len; - return pc; - } -void *compile_addiy181(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy181, gen_addiy181_len); - ctx->pc += gen_addiy181_len; - return pc; - } -void *compile_addiy182(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy182, gen_addiy182_len); - ctx->pc += gen_addiy182_len; - return pc; - } -void *compile_addiy183(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy183, gen_addiy183_len); - ctx->pc += gen_addiy183_len; - return pc; - } -void *compile_addiy184(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy184, gen_addiy184_len); - ctx->pc += gen_addiy184_len; - return pc; - } -void *compile_addiy185(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy185, gen_addiy185_len); - ctx->pc += gen_addiy185_len; - return pc; - } -void *compile_addiy186(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy186, gen_addiy186_len); - ctx->pc += gen_addiy186_len; - return pc; - } -void *compile_addiy187(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy187, gen_addiy187_len); - ctx->pc += gen_addiy187_len; - return pc; - } -void *compile_addiy188(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy188, gen_addiy188_len); - ctx->pc += gen_addiy188_len; - return pc; - } -void *compile_addiy189(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy189, gen_addiy189_len); - ctx->pc += gen_addiy189_len; - return pc; - } -void *compile_addiy19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy19, gen_addiy19_len); - ctx->pc += gen_addiy19_len; - return pc; - } -void *compile_addiy190(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy190, gen_addiy190_len); - ctx->pc += gen_addiy190_len; - return pc; - } -void *compile_addiy191(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy191, gen_addiy191_len); - ctx->pc += gen_addiy191_len; - return pc; - } -void *compile_addiy192(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy192, gen_addiy192_len); - ctx->pc += gen_addiy192_len; - return pc; - } -void *compile_addiy193(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy193, gen_addiy193_len); - ctx->pc += gen_addiy193_len; - return pc; - } -void *compile_addiy194(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy194, gen_addiy194_len); - ctx->pc += gen_addiy194_len; - return pc; - } -void *compile_addiy195(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy195, gen_addiy195_len); - ctx->pc += gen_addiy195_len; - return pc; - } -void *compile_addiy196(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy196, gen_addiy196_len); - ctx->pc += gen_addiy196_len; - return pc; - } -void *compile_addiy197(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy197, gen_addiy197_len); - ctx->pc += gen_addiy197_len; - return pc; - } -void *compile_addiy198(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy198, gen_addiy198_len); - ctx->pc += gen_addiy198_len; - return pc; - } -void *compile_addiy199(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy199, gen_addiy199_len); - ctx->pc += gen_addiy199_len; - return pc; - } -void *compile_addiy2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy2, gen_addiy2_len); - ctx->pc += gen_addiy2_len; - return pc; - } -void *compile_addiy20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy20, gen_addiy20_len); - ctx->pc += gen_addiy20_len; - return pc; - } -void *compile_addiy200(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy200, gen_addiy200_len); - ctx->pc += gen_addiy200_len; - return pc; - } -void *compile_addiy201(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy201, gen_addiy201_len); - ctx->pc += gen_addiy201_len; - return pc; - } -void *compile_addiy202(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy202, gen_addiy202_len); - ctx->pc += gen_addiy202_len; - return pc; - } -void *compile_addiy203(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy203, gen_addiy203_len); - ctx->pc += gen_addiy203_len; - return pc; - } -void *compile_addiy204(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy204, gen_addiy204_len); - ctx->pc += gen_addiy204_len; - return pc; - } -void *compile_addiy205(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy205, gen_addiy205_len); - ctx->pc += gen_addiy205_len; - return pc; - } -void *compile_addiy206(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy206, gen_addiy206_len); - ctx->pc += gen_addiy206_len; - return pc; - } -void *compile_addiy207(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy207, gen_addiy207_len); - ctx->pc += gen_addiy207_len; - return pc; - } -void *compile_addiy208(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy208, gen_addiy208_len); - ctx->pc += gen_addiy208_len; - return pc; - } -void *compile_addiy209(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy209, gen_addiy209_len); - ctx->pc += gen_addiy209_len; - return pc; - } -void *compile_addiy21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy21, gen_addiy21_len); - ctx->pc += gen_addiy21_len; - return pc; - } -void *compile_addiy210(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy210, gen_addiy210_len); - ctx->pc += gen_addiy210_len; - return pc; - } -void *compile_addiy211(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy211, gen_addiy211_len); - ctx->pc += gen_addiy211_len; - return pc; - } -void *compile_addiy212(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy212, gen_addiy212_len); - ctx->pc += gen_addiy212_len; - return pc; - } -void *compile_addiy213(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy213, gen_addiy213_len); - ctx->pc += gen_addiy213_len; - return pc; - } -void *compile_addiy214(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy214, gen_addiy214_len); - ctx->pc += gen_addiy214_len; - return pc; - } -void *compile_addiy215(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy215, gen_addiy215_len); - ctx->pc += gen_addiy215_len; - return pc; - } -void *compile_addiy216(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy216, gen_addiy216_len); - ctx->pc += gen_addiy216_len; - return pc; - } -void *compile_addiy217(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy217, gen_addiy217_len); - ctx->pc += gen_addiy217_len; - return pc; - } -void *compile_addiy218(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy218, gen_addiy218_len); - ctx->pc += gen_addiy218_len; - return pc; - } -void *compile_addiy219(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy219, gen_addiy219_len); - ctx->pc += gen_addiy219_len; - return pc; - } -void *compile_addiy22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy22, gen_addiy22_len); - ctx->pc += gen_addiy22_len; - return pc; - } -void *compile_addiy220(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy220, gen_addiy220_len); - ctx->pc += gen_addiy220_len; - return pc; - } -void *compile_addiy221(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy221, gen_addiy221_len); - ctx->pc += gen_addiy221_len; - return pc; - } -void *compile_addiy222(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy222, gen_addiy222_len); - ctx->pc += gen_addiy222_len; - return pc; - } -void *compile_addiy223(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy223, gen_addiy223_len); - ctx->pc += gen_addiy223_len; - return pc; - } -void *compile_addiy224(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy224, gen_addiy224_len); - ctx->pc += gen_addiy224_len; - return pc; - } -void *compile_addiy225(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy225, gen_addiy225_len); - ctx->pc += gen_addiy225_len; - return pc; - } -void *compile_addiy226(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy226, gen_addiy226_len); - ctx->pc += gen_addiy226_len; - return pc; - } -void *compile_addiy227(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy227, gen_addiy227_len); - ctx->pc += gen_addiy227_len; - return pc; - } -void *compile_addiy228(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy228, gen_addiy228_len); - ctx->pc += gen_addiy228_len; - return pc; - } -void *compile_addiy229(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy229, gen_addiy229_len); - ctx->pc += gen_addiy229_len; - return pc; - } -void *compile_addiy23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy23, gen_addiy23_len); - ctx->pc += gen_addiy23_len; - return pc; - } -void *compile_addiy230(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy230, gen_addiy230_len); - ctx->pc += gen_addiy230_len; - return pc; - } -void *compile_addiy231(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy231, gen_addiy231_len); - ctx->pc += gen_addiy231_len; - return pc; - } -void *compile_addiy232(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy232, gen_addiy232_len); - ctx->pc += gen_addiy232_len; - return pc; - } -void *compile_addiy233(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy233, gen_addiy233_len); - ctx->pc += gen_addiy233_len; - return pc; - } -void *compile_addiy234(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy234, gen_addiy234_len); - ctx->pc += gen_addiy234_len; - return pc; - } -void *compile_addiy235(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy235, gen_addiy235_len); - ctx->pc += gen_addiy235_len; - return pc; - } -void *compile_addiy236(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy236, gen_addiy236_len); - ctx->pc += gen_addiy236_len; - return pc; - } -void *compile_addiy237(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy237, gen_addiy237_len); - ctx->pc += gen_addiy237_len; - return pc; - } -void *compile_addiy238(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy238, gen_addiy238_len); - ctx->pc += gen_addiy238_len; - return pc; - } -void *compile_addiy239(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy239, gen_addiy239_len); - ctx->pc += gen_addiy239_len; - return pc; - } -void *compile_addiy24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy24, gen_addiy24_len); - ctx->pc += gen_addiy24_len; - return pc; - } -void *compile_addiy240(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy240, gen_addiy240_len); - ctx->pc += gen_addiy240_len; - return pc; - } -void *compile_addiy241(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy241, gen_addiy241_len); - ctx->pc += gen_addiy241_len; - return pc; - } -void *compile_addiy242(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy242, gen_addiy242_len); - ctx->pc += gen_addiy242_len; - return pc; - } -void *compile_addiy243(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy243, gen_addiy243_len); - ctx->pc += gen_addiy243_len; - return pc; - } -void *compile_addiy244(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy244, gen_addiy244_len); - ctx->pc += gen_addiy244_len; - return pc; - } -void *compile_addiy245(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy245, gen_addiy245_len); - ctx->pc += gen_addiy245_len; - return pc; - } -void *compile_addiy246(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy246, gen_addiy246_len); - ctx->pc += gen_addiy246_len; - return pc; - } -void *compile_addiy247(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy247, gen_addiy247_len); - ctx->pc += gen_addiy247_len; - return pc; - } -void *compile_addiy248(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy248, gen_addiy248_len); - ctx->pc += gen_addiy248_len; - return pc; - } -void *compile_addiy249(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy249, gen_addiy249_len); - ctx->pc += gen_addiy249_len; - return pc; - } -void *compile_addiy25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy25, gen_addiy25_len); - ctx->pc += gen_addiy25_len; - return pc; - } -void *compile_addiy250(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy250, gen_addiy250_len); - ctx->pc += gen_addiy250_len; - return pc; - } -void *compile_addiy251(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy251, gen_addiy251_len); - ctx->pc += gen_addiy251_len; - return pc; - } -void *compile_addiy252(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy252, gen_addiy252_len); - ctx->pc += gen_addiy252_len; - return pc; - } -void *compile_addiy253(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy253, gen_addiy253_len); - ctx->pc += gen_addiy253_len; - return pc; - } -void *compile_addiy254(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy254, gen_addiy254_len); - ctx->pc += gen_addiy254_len; - return pc; - } -void *compile_addiy255(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy255, gen_addiy255_len); - ctx->pc += gen_addiy255_len; - return pc; - } -void *compile_addiy26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy26, gen_addiy26_len); - ctx->pc += gen_addiy26_len; - return pc; - } -void *compile_addiy27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy27, gen_addiy27_len); - ctx->pc += gen_addiy27_len; - return pc; - } -void *compile_addiy28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy28, gen_addiy28_len); - ctx->pc += gen_addiy28_len; - return pc; - } -void *compile_addiy29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy29, gen_addiy29_len); - ctx->pc += gen_addiy29_len; - return pc; - } -void *compile_addiy3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy3, gen_addiy3_len); - ctx->pc += gen_addiy3_len; - return pc; - } -void *compile_addiy30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy30, gen_addiy30_len); - ctx->pc += gen_addiy30_len; - return pc; - } -void *compile_addiy31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy31, gen_addiy31_len); - ctx->pc += gen_addiy31_len; - return pc; - } -void *compile_addiy32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy32, gen_addiy32_len); - ctx->pc += gen_addiy32_len; - return pc; - } -void *compile_addiy33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy33, gen_addiy33_len); - ctx->pc += gen_addiy33_len; - return pc; - } -void *compile_addiy34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy34, gen_addiy34_len); - ctx->pc += gen_addiy34_len; - return pc; - } -void *compile_addiy35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy35, gen_addiy35_len); - ctx->pc += gen_addiy35_len; - return pc; - } -void *compile_addiy36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy36, gen_addiy36_len); - ctx->pc += gen_addiy36_len; - return pc; - } -void *compile_addiy37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy37, gen_addiy37_len); - ctx->pc += gen_addiy37_len; - return pc; - } -void *compile_addiy38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy38, gen_addiy38_len); - ctx->pc += gen_addiy38_len; - return pc; - } -void *compile_addiy39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy39, gen_addiy39_len); - ctx->pc += gen_addiy39_len; - return pc; - } -void *compile_addiy4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy4, gen_addiy4_len); - ctx->pc += gen_addiy4_len; - return pc; - } -void *compile_addiy40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy40, gen_addiy40_len); - ctx->pc += gen_addiy40_len; - return pc; - } -void *compile_addiy41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy41, gen_addiy41_len); - ctx->pc += gen_addiy41_len; - return pc; - } -void *compile_addiy42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy42, gen_addiy42_len); - ctx->pc += gen_addiy42_len; - return pc; - } -void *compile_addiy43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy43, gen_addiy43_len); - ctx->pc += gen_addiy43_len; - return pc; - } -void *compile_addiy44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy44, gen_addiy44_len); - ctx->pc += gen_addiy44_len; - return pc; - } -void *compile_addiy45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy45, gen_addiy45_len); - ctx->pc += gen_addiy45_len; - return pc; - } -void *compile_addiy46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy46, gen_addiy46_len); - ctx->pc += gen_addiy46_len; - return pc; - } -void *compile_addiy47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy47, gen_addiy47_len); - ctx->pc += gen_addiy47_len; - return pc; - } -void *compile_addiy48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy48, gen_addiy48_len); - ctx->pc += gen_addiy48_len; - return pc; - } -void *compile_addiy49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy49, gen_addiy49_len); - ctx->pc += gen_addiy49_len; - return pc; - } -void *compile_addiy5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy5, gen_addiy5_len); - ctx->pc += gen_addiy5_len; - return pc; - } -void *compile_addiy50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy50, gen_addiy50_len); - ctx->pc += gen_addiy50_len; - return pc; - } -void *compile_addiy51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy51, gen_addiy51_len); - ctx->pc += gen_addiy51_len; - return pc; - } -void *compile_addiy52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy52, gen_addiy52_len); - ctx->pc += gen_addiy52_len; - return pc; - } -void *compile_addiy53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy53, gen_addiy53_len); - ctx->pc += gen_addiy53_len; - return pc; - } -void *compile_addiy54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy54, gen_addiy54_len); - ctx->pc += gen_addiy54_len; - return pc; - } -void *compile_addiy55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy55, gen_addiy55_len); - ctx->pc += gen_addiy55_len; - return pc; - } -void *compile_addiy56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy56, gen_addiy56_len); - ctx->pc += gen_addiy56_len; - return pc; - } -void *compile_addiy57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy57, gen_addiy57_len); - ctx->pc += gen_addiy57_len; - return pc; - } -void *compile_addiy58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy58, gen_addiy58_len); - ctx->pc += gen_addiy58_len; - return pc; - } -void *compile_addiy59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy59, gen_addiy59_len); - ctx->pc += gen_addiy59_len; - return pc; - } -void *compile_addiy6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy6, gen_addiy6_len); - ctx->pc += gen_addiy6_len; - return pc; - } -void *compile_addiy60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy60, gen_addiy60_len); - ctx->pc += gen_addiy60_len; - return pc; - } -void *compile_addiy61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy61, gen_addiy61_len); - ctx->pc += gen_addiy61_len; - return pc; - } -void *compile_addiy62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy62, gen_addiy62_len); - ctx->pc += gen_addiy62_len; - return pc; - } -void *compile_addiy63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy63, gen_addiy63_len); - ctx->pc += gen_addiy63_len; - return pc; - } -void *compile_addiy64(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy64, gen_addiy64_len); - ctx->pc += gen_addiy64_len; - return pc; - } -void *compile_addiy65(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy65, gen_addiy65_len); - ctx->pc += gen_addiy65_len; - return pc; - } -void *compile_addiy66(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy66, gen_addiy66_len); - ctx->pc += gen_addiy66_len; - return pc; - } -void *compile_addiy67(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy67, gen_addiy67_len); - ctx->pc += gen_addiy67_len; - return pc; - } -void *compile_addiy68(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy68, gen_addiy68_len); - ctx->pc += gen_addiy68_len; - return pc; - } -void *compile_addiy69(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy69, gen_addiy69_len); - ctx->pc += gen_addiy69_len; - return pc; - } -void *compile_addiy7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy7, gen_addiy7_len); - ctx->pc += gen_addiy7_len; - return pc; - } -void *compile_addiy70(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy70, gen_addiy70_len); - ctx->pc += gen_addiy70_len; - return pc; - } -void *compile_addiy71(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy71, gen_addiy71_len); - ctx->pc += gen_addiy71_len; - return pc; - } -void *compile_addiy72(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy72, gen_addiy72_len); - ctx->pc += gen_addiy72_len; - return pc; - } -void *compile_addiy73(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy73, gen_addiy73_len); - ctx->pc += gen_addiy73_len; - return pc; - } -void *compile_addiy74(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy74, gen_addiy74_len); - ctx->pc += gen_addiy74_len; - return pc; - } -void *compile_addiy75(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy75, gen_addiy75_len); - ctx->pc += gen_addiy75_len; - return pc; - } -void *compile_addiy76(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy76, gen_addiy76_len); - ctx->pc += gen_addiy76_len; - return pc; - } -void *compile_addiy77(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy77, gen_addiy77_len); - ctx->pc += gen_addiy77_len; - return pc; - } -void *compile_addiy78(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy78, gen_addiy78_len); - ctx->pc += gen_addiy78_len; - return pc; - } -void *compile_addiy79(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy79, gen_addiy79_len); - ctx->pc += gen_addiy79_len; - return pc; - } -void *compile_addiy8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy8, gen_addiy8_len); - ctx->pc += gen_addiy8_len; - return pc; - } -void *compile_addiy80(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy80, gen_addiy80_len); - ctx->pc += gen_addiy80_len; - return pc; - } -void *compile_addiy81(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy81, gen_addiy81_len); - ctx->pc += gen_addiy81_len; - return pc; - } -void *compile_addiy82(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy82, gen_addiy82_len); - ctx->pc += gen_addiy82_len; - return pc; - } -void *compile_addiy83(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy83, gen_addiy83_len); - ctx->pc += gen_addiy83_len; - return pc; - } -void *compile_addiy84(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy84, gen_addiy84_len); - ctx->pc += gen_addiy84_len; - return pc; - } -void *compile_addiy85(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy85, gen_addiy85_len); - ctx->pc += gen_addiy85_len; - return pc; - } -void *compile_addiy86(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy86, gen_addiy86_len); - ctx->pc += gen_addiy86_len; - return pc; - } -void *compile_addiy87(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy87, gen_addiy87_len); - ctx->pc += gen_addiy87_len; - return pc; - } -void *compile_addiy88(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy88, gen_addiy88_len); - ctx->pc += gen_addiy88_len; - return pc; - } -void *compile_addiy89(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy89, gen_addiy89_len); - ctx->pc += gen_addiy89_len; - return pc; - } -void *compile_addiy9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy9, gen_addiy9_len); - ctx->pc += gen_addiy9_len; - return pc; - } -void *compile_addiy90(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy90, gen_addiy90_len); - ctx->pc += gen_addiy90_len; - return pc; - } -void *compile_addiy91(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy91, gen_addiy91_len); - ctx->pc += gen_addiy91_len; - return pc; - } -void *compile_addiy92(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy92, gen_addiy92_len); - ctx->pc += gen_addiy92_len; - return pc; - } -void *compile_addiy93(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy93, gen_addiy93_len); - ctx->pc += gen_addiy93_len; - return pc; - } -void *compile_addiy94(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy94, gen_addiy94_len); - ctx->pc += gen_addiy94_len; - return pc; - } -void *compile_addiy95(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy95, gen_addiy95_len); - ctx->pc += gen_addiy95_len; - return pc; - } -void *compile_addiy96(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy96, gen_addiy96_len); - ctx->pc += gen_addiy96_len; - return pc; - } -void *compile_addiy97(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy97, gen_addiy97_len); - ctx->pc += gen_addiy97_len; - return pc; - } -void *compile_addiy98(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy98, gen_addiy98_len); - ctx->pc += gen_addiy98_len; - return pc; - } -void *compile_addiy99(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_addiy99, gen_addiy99_len); - ctx->pc += gen_addiy99_len; - return pc; - } -void *compile_bsa0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa0, gen_bsa0_len); - ctx->pc += gen_bsa0_len; - return pc; - } -void *compile_bsa1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa1, gen_bsa1_len); - ctx->pc += gen_bsa1_len; - return pc; - } -void *compile_bsa10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa10, gen_bsa10_len); - ctx->pc += gen_bsa10_len; - return pc; - } -void *compile_bsa11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa11, gen_bsa11_len); - ctx->pc += gen_bsa11_len; - return pc; - } -void *compile_bsa12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa12, gen_bsa12_len); - ctx->pc += gen_bsa12_len; - return pc; - } -void *compile_bsa13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa13, gen_bsa13_len); - ctx->pc += gen_bsa13_len; - return pc; - } -void *compile_bsa14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa14, gen_bsa14_len); - ctx->pc += gen_bsa14_len; - return pc; - } -void *compile_bsa15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa15, gen_bsa15_len); - ctx->pc += gen_bsa15_len; - return pc; - } -void *compile_bsa16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa16, gen_bsa16_len); - ctx->pc += gen_bsa16_len; - return pc; - } -void *compile_bsa17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa17, gen_bsa17_len); - ctx->pc += gen_bsa17_len; - return pc; - } -void *compile_bsa18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa18, gen_bsa18_len); - ctx->pc += gen_bsa18_len; - return pc; - } -void *compile_bsa19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa19, gen_bsa19_len); - ctx->pc += gen_bsa19_len; - return pc; - } -void *compile_bsa2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa2, gen_bsa2_len); - ctx->pc += gen_bsa2_len; - return pc; - } -void *compile_bsa20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa20, gen_bsa20_len); - ctx->pc += gen_bsa20_len; - return pc; - } -void *compile_bsa21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa21, gen_bsa21_len); - ctx->pc += gen_bsa21_len; - return pc; - } -void *compile_bsa22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa22, gen_bsa22_len); - ctx->pc += gen_bsa22_len; - return pc; - } -void *compile_bsa23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa23, gen_bsa23_len); - ctx->pc += gen_bsa23_len; - return pc; - } -void *compile_bsa24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa24, gen_bsa24_len); - ctx->pc += gen_bsa24_len; - return pc; - } -void *compile_bsa25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa25, gen_bsa25_len); - ctx->pc += gen_bsa25_len; - return pc; - } -void *compile_bsa26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa26, gen_bsa26_len); - ctx->pc += gen_bsa26_len; - return pc; - } -void *compile_bsa27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa27, gen_bsa27_len); - ctx->pc += gen_bsa27_len; - return pc; - } -void *compile_bsa28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa28, gen_bsa28_len); - ctx->pc += gen_bsa28_len; - return pc; - } -void *compile_bsa29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa29, gen_bsa29_len); - ctx->pc += gen_bsa29_len; - return pc; - } -void *compile_bsa3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa3, gen_bsa3_len); - ctx->pc += gen_bsa3_len; - return pc; - } -void *compile_bsa30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa30, gen_bsa30_len); - ctx->pc += gen_bsa30_len; - return pc; - } -void *compile_bsa31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa31, gen_bsa31_len); - ctx->pc += gen_bsa31_len; - return pc; - } -void *compile_bsa32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa32, gen_bsa32_len); - ctx->pc += gen_bsa32_len; - return pc; - } -void *compile_bsa33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa33, gen_bsa33_len); - ctx->pc += gen_bsa33_len; - return pc; - } -void *compile_bsa34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa34, gen_bsa34_len); - ctx->pc += gen_bsa34_len; - return pc; - } -void *compile_bsa35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa35, gen_bsa35_len); - ctx->pc += gen_bsa35_len; - return pc; - } -void *compile_bsa36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa36, gen_bsa36_len); - ctx->pc += gen_bsa36_len; - return pc; - } -void *compile_bsa37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa37, gen_bsa37_len); - ctx->pc += gen_bsa37_len; - return pc; - } -void *compile_bsa38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa38, gen_bsa38_len); - ctx->pc += gen_bsa38_len; - return pc; - } -void *compile_bsa39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa39, gen_bsa39_len); - ctx->pc += gen_bsa39_len; - return pc; - } -void *compile_bsa4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa4, gen_bsa4_len); - ctx->pc += gen_bsa4_len; - return pc; - } -void *compile_bsa40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa40, gen_bsa40_len); - ctx->pc += gen_bsa40_len; - return pc; - } -void *compile_bsa41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa41, gen_bsa41_len); - ctx->pc += gen_bsa41_len; - return pc; - } -void *compile_bsa42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa42, gen_bsa42_len); - ctx->pc += gen_bsa42_len; - return pc; - } -void *compile_bsa43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa43, gen_bsa43_len); - ctx->pc += gen_bsa43_len; - return pc; - } -void *compile_bsa44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa44, gen_bsa44_len); - ctx->pc += gen_bsa44_len; - return pc; - } -void *compile_bsa45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa45, gen_bsa45_len); - ctx->pc += gen_bsa45_len; - return pc; - } -void *compile_bsa46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa46, gen_bsa46_len); - ctx->pc += gen_bsa46_len; - return pc; - } -void *compile_bsa47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa47, gen_bsa47_len); - ctx->pc += gen_bsa47_len; - return pc; - } -void *compile_bsa48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa48, gen_bsa48_len); - ctx->pc += gen_bsa48_len; - return pc; - } -void *compile_bsa49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa49, gen_bsa49_len); - ctx->pc += gen_bsa49_len; - return pc; - } -void *compile_bsa5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa5, gen_bsa5_len); - ctx->pc += gen_bsa5_len; - return pc; - } -void *compile_bsa50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa50, gen_bsa50_len); - ctx->pc += gen_bsa50_len; - return pc; - } -void *compile_bsa51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa51, gen_bsa51_len); - ctx->pc += gen_bsa51_len; - return pc; - } -void *compile_bsa52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa52, gen_bsa52_len); - ctx->pc += gen_bsa52_len; - return pc; - } -void *compile_bsa53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa53, gen_bsa53_len); - ctx->pc += gen_bsa53_len; - return pc; - } -void *compile_bsa54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa54, gen_bsa54_len); - ctx->pc += gen_bsa54_len; - return pc; - } -void *compile_bsa55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa55, gen_bsa55_len); - ctx->pc += gen_bsa55_len; - return pc; - } -void *compile_bsa56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa56, gen_bsa56_len); - ctx->pc += gen_bsa56_len; - return pc; - } -void *compile_bsa57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa57, gen_bsa57_len); - ctx->pc += gen_bsa57_len; - return pc; - } -void *compile_bsa58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa58, gen_bsa58_len); - ctx->pc += gen_bsa58_len; - return pc; - } -void *compile_bsa59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa59, gen_bsa59_len); - ctx->pc += gen_bsa59_len; - return pc; - } -void *compile_bsa6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa6, gen_bsa6_len); - ctx->pc += gen_bsa6_len; - return pc; - } -void *compile_bsa60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa60, gen_bsa60_len); - ctx->pc += gen_bsa60_len; - return pc; - } -void *compile_bsa61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa61, gen_bsa61_len); - ctx->pc += gen_bsa61_len; - return pc; - } -void *compile_bsa62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa62, gen_bsa62_len); - ctx->pc += gen_bsa62_len; - return pc; - } -void *compile_bsa63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa63, gen_bsa63_len); - ctx->pc += gen_bsa63_len; - return pc; - } -void *compile_bsa7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa7, gen_bsa7_len); - ctx->pc += gen_bsa7_len; - return pc; - } -void *compile_bsa8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa8, gen_bsa8_len); - ctx->pc += gen_bsa8_len; - return pc; - } -void *compile_bsa9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsa9, gen_bsa9_len); - ctx->pc += gen_bsa9_len; - return pc; - } -void *compile_bso0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso0, gen_bso0_len); - ctx->pc += gen_bso0_len; - return pc; - } -void *compile_bso1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso1, gen_bso1_len); - ctx->pc += gen_bso1_len; - return pc; - } -void *compile_bso10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso10, gen_bso10_len); - ctx->pc += gen_bso10_len; - return pc; - } -void *compile_bso11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso11, gen_bso11_len); - ctx->pc += gen_bso11_len; - return pc; - } -void *compile_bso12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso12, gen_bso12_len); - ctx->pc += gen_bso12_len; - return pc; - } -void *compile_bso13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso13, gen_bso13_len); - ctx->pc += gen_bso13_len; - return pc; - } -void *compile_bso14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso14, gen_bso14_len); - ctx->pc += gen_bso14_len; - return pc; - } -void *compile_bso15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso15, gen_bso15_len); - ctx->pc += gen_bso15_len; - return pc; - } -void *compile_bso16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso16, gen_bso16_len); - ctx->pc += gen_bso16_len; - return pc; - } -void *compile_bso17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso17, gen_bso17_len); - ctx->pc += gen_bso17_len; - return pc; - } -void *compile_bso18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso18, gen_bso18_len); - ctx->pc += gen_bso18_len; - return pc; - } -void *compile_bso19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso19, gen_bso19_len); - ctx->pc += gen_bso19_len; - return pc; - } -void *compile_bso2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso2, gen_bso2_len); - ctx->pc += gen_bso2_len; - return pc; - } -void *compile_bso20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso20, gen_bso20_len); - ctx->pc += gen_bso20_len; - return pc; - } -void *compile_bso21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso21, gen_bso21_len); - ctx->pc += gen_bso21_len; - return pc; - } -void *compile_bso22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso22, gen_bso22_len); - ctx->pc += gen_bso22_len; - return pc; - } -void *compile_bso23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso23, gen_bso23_len); - ctx->pc += gen_bso23_len; - return pc; - } -void *compile_bso24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso24, gen_bso24_len); - ctx->pc += gen_bso24_len; - return pc; - } -void *compile_bso25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso25, gen_bso25_len); - ctx->pc += gen_bso25_len; - return pc; - } -void *compile_bso26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso26, gen_bso26_len); - ctx->pc += gen_bso26_len; - return pc; - } -void *compile_bso27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso27, gen_bso27_len); - ctx->pc += gen_bso27_len; - return pc; - } -void *compile_bso28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso28, gen_bso28_len); - ctx->pc += gen_bso28_len; - return pc; - } -void *compile_bso29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso29, gen_bso29_len); - ctx->pc += gen_bso29_len; - return pc; - } -void *compile_bso3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso3, gen_bso3_len); - ctx->pc += gen_bso3_len; - return pc; - } -void *compile_bso30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso30, gen_bso30_len); - ctx->pc += gen_bso30_len; - return pc; - } -void *compile_bso31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso31, gen_bso31_len); - ctx->pc += gen_bso31_len; - return pc; - } -void *compile_bso32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso32, gen_bso32_len); - ctx->pc += gen_bso32_len; - return pc; - } -void *compile_bso33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso33, gen_bso33_len); - ctx->pc += gen_bso33_len; - return pc; - } -void *compile_bso34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso34, gen_bso34_len); - ctx->pc += gen_bso34_len; - return pc; - } -void *compile_bso35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso35, gen_bso35_len); - ctx->pc += gen_bso35_len; - return pc; - } -void *compile_bso36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso36, gen_bso36_len); - ctx->pc += gen_bso36_len; - return pc; - } -void *compile_bso37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso37, gen_bso37_len); - ctx->pc += gen_bso37_len; - return pc; - } -void *compile_bso38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso38, gen_bso38_len); - ctx->pc += gen_bso38_len; - return pc; - } -void *compile_bso39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso39, gen_bso39_len); - ctx->pc += gen_bso39_len; - return pc; - } -void *compile_bso4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso4, gen_bso4_len); - ctx->pc += gen_bso4_len; - return pc; - } -void *compile_bso40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso40, gen_bso40_len); - ctx->pc += gen_bso40_len; - return pc; - } -void *compile_bso41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso41, gen_bso41_len); - ctx->pc += gen_bso41_len; - return pc; - } -void *compile_bso42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso42, gen_bso42_len); - ctx->pc += gen_bso42_len; - return pc; - } -void *compile_bso43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso43, gen_bso43_len); - ctx->pc += gen_bso43_len; - return pc; - } -void *compile_bso44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso44, gen_bso44_len); - ctx->pc += gen_bso44_len; - return pc; - } -void *compile_bso45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso45, gen_bso45_len); - ctx->pc += gen_bso45_len; - return pc; - } -void *compile_bso46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso46, gen_bso46_len); - ctx->pc += gen_bso46_len; - return pc; - } -void *compile_bso47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso47, gen_bso47_len); - ctx->pc += gen_bso47_len; - return pc; - } -void *compile_bso48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso48, gen_bso48_len); - ctx->pc += gen_bso48_len; - return pc; - } -void *compile_bso49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso49, gen_bso49_len); - ctx->pc += gen_bso49_len; - return pc; - } -void *compile_bso5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso5, gen_bso5_len); - ctx->pc += gen_bso5_len; - return pc; - } -void *compile_bso50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso50, gen_bso50_len); - ctx->pc += gen_bso50_len; - return pc; - } -void *compile_bso51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso51, gen_bso51_len); - ctx->pc += gen_bso51_len; - return pc; - } -void *compile_bso52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso52, gen_bso52_len); - ctx->pc += gen_bso52_len; - return pc; - } -void *compile_bso53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso53, gen_bso53_len); - ctx->pc += gen_bso53_len; - return pc; - } -void *compile_bso54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso54, gen_bso54_len); - ctx->pc += gen_bso54_len; - return pc; - } -void *compile_bso55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso55, gen_bso55_len); - ctx->pc += gen_bso55_len; - return pc; - } -void *compile_bso56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso56, gen_bso56_len); - ctx->pc += gen_bso56_len; - return pc; - } -void *compile_bso57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso57, gen_bso57_len); - ctx->pc += gen_bso57_len; - return pc; - } -void *compile_bso58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso58, gen_bso58_len); - ctx->pc += gen_bso58_len; - return pc; - } -void *compile_bso59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso59, gen_bso59_len); - ctx->pc += gen_bso59_len; - return pc; - } -void *compile_bso6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso6, gen_bso6_len); - ctx->pc += gen_bso6_len; - return pc; - } -void *compile_bso60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso60, gen_bso60_len); - ctx->pc += gen_bso60_len; - return pc; - } -void *compile_bso61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso61, gen_bso61_len); - ctx->pc += gen_bso61_len; - return pc; - } -void *compile_bso62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso62, gen_bso62_len); - ctx->pc += gen_bso62_len; - return pc; - } -void *compile_bso63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso63, gen_bso63_len); - ctx->pc += gen_bso63_len; - return pc; - } -void *compile_bso7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso7, gen_bso7_len); - ctx->pc += gen_bso7_len; - return pc; - } -void *compile_bso8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso8, gen_bso8_len); - ctx->pc += gen_bso8_len; - return pc; - } -void *compile_bso9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bso9, gen_bso9_len); - ctx->pc += gen_bso9_len; - return pc; - } -void *compile_bsx0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx0, gen_bsx0_len); - ctx->pc += gen_bsx0_len; - return pc; - } -void *compile_bsx1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx1, gen_bsx1_len); - ctx->pc += gen_bsx1_len; - return pc; - } -void *compile_bsx10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx10, gen_bsx10_len); - ctx->pc += gen_bsx10_len; - return pc; - } -void *compile_bsx11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx11, gen_bsx11_len); - ctx->pc += gen_bsx11_len; - return pc; - } -void *compile_bsx12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx12, gen_bsx12_len); - ctx->pc += gen_bsx12_len; - return pc; - } -void *compile_bsx13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx13, gen_bsx13_len); - ctx->pc += gen_bsx13_len; - return pc; - } -void *compile_bsx14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx14, gen_bsx14_len); - ctx->pc += gen_bsx14_len; - return pc; - } -void *compile_bsx15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx15, gen_bsx15_len); - ctx->pc += gen_bsx15_len; - return pc; - } -void *compile_bsx16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx16, gen_bsx16_len); - ctx->pc += gen_bsx16_len; - return pc; - } -void *compile_bsx17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx17, gen_bsx17_len); - ctx->pc += gen_bsx17_len; - return pc; - } -void *compile_bsx18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx18, gen_bsx18_len); - ctx->pc += gen_bsx18_len; - return pc; - } -void *compile_bsx19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx19, gen_bsx19_len); - ctx->pc += gen_bsx19_len; - return pc; - } -void *compile_bsx2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx2, gen_bsx2_len); - ctx->pc += gen_bsx2_len; - return pc; - } -void *compile_bsx20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx20, gen_bsx20_len); - ctx->pc += gen_bsx20_len; - return pc; - } -void *compile_bsx21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx21, gen_bsx21_len); - ctx->pc += gen_bsx21_len; - return pc; - } -void *compile_bsx22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx22, gen_bsx22_len); - ctx->pc += gen_bsx22_len; - return pc; - } -void *compile_bsx23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx23, gen_bsx23_len); - ctx->pc += gen_bsx23_len; - return pc; - } -void *compile_bsx24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx24, gen_bsx24_len); - ctx->pc += gen_bsx24_len; - return pc; - } -void *compile_bsx25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx25, gen_bsx25_len); - ctx->pc += gen_bsx25_len; - return pc; - } -void *compile_bsx26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx26, gen_bsx26_len); - ctx->pc += gen_bsx26_len; - return pc; - } -void *compile_bsx27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx27, gen_bsx27_len); - ctx->pc += gen_bsx27_len; - return pc; - } -void *compile_bsx28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx28, gen_bsx28_len); - ctx->pc += gen_bsx28_len; - return pc; - } -void *compile_bsx29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx29, gen_bsx29_len); - ctx->pc += gen_bsx29_len; - return pc; - } -void *compile_bsx3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx3, gen_bsx3_len); - ctx->pc += gen_bsx3_len; - return pc; - } -void *compile_bsx30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx30, gen_bsx30_len); - ctx->pc += gen_bsx30_len; - return pc; - } -void *compile_bsx31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx31, gen_bsx31_len); - ctx->pc += gen_bsx31_len; - return pc; - } -void *compile_bsx32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx32, gen_bsx32_len); - ctx->pc += gen_bsx32_len; - return pc; - } -void *compile_bsx33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx33, gen_bsx33_len); - ctx->pc += gen_bsx33_len; - return pc; - } -void *compile_bsx34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx34, gen_bsx34_len); - ctx->pc += gen_bsx34_len; - return pc; - } -void *compile_bsx35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx35, gen_bsx35_len); - ctx->pc += gen_bsx35_len; - return pc; - } -void *compile_bsx36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx36, gen_bsx36_len); - ctx->pc += gen_bsx36_len; - return pc; - } -void *compile_bsx37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx37, gen_bsx37_len); - ctx->pc += gen_bsx37_len; - return pc; - } -void *compile_bsx38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx38, gen_bsx38_len); - ctx->pc += gen_bsx38_len; - return pc; - } -void *compile_bsx39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx39, gen_bsx39_len); - ctx->pc += gen_bsx39_len; - return pc; - } -void *compile_bsx4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx4, gen_bsx4_len); - ctx->pc += gen_bsx4_len; - return pc; - } -void *compile_bsx40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx40, gen_bsx40_len); - ctx->pc += gen_bsx40_len; - return pc; - } -void *compile_bsx41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx41, gen_bsx41_len); - ctx->pc += gen_bsx41_len; - return pc; - } -void *compile_bsx42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx42, gen_bsx42_len); - ctx->pc += gen_bsx42_len; - return pc; - } -void *compile_bsx43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx43, gen_bsx43_len); - ctx->pc += gen_bsx43_len; - return pc; - } -void *compile_bsx44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx44, gen_bsx44_len); - ctx->pc += gen_bsx44_len; - return pc; - } -void *compile_bsx45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx45, gen_bsx45_len); - ctx->pc += gen_bsx45_len; - return pc; - } -void *compile_bsx46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx46, gen_bsx46_len); - ctx->pc += gen_bsx46_len; - return pc; - } -void *compile_bsx47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx47, gen_bsx47_len); - ctx->pc += gen_bsx47_len; - return pc; - } -void *compile_bsx48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx48, gen_bsx48_len); - ctx->pc += gen_bsx48_len; - return pc; - } -void *compile_bsx49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx49, gen_bsx49_len); - ctx->pc += gen_bsx49_len; - return pc; - } -void *compile_bsx5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx5, gen_bsx5_len); - ctx->pc += gen_bsx5_len; - return pc; - } -void *compile_bsx50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx50, gen_bsx50_len); - ctx->pc += gen_bsx50_len; - return pc; - } -void *compile_bsx51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx51, gen_bsx51_len); - ctx->pc += gen_bsx51_len; - return pc; - } -void *compile_bsx52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx52, gen_bsx52_len); - ctx->pc += gen_bsx52_len; - return pc; - } -void *compile_bsx53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx53, gen_bsx53_len); - ctx->pc += gen_bsx53_len; - return pc; - } -void *compile_bsx54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx54, gen_bsx54_len); - ctx->pc += gen_bsx54_len; - return pc; - } -void *compile_bsx55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx55, gen_bsx55_len); - ctx->pc += gen_bsx55_len; - return pc; - } -void *compile_bsx56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx56, gen_bsx56_len); - ctx->pc += gen_bsx56_len; - return pc; - } -void *compile_bsx57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx57, gen_bsx57_len); - ctx->pc += gen_bsx57_len; - return pc; - } -void *compile_bsx58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx58, gen_bsx58_len); - ctx->pc += gen_bsx58_len; - return pc; - } -void *compile_bsx59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx59, gen_bsx59_len); - ctx->pc += gen_bsx59_len; - return pc; - } -void *compile_bsx6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx6, gen_bsx6_len); - ctx->pc += gen_bsx6_len; - return pc; - } -void *compile_bsx60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx60, gen_bsx60_len); - ctx->pc += gen_bsx60_len; - return pc; - } -void *compile_bsx61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx61, gen_bsx61_len); - ctx->pc += gen_bsx61_len; - return pc; - } -void *compile_bsx62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx62, gen_bsx62_len); - ctx->pc += gen_bsx62_len; - return pc; - } -void *compile_bsx63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx63, gen_bsx63_len); - ctx->pc += gen_bsx63_len; - return pc; - } -void *compile_bsx7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx7, gen_bsx7_len); - ctx->pc += gen_bsx7_len; - return pc; - } -void *compile_bsx8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx8, gen_bsx8_len); - ctx->pc += gen_bsx8_len; - return pc; - } -void *compile_bsx9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsx9, gen_bsx9_len); - ctx->pc += gen_bsx9_len; - return pc; - } -void *compile_bsy0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy0, gen_bsy0_len); - ctx->pc += gen_bsy0_len; - return pc; - } -void *compile_bsy1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy1, gen_bsy1_len); - ctx->pc += gen_bsy1_len; - return pc; - } -void *compile_bsy10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy10, gen_bsy10_len); - ctx->pc += gen_bsy10_len; - return pc; - } -void *compile_bsy11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy11, gen_bsy11_len); - ctx->pc += gen_bsy11_len; - return pc; - } -void *compile_bsy12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy12, gen_bsy12_len); - ctx->pc += gen_bsy12_len; - return pc; - } -void *compile_bsy13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy13, gen_bsy13_len); - ctx->pc += gen_bsy13_len; - return pc; - } -void *compile_bsy14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy14, gen_bsy14_len); - ctx->pc += gen_bsy14_len; - return pc; - } -void *compile_bsy15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy15, gen_bsy15_len); - ctx->pc += gen_bsy15_len; - return pc; - } -void *compile_bsy16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy16, gen_bsy16_len); - ctx->pc += gen_bsy16_len; - return pc; - } -void *compile_bsy17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy17, gen_bsy17_len); - ctx->pc += gen_bsy17_len; - return pc; - } -void *compile_bsy18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy18, gen_bsy18_len); - ctx->pc += gen_bsy18_len; - return pc; - } -void *compile_bsy19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy19, gen_bsy19_len); - ctx->pc += gen_bsy19_len; - return pc; - } -void *compile_bsy2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy2, gen_bsy2_len); - ctx->pc += gen_bsy2_len; - return pc; - } -void *compile_bsy20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy20, gen_bsy20_len); - ctx->pc += gen_bsy20_len; - return pc; - } -void *compile_bsy21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy21, gen_bsy21_len); - ctx->pc += gen_bsy21_len; - return pc; - } -void *compile_bsy22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy22, gen_bsy22_len); - ctx->pc += gen_bsy22_len; - return pc; - } -void *compile_bsy23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy23, gen_bsy23_len); - ctx->pc += gen_bsy23_len; - return pc; - } -void *compile_bsy24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy24, gen_bsy24_len); - ctx->pc += gen_bsy24_len; - return pc; - } -void *compile_bsy25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy25, gen_bsy25_len); - ctx->pc += gen_bsy25_len; - return pc; - } -void *compile_bsy26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy26, gen_bsy26_len); - ctx->pc += gen_bsy26_len; - return pc; - } -void *compile_bsy27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy27, gen_bsy27_len); - ctx->pc += gen_bsy27_len; - return pc; - } -void *compile_bsy28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy28, gen_bsy28_len); - ctx->pc += gen_bsy28_len; - return pc; - } -void *compile_bsy29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy29, gen_bsy29_len); - ctx->pc += gen_bsy29_len; - return pc; - } -void *compile_bsy3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy3, gen_bsy3_len); - ctx->pc += gen_bsy3_len; - return pc; - } -void *compile_bsy30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy30, gen_bsy30_len); - ctx->pc += gen_bsy30_len; - return pc; - } -void *compile_bsy31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy31, gen_bsy31_len); - ctx->pc += gen_bsy31_len; - return pc; - } -void *compile_bsy32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy32, gen_bsy32_len); - ctx->pc += gen_bsy32_len; - return pc; - } -void *compile_bsy33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy33, gen_bsy33_len); - ctx->pc += gen_bsy33_len; - return pc; - } -void *compile_bsy34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy34, gen_bsy34_len); - ctx->pc += gen_bsy34_len; - return pc; - } -void *compile_bsy35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy35, gen_bsy35_len); - ctx->pc += gen_bsy35_len; - return pc; - } -void *compile_bsy36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy36, gen_bsy36_len); - ctx->pc += gen_bsy36_len; - return pc; - } -void *compile_bsy37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy37, gen_bsy37_len); - ctx->pc += gen_bsy37_len; - return pc; - } -void *compile_bsy38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy38, gen_bsy38_len); - ctx->pc += gen_bsy38_len; - return pc; - } -void *compile_bsy39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy39, gen_bsy39_len); - ctx->pc += gen_bsy39_len; - return pc; - } -void *compile_bsy4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy4, gen_bsy4_len); - ctx->pc += gen_bsy4_len; - return pc; - } -void *compile_bsy40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy40, gen_bsy40_len); - ctx->pc += gen_bsy40_len; - return pc; - } -void *compile_bsy41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy41, gen_bsy41_len); - ctx->pc += gen_bsy41_len; - return pc; - } -void *compile_bsy42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy42, gen_bsy42_len); - ctx->pc += gen_bsy42_len; - return pc; - } -void *compile_bsy43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy43, gen_bsy43_len); - ctx->pc += gen_bsy43_len; - return pc; - } -void *compile_bsy44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy44, gen_bsy44_len); - ctx->pc += gen_bsy44_len; - return pc; - } -void *compile_bsy45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy45, gen_bsy45_len); - ctx->pc += gen_bsy45_len; - return pc; - } -void *compile_bsy46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy46, gen_bsy46_len); - ctx->pc += gen_bsy46_len; - return pc; - } -void *compile_bsy47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy47, gen_bsy47_len); - ctx->pc += gen_bsy47_len; - return pc; - } -void *compile_bsy48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy48, gen_bsy48_len); - ctx->pc += gen_bsy48_len; - return pc; - } -void *compile_bsy49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy49, gen_bsy49_len); - ctx->pc += gen_bsy49_len; - return pc; - } -void *compile_bsy5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy5, gen_bsy5_len); - ctx->pc += gen_bsy5_len; - return pc; - } -void *compile_bsy50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy50, gen_bsy50_len); - ctx->pc += gen_bsy50_len; - return pc; - } -void *compile_bsy51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy51, gen_bsy51_len); - ctx->pc += gen_bsy51_len; - return pc; - } -void *compile_bsy52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy52, gen_bsy52_len); - ctx->pc += gen_bsy52_len; - return pc; - } -void *compile_bsy53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy53, gen_bsy53_len); - ctx->pc += gen_bsy53_len; - return pc; - } -void *compile_bsy54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy54, gen_bsy54_len); - ctx->pc += gen_bsy54_len; - return pc; - } -void *compile_bsy55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy55, gen_bsy55_len); - ctx->pc += gen_bsy55_len; - return pc; - } -void *compile_bsy56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy56, gen_bsy56_len); - ctx->pc += gen_bsy56_len; - return pc; - } -void *compile_bsy57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy57, gen_bsy57_len); - ctx->pc += gen_bsy57_len; - return pc; - } -void *compile_bsy58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy58, gen_bsy58_len); - ctx->pc += gen_bsy58_len; - return pc; - } -void *compile_bsy59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy59, gen_bsy59_len); - ctx->pc += gen_bsy59_len; - return pc; - } -void *compile_bsy6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy6, gen_bsy6_len); - ctx->pc += gen_bsy6_len; - return pc; - } -void *compile_bsy60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy60, gen_bsy60_len); - ctx->pc += gen_bsy60_len; - return pc; - } -void *compile_bsy61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy61, gen_bsy61_len); - ctx->pc += gen_bsy61_len; - return pc; - } -void *compile_bsy62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy62, gen_bsy62_len); - ctx->pc += gen_bsy62_len; - return pc; - } -void *compile_bsy63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy63, gen_bsy63_len); - ctx->pc += gen_bsy63_len; - return pc; - } -void *compile_bsy7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy7, gen_bsy7_len); - ctx->pc += gen_bsy7_len; - return pc; - } -void *compile_bsy8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy8, gen_bsy8_len); - ctx->pc += gen_bsy8_len; - return pc; - } -void *compile_bsy9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_bsy9, gen_bsy9_len); - ctx->pc += gen_bsy9_len; - return pc; - } -void *compile_lia0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia0, gen_lia0_len); - ctx->pc += gen_lia0_len; - return pc; - } -void *compile_lia1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia1, gen_lia1_len); - ctx->pc += gen_lia1_len; - return pc; - } -void *compile_lia10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia10, gen_lia10_len); - ctx->pc += gen_lia10_len; - return pc; - } -void *compile_lia100(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia100, gen_lia100_len); - ctx->pc += gen_lia100_len; - return pc; - } -void *compile_lia101(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia101, gen_lia101_len); - ctx->pc += gen_lia101_len; - return pc; - } -void *compile_lia102(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia102, gen_lia102_len); - ctx->pc += gen_lia102_len; - return pc; - } -void *compile_lia103(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia103, gen_lia103_len); - ctx->pc += gen_lia103_len; - return pc; - } -void *compile_lia104(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia104, gen_lia104_len); - ctx->pc += gen_lia104_len; - return pc; - } -void *compile_lia105(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia105, gen_lia105_len); - ctx->pc += gen_lia105_len; - return pc; - } -void *compile_lia106(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia106, gen_lia106_len); - ctx->pc += gen_lia106_len; - return pc; - } -void *compile_lia107(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia107, gen_lia107_len); - ctx->pc += gen_lia107_len; - return pc; - } -void *compile_lia108(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia108, gen_lia108_len); - ctx->pc += gen_lia108_len; - return pc; - } -void *compile_lia109(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia109, gen_lia109_len); - ctx->pc += gen_lia109_len; - return pc; - } -void *compile_lia11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia11, gen_lia11_len); - ctx->pc += gen_lia11_len; - return pc; - } -void *compile_lia110(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia110, gen_lia110_len); - ctx->pc += gen_lia110_len; - return pc; - } -void *compile_lia111(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia111, gen_lia111_len); - ctx->pc += gen_lia111_len; - return pc; - } -void *compile_lia112(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia112, gen_lia112_len); - ctx->pc += gen_lia112_len; - return pc; - } -void *compile_lia113(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia113, gen_lia113_len); - ctx->pc += gen_lia113_len; - return pc; - } -void *compile_lia114(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia114, gen_lia114_len); - ctx->pc += gen_lia114_len; - return pc; - } -void *compile_lia115(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia115, gen_lia115_len); - ctx->pc += gen_lia115_len; - return pc; - } -void *compile_lia116(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia116, gen_lia116_len); - ctx->pc += gen_lia116_len; - return pc; - } -void *compile_lia117(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia117, gen_lia117_len); - ctx->pc += gen_lia117_len; - return pc; - } -void *compile_lia118(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia118, gen_lia118_len); - ctx->pc += gen_lia118_len; - return pc; - } -void *compile_lia119(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia119, gen_lia119_len); - ctx->pc += gen_lia119_len; - return pc; - } -void *compile_lia12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia12, gen_lia12_len); - ctx->pc += gen_lia12_len; - return pc; - } -void *compile_lia120(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia120, gen_lia120_len); - ctx->pc += gen_lia120_len; - return pc; - } -void *compile_lia121(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia121, gen_lia121_len); - ctx->pc += gen_lia121_len; - return pc; - } -void *compile_lia122(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia122, gen_lia122_len); - ctx->pc += gen_lia122_len; - return pc; - } -void *compile_lia123(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia123, gen_lia123_len); - ctx->pc += gen_lia123_len; - return pc; - } -void *compile_lia124(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia124, gen_lia124_len); - ctx->pc += gen_lia124_len; - return pc; - } -void *compile_lia125(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia125, gen_lia125_len); - ctx->pc += gen_lia125_len; - return pc; - } -void *compile_lia126(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia126, gen_lia126_len); - ctx->pc += gen_lia126_len; - return pc; - } -void *compile_lia127(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia127, gen_lia127_len); - ctx->pc += gen_lia127_len; - return pc; - } -void *compile_lia128(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia128, gen_lia128_len); - ctx->pc += gen_lia128_len; - return pc; - } -void *compile_lia129(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia129, gen_lia129_len); - ctx->pc += gen_lia129_len; - return pc; - } -void *compile_lia13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia13, gen_lia13_len); - ctx->pc += gen_lia13_len; - return pc; - } -void *compile_lia130(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia130, gen_lia130_len); - ctx->pc += gen_lia130_len; - return pc; - } -void *compile_lia131(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia131, gen_lia131_len); - ctx->pc += gen_lia131_len; - return pc; - } -void *compile_lia132(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia132, gen_lia132_len); - ctx->pc += gen_lia132_len; - return pc; - } -void *compile_lia133(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia133, gen_lia133_len); - ctx->pc += gen_lia133_len; - return pc; - } -void *compile_lia134(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia134, gen_lia134_len); - ctx->pc += gen_lia134_len; - return pc; - } -void *compile_lia135(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia135, gen_lia135_len); - ctx->pc += gen_lia135_len; - return pc; - } -void *compile_lia136(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia136, gen_lia136_len); - ctx->pc += gen_lia136_len; - return pc; - } -void *compile_lia137(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia137, gen_lia137_len); - ctx->pc += gen_lia137_len; - return pc; - } -void *compile_lia138(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia138, gen_lia138_len); - ctx->pc += gen_lia138_len; - return pc; - } -void *compile_lia139(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia139, gen_lia139_len); - ctx->pc += gen_lia139_len; - return pc; - } -void *compile_lia14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia14, gen_lia14_len); - ctx->pc += gen_lia14_len; - return pc; - } -void *compile_lia140(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia140, gen_lia140_len); - ctx->pc += gen_lia140_len; - return pc; - } -void *compile_lia141(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia141, gen_lia141_len); - ctx->pc += gen_lia141_len; - return pc; - } -void *compile_lia142(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia142, gen_lia142_len); - ctx->pc += gen_lia142_len; - return pc; - } -void *compile_lia143(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia143, gen_lia143_len); - ctx->pc += gen_lia143_len; - return pc; - } -void *compile_lia144(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia144, gen_lia144_len); - ctx->pc += gen_lia144_len; - return pc; - } -void *compile_lia145(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia145, gen_lia145_len); - ctx->pc += gen_lia145_len; - return pc; - } -void *compile_lia146(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia146, gen_lia146_len); - ctx->pc += gen_lia146_len; - return pc; - } -void *compile_lia147(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia147, gen_lia147_len); - ctx->pc += gen_lia147_len; - return pc; - } -void *compile_lia148(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia148, gen_lia148_len); - ctx->pc += gen_lia148_len; - return pc; - } -void *compile_lia149(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia149, gen_lia149_len); - ctx->pc += gen_lia149_len; - return pc; - } -void *compile_lia15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia15, gen_lia15_len); - ctx->pc += gen_lia15_len; - return pc; - } -void *compile_lia150(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia150, gen_lia150_len); - ctx->pc += gen_lia150_len; - return pc; - } -void *compile_lia151(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia151, gen_lia151_len); - ctx->pc += gen_lia151_len; - return pc; - } -void *compile_lia152(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia152, gen_lia152_len); - ctx->pc += gen_lia152_len; - return pc; - } -void *compile_lia153(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia153, gen_lia153_len); - ctx->pc += gen_lia153_len; - return pc; - } -void *compile_lia154(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia154, gen_lia154_len); - ctx->pc += gen_lia154_len; - return pc; - } -void *compile_lia155(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia155, gen_lia155_len); - ctx->pc += gen_lia155_len; - return pc; - } -void *compile_lia156(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia156, gen_lia156_len); - ctx->pc += gen_lia156_len; - return pc; - } -void *compile_lia157(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia157, gen_lia157_len); - ctx->pc += gen_lia157_len; - return pc; - } -void *compile_lia158(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia158, gen_lia158_len); - ctx->pc += gen_lia158_len; - return pc; - } -void *compile_lia159(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia159, gen_lia159_len); - ctx->pc += gen_lia159_len; - return pc; - } -void *compile_lia16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia16, gen_lia16_len); - ctx->pc += gen_lia16_len; - return pc; - } -void *compile_lia160(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia160, gen_lia160_len); - ctx->pc += gen_lia160_len; - return pc; - } -void *compile_lia161(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia161, gen_lia161_len); - ctx->pc += gen_lia161_len; - return pc; - } -void *compile_lia162(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia162, gen_lia162_len); - ctx->pc += gen_lia162_len; - return pc; - } -void *compile_lia163(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia163, gen_lia163_len); - ctx->pc += gen_lia163_len; - return pc; - } -void *compile_lia164(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia164, gen_lia164_len); - ctx->pc += gen_lia164_len; - return pc; - } -void *compile_lia165(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia165, gen_lia165_len); - ctx->pc += gen_lia165_len; - return pc; - } -void *compile_lia166(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia166, gen_lia166_len); - ctx->pc += gen_lia166_len; - return pc; - } -void *compile_lia167(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia167, gen_lia167_len); - ctx->pc += gen_lia167_len; - return pc; - } -void *compile_lia168(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia168, gen_lia168_len); - ctx->pc += gen_lia168_len; - return pc; - } -void *compile_lia169(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia169, gen_lia169_len); - ctx->pc += gen_lia169_len; - return pc; - } -void *compile_lia17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia17, gen_lia17_len); - ctx->pc += gen_lia17_len; - return pc; - } -void *compile_lia170(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia170, gen_lia170_len); - ctx->pc += gen_lia170_len; - return pc; - } -void *compile_lia171(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia171, gen_lia171_len); - ctx->pc += gen_lia171_len; - return pc; - } -void *compile_lia172(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia172, gen_lia172_len); - ctx->pc += gen_lia172_len; - return pc; - } -void *compile_lia173(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia173, gen_lia173_len); - ctx->pc += gen_lia173_len; - return pc; - } -void *compile_lia174(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia174, gen_lia174_len); - ctx->pc += gen_lia174_len; - return pc; - } -void *compile_lia175(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia175, gen_lia175_len); - ctx->pc += gen_lia175_len; - return pc; - } -void *compile_lia176(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia176, gen_lia176_len); - ctx->pc += gen_lia176_len; - return pc; - } -void *compile_lia177(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia177, gen_lia177_len); - ctx->pc += gen_lia177_len; - return pc; - } -void *compile_lia178(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia178, gen_lia178_len); - ctx->pc += gen_lia178_len; - return pc; - } -void *compile_lia179(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia179, gen_lia179_len); - ctx->pc += gen_lia179_len; - return pc; - } -void *compile_lia18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia18, gen_lia18_len); - ctx->pc += gen_lia18_len; - return pc; - } -void *compile_lia180(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia180, gen_lia180_len); - ctx->pc += gen_lia180_len; - return pc; - } -void *compile_lia181(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia181, gen_lia181_len); - ctx->pc += gen_lia181_len; - return pc; - } -void *compile_lia182(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia182, gen_lia182_len); - ctx->pc += gen_lia182_len; - return pc; - } -void *compile_lia183(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia183, gen_lia183_len); - ctx->pc += gen_lia183_len; - return pc; - } -void *compile_lia184(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia184, gen_lia184_len); - ctx->pc += gen_lia184_len; - return pc; - } -void *compile_lia185(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia185, gen_lia185_len); - ctx->pc += gen_lia185_len; - return pc; - } -void *compile_lia186(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia186, gen_lia186_len); - ctx->pc += gen_lia186_len; - return pc; - } -void *compile_lia187(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia187, gen_lia187_len); - ctx->pc += gen_lia187_len; - return pc; - } -void *compile_lia188(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia188, gen_lia188_len); - ctx->pc += gen_lia188_len; - return pc; - } -void *compile_lia189(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia189, gen_lia189_len); - ctx->pc += gen_lia189_len; - return pc; - } -void *compile_lia19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia19, gen_lia19_len); - ctx->pc += gen_lia19_len; - return pc; - } -void *compile_lia190(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia190, gen_lia190_len); - ctx->pc += gen_lia190_len; - return pc; - } -void *compile_lia191(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia191, gen_lia191_len); - ctx->pc += gen_lia191_len; - return pc; - } -void *compile_lia192(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia192, gen_lia192_len); - ctx->pc += gen_lia192_len; - return pc; - } -void *compile_lia193(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia193, gen_lia193_len); - ctx->pc += gen_lia193_len; - return pc; - } -void *compile_lia194(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia194, gen_lia194_len); - ctx->pc += gen_lia194_len; - return pc; - } -void *compile_lia195(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia195, gen_lia195_len); - ctx->pc += gen_lia195_len; - return pc; - } -void *compile_lia196(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia196, gen_lia196_len); - ctx->pc += gen_lia196_len; - return pc; - } -void *compile_lia197(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia197, gen_lia197_len); - ctx->pc += gen_lia197_len; - return pc; - } -void *compile_lia198(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia198, gen_lia198_len); - ctx->pc += gen_lia198_len; - return pc; - } -void *compile_lia199(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia199, gen_lia199_len); - ctx->pc += gen_lia199_len; - return pc; - } -void *compile_lia2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia2, gen_lia2_len); - ctx->pc += gen_lia2_len; - return pc; - } -void *compile_lia20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia20, gen_lia20_len); - ctx->pc += gen_lia20_len; - return pc; - } -void *compile_lia200(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia200, gen_lia200_len); - ctx->pc += gen_lia200_len; - return pc; - } -void *compile_lia201(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia201, gen_lia201_len); - ctx->pc += gen_lia201_len; - return pc; - } -void *compile_lia202(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia202, gen_lia202_len); - ctx->pc += gen_lia202_len; - return pc; - } -void *compile_lia203(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia203, gen_lia203_len); - ctx->pc += gen_lia203_len; - return pc; - } -void *compile_lia204(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia204, gen_lia204_len); - ctx->pc += gen_lia204_len; - return pc; - } -void *compile_lia205(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia205, gen_lia205_len); - ctx->pc += gen_lia205_len; - return pc; - } -void *compile_lia206(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia206, gen_lia206_len); - ctx->pc += gen_lia206_len; - return pc; - } -void *compile_lia207(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia207, gen_lia207_len); - ctx->pc += gen_lia207_len; - return pc; - } -void *compile_lia208(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia208, gen_lia208_len); - ctx->pc += gen_lia208_len; - return pc; - } -void *compile_lia209(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia209, gen_lia209_len); - ctx->pc += gen_lia209_len; - return pc; - } -void *compile_lia21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia21, gen_lia21_len); - ctx->pc += gen_lia21_len; - return pc; - } -void *compile_lia210(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia210, gen_lia210_len); - ctx->pc += gen_lia210_len; - return pc; - } -void *compile_lia211(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia211, gen_lia211_len); - ctx->pc += gen_lia211_len; - return pc; - } -void *compile_lia212(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia212, gen_lia212_len); - ctx->pc += gen_lia212_len; - return pc; - } -void *compile_lia213(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia213, gen_lia213_len); - ctx->pc += gen_lia213_len; - return pc; - } -void *compile_lia214(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia214, gen_lia214_len); - ctx->pc += gen_lia214_len; - return pc; - } -void *compile_lia215(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia215, gen_lia215_len); - ctx->pc += gen_lia215_len; - return pc; - } -void *compile_lia216(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia216, gen_lia216_len); - ctx->pc += gen_lia216_len; - return pc; - } -void *compile_lia217(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia217, gen_lia217_len); - ctx->pc += gen_lia217_len; - return pc; - } -void *compile_lia218(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia218, gen_lia218_len); - ctx->pc += gen_lia218_len; - return pc; - } -void *compile_lia219(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia219, gen_lia219_len); - ctx->pc += gen_lia219_len; - return pc; - } -void *compile_lia22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia22, gen_lia22_len); - ctx->pc += gen_lia22_len; - return pc; - } -void *compile_lia220(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia220, gen_lia220_len); - ctx->pc += gen_lia220_len; - return pc; - } -void *compile_lia221(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia221, gen_lia221_len); - ctx->pc += gen_lia221_len; - return pc; - } -void *compile_lia222(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia222, gen_lia222_len); - ctx->pc += gen_lia222_len; - return pc; - } -void *compile_lia223(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia223, gen_lia223_len); - ctx->pc += gen_lia223_len; - return pc; - } -void *compile_lia224(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia224, gen_lia224_len); - ctx->pc += gen_lia224_len; - return pc; - } -void *compile_lia225(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia225, gen_lia225_len); - ctx->pc += gen_lia225_len; - return pc; - } -void *compile_lia226(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia226, gen_lia226_len); - ctx->pc += gen_lia226_len; - return pc; - } -void *compile_lia227(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia227, gen_lia227_len); - ctx->pc += gen_lia227_len; - return pc; - } -void *compile_lia228(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia228, gen_lia228_len); - ctx->pc += gen_lia228_len; - return pc; - } -void *compile_lia229(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia229, gen_lia229_len); - ctx->pc += gen_lia229_len; - return pc; - } -void *compile_lia23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia23, gen_lia23_len); - ctx->pc += gen_lia23_len; - return pc; - } -void *compile_lia230(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia230, gen_lia230_len); - ctx->pc += gen_lia230_len; - return pc; - } -void *compile_lia231(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia231, gen_lia231_len); - ctx->pc += gen_lia231_len; - return pc; - } -void *compile_lia232(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia232, gen_lia232_len); - ctx->pc += gen_lia232_len; - return pc; - } -void *compile_lia233(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia233, gen_lia233_len); - ctx->pc += gen_lia233_len; - return pc; - } -void *compile_lia234(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia234, gen_lia234_len); - ctx->pc += gen_lia234_len; - return pc; - } -void *compile_lia235(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia235, gen_lia235_len); - ctx->pc += gen_lia235_len; - return pc; - } -void *compile_lia236(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia236, gen_lia236_len); - ctx->pc += gen_lia236_len; - return pc; - } -void *compile_lia237(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia237, gen_lia237_len); - ctx->pc += gen_lia237_len; - return pc; - } -void *compile_lia238(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia238, gen_lia238_len); - ctx->pc += gen_lia238_len; - return pc; - } -void *compile_lia239(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia239, gen_lia239_len); - ctx->pc += gen_lia239_len; - return pc; - } -void *compile_lia24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia24, gen_lia24_len); - ctx->pc += gen_lia24_len; - return pc; - } -void *compile_lia240(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia240, gen_lia240_len); - ctx->pc += gen_lia240_len; - return pc; - } -void *compile_lia241(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia241, gen_lia241_len); - ctx->pc += gen_lia241_len; - return pc; - } -void *compile_lia242(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia242, gen_lia242_len); - ctx->pc += gen_lia242_len; - return pc; - } -void *compile_lia243(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia243, gen_lia243_len); - ctx->pc += gen_lia243_len; - return pc; - } -void *compile_lia244(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia244, gen_lia244_len); - ctx->pc += gen_lia244_len; - return pc; - } -void *compile_lia245(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia245, gen_lia245_len); - ctx->pc += gen_lia245_len; - return pc; - } -void *compile_lia246(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia246, gen_lia246_len); - ctx->pc += gen_lia246_len; - return pc; - } -void *compile_lia247(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia247, gen_lia247_len); - ctx->pc += gen_lia247_len; - return pc; - } -void *compile_lia248(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia248, gen_lia248_len); - ctx->pc += gen_lia248_len; - return pc; - } -void *compile_lia249(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia249, gen_lia249_len); - ctx->pc += gen_lia249_len; - return pc; - } -void *compile_lia25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia25, gen_lia25_len); - ctx->pc += gen_lia25_len; - return pc; - } -void *compile_lia250(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia250, gen_lia250_len); - ctx->pc += gen_lia250_len; - return pc; - } -void *compile_lia251(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia251, gen_lia251_len); - ctx->pc += gen_lia251_len; - return pc; - } -void *compile_lia252(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia252, gen_lia252_len); - ctx->pc += gen_lia252_len; - return pc; - } -void *compile_lia253(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia253, gen_lia253_len); - ctx->pc += gen_lia253_len; - return pc; - } -void *compile_lia254(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia254, gen_lia254_len); - ctx->pc += gen_lia254_len; - return pc; - } -void *compile_lia255(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia255, gen_lia255_len); - ctx->pc += gen_lia255_len; - return pc; - } -void *compile_lia26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia26, gen_lia26_len); - ctx->pc += gen_lia26_len; - return pc; - } -void *compile_lia27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia27, gen_lia27_len); - ctx->pc += gen_lia27_len; - return pc; - } -void *compile_lia28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia28, gen_lia28_len); - ctx->pc += gen_lia28_len; - return pc; - } -void *compile_lia29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia29, gen_lia29_len); - ctx->pc += gen_lia29_len; - return pc; - } -void *compile_lia3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia3, gen_lia3_len); - ctx->pc += gen_lia3_len; - return pc; - } -void *compile_lia30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia30, gen_lia30_len); - ctx->pc += gen_lia30_len; - return pc; - } -void *compile_lia31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia31, gen_lia31_len); - ctx->pc += gen_lia31_len; - return pc; - } -void *compile_lia32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia32, gen_lia32_len); - ctx->pc += gen_lia32_len; - return pc; - } -void *compile_lia33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia33, gen_lia33_len); - ctx->pc += gen_lia33_len; - return pc; - } -void *compile_lia34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia34, gen_lia34_len); - ctx->pc += gen_lia34_len; - return pc; - } -void *compile_lia35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia35, gen_lia35_len); - ctx->pc += gen_lia35_len; - return pc; - } -void *compile_lia36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia36, gen_lia36_len); - ctx->pc += gen_lia36_len; - return pc; - } -void *compile_lia37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia37, gen_lia37_len); - ctx->pc += gen_lia37_len; - return pc; - } -void *compile_lia38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia38, gen_lia38_len); - ctx->pc += gen_lia38_len; - return pc; - } -void *compile_lia39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia39, gen_lia39_len); - ctx->pc += gen_lia39_len; - return pc; - } -void *compile_lia4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia4, gen_lia4_len); - ctx->pc += gen_lia4_len; - return pc; - } -void *compile_lia40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia40, gen_lia40_len); - ctx->pc += gen_lia40_len; - return pc; - } -void *compile_lia41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia41, gen_lia41_len); - ctx->pc += gen_lia41_len; - return pc; - } -void *compile_lia42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia42, gen_lia42_len); - ctx->pc += gen_lia42_len; - return pc; - } -void *compile_lia43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia43, gen_lia43_len); - ctx->pc += gen_lia43_len; - return pc; - } -void *compile_lia44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia44, gen_lia44_len); - ctx->pc += gen_lia44_len; - return pc; - } -void *compile_lia45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia45, gen_lia45_len); - ctx->pc += gen_lia45_len; - return pc; - } -void *compile_lia46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia46, gen_lia46_len); - ctx->pc += gen_lia46_len; - return pc; - } -void *compile_lia47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia47, gen_lia47_len); - ctx->pc += gen_lia47_len; - return pc; - } -void *compile_lia48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia48, gen_lia48_len); - ctx->pc += gen_lia48_len; - return pc; - } -void *compile_lia49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia49, gen_lia49_len); - ctx->pc += gen_lia49_len; - return pc; - } -void *compile_lia5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia5, gen_lia5_len); - ctx->pc += gen_lia5_len; - return pc; - } -void *compile_lia50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia50, gen_lia50_len); - ctx->pc += gen_lia50_len; - return pc; - } -void *compile_lia51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia51, gen_lia51_len); - ctx->pc += gen_lia51_len; - return pc; - } -void *compile_lia52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia52, gen_lia52_len); - ctx->pc += gen_lia52_len; - return pc; - } -void *compile_lia53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia53, gen_lia53_len); - ctx->pc += gen_lia53_len; - return pc; - } -void *compile_lia54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia54, gen_lia54_len); - ctx->pc += gen_lia54_len; - return pc; - } -void *compile_lia55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia55, gen_lia55_len); - ctx->pc += gen_lia55_len; - return pc; - } -void *compile_lia56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia56, gen_lia56_len); - ctx->pc += gen_lia56_len; - return pc; - } -void *compile_lia57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia57, gen_lia57_len); - ctx->pc += gen_lia57_len; - return pc; - } -void *compile_lia58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia58, gen_lia58_len); - ctx->pc += gen_lia58_len; - return pc; - } -void *compile_lia59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia59, gen_lia59_len); - ctx->pc += gen_lia59_len; - return pc; - } -void *compile_lia6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia6, gen_lia6_len); - ctx->pc += gen_lia6_len; - return pc; - } -void *compile_lia60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia60, gen_lia60_len); - ctx->pc += gen_lia60_len; - return pc; - } -void *compile_lia61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia61, gen_lia61_len); - ctx->pc += gen_lia61_len; - return pc; - } -void *compile_lia62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia62, gen_lia62_len); - ctx->pc += gen_lia62_len; - return pc; - } -void *compile_lia63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia63, gen_lia63_len); - ctx->pc += gen_lia63_len; - return pc; - } -void *compile_lia64(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia64, gen_lia64_len); - ctx->pc += gen_lia64_len; - return pc; - } -void *compile_lia65(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia65, gen_lia65_len); - ctx->pc += gen_lia65_len; - return pc; - } -void *compile_lia66(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia66, gen_lia66_len); - ctx->pc += gen_lia66_len; - return pc; - } -void *compile_lia67(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia67, gen_lia67_len); - ctx->pc += gen_lia67_len; - return pc; - } -void *compile_lia68(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia68, gen_lia68_len); - ctx->pc += gen_lia68_len; - return pc; - } -void *compile_lia69(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia69, gen_lia69_len); - ctx->pc += gen_lia69_len; - return pc; - } -void *compile_lia7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia7, gen_lia7_len); - ctx->pc += gen_lia7_len; - return pc; - } -void *compile_lia70(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia70, gen_lia70_len); - ctx->pc += gen_lia70_len; - return pc; - } -void *compile_lia71(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia71, gen_lia71_len); - ctx->pc += gen_lia71_len; - return pc; - } -void *compile_lia72(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia72, gen_lia72_len); - ctx->pc += gen_lia72_len; - return pc; - } -void *compile_lia73(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia73, gen_lia73_len); - ctx->pc += gen_lia73_len; - return pc; - } -void *compile_lia74(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia74, gen_lia74_len); - ctx->pc += gen_lia74_len; - return pc; - } -void *compile_lia75(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia75, gen_lia75_len); - ctx->pc += gen_lia75_len; - return pc; - } -void *compile_lia76(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia76, gen_lia76_len); - ctx->pc += gen_lia76_len; - return pc; - } -void *compile_lia77(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia77, gen_lia77_len); - ctx->pc += gen_lia77_len; - return pc; - } -void *compile_lia78(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia78, gen_lia78_len); - ctx->pc += gen_lia78_len; - return pc; - } -void *compile_lia79(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia79, gen_lia79_len); - ctx->pc += gen_lia79_len; - return pc; - } -void *compile_lia8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia8, gen_lia8_len); - ctx->pc += gen_lia8_len; - return pc; - } -void *compile_lia80(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia80, gen_lia80_len); - ctx->pc += gen_lia80_len; - return pc; - } -void *compile_lia81(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia81, gen_lia81_len); - ctx->pc += gen_lia81_len; - return pc; - } -void *compile_lia82(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia82, gen_lia82_len); - ctx->pc += gen_lia82_len; - return pc; - } -void *compile_lia83(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia83, gen_lia83_len); - ctx->pc += gen_lia83_len; - return pc; - } -void *compile_lia84(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia84, gen_lia84_len); - ctx->pc += gen_lia84_len; - return pc; - } -void *compile_lia85(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia85, gen_lia85_len); - ctx->pc += gen_lia85_len; - return pc; - } -void *compile_lia86(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia86, gen_lia86_len); - ctx->pc += gen_lia86_len; - return pc; - } -void *compile_lia87(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia87, gen_lia87_len); - ctx->pc += gen_lia87_len; - return pc; - } -void *compile_lia88(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia88, gen_lia88_len); - ctx->pc += gen_lia88_len; - return pc; - } -void *compile_lia89(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia89, gen_lia89_len); - ctx->pc += gen_lia89_len; - return pc; - } -void *compile_lia9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia9, gen_lia9_len); - ctx->pc += gen_lia9_len; - return pc; - } -void *compile_lia90(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia90, gen_lia90_len); - ctx->pc += gen_lia90_len; - return pc; - } -void *compile_lia91(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia91, gen_lia91_len); - ctx->pc += gen_lia91_len; - return pc; - } -void *compile_lia92(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia92, gen_lia92_len); - ctx->pc += gen_lia92_len; - return pc; - } -void *compile_lia93(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia93, gen_lia93_len); - ctx->pc += gen_lia93_len; - return pc; - } -void *compile_lia94(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia94, gen_lia94_len); - ctx->pc += gen_lia94_len; - return pc; - } -void *compile_lia95(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia95, gen_lia95_len); - ctx->pc += gen_lia95_len; - return pc; - } -void *compile_lia96(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia96, gen_lia96_len); - ctx->pc += gen_lia96_len; - return pc; - } -void *compile_lia97(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia97, gen_lia97_len); - ctx->pc += gen_lia97_len; - return pc; - } -void *compile_lia98(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia98, gen_lia98_len); - ctx->pc += gen_lia98_len; - return pc; - } -void *compile_lia99(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lia99, gen_lia99_len); - ctx->pc += gen_lia99_len; - return pc; - } -void *compile_lio0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio0, gen_lio0_len); - ctx->pc += gen_lio0_len; - return pc; - } -void *compile_lio1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio1, gen_lio1_len); - ctx->pc += gen_lio1_len; - return pc; - } -void *compile_lio10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio10, gen_lio10_len); - ctx->pc += gen_lio10_len; - return pc; - } -void *compile_lio100(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio100, gen_lio100_len); - ctx->pc += gen_lio100_len; - return pc; - } -void *compile_lio101(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio101, gen_lio101_len); - ctx->pc += gen_lio101_len; - return pc; - } -void *compile_lio102(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio102, gen_lio102_len); - ctx->pc += gen_lio102_len; - return pc; - } -void *compile_lio103(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio103, gen_lio103_len); - ctx->pc += gen_lio103_len; - return pc; - } -void *compile_lio104(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio104, gen_lio104_len); - ctx->pc += gen_lio104_len; - return pc; - } -void *compile_lio105(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio105, gen_lio105_len); - ctx->pc += gen_lio105_len; - return pc; - } -void *compile_lio106(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio106, gen_lio106_len); - ctx->pc += gen_lio106_len; - return pc; - } -void *compile_lio107(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio107, gen_lio107_len); - ctx->pc += gen_lio107_len; - return pc; - } -void *compile_lio108(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio108, gen_lio108_len); - ctx->pc += gen_lio108_len; - return pc; - } -void *compile_lio109(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio109, gen_lio109_len); - ctx->pc += gen_lio109_len; - return pc; - } -void *compile_lio11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio11, gen_lio11_len); - ctx->pc += gen_lio11_len; - return pc; - } -void *compile_lio110(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio110, gen_lio110_len); - ctx->pc += gen_lio110_len; - return pc; - } -void *compile_lio111(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio111, gen_lio111_len); - ctx->pc += gen_lio111_len; - return pc; - } -void *compile_lio112(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio112, gen_lio112_len); - ctx->pc += gen_lio112_len; - return pc; - } -void *compile_lio113(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio113, gen_lio113_len); - ctx->pc += gen_lio113_len; - return pc; - } -void *compile_lio114(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio114, gen_lio114_len); - ctx->pc += gen_lio114_len; - return pc; - } -void *compile_lio115(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio115, gen_lio115_len); - ctx->pc += gen_lio115_len; - return pc; - } -void *compile_lio116(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio116, gen_lio116_len); - ctx->pc += gen_lio116_len; - return pc; - } -void *compile_lio117(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio117, gen_lio117_len); - ctx->pc += gen_lio117_len; - return pc; - } -void *compile_lio118(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio118, gen_lio118_len); - ctx->pc += gen_lio118_len; - return pc; - } -void *compile_lio119(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio119, gen_lio119_len); - ctx->pc += gen_lio119_len; - return pc; - } -void *compile_lio12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio12, gen_lio12_len); - ctx->pc += gen_lio12_len; - return pc; - } -void *compile_lio120(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio120, gen_lio120_len); - ctx->pc += gen_lio120_len; - return pc; - } -void *compile_lio121(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio121, gen_lio121_len); - ctx->pc += gen_lio121_len; - return pc; - } -void *compile_lio122(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio122, gen_lio122_len); - ctx->pc += gen_lio122_len; - return pc; - } -void *compile_lio123(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio123, gen_lio123_len); - ctx->pc += gen_lio123_len; - return pc; - } -void *compile_lio124(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio124, gen_lio124_len); - ctx->pc += gen_lio124_len; - return pc; - } -void *compile_lio125(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio125, gen_lio125_len); - ctx->pc += gen_lio125_len; - return pc; - } -void *compile_lio126(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio126, gen_lio126_len); - ctx->pc += gen_lio126_len; - return pc; - } -void *compile_lio127(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio127, gen_lio127_len); - ctx->pc += gen_lio127_len; - return pc; - } -void *compile_lio128(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio128, gen_lio128_len); - ctx->pc += gen_lio128_len; - return pc; - } -void *compile_lio129(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio129, gen_lio129_len); - ctx->pc += gen_lio129_len; - return pc; - } -void *compile_lio13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio13, gen_lio13_len); - ctx->pc += gen_lio13_len; - return pc; - } -void *compile_lio130(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio130, gen_lio130_len); - ctx->pc += gen_lio130_len; - return pc; - } -void *compile_lio131(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio131, gen_lio131_len); - ctx->pc += gen_lio131_len; - return pc; - } -void *compile_lio132(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio132, gen_lio132_len); - ctx->pc += gen_lio132_len; - return pc; - } -void *compile_lio133(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio133, gen_lio133_len); - ctx->pc += gen_lio133_len; - return pc; - } -void *compile_lio134(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio134, gen_lio134_len); - ctx->pc += gen_lio134_len; - return pc; - } -void *compile_lio135(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio135, gen_lio135_len); - ctx->pc += gen_lio135_len; - return pc; - } -void *compile_lio136(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio136, gen_lio136_len); - ctx->pc += gen_lio136_len; - return pc; - } -void *compile_lio137(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio137, gen_lio137_len); - ctx->pc += gen_lio137_len; - return pc; - } -void *compile_lio138(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio138, gen_lio138_len); - ctx->pc += gen_lio138_len; - return pc; - } -void *compile_lio139(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio139, gen_lio139_len); - ctx->pc += gen_lio139_len; - return pc; - } -void *compile_lio14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio14, gen_lio14_len); - ctx->pc += gen_lio14_len; - return pc; - } -void *compile_lio140(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio140, gen_lio140_len); - ctx->pc += gen_lio140_len; - return pc; - } -void *compile_lio141(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio141, gen_lio141_len); - ctx->pc += gen_lio141_len; - return pc; - } -void *compile_lio142(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio142, gen_lio142_len); - ctx->pc += gen_lio142_len; - return pc; - } -void *compile_lio143(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio143, gen_lio143_len); - ctx->pc += gen_lio143_len; - return pc; - } -void *compile_lio144(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio144, gen_lio144_len); - ctx->pc += gen_lio144_len; - return pc; - } -void *compile_lio145(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio145, gen_lio145_len); - ctx->pc += gen_lio145_len; - return pc; - } -void *compile_lio146(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio146, gen_lio146_len); - ctx->pc += gen_lio146_len; - return pc; - } -void *compile_lio147(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio147, gen_lio147_len); - ctx->pc += gen_lio147_len; - return pc; - } -void *compile_lio148(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio148, gen_lio148_len); - ctx->pc += gen_lio148_len; - return pc; - } -void *compile_lio149(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio149, gen_lio149_len); - ctx->pc += gen_lio149_len; - return pc; - } -void *compile_lio15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio15, gen_lio15_len); - ctx->pc += gen_lio15_len; - return pc; - } -void *compile_lio150(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio150, gen_lio150_len); - ctx->pc += gen_lio150_len; - return pc; - } -void *compile_lio151(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio151, gen_lio151_len); - ctx->pc += gen_lio151_len; - return pc; - } -void *compile_lio152(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio152, gen_lio152_len); - ctx->pc += gen_lio152_len; - return pc; - } -void *compile_lio153(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio153, gen_lio153_len); - ctx->pc += gen_lio153_len; - return pc; - } -void *compile_lio154(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio154, gen_lio154_len); - ctx->pc += gen_lio154_len; - return pc; - } -void *compile_lio155(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio155, gen_lio155_len); - ctx->pc += gen_lio155_len; - return pc; - } -void *compile_lio156(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio156, gen_lio156_len); - ctx->pc += gen_lio156_len; - return pc; - } -void *compile_lio157(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio157, gen_lio157_len); - ctx->pc += gen_lio157_len; - return pc; - } -void *compile_lio158(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio158, gen_lio158_len); - ctx->pc += gen_lio158_len; - return pc; - } -void *compile_lio159(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio159, gen_lio159_len); - ctx->pc += gen_lio159_len; - return pc; - } -void *compile_lio16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio16, gen_lio16_len); - ctx->pc += gen_lio16_len; - return pc; - } -void *compile_lio160(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio160, gen_lio160_len); - ctx->pc += gen_lio160_len; - return pc; - } -void *compile_lio161(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio161, gen_lio161_len); - ctx->pc += gen_lio161_len; - return pc; - } -void *compile_lio162(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio162, gen_lio162_len); - ctx->pc += gen_lio162_len; - return pc; - } -void *compile_lio163(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio163, gen_lio163_len); - ctx->pc += gen_lio163_len; - return pc; - } -void *compile_lio164(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio164, gen_lio164_len); - ctx->pc += gen_lio164_len; - return pc; - } -void *compile_lio165(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio165, gen_lio165_len); - ctx->pc += gen_lio165_len; - return pc; - } -void *compile_lio166(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio166, gen_lio166_len); - ctx->pc += gen_lio166_len; - return pc; - } -void *compile_lio167(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio167, gen_lio167_len); - ctx->pc += gen_lio167_len; - return pc; - } -void *compile_lio168(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio168, gen_lio168_len); - ctx->pc += gen_lio168_len; - return pc; - } -void *compile_lio169(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio169, gen_lio169_len); - ctx->pc += gen_lio169_len; - return pc; - } -void *compile_lio17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio17, gen_lio17_len); - ctx->pc += gen_lio17_len; - return pc; - } -void *compile_lio170(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio170, gen_lio170_len); - ctx->pc += gen_lio170_len; - return pc; - } -void *compile_lio171(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio171, gen_lio171_len); - ctx->pc += gen_lio171_len; - return pc; - } -void *compile_lio172(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio172, gen_lio172_len); - ctx->pc += gen_lio172_len; - return pc; - } -void *compile_lio173(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio173, gen_lio173_len); - ctx->pc += gen_lio173_len; - return pc; - } -void *compile_lio174(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio174, gen_lio174_len); - ctx->pc += gen_lio174_len; - return pc; - } -void *compile_lio175(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio175, gen_lio175_len); - ctx->pc += gen_lio175_len; - return pc; - } -void *compile_lio176(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio176, gen_lio176_len); - ctx->pc += gen_lio176_len; - return pc; - } -void *compile_lio177(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio177, gen_lio177_len); - ctx->pc += gen_lio177_len; - return pc; - } -void *compile_lio178(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio178, gen_lio178_len); - ctx->pc += gen_lio178_len; - return pc; - } -void *compile_lio179(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio179, gen_lio179_len); - ctx->pc += gen_lio179_len; - return pc; - } -void *compile_lio18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio18, gen_lio18_len); - ctx->pc += gen_lio18_len; - return pc; - } -void *compile_lio180(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio180, gen_lio180_len); - ctx->pc += gen_lio180_len; - return pc; - } -void *compile_lio181(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio181, gen_lio181_len); - ctx->pc += gen_lio181_len; - return pc; - } -void *compile_lio182(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio182, gen_lio182_len); - ctx->pc += gen_lio182_len; - return pc; - } -void *compile_lio183(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio183, gen_lio183_len); - ctx->pc += gen_lio183_len; - return pc; - } -void *compile_lio184(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio184, gen_lio184_len); - ctx->pc += gen_lio184_len; - return pc; - } -void *compile_lio185(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio185, gen_lio185_len); - ctx->pc += gen_lio185_len; - return pc; - } -void *compile_lio186(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio186, gen_lio186_len); - ctx->pc += gen_lio186_len; - return pc; - } -void *compile_lio187(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio187, gen_lio187_len); - ctx->pc += gen_lio187_len; - return pc; - } -void *compile_lio188(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio188, gen_lio188_len); - ctx->pc += gen_lio188_len; - return pc; - } -void *compile_lio189(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio189, gen_lio189_len); - ctx->pc += gen_lio189_len; - return pc; - } -void *compile_lio19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio19, gen_lio19_len); - ctx->pc += gen_lio19_len; - return pc; - } -void *compile_lio190(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio190, gen_lio190_len); - ctx->pc += gen_lio190_len; - return pc; - } -void *compile_lio191(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio191, gen_lio191_len); - ctx->pc += gen_lio191_len; - return pc; - } -void *compile_lio192(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio192, gen_lio192_len); - ctx->pc += gen_lio192_len; - return pc; - } -void *compile_lio193(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio193, gen_lio193_len); - ctx->pc += gen_lio193_len; - return pc; - } -void *compile_lio194(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio194, gen_lio194_len); - ctx->pc += gen_lio194_len; - return pc; - } -void *compile_lio195(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio195, gen_lio195_len); - ctx->pc += gen_lio195_len; - return pc; - } -void *compile_lio196(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio196, gen_lio196_len); - ctx->pc += gen_lio196_len; - return pc; - } -void *compile_lio197(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio197, gen_lio197_len); - ctx->pc += gen_lio197_len; - return pc; - } -void *compile_lio198(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio198, gen_lio198_len); - ctx->pc += gen_lio198_len; - return pc; - } -void *compile_lio199(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio199, gen_lio199_len); - ctx->pc += gen_lio199_len; - return pc; - } -void *compile_lio2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio2, gen_lio2_len); - ctx->pc += gen_lio2_len; - return pc; - } -void *compile_lio20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio20, gen_lio20_len); - ctx->pc += gen_lio20_len; - return pc; - } -void *compile_lio200(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio200, gen_lio200_len); - ctx->pc += gen_lio200_len; - return pc; - } -void *compile_lio201(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio201, gen_lio201_len); - ctx->pc += gen_lio201_len; - return pc; - } -void *compile_lio202(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio202, gen_lio202_len); - ctx->pc += gen_lio202_len; - return pc; - } -void *compile_lio203(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio203, gen_lio203_len); - ctx->pc += gen_lio203_len; - return pc; - } -void *compile_lio204(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio204, gen_lio204_len); - ctx->pc += gen_lio204_len; - return pc; - } -void *compile_lio205(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio205, gen_lio205_len); - ctx->pc += gen_lio205_len; - return pc; - } -void *compile_lio206(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio206, gen_lio206_len); - ctx->pc += gen_lio206_len; - return pc; - } -void *compile_lio207(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio207, gen_lio207_len); - ctx->pc += gen_lio207_len; - return pc; - } -void *compile_lio208(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio208, gen_lio208_len); - ctx->pc += gen_lio208_len; - return pc; - } -void *compile_lio209(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio209, gen_lio209_len); - ctx->pc += gen_lio209_len; - return pc; - } -void *compile_lio21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio21, gen_lio21_len); - ctx->pc += gen_lio21_len; - return pc; - } -void *compile_lio210(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio210, gen_lio210_len); - ctx->pc += gen_lio210_len; - return pc; - } -void *compile_lio211(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio211, gen_lio211_len); - ctx->pc += gen_lio211_len; - return pc; - } -void *compile_lio212(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio212, gen_lio212_len); - ctx->pc += gen_lio212_len; - return pc; - } -void *compile_lio213(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio213, gen_lio213_len); - ctx->pc += gen_lio213_len; - return pc; - } -void *compile_lio214(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio214, gen_lio214_len); - ctx->pc += gen_lio214_len; - return pc; - } -void *compile_lio215(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio215, gen_lio215_len); - ctx->pc += gen_lio215_len; - return pc; - } -void *compile_lio216(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio216, gen_lio216_len); - ctx->pc += gen_lio216_len; - return pc; - } -void *compile_lio217(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio217, gen_lio217_len); - ctx->pc += gen_lio217_len; - return pc; - } -void *compile_lio218(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio218, gen_lio218_len); - ctx->pc += gen_lio218_len; - return pc; - } -void *compile_lio219(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio219, gen_lio219_len); - ctx->pc += gen_lio219_len; - return pc; - } -void *compile_lio22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio22, gen_lio22_len); - ctx->pc += gen_lio22_len; - return pc; - } -void *compile_lio220(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio220, gen_lio220_len); - ctx->pc += gen_lio220_len; - return pc; - } -void *compile_lio221(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio221, gen_lio221_len); - ctx->pc += gen_lio221_len; - return pc; - } -void *compile_lio222(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio222, gen_lio222_len); - ctx->pc += gen_lio222_len; - return pc; - } -void *compile_lio223(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio223, gen_lio223_len); - ctx->pc += gen_lio223_len; - return pc; - } -void *compile_lio224(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio224, gen_lio224_len); - ctx->pc += gen_lio224_len; - return pc; - } -void *compile_lio225(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio225, gen_lio225_len); - ctx->pc += gen_lio225_len; - return pc; - } -void *compile_lio226(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio226, gen_lio226_len); - ctx->pc += gen_lio226_len; - return pc; - } -void *compile_lio227(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio227, gen_lio227_len); - ctx->pc += gen_lio227_len; - return pc; - } -void *compile_lio228(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio228, gen_lio228_len); - ctx->pc += gen_lio228_len; - return pc; - } -void *compile_lio229(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio229, gen_lio229_len); - ctx->pc += gen_lio229_len; - return pc; - } -void *compile_lio23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio23, gen_lio23_len); - ctx->pc += gen_lio23_len; - return pc; - } -void *compile_lio230(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio230, gen_lio230_len); - ctx->pc += gen_lio230_len; - return pc; - } -void *compile_lio231(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio231, gen_lio231_len); - ctx->pc += gen_lio231_len; - return pc; - } -void *compile_lio232(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio232, gen_lio232_len); - ctx->pc += gen_lio232_len; - return pc; - } -void *compile_lio233(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio233, gen_lio233_len); - ctx->pc += gen_lio233_len; - return pc; - } -void *compile_lio234(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio234, gen_lio234_len); - ctx->pc += gen_lio234_len; - return pc; - } -void *compile_lio235(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio235, gen_lio235_len); - ctx->pc += gen_lio235_len; - return pc; - } -void *compile_lio236(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio236, gen_lio236_len); - ctx->pc += gen_lio236_len; - return pc; - } -void *compile_lio237(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio237, gen_lio237_len); - ctx->pc += gen_lio237_len; - return pc; - } -void *compile_lio238(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio238, gen_lio238_len); - ctx->pc += gen_lio238_len; - return pc; - } -void *compile_lio239(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio239, gen_lio239_len); - ctx->pc += gen_lio239_len; - return pc; - } -void *compile_lio24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio24, gen_lio24_len); - ctx->pc += gen_lio24_len; - return pc; - } -void *compile_lio240(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio240, gen_lio240_len); - ctx->pc += gen_lio240_len; - return pc; - } -void *compile_lio241(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio241, gen_lio241_len); - ctx->pc += gen_lio241_len; - return pc; - } -void *compile_lio242(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio242, gen_lio242_len); - ctx->pc += gen_lio242_len; - return pc; - } -void *compile_lio243(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio243, gen_lio243_len); - ctx->pc += gen_lio243_len; - return pc; - } -void *compile_lio244(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio244, gen_lio244_len); - ctx->pc += gen_lio244_len; - return pc; - } -void *compile_lio245(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio245, gen_lio245_len); - ctx->pc += gen_lio245_len; - return pc; - } -void *compile_lio246(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio246, gen_lio246_len); - ctx->pc += gen_lio246_len; - return pc; - } -void *compile_lio247(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio247, gen_lio247_len); - ctx->pc += gen_lio247_len; - return pc; - } -void *compile_lio248(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio248, gen_lio248_len); - ctx->pc += gen_lio248_len; - return pc; - } -void *compile_lio249(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio249, gen_lio249_len); - ctx->pc += gen_lio249_len; - return pc; - } -void *compile_lio25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio25, gen_lio25_len); - ctx->pc += gen_lio25_len; - return pc; - } -void *compile_lio250(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio250, gen_lio250_len); - ctx->pc += gen_lio250_len; - return pc; - } -void *compile_lio251(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio251, gen_lio251_len); - ctx->pc += gen_lio251_len; - return pc; - } -void *compile_lio252(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio252, gen_lio252_len); - ctx->pc += gen_lio252_len; - return pc; - } -void *compile_lio253(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio253, gen_lio253_len); - ctx->pc += gen_lio253_len; - return pc; - } -void *compile_lio254(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio254, gen_lio254_len); - ctx->pc += gen_lio254_len; - return pc; - } -void *compile_lio255(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio255, gen_lio255_len); - ctx->pc += gen_lio255_len; - return pc; - } -void *compile_lio26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio26, gen_lio26_len); - ctx->pc += gen_lio26_len; - return pc; - } -void *compile_lio27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio27, gen_lio27_len); - ctx->pc += gen_lio27_len; - return pc; - } -void *compile_lio28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio28, gen_lio28_len); - ctx->pc += gen_lio28_len; - return pc; - } -void *compile_lio29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio29, gen_lio29_len); - ctx->pc += gen_lio29_len; - return pc; - } -void *compile_lio3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio3, gen_lio3_len); - ctx->pc += gen_lio3_len; - return pc; - } -void *compile_lio30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio30, gen_lio30_len); - ctx->pc += gen_lio30_len; - return pc; - } -void *compile_lio31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio31, gen_lio31_len); - ctx->pc += gen_lio31_len; - return pc; - } -void *compile_lio32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio32, gen_lio32_len); - ctx->pc += gen_lio32_len; - return pc; - } -void *compile_lio33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio33, gen_lio33_len); - ctx->pc += gen_lio33_len; - return pc; - } -void *compile_lio34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio34, gen_lio34_len); - ctx->pc += gen_lio34_len; - return pc; - } -void *compile_lio35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio35, gen_lio35_len); - ctx->pc += gen_lio35_len; - return pc; - } -void *compile_lio36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio36, gen_lio36_len); - ctx->pc += gen_lio36_len; - return pc; - } -void *compile_lio37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio37, gen_lio37_len); - ctx->pc += gen_lio37_len; - return pc; - } -void *compile_lio38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio38, gen_lio38_len); - ctx->pc += gen_lio38_len; - return pc; - } -void *compile_lio39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio39, gen_lio39_len); - ctx->pc += gen_lio39_len; - return pc; - } -void *compile_lio4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio4, gen_lio4_len); - ctx->pc += gen_lio4_len; - return pc; - } -void *compile_lio40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio40, gen_lio40_len); - ctx->pc += gen_lio40_len; - return pc; - } -void *compile_lio41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio41, gen_lio41_len); - ctx->pc += gen_lio41_len; - return pc; - } -void *compile_lio42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio42, gen_lio42_len); - ctx->pc += gen_lio42_len; - return pc; - } -void *compile_lio43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio43, gen_lio43_len); - ctx->pc += gen_lio43_len; - return pc; - } -void *compile_lio44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio44, gen_lio44_len); - ctx->pc += gen_lio44_len; - return pc; - } -void *compile_lio45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio45, gen_lio45_len); - ctx->pc += gen_lio45_len; - return pc; - } -void *compile_lio46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio46, gen_lio46_len); - ctx->pc += gen_lio46_len; - return pc; - } -void *compile_lio47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio47, gen_lio47_len); - ctx->pc += gen_lio47_len; - return pc; - } -void *compile_lio48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio48, gen_lio48_len); - ctx->pc += gen_lio48_len; - return pc; - } -void *compile_lio49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio49, gen_lio49_len); - ctx->pc += gen_lio49_len; - return pc; - } -void *compile_lio5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio5, gen_lio5_len); - ctx->pc += gen_lio5_len; - return pc; - } -void *compile_lio50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio50, gen_lio50_len); - ctx->pc += gen_lio50_len; - return pc; - } -void *compile_lio51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio51, gen_lio51_len); - ctx->pc += gen_lio51_len; - return pc; - } -void *compile_lio52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio52, gen_lio52_len); - ctx->pc += gen_lio52_len; - return pc; - } -void *compile_lio53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio53, gen_lio53_len); - ctx->pc += gen_lio53_len; - return pc; - } -void *compile_lio54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio54, gen_lio54_len); - ctx->pc += gen_lio54_len; - return pc; - } -void *compile_lio55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio55, gen_lio55_len); - ctx->pc += gen_lio55_len; - return pc; - } -void *compile_lio56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio56, gen_lio56_len); - ctx->pc += gen_lio56_len; - return pc; - } -void *compile_lio57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio57, gen_lio57_len); - ctx->pc += gen_lio57_len; - return pc; - } -void *compile_lio58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio58, gen_lio58_len); - ctx->pc += gen_lio58_len; - return pc; - } -void *compile_lio59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio59, gen_lio59_len); - ctx->pc += gen_lio59_len; - return pc; - } -void *compile_lio6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio6, gen_lio6_len); - ctx->pc += gen_lio6_len; - return pc; - } -void *compile_lio60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio60, gen_lio60_len); - ctx->pc += gen_lio60_len; - return pc; - } -void *compile_lio61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio61, gen_lio61_len); - ctx->pc += gen_lio61_len; - return pc; - } -void *compile_lio62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio62, gen_lio62_len); - ctx->pc += gen_lio62_len; - return pc; - } -void *compile_lio63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio63, gen_lio63_len); - ctx->pc += gen_lio63_len; - return pc; - } -void *compile_lio64(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio64, gen_lio64_len); - ctx->pc += gen_lio64_len; - return pc; - } -void *compile_lio65(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio65, gen_lio65_len); - ctx->pc += gen_lio65_len; - return pc; - } -void *compile_lio66(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio66, gen_lio66_len); - ctx->pc += gen_lio66_len; - return pc; - } -void *compile_lio67(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio67, gen_lio67_len); - ctx->pc += gen_lio67_len; - return pc; - } -void *compile_lio68(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio68, gen_lio68_len); - ctx->pc += gen_lio68_len; - return pc; - } -void *compile_lio69(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio69, gen_lio69_len); - ctx->pc += gen_lio69_len; - return pc; - } -void *compile_lio7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio7, gen_lio7_len); - ctx->pc += gen_lio7_len; - return pc; - } -void *compile_lio70(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio70, gen_lio70_len); - ctx->pc += gen_lio70_len; - return pc; - } -void *compile_lio71(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio71, gen_lio71_len); - ctx->pc += gen_lio71_len; - return pc; - } -void *compile_lio72(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio72, gen_lio72_len); - ctx->pc += gen_lio72_len; - return pc; - } -void *compile_lio73(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio73, gen_lio73_len); - ctx->pc += gen_lio73_len; - return pc; - } -void *compile_lio74(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio74, gen_lio74_len); - ctx->pc += gen_lio74_len; - return pc; - } -void *compile_lio75(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio75, gen_lio75_len); - ctx->pc += gen_lio75_len; - return pc; - } -void *compile_lio76(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio76, gen_lio76_len); - ctx->pc += gen_lio76_len; - return pc; - } -void *compile_lio77(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio77, gen_lio77_len); - ctx->pc += gen_lio77_len; - return pc; - } -void *compile_lio78(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio78, gen_lio78_len); - ctx->pc += gen_lio78_len; - return pc; - } -void *compile_lio79(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio79, gen_lio79_len); - ctx->pc += gen_lio79_len; - return pc; - } -void *compile_lio8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio8, gen_lio8_len); - ctx->pc += gen_lio8_len; - return pc; - } -void *compile_lio80(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio80, gen_lio80_len); - ctx->pc += gen_lio80_len; - return pc; - } -void *compile_lio81(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio81, gen_lio81_len); - ctx->pc += gen_lio81_len; - return pc; - } -void *compile_lio82(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio82, gen_lio82_len); - ctx->pc += gen_lio82_len; - return pc; - } -void *compile_lio83(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio83, gen_lio83_len); - ctx->pc += gen_lio83_len; - return pc; - } -void *compile_lio84(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio84, gen_lio84_len); - ctx->pc += gen_lio84_len; - return pc; - } -void *compile_lio85(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio85, gen_lio85_len); - ctx->pc += gen_lio85_len; - return pc; - } -void *compile_lio86(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio86, gen_lio86_len); - ctx->pc += gen_lio86_len; - return pc; - } -void *compile_lio87(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio87, gen_lio87_len); - ctx->pc += gen_lio87_len; - return pc; - } -void *compile_lio88(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio88, gen_lio88_len); - ctx->pc += gen_lio88_len; - return pc; - } -void *compile_lio89(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio89, gen_lio89_len); - ctx->pc += gen_lio89_len; - return pc; - } -void *compile_lio9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio9, gen_lio9_len); - ctx->pc += gen_lio9_len; - return pc; - } -void *compile_lio90(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio90, gen_lio90_len); - ctx->pc += gen_lio90_len; - return pc; - } -void *compile_lio91(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio91, gen_lio91_len); - ctx->pc += gen_lio91_len; - return pc; - } -void *compile_lio92(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio92, gen_lio92_len); - ctx->pc += gen_lio92_len; - return pc; - } -void *compile_lio93(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio93, gen_lio93_len); - ctx->pc += gen_lio93_len; - return pc; - } -void *compile_lio94(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio94, gen_lio94_len); - ctx->pc += gen_lio94_len; - return pc; - } -void *compile_lio95(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio95, gen_lio95_len); - ctx->pc += gen_lio95_len; - return pc; - } -void *compile_lio96(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio96, gen_lio96_len); - ctx->pc += gen_lio96_len; - return pc; - } -void *compile_lio97(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio97, gen_lio97_len); - ctx->pc += gen_lio97_len; - return pc; - } -void *compile_lio98(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio98, gen_lio98_len); - ctx->pc += gen_lio98_len; - return pc; - } -void *compile_lio99(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lio99, gen_lio99_len); - ctx->pc += gen_lio99_len; - return pc; - } -void *compile_lix0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix0, gen_lix0_len); - ctx->pc += gen_lix0_len; - return pc; - } -void *compile_lix1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix1, gen_lix1_len); - ctx->pc += gen_lix1_len; - return pc; - } -void *compile_lix10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix10, gen_lix10_len); - ctx->pc += gen_lix10_len; - return pc; - } -void *compile_lix100(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix100, gen_lix100_len); - ctx->pc += gen_lix100_len; - return pc; - } -void *compile_lix101(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix101, gen_lix101_len); - ctx->pc += gen_lix101_len; - return pc; - } -void *compile_lix102(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix102, gen_lix102_len); - ctx->pc += gen_lix102_len; - return pc; - } -void *compile_lix103(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix103, gen_lix103_len); - ctx->pc += gen_lix103_len; - return pc; - } -void *compile_lix104(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix104, gen_lix104_len); - ctx->pc += gen_lix104_len; - return pc; - } -void *compile_lix105(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix105, gen_lix105_len); - ctx->pc += gen_lix105_len; - return pc; - } -void *compile_lix106(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix106, gen_lix106_len); - ctx->pc += gen_lix106_len; - return pc; - } -void *compile_lix107(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix107, gen_lix107_len); - ctx->pc += gen_lix107_len; - return pc; - } -void *compile_lix108(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix108, gen_lix108_len); - ctx->pc += gen_lix108_len; - return pc; - } -void *compile_lix109(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix109, gen_lix109_len); - ctx->pc += gen_lix109_len; - return pc; - } -void *compile_lix11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix11, gen_lix11_len); - ctx->pc += gen_lix11_len; - return pc; - } -void *compile_lix110(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix110, gen_lix110_len); - ctx->pc += gen_lix110_len; - return pc; - } -void *compile_lix111(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix111, gen_lix111_len); - ctx->pc += gen_lix111_len; - return pc; - } -void *compile_lix112(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix112, gen_lix112_len); - ctx->pc += gen_lix112_len; - return pc; - } -void *compile_lix113(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix113, gen_lix113_len); - ctx->pc += gen_lix113_len; - return pc; - } -void *compile_lix114(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix114, gen_lix114_len); - ctx->pc += gen_lix114_len; - return pc; - } -void *compile_lix115(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix115, gen_lix115_len); - ctx->pc += gen_lix115_len; - return pc; - } -void *compile_lix116(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix116, gen_lix116_len); - ctx->pc += gen_lix116_len; - return pc; - } -void *compile_lix117(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix117, gen_lix117_len); - ctx->pc += gen_lix117_len; - return pc; - } -void *compile_lix118(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix118, gen_lix118_len); - ctx->pc += gen_lix118_len; - return pc; - } -void *compile_lix119(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix119, gen_lix119_len); - ctx->pc += gen_lix119_len; - return pc; - } -void *compile_lix12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix12, gen_lix12_len); - ctx->pc += gen_lix12_len; - return pc; - } -void *compile_lix120(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix120, gen_lix120_len); - ctx->pc += gen_lix120_len; - return pc; - } -void *compile_lix121(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix121, gen_lix121_len); - ctx->pc += gen_lix121_len; - return pc; - } -void *compile_lix122(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix122, gen_lix122_len); - ctx->pc += gen_lix122_len; - return pc; - } -void *compile_lix123(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix123, gen_lix123_len); - ctx->pc += gen_lix123_len; - return pc; - } -void *compile_lix124(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix124, gen_lix124_len); - ctx->pc += gen_lix124_len; - return pc; - } -void *compile_lix125(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix125, gen_lix125_len); - ctx->pc += gen_lix125_len; - return pc; - } -void *compile_lix126(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix126, gen_lix126_len); - ctx->pc += gen_lix126_len; - return pc; - } -void *compile_lix127(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix127, gen_lix127_len); - ctx->pc += gen_lix127_len; - return pc; - } -void *compile_lix128(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix128, gen_lix128_len); - ctx->pc += gen_lix128_len; - return pc; - } -void *compile_lix129(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix129, gen_lix129_len); - ctx->pc += gen_lix129_len; - return pc; - } -void *compile_lix13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix13, gen_lix13_len); - ctx->pc += gen_lix13_len; - return pc; - } -void *compile_lix130(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix130, gen_lix130_len); - ctx->pc += gen_lix130_len; - return pc; - } -void *compile_lix131(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix131, gen_lix131_len); - ctx->pc += gen_lix131_len; - return pc; - } -void *compile_lix132(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix132, gen_lix132_len); - ctx->pc += gen_lix132_len; - return pc; - } -void *compile_lix133(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix133, gen_lix133_len); - ctx->pc += gen_lix133_len; - return pc; - } -void *compile_lix134(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix134, gen_lix134_len); - ctx->pc += gen_lix134_len; - return pc; - } -void *compile_lix135(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix135, gen_lix135_len); - ctx->pc += gen_lix135_len; - return pc; - } -void *compile_lix136(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix136, gen_lix136_len); - ctx->pc += gen_lix136_len; - return pc; - } -void *compile_lix137(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix137, gen_lix137_len); - ctx->pc += gen_lix137_len; - return pc; - } -void *compile_lix138(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix138, gen_lix138_len); - ctx->pc += gen_lix138_len; - return pc; - } -void *compile_lix139(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix139, gen_lix139_len); - ctx->pc += gen_lix139_len; - return pc; - } -void *compile_lix14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix14, gen_lix14_len); - ctx->pc += gen_lix14_len; - return pc; - } -void *compile_lix140(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix140, gen_lix140_len); - ctx->pc += gen_lix140_len; - return pc; - } -void *compile_lix141(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix141, gen_lix141_len); - ctx->pc += gen_lix141_len; - return pc; - } -void *compile_lix142(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix142, gen_lix142_len); - ctx->pc += gen_lix142_len; - return pc; - } -void *compile_lix143(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix143, gen_lix143_len); - ctx->pc += gen_lix143_len; - return pc; - } -void *compile_lix144(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix144, gen_lix144_len); - ctx->pc += gen_lix144_len; - return pc; - } -void *compile_lix145(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix145, gen_lix145_len); - ctx->pc += gen_lix145_len; - return pc; - } -void *compile_lix146(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix146, gen_lix146_len); - ctx->pc += gen_lix146_len; - return pc; - } -void *compile_lix147(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix147, gen_lix147_len); - ctx->pc += gen_lix147_len; - return pc; - } -void *compile_lix148(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix148, gen_lix148_len); - ctx->pc += gen_lix148_len; - return pc; - } -void *compile_lix149(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix149, gen_lix149_len); - ctx->pc += gen_lix149_len; - return pc; - } -void *compile_lix15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix15, gen_lix15_len); - ctx->pc += gen_lix15_len; - return pc; - } -void *compile_lix150(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix150, gen_lix150_len); - ctx->pc += gen_lix150_len; - return pc; - } -void *compile_lix151(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix151, gen_lix151_len); - ctx->pc += gen_lix151_len; - return pc; - } -void *compile_lix152(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix152, gen_lix152_len); - ctx->pc += gen_lix152_len; - return pc; - } -void *compile_lix153(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix153, gen_lix153_len); - ctx->pc += gen_lix153_len; - return pc; - } -void *compile_lix154(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix154, gen_lix154_len); - ctx->pc += gen_lix154_len; - return pc; - } -void *compile_lix155(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix155, gen_lix155_len); - ctx->pc += gen_lix155_len; - return pc; - } -void *compile_lix156(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix156, gen_lix156_len); - ctx->pc += gen_lix156_len; - return pc; - } -void *compile_lix157(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix157, gen_lix157_len); - ctx->pc += gen_lix157_len; - return pc; - } -void *compile_lix158(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix158, gen_lix158_len); - ctx->pc += gen_lix158_len; - return pc; - } -void *compile_lix159(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix159, gen_lix159_len); - ctx->pc += gen_lix159_len; - return pc; - } -void *compile_lix16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix16, gen_lix16_len); - ctx->pc += gen_lix16_len; - return pc; - } -void *compile_lix160(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix160, gen_lix160_len); - ctx->pc += gen_lix160_len; - return pc; - } -void *compile_lix161(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix161, gen_lix161_len); - ctx->pc += gen_lix161_len; - return pc; - } -void *compile_lix162(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix162, gen_lix162_len); - ctx->pc += gen_lix162_len; - return pc; - } -void *compile_lix163(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix163, gen_lix163_len); - ctx->pc += gen_lix163_len; - return pc; - } -void *compile_lix164(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix164, gen_lix164_len); - ctx->pc += gen_lix164_len; - return pc; - } -void *compile_lix165(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix165, gen_lix165_len); - ctx->pc += gen_lix165_len; - return pc; - } -void *compile_lix166(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix166, gen_lix166_len); - ctx->pc += gen_lix166_len; - return pc; - } -void *compile_lix167(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix167, gen_lix167_len); - ctx->pc += gen_lix167_len; - return pc; - } -void *compile_lix168(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix168, gen_lix168_len); - ctx->pc += gen_lix168_len; - return pc; - } -void *compile_lix169(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix169, gen_lix169_len); - ctx->pc += gen_lix169_len; - return pc; - } -void *compile_lix17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix17, gen_lix17_len); - ctx->pc += gen_lix17_len; - return pc; - } -void *compile_lix170(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix170, gen_lix170_len); - ctx->pc += gen_lix170_len; - return pc; - } -void *compile_lix171(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix171, gen_lix171_len); - ctx->pc += gen_lix171_len; - return pc; - } -void *compile_lix172(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix172, gen_lix172_len); - ctx->pc += gen_lix172_len; - return pc; - } -void *compile_lix173(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix173, gen_lix173_len); - ctx->pc += gen_lix173_len; - return pc; - } -void *compile_lix174(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix174, gen_lix174_len); - ctx->pc += gen_lix174_len; - return pc; - } -void *compile_lix175(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix175, gen_lix175_len); - ctx->pc += gen_lix175_len; - return pc; - } -void *compile_lix176(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix176, gen_lix176_len); - ctx->pc += gen_lix176_len; - return pc; - } -void *compile_lix177(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix177, gen_lix177_len); - ctx->pc += gen_lix177_len; - return pc; - } -void *compile_lix178(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix178, gen_lix178_len); - ctx->pc += gen_lix178_len; - return pc; - } -void *compile_lix179(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix179, gen_lix179_len); - ctx->pc += gen_lix179_len; - return pc; - } -void *compile_lix18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix18, gen_lix18_len); - ctx->pc += gen_lix18_len; - return pc; - } -void *compile_lix180(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix180, gen_lix180_len); - ctx->pc += gen_lix180_len; - return pc; - } -void *compile_lix181(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix181, gen_lix181_len); - ctx->pc += gen_lix181_len; - return pc; - } -void *compile_lix182(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix182, gen_lix182_len); - ctx->pc += gen_lix182_len; - return pc; - } -void *compile_lix183(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix183, gen_lix183_len); - ctx->pc += gen_lix183_len; - return pc; - } -void *compile_lix184(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix184, gen_lix184_len); - ctx->pc += gen_lix184_len; - return pc; - } -void *compile_lix185(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix185, gen_lix185_len); - ctx->pc += gen_lix185_len; - return pc; - } -void *compile_lix186(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix186, gen_lix186_len); - ctx->pc += gen_lix186_len; - return pc; - } -void *compile_lix187(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix187, gen_lix187_len); - ctx->pc += gen_lix187_len; - return pc; - } -void *compile_lix188(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix188, gen_lix188_len); - ctx->pc += gen_lix188_len; - return pc; - } -void *compile_lix189(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix189, gen_lix189_len); - ctx->pc += gen_lix189_len; - return pc; - } -void *compile_lix19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix19, gen_lix19_len); - ctx->pc += gen_lix19_len; - return pc; - } -void *compile_lix190(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix190, gen_lix190_len); - ctx->pc += gen_lix190_len; - return pc; - } -void *compile_lix191(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix191, gen_lix191_len); - ctx->pc += gen_lix191_len; - return pc; - } -void *compile_lix192(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix192, gen_lix192_len); - ctx->pc += gen_lix192_len; - return pc; - } -void *compile_lix193(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix193, gen_lix193_len); - ctx->pc += gen_lix193_len; - return pc; - } -void *compile_lix194(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix194, gen_lix194_len); - ctx->pc += gen_lix194_len; - return pc; - } -void *compile_lix195(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix195, gen_lix195_len); - ctx->pc += gen_lix195_len; - return pc; - } -void *compile_lix196(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix196, gen_lix196_len); - ctx->pc += gen_lix196_len; - return pc; - } -void *compile_lix197(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix197, gen_lix197_len); - ctx->pc += gen_lix197_len; - return pc; - } -void *compile_lix198(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix198, gen_lix198_len); - ctx->pc += gen_lix198_len; - return pc; - } -void *compile_lix199(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix199, gen_lix199_len); - ctx->pc += gen_lix199_len; - return pc; - } -void *compile_lix2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix2, gen_lix2_len); - ctx->pc += gen_lix2_len; - return pc; - } -void *compile_lix20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix20, gen_lix20_len); - ctx->pc += gen_lix20_len; - return pc; - } -void *compile_lix200(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix200, gen_lix200_len); - ctx->pc += gen_lix200_len; - return pc; - } -void *compile_lix201(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix201, gen_lix201_len); - ctx->pc += gen_lix201_len; - return pc; - } -void *compile_lix202(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix202, gen_lix202_len); - ctx->pc += gen_lix202_len; - return pc; - } -void *compile_lix203(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix203, gen_lix203_len); - ctx->pc += gen_lix203_len; - return pc; - } -void *compile_lix204(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix204, gen_lix204_len); - ctx->pc += gen_lix204_len; - return pc; - } -void *compile_lix205(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix205, gen_lix205_len); - ctx->pc += gen_lix205_len; - return pc; - } -void *compile_lix206(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix206, gen_lix206_len); - ctx->pc += gen_lix206_len; - return pc; - } -void *compile_lix207(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix207, gen_lix207_len); - ctx->pc += gen_lix207_len; - return pc; - } -void *compile_lix208(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix208, gen_lix208_len); - ctx->pc += gen_lix208_len; - return pc; - } -void *compile_lix209(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix209, gen_lix209_len); - ctx->pc += gen_lix209_len; - return pc; - } -void *compile_lix21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix21, gen_lix21_len); - ctx->pc += gen_lix21_len; - return pc; - } -void *compile_lix210(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix210, gen_lix210_len); - ctx->pc += gen_lix210_len; - return pc; - } -void *compile_lix211(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix211, gen_lix211_len); - ctx->pc += gen_lix211_len; - return pc; - } -void *compile_lix212(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix212, gen_lix212_len); - ctx->pc += gen_lix212_len; - return pc; - } -void *compile_lix213(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix213, gen_lix213_len); - ctx->pc += gen_lix213_len; - return pc; - } -void *compile_lix214(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix214, gen_lix214_len); - ctx->pc += gen_lix214_len; - return pc; - } -void *compile_lix215(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix215, gen_lix215_len); - ctx->pc += gen_lix215_len; - return pc; - } -void *compile_lix216(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix216, gen_lix216_len); - ctx->pc += gen_lix216_len; - return pc; - } -void *compile_lix217(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix217, gen_lix217_len); - ctx->pc += gen_lix217_len; - return pc; - } -void *compile_lix218(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix218, gen_lix218_len); - ctx->pc += gen_lix218_len; - return pc; - } -void *compile_lix219(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix219, gen_lix219_len); - ctx->pc += gen_lix219_len; - return pc; - } -void *compile_lix22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix22, gen_lix22_len); - ctx->pc += gen_lix22_len; - return pc; - } -void *compile_lix220(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix220, gen_lix220_len); - ctx->pc += gen_lix220_len; - return pc; - } -void *compile_lix221(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix221, gen_lix221_len); - ctx->pc += gen_lix221_len; - return pc; - } -void *compile_lix222(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix222, gen_lix222_len); - ctx->pc += gen_lix222_len; - return pc; - } -void *compile_lix223(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix223, gen_lix223_len); - ctx->pc += gen_lix223_len; - return pc; - } -void *compile_lix224(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix224, gen_lix224_len); - ctx->pc += gen_lix224_len; - return pc; - } -void *compile_lix225(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix225, gen_lix225_len); - ctx->pc += gen_lix225_len; - return pc; - } -void *compile_lix226(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix226, gen_lix226_len); - ctx->pc += gen_lix226_len; - return pc; - } -void *compile_lix227(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix227, gen_lix227_len); - ctx->pc += gen_lix227_len; - return pc; - } -void *compile_lix228(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix228, gen_lix228_len); - ctx->pc += gen_lix228_len; - return pc; - } -void *compile_lix229(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix229, gen_lix229_len); - ctx->pc += gen_lix229_len; - return pc; - } -void *compile_lix23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix23, gen_lix23_len); - ctx->pc += gen_lix23_len; - return pc; - } -void *compile_lix230(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix230, gen_lix230_len); - ctx->pc += gen_lix230_len; - return pc; - } -void *compile_lix231(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix231, gen_lix231_len); - ctx->pc += gen_lix231_len; - return pc; - } -void *compile_lix232(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix232, gen_lix232_len); - ctx->pc += gen_lix232_len; - return pc; - } -void *compile_lix233(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix233, gen_lix233_len); - ctx->pc += gen_lix233_len; - return pc; - } -void *compile_lix234(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix234, gen_lix234_len); - ctx->pc += gen_lix234_len; - return pc; - } -void *compile_lix235(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix235, gen_lix235_len); - ctx->pc += gen_lix235_len; - return pc; - } -void *compile_lix236(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix236, gen_lix236_len); - ctx->pc += gen_lix236_len; - return pc; - } -void *compile_lix237(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix237, gen_lix237_len); - ctx->pc += gen_lix237_len; - return pc; - } -void *compile_lix238(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix238, gen_lix238_len); - ctx->pc += gen_lix238_len; - return pc; - } -void *compile_lix239(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix239, gen_lix239_len); - ctx->pc += gen_lix239_len; - return pc; - } -void *compile_lix24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix24, gen_lix24_len); - ctx->pc += gen_lix24_len; - return pc; - } -void *compile_lix240(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix240, gen_lix240_len); - ctx->pc += gen_lix240_len; - return pc; - } -void *compile_lix241(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix241, gen_lix241_len); - ctx->pc += gen_lix241_len; - return pc; - } -void *compile_lix242(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix242, gen_lix242_len); - ctx->pc += gen_lix242_len; - return pc; - } -void *compile_lix243(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix243, gen_lix243_len); - ctx->pc += gen_lix243_len; - return pc; - } -void *compile_lix244(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix244, gen_lix244_len); - ctx->pc += gen_lix244_len; - return pc; - } -void *compile_lix245(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix245, gen_lix245_len); - ctx->pc += gen_lix245_len; - return pc; - } -void *compile_lix246(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix246, gen_lix246_len); - ctx->pc += gen_lix246_len; - return pc; - } -void *compile_lix247(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix247, gen_lix247_len); - ctx->pc += gen_lix247_len; - return pc; - } -void *compile_lix248(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix248, gen_lix248_len); - ctx->pc += gen_lix248_len; - return pc; - } -void *compile_lix249(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix249, gen_lix249_len); - ctx->pc += gen_lix249_len; - return pc; - } -void *compile_lix25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix25, gen_lix25_len); - ctx->pc += gen_lix25_len; - return pc; - } -void *compile_lix250(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix250, gen_lix250_len); - ctx->pc += gen_lix250_len; - return pc; - } -void *compile_lix251(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix251, gen_lix251_len); - ctx->pc += gen_lix251_len; - return pc; - } -void *compile_lix252(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix252, gen_lix252_len); - ctx->pc += gen_lix252_len; - return pc; - } -void *compile_lix253(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix253, gen_lix253_len); - ctx->pc += gen_lix253_len; - return pc; - } -void *compile_lix254(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix254, gen_lix254_len); - ctx->pc += gen_lix254_len; - return pc; - } -void *compile_lix255(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix255, gen_lix255_len); - ctx->pc += gen_lix255_len; - return pc; - } -void *compile_lix26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix26, gen_lix26_len); - ctx->pc += gen_lix26_len; - return pc; - } -void *compile_lix27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix27, gen_lix27_len); - ctx->pc += gen_lix27_len; - return pc; - } -void *compile_lix28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix28, gen_lix28_len); - ctx->pc += gen_lix28_len; - return pc; - } -void *compile_lix29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix29, gen_lix29_len); - ctx->pc += gen_lix29_len; - return pc; - } -void *compile_lix3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix3, gen_lix3_len); - ctx->pc += gen_lix3_len; - return pc; - } -void *compile_lix30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix30, gen_lix30_len); - ctx->pc += gen_lix30_len; - return pc; - } -void *compile_lix31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix31, gen_lix31_len); - ctx->pc += gen_lix31_len; - return pc; - } -void *compile_lix32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix32, gen_lix32_len); - ctx->pc += gen_lix32_len; - return pc; - } -void *compile_lix33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix33, gen_lix33_len); - ctx->pc += gen_lix33_len; - return pc; - } -void *compile_lix34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix34, gen_lix34_len); - ctx->pc += gen_lix34_len; - return pc; - } -void *compile_lix35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix35, gen_lix35_len); - ctx->pc += gen_lix35_len; - return pc; - } -void *compile_lix36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix36, gen_lix36_len); - ctx->pc += gen_lix36_len; - return pc; - } -void *compile_lix37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix37, gen_lix37_len); - ctx->pc += gen_lix37_len; - return pc; - } -void *compile_lix38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix38, gen_lix38_len); - ctx->pc += gen_lix38_len; - return pc; - } -void *compile_lix39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix39, gen_lix39_len); - ctx->pc += gen_lix39_len; - return pc; - } -void *compile_lix4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix4, gen_lix4_len); - ctx->pc += gen_lix4_len; - return pc; - } -void *compile_lix40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix40, gen_lix40_len); - ctx->pc += gen_lix40_len; - return pc; - } -void *compile_lix41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix41, gen_lix41_len); - ctx->pc += gen_lix41_len; - return pc; - } -void *compile_lix42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix42, gen_lix42_len); - ctx->pc += gen_lix42_len; - return pc; - } -void *compile_lix43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix43, gen_lix43_len); - ctx->pc += gen_lix43_len; - return pc; - } -void *compile_lix44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix44, gen_lix44_len); - ctx->pc += gen_lix44_len; - return pc; - } -void *compile_lix45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix45, gen_lix45_len); - ctx->pc += gen_lix45_len; - return pc; - } -void *compile_lix46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix46, gen_lix46_len); - ctx->pc += gen_lix46_len; - return pc; - } -void *compile_lix47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix47, gen_lix47_len); - ctx->pc += gen_lix47_len; - return pc; - } -void *compile_lix48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix48, gen_lix48_len); - ctx->pc += gen_lix48_len; - return pc; - } -void *compile_lix49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix49, gen_lix49_len); - ctx->pc += gen_lix49_len; - return pc; - } -void *compile_lix5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix5, gen_lix5_len); - ctx->pc += gen_lix5_len; - return pc; - } -void *compile_lix50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix50, gen_lix50_len); - ctx->pc += gen_lix50_len; - return pc; - } -void *compile_lix51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix51, gen_lix51_len); - ctx->pc += gen_lix51_len; - return pc; - } -void *compile_lix52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix52, gen_lix52_len); - ctx->pc += gen_lix52_len; - return pc; - } -void *compile_lix53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix53, gen_lix53_len); - ctx->pc += gen_lix53_len; - return pc; - } -void *compile_lix54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix54, gen_lix54_len); - ctx->pc += gen_lix54_len; - return pc; - } -void *compile_lix55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix55, gen_lix55_len); - ctx->pc += gen_lix55_len; - return pc; - } -void *compile_lix56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix56, gen_lix56_len); - ctx->pc += gen_lix56_len; - return pc; - } -void *compile_lix57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix57, gen_lix57_len); - ctx->pc += gen_lix57_len; - return pc; - } -void *compile_lix58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix58, gen_lix58_len); - ctx->pc += gen_lix58_len; - return pc; - } -void *compile_lix59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix59, gen_lix59_len); - ctx->pc += gen_lix59_len; - return pc; - } -void *compile_lix6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix6, gen_lix6_len); - ctx->pc += gen_lix6_len; - return pc; - } -void *compile_lix60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix60, gen_lix60_len); - ctx->pc += gen_lix60_len; - return pc; - } -void *compile_lix61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix61, gen_lix61_len); - ctx->pc += gen_lix61_len; - return pc; - } -void *compile_lix62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix62, gen_lix62_len); - ctx->pc += gen_lix62_len; - return pc; - } -void *compile_lix63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix63, gen_lix63_len); - ctx->pc += gen_lix63_len; - return pc; - } -void *compile_lix64(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix64, gen_lix64_len); - ctx->pc += gen_lix64_len; - return pc; - } -void *compile_lix65(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix65, gen_lix65_len); - ctx->pc += gen_lix65_len; - return pc; - } -void *compile_lix66(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix66, gen_lix66_len); - ctx->pc += gen_lix66_len; - return pc; - } -void *compile_lix67(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix67, gen_lix67_len); - ctx->pc += gen_lix67_len; - return pc; - } -void *compile_lix68(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix68, gen_lix68_len); - ctx->pc += gen_lix68_len; - return pc; - } -void *compile_lix69(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix69, gen_lix69_len); - ctx->pc += gen_lix69_len; - return pc; - } -void *compile_lix7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix7, gen_lix7_len); - ctx->pc += gen_lix7_len; - return pc; - } -void *compile_lix70(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix70, gen_lix70_len); - ctx->pc += gen_lix70_len; - return pc; - } -void *compile_lix71(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix71, gen_lix71_len); - ctx->pc += gen_lix71_len; - return pc; - } -void *compile_lix72(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix72, gen_lix72_len); - ctx->pc += gen_lix72_len; - return pc; - } -void *compile_lix73(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix73, gen_lix73_len); - ctx->pc += gen_lix73_len; - return pc; - } -void *compile_lix74(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix74, gen_lix74_len); - ctx->pc += gen_lix74_len; - return pc; - } -void *compile_lix75(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix75, gen_lix75_len); - ctx->pc += gen_lix75_len; - return pc; - } -void *compile_lix76(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix76, gen_lix76_len); - ctx->pc += gen_lix76_len; - return pc; - } -void *compile_lix77(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix77, gen_lix77_len); - ctx->pc += gen_lix77_len; - return pc; - } -void *compile_lix78(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix78, gen_lix78_len); - ctx->pc += gen_lix78_len; - return pc; - } -void *compile_lix79(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix79, gen_lix79_len); - ctx->pc += gen_lix79_len; - return pc; - } -void *compile_lix8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix8, gen_lix8_len); - ctx->pc += gen_lix8_len; - return pc; - } -void *compile_lix80(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix80, gen_lix80_len); - ctx->pc += gen_lix80_len; - return pc; - } -void *compile_lix81(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix81, gen_lix81_len); - ctx->pc += gen_lix81_len; - return pc; - } -void *compile_lix82(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix82, gen_lix82_len); - ctx->pc += gen_lix82_len; - return pc; - } -void *compile_lix83(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix83, gen_lix83_len); - ctx->pc += gen_lix83_len; - return pc; - } -void *compile_lix84(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix84, gen_lix84_len); - ctx->pc += gen_lix84_len; - return pc; - } -void *compile_lix85(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix85, gen_lix85_len); - ctx->pc += gen_lix85_len; - return pc; - } -void *compile_lix86(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix86, gen_lix86_len); - ctx->pc += gen_lix86_len; - return pc; - } -void *compile_lix87(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix87, gen_lix87_len); - ctx->pc += gen_lix87_len; - return pc; - } -void *compile_lix88(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix88, gen_lix88_len); - ctx->pc += gen_lix88_len; - return pc; - } -void *compile_lix89(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix89, gen_lix89_len); - ctx->pc += gen_lix89_len; - return pc; - } -void *compile_lix9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix9, gen_lix9_len); - ctx->pc += gen_lix9_len; - return pc; - } -void *compile_lix90(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix90, gen_lix90_len); - ctx->pc += gen_lix90_len; - return pc; - } -void *compile_lix91(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix91, gen_lix91_len); - ctx->pc += gen_lix91_len; - return pc; - } -void *compile_lix92(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix92, gen_lix92_len); - ctx->pc += gen_lix92_len; - return pc; - } -void *compile_lix93(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix93, gen_lix93_len); - ctx->pc += gen_lix93_len; - return pc; - } -void *compile_lix94(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix94, gen_lix94_len); - ctx->pc += gen_lix94_len; - return pc; - } -void *compile_lix95(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix95, gen_lix95_len); - ctx->pc += gen_lix95_len; - return pc; - } -void *compile_lix96(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix96, gen_lix96_len); - ctx->pc += gen_lix96_len; - return pc; - } -void *compile_lix97(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix97, gen_lix97_len); - ctx->pc += gen_lix97_len; - return pc; - } -void *compile_lix98(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix98, gen_lix98_len); - ctx->pc += gen_lix98_len; - return pc; - } -void *compile_lix99(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_lix99, gen_lix99_len); - ctx->pc += gen_lix99_len; - return pc; - } -void *compile_liy0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy0, gen_liy0_len); - ctx->pc += gen_liy0_len; - return pc; - } -void *compile_liy1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy1, gen_liy1_len); - ctx->pc += gen_liy1_len; - return pc; - } -void *compile_liy10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy10, gen_liy10_len); - ctx->pc += gen_liy10_len; - return pc; - } -void *compile_liy100(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy100, gen_liy100_len); - ctx->pc += gen_liy100_len; - return pc; - } -void *compile_liy101(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy101, gen_liy101_len); - ctx->pc += gen_liy101_len; - return pc; - } -void *compile_liy102(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy102, gen_liy102_len); - ctx->pc += gen_liy102_len; - return pc; - } -void *compile_liy103(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy103, gen_liy103_len); - ctx->pc += gen_liy103_len; - return pc; - } -void *compile_liy104(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy104, gen_liy104_len); - ctx->pc += gen_liy104_len; - return pc; - } -void *compile_liy105(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy105, gen_liy105_len); - ctx->pc += gen_liy105_len; - return pc; - } -void *compile_liy106(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy106, gen_liy106_len); - ctx->pc += gen_liy106_len; - return pc; - } -void *compile_liy107(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy107, gen_liy107_len); - ctx->pc += gen_liy107_len; - return pc; - } -void *compile_liy108(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy108, gen_liy108_len); - ctx->pc += gen_liy108_len; - return pc; - } -void *compile_liy109(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy109, gen_liy109_len); - ctx->pc += gen_liy109_len; - return pc; - } -void *compile_liy11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy11, gen_liy11_len); - ctx->pc += gen_liy11_len; - return pc; - } -void *compile_liy110(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy110, gen_liy110_len); - ctx->pc += gen_liy110_len; - return pc; - } -void *compile_liy111(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy111, gen_liy111_len); - ctx->pc += gen_liy111_len; - return pc; - } -void *compile_liy112(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy112, gen_liy112_len); - ctx->pc += gen_liy112_len; - return pc; - } -void *compile_liy113(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy113, gen_liy113_len); - ctx->pc += gen_liy113_len; - return pc; - } -void *compile_liy114(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy114, gen_liy114_len); - ctx->pc += gen_liy114_len; - return pc; - } -void *compile_liy115(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy115, gen_liy115_len); - ctx->pc += gen_liy115_len; - return pc; - } -void *compile_liy116(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy116, gen_liy116_len); - ctx->pc += gen_liy116_len; - return pc; - } -void *compile_liy117(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy117, gen_liy117_len); - ctx->pc += gen_liy117_len; - return pc; - } -void *compile_liy118(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy118, gen_liy118_len); - ctx->pc += gen_liy118_len; - return pc; - } -void *compile_liy119(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy119, gen_liy119_len); - ctx->pc += gen_liy119_len; - return pc; - } -void *compile_liy12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy12, gen_liy12_len); - ctx->pc += gen_liy12_len; - return pc; - } -void *compile_liy120(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy120, gen_liy120_len); - ctx->pc += gen_liy120_len; - return pc; - } -void *compile_liy121(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy121, gen_liy121_len); - ctx->pc += gen_liy121_len; - return pc; - } -void *compile_liy122(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy122, gen_liy122_len); - ctx->pc += gen_liy122_len; - return pc; - } -void *compile_liy123(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy123, gen_liy123_len); - ctx->pc += gen_liy123_len; - return pc; - } -void *compile_liy124(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy124, gen_liy124_len); - ctx->pc += gen_liy124_len; - return pc; - } -void *compile_liy125(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy125, gen_liy125_len); - ctx->pc += gen_liy125_len; - return pc; - } -void *compile_liy126(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy126, gen_liy126_len); - ctx->pc += gen_liy126_len; - return pc; - } -void *compile_liy127(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy127, gen_liy127_len); - ctx->pc += gen_liy127_len; - return pc; - } -void *compile_liy128(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy128, gen_liy128_len); - ctx->pc += gen_liy128_len; - return pc; - } -void *compile_liy129(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy129, gen_liy129_len); - ctx->pc += gen_liy129_len; - return pc; - } -void *compile_liy13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy13, gen_liy13_len); - ctx->pc += gen_liy13_len; - return pc; - } -void *compile_liy130(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy130, gen_liy130_len); - ctx->pc += gen_liy130_len; - return pc; - } -void *compile_liy131(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy131, gen_liy131_len); - ctx->pc += gen_liy131_len; - return pc; - } -void *compile_liy132(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy132, gen_liy132_len); - ctx->pc += gen_liy132_len; - return pc; - } -void *compile_liy133(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy133, gen_liy133_len); - ctx->pc += gen_liy133_len; - return pc; - } -void *compile_liy134(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy134, gen_liy134_len); - ctx->pc += gen_liy134_len; - return pc; - } -void *compile_liy135(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy135, gen_liy135_len); - ctx->pc += gen_liy135_len; - return pc; - } -void *compile_liy136(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy136, gen_liy136_len); - ctx->pc += gen_liy136_len; - return pc; - } -void *compile_liy137(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy137, gen_liy137_len); - ctx->pc += gen_liy137_len; - return pc; - } -void *compile_liy138(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy138, gen_liy138_len); - ctx->pc += gen_liy138_len; - return pc; - } -void *compile_liy139(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy139, gen_liy139_len); - ctx->pc += gen_liy139_len; - return pc; - } -void *compile_liy14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy14, gen_liy14_len); - ctx->pc += gen_liy14_len; - return pc; - } -void *compile_liy140(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy140, gen_liy140_len); - ctx->pc += gen_liy140_len; - return pc; - } -void *compile_liy141(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy141, gen_liy141_len); - ctx->pc += gen_liy141_len; - return pc; - } -void *compile_liy142(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy142, gen_liy142_len); - ctx->pc += gen_liy142_len; - return pc; - } -void *compile_liy143(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy143, gen_liy143_len); - ctx->pc += gen_liy143_len; - return pc; - } -void *compile_liy144(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy144, gen_liy144_len); - ctx->pc += gen_liy144_len; - return pc; - } -void *compile_liy145(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy145, gen_liy145_len); - ctx->pc += gen_liy145_len; - return pc; - } -void *compile_liy146(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy146, gen_liy146_len); - ctx->pc += gen_liy146_len; - return pc; - } -void *compile_liy147(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy147, gen_liy147_len); - ctx->pc += gen_liy147_len; - return pc; - } -void *compile_liy148(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy148, gen_liy148_len); - ctx->pc += gen_liy148_len; - return pc; - } -void *compile_liy149(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy149, gen_liy149_len); - ctx->pc += gen_liy149_len; - return pc; - } -void *compile_liy15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy15, gen_liy15_len); - ctx->pc += gen_liy15_len; - return pc; - } -void *compile_liy150(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy150, gen_liy150_len); - ctx->pc += gen_liy150_len; - return pc; - } -void *compile_liy151(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy151, gen_liy151_len); - ctx->pc += gen_liy151_len; - return pc; - } -void *compile_liy152(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy152, gen_liy152_len); - ctx->pc += gen_liy152_len; - return pc; - } -void *compile_liy153(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy153, gen_liy153_len); - ctx->pc += gen_liy153_len; - return pc; - } -void *compile_liy154(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy154, gen_liy154_len); - ctx->pc += gen_liy154_len; - return pc; - } -void *compile_liy155(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy155, gen_liy155_len); - ctx->pc += gen_liy155_len; - return pc; - } -void *compile_liy156(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy156, gen_liy156_len); - ctx->pc += gen_liy156_len; - return pc; - } -void *compile_liy157(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy157, gen_liy157_len); - ctx->pc += gen_liy157_len; - return pc; - } -void *compile_liy158(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy158, gen_liy158_len); - ctx->pc += gen_liy158_len; - return pc; - } -void *compile_liy159(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy159, gen_liy159_len); - ctx->pc += gen_liy159_len; - return pc; - } -void *compile_liy16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy16, gen_liy16_len); - ctx->pc += gen_liy16_len; - return pc; - } -void *compile_liy160(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy160, gen_liy160_len); - ctx->pc += gen_liy160_len; - return pc; - } -void *compile_liy161(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy161, gen_liy161_len); - ctx->pc += gen_liy161_len; - return pc; - } -void *compile_liy162(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy162, gen_liy162_len); - ctx->pc += gen_liy162_len; - return pc; - } -void *compile_liy163(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy163, gen_liy163_len); - ctx->pc += gen_liy163_len; - return pc; - } -void *compile_liy164(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy164, gen_liy164_len); - ctx->pc += gen_liy164_len; - return pc; - } -void *compile_liy165(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy165, gen_liy165_len); - ctx->pc += gen_liy165_len; - return pc; - } -void *compile_liy166(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy166, gen_liy166_len); - ctx->pc += gen_liy166_len; - return pc; - } -void *compile_liy167(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy167, gen_liy167_len); - ctx->pc += gen_liy167_len; - return pc; - } -void *compile_liy168(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy168, gen_liy168_len); - ctx->pc += gen_liy168_len; - return pc; - } -void *compile_liy169(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy169, gen_liy169_len); - ctx->pc += gen_liy169_len; - return pc; - } -void *compile_liy17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy17, gen_liy17_len); - ctx->pc += gen_liy17_len; - return pc; - } -void *compile_liy170(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy170, gen_liy170_len); - ctx->pc += gen_liy170_len; - return pc; - } -void *compile_liy171(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy171, gen_liy171_len); - ctx->pc += gen_liy171_len; - return pc; - } -void *compile_liy172(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy172, gen_liy172_len); - ctx->pc += gen_liy172_len; - return pc; - } -void *compile_liy173(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy173, gen_liy173_len); - ctx->pc += gen_liy173_len; - return pc; - } -void *compile_liy174(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy174, gen_liy174_len); - ctx->pc += gen_liy174_len; - return pc; - } -void *compile_liy175(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy175, gen_liy175_len); - ctx->pc += gen_liy175_len; - return pc; - } -void *compile_liy176(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy176, gen_liy176_len); - ctx->pc += gen_liy176_len; - return pc; - } -void *compile_liy177(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy177, gen_liy177_len); - ctx->pc += gen_liy177_len; - return pc; - } -void *compile_liy178(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy178, gen_liy178_len); - ctx->pc += gen_liy178_len; - return pc; - } -void *compile_liy179(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy179, gen_liy179_len); - ctx->pc += gen_liy179_len; - return pc; - } -void *compile_liy18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy18, gen_liy18_len); - ctx->pc += gen_liy18_len; - return pc; - } -void *compile_liy180(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy180, gen_liy180_len); - ctx->pc += gen_liy180_len; - return pc; - } -void *compile_liy181(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy181, gen_liy181_len); - ctx->pc += gen_liy181_len; - return pc; - } -void *compile_liy182(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy182, gen_liy182_len); - ctx->pc += gen_liy182_len; - return pc; - } -void *compile_liy183(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy183, gen_liy183_len); - ctx->pc += gen_liy183_len; - return pc; - } -void *compile_liy184(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy184, gen_liy184_len); - ctx->pc += gen_liy184_len; - return pc; - } -void *compile_liy185(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy185, gen_liy185_len); - ctx->pc += gen_liy185_len; - return pc; - } -void *compile_liy186(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy186, gen_liy186_len); - ctx->pc += gen_liy186_len; - return pc; - } -void *compile_liy187(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy187, gen_liy187_len); - ctx->pc += gen_liy187_len; - return pc; - } -void *compile_liy188(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy188, gen_liy188_len); - ctx->pc += gen_liy188_len; - return pc; - } -void *compile_liy189(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy189, gen_liy189_len); - ctx->pc += gen_liy189_len; - return pc; - } -void *compile_liy19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy19, gen_liy19_len); - ctx->pc += gen_liy19_len; - return pc; - } -void *compile_liy190(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy190, gen_liy190_len); - ctx->pc += gen_liy190_len; - return pc; - } -void *compile_liy191(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy191, gen_liy191_len); - ctx->pc += gen_liy191_len; - return pc; - } -void *compile_liy192(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy192, gen_liy192_len); - ctx->pc += gen_liy192_len; - return pc; - } -void *compile_liy193(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy193, gen_liy193_len); - ctx->pc += gen_liy193_len; - return pc; - } -void *compile_liy194(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy194, gen_liy194_len); - ctx->pc += gen_liy194_len; - return pc; - } -void *compile_liy195(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy195, gen_liy195_len); - ctx->pc += gen_liy195_len; - return pc; - } -void *compile_liy196(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy196, gen_liy196_len); - ctx->pc += gen_liy196_len; - return pc; - } -void *compile_liy197(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy197, gen_liy197_len); - ctx->pc += gen_liy197_len; - return pc; - } -void *compile_liy198(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy198, gen_liy198_len); - ctx->pc += gen_liy198_len; - return pc; - } -void *compile_liy199(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy199, gen_liy199_len); - ctx->pc += gen_liy199_len; - return pc; - } -void *compile_liy2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy2, gen_liy2_len); - ctx->pc += gen_liy2_len; - return pc; - } -void *compile_liy20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy20, gen_liy20_len); - ctx->pc += gen_liy20_len; - return pc; - } -void *compile_liy200(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy200, gen_liy200_len); - ctx->pc += gen_liy200_len; - return pc; - } -void *compile_liy201(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy201, gen_liy201_len); - ctx->pc += gen_liy201_len; - return pc; - } -void *compile_liy202(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy202, gen_liy202_len); - ctx->pc += gen_liy202_len; - return pc; - } -void *compile_liy203(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy203, gen_liy203_len); - ctx->pc += gen_liy203_len; - return pc; - } -void *compile_liy204(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy204, gen_liy204_len); - ctx->pc += gen_liy204_len; - return pc; - } -void *compile_liy205(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy205, gen_liy205_len); - ctx->pc += gen_liy205_len; - return pc; - } -void *compile_liy206(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy206, gen_liy206_len); - ctx->pc += gen_liy206_len; - return pc; - } -void *compile_liy207(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy207, gen_liy207_len); - ctx->pc += gen_liy207_len; - return pc; - } -void *compile_liy208(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy208, gen_liy208_len); - ctx->pc += gen_liy208_len; - return pc; - } -void *compile_liy209(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy209, gen_liy209_len); - ctx->pc += gen_liy209_len; - return pc; - } -void *compile_liy21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy21, gen_liy21_len); - ctx->pc += gen_liy21_len; - return pc; - } -void *compile_liy210(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy210, gen_liy210_len); - ctx->pc += gen_liy210_len; - return pc; - } -void *compile_liy211(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy211, gen_liy211_len); - ctx->pc += gen_liy211_len; - return pc; - } -void *compile_liy212(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy212, gen_liy212_len); - ctx->pc += gen_liy212_len; - return pc; - } -void *compile_liy213(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy213, gen_liy213_len); - ctx->pc += gen_liy213_len; - return pc; - } -void *compile_liy214(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy214, gen_liy214_len); - ctx->pc += gen_liy214_len; - return pc; - } -void *compile_liy215(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy215, gen_liy215_len); - ctx->pc += gen_liy215_len; - return pc; - } -void *compile_liy216(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy216, gen_liy216_len); - ctx->pc += gen_liy216_len; - return pc; - } -void *compile_liy217(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy217, gen_liy217_len); - ctx->pc += gen_liy217_len; - return pc; - } -void *compile_liy218(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy218, gen_liy218_len); - ctx->pc += gen_liy218_len; - return pc; - } -void *compile_liy219(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy219, gen_liy219_len); - ctx->pc += gen_liy219_len; - return pc; - } -void *compile_liy22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy22, gen_liy22_len); - ctx->pc += gen_liy22_len; - return pc; - } -void *compile_liy220(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy220, gen_liy220_len); - ctx->pc += gen_liy220_len; - return pc; - } -void *compile_liy221(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy221, gen_liy221_len); - ctx->pc += gen_liy221_len; - return pc; - } -void *compile_liy222(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy222, gen_liy222_len); - ctx->pc += gen_liy222_len; - return pc; - } -void *compile_liy223(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy223, gen_liy223_len); - ctx->pc += gen_liy223_len; - return pc; - } -void *compile_liy224(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy224, gen_liy224_len); - ctx->pc += gen_liy224_len; - return pc; - } -void *compile_liy225(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy225, gen_liy225_len); - ctx->pc += gen_liy225_len; - return pc; - } -void *compile_liy226(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy226, gen_liy226_len); - ctx->pc += gen_liy226_len; - return pc; - } -void *compile_liy227(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy227, gen_liy227_len); - ctx->pc += gen_liy227_len; - return pc; - } -void *compile_liy228(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy228, gen_liy228_len); - ctx->pc += gen_liy228_len; - return pc; - } -void *compile_liy229(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy229, gen_liy229_len); - ctx->pc += gen_liy229_len; - return pc; - } -void *compile_liy23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy23, gen_liy23_len); - ctx->pc += gen_liy23_len; - return pc; - } -void *compile_liy230(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy230, gen_liy230_len); - ctx->pc += gen_liy230_len; - return pc; - } -void *compile_liy231(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy231, gen_liy231_len); - ctx->pc += gen_liy231_len; - return pc; - } -void *compile_liy232(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy232, gen_liy232_len); - ctx->pc += gen_liy232_len; - return pc; - } -void *compile_liy233(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy233, gen_liy233_len); - ctx->pc += gen_liy233_len; - return pc; - } -void *compile_liy234(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy234, gen_liy234_len); - ctx->pc += gen_liy234_len; - return pc; - } -void *compile_liy235(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy235, gen_liy235_len); - ctx->pc += gen_liy235_len; - return pc; - } -void *compile_liy236(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy236, gen_liy236_len); - ctx->pc += gen_liy236_len; - return pc; - } -void *compile_liy237(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy237, gen_liy237_len); - ctx->pc += gen_liy237_len; - return pc; - } -void *compile_liy238(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy238, gen_liy238_len); - ctx->pc += gen_liy238_len; - return pc; - } -void *compile_liy239(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy239, gen_liy239_len); - ctx->pc += gen_liy239_len; - return pc; - } -void *compile_liy24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy24, gen_liy24_len); - ctx->pc += gen_liy24_len; - return pc; - } -void *compile_liy240(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy240, gen_liy240_len); - ctx->pc += gen_liy240_len; - return pc; - } -void *compile_liy241(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy241, gen_liy241_len); - ctx->pc += gen_liy241_len; - return pc; - } -void *compile_liy242(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy242, gen_liy242_len); - ctx->pc += gen_liy242_len; - return pc; - } -void *compile_liy243(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy243, gen_liy243_len); - ctx->pc += gen_liy243_len; - return pc; - } -void *compile_liy244(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy244, gen_liy244_len); - ctx->pc += gen_liy244_len; - return pc; - } -void *compile_liy245(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy245, gen_liy245_len); - ctx->pc += gen_liy245_len; - return pc; - } -void *compile_liy246(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy246, gen_liy246_len); - ctx->pc += gen_liy246_len; - return pc; - } -void *compile_liy247(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy247, gen_liy247_len); - ctx->pc += gen_liy247_len; - return pc; - } -void *compile_liy248(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy248, gen_liy248_len); - ctx->pc += gen_liy248_len; - return pc; - } -void *compile_liy249(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy249, gen_liy249_len); - ctx->pc += gen_liy249_len; - return pc; - } -void *compile_liy25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy25, gen_liy25_len); - ctx->pc += gen_liy25_len; - return pc; - } -void *compile_liy250(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy250, gen_liy250_len); - ctx->pc += gen_liy250_len; - return pc; - } -void *compile_liy251(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy251, gen_liy251_len); - ctx->pc += gen_liy251_len; - return pc; - } -void *compile_liy252(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy252, gen_liy252_len); - ctx->pc += gen_liy252_len; - return pc; - } -void *compile_liy253(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy253, gen_liy253_len); - ctx->pc += gen_liy253_len; - return pc; - } -void *compile_liy254(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy254, gen_liy254_len); - ctx->pc += gen_liy254_len; - return pc; - } -void *compile_liy255(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy255, gen_liy255_len); - ctx->pc += gen_liy255_len; - return pc; - } -void *compile_liy26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy26, gen_liy26_len); - ctx->pc += gen_liy26_len; - return pc; - } -void *compile_liy27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy27, gen_liy27_len); - ctx->pc += gen_liy27_len; - return pc; - } -void *compile_liy28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy28, gen_liy28_len); - ctx->pc += gen_liy28_len; - return pc; - } -void *compile_liy29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy29, gen_liy29_len); - ctx->pc += gen_liy29_len; - return pc; - } -void *compile_liy3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy3, gen_liy3_len); - ctx->pc += gen_liy3_len; - return pc; - } -void *compile_liy30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy30, gen_liy30_len); - ctx->pc += gen_liy30_len; - return pc; - } -void *compile_liy31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy31, gen_liy31_len); - ctx->pc += gen_liy31_len; - return pc; - } -void *compile_liy32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy32, gen_liy32_len); - ctx->pc += gen_liy32_len; - return pc; - } -void *compile_liy33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy33, gen_liy33_len); - ctx->pc += gen_liy33_len; - return pc; - } -void *compile_liy34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy34, gen_liy34_len); - ctx->pc += gen_liy34_len; - return pc; - } -void *compile_liy35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy35, gen_liy35_len); - ctx->pc += gen_liy35_len; - return pc; - } -void *compile_liy36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy36, gen_liy36_len); - ctx->pc += gen_liy36_len; - return pc; - } -void *compile_liy37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy37, gen_liy37_len); - ctx->pc += gen_liy37_len; - return pc; - } -void *compile_liy38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy38, gen_liy38_len); - ctx->pc += gen_liy38_len; - return pc; - } -void *compile_liy39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy39, gen_liy39_len); - ctx->pc += gen_liy39_len; - return pc; - } -void *compile_liy4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy4, gen_liy4_len); - ctx->pc += gen_liy4_len; - return pc; - } -void *compile_liy40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy40, gen_liy40_len); - ctx->pc += gen_liy40_len; - return pc; - } -void *compile_liy41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy41, gen_liy41_len); - ctx->pc += gen_liy41_len; - return pc; - } -void *compile_liy42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy42, gen_liy42_len); - ctx->pc += gen_liy42_len; - return pc; - } -void *compile_liy43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy43, gen_liy43_len); - ctx->pc += gen_liy43_len; - return pc; - } -void *compile_liy44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy44, gen_liy44_len); - ctx->pc += gen_liy44_len; - return pc; - } -void *compile_liy45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy45, gen_liy45_len); - ctx->pc += gen_liy45_len; - return pc; - } -void *compile_liy46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy46, gen_liy46_len); - ctx->pc += gen_liy46_len; - return pc; - } -void *compile_liy47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy47, gen_liy47_len); - ctx->pc += gen_liy47_len; - return pc; - } -void *compile_liy48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy48, gen_liy48_len); - ctx->pc += gen_liy48_len; - return pc; - } -void *compile_liy49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy49, gen_liy49_len); - ctx->pc += gen_liy49_len; - return pc; - } -void *compile_liy5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy5, gen_liy5_len); - ctx->pc += gen_liy5_len; - return pc; - } -void *compile_liy50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy50, gen_liy50_len); - ctx->pc += gen_liy50_len; - return pc; - } -void *compile_liy51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy51, gen_liy51_len); - ctx->pc += gen_liy51_len; - return pc; - } -void *compile_liy52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy52, gen_liy52_len); - ctx->pc += gen_liy52_len; - return pc; - } -void *compile_liy53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy53, gen_liy53_len); - ctx->pc += gen_liy53_len; - return pc; - } -void *compile_liy54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy54, gen_liy54_len); - ctx->pc += gen_liy54_len; - return pc; - } -void *compile_liy55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy55, gen_liy55_len); - ctx->pc += gen_liy55_len; - return pc; - } -void *compile_liy56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy56, gen_liy56_len); - ctx->pc += gen_liy56_len; - return pc; - } -void *compile_liy57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy57, gen_liy57_len); - ctx->pc += gen_liy57_len; - return pc; - } -void *compile_liy58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy58, gen_liy58_len); - ctx->pc += gen_liy58_len; - return pc; - } -void *compile_liy59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy59, gen_liy59_len); - ctx->pc += gen_liy59_len; - return pc; - } -void *compile_liy6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy6, gen_liy6_len); - ctx->pc += gen_liy6_len; - return pc; - } -void *compile_liy60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy60, gen_liy60_len); - ctx->pc += gen_liy60_len; - return pc; - } -void *compile_liy61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy61, gen_liy61_len); - ctx->pc += gen_liy61_len; - return pc; - } -void *compile_liy62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy62, gen_liy62_len); - ctx->pc += gen_liy62_len; - return pc; - } -void *compile_liy63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy63, gen_liy63_len); - ctx->pc += gen_liy63_len; - return pc; - } -void *compile_liy64(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy64, gen_liy64_len); - ctx->pc += gen_liy64_len; - return pc; - } -void *compile_liy65(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy65, gen_liy65_len); - ctx->pc += gen_liy65_len; - return pc; - } -void *compile_liy66(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy66, gen_liy66_len); - ctx->pc += gen_liy66_len; - return pc; - } -void *compile_liy67(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy67, gen_liy67_len); - ctx->pc += gen_liy67_len; - return pc; - } -void *compile_liy68(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy68, gen_liy68_len); - ctx->pc += gen_liy68_len; - return pc; - } -void *compile_liy69(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy69, gen_liy69_len); - ctx->pc += gen_liy69_len; - return pc; - } -void *compile_liy7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy7, gen_liy7_len); - ctx->pc += gen_liy7_len; - return pc; - } -void *compile_liy70(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy70, gen_liy70_len); - ctx->pc += gen_liy70_len; - return pc; - } -void *compile_liy71(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy71, gen_liy71_len); - ctx->pc += gen_liy71_len; - return pc; - } -void *compile_liy72(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy72, gen_liy72_len); - ctx->pc += gen_liy72_len; - return pc; - } -void *compile_liy73(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy73, gen_liy73_len); - ctx->pc += gen_liy73_len; - return pc; - } -void *compile_liy74(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy74, gen_liy74_len); - ctx->pc += gen_liy74_len; - return pc; - } -void *compile_liy75(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy75, gen_liy75_len); - ctx->pc += gen_liy75_len; - return pc; - } -void *compile_liy76(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy76, gen_liy76_len); - ctx->pc += gen_liy76_len; - return pc; - } -void *compile_liy77(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy77, gen_liy77_len); - ctx->pc += gen_liy77_len; - return pc; - } -void *compile_liy78(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy78, gen_liy78_len); - ctx->pc += gen_liy78_len; - return pc; - } -void *compile_liy79(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy79, gen_liy79_len); - ctx->pc += gen_liy79_len; - return pc; - } -void *compile_liy8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy8, gen_liy8_len); - ctx->pc += gen_liy8_len; - return pc; - } -void *compile_liy80(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy80, gen_liy80_len); - ctx->pc += gen_liy80_len; - return pc; - } -void *compile_liy81(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy81, gen_liy81_len); - ctx->pc += gen_liy81_len; - return pc; - } -void *compile_liy82(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy82, gen_liy82_len); - ctx->pc += gen_liy82_len; - return pc; - } -void *compile_liy83(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy83, gen_liy83_len); - ctx->pc += gen_liy83_len; - return pc; - } -void *compile_liy84(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy84, gen_liy84_len); - ctx->pc += gen_liy84_len; - return pc; - } -void *compile_liy85(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy85, gen_liy85_len); - ctx->pc += gen_liy85_len; - return pc; - } -void *compile_liy86(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy86, gen_liy86_len); - ctx->pc += gen_liy86_len; - return pc; - } -void *compile_liy87(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy87, gen_liy87_len); - ctx->pc += gen_liy87_len; - return pc; - } -void *compile_liy88(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy88, gen_liy88_len); - ctx->pc += gen_liy88_len; - return pc; - } -void *compile_liy89(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy89, gen_liy89_len); - ctx->pc += gen_liy89_len; - return pc; - } -void *compile_liy9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy9, gen_liy9_len); - ctx->pc += gen_liy9_len; - return pc; - } -void *compile_liy90(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy90, gen_liy90_len); - ctx->pc += gen_liy90_len; - return pc; - } -void *compile_liy91(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy91, gen_liy91_len); - ctx->pc += gen_liy91_len; - return pc; - } -void *compile_liy92(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy92, gen_liy92_len); - ctx->pc += gen_liy92_len; - return pc; - } -void *compile_liy93(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy93, gen_liy93_len); - ctx->pc += gen_liy93_len; - return pc; - } -void *compile_liy94(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy94, gen_liy94_len); - ctx->pc += gen_liy94_len; - return pc; - } -void *compile_liy95(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy95, gen_liy95_len); - ctx->pc += gen_liy95_len; - return pc; - } -void *compile_liy96(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy96, gen_liy96_len); - ctx->pc += gen_liy96_len; - return pc; - } -void *compile_liy97(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy97, gen_liy97_len); - ctx->pc += gen_liy97_len; - return pc; - } -void *compile_liy98(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy98, gen_liy98_len); - ctx->pc += gen_liy98_len; - return pc; - } -void *compile_liy99(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_liy99, gen_liy99_len); - ctx->pc += gen_liy99_len; - return pc; - } -void *compile_sla0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla0, gen_sla0_len); - ctx->pc += gen_sla0_len; - return pc; - } -void *compile_sla1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla1, gen_sla1_len); - ctx->pc += gen_sla1_len; - return pc; - } -void *compile_sla10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla10, gen_sla10_len); - ctx->pc += gen_sla10_len; - return pc; - } -void *compile_sla11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla11, gen_sla11_len); - ctx->pc += gen_sla11_len; - return pc; - } -void *compile_sla12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla12, gen_sla12_len); - ctx->pc += gen_sla12_len; - return pc; - } -void *compile_sla13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla13, gen_sla13_len); - ctx->pc += gen_sla13_len; - return pc; - } -void *compile_sla14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla14, gen_sla14_len); - ctx->pc += gen_sla14_len; - return pc; - } -void *compile_sla15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla15, gen_sla15_len); - ctx->pc += gen_sla15_len; - return pc; - } -void *compile_sla16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla16, gen_sla16_len); - ctx->pc += gen_sla16_len; - return pc; - } -void *compile_sla17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla17, gen_sla17_len); - ctx->pc += gen_sla17_len; - return pc; - } -void *compile_sla18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla18, gen_sla18_len); - ctx->pc += gen_sla18_len; - return pc; - } -void *compile_sla19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla19, gen_sla19_len); - ctx->pc += gen_sla19_len; - return pc; - } -void *compile_sla2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla2, gen_sla2_len); - ctx->pc += gen_sla2_len; - return pc; - } -void *compile_sla20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla20, gen_sla20_len); - ctx->pc += gen_sla20_len; - return pc; - } -void *compile_sla21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla21, gen_sla21_len); - ctx->pc += gen_sla21_len; - return pc; - } -void *compile_sla22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla22, gen_sla22_len); - ctx->pc += gen_sla22_len; - return pc; - } -void *compile_sla23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla23, gen_sla23_len); - ctx->pc += gen_sla23_len; - return pc; - } -void *compile_sla24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla24, gen_sla24_len); - ctx->pc += gen_sla24_len; - return pc; - } -void *compile_sla25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla25, gen_sla25_len); - ctx->pc += gen_sla25_len; - return pc; - } -void *compile_sla26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla26, gen_sla26_len); - ctx->pc += gen_sla26_len; - return pc; - } -void *compile_sla27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla27, gen_sla27_len); - ctx->pc += gen_sla27_len; - return pc; - } -void *compile_sla28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla28, gen_sla28_len); - ctx->pc += gen_sla28_len; - return pc; - } -void *compile_sla29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla29, gen_sla29_len); - ctx->pc += gen_sla29_len; - return pc; - } -void *compile_sla3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla3, gen_sla3_len); - ctx->pc += gen_sla3_len; - return pc; - } -void *compile_sla30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla30, gen_sla30_len); - ctx->pc += gen_sla30_len; - return pc; - } -void *compile_sla31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla31, gen_sla31_len); - ctx->pc += gen_sla31_len; - return pc; - } -void *compile_sla32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla32, gen_sla32_len); - ctx->pc += gen_sla32_len; - return pc; - } -void *compile_sla33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla33, gen_sla33_len); - ctx->pc += gen_sla33_len; - return pc; - } -void *compile_sla34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla34, gen_sla34_len); - ctx->pc += gen_sla34_len; - return pc; - } -void *compile_sla35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla35, gen_sla35_len); - ctx->pc += gen_sla35_len; - return pc; - } -void *compile_sla36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla36, gen_sla36_len); - ctx->pc += gen_sla36_len; - return pc; - } -void *compile_sla37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla37, gen_sla37_len); - ctx->pc += gen_sla37_len; - return pc; - } -void *compile_sla38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla38, gen_sla38_len); - ctx->pc += gen_sla38_len; - return pc; - } -void *compile_sla39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla39, gen_sla39_len); - ctx->pc += gen_sla39_len; - return pc; - } -void *compile_sla4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla4, gen_sla4_len); - ctx->pc += gen_sla4_len; - return pc; - } -void *compile_sla40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla40, gen_sla40_len); - ctx->pc += gen_sla40_len; - return pc; - } -void *compile_sla41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla41, gen_sla41_len); - ctx->pc += gen_sla41_len; - return pc; - } -void *compile_sla42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla42, gen_sla42_len); - ctx->pc += gen_sla42_len; - return pc; - } -void *compile_sla43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla43, gen_sla43_len); - ctx->pc += gen_sla43_len; - return pc; - } -void *compile_sla44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla44, gen_sla44_len); - ctx->pc += gen_sla44_len; - return pc; - } -void *compile_sla45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla45, gen_sla45_len); - ctx->pc += gen_sla45_len; - return pc; - } -void *compile_sla46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla46, gen_sla46_len); - ctx->pc += gen_sla46_len; - return pc; - } -void *compile_sla47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla47, gen_sla47_len); - ctx->pc += gen_sla47_len; - return pc; - } -void *compile_sla48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla48, gen_sla48_len); - ctx->pc += gen_sla48_len; - return pc; - } -void *compile_sla49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla49, gen_sla49_len); - ctx->pc += gen_sla49_len; - return pc; - } -void *compile_sla5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla5, gen_sla5_len); - ctx->pc += gen_sla5_len; - return pc; - } -void *compile_sla50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla50, gen_sla50_len); - ctx->pc += gen_sla50_len; - return pc; - } -void *compile_sla51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla51, gen_sla51_len); - ctx->pc += gen_sla51_len; - return pc; - } -void *compile_sla52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla52, gen_sla52_len); - ctx->pc += gen_sla52_len; - return pc; - } -void *compile_sla53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla53, gen_sla53_len); - ctx->pc += gen_sla53_len; - return pc; - } -void *compile_sla54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla54, gen_sla54_len); - ctx->pc += gen_sla54_len; - return pc; - } -void *compile_sla55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla55, gen_sla55_len); - ctx->pc += gen_sla55_len; - return pc; - } -void *compile_sla56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla56, gen_sla56_len); - ctx->pc += gen_sla56_len; - return pc; - } -void *compile_sla57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla57, gen_sla57_len); - ctx->pc += gen_sla57_len; - return pc; - } -void *compile_sla58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla58, gen_sla58_len); - ctx->pc += gen_sla58_len; - return pc; - } -void *compile_sla59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla59, gen_sla59_len); - ctx->pc += gen_sla59_len; - return pc; - } -void *compile_sla6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla6, gen_sla6_len); - ctx->pc += gen_sla6_len; - return pc; - } -void *compile_sla60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla60, gen_sla60_len); - ctx->pc += gen_sla60_len; - return pc; - } -void *compile_sla61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla61, gen_sla61_len); - ctx->pc += gen_sla61_len; - return pc; - } -void *compile_sla62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla62, gen_sla62_len); - ctx->pc += gen_sla62_len; - return pc; - } -void *compile_sla63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla63, gen_sla63_len); - ctx->pc += gen_sla63_len; - return pc; - } -void *compile_sla7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla7, gen_sla7_len); - ctx->pc += gen_sla7_len; - return pc; - } -void *compile_sla8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla8, gen_sla8_len); - ctx->pc += gen_sla8_len; - return pc; - } -void *compile_sla9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sla9, gen_sla9_len); - ctx->pc += gen_sla9_len; - return pc; - } -void *compile_slo0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo0, gen_slo0_len); - ctx->pc += gen_slo0_len; - return pc; - } -void *compile_slo1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo1, gen_slo1_len); - ctx->pc += gen_slo1_len; - return pc; - } -void *compile_slo10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo10, gen_slo10_len); - ctx->pc += gen_slo10_len; - return pc; - } -void *compile_slo11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo11, gen_slo11_len); - ctx->pc += gen_slo11_len; - return pc; - } -void *compile_slo12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo12, gen_slo12_len); - ctx->pc += gen_slo12_len; - return pc; - } -void *compile_slo13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo13, gen_slo13_len); - ctx->pc += gen_slo13_len; - return pc; - } -void *compile_slo14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo14, gen_slo14_len); - ctx->pc += gen_slo14_len; - return pc; - } -void *compile_slo15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo15, gen_slo15_len); - ctx->pc += gen_slo15_len; - return pc; - } -void *compile_slo16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo16, gen_slo16_len); - ctx->pc += gen_slo16_len; - return pc; - } -void *compile_slo17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo17, gen_slo17_len); - ctx->pc += gen_slo17_len; - return pc; - } -void *compile_slo18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo18, gen_slo18_len); - ctx->pc += gen_slo18_len; - return pc; - } -void *compile_slo19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo19, gen_slo19_len); - ctx->pc += gen_slo19_len; - return pc; - } -void *compile_slo2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo2, gen_slo2_len); - ctx->pc += gen_slo2_len; - return pc; - } -void *compile_slo20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo20, gen_slo20_len); - ctx->pc += gen_slo20_len; - return pc; - } -void *compile_slo21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo21, gen_slo21_len); - ctx->pc += gen_slo21_len; - return pc; - } -void *compile_slo22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo22, gen_slo22_len); - ctx->pc += gen_slo22_len; - return pc; - } -void *compile_slo23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo23, gen_slo23_len); - ctx->pc += gen_slo23_len; - return pc; - } -void *compile_slo24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo24, gen_slo24_len); - ctx->pc += gen_slo24_len; - return pc; - } -void *compile_slo25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo25, gen_slo25_len); - ctx->pc += gen_slo25_len; - return pc; - } -void *compile_slo26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo26, gen_slo26_len); - ctx->pc += gen_slo26_len; - return pc; - } -void *compile_slo27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo27, gen_slo27_len); - ctx->pc += gen_slo27_len; - return pc; - } -void *compile_slo28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo28, gen_slo28_len); - ctx->pc += gen_slo28_len; - return pc; - } -void *compile_slo29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo29, gen_slo29_len); - ctx->pc += gen_slo29_len; - return pc; - } -void *compile_slo3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo3, gen_slo3_len); - ctx->pc += gen_slo3_len; - return pc; - } -void *compile_slo30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo30, gen_slo30_len); - ctx->pc += gen_slo30_len; - return pc; - } -void *compile_slo31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo31, gen_slo31_len); - ctx->pc += gen_slo31_len; - return pc; - } -void *compile_slo32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo32, gen_slo32_len); - ctx->pc += gen_slo32_len; - return pc; - } -void *compile_slo33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo33, gen_slo33_len); - ctx->pc += gen_slo33_len; - return pc; - } -void *compile_slo34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo34, gen_slo34_len); - ctx->pc += gen_slo34_len; - return pc; - } -void *compile_slo35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo35, gen_slo35_len); - ctx->pc += gen_slo35_len; - return pc; - } -void *compile_slo36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo36, gen_slo36_len); - ctx->pc += gen_slo36_len; - return pc; - } -void *compile_slo37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo37, gen_slo37_len); - ctx->pc += gen_slo37_len; - return pc; - } -void *compile_slo38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo38, gen_slo38_len); - ctx->pc += gen_slo38_len; - return pc; - } -void *compile_slo39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo39, gen_slo39_len); - ctx->pc += gen_slo39_len; - return pc; - } -void *compile_slo4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo4, gen_slo4_len); - ctx->pc += gen_slo4_len; - return pc; - } -void *compile_slo40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo40, gen_slo40_len); - ctx->pc += gen_slo40_len; - return pc; - } -void *compile_slo41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo41, gen_slo41_len); - ctx->pc += gen_slo41_len; - return pc; - } -void *compile_slo42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo42, gen_slo42_len); - ctx->pc += gen_slo42_len; - return pc; - } -void *compile_slo43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo43, gen_slo43_len); - ctx->pc += gen_slo43_len; - return pc; - } -void *compile_slo44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo44, gen_slo44_len); - ctx->pc += gen_slo44_len; - return pc; - } -void *compile_slo45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo45, gen_slo45_len); - ctx->pc += gen_slo45_len; - return pc; - } -void *compile_slo46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo46, gen_slo46_len); - ctx->pc += gen_slo46_len; - return pc; - } -void *compile_slo47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo47, gen_slo47_len); - ctx->pc += gen_slo47_len; - return pc; - } -void *compile_slo48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo48, gen_slo48_len); - ctx->pc += gen_slo48_len; - return pc; - } -void *compile_slo49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo49, gen_slo49_len); - ctx->pc += gen_slo49_len; - return pc; - } -void *compile_slo5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo5, gen_slo5_len); - ctx->pc += gen_slo5_len; - return pc; - } -void *compile_slo50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo50, gen_slo50_len); - ctx->pc += gen_slo50_len; - return pc; - } -void *compile_slo51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo51, gen_slo51_len); - ctx->pc += gen_slo51_len; - return pc; - } -void *compile_slo52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo52, gen_slo52_len); - ctx->pc += gen_slo52_len; - return pc; - } -void *compile_slo53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo53, gen_slo53_len); - ctx->pc += gen_slo53_len; - return pc; - } -void *compile_slo54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo54, gen_slo54_len); - ctx->pc += gen_slo54_len; - return pc; - } -void *compile_slo55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo55, gen_slo55_len); - ctx->pc += gen_slo55_len; - return pc; - } -void *compile_slo56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo56, gen_slo56_len); - ctx->pc += gen_slo56_len; - return pc; - } -void *compile_slo57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo57, gen_slo57_len); - ctx->pc += gen_slo57_len; - return pc; - } -void *compile_slo58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo58, gen_slo58_len); - ctx->pc += gen_slo58_len; - return pc; - } -void *compile_slo59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo59, gen_slo59_len); - ctx->pc += gen_slo59_len; - return pc; - } -void *compile_slo6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo6, gen_slo6_len); - ctx->pc += gen_slo6_len; - return pc; - } -void *compile_slo60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo60, gen_slo60_len); - ctx->pc += gen_slo60_len; - return pc; - } -void *compile_slo61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo61, gen_slo61_len); - ctx->pc += gen_slo61_len; - return pc; - } -void *compile_slo62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo62, gen_slo62_len); - ctx->pc += gen_slo62_len; - return pc; - } -void *compile_slo63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo63, gen_slo63_len); - ctx->pc += gen_slo63_len; - return pc; - } -void *compile_slo7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo7, gen_slo7_len); - ctx->pc += gen_slo7_len; - return pc; - } -void *compile_slo8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo8, gen_slo8_len); - ctx->pc += gen_slo8_len; - return pc; - } -void *compile_slo9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slo9, gen_slo9_len); - ctx->pc += gen_slo9_len; - return pc; - } -void *compile_slx0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx0, gen_slx0_len); - ctx->pc += gen_slx0_len; - return pc; - } -void *compile_slx1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx1, gen_slx1_len); - ctx->pc += gen_slx1_len; - return pc; - } -void *compile_slx10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx10, gen_slx10_len); - ctx->pc += gen_slx10_len; - return pc; - } -void *compile_slx11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx11, gen_slx11_len); - ctx->pc += gen_slx11_len; - return pc; - } -void *compile_slx12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx12, gen_slx12_len); - ctx->pc += gen_slx12_len; - return pc; - } -void *compile_slx13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx13, gen_slx13_len); - ctx->pc += gen_slx13_len; - return pc; - } -void *compile_slx14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx14, gen_slx14_len); - ctx->pc += gen_slx14_len; - return pc; - } -void *compile_slx15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx15, gen_slx15_len); - ctx->pc += gen_slx15_len; - return pc; - } -void *compile_slx16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx16, gen_slx16_len); - ctx->pc += gen_slx16_len; - return pc; - } -void *compile_slx17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx17, gen_slx17_len); - ctx->pc += gen_slx17_len; - return pc; - } -void *compile_slx18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx18, gen_slx18_len); - ctx->pc += gen_slx18_len; - return pc; - } -void *compile_slx19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx19, gen_slx19_len); - ctx->pc += gen_slx19_len; - return pc; - } -void *compile_slx2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx2, gen_slx2_len); - ctx->pc += gen_slx2_len; - return pc; - } -void *compile_slx20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx20, gen_slx20_len); - ctx->pc += gen_slx20_len; - return pc; - } -void *compile_slx21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx21, gen_slx21_len); - ctx->pc += gen_slx21_len; - return pc; - } -void *compile_slx22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx22, gen_slx22_len); - ctx->pc += gen_slx22_len; - return pc; - } -void *compile_slx23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx23, gen_slx23_len); - ctx->pc += gen_slx23_len; - return pc; - } -void *compile_slx24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx24, gen_slx24_len); - ctx->pc += gen_slx24_len; - return pc; - } -void *compile_slx25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx25, gen_slx25_len); - ctx->pc += gen_slx25_len; - return pc; - } -void *compile_slx26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx26, gen_slx26_len); - ctx->pc += gen_slx26_len; - return pc; - } -void *compile_slx27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx27, gen_slx27_len); - ctx->pc += gen_slx27_len; - return pc; - } -void *compile_slx28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx28, gen_slx28_len); - ctx->pc += gen_slx28_len; - return pc; - } -void *compile_slx29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx29, gen_slx29_len); - ctx->pc += gen_slx29_len; - return pc; - } -void *compile_slx3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx3, gen_slx3_len); - ctx->pc += gen_slx3_len; - return pc; - } -void *compile_slx30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx30, gen_slx30_len); - ctx->pc += gen_slx30_len; - return pc; - } -void *compile_slx31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx31, gen_slx31_len); - ctx->pc += gen_slx31_len; - return pc; - } -void *compile_slx32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx32, gen_slx32_len); - ctx->pc += gen_slx32_len; - return pc; - } -void *compile_slx33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx33, gen_slx33_len); - ctx->pc += gen_slx33_len; - return pc; - } -void *compile_slx34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx34, gen_slx34_len); - ctx->pc += gen_slx34_len; - return pc; - } -void *compile_slx35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx35, gen_slx35_len); - ctx->pc += gen_slx35_len; - return pc; - } -void *compile_slx36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx36, gen_slx36_len); - ctx->pc += gen_slx36_len; - return pc; - } -void *compile_slx37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx37, gen_slx37_len); - ctx->pc += gen_slx37_len; - return pc; - } -void *compile_slx38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx38, gen_slx38_len); - ctx->pc += gen_slx38_len; - return pc; - } -void *compile_slx39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx39, gen_slx39_len); - ctx->pc += gen_slx39_len; - return pc; - } -void *compile_slx4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx4, gen_slx4_len); - ctx->pc += gen_slx4_len; - return pc; - } -void *compile_slx40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx40, gen_slx40_len); - ctx->pc += gen_slx40_len; - return pc; - } -void *compile_slx41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx41, gen_slx41_len); - ctx->pc += gen_slx41_len; - return pc; - } -void *compile_slx42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx42, gen_slx42_len); - ctx->pc += gen_slx42_len; - return pc; - } -void *compile_slx43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx43, gen_slx43_len); - ctx->pc += gen_slx43_len; - return pc; - } -void *compile_slx44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx44, gen_slx44_len); - ctx->pc += gen_slx44_len; - return pc; - } -void *compile_slx45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx45, gen_slx45_len); - ctx->pc += gen_slx45_len; - return pc; - } -void *compile_slx46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx46, gen_slx46_len); - ctx->pc += gen_slx46_len; - return pc; - } -void *compile_slx47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx47, gen_slx47_len); - ctx->pc += gen_slx47_len; - return pc; - } -void *compile_slx48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx48, gen_slx48_len); - ctx->pc += gen_slx48_len; - return pc; - } -void *compile_slx49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx49, gen_slx49_len); - ctx->pc += gen_slx49_len; - return pc; - } -void *compile_slx5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx5, gen_slx5_len); - ctx->pc += gen_slx5_len; - return pc; - } -void *compile_slx50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx50, gen_slx50_len); - ctx->pc += gen_slx50_len; - return pc; - } -void *compile_slx51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx51, gen_slx51_len); - ctx->pc += gen_slx51_len; - return pc; - } -void *compile_slx52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx52, gen_slx52_len); - ctx->pc += gen_slx52_len; - return pc; - } -void *compile_slx53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx53, gen_slx53_len); - ctx->pc += gen_slx53_len; - return pc; - } -void *compile_slx54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx54, gen_slx54_len); - ctx->pc += gen_slx54_len; - return pc; - } -void *compile_slx55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx55, gen_slx55_len); - ctx->pc += gen_slx55_len; - return pc; - } -void *compile_slx56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx56, gen_slx56_len); - ctx->pc += gen_slx56_len; - return pc; - } -void *compile_slx57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx57, gen_slx57_len); - ctx->pc += gen_slx57_len; - return pc; - } -void *compile_slx58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx58, gen_slx58_len); - ctx->pc += gen_slx58_len; - return pc; - } -void *compile_slx59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx59, gen_slx59_len); - ctx->pc += gen_slx59_len; - return pc; - } -void *compile_slx6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx6, gen_slx6_len); - ctx->pc += gen_slx6_len; - return pc; - } -void *compile_slx60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx60, gen_slx60_len); - ctx->pc += gen_slx60_len; - return pc; - } -void *compile_slx61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx61, gen_slx61_len); - ctx->pc += gen_slx61_len; - return pc; - } -void *compile_slx62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx62, gen_slx62_len); - ctx->pc += gen_slx62_len; - return pc; - } -void *compile_slx63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx63, gen_slx63_len); - ctx->pc += gen_slx63_len; - return pc; - } -void *compile_slx7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx7, gen_slx7_len); - ctx->pc += gen_slx7_len; - return pc; - } -void *compile_slx8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx8, gen_slx8_len); - ctx->pc += gen_slx8_len; - return pc; - } -void *compile_slx9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_slx9, gen_slx9_len); - ctx->pc += gen_slx9_len; - return pc; - } -void *compile_sly0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly0, gen_sly0_len); - ctx->pc += gen_sly0_len; - return pc; - } -void *compile_sly1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly1, gen_sly1_len); - ctx->pc += gen_sly1_len; - return pc; - } -void *compile_sly10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly10, gen_sly10_len); - ctx->pc += gen_sly10_len; - return pc; - } -void *compile_sly11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly11, gen_sly11_len); - ctx->pc += gen_sly11_len; - return pc; - } -void *compile_sly12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly12, gen_sly12_len); - ctx->pc += gen_sly12_len; - return pc; - } -void *compile_sly13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly13, gen_sly13_len); - ctx->pc += gen_sly13_len; - return pc; - } -void *compile_sly14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly14, gen_sly14_len); - ctx->pc += gen_sly14_len; - return pc; - } -void *compile_sly15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly15, gen_sly15_len); - ctx->pc += gen_sly15_len; - return pc; - } -void *compile_sly16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly16, gen_sly16_len); - ctx->pc += gen_sly16_len; - return pc; - } -void *compile_sly17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly17, gen_sly17_len); - ctx->pc += gen_sly17_len; - return pc; - } -void *compile_sly18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly18, gen_sly18_len); - ctx->pc += gen_sly18_len; - return pc; - } -void *compile_sly19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly19, gen_sly19_len); - ctx->pc += gen_sly19_len; - return pc; - } -void *compile_sly2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly2, gen_sly2_len); - ctx->pc += gen_sly2_len; - return pc; - } -void *compile_sly20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly20, gen_sly20_len); - ctx->pc += gen_sly20_len; - return pc; - } -void *compile_sly21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly21, gen_sly21_len); - ctx->pc += gen_sly21_len; - return pc; - } -void *compile_sly22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly22, gen_sly22_len); - ctx->pc += gen_sly22_len; - return pc; - } -void *compile_sly23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly23, gen_sly23_len); - ctx->pc += gen_sly23_len; - return pc; - } -void *compile_sly24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly24, gen_sly24_len); - ctx->pc += gen_sly24_len; - return pc; - } -void *compile_sly25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly25, gen_sly25_len); - ctx->pc += gen_sly25_len; - return pc; - } -void *compile_sly26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly26, gen_sly26_len); - ctx->pc += gen_sly26_len; - return pc; - } -void *compile_sly27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly27, gen_sly27_len); - ctx->pc += gen_sly27_len; - return pc; - } -void *compile_sly28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly28, gen_sly28_len); - ctx->pc += gen_sly28_len; - return pc; - } -void *compile_sly29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly29, gen_sly29_len); - ctx->pc += gen_sly29_len; - return pc; - } -void *compile_sly3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly3, gen_sly3_len); - ctx->pc += gen_sly3_len; - return pc; - } -void *compile_sly30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly30, gen_sly30_len); - ctx->pc += gen_sly30_len; - return pc; - } -void *compile_sly31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly31, gen_sly31_len); - ctx->pc += gen_sly31_len; - return pc; - } -void *compile_sly32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly32, gen_sly32_len); - ctx->pc += gen_sly32_len; - return pc; - } -void *compile_sly33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly33, gen_sly33_len); - ctx->pc += gen_sly33_len; - return pc; - } -void *compile_sly34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly34, gen_sly34_len); - ctx->pc += gen_sly34_len; - return pc; - } -void *compile_sly35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly35, gen_sly35_len); - ctx->pc += gen_sly35_len; - return pc; - } -void *compile_sly36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly36, gen_sly36_len); - ctx->pc += gen_sly36_len; - return pc; - } -void *compile_sly37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly37, gen_sly37_len); - ctx->pc += gen_sly37_len; - return pc; - } -void *compile_sly38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly38, gen_sly38_len); - ctx->pc += gen_sly38_len; - return pc; - } -void *compile_sly39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly39, gen_sly39_len); - ctx->pc += gen_sly39_len; - return pc; - } -void *compile_sly4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly4, gen_sly4_len); - ctx->pc += gen_sly4_len; - return pc; - } -void *compile_sly40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly40, gen_sly40_len); - ctx->pc += gen_sly40_len; - return pc; - } -void *compile_sly41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly41, gen_sly41_len); - ctx->pc += gen_sly41_len; - return pc; - } -void *compile_sly42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly42, gen_sly42_len); - ctx->pc += gen_sly42_len; - return pc; - } -void *compile_sly43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly43, gen_sly43_len); - ctx->pc += gen_sly43_len; - return pc; - } -void *compile_sly44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly44, gen_sly44_len); - ctx->pc += gen_sly44_len; - return pc; - } -void *compile_sly45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly45, gen_sly45_len); - ctx->pc += gen_sly45_len; - return pc; - } -void *compile_sly46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly46, gen_sly46_len); - ctx->pc += gen_sly46_len; - return pc; - } -void *compile_sly47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly47, gen_sly47_len); - ctx->pc += gen_sly47_len; - return pc; - } -void *compile_sly48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly48, gen_sly48_len); - ctx->pc += gen_sly48_len; - return pc; - } -void *compile_sly49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly49, gen_sly49_len); - ctx->pc += gen_sly49_len; - return pc; - } -void *compile_sly5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly5, gen_sly5_len); - ctx->pc += gen_sly5_len; - return pc; - } -void *compile_sly50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly50, gen_sly50_len); - ctx->pc += gen_sly50_len; - return pc; - } -void *compile_sly51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly51, gen_sly51_len); - ctx->pc += gen_sly51_len; - return pc; - } -void *compile_sly52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly52, gen_sly52_len); - ctx->pc += gen_sly52_len; - return pc; - } -void *compile_sly53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly53, gen_sly53_len); - ctx->pc += gen_sly53_len; - return pc; - } -void *compile_sly54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly54, gen_sly54_len); - ctx->pc += gen_sly54_len; - return pc; - } -void *compile_sly55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly55, gen_sly55_len); - ctx->pc += gen_sly55_len; - return pc; - } -void *compile_sly56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly56, gen_sly56_len); - ctx->pc += gen_sly56_len; - return pc; - } -void *compile_sly57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly57, gen_sly57_len); - ctx->pc += gen_sly57_len; - return pc; - } -void *compile_sly58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly58, gen_sly58_len); - ctx->pc += gen_sly58_len; - return pc; - } -void *compile_sly59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly59, gen_sly59_len); - ctx->pc += gen_sly59_len; - return pc; - } -void *compile_sly6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly6, gen_sly6_len); - ctx->pc += gen_sly6_len; - return pc; - } -void *compile_sly60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly60, gen_sly60_len); - ctx->pc += gen_sly60_len; - return pc; - } -void *compile_sly61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly61, gen_sly61_len); - ctx->pc += gen_sly61_len; - return pc; - } -void *compile_sly62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly62, gen_sly62_len); - ctx->pc += gen_sly62_len; - return pc; - } -void *compile_sly63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly63, gen_sly63_len); - ctx->pc += gen_sly63_len; - return pc; - } -void *compile_sly7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly7, gen_sly7_len); - ctx->pc += gen_sly7_len; - return pc; - } -void *compile_sly8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly8, gen_sly8_len); - ctx->pc += gen_sly8_len; - return pc; - } -void *compile_sly9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sly9, gen_sly9_len); - ctx->pc += gen_sly9_len; - return pc; - } -void *compile_sra0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra0, gen_sra0_len); - ctx->pc += gen_sra0_len; - return pc; - } -void *compile_sra1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra1, gen_sra1_len); - ctx->pc += gen_sra1_len; - return pc; - } -void *compile_sra10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra10, gen_sra10_len); - ctx->pc += gen_sra10_len; - return pc; - } -void *compile_sra11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra11, gen_sra11_len); - ctx->pc += gen_sra11_len; - return pc; - } -void *compile_sra12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra12, gen_sra12_len); - ctx->pc += gen_sra12_len; - return pc; - } -void *compile_sra13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra13, gen_sra13_len); - ctx->pc += gen_sra13_len; - return pc; - } -void *compile_sra14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra14, gen_sra14_len); - ctx->pc += gen_sra14_len; - return pc; - } -void *compile_sra15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra15, gen_sra15_len); - ctx->pc += gen_sra15_len; - return pc; - } -void *compile_sra16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra16, gen_sra16_len); - ctx->pc += gen_sra16_len; - return pc; - } -void *compile_sra17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra17, gen_sra17_len); - ctx->pc += gen_sra17_len; - return pc; - } -void *compile_sra18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra18, gen_sra18_len); - ctx->pc += gen_sra18_len; - return pc; - } -void *compile_sra19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra19, gen_sra19_len); - ctx->pc += gen_sra19_len; - return pc; - } -void *compile_sra2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra2, gen_sra2_len); - ctx->pc += gen_sra2_len; - return pc; - } -void *compile_sra20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra20, gen_sra20_len); - ctx->pc += gen_sra20_len; - return pc; - } -void *compile_sra21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra21, gen_sra21_len); - ctx->pc += gen_sra21_len; - return pc; - } -void *compile_sra22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra22, gen_sra22_len); - ctx->pc += gen_sra22_len; - return pc; - } -void *compile_sra23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra23, gen_sra23_len); - ctx->pc += gen_sra23_len; - return pc; - } -void *compile_sra24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra24, gen_sra24_len); - ctx->pc += gen_sra24_len; - return pc; - } -void *compile_sra25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra25, gen_sra25_len); - ctx->pc += gen_sra25_len; - return pc; - } -void *compile_sra26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra26, gen_sra26_len); - ctx->pc += gen_sra26_len; - return pc; - } -void *compile_sra27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra27, gen_sra27_len); - ctx->pc += gen_sra27_len; - return pc; - } -void *compile_sra28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra28, gen_sra28_len); - ctx->pc += gen_sra28_len; - return pc; - } -void *compile_sra29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra29, gen_sra29_len); - ctx->pc += gen_sra29_len; - return pc; - } -void *compile_sra3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra3, gen_sra3_len); - ctx->pc += gen_sra3_len; - return pc; - } -void *compile_sra30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra30, gen_sra30_len); - ctx->pc += gen_sra30_len; - return pc; - } -void *compile_sra31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra31, gen_sra31_len); - ctx->pc += gen_sra31_len; - return pc; - } -void *compile_sra32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra32, gen_sra32_len); - ctx->pc += gen_sra32_len; - return pc; - } -void *compile_sra33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra33, gen_sra33_len); - ctx->pc += gen_sra33_len; - return pc; - } -void *compile_sra34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra34, gen_sra34_len); - ctx->pc += gen_sra34_len; - return pc; - } -void *compile_sra35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra35, gen_sra35_len); - ctx->pc += gen_sra35_len; - return pc; - } -void *compile_sra36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra36, gen_sra36_len); - ctx->pc += gen_sra36_len; - return pc; - } -void *compile_sra37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra37, gen_sra37_len); - ctx->pc += gen_sra37_len; - return pc; - } -void *compile_sra38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra38, gen_sra38_len); - ctx->pc += gen_sra38_len; - return pc; - } -void *compile_sra39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra39, gen_sra39_len); - ctx->pc += gen_sra39_len; - return pc; - } -void *compile_sra4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra4, gen_sra4_len); - ctx->pc += gen_sra4_len; - return pc; - } -void *compile_sra40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra40, gen_sra40_len); - ctx->pc += gen_sra40_len; - return pc; - } -void *compile_sra41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra41, gen_sra41_len); - ctx->pc += gen_sra41_len; - return pc; - } -void *compile_sra42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra42, gen_sra42_len); - ctx->pc += gen_sra42_len; - return pc; - } -void *compile_sra43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra43, gen_sra43_len); - ctx->pc += gen_sra43_len; - return pc; - } -void *compile_sra44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra44, gen_sra44_len); - ctx->pc += gen_sra44_len; - return pc; - } -void *compile_sra45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra45, gen_sra45_len); - ctx->pc += gen_sra45_len; - return pc; - } -void *compile_sra46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra46, gen_sra46_len); - ctx->pc += gen_sra46_len; - return pc; - } -void *compile_sra47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra47, gen_sra47_len); - ctx->pc += gen_sra47_len; - return pc; - } -void *compile_sra48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra48, gen_sra48_len); - ctx->pc += gen_sra48_len; - return pc; - } -void *compile_sra49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra49, gen_sra49_len); - ctx->pc += gen_sra49_len; - return pc; - } -void *compile_sra5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra5, gen_sra5_len); - ctx->pc += gen_sra5_len; - return pc; - } -void *compile_sra50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra50, gen_sra50_len); - ctx->pc += gen_sra50_len; - return pc; - } -void *compile_sra51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra51, gen_sra51_len); - ctx->pc += gen_sra51_len; - return pc; - } -void *compile_sra52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra52, gen_sra52_len); - ctx->pc += gen_sra52_len; - return pc; - } -void *compile_sra53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra53, gen_sra53_len); - ctx->pc += gen_sra53_len; - return pc; - } -void *compile_sra54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra54, gen_sra54_len); - ctx->pc += gen_sra54_len; - return pc; - } -void *compile_sra55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra55, gen_sra55_len); - ctx->pc += gen_sra55_len; - return pc; - } -void *compile_sra56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra56, gen_sra56_len); - ctx->pc += gen_sra56_len; - return pc; - } -void *compile_sra57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra57, gen_sra57_len); - ctx->pc += gen_sra57_len; - return pc; - } -void *compile_sra58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra58, gen_sra58_len); - ctx->pc += gen_sra58_len; - return pc; - } -void *compile_sra59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra59, gen_sra59_len); - ctx->pc += gen_sra59_len; - return pc; - } -void *compile_sra6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra6, gen_sra6_len); - ctx->pc += gen_sra6_len; - return pc; - } -void *compile_sra60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra60, gen_sra60_len); - ctx->pc += gen_sra60_len; - return pc; - } -void *compile_sra61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra61, gen_sra61_len); - ctx->pc += gen_sra61_len; - return pc; - } -void *compile_sra62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra62, gen_sra62_len); - ctx->pc += gen_sra62_len; - return pc; - } -void *compile_sra63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra63, gen_sra63_len); - ctx->pc += gen_sra63_len; - return pc; - } -void *compile_sra7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra7, gen_sra7_len); - ctx->pc += gen_sra7_len; - return pc; - } -void *compile_sra8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra8, gen_sra8_len); - ctx->pc += gen_sra8_len; - return pc; - } -void *compile_sra9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sra9, gen_sra9_len); - ctx->pc += gen_sra9_len; - return pc; - } -void *compile_sro0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro0, gen_sro0_len); - ctx->pc += gen_sro0_len; - return pc; - } -void *compile_sro1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro1, gen_sro1_len); - ctx->pc += gen_sro1_len; - return pc; - } -void *compile_sro10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro10, gen_sro10_len); - ctx->pc += gen_sro10_len; - return pc; - } -void *compile_sro11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro11, gen_sro11_len); - ctx->pc += gen_sro11_len; - return pc; - } -void *compile_sro12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro12, gen_sro12_len); - ctx->pc += gen_sro12_len; - return pc; - } -void *compile_sro13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro13, gen_sro13_len); - ctx->pc += gen_sro13_len; - return pc; - } -void *compile_sro14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro14, gen_sro14_len); - ctx->pc += gen_sro14_len; - return pc; - } -void *compile_sro15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro15, gen_sro15_len); - ctx->pc += gen_sro15_len; - return pc; - } -void *compile_sro16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro16, gen_sro16_len); - ctx->pc += gen_sro16_len; - return pc; - } -void *compile_sro17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro17, gen_sro17_len); - ctx->pc += gen_sro17_len; - return pc; - } -void *compile_sro18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro18, gen_sro18_len); - ctx->pc += gen_sro18_len; - return pc; - } -void *compile_sro19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro19, gen_sro19_len); - ctx->pc += gen_sro19_len; - return pc; - } -void *compile_sro2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro2, gen_sro2_len); - ctx->pc += gen_sro2_len; - return pc; - } -void *compile_sro20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro20, gen_sro20_len); - ctx->pc += gen_sro20_len; - return pc; - } -void *compile_sro21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro21, gen_sro21_len); - ctx->pc += gen_sro21_len; - return pc; - } -void *compile_sro22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro22, gen_sro22_len); - ctx->pc += gen_sro22_len; - return pc; - } -void *compile_sro23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro23, gen_sro23_len); - ctx->pc += gen_sro23_len; - return pc; - } -void *compile_sro24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro24, gen_sro24_len); - ctx->pc += gen_sro24_len; - return pc; - } -void *compile_sro25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro25, gen_sro25_len); - ctx->pc += gen_sro25_len; - return pc; - } -void *compile_sro26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro26, gen_sro26_len); - ctx->pc += gen_sro26_len; - return pc; - } -void *compile_sro27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro27, gen_sro27_len); - ctx->pc += gen_sro27_len; - return pc; - } -void *compile_sro28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro28, gen_sro28_len); - ctx->pc += gen_sro28_len; - return pc; - } -void *compile_sro29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro29, gen_sro29_len); - ctx->pc += gen_sro29_len; - return pc; - } -void *compile_sro3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro3, gen_sro3_len); - ctx->pc += gen_sro3_len; - return pc; - } -void *compile_sro30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro30, gen_sro30_len); - ctx->pc += gen_sro30_len; - return pc; - } -void *compile_sro31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro31, gen_sro31_len); - ctx->pc += gen_sro31_len; - return pc; - } -void *compile_sro32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro32, gen_sro32_len); - ctx->pc += gen_sro32_len; - return pc; - } -void *compile_sro33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro33, gen_sro33_len); - ctx->pc += gen_sro33_len; - return pc; - } -void *compile_sro34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro34, gen_sro34_len); - ctx->pc += gen_sro34_len; - return pc; - } -void *compile_sro35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro35, gen_sro35_len); - ctx->pc += gen_sro35_len; - return pc; - } -void *compile_sro36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro36, gen_sro36_len); - ctx->pc += gen_sro36_len; - return pc; - } -void *compile_sro37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro37, gen_sro37_len); - ctx->pc += gen_sro37_len; - return pc; - } -void *compile_sro38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro38, gen_sro38_len); - ctx->pc += gen_sro38_len; - return pc; - } -void *compile_sro39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro39, gen_sro39_len); - ctx->pc += gen_sro39_len; - return pc; - } -void *compile_sro4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro4, gen_sro4_len); - ctx->pc += gen_sro4_len; - return pc; - } -void *compile_sro40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro40, gen_sro40_len); - ctx->pc += gen_sro40_len; - return pc; - } -void *compile_sro41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro41, gen_sro41_len); - ctx->pc += gen_sro41_len; - return pc; - } -void *compile_sro42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro42, gen_sro42_len); - ctx->pc += gen_sro42_len; - return pc; - } -void *compile_sro43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro43, gen_sro43_len); - ctx->pc += gen_sro43_len; - return pc; - } -void *compile_sro44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro44, gen_sro44_len); - ctx->pc += gen_sro44_len; - return pc; - } -void *compile_sro45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro45, gen_sro45_len); - ctx->pc += gen_sro45_len; - return pc; - } -void *compile_sro46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro46, gen_sro46_len); - ctx->pc += gen_sro46_len; - return pc; - } -void *compile_sro47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro47, gen_sro47_len); - ctx->pc += gen_sro47_len; - return pc; - } -void *compile_sro48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro48, gen_sro48_len); - ctx->pc += gen_sro48_len; - return pc; - } -void *compile_sro49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro49, gen_sro49_len); - ctx->pc += gen_sro49_len; - return pc; - } -void *compile_sro5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro5, gen_sro5_len); - ctx->pc += gen_sro5_len; - return pc; - } -void *compile_sro50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro50, gen_sro50_len); - ctx->pc += gen_sro50_len; - return pc; - } -void *compile_sro51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro51, gen_sro51_len); - ctx->pc += gen_sro51_len; - return pc; - } -void *compile_sro52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro52, gen_sro52_len); - ctx->pc += gen_sro52_len; - return pc; - } -void *compile_sro53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro53, gen_sro53_len); - ctx->pc += gen_sro53_len; - return pc; - } -void *compile_sro54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro54, gen_sro54_len); - ctx->pc += gen_sro54_len; - return pc; - } -void *compile_sro55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro55, gen_sro55_len); - ctx->pc += gen_sro55_len; - return pc; - } -void *compile_sro56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro56, gen_sro56_len); - ctx->pc += gen_sro56_len; - return pc; - } -void *compile_sro57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro57, gen_sro57_len); - ctx->pc += gen_sro57_len; - return pc; - } -void *compile_sro58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro58, gen_sro58_len); - ctx->pc += gen_sro58_len; - return pc; - } -void *compile_sro59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro59, gen_sro59_len); - ctx->pc += gen_sro59_len; - return pc; - } -void *compile_sro6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro6, gen_sro6_len); - ctx->pc += gen_sro6_len; - return pc; - } -void *compile_sro60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro60, gen_sro60_len); - ctx->pc += gen_sro60_len; - return pc; - } -void *compile_sro61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro61, gen_sro61_len); - ctx->pc += gen_sro61_len; - return pc; - } -void *compile_sro62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro62, gen_sro62_len); - ctx->pc += gen_sro62_len; - return pc; - } -void *compile_sro63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro63, gen_sro63_len); - ctx->pc += gen_sro63_len; - return pc; - } -void *compile_sro7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro7, gen_sro7_len); - ctx->pc += gen_sro7_len; - return pc; - } -void *compile_sro8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro8, gen_sro8_len); - ctx->pc += gen_sro8_len; - return pc; - } -void *compile_sro9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sro9, gen_sro9_len); - ctx->pc += gen_sro9_len; - return pc; - } -void *compile_srx0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx0, gen_srx0_len); - ctx->pc += gen_srx0_len; - return pc; - } -void *compile_srx1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx1, gen_srx1_len); - ctx->pc += gen_srx1_len; - return pc; - } -void *compile_srx10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx10, gen_srx10_len); - ctx->pc += gen_srx10_len; - return pc; - } -void *compile_srx11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx11, gen_srx11_len); - ctx->pc += gen_srx11_len; - return pc; - } -void *compile_srx12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx12, gen_srx12_len); - ctx->pc += gen_srx12_len; - return pc; - } -void *compile_srx13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx13, gen_srx13_len); - ctx->pc += gen_srx13_len; - return pc; - } -void *compile_srx14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx14, gen_srx14_len); - ctx->pc += gen_srx14_len; - return pc; - } -void *compile_srx15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx15, gen_srx15_len); - ctx->pc += gen_srx15_len; - return pc; - } -void *compile_srx16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx16, gen_srx16_len); - ctx->pc += gen_srx16_len; - return pc; - } -void *compile_srx17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx17, gen_srx17_len); - ctx->pc += gen_srx17_len; - return pc; - } -void *compile_srx18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx18, gen_srx18_len); - ctx->pc += gen_srx18_len; - return pc; - } -void *compile_srx19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx19, gen_srx19_len); - ctx->pc += gen_srx19_len; - return pc; - } -void *compile_srx2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx2, gen_srx2_len); - ctx->pc += gen_srx2_len; - return pc; - } -void *compile_srx20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx20, gen_srx20_len); - ctx->pc += gen_srx20_len; - return pc; - } -void *compile_srx21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx21, gen_srx21_len); - ctx->pc += gen_srx21_len; - return pc; - } -void *compile_srx22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx22, gen_srx22_len); - ctx->pc += gen_srx22_len; - return pc; - } -void *compile_srx23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx23, gen_srx23_len); - ctx->pc += gen_srx23_len; - return pc; - } -void *compile_srx24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx24, gen_srx24_len); - ctx->pc += gen_srx24_len; - return pc; - } -void *compile_srx25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx25, gen_srx25_len); - ctx->pc += gen_srx25_len; - return pc; - } -void *compile_srx26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx26, gen_srx26_len); - ctx->pc += gen_srx26_len; - return pc; - } -void *compile_srx27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx27, gen_srx27_len); - ctx->pc += gen_srx27_len; - return pc; - } -void *compile_srx28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx28, gen_srx28_len); - ctx->pc += gen_srx28_len; - return pc; - } -void *compile_srx29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx29, gen_srx29_len); - ctx->pc += gen_srx29_len; - return pc; - } -void *compile_srx3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx3, gen_srx3_len); - ctx->pc += gen_srx3_len; - return pc; - } -void *compile_srx30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx30, gen_srx30_len); - ctx->pc += gen_srx30_len; - return pc; - } -void *compile_srx31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx31, gen_srx31_len); - ctx->pc += gen_srx31_len; - return pc; - } -void *compile_srx32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx32, gen_srx32_len); - ctx->pc += gen_srx32_len; - return pc; - } -void *compile_srx33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx33, gen_srx33_len); - ctx->pc += gen_srx33_len; - return pc; - } -void *compile_srx34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx34, gen_srx34_len); - ctx->pc += gen_srx34_len; - return pc; - } -void *compile_srx35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx35, gen_srx35_len); - ctx->pc += gen_srx35_len; - return pc; - } -void *compile_srx36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx36, gen_srx36_len); - ctx->pc += gen_srx36_len; - return pc; - } -void *compile_srx37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx37, gen_srx37_len); - ctx->pc += gen_srx37_len; - return pc; - } -void *compile_srx38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx38, gen_srx38_len); - ctx->pc += gen_srx38_len; - return pc; - } -void *compile_srx39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx39, gen_srx39_len); - ctx->pc += gen_srx39_len; - return pc; - } -void *compile_srx4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx4, gen_srx4_len); - ctx->pc += gen_srx4_len; - return pc; - } -void *compile_srx40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx40, gen_srx40_len); - ctx->pc += gen_srx40_len; - return pc; - } -void *compile_srx41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx41, gen_srx41_len); - ctx->pc += gen_srx41_len; - return pc; - } -void *compile_srx42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx42, gen_srx42_len); - ctx->pc += gen_srx42_len; - return pc; - } -void *compile_srx43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx43, gen_srx43_len); - ctx->pc += gen_srx43_len; - return pc; - } -void *compile_srx44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx44, gen_srx44_len); - ctx->pc += gen_srx44_len; - return pc; - } -void *compile_srx45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx45, gen_srx45_len); - ctx->pc += gen_srx45_len; - return pc; - } -void *compile_srx46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx46, gen_srx46_len); - ctx->pc += gen_srx46_len; - return pc; - } -void *compile_srx47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx47, gen_srx47_len); - ctx->pc += gen_srx47_len; - return pc; - } -void *compile_srx48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx48, gen_srx48_len); - ctx->pc += gen_srx48_len; - return pc; - } -void *compile_srx49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx49, gen_srx49_len); - ctx->pc += gen_srx49_len; - return pc; - } -void *compile_srx5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx5, gen_srx5_len); - ctx->pc += gen_srx5_len; - return pc; - } -void *compile_srx50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx50, gen_srx50_len); - ctx->pc += gen_srx50_len; - return pc; - } -void *compile_srx51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx51, gen_srx51_len); - ctx->pc += gen_srx51_len; - return pc; - } -void *compile_srx52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx52, gen_srx52_len); - ctx->pc += gen_srx52_len; - return pc; - } -void *compile_srx53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx53, gen_srx53_len); - ctx->pc += gen_srx53_len; - return pc; - } -void *compile_srx54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx54, gen_srx54_len); - ctx->pc += gen_srx54_len; - return pc; - } -void *compile_srx55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx55, gen_srx55_len); - ctx->pc += gen_srx55_len; - return pc; - } -void *compile_srx56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx56, gen_srx56_len); - ctx->pc += gen_srx56_len; - return pc; - } -void *compile_srx57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx57, gen_srx57_len); - ctx->pc += gen_srx57_len; - return pc; - } -void *compile_srx58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx58, gen_srx58_len); - ctx->pc += gen_srx58_len; - return pc; - } -void *compile_srx59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx59, gen_srx59_len); - ctx->pc += gen_srx59_len; - return pc; - } -void *compile_srx6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx6, gen_srx6_len); - ctx->pc += gen_srx6_len; - return pc; - } -void *compile_srx60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx60, gen_srx60_len); - ctx->pc += gen_srx60_len; - return pc; - } -void *compile_srx61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx61, gen_srx61_len); - ctx->pc += gen_srx61_len; - return pc; - } -void *compile_srx62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx62, gen_srx62_len); - ctx->pc += gen_srx62_len; - return pc; - } -void *compile_srx63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx63, gen_srx63_len); - ctx->pc += gen_srx63_len; - return pc; - } -void *compile_srx7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx7, gen_srx7_len); - ctx->pc += gen_srx7_len; - return pc; - } -void *compile_srx8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx8, gen_srx8_len); - ctx->pc += gen_srx8_len; - return pc; - } -void *compile_srx9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_srx9, gen_srx9_len); - ctx->pc += gen_srx9_len; - return pc; - } -void *compile_sry0(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry0, gen_sry0_len); - ctx->pc += gen_sry0_len; - return pc; - } -void *compile_sry1(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry1, gen_sry1_len); - ctx->pc += gen_sry1_len; - return pc; - } -void *compile_sry10(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry10, gen_sry10_len); - ctx->pc += gen_sry10_len; - return pc; - } -void *compile_sry11(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry11, gen_sry11_len); - ctx->pc += gen_sry11_len; - return pc; - } -void *compile_sry12(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry12, gen_sry12_len); - ctx->pc += gen_sry12_len; - return pc; - } -void *compile_sry13(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry13, gen_sry13_len); - ctx->pc += gen_sry13_len; - return pc; - } -void *compile_sry14(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry14, gen_sry14_len); - ctx->pc += gen_sry14_len; - return pc; - } -void *compile_sry15(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry15, gen_sry15_len); - ctx->pc += gen_sry15_len; - return pc; - } -void *compile_sry16(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry16, gen_sry16_len); - ctx->pc += gen_sry16_len; - return pc; - } -void *compile_sry17(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry17, gen_sry17_len); - ctx->pc += gen_sry17_len; - return pc; - } -void *compile_sry18(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry18, gen_sry18_len); - ctx->pc += gen_sry18_len; - return pc; - } -void *compile_sry19(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry19, gen_sry19_len); - ctx->pc += gen_sry19_len; - return pc; - } -void *compile_sry2(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry2, gen_sry2_len); - ctx->pc += gen_sry2_len; - return pc; - } -void *compile_sry20(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry20, gen_sry20_len); - ctx->pc += gen_sry20_len; - return pc; - } -void *compile_sry21(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry21, gen_sry21_len); - ctx->pc += gen_sry21_len; - return pc; - } -void *compile_sry22(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry22, gen_sry22_len); - ctx->pc += gen_sry22_len; - return pc; - } -void *compile_sry23(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry23, gen_sry23_len); - ctx->pc += gen_sry23_len; - return pc; - } -void *compile_sry24(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry24, gen_sry24_len); - ctx->pc += gen_sry24_len; - return pc; - } -void *compile_sry25(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry25, gen_sry25_len); - ctx->pc += gen_sry25_len; - return pc; - } -void *compile_sry26(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry26, gen_sry26_len); - ctx->pc += gen_sry26_len; - return pc; - } -void *compile_sry27(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry27, gen_sry27_len); - ctx->pc += gen_sry27_len; - return pc; - } -void *compile_sry28(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry28, gen_sry28_len); - ctx->pc += gen_sry28_len; - return pc; - } -void *compile_sry29(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry29, gen_sry29_len); - ctx->pc += gen_sry29_len; - return pc; - } -void *compile_sry3(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry3, gen_sry3_len); - ctx->pc += gen_sry3_len; - return pc; - } -void *compile_sry30(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry30, gen_sry30_len); - ctx->pc += gen_sry30_len; - return pc; - } -void *compile_sry31(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry31, gen_sry31_len); - ctx->pc += gen_sry31_len; - return pc; - } -void *compile_sry32(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry32, gen_sry32_len); - ctx->pc += gen_sry32_len; - return pc; - } -void *compile_sry33(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry33, gen_sry33_len); - ctx->pc += gen_sry33_len; - return pc; - } -void *compile_sry34(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry34, gen_sry34_len); - ctx->pc += gen_sry34_len; - return pc; - } -void *compile_sry35(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry35, gen_sry35_len); - ctx->pc += gen_sry35_len; - return pc; - } -void *compile_sry36(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry36, gen_sry36_len); - ctx->pc += gen_sry36_len; - return pc; - } -void *compile_sry37(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry37, gen_sry37_len); - ctx->pc += gen_sry37_len; - return pc; - } -void *compile_sry38(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry38, gen_sry38_len); - ctx->pc += gen_sry38_len; - return pc; - } -void *compile_sry39(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry39, gen_sry39_len); - ctx->pc += gen_sry39_len; - return pc; - } -void *compile_sry4(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry4, gen_sry4_len); - ctx->pc += gen_sry4_len; - return pc; - } -void *compile_sry40(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry40, gen_sry40_len); - ctx->pc += gen_sry40_len; - return pc; - } -void *compile_sry41(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry41, gen_sry41_len); - ctx->pc += gen_sry41_len; - return pc; - } -void *compile_sry42(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry42, gen_sry42_len); - ctx->pc += gen_sry42_len; - return pc; - } -void *compile_sry43(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry43, gen_sry43_len); - ctx->pc += gen_sry43_len; - return pc; - } -void *compile_sry44(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry44, gen_sry44_len); - ctx->pc += gen_sry44_len; - return pc; - } -void *compile_sry45(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry45, gen_sry45_len); - ctx->pc += gen_sry45_len; - return pc; - } -void *compile_sry46(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry46, gen_sry46_len); - ctx->pc += gen_sry46_len; - return pc; - } -void *compile_sry47(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry47, gen_sry47_len); - ctx->pc += gen_sry47_len; - return pc; - } -void *compile_sry48(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry48, gen_sry48_len); - ctx->pc += gen_sry48_len; - return pc; - } -void *compile_sry49(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry49, gen_sry49_len); - ctx->pc += gen_sry49_len; - return pc; - } -void *compile_sry5(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry5, gen_sry5_len); - ctx->pc += gen_sry5_len; - return pc; - } -void *compile_sry50(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry50, gen_sry50_len); - ctx->pc += gen_sry50_len; - return pc; - } -void *compile_sry51(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry51, gen_sry51_len); - ctx->pc += gen_sry51_len; - return pc; - } -void *compile_sry52(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry52, gen_sry52_len); - ctx->pc += gen_sry52_len; - return pc; - } -void *compile_sry53(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry53, gen_sry53_len); - ctx->pc += gen_sry53_len; - return pc; - } -void *compile_sry54(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry54, gen_sry54_len); - ctx->pc += gen_sry54_len; - return pc; - } -void *compile_sry55(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry55, gen_sry55_len); - ctx->pc += gen_sry55_len; - return pc; - } -void *compile_sry56(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry56, gen_sry56_len); - ctx->pc += gen_sry56_len; - return pc; - } -void *compile_sry57(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry57, gen_sry57_len); - ctx->pc += gen_sry57_len; - return pc; - } -void *compile_sry58(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry58, gen_sry58_len); - ctx->pc += gen_sry58_len; - return pc; - } -void *compile_sry59(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry59, gen_sry59_len); - ctx->pc += gen_sry59_len; - return pc; - } -void *compile_sry6(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry6, gen_sry6_len); - ctx->pc += gen_sry6_len; - return pc; - } -void *compile_sry60(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry60, gen_sry60_len); - ctx->pc += gen_sry60_len; - return pc; - } -void *compile_sry61(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry61, gen_sry61_len); - ctx->pc += gen_sry61_len; - return pc; - } -void *compile_sry62(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry62, gen_sry62_len); - ctx->pc += gen_sry62_len; - return pc; - } -void *compile_sry63(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry63, gen_sry63_len); - ctx->pc += gen_sry63_len; - return pc; - } -void *compile_sry7(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry7, gen_sry7_len); - ctx->pc += gen_sry7_len; - return pc; - } -void *compile_sry8(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry8, gen_sry8_len); - ctx->pc += gen_sry8_len; - return pc; - } -void *compile_sry9(ctx_t *ctx) - { - void *pc = ctx->pc; - memcpy(pc, gen_sry9, gen_sry9_len); - ctx->pc += gen_sry9_len; - return pc; - } -#endif /* COPYJIT_OP_DEFNS_H */ diff --git a/ops/branchi/call.c b/ops/branchi/call.c new file mode 100644 index 0000000..23d88d0 --- /dev/null +++ b/ops/branchi/call.c @@ -0,0 +1,6 @@ +#include "../common.h" + +DEFINE_OP(call) { + x = ((op_call)IMM())(sp, a, x, y, o); + NEXT_OP(sp, a, x, y, o); +} diff --git a/ops/branchi/xlei.c b/ops/branchi/xlei.c new file mode 100644 index 0000000..f42d9fb --- /dev/null +++ b/ops/branchi/xlei.c @@ -0,0 +1,7 @@ +#include "../common.h" + +DEFINE_OP(xlei) +{ + UNUSED(a); + NEXT_OP(sp, x <= IMM(), x, y, o); +} diff --git a/ops/common.h b/ops/common.h index 6d3119a..d283651 100644 --- a/ops/common.h +++ b/ops/common.h @@ -18,8 +18,10 @@ typedef reg_t (*op_call)(reg_t *sp, reg_t a, reg_t x, reg_t y, reg_t o); return CALL(target, sp, a, x, y, o); #define BRANCH(target, cond, sp, a, x, y, o) \ - return ((op_call)((cond) ? (void *)(target) : (void *)&__next_op)) \ - ((sp), (a), (x), (y), (o)); \ + do {\ + if (cond) {JUMP(target, sp, a, x, y, o);}\ + else {NEXT_OP(sp, a, x, y, o);}\ + } while (0) #define DEFINE_OP(name) reg_t _op(reg_t *sp, reg_t a, reg_t x, reg_t y, reg_t o) diff --git a/ops/le/source.mk b/ops/le/source.mk new file mode 100644 index 0000000..cf09ad8 --- /dev/null +++ b/ops/le/source.mk @@ -0,0 +1,2 @@ +LE_SRC != echo ops/le/*.c +OP_SOURCES += $(LE_SRC) diff --git a/ops/le/xle2.c b/ops/le/xle2.c new file mode 100644 index 0000000..aa06057 --- /dev/null +++ b/ops/le/xle2.c @@ -0,0 +1,5 @@ +#include "../common.h" + +DEFINE_OP(xle2) { + NEXT_OP(sp, x <= 2, x, y, o); +} diff --git a/ops/li/liom1.c b/ops/li/liom1.c new file mode 100644 index 0000000..959b256 --- /dev/null +++ b/ops/li/liom1.c @@ -0,0 +1,7 @@ +#include "../common.h" + +DEFINE_OP(liom1) +{ + UNUSED(o); + NEXT_OP(sp, a, x, y, -1); +} diff --git a/ops/li/lixm1.c b/ops/li/lixm1.c new file mode 100644 index 0000000..46c3816 --- /dev/null +++ b/ops/li/lixm1.c @@ -0,0 +1,7 @@ +#include "../common.h" + +DEFINE_OP(lixm1) +{ + UNUSED(x); + NEXT_OP(sp, a, -1, y, o); +} diff --git a/ops/popx.c b/ops/popx.c new file mode 100644 index 0000000..e2b601c --- /dev/null +++ b/ops/popx.c @@ -0,0 +1,6 @@ +#include "common.h" + +DEFINE_OP(popx) { + UNUSED(x); + NEXT_OP(sp - 1, a, *(sp - 1), y, o); +} diff --git a/ops/pushx.c b/ops/pushx.c new file mode 100644 index 0000000..7c70578 --- /dev/null +++ b/ops/pushx.c @@ -0,0 +1,7 @@ +#include "common.h" + +DEFINE_OP(pushx) +{ + *sp = x; + NEXT_OP(sp + 1, a, x, y, o); +} diff --git a/ops/source.mk b/ops/source.mk index 8db98bc..38f0830 100644 --- a/ops/source.mk +++ b/ops/source.mk @@ -4,6 +4,7 @@ OP_SOURCES += $(OP_SRC) include ops/addi/source.mk include ops/bs/source.mk include ops/li/source.mk +include ops/le/source.mk include ops/sl/source.mk include ops/sr/source.mk include ops/branchi/source.mk |
